@charset "UTF-8";

/*links styles are first */

a:link {
	text-decoration: none;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: normal;
	color: #F0F;
}
a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #F0F;
}
a:hover {
	text-decoration: none;
	font-weight: normal;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
	font-weight: normal;
	color: #F0F;
}
.bodytitle {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #333;
	margin-bottom: 1em;
	font-variant: small-caps;
	margin-top: 1em;
}
.bodysub {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #333;
	margin-bottom: 0.5em;
	font-variant: small-caps;
	margin-top: 0.1em;
}
.bodysub2 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #333;
	margin-bottom: .5em;
	font-variant: small-caps;
	margin-top: 0.1em;
}
.bodycopy {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1em;
	font-style: normal;
	line-height: 1.5em;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333;
	margin-bottom: 1em;
}
.bodycopylg {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1.1em;
	font-style: normal;
	line-height: 1.2em;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333;
	margin-bottom: 1em;
}
.bodycopylgr {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1.4em;
	font-style: normal;
	line-height: 1.3em;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333;
	margin-bottom: 1em;
}
.sidebartitle {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 0.85em;
	font-weight: bold;
	color: #006600;
	margin-bottom: 0.2em;
	font-variant: small-caps;
}
.sidebarcopy {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: .9em;
	font-style: normal;
	line-height: 1.4em;
	font-weight: normal;
	font-variant: normal;
	color:  #000;
	margin-bottom: 0.9em;
	margin-top: 0.3em;
}
.caption {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: .8em;
	font-style: normal;
	line-height: 0.9em;
	font-weight: normal;
	font-variant: normal;
	color:  #000;
	margin-top: 0.5em;
}


/* the following refer to the layout */



.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;
}
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;
	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;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
	background-color: #000;
	background-image: url(images/backgr4.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
}
.thrColFixHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	-webkit-box-shadow: 2px 2px 8px #333333;
	-moz-box-shadow: 2px 2px 8px #333333;
	box-shadow: 2px 2px 8px #333333;
} 
.thrColFixHdr #header {
	background-color: #000;
}
.thrColFixHdr #header_nav {
	background-color: #F6F;
	text-align: center;	
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* 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: #FCF; /* padding keeps the content of the div away from the edges */
	padding-left: 10px;
	padding-top: 20px;
	padding-right: 10px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* padding keeps the content of the div away from the edges */
	background: #FCF;
	padding-right: 5px;
	padding-left: 4px;
	padding-bottom: 15px;
	padding-top: 20px;
	height: 1040px;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-bottom: 0;
} 
.thrColFixHdr #mainContent2 {
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .7em;
}
.outer {
	position: relative;
	width: 840px;
	height: 500px;
}
.first {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 410px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
	height: 474px;
}
.second {
	position: absolute;
	top: 0;
	left: 440px;
	width: 370px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
	height: 474px;
}
.third {
	position: absolute;
	top: 0px;
	left: 440px;
	width: 370px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
}
.outerBottom {
	position: relative;
	width: 840px;
	height: 560px;
}
.firstBottom {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 410px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	height: 530px;
}
.outerMedia {
	position: relative;
	width: 860px;
	height: 700px;
}
.firstMedia {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 410px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	height: 330px;
}
.secondMedia {
	position: absolute;
	top: 0;
	left: 430px;
	width: 410px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	height: 330px;
}
.thirdMedia {
	position: absolute;
	top: 350px;
	left: 0;
	width: 410px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	height: 330px;
}
.fourthMedia {
	position: absolute;
	top: 350px;
	left: 430px;
	width: 410px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	height: 330px;
}

