@charset "UTF-8";
body  {
	font: normal .8em Verdana, Arial, Helvetica, sans-serif;
	line-height: 150%;
	background: #eef;
	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: #000;
}
#container { 
	width: 800px;  
	background: #fff;
	margin: 5px 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: #ddd;
	padding: 0;
	margin: 0;
} 
#navbar {
	background: #72a9e0;	
	margin: 0;
	padding: 0;
	height:29px;
	width: 800px;
	
}
h1 {
	margin: 0; 
	padding: 14px 0 6px 0; 
	color: #051b50;
	font: italic 2.2em Optima, Georgia, "Times New Roman", Times, serif !important;
	font-weight: bold;
}
h2 {
	margin: 0; 
	padding: 12px 0 6px 0; 
	color: #051b50;
	font: italic 1.7em Optima, Georgia, "Times New Roman", Times, serif !important;
	font-weight: bold;
}
h3 {
	margin: 0;
	padding: 6px 0; 
	color: #051b50;
	font: italic 1.4em Optima, Georgia, "Times New Roman", Times, serif !important;
	font-weight: bold;
}

p {
margin: 0;
padding: 6px 0;
}

#mainContent a, #mainContent a:link, #mainContent a:visited, #sidebar a, #sidebar a:link, #sidebar a:visited, #fullContent a, #fullContent a:link, #fullContent a:visited {
	color: #051b50;
	text-decoration: underline;
	padding: 1px 0;
}
#mainContent a:hover, #sidebar a:hover, #fullContent a:hover {
	text-decoration: none;
	background-color: #FBDE66;
	color: #051b50;
}

#sidebar {
	float: right; 
	width: 200px; 
	background: #c0cfde;
	padding: 0 10px 10px 10px;
}
#sidebar h3 {
	color: #fff;
	font: italic 1.2em Optima, Georgia, "Times New Roman", Times, serif !important;
	font-weight:bold;
	background: #051b50;
	margin-left: -25px;
	margin-right: -10px;
	padding: 0 0 0 35px;
	margin-top: 25px;
	margin-bottom: 6px;
}
#sidebar p {
padding: 0 10px;	
}
#mainContent { 
	margin-right:225px;
	padding: 0 20px;
	background-color: #fff;
} 
#fullContent {
	padding: 0 20px;
	background-color: #fff;
}
.columnOne {
float: left;
width: 30%;
padding-left: 3%;
}
.columnTwo {
float: left;
width: 30%;
padding-left: 3%;
}
.columnThree {
float: right;
width: 30%;
padding-left: 3%;
}
.columnOne ul, .columnTwo ul, .columnThree ul, #sidebar ul {
	list-style-type: circle;
	line-height: 130%;
	padding: 0 5px 0 20px;
}
#threeColumn {
	float: left;
width: 100%;
clear: both;
}

.imageRight {
float: right;
padding: 6px 0 6px 6px;
}

.imageLeft {
	float: left;
	padding: 6px 6px 6px 0;
}

#footer {
	height: 20px;
	padding: 0 10px; 
	background:#0054a6 url(../images/ybFooter01.jpg) no-repeat;
}

#footer p {
	margin: 0; 
	padding: 5px 0;
	color: #fff;
	font-size: 10px;
	text-align: center;
	line-height: 10px;
}
#footer a, #footer a:link, #footer a:visited {
color: yellow;
text-decoration: none;
}
#footer a:hover {
text-decoration: underline;	
}
.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;
}