/*
#1D3D3A dark green
#36726b pale green
#FBFBCE pale beige
#FF6600 orange
*/

body {
	background-color: #1D3D3A;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #FBFBCE;
	background-image: url(images/source/BANNER4.jpg);
	background-repeat: repeat-x;
	background-position: top center;
}
.titles {
	font-size: 14px;
	font-weight: bold;
	color: #F08324;
}
a:link {
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #FBFBCE;
}

a:visited {
	text-decoration: none;
	color: #F08324;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
tr.title th {
	text-align: center;
	color: #FBFBCE;
	background: #FF6600;
}
tr.normal td{
	color: #FBFBCE;
	background: #1d3d3a;
}
tr.alt td {
	color: #FBFBCE;
	background: #36726b;
}
/* the following (choice) doesn't work as intended */
td.choice {
	font-weight: strong;
	text-align: center;
}
td.title {
	font-weight: bolt;
	color: #FBFBCE;
	background: #FF6600;
}
/*** Nav bar styles ***/

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

ul.nav{
	display: table;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 2px 6px;
}

ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 40ex;
	margin-left: -6px;
	margin-top: 2px;
}

ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
	background-color: #1D3D3A;
	color: #FBFBCE;
}


ul.nav li:hover,
.nav ul li a:hover{
	background-color: #FF6600;
	color: #FBFBCE;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: #1D3D3A;
	color: #FBFBCE;
}

ul.nav,
.nav ul{
	border: 1px solid #FBFBCE;
}

.nav a{
	text-decoration: none;
}