﻿/* CSS layout */

#main {
	width: 750px;
	margin: auto;
}

.header {
	border-width: thin;
	border-color: #FFFFFF;
	font-family: Calibri;
	font-size: small;
	color: #FFFFFF;
	background-color: #CC0000;
	margin: auto;
	line-height: 20px;
	border-bottom-style: solid;
}

#address {
	height: 35px;
}
#I1 {
	border-style: none;
	height: inherit;
	width: 750px;
}


#title{
	height: 250px;
}

#page_content {
}
#footer {
	height: 25px;
}

.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
	display: block;
	font-size: 10px;
	padding: 7px 0;
	width: 90px;
	color: #FFFFFF;
	background: #CC0000;
	text-decoration: none;
	text-align: center;
}

.menu a:hover{
	font-weight: 600;
}

.menu ul li ul li a,
.menu ul li ul li a:visited{
	width: 110px;
}

/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:139px;
	height:0;
}


/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}

#nav {
	height: 27px;
	background-color: #CC0000;
}
