@charset "utf-8";
body  {
	font: 84% Verdana, Arial, Helvetica, sans-serif;
	background: #F0F0F0;
	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;
}

#wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: url(/img/wrapper.jpg) repeat-x;
}
#container { 
	width: 1006px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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 { 
	height: 138px;
	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. */
} 

#header #top{
	height: 91px;
}


#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 254px; /* 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 */
	padding: 0 10px;
}
#sidebar h2{
color: #0B73A9;
	font: 110% Arial, Helvetica, sans-serif;
	font-weight: bold;	
  padding: 18px 0 0 8px ;
  margin: 0;
}

#sidebarInfo{
  padding: 12px 0 0 12px ;
  margin: 0;
  	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	height: 18px;
}
.nav{
width: 1006px;
height: 47px;
background: url(/img/navHeader.jpg) no-repeat;

}
.nav ul{
	margin: 0; padding: 14px 0 0 32px;
	font: 110% Arial, Helvetica, sans-serif;
	font-weight: bold;	
	float: left;}

.nav ul li{
	display: inline;}

.nav ul li a{
	float: left; text-decoration: none;
	color: #0B73A9;
	padding-right: 35px}

.nav ul li a:visited{
	color: #0B73A9;}

.nav ul li a:hover, .nav ul li .current{
	color: #83AC1C;
	}

#contentBkgd {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 0 20px 0;
	background: url(/img/contentBkgrd.jpg) repeat-y;
}
 #mainContent { 
	margin: 0 276px 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 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent h1 {
	color: #074465;
	margin: 0;
	padding: 15px 0 12px 0;
	font-size: 19px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	letter-spacing: -1px;
}
#mainContent h3 {
     color: #83AC1A;
	 padding: 0;
	 margin: 0;
	font: 110% Arial, Helvetica, sans-serif;
	font-weight: bold;	
}

#mainContent p {
	margin: 0;
	padding: 0 0 18px 0;
}

#hand {
margin: 0;
padding: 8px 0 0 8px;
}

#hand li{
list-style: none;
width:70%;
height:46px;
margin: 0;
background: url(/img/hand.jpg) no-repeat 1px 0px;
padding: 2px 0 2px 40px;
}



 #footer { 
    background: url(/img/footer.jpg) no-repeat;
	height: 250px;
	padding: 20px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
 
} 
 #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;
}

/* Menu link styles */

#menu ul {
list-style: none;
margin: 0;
padding: 0;
}
#menu {
width: 218px;
margin: 0;
padding: 5px 0 0 10px;
}
#menu li {
display:inline;
}

/* menu */
#menu li a:link, #menu li a:visited{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	height: 18px;
	display: block;
	border-top: 1px dashed #e0e0e0;
	background: url(/img/sidebarBevel.jpg) bottom left repeat-x;
	color : #0A6493;
	padding: 6px 0 5px 16px;
	
}
#menu li a:hover,#menu li a.selected{
border-top: 1px dashed #e0e0e0;
padding: 6px 0 5px 16px;
background-color:#F8F8F0;
background-image:none;
text-decoration:underline;
}


/* subMenu */
#menu li li a:link, #menu li li a:visited {
font-weight: normal;
border-top: 1px dashed #F0F0F0;
background: url(/img/sub_menu_dot.png) no-repeat 18px 10px;
background-color:#FFF;
padding: 4px 0 5px 30px;
}
#menu li li a:hover {
font-weight: normal;
background: url(/img/sub_menu_dot.png) no-repeat 18px 10px;
background-color:#FCFCF9;
border-top: 1px dashed #F0F0F0;
color : #83AC1C;
padding: 4px 0 5px 30px;
}

#menu li li a.selected {
border-top: 1px dashed #F0F0F0;
color: #83AC1A;
background: url(/img/sub_menu_dot.png) no-repeat 18px 10px;
background-color:#FFFFFF;
padding: 4px 0 5px 30px;
}

/* subSubMenu */
#menu li li li a:link, #menu li li li a:visited {
font-weight: normal;
background: url(/img/sub_sub_menu_dot.png) no-repeat 22px 7px;
padding: 3px 0 4px 34px;
}
#menu li li li a:hover,#menu li li li a.selected {
font-weight: normal;
background: url(/img/sub_sub_menu_dot.png) no-repeat 22px 7px;
text-decoration: underline;
padding: 3px 0 4px 36px;
}

.menuBottom  a{
	border-bottom: 1px dashed #e0e0e0;

}

/* slider */

#mask {
	width:690px;
	height:250px;
	overflow:hidden;
	position:relative;
	float:left;
	margin-top:20px;
}
#folio {
	position:absolute;
	top:0;
	left:0;
	width:3450px;
	float:left;
}
.col {
	display:block;
	width:690px;
	height:250px;
	float:left;
}
