/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	text-align: center;
} 
 
#container {
	width: 996px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #000;
	/*border: 1px solid Red;*/
} 

#topnav {
	height: 62px;
	width: 100%;
	vertical-align: bottom;
}

 #topleftnav {
	float: left;
	width: 500px;
	color: #155352;
	margin-top: 43px;
	margin-left: 120px;
}

#topleftnav a {
	font : 14px  "Times New Roman", Times, serif;
	color : #155352;
	text-decoration: none;
	font-weight: bold;
}

topleftnav a:link {
	color: #155352;
}

topleftnav a:visited {
	color: #155352;
}

#topleftnav a:hover {
	color: #A07F0B;
}

#toprightnav {
	float: right;
	margin-top: 36px;
	margin-right: 13px;
	text-align: right;
	width: 150px;
	/*border: 1px solid Blue;*/
	position: relative;
}

#header {
	height: 259px;
	/* IMPORTANT */
	width: 100%;
	background : url(http://batmobile.websitewelcome.com/~peabodyr/images/structure/peabody_top.png) no-repeat;
	text-align: right;
	padding-top: 10px;
	/*border: 1px soild Red;*/
} 
 
#menunav {
	width: 900px;
	height: 28px;
	margin-right: 10px;
	text-align: center;
	color : White;
	padding-top: 8px;
	/*border: 1px solid Green;*/
	margin-top:185px;
}

#menunav a {
	font :20px "Times New Roman", Times, serif;
	text-decoration : none;
}

#menunav a:link {
	color: #FFF;
}

#menunav a:visited {
	color: #FFF;
}

#menunav a:hover {
	color: #A07F0B;
}

#content {
	width: 888px;
	padding : 65px 5px 5px 5px;
	border: 1px solid #000;
	margin-left: 83px;
	margin-top: 10px;
	background : #E7EEEE;
	overflow: visible;
	position: relative;
}

#content #img {
	border : 1px solid #155352;
}

#heading_bar {
	width: 920px;
	height: 33px;
	background : url(http://batmobile.websitewelcome.com/~peabodyr/images/structure/heading_bar.png);
	color: #FFF;
	position: absolute;
	top: 20px;
	left: -11px;
}

#heading_bar_home {
	width: 900px;
	height: 28px;
	background : url(http://batmobile.websitewelcome.com/~peabodyr/images/structure/heading_bar.png);
	padding-left: 20px;
     padding-top: 5px;
	position: absolute;
	left: -10px;
	top: 20px;
}

#content_home {
	width: 900px;
	border: 1px solid #000;
	margin-left: 82px;
	margin-top: 10px;
	overflow: visible;
}

#footer{
	text-align: center;
	font-size: 8pt;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

#footer_text {
	margin-top: -20px;
	margin-left: 80px;
	color: #155352;
}

H1 {
	font-size: 18px;
	padding: 0px;
	margin: 0px 0px 0px 20px;
}

H2 {
	font-size: 16px;
}


/*Simple styles for clients to use sizes and colors etc.*/

.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #008000;
}

.yellow {
	color: #ffff00;
}

.heading {
	color: #155352;
	font-weight: bold;
}

/* Slideshow viewer styles */
#slideshow .show {
     display: block;
}

#slideshow .hidden {
     display: none;
}

#slideshow .notselected {
     color: #FFFFFF;
}

#slideshow .selected {
     font-weight: bold;
     color: #C4624E;
}

#slideshow .numbers {
     padding: 0px 5px 0px 5px;
     cursor: pointer; 
     width: 25px; 
     height: 20px; 
     background: #155352; 
     text-align: center;
}

ul {
	list-style-image: url(/media/red-di.gif);
	}

/* Other style names that may be used include:

1) horiz-nav - if nav needs to be a horizontile navigation
2) base-nav - if nav needs to be text links near the copyright
3) copyright - if the style needs to be different from other elements in the footer - usually used in a span within the footer div
4) something_something where there would be additional styles for sectioned layouts where the peacies fit togeather but are in seperate divs (eg. nav_top, nav_bottom or header_left, header_right etc.)
5) something_something where there would be user defined changes through either navigation or selection (eg. header_0, header_1, header_2)

*/  

 @media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}

