@import "style-perpage.css";
@import "shared-styles.css";

body
{
	font-family: sans-serif;
	font-size: 13.4px;
	margin: 0px;
	padding: 0px;
	background-color: #1E304C;
	color: #333333;
}



/*HIGH-LEVEL LAYOUT */

/* Main-Container is parent, contains:
 *  header, content-container, footer
 * 
 * content-container in turn contains:
 *  logo, content
 * 
 * content in turn contains the main content
 * 
 */

div#main-container
{
	width: 840px;
	margin: 0 auto;	
}
div#content-container
{
	background-image: url("images/background.png");
	background-repeat: repeat-y;
	background-position: center;
}

div#content-container-inner
{
}
div#footer
{
	width: 840px;
	height: 40px;
	margin: 0 auto;
	background-image: url("images/background-bottom.png");
	background-repeat: no-repeat;
	background-position: center;
}
div#content
{
	width: 800px;
	position: relative;
	left: 20px;

}
div#shadow
{
	position: absolute;
	top: 0px;
	left: 0px;
	
	background-image: url('images/background-middle.png'); 
	background-repeat: repeat-x; 
	width: 100%; 
	height: 7px; 
	z-index: 1;
}

div#shadowtitle
{
	position: absolute;
	float: left;
	top: -5px;
	left: 0px;
	
	background-image: url('images/background-middle-bottom.png'); 
	background-repeat: repeat-x; 
	width: 100%; 
	height: 5px; 
	z-index: 1;
}

div#shadowbottom
{
	float: left;
	position: relative;
	top: -5px;
	left: 0px;
	
	background-image: url('images/background-middle-bottom.png'); 
	background-repeat: repeat-x; 
	width: 100%; 
	height: 5px; 
	z-index: 1;
}

#pagetitle {

	background-image: url('images/highlight-middle.png'); 
	background-repeat: repeat-x; 
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-bottom-left-radius: 7px;

}

div#logo
{
	text-align: center; 
	padding: 6.5px 0 6.5px 0;
}
div#header
{
	visibility: hidden;
	width: 0px;
	height: 0px;
	overflow: hidden;
}



/*NAVIGATION BAR (NAVBAR) STYLE*/
div#navbar
{
	width: 150px;
	margin-right: 5px;
	
}
ul.navbar
{
	margin: 0px;
	padding: 6.5px 0px 13px 0px;
}

ul.navbar li
{
	list-style-type: none;
	line-height: 21.5px;
	text-indent: 8px;
}

ul.navbar li a
{
	padding: 0px 8px;
	color: #333333;
	text-decoration: none;
	display: block;
}

ul.navbar li a:hover
{
	background-color: #4168A6;
	color: #FFFFFF;
		
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius: 3px;
	
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
}


/*PRIMARY CONTENT BLOCK (PAGE) STYLE*/

/*content and content-inner hold the main content
 *content-inner is used to allow the pagetitle to reach the edge of the page
 * while still not letting text get too close
 */
div#page
{
	width: 645px;
	padding: 0;
	border: 0;
	float: right;
	overflow: hidden;
	margin: 0px;
	position: relative;
	top: -5px;
			
}
div#page-inner
{
	padding: 5px;
	padding-right: 15px;
	
}



