/* total width of navbar.  Also background properties of top level items */

#topnav, #topnav ul {
	float: left;
	width: 960px;
	list-style: none;
	line-height: 1.5;
      background: #000000;
	font-weight: normal;
	padding: 0;
	border: solid #000000;
	border-width: 0 0 0 0;
	margin: 0 0 0 0;
}

/* properties of top level items.  Margins also determine spacing of items. */

#topnav li {
	float: left;
	padding: 0;
	width: 320px;
	margin-top: 2px;
	margin-bottom: 2px;
      margin-right: 0;
      margin-left: 0;
}

/* change along with #topnav li ul to change width of drop down items.  Text color and size of top level items set here also. Margin-left plus width should equal width of #topnav li */

#topnav a {
	display: block;
	width: 315px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
      margin-left: 5px;
      font-size: 125%;
}


/* background properties of drop-down items.  Width plus 2x border width must equal width of top level items given above */

#topnav li ul {
	position: absolute;
      background: #ffffff;
	left: -999em;
	height: auto;
	width: 316px;
	font-weight: normal;
	border-width: 2px;
	margin: 0;
}

/* margin-bottom here changes space between drop down lists without adding space to top bar */

#topnav li li {
	padding-right: 0px;
      margin-bottom: 7px;
	width: 316px;
}

/* color, size, weight of drop down text.  Width must be same as #topnav li li */

#topnav li ul a {
	color: #000000;
	width: 316px;
      font-size:100%;
      font-weight: normal;
}


#topnav li:hover ul ul, #topnav li:hover ul ul ul, #topnav li.sfhover ul ul, #topnav li.sfhover ul ul ul {
	left: -999em;
}

#topnav li:hover ul, #topnav li li:hover ul, #topnav li li li:hover ul, #topnav li.sfhover ul, #topnav li li.sfhover ul, #topnav li li li.sfhover ul {
	left: auto;
}

/* background properties of items when hovered over */

#topnav li:hover, #topnav li.sfhover {
}

/* text properties of top items when hovered over */
#topnav li a:hover, #topnav a.sfhover {
	color: #ffffff;
}

/* text properties of lesser items when hovered over */
#topnav li li a:hover, #topnav a.sfhover {
	color: #B8860B;
}

.banner {
font-size: 125%;
font-style: italic;
}


