/* HTML dog's drop down menu */

#menu, #menu ul {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	/* jazz it up a little */
	width: 900px;
	/* top and bottom lines */
	border: 1px solid #7d6340;
	border-width: 1px 0;
	margin: 0 1em 1em 0;
	background: #eee;
}


#menu a {
	display: block;
	width: 10em;
	padding: 0.25em 2em;
	color: #051970;
	text-decoration: none;
	font-weight: bold;

}

/* menu link color */
#menu a:hover {
	color: #1874CD; 
}

/* menu title items */
#menu li {
	float: left;
	/* width of the title line */
	width: 10.5em;
	padding: 0;
	background: #eee;
}

/* menu item */
#menu li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 13em;
	background-color: white;
	/* make menu boxes a little thicker */
	border-width: 0.15em;
}

/* size of menu item and default background color */
#menu li li {
	padding-right: 2em;
	width: 11em;
	background: white;
	padding-top: .5em;
	padding-bottom: .5em;
}

/* fixed size of menu items and spacing between items */
#menu li ul a {
	width: 10em;
	padding-bottom: 0.5em;
}

/* makes the menu appear */
#menu li:hover ul, #menu li.sfhover ul {
	left: auto;
}

/* change the background color of the menu item */
#menu li:hover, #menu li.sfhover {
	background: #eee;
}
