@charset "UTF-8";
/* CSS Document */

body {
	background-color: #000000;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
}







#container { 
	width: 895px;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar1 {
	float: left; 
	width: 60px; /* since this element is floated, a width must be given */
	
	padding: 0px 0; /* top and bottom padding create visual space within this div  */

}
#logo {
	margin: 0 20px 0 60px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	width: 835px;
}
#nav {
	float: right;

}
#mainContent { 
	width: 835px;
	margin: 0 20px 0 60px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
} 
#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 */
	color: #333333;
	font-size: 10px;
}

.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;
}
#mainContent a img {
	color: #000000;
}
#mainContent a:active img {
	color: #999999;
}
#mainContent a:hover img {
	color: #000000;
}
#mainContent a:visited img {
	color: #000000;
}

#nav a img {
	color: #000000;
}
#nav a:active img {
	color: #000000;
}
#nav a:hover img {
	color: #000000;
}
#nav a:visited img {
	color: #000000;
}
#av {
	height: 623px;  /*623 height minus 2x the padding */
	border: 1px solid #2e2f2c;
	padding: 0;
	margin: 0;
}
#videoplayer {
	width: 600px;
	height: 300px;
}
#print {
	padding: 0;
	margin: 0;
	


/* Typical fixed height and fixed width example */
width: 855px;
height: 622px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

#about {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight:normal;
	color:#999999;
	height: 523px;  /*623 height minus 2x the padding */
	padding: 50px;
	border: 1px solid #2e2f2c;
	line-height: 25px;
}

#contact {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color:#999999;
	height: 223px;  /*623 height minus 2x the padding */
	padding: 200px;
	border: 1px solid #2e2f2c;
}
#contact a {
	color:#cccccc;
}
