/* CSS Document */

body  {
	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: #FFFFFF;
	background-image: url(../images/tlo2.jpg);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #527183;
}
.twoColFixLtHdr #container {
	width: 801px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	height: 249px;
	width: 801px;

} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FED90E;
	font-size: 20px;
	text-align: center;
	background-image: url(../images/baner_top.png);
	padding-top: 18px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#header h2 {
	padding-top: 1px;
	margin-top: 0px;
	font-size: 18px;
	color: #FED90E;
	text-align: center;
	background-image: url(../images/baner_bottom.png);
	padding-bottom: 5px;
}


.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 206px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 1px;
	background-repeat: repeat-y;
}

#sidebar1 ul {
	background-image: url(../images/bg_menu2.png);
	background-repeat: repeat-y;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 7px;
}
#sidebar1   li   {
	color: #445565;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	list-style-type: none;
	background-position: left;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-size: 14px;
	display: block;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #DFECF2;
}
#sidebar1 a {
	text-decoration: none;
	color: #465968;
}

#sidebar1  li a:hover {
	color: #5193BD;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	list-style-type: none;
	background-position: left;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	font-size: 14px;
}
#sidebar1 h3 {
	background-image: url(../images/h2_1.png);
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}




.twoColFixLtHdr #mainContent {
	margin: 0 0 0 215px; /* the left margin on this div element creates the column down the left 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 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
} 
#mainContent  h1 {
	font-size: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FEFEFE;
	padding-bottom: 3px;
}
#mainContent h2 {
	color: #FED90E;
	font-size: 14px;
}
#mainContent  h3 {
	color: #527183;
	font-size: 14px;
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 6px;
	background-image: url(../images/belka.png);
}
#mainContent  strong {
	color: #FED90E;
	font-weight: bold;
}
#mainContent th {
	background-color: #415361;

}
#mainContent a {
	color: #FED90E;
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 6px;
	font-weight: bold;
}




.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	text-align: right;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FED90E;
} 
.twoColFixLtHdr #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 */
}
#footer a {
	font-size: 9px;
	color: #FED90E;
	text-decoration: none;
	font-weight: bolder;
}
#footer  a:hover {
	font-size: 9px;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bolder;
}
.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;
}

