@charset "utf-8";
body  {
	font: 12px/22px Tahoma, Geneva, sans-serif;
	background: url(images/bg.jpg) no-repeat center top;
	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: #333;
}
#container  {
	width: 792px;
	margin: 220px auto 0;
	text-align: left;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
} 
#header  {
	background: #9CA7C0;
	padding: 0;
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#main {
	background: #9CA7C0 url(images/2_c1.jpg) no-repeat left top;
	float: left;
	width: 792px;
}

#mainContent  {
	margin: 0 0px 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 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 588px;
	background: #E8E8EE;
} 
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 190px;
	clear: right;
	margin: 120px 0px 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sbox {
	background: #DDDEE8;
	padding: 5px;
	width: 180px;
	font-size: 12px;
	color: #13406D;
}
#full {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#photo {
	float: left;
	width: 260px;
	padding-left: 10px;
	padding-top: 20px;
}

#info {
	float: right;
	width: 280px;
	background: #E8E8EE;
	padding: 10px 15px 10px 0px;
}



#footer  {

} 
#footer2  {
	text-align: center;
	padding: 5px 0px;
	font-size: 10px;
	color: #CCC;
} 
#footer2 a:link {
	color: #CCC;
	text-decoration: none;
}
#footer2 a:visited {
	color: #FFF;
	text-decoration: none;
}

#footer2 a:hover {
	color: #163C63;
	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;
}
a:link {
	color: #06F;
	text-decoration: underline;
}
a:visited {
	color: #06F;
	text-decoration: underline;
}
a:hover {
	color: #02264A;
	text-decoration: none;
}
a:active {
	color: #BC0D36;
}
.bold {
	font-weight: bold;
}

.styletitle {
	font-size: 24px;
	color: #BD102E;
}
img {
	border-style: none;
}
.stylelarge {
	font-size: 18px;
	line-height: 30px;
	color: #006;
}

