/* CSS Document */


body { 
	background-color:#666666;
	}
	
#header {
	background-color:#FFFFFF;
	width:800px;
	min-height:80px;
	text-align:center;
	}
	
#container { 
	width:800px;
	margin:0 auto;
	background-color:#FFFFFF;
	min-height:650px;
	text-align:center;
	}
	
#content {
	text-align:left;
	min-height:inherit;
	}
	
#leftColumn {
	float:left 75%;
	padding-top:30px;
	}
	
#rightColumn {
	float:right;
	width:65%;
	padding-right:50px;
	text-align:justify;
	}
	
#rightColumnLink {
	float:right;
	width:65%;
	padding-right:50px;
	text-align:justify;
	}

#rightColumnLink a {
	text-indent:-9999;
	text-decoration:line-through;
	color:#FFFFFF;
	}
	
#rightColumnLink a:hover {
	background-color:#FFFFFF;
	color:#FFFFFF;
	}

#footer {
	background-color:#FFFFFF;
	max-height:30px;
	text-align:base-line;
	}
	
h1 {
	color:#000000;
	}

h6 {font-weight:normal;
	}	
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	}
	
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background:#FFF;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}
	
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 1px solid #ccc;
	}
	
li:hover ul, li.over ul { 
	display: block; }
	
a:hover {background-color:#999999;
		font-weight:bolder;
		color:#FFFFFF;
		}
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; background:#FFFFFF}
/* End */
	
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;




