/* CSS Document */

body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
	font-family: Verdana, Arial, sans-serif;
	font-size: 100%;
	background-color:#FFFFFF;
}

h1 {font-size: 1em;
	font-weight:normal;
	margin: 4px 0 2px 0;
}
h2 {font-size: .8em;
	font-weight:bold;
	margin: 4px 0 0 0;
}
p {
	font-size: 0.75em;
	line-height: 1.3em;
	padding: 0;
}
#mainContent li {
	font-size: 0.75em;
	line-height: 1.3em;
	margin: 8px 0px 8px -20px;
}
#mainContent .condensed li {
	margin: 0px 0px 4px -20px;
}
#container {
	width: 620px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border:none;
} 
#header {
	margin:0;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image:none;
	height: 100px;
}

#sidebar1 {
float:left; /* since this element is floated, a width must be given */
margin-top:11px;
margin-left:20px;  /* change to 25 breaks IE6*/
padding-left:0px;
width:0px; 
display:none;/* vital so as not to break IE6*/
}
#mainContent {
float:left; /* since this element is floated, a width must be given */
margin-top:12px;
margin-left:20px; 
width:580px; /*larger breaks in IE6*/
padding:0px; /*remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer {
clear:both;
display:none;
padding: 10px 20px 20px 20px;
border-top:1px solid #666;
}  

#footer p {
    margin:0;
	padding: 3px 3px 3px 75px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
	text-align:center;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* BULLET MENU CSS
  remove the margin and bullets, set the padding */
.mainmenu {margin-top:0; margin-left:0; width:125px; padding-left:0px; padding-right:0px; list-style:none; background:white; font-size:0.88em; }

/* style the links and place the background image to start from left edge */
.mainmenu li a {display:block; width:100%; color:#000000; height:30px; line-height:30px;  background-repeat:no-repeat; background-position:left;
 text-decoration:none; margin:0 20px 0 0; padding:0 0 0 20px;}
.red {background:url(../images/redbullet.gif)}
.purple {background:url(../images/purplebullet.gif)}
.blue {background:url(../images/bluebullet.gif)}
.cyan {background:url(../images/cyanbullet.gif)}
.green {background:url(../images/greenbullet.gif)}
.brown {background:url(../images/brownbullet.gif)}
.orange {background:url(../images/orangebullet.gif)}

.mainmenu li a:hover {border:0; text-decoration:underline; cursor:pointer;
/* style the link hover to replace the background image - border:0 needed for IE6 to work 
background-image:url(../images/whitebullet.gif); background-repeat:no-repeat; background-position:left; */
}
.mainmenu li a.current, .mainmenu li a.current:hover  {text-decoration:none; font-weight:bold;}

a {
	color:#990000;
}
.formfield {background-color:#DBDBDB; 
	font-family: Verdana, Arial, sans-serif;
	font-size: 100%;
}
img {
	border: none;
}

.border {border:1px solid black;}

.screen {margin:11px 0px 0px 20px;}

#message p{background-color:#FFFF33; border:2px solid black; margin-bottom:15px; padding:15px; font-size:120%;}