@charset "UTF-8";

/***********************************
          LAYOUT STYLES
***********************************/

body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #CCC;
	margin: 0; /* zero margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* center the container in IE 5* browsers */
	color: #000000;
}
.twoColFixRtHdr #container { 
	width: 760px;  /* using 40px less than a full 800px width for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background: #DDDDDD; 
} 
.twoColFixRtHdr #header h1 {
	margin: 0;  /* prevent margin collapse */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	background-color: #FFFF99;
	width: 270px;
	border: thin dashed #333333;
	padding: 2px 2px 2px 8px;
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 15px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 310px 0 0;
	padding: 0 10px 0 10px;
	line-height: 1.5em;
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px;
	border-top: 1px solid #000000;
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

/***********************************
        PRESENTATION STYLES
***********************************/

/* RULES AND DECORATIVE ELEMENTS */
.yellowRule {
	margin: 0;
	padding: 0;
	border-bottom-width: 3;
	border-bottom-color: #FFFF00;
	border-bottom-style: solid;
}

/* NAVIGATION MOUSEOVERS */
a:link {
	color: #006699;
	text-decoration: none;
}
a:visited {
	color: #006699;
	text-decoration: none;
}
a:hover {
	color: #666666;
	text-decoration: underline;
}
a:active {
	color: #666666;
	text-decoration: underline;
}

/* H STYLES */
/*h1 tag used only in page headers*/
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.9em;
	font-weight: bold;
	color: #FFFF00;
	text-align: center;
	background-color: #666666;
	border-top-width: thin;
	border-bottom-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000000;
	border-bottom-color: #000000;
	font-style: italic;
	margin-top: 0px;
	padding-bottom: 2px;
}
h2 {
	font-size: 1.5em;
	font-weight: bold;
	color: #006699;
}
h3 {
	font-size: 1em;
	font-weight: bold;
	color: #333333;
}

/* TEXT STYLES */
.boldText {
	font-weight: bold;
	color: #333333;
}
.special {
	font-style: italic;
	font-weight: bold;
	color: #333333;
}
.twoColFixRtHdr #container #sidebar1 .sidebarText {
	font-size: 0.9em;
	font-style: italic;
	line-height: 1.6em;
}
.twoColFixRtHdr #footer p {
	margin: 0; /* prevent margin collapse */
	padding: 10px 0;
	font-size: 0.7em;	
}
