@charset "utf-8";

/*TYPOGRAPHY*/

h1 {
	margin: 5px 0px 0px 0px; 
	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
	color:#0081ff;
	font-size:24px;
	font-weight:lighter;
}

h2 {
	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
	font-size: 16px;
	margin: 0px;
}

p {
	font-family:'Trebuchet MS', Tahoma, Sans-serif;
	line-height:140%;
	font-size:13px;
	margin: 5px 0px 15px 0px;
}

a { 
	color:#0081ff; 
	text-decoration: none;
}

a:hover { 
	color:#0081ff; 
	text-decoration: underline; 
}



/*LAYOUT*/

body  {
	font: 13px 'Trebuchet MS', Tahoma, Sans-serif;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
	background-image:url(images/blue-gradient.jpg);
	background-repeat:repeat-x;
	/*background-color:#cbe5ff*/
	}
#container { 
	width: 905px;  
	background: #FFFFFF;
	margin: 0 auto; 
	text-align: left; 
} 
#header { 
	background-image:url(images/blue-gradient.jpg);
	background-repeat:repeat-x;
	height:105px;
	margin-bottom: 40px
} 

#logo {
	width:490px; 
	float:left
}

#nav {
	text-align:right;
	color:white;
	font-variant:small-caps;
	font-size:130%;
	width:400px;
	float:right;
	margin-top:83px
}

#nav a {
	color:white;
	text-decoration:none;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 284px; 
	margin-bottom: 10px;
	padding: 0px
}

#sidebar3 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px; 
	margin-bottom: 10px;
	padding: 0px
}

#tabs {
	width: 284px; 
	clear:both;
	margin-bottom: 10px;
	height:172px;
	padding: 0px
}

#smalltabs {
	width:215px;
	height:130px;
	clear:both;
	margin-bottom: 10px;
}

#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 284px; 
	clear:both;
	margin-bottom: 10px;
	height:100px;
	padding: 0px
}

#mainContent { 
	margin: 0 0 0 298px; 
	text-align:left
} 

#mainContent li { 
	margin:0px 0px 0px -10px
}

#footer { 
	padding: 5px 10px 5px 10px; 
	border-top:#dfdfdf 3px solid; 
	border-bottom: #dfdfdf 1px solid;
	color: #999999;
	height:35px
	
} 
#footer p {
	margin: 0; 
 	font-size:11px
}

#copyright {
	float:left;
	width:400px;
	text-align:left
}

#footernav {
	float:right;
	width:300px;
	text-align:right;	
}

input, textarea, select { font-size: 11px; color: #000000; border: 1px solid #555553; font-family: verdana, sans serif;
	 background-color: #efefef; margin-bottom:5px
	 }

/* FLOATS*/

.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;
}


