﻿  /* CSS layout */
body {background-color: rgb(231,0,0);
  line-height: 14px;
  font-size: 11px;
  color: #2d2e2e;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
<!--Set page contents width to 800 -->
<!--margin-left and margin-right to auto to center contents on page -->
#masthead {width: 800px;  
	background-color: black;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  }
  
#top_nav {width: 800px;   
	margin-left: auto;
	margin-right: auto;	
	text-align: left;}

#container {min-width: 600px;
	width: 800px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: white;
	border: 1px black solid;}
	
#left_col {width: 200px;
	float: left;
	margin-top: auto;
	margin-bottom: auto;
	background-color: rgb(255,240,240);}	
	
#page_content {margin-left: 200px;
	text-align: center;}
	
#footer {clear: both;
	width: 800px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: white;
	border: 1px black solid;}


.glossymenu{list-style-type: none;
	margin: 0px 0;
	padding: 0;
	width: auto;
	border: 0px solid black;
	border-bottom-width: 0px;}

.glossymenu li a{background: black url(Images/btnGrey1.jpg) repeat-x bottom left;
	font: bold 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
	color: Black;
	display: block;
	width: auto;
	padding: 3px 0;
	padding-left: 12px;
	text-decoration: none;}

* html .glossymenu li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
width: 150px;
}
.glossymenu li a:visited, .glossymenu li a:active{color: rgb(0,0,0);}

.glossymenu li a:hover{background-image: url(Images/btnRed1.jpg);
	color: White;}

