/*  Dropdown Menu Style Sheet */

body {
  behavior: url(assets/js/csshover.htc);  /* hover:anything support */
	font-family: arial, helvetica, serif;
	color: black;
	background-image: url(images/bg_4.jpg);
	background-repeat: repeat-y;
	width: 800px;
}

#header {
  height: 80px;
	background-image: url(images/Header_3.gif);
	background-repeat: no-repeat;
}

#menu a:link, #menu a:visited {
	text-decoration: none;
	font-weight: bold;
	color: white;
}

#menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu li { /* all list items */
	float: left;
	position: relative;
	width: 100px;
	color: white;
	font-weight: bold;
	background-color: #db1d38;
	border: solid black 1px;
	text-align: center;
	padding-left: 2px;
}
.subdiv li { /* all list items */
	float: left;
	position: relative;
	width: 100px;
	color: white;
	font-weight: bold;
	background-color: #251cdc;
	border: 0px;
	text-align: left;
}
.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 19px;
	left: 0;
}

#menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
#menu li:hover { /* lists nested under hovered list items */
	display: block;
	background-color: #251cdc;
}
#menu li:hover ul, li.over ul { /* lists nested under hovered list items */
  display: block;
}
/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#topnav:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
#content {
	clear: left;
}

