ul#nav { /*whole menu structure - e.g. padding shifts wole menu*/
	font-family: verdana, arial, helvetica, serif;
	font-size: 14px;
	list-style: none;
	padding-left: 0px ;
	margin: 0;
}

#nav a { /*up-state of main menu items if not gfx*/
	font-weight: normal;
	color: #ffffff;
	background-color: #000;
	text-decoration: none;
	padding:2px;
	padding-left:4px;
	padding-right:4px;
	
	-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

#nav a.selectState { /*selected-state of main menu items if not gfx*/
	background-color: #343c74;
	color: #fff;
}

.button { background-color: #309;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
padding: 1px;text-align:center;}


#nav a:hover { /*over-state of main menu items if not gfx*/
	font-weight: normal;
	color: #ffffff;
	background-color: #848ccc; /*hilite bkg of buttons*/
	text-decoration: none;
}

#nav li { /*main menu items*/
	float: left;
	position: relative;
	margin-right: 0em;
	margin-bottom: 0em;
	padding-left:3px;
	/*width: 10em;*/
	text-align: left;
	cursor: default;
	/*background-color: #F0F0E4;*/
	border: 0px solid #7d6340;
}

#nav li ul { /*pop-up menu panel*/
	display: none;
	list-style: none;
	position: absolute;
	top: 100%;
	/*left: 0;*/
	white-space: nowrap; /*prevent menu items from wrapping*/
	font-weight: normal;
	background-color: #e4ecf4;  /*change this and the one below*/
	margin: 0 0;
	padding-left: 0;
	border-left: solid 1px #343c74;
	border-right: solid 1px #343c74;
	border-bottom: solid 1px #343c74;
}

#nav li li a { /*up-state of dropdown items*/
	font-family: georgia, arial, helvetica, serif;
	display: block;
	list-style: none;
	left: -20;
	font-size: 18px; /* sets dropdown font size*/
	font-weight: normal;
	color: #000;
	background-color: #e4ecf4; /*change this and the one above*/
	padding: 5px 12px;
}

#nav li li a:hover { /*over-state of dropdown items*/
	font-weight: normal;
	color: #fff;
	background-color: #949cc4; /*subbutton hilite*/
}

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

#nav li li { /*pop-up menu items*/
	display: block;
	float: none;
	margin-right: 0em;
	margin-bottom: 0em;
	padding: 0 0;
	background-color: transparent;
	border: 0;
	z-index:99;
	line-height: 0.8  /*sets linespacing*/
}

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


/*non-nav styles*/


img {
	padding-right:10px;
	padding-bottom:10px;
	}


p, ul {text-align:justify;}

#nav a.gray {color:gray}








