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

body
{
	font-family: sans-serif;
	font-size: 13.4px;
	margin: 0px;
	padding: 0px;
	background-color: #89A671;
	color: #2e3436;
}



/*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#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#logo
{
	text-align: center; 
	padding: 0px;
	margin: 0px;
	border: 0px;
	height: 185px;
	overflow: hidden;

}
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: #2e3436;
	text-decoration: none;
	display: block;
}

ul.navbar li a:hover
{
	background-color: #54802C;/*d4d5d6;*/
	color: #eeeeee;
	
	-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
 */
#pagetitle {

	-moz-border-radius-bottomleft: 7px;
	-webkit-border-bottom-left-radius: 7px;

}

div#page
{
	width: 645px;
	padding: 0;
	border: 0;
	float: right; 
	overflow: hidden;	
		
}
div#page-inner
{
	padding: 0px 17px 0px 0px;

}

