﻿@charset "utf-8";
/* CSS Document */
<style type="text/css"> 
 
body  {
	background-image: url(../images/bg.gif);
	background-attachment: fixed;
    background-position:top center;	
	font-family:arial, verdana, sans-serif;
}

.twoColElsLtHdr #container {
	width: 1100px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #F00;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 2;
	margin-right: auto;
	margin-bottom: 2;
	margin-left: auto;
	background-color:#000;
} 
.twoColElsLtHdr #header {
	background: #000000;  /* 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. */
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 2px;
	padding-left: 2px;
} 
.twoColElsLtHdr #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: 2px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColElsLtHdr #leftSide{
	float: left;
	width: 200px;
	text-align:center;
	margin-left: 1.5em;
	margin-top: 1.5em;
	margin-right: 0em;
	margin-bottom:0em;
	clip: rect(auto,auto,auto,auto);
	background-color:#191919;
	border: thin solid #F00;
}

.twoColElsLtHdr #mainContent {
	margin-top: 0;
	margin-right: 1.5em;
	margin-bottom: 0;
	margin-left: 18em;
	text-align: left;

} 

.twoColElsLtHdr #subContent {
}

.twoColElsLtHdr #footer {
	margin-top:1.5em;
	text-align: center;
	background-color:#191919;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	border: thin solid #F00;
} 
.twoColElsLtHdr #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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColElsLtHdr #footer p#opt {
	font-size:smaller;
}

/* 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: 28px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 28px;
}
.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: 29px;
    line-height: 0px;
}
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #CCC;
	background-image: url(../images/bg.gif);
	background-attachment: fixed;
	font-family:arial, verdana, sans-serif; 
	font-size: small;
}

body h1 {
	font-size:large;
	color:#CCC;
}

body h2 {
	font-size:medium;
	color:#CCC;
}

body h3 {
	font-size:small;
	color:#CCC;
}

a:link {
	text-decoration: none;
	color: #CCC;
}
a:visited {
	text-decoration: none;
	color: #CCC;
}
a:hover {
	text-decoration: none;
	font-weight: bold;
}
a:active {
	text-decoration: none;
	color:#F00;
}
 
</style>[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsLtHdr #sidebar1 { padding-top: 50px; }
.twoColElsLtHdr #mainContent {
	zoom: 1;
	padding-top: 25px;
	text-align: justify;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]

