@charset "UTF-8";
body {
	font: 100%  Arial, Verdana,Helvetica, sans-serif;
	background: #000;
	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;
	background-image:url(/images/cityscape.jpg);
	background-repeat:repeat-x;
	background-position:top center;
	
}
.oneColFixCtrHdr #super {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	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. */
}

.oneColFixCtrHdr #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #000; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:220px;
	/*background-image:url(/images/header.jpg);
	background-repeat:no-repeat;*/
    
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	border-top:6px solid #fff;
	
}
.oneColFixCtrHdr #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:10px;
	color:#999999;
	text-align:right;

}
.oneColFixCtrHdr #footer a {
	color:#999999;
	text-decoration:none;
}


.oneColFixCtrHdr #content 
{
	padding: 10px 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color:#fff;
	border-top:6px solid #fff;
}

.oneColFixCtrHdr #content p
{
	font-size:12px;
	color:#fff;
}

.oneColFixCtrHdr #content td	
{
	font-size:12px;
	color:#fff;
}

.oneColFixCtrHdr #content a
{
	text-decoration:none;
	color:#c06;
}

.oneColFixCtrHdr #content img
{
	border-color:#c06;
}

.menu 
{
	width:980px; 
	height:20px; 
	position:relative; 
	z-index:100;
	/*border-right:1px solid #000;*/ 
	font-family:arial, sans-serif;
	/*background-image:url();
	background-repeat:no-repeat;*/
	
}
/* hack to correct IE5.5 faulty box model */
* html .menu 
{
	width:980px; 
	w\idth:979px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
{
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu ul ul 
{
	width:135px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li 
{
	float:left;
	width:135px;
	position:relative;
	padding-top:4px;
	
}
/* style the links for the top level */
.menu a, .menu a:visited 
{
	display:block;
	font-size:14px;
	text-decoration:none; 
	color:#fff; 
	width:135px; 
	height:20px;
	/*border:1px solid #000; 
	border-width:1px 0 1px 1px; 
	background:#09c; 
	padding-left:10px; 
	border-right: 1px solid #53534a;*/
	text-align:center;
	/*line-height:29px; 
	font-weight:bold;*/
	
}

.menu a:hover
{
	color:#c06;
	text-decoration:none;
}



/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
	width:135px; 
	w\idth:134px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
	background:#d4d8bd;
}
/* style the second level hover */
.menu ul ul a.drop:hover
{
	background:#c9ba65;
}
.menu ul ul :hover > a.drop 
{
	background:#c9ba65;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul 
{
	visibility:hidden;
	position:absolute;
	height:0;
	top:20px;
	left:0; 
	width:137px;
	border-top:1px solid #fff;
}
/* another hack for IE5.5 */
* html .menu ul ul 
{
	top:20px;
	t\op:21px;
}

.menu ul ul li 
{
	padding-top:0px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table 
{
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
	background:#f1f1f1; 
	/*background-image:url();	
	background-repeat:repeat;*/
	color:#53534a;
	height:auto;
	line-height:1em;
	padding:5px 0px;
	text-align:center;
	width:135px;
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;		
	/*border-width:0 1px 1px 1px;*/
	font-size:10px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited 
{
	width:135px;
	w\idth:134px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
{
/*	color:#000; 
	background:#b7d186;*/
	text-decoration:underline; 
}
.menu :hover > a, .menu ul ul :hover > a 
{
/*	color:#000; 
	background:#b7d186;*/
	text-decoration:underline; 
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul
{
	visibility:visible; 
}

