@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(img/bg_body.jpg) #191105 top left repeat-x;
	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: #000000;
}
h1 {
font-family:Arial, Helvetica, sans-serif;
font-size:28px ;
font-weight:normal;
color:#2d4764;
margin-bottom:0px;
text-align:center;
}

.thrColFixHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	background:#000000;
} 
.thrColFixHdr #header { 
	background: url(img/bg_testata.jpg) #191105 top left no-repeat;
	padding:0;  /* 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. */
	height:150px;
} 
.thrColFixHdr #header h1 {
	display:none;
}

.thrColFixHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* 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 */
	padding: 0; /* padding keeps the content of the div away from the edges */
	padding-top:360px;
	background: url(img/bg_left.jpg) #000000 top left no-repeat;
	height:300px;

}
.thrColFixHdr #sidebar2 p{
padding-left:10px;
padding-right:30px;
font-family:Arial, Helvetica, sans-serif;
font-size:11px ;
color: #372a19;
}

.thrColFixHdr #sidebar2 a:link{
color: #6699FF;
}

.thrColFixHdr #sidebar2 a:visited{
color: #6699FF;
}

.thrColFixHdr #sidebar2 a:hover{
color: #99CCFF;
}

.thrColFixHdr #mainContent { 
	float: left; /* since this element is floated, a width must be given */
	width: 660px; /* 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: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
} 

.thrColFixHdr #mainContent p {
font-family:Arial, Helvetica, sans-serif;
font-size:11px ;
line-height:16px;
color:#2a3b4f;
padding-left:24px;
padding-right:24px;
} 

.thrColFixHdr #mainContent a:link {
	text-decoration:underline;
	color: #3399CC;
}
.thrColFixHdr #mainContent a:visited {
	text-decoration:underline;
	color:#3399CC;
}
.thrColFixHdr #mainContent a:hover {
	text-decoration:underline;
	color: #336699;
}

.thrColFixHdr #footer { 
	margin: 0px;
	height:55px;
	background:#372a19;
} 
.thrColFixHdr #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: 15px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px ;
	color:#000000;
}

.thrColFixHdr #footer a:link {
	text-decoration:underline;
	color:#191105;
}
.thrColFixHdr #footer a:visited {
	text-decoration:underline;
	color: #000000;
}
.thrColFixHdr #footer a:hover {
	text-decoration:underline;
	color: #996600;
}

.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;
}
