@charset "utf-8";
body {
	font: 90% "Trebuchet MS", verdana;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
	
}
 
h1 { text-align:right}
.twoColFixLt #container { 
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* 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 */
	text-align:right;
	padding: 15px 10px 15px 0;
}
.twoColFixLt #mainContent { 
	margin: 0 0 0 0; /* 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: 40px 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.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;
}

a { color:#FFFFFF; text-decoration:none;}
a:hover { color:#FFFFFF; text-decoration:underline;}
li { list-style-type:none; }

/* ----------------- side menu setup ------------------- */

#side-nav, #side-nav ul { /* all lists */

	list-style-type:none;
	width:860px;
	z-index:100;
	position:relative;
	float:left;
	text-align:left;
	margin:0;
	padding:0;
}


#side-nav li a { /* top level list */
display:block; 
text-decoration:none;
color:#000;
border:1px #000000 solid;
height:134px;
width:134px;

}
#side-nav img {
padding:5px;
border:none;
}

#side-nav li { /* first level list items */
float:left;	
z-index:4;
margin-right:4px;
margin-bottom:36px;
text-align:center;
height:135px;
width:135px;
}

.captions {
font-size:9px;
width:125px;
padding:6px;
height:20px;
position:relative;
float:left;

}
.view {
float:left;
position:relative;
border:1px #333333 solid;
text-align:center;
width:424px;
}
.view img {
padding:6px;
border:none;
}
.nav {
position:relative;
height:50px;
width:400px;
padding-top:30px;
height:25px;
border:none;
}

.nav a {
color:#333333;
text-decoration:none;
font-weight:bold;
border:none;
}
.nav a:hover {as
text-decoration:underline;
}

/* hack for IE5.5 */
#side-nav li a {color:#000000; text-decoration:none;}

/* style the link hover */
#side-nav a:hover { text-decoration:none;color:#333333;border:1px #ffffff solid;}

#footer { width:840px; height:25px; position:relative; float:left; text-align:right; padding:20px 0 10px 0; margin:0; }