/**
 * Here's how this style sheet will work: General styles toward the top and
 * then specific styles, in the order in which they appear on the page.
 */



/**
 * General Styles.
 */




html, body {
	background-color: #152130;
	color: #7C7d97;
	margin: 0;
	height: 100%;
}

a, a:link, a:active, a:visited {
	text-decoration: none;
}
a:hover, a:visited:hover {
	text-decoration: underline;
}

/**
 * Specific Styles
 */
 

h1 {
	display: inline;
	padding: 1em 0 0 2em;
	vertical-align: top;
}
h1 a, h1 a:link, h1 a:active, h1 a:visited, h1 a:hover, h1 a:visited:hover {
	text-decoration: none;
}

h2.title a, h2.title a:link, h2.title a:visited {
	color: #eee887;
	text-decoration: none;
}

h2.title a:hover, h2.title a:visited:hover {
	color: #FFF897;
}



/**
 * Top Bar
 */
 
#topBar {
	background-image: url(bg-header.png);
	height: 100px;
	position: relative;
	width: 100%;
}



 

/**
 * Menus
 */


ul.topMenu {
	list-style: none;
	right: 0;
	bottom: 0;
	position: absolute;
	margin: 0 2em 0 0;
	padding: 0;
	vertical-align: bottom;
}


ul.topMenu li ul {
	list-style: none;
	padding: 0;
}
ul.topMenu a {
	background-image: url(bg-header-link.png);
	font-weight: bold;
	padding: 5px 10px 0 10px;
	white-space: nowrap;
}

ul.topMenu a, ul.topMenu a:link, ul.topMenu a:visited, ul.topMenu a:active {
	color: #ffffff;
	text-decoration: none;
}

ul.topMenu a:hover, ul.topMenu a:visited:hover {
	color: #ffffff;
	text-decoration: underline;
}

ul.topMenu a.selected {
	background-image: none;
	background-color: #152130;
}


ul.menuParent {
	padding: 0;
	margin-left: 1em;
}

ul.menu li.menuItem {
	position: relative;
	display: inline;
}
ul.menu li.horizontalMenuItem.menuHasChildren {
	list-style: url(menu-expanded.png);
}

ul.menu li.menuHasNoChildren {
	list-style-image: url(menu-leaf.png);
}



/**
 * submenus
 */
ul.menu li.horizontalMenuItem ul {
	padding: 0 0 0 0;
	margin-left: 1.2em;
}

ul.menu li.horizontalMenuItem ul li {
	list-style-image: url(menu-leaf.png);
}
ul.menu li.menuItem:hover ul.menu {
	display: block;
}

ul.menu li.menuItem ul {
	position: absolute;
	left: 0;
	top: 1.1em;
	display: none;
}



/**
 * Container
 */
#container {
	margin: 1.3em auto 1em auto;
	width: 900px;
}


/**
 * Left Nav
 */
#leftNavigation {
	background-color: #263140;
	float: left;
	margin: 0;
	width: 200px;
}

#leftNavigationHolder {
	border-top: 1px solid #3C4654;
	margin: 1em;
}


/**
 * Content
 */
#pageContent {
	float: right;
	margin: 0;
	padding: 0;
	width: 675px;
}

#pageContentHolder {
	border-top: 1px solid #313c4b;
	margin: 1em;
}


/**
 * Bottom Bar
 */

#bottomBar {
	background-image: url(bg-header.png);
	float: left;
	height: 4em;
	margin-top: 2em;
	width: 100%;
}