@charset "utf-8";
body  {
	background: #040000;
	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: #040000;
	background-image: url(../images/bgbody.jpg);
	background-repeat: repeat-x;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100.1%;
}

a {	
	color: #333333;
	text-align: left;
	text-decoration:none;
}

a:hover {
	color: #333333;
	text-align: left;
	text-decoration:underline;
}

ul {padding:0; margin:0;}
li {list-style:none;}

ul.text {padding: 0 50px;}
ul.text li {list-style-type:disc; list-style-position:outside; color:#333333; font-size: 0.8em;	text-align: left; padding-bottom:0.5em;}

hr {height:1px;}

#container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #ffffff;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(../images/bgtop.jpg);
	height: 475px;
	background-repeat: no-repeat;
	background-position: top;
} 
#header  #mb {
	height: 300px;
	background-repeat: no-repeat;
	margin: 140px 0 0 0;
	background-position: bottom;
}

#header h1 {
	margin: 0;
	padding: 10px 0;
	display: none;
}
#header a.menu img   {
	filter:alpha(opacity=60); -moz-opacity: 0.6;  opacity: 0.6; -khtml-opacity: 0.6;
}
#header a.menu img.active {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	-khtml-opacity: 0.8;
}

#header a.menu:hover img    {
	filter:alpha(opacity=80); -moz-opacity: 0.8;  opacity: 0.8; -khtml-opacity: 0.8;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}

.textbox {padding: 10px 20px;display: block;}

#mainContent {
	margin: 18px auto; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 904px;
	background-color: #e9e9e9;
} 
#mainContent #3col {
	background-image:url(../images/bgmcont.png);
	background-repeat:repeat-y;
	width: 100%;
}
#mainContent #2col {
	background-image:url(../images/bgmcont2.png);
	background-repeat:repeat-y;
	width: 100%;
}


#mainContent h2 {
	color: #455381;
	font-size: 0.9em;
}

#mainContent h2 a {
	color: #455381;
	font-size: 1em;
}

#mainContent h2 a:hover {
	color: #455381;
}

#mainContent b {font-weight:normal;}

#mainContent p {
	color: #333333;
	font-size: 0.8em;
	text-align: left;
}

#mainContent p.imgdesc {
	margin: -3.5em 12px 5px 12px;
	padding: 3px 10px;
	width: 146px;
	background-image:url(../images/pixel_w80.png);
	background-repeat:repeat;
	position: relative;
}
#mainContent p.quote {
	text-align: right;
	font-style: italic;
}

#mainContent #left {
	width: 265px;
	padding: 0 18px;
	float: left;
}
#mainContent #left2 {
	width: 400px;
	padding: 0 26px;
	float: left;
}

#mainContent #right {
	width: 265px;
	padding: 0 18px;
	float: right;
}
#mainContent #right2 {
	width: 400px;
	padding: 0 26px;
	float: right;
}

#mainContent #center {
	width: 265px;
	padding: 0 18px;
	float: left;
}
#mainContent #OneRow {
	width: 868px;
	padding: 0 18px;
	float: left;
	margin-bottom: 10px;
}
#membsign {
	color: #333333;
	font-size: 0.8em;
	text-align: right;
	width: 19em;
	float: right;
}




#footer {
	padding: 0 45px 0 240px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	background-image: url(../images/bgfooter.jpg);
	background-repeat: no-repeat;
	background-position: bottom left;
	height: 165px;
	text-align: right;
} 
#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 */
	color: #6f7380;
}
#footer   p.copyright {
	font-size: 0.75em;
}

.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;
}
.logo {
	float: left;
	position: relative;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	top: 39px;
	left: 75px;
}
form.contacts   {
	font-size: 0.8em;
	color: #333333;
	border: 0;
}
form.contacts input.text {
	border: none;
	margin: 0;
	padding: 5px 0 0 11px;
	width: 260px;
	height: 24px;
	background: url(../images/bgimput.png) 0 0 no-repeat;

}
form.contacts textarea {
	border: none;
	margin: 0;
	padding: 5px 11px 5px 11px;
	background: url(../images/bgimputmess.png) 0 0 no-repeat;
	height: 93px;
	width: 249px;
}
form.contacts input.button {
	border: none;
	width: 143px;
	height: 46px;
	background: url(../images/bgimputbut.jpg) 0 0 no-repeat;
	color: #fff;
	padding: 0 43px 3px 0;
	vertical-align: middle;
}

.err_mes {
	border: 1px dashed #ff0000;
	padding: 2px;
}

img.counters {
	filter:alpha(opacity=60); -moz-opacity: 0.6;  opacity: 0.6; -khtml-opacity: 0.6;
}
#counters {
	text-align: right;
}

