@charset "utf-8";
/* CSS Document */

body  {

font: 80% Arial, Helvetica, sans-serif;

background: rgb(10,0,10); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(10,0,10,1) 6%, rgba(143,2,34,1) 53%, rgba(2,0,2,1) 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(6%,rgba(10,0,10,1)), color-stop(53%,rgba(143,2,34,1)), color-stop(99%,rgba(2,0,2,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(10,0,10,1) 6%,rgba(143,2,34,1) 53%,rgba(2,0,2,1) 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(10,0,10,1) 6%,rgba(143,2,34,1) 53%,rgba(2,0,2,1) 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(10,0,10,1) 6%,rgba(143,2,34,1) 53%,rgba(2,0,2,1) 99%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(10,0,10,1) 6%,rgba(143,2,34,1) 53%,rgba(2,0,2,1) 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a000a', endColorstr='#020002',GradientType=0 ); /* IE6-9 */


	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: #4E4540;

}



.twoColFixLtHdr #container { 

	width: 940px;  

	background: #FFFFFF;

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

	border: 1px solid #000;

	text-align: left; /* this overrides the text-align: center on the body element. */

} 

.twoColFixLtHdr #header { 

/*background-image:url(header.jpg);*/

	

	/*padding: 0 10px 0 20px;   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. */

} 

.twoColFixLtHdr #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 */

}

.twoColFixLtHdr #sidebar1 {

	float: left; /* since this element is floated, a width must be given */

	width: 260px; /* 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: #FFF;/*#EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */



	/*padding: 10px 10px 10px 10px;*/

}



.twoColFixLtHdr #mainContent { 

	margin: 0 0 0 260px; /* 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 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

} 

.twoColFixLtHdr #footer { 
background-image:url(infoBG.jpg);

	padding: 0 10px 0 20px; margin-top:20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

/* background: rgb(79,51,47);  Old browsers */
/* background: -moz-linear-gradient(top,  rgba(79,51,47,1) 0%, rgba(99,19,4,1) 100%); /* FF3.6+ */
/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(79,51,47,1)), color-stop(100%,rgba(99,19,4,1))); /* Chrome,Safari4+ */
/* background: -webkit-linear-gradient(top,  rgba(79,51,47,1) 0%,rgba(99,19,4,1) 100%); /* Chrome10+,Safari5.1+ */
/* background: -o-linear-gradient(top,  rgba(79,51,47,1) 0%,rgba(99,19,4,1) 100%); /* Opera 11.10+ */
/* background: -ms-linear-gradient(top,  rgba(79,51,47,1) 0%,rgba(99,19,4,1) 100%); /* IE10+ */
/* background: linear-gradient(to bottom,  rgba(79,51,47,1) 0%,rgba(99,19,4,1) 100%); /* W3C */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f332f', endColorstr='#631304',GradientType=0 ); /* IE6-9 */



} 

.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: 40px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */

	text-align:right

}

.twoColFixLtHdr #footer a {

	color:#fff; text-decoration:none;

}

.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;

}



.leftmenu li{color:#000;  text-transform:uppercase;  font-family: 'PT Sans Narrow', sans-serif;, sans-serif; list-style:none; display:block; margin:0 0 0px 0px;padding:3px 0 3px 3px; background-color:#FFF;  /* #EBEBEB;*/ }



.leftmenu a{color:#000; font-weight:bold;display:block;margin:0 0 0px 0px;padding:4px 0 4px 8px;text-decoration:none; background-color:#FFF; /*  border-right:10px #000 solid;*/}

.leftmenu a:hover{color:#B10034; font-weight:bold;display:block;margin:0 0 0px 0px;padding:4px 0 4px 8px;background-color:#FFF;text-decoration:none;  /* border-right:10px #B10034 solid;*/}

.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;

}



h1 {color:#4E4540; 
border-bottom: 3px solid #CCCCCC;
font: bold 1.8em Arial,sans-serif;
margin-bottom: 30px;
margin-top: 30px;
text-transform: uppercase;}

h2 {color:#4E4540; text-align:left; font-family: 'Open Sans Condensed', sans-serif;}

h3 {color:#4E4540; text-align:left;}

.style1 {

  font-weight: bold;

  font-style: italic;

}

.transparent {
	/* Required for IE 5, 6, 7 */
	/* ...or something to trigger hasLayout, like zoom: 1; */
	width: 100%; 
		
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=50);
	
	/* Older than Firefox 0.9 */
	-moz-opacity:0.5;
	
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.5;
    
	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.5;
}

.image { margin: 10px; padding:10px; background-color:#85766D; border: #5C534B 1px solid; 
float:right;}
.image-left { margin: 24px; padding:10px; background-color:#85766D; border: #5C534B 1px solid; 
float:left; }

a {color:#F60;}
a:hover{color:#900;}