@charset "utf-8";
html {margin:0px; padding:0px}
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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/header/bg-header.png);
	background-repeat: repeat-x;
}
.twoColFixRtHdr #container {
	width: 770px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 13px;
	line-height: 1.4em;
} 
.twoColFixRtHdr #header {
	height: 185px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 0px;
	background-image: url(../images/header/bg-header2.jpg);
	background-repeat: no-repeat;
	clear: both;
} 
.twoColFixRtHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display: none;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 230px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #CCCCCC;
	line-height: 1.7em;
	font-family: Tahoma, Verdana, Arial;
	font-size: 115%;
} 
.twoColFixRtHdr #footer {
	padding: 10px 10px 0 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #F1F1F1;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}




/***********************WIREFRAME NAVIGATION*******************************/

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */



.wireframemenu{
	border-bottom-width: 0;
	width: 200px;
}



* html .wireframemenu{ /*IE only rule. Original menu width minus all left/right paddings */
width: 164px;
}

.wireframemenu ul{
padding: 0;
margin: 0;
list-style-type: none;
}

.wireframemenu a{
	padding: 7px 3px 7px 16px;
	display: block;
	width: 100%; /*Define width for IE6's sake*/
	color: #333333;
	text-decoration: none;
	background-image: url(../images/sideBar/nav-normal.png);
	background-repeat: no-repeat;
	font-family: Verdana;
	font-size: 10px;
	font-weight: bold;
}

.wireframemenu a:visited{
color: #595959;
}

html>body .wireframemenu a{ /*Non IE rule*/
width: auto;
}

.wireframemenu a:hover{
	color: black;
	background-image: url(../images/sideBar/nav-over.png);
}

.wireframemenu .selected{
	background-image: url(../images/sideBar/nav-over.png);
	background-repeat: no-repeat;
}

#mainContent h1 {
	font-size: 1.5em;
}
#mainContent h2 {
	font-size: 1.3em;
}
#mainContent img {
	margin: 10px;
	padding: 5px;
	font-size:12px;
	font-weight:lighter;
}
#mainContent h3 {
	font-size: 1.1em;
}
#mainContent p {
	padding-left: 4px;
}
#header h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.6em;
	font-weight: bold;
	color: #323232;
	margin: 0px;
	padding: 135px 0 0 165px;	/*margin-top: 135px;*/
}
#container #header img {
	margin: 0px;
	padding: 0px;
	float: left;
}
#container #header .utility h2{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	color: #323232;
	width: 100px;
	text-align: right;
	float:right;
	clear: both;
}


#container #footer .address {
	float: right;
	margin-right: 10px;
	padding-left: 25px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #e2e2e2;
}





[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */ß
.twoColFixRtHdr #sidebar1 { width: 220px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixRtHdr #sidebar1 { padding-top: 30px; }
.twoColFixRtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
#container #mainContent clearBoth {
	clear: both;
}
