/*
 * Earth-tone color scheme:
 * Overall background		#F2F2DE
 * Header background		#EBEBCC -- also text color for navigation buttons
 * Motto background			#D6D696 -- also hover color for navigation buttons
 * Navigation background	#669933 -- also used as text color for header, motto, and headings on third column
 * Content header			#AA8121 -- also used as hover color for anchors in text
 * Anchors in text			#4154BC
 * Navigation text hover	#2E6959
 * Content text				#666666
 */

/*
 * Earth-tone color scheme
 */

/* Global Styles */

body {
	margin:0px;
	/*background: #F2F2DE;*/
	background: url(images/clouds.jpg);
}
	
a {
	color: #4154BC;
}
	
a:hover {
	color: #AA8121;
}

/* ID Styles */

#wrapper {
	background:#F2F2DE url(images/nav_background.gif) repeat-y 15% 0;
}

#header {
	padding-top: 20px;
	text-indent: 70px;
	font:24px Arial, Helvetica, sans-serif;
	letter-spacing:.2em;
	line-height:30px;
	background: #EBEBCC;
	color: #669933;
}

#subhead {
	padding-bottom: 28px;
	text-indent: 70px;
	font:11px Arial, Helvetica, sans-serif;
	font-weight: bold;
	letter-spacing:.4em;
	line-height:18px;
	background: #EBEBCC;
	color: #AA8121;
}

#divider {
	width: 100%;
	height: 30px;
	background: #D6D696;
	color: #669933;
	border-top: 2px solid #669933;
	border-bottom: 2px solid #669933;
	text-indent: 20px;
	font:14px Arial, Helvetica, sans-serif;
}

#divider p {
	position: relative;
	top: -8px;
}

#nav {
	width:15%;
	float:left;
	background: #669933;
}

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

#nav a {
	border-bottom: 1px solid #F2F2DE;
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-indent: 20px;
	color: #EBEBCC;
}

#nav a:hover {
	color: #2E6959;
	background: #D6D696;
}

#content {
	width:81%;
	float:right;
	font:11px Arial, Helvetica, sans-serif;
	color:#666666;
	line-height:20px;
}

#content h1 {
	padding-bottom: 0;
	margin-bottom: -8px;
	font: 18px Arial, Helvetica, sans-serif;
	color: #AA8121;
	line-height:26px;
	letter-spacing:.21em;
}

#mainContent {
	margin-top: 24px;
	width:48%;
	max-width:480px;
	float:left;
}

#secondaryContent {
	margin-top: 30px;
	margin-right: 20px;
	width:46%;
	float:right;
}

#secondaryContent h2 {
	padding-bottom: 0;
	padding-top: 10px;
	margin-bottom: -8px;
	font: bold 11px Arial, Helvetica, sans-serif;
	color: #669933;
	letter-spacing:.2em;
}

#footer {
	clear:both;
}

#revive {
	visibility: hidden;
}

/* Class Styles */
	
.inlineHeader {
	font: bold 11px Arial, Helvetica, sans-serif;
	letter-spacing:.2em;
	color: #669933;
}

	
.navText {
	font: 11px Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #003366;
	line-height:16px;
	letter-spacing:.1em;
	text-decoration: none;
}

.graphbutton {
	float: left;
	margin: 8px;
}

.graphbutton img {
	border: 2px solid #669933;
}
	
.graphbutton img:hover {
	border: 2px solid #D6D696;
}

.emphasis {
	font-style: italics;
	color: #669933;
}

.centeredHeading {
	text-align: center;
}
	
a.button {
    background: transparent url('images/bg_button_a.gif') no-repeat scroll top right;
    color: #666666;
    display: block;
    float: left;
    height: 24px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button span {
    background: transparent url('images/bg_button_span.gif') no-repeat;
    display: block;
    line-height: 14px;
    padding: 5px 0 5px 18px;
}

a.button:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:active span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
}


