@charset "UTF-8";
body  {
	background: #fff none no-repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	

	
	padding: 0;
	
	color: #333;
	font: 62.5% "Lucida Grande", Lucida, "Licida Sans Unicode", Helvetica, Verdana, sans-serif;
}
#container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white url(images/logo_highres.jpg) no-repeat scroll;
	margin: 0;
	text-align: left;
}



#logo__container {
	width: 503px;
	float: left;
	height: 670px;
} 
#header { 
	background: transparent; 
	padding: 0 5px;
	margin-left: 275px;
	height: auto;
	
} 
#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: 20px 0 0;
	
	color: #CC3301;
	font-size: 3.5em;
	}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* 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: transparent;
	padding: 0 0 0 25px;
	margin-top: 10px;
	font-size: 1.2em;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 140px; /* 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: transparent;
	padding: 0 10px 0 0;
	font-size: 1.3em;
	height: auto;
}
#mainContent {
	margin: 10px 160px 0 175px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 15px;
	background-color: transparent;
	font-size: 1.2em;
	text-align: left;

}

.class {
	text-align: center;
}

#text1 {
	float: left;
	width: 250px;
}

#text2 {
	float: right;
	width: 250px;
}

#menu {
	font-weight: bold;
}

#footer_text{

	text-align: center;
	padding-top: 5px;
	border-top: 1px dotted #00ceff;
	border-bottom: 1px dotted #00ceff;
	margin-bottom: 20px;
	padding-bottom: 5px;
} 
 #footer { 
	padding: 20px 20px 10px;
	margin-left: 100px;
	margin-top: 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;
}

.tagline {
	font-size: 1.5em;
}

.clear {
	clear: both;
}

a:link {
	color: #003366;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	color: #003366;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #CC3301;
	text-decoration: underline;
	font-weight: bold;
}

a:active {
	color: #CC3301;
	text-decoration: underline;
	font-weight: bold;
}

.imgborder {
	border: 1px solid #666666;
}

.caption {
	font-size: .9em;
	text-align: center;
}

.caption_size {
	font-size: .9em;
	float: right;
}

.center {
	text-align: center;
}

