@charset "utf-8";
body  {
	font: 100% Siple Demi Bold, Tahoma, Arial, Helvetica, sans-serif;
	background: #000000;
	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/layout/bg_gradient.png);
	background-repeat: repeat-x;
	border: 0; 
}

a {
	text-decoration:none;
		color:#ffffff;
}
a:hover {
	text-decoration:underline;
	color:#ffffff;
}



a img {
	border:none;	
}

a.reverse {
	text-decoration:underline;
		color:#ffffff;
}
a.reverse:hover {
	color:#2585e0;
}

.thrColLiqHdr #container {
		min-width:1000px;
	max-width:1100px;
	padding:10px;
	width: 100%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #ffffff;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColLiqHdr #header { 
	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:330px;
/*	border:1px solid red;*/
} 


.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 33%; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
}

.thrColLiqHdr #sidebar2 {
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div */
	float:left;
	width:33%;
}


.thrColLiqHdr #sidebar3 { 
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 33%; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div */
}

.thrColLiqHdr #maincontent h1{
	text-align:center;
	margin:5px auto;
	/*border:1px solid red;*/
}
.thrColLiqHdr #maincontent .centeredImage{
	text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
}


.thrColLiqHdr #sidebar1, .thrColLiqHdr #sidebar2, .thrColLiqHdr #sidebar3{
	/*border:1px green solid;*/
	height:330px;

}

.thrColLiqHdr #footer {
	font-size:11px;
	margin-top:10px;
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	color:#ffffff;
} 
.thrColLiqHdr #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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.titleblue {
	color: #2585e0;
}
.titlegreen {
	color: #92D050;
}


#mainScreen {
	float:right;	
}


p.grow {
	margin:auto;
	width:160px;	
}

img.grow {
	width:160px;
	height:228px;
}



.subtitle {
	/**border:1px solid red;*/
	line-height:60px;
	height:80px;

}

.subtitle img {
	vertical-align:middle;	
}
.subtitle h1 {
	display:inline;	
}