/*
styles for masthead navigation with dropdowns. code came from here:
http://www.alistapart.com/articles/dropdowns
*/

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*
#nav li a, #nav li a:visited,  #nav li {
font-family: "Trebuchet MS",Serif; 
font-size: 14px; 
color: red;
text-transform: uppercase;
}
*/


#nav a {
	font-size: 14px;
	text-decoration: none;
}

#nav li li a {
	display: block;
	font-weight: normal;
	color: black; /*color of text in dropdowns*/
	padding: 0.2em 10px;
	width: 150px; /*sets width of dropdown menus*/
}

#nav li li a:hover {
	padding: 0.2em 5px;
	border: 5px solid #2C69BA; /*color of border on sides of hover item in dropdowns*/
	border-width: 0 5px;
	color: #9E1A1D; /*hover color of text in dropdowns*/
}

li {
	float: left;
	position: relative;
	width: auto; /*sets the width of the dropdown lists*/
	text-align: left;
	cursor: default;
	background-color: transparent; /*background color of top nav items*/
}

li#first {
	border-left-width: 1em;
}

li#last {
	border-right-width: 1em;
}

li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	background: #CEDDEF; /*background color of items in dropdown menus*/
	padding: 0.5em 0 0.5em 0; /*bottom padding is the bottom area of the dropdown*/
}

li>ul {
	top: auto;
	left: auto;
}

li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
}

li:hover ul, li.over ul {
	display: block;
}

hr {
	display: none;
}

p {
	clear: left; /*we need this to clear the floats in the nav bar*/
/*
	padding: 1em 1em 0 1em;
*/
	margin: 0;
}

