#navigation {
	height: 2.2em;
	max-width: 960px;
	min-width: 640px;
	/*clear: both;*/
	background-color: #008080;
	margin-left: auto;
	margin-right: auto;
}
/* dropdown menu */
/*------------------------------------*\
	NAV
\*------------------------------------*/
.nav {
	/* Clear floats */
	float: left;
	width: auto;
	height: 2.2em;
	text-align: left;
	position: relative;
	z-index: 5; /* Bring the nav above everything else--uncomment if needed. */
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.nav li {
	float: left;
	position: relative;
	z-index: 50;
	background-color: #008080;
}
.nav a {
	color: #FFF;
	height: 2.2em;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 2.2em;
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}
.nav_a_small {
	font-size: 0.75em;
}
.nav a:hover {
	color: #FFF;
	height: 2.2em;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 2.2em;
}
/*--- DROPDOWN ---*/
.nav ul {
	list-style: none;
	position: absolute;
	left: -9999px;
	padding: 0px;
	opacity: 0;
	-webkit-transition: opacity 0.3s linear;
	-moz-transition: opacity 0.3s linear;
	-o-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
}
.nav ul li {
	float: none;
}
.nav ul a {
	white-space: nowrap;
}
.nav li:hover ul { /* Display the dropdown on hover */
	left: 0;
	right: 0;
	height: auto;
	opacity: 1;
	display: inline-block;
	width: 11em;
}
.nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	height: 2.2em;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 2.2em;
	color: #008080;
	background-color: #CCDCDD;
}
.nav li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	height: 1.7em;
	text-align: left;
	line-height: 1em;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: normal;
	color: #008080;
	background-color: #CCDCDD;
	padding-top: 0.5em;
}
.nav li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
	background-color: #008080;
	height: 1.7em;
	text-align: left;
	line-height: 1em;
	padding-top: 0.5em;
}
#navigation select {
	display: none;
	margin-left: 10px;
	margin-right: 10px;
	min-width: 620px;
	font-size: 18px;
}