
/* -- GLOBAL -- */
		
* {
	margin: 0;
	padding: 0;
}
html {
	font-size: 100%;
}		
body {
	background: #999;
}
						
/* -- LAYOUT -- */

#container {
	width: 941px;
	margin: 15px auto;
	background: #fff;	
}
			
#header {
	position: relative;
	background: #eee url(../images/layout/header.gif) bottom left repeat-x;	
	border-bottom: 2px #fff solid;
	height: 150px;
}
			
#masthead {
	position: absolute;
	left: 20px;
	top: 8px;
}
#content {
	background: #fff url(../images/layout/content-sub.gif) top left repeat-y;	
}
#main {
	float: right;
	width: 640px;
	padding: 30px 30px 30px 0;
}
#sidebar {
	float: left;
	width: 233px;
	padding-bottom: 20px;
}	
#footer {
	padding: 15px 15px;
	background: #eee url(../images/layout/footer.gif) top left repeat-x;
	font-size: .9em;
	text-align: center;
}
#footer a{
	color: #666;
	font-weight: bold;
	text-decoration: none;
}
#footer a:hover {
	background-color: #fff;
	margin: -2px -4px;
	padding: 2px 4px;
}
#footer ul {
	text-align: center;
	margin: 0 0 1em 0;
}
#footer ul li {
	display: inline;
	list-style-type: none;
	padding: 0 2em;
	margin: 0;
}
		
/* -- MAIN NAVIGATION -- */
			
ul#main-nav { 
	position: absolute;
	left: 0;
	bottom: 0;
	list-style-type: none;
	padding: 0 0 0 30px;
	margin: 0;
}
ul#main-nav li {
	display: inline;
	margin: 0;
	padding: 0;

}
ul#main-nav li a {
	float: left;
	background: url(../images/layout/tab-left.gif) no-repeat left top;
	margin: 0;
	padding: 0 0 0 12px;
	text-decoration: none;
}
ul#main-nav li a span {
	float: left;
	display: block;
	background: url(../images/layout/tab-right.gif) no-repeat right top;
	padding: 8px 20px 5px 8px;
	color: #333;
	font-size: 1em;
	font-weight: bold;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#main-nav li a span {float:none;}
/* End IE5-Mac hack */

#main-nav li a:hover, #main-nav li.current_page_item a, #main-nav li.current_page_parent a {
	background-position: 0% -35px;
}
#main-nav li a:hover span, #main-nav li.current_page_item a span, #main-nav li.current_page_parent a span {
	color: #b00c33;
	background-position: 100% -35px;
}
			
/* -- SUB NAVIGATION -- */
			
#sub-nav {
	list-style-type: none;
}
#sub-nav li {
	border-bottom: 2px #fff solid;
	margin: 0;
	padding: 0;
}
#sub-nav li a {
	position: relative;
	display: block;
	color: #032552;
	padding: 15px 20px;
	margin: 0;
	font-weight: bold;
	text-align: right;
	text-decoration: none;
}
#sub-nav li a:hover, #sub-nav li.current_page_item a {
	background: #fff;
	color: #b00c33;
}
			
/* -- SPECIAL -- */
			
span.layout-replace, #skip-nav { /* Image Replacement */
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;			
}
						
/* Clear fix */
.layout-clear:after {
	content: ".";
	display: block;
	height: 0; 
	clear: both; 
	visibility: hidden;
}

.layout-clear {
	display: inline-block;
}

/* Hide from Internet Explorer for Mac \*/
.layout-clear {
	display: block;
}
/* End hide */			
