@charset "utf-8";
/* CSS Document */

body  {
	background: url(i/bgBody.jpg) repeat-x #d7d7d7;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 20px 0 0 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-size: 62.5%; /* Resets 1em to 10px */
	font-family: Arial, Helvetica, sans-serif;
}
p { font: 1.5em/1.2 Arial, Helvetica, sans-serif; }
h1, h2, h3 { font-family: Arial, Helvetica, sans-serif; }
h1 { font-size: 2.0em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
a { color: #003366; }
a:hover { color: #00ccff; }
img { border: none; }

#small { font-size: 1.2em; }

#container { 
	width: 720px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(i/bgContent.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: url(i/bgHeader.jpg) no-repeat; 
	height: 240px;
} 

#menu {	
	float: right;
	display: inline;
	margin: 10px 10px 0 0;	
	height: 30px;
	width: 470px;		
}
a#m1 {
    float: left;
	display: block;
    width: 90px;
    height: 30px;
    background-image: url(i/m1.gif);
    background-position: 0 0;    
}
a#m1:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#m2 {
    float: left;
	display: block;
    width: 90px;
    height: 30px;
    background-image: url(i/m2.gif);
    background-position: 0 0;    
}
a#m2:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#m3 {
    float: left;
	display: block;
    width: 90px;
    height: 30px;
    background-image: url(i/m3.gif);
    background-position: 0 0;
}
a#m3:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#m4 {
    float: left;
	display: block;
    width: 110px;
    height: 30px;
    background-image: url(i/m4.gif);
    background-position: 0 0;
}
a#m4:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#m5 {
    float: left;
	display: block;
    width: 90px;
    height: 30px;
    background-image: url(i/m5.gif);
    background-position: 0 0;
}
a#m5:hover { background-position: 0 -30px; }
a .alt { display: none; }

#icons {	
	float: right;
	display: inline;
	margin: 60px -17px 0 0;	
	height: 90px;
	width: 30px;		
}
a#b1 {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(i/b1.gif);
    background-position: 0 0;    
}
a#b1:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#b2 {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(i/b2.gif);
    background-position: 0 0;    
}
a#b2:hover { background-position: 0 -30px; }
a .alt { display: none; }
a#b3 {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(i/b3.gif);
    background-position: 0 0;    
}
a#b3:hover { background-position: 0 -30px; }
a .alt { display: none; }

#sidebar1 {
	background: url(i/bgSidebar.jpg) top left no-repeat;
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* 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 */
	margin: 0;
	padding: 100px 20px 0px 30px;	
}
#mainContent { 
	margin: 30px 30px 0 260px; /* the left margin on this div element creates the column down the left 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent li { font-size: 1.3em; line-height: 1.4; } 
#footer { 	
	background: url(i/bgFooter.gif) no-repeat #d7d7d7;
	margin: 0;
	padding: 120px 0 0;
	height: 40px;	
} 
#footer p {	
	padding: 0 0 20px 0;
	font-size: 1.0em;
	text-align: center;
	color: #666;
}
#ftrmenu { 
	clear: both;
	margin: 0;
	padding: 0;
	text-align: center; 
}
#ftrmenu li {
	font-size: 1.2em;
	display: inline;
	list-style: none;
	margin-right: 6px;	
	padding-right: 8px;
	border-right: 1px solid #666;	
}
#ftrmenu li.last { border: none; }
#ftrmenu a { text-decoration: none; color: #666; }
#ftrmenu a:hover { color: #FFF; }


.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;
}