@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-color: #EDEDED;
}
.thrColFixHdr #container {
	width: 800px; /* 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. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 750px;
} 
.thrColFixHdr #header {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #mainContent2 {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	background-color: #EDEDED;
	float: left;
	clear: none;
	width: 580px;
	padding: 0px;
	text-decoration: none;
	height: 460px;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 173px; /* padding keeps the content of the div away from the edges */
	margin-top: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 10px;
	border: thin none #CCCCCC;
}
.thrColFixHdr #sidebar2 {
	width: 800px;
	clear: none;
	float: left;
	background-color: #EDEDED;
	height: 74px;
	margin: 0px;
	padding: 0px;
	position: relative;
	top: -85px;
}
.thrColFixHdr #sidebar3 {
	width: 173px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB;
	margin-left: 10px;
	clear: left;
	margin-top: 0px;
	float: left;
	height: 103px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding: 0px;
	position: relative;
	top: -124px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.thrColFixHdr #mainContent {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 193px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #EDEDED;
	clear: none;
	float: none;
	width: 592px;
	}
.thrColFixHdr #footer {
	background-color: #0033cc;
	width: 770px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	position: relative;
	height: auto;
	clear: left;
	float: left;
	top: -52px;
} 
.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0px;
	height: 20px;
}
.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;
}

.glossymenu{
	margin: 0px 0;
	padding: 0;
	width: 170px;
	border-bottom-width: 0;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

.glossymenu a.menuitem{
	font: bold 14px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
	color: white;
	display: block;
	position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
	width: auto;
	padding: 4px 0;
	padding-left: 10px;
	text-decoration: none;
	background-image: url(../pics/glossyback.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}


.glossymenu a.menuitem:visited, .glossymenu .menuitem:active{
color: white;
}

.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: absolute;
top: 0px;
right: 5px;
border: none;
}

.glossymenu a.menuitem:hover{
	background-image: url(../pics/glossyback2.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}

.glossymenu div.submenu{ /*DIV that contains each sub menu*/

}

.glossymenu div.submenu ul{ /*UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
}

.glossymenu div.submenu ul li{
border-bottom: 1px solid blue;
}

.glossymenu div.submenu ul li a{
display: block;
font: normal 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: black;
text-decoration: none;
padding: 2px 0;
padding-left: 10px;
}

.glossymenu div.submenu ul li a:hover{
	color: white;
	background-color: #0000FF;
}

