/* created  2006 by Libra Design and Media. Duplication or redistribution is strictly prohibited. */

/* since mostly the same font is used throughout a site, to be able to change it faster you can have a font-family only tag for all */

body, h1, h2, h3, p, td, span {
	font-family : "Tahoma", Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
}

/* html tags */

a:link	{
	color : #8F281F;
	font-weight : bold;
	text-decoration : none;

	}

a:visited {
	color : #8F281F;
	font-weight : bold;
	text-decoration : none;

	}

a:hover	{
	color : #CC6600;
	font-weight : bold;
	text-decoration : underline;
	
}

a:active {
	color : #CC6600;
	font-weight : bold;
	text-decoration : none;

}

body {
	background-color : #FFFFFF;
	text-align: left;
}

h1 {
	color : #000000;
	font-size : 17px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;


}

h2 {
	color : #36565B;
	font-size : 13px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;



}


p {
	color : #000000;
	font-size : 10pt;
	text-decoration : none;
	margin-top : 6px;
	margin-bottom : 0px;
	margin-left : 2px;
	margin-right : 2px;
	
	}

ul {
	color : #000000;
	font-size : 10pt;
	text-decoration : none;
	margin-top : 2px;
	margin-bottom : 0px;

}

/* classes */

.menubk {
	text-align: center;
	
}



/* layers (div) 
"container" just holds everything else, manages width of page content. Like table is relative to its cells.
"content" does the same for the lower part of the page*/


#container{
	position:absolute;
 	width:748px;
 	z-index:1;
 	margin-left:-395px;
 	left: 50%;
	
}


#top{
	position:absolute;
	left:0px;
	top:20px;
	overflow: visible;
	}
	
#menubar{
	position:absolute;
	top:121px; 
	width:100%; /* width relative to the container div outside, not relative to browser */
	height:35px;
	background-color : #C0902E; /* background color of menu bar */
	
}

#button { /* properties of the div holding all the buttons inside it */
	position:absolute;
	width:100%;
	text-align:center;
	
	}
	
#button a:link { 
	color: #000000;
	text-decoration: none;
	
}

#button a:hover {
	color: #000000;
	text-decoration: none;

}

#button a:visited {
	color : #000000;
	text-decoration : none;

		
}

#button a:active {
	color: #F0E4C8;
	text-decoration : none;

}



#content{
	position: relative;
	top:150px; 
	width:	100%;
	height:75%;
	background-color : #FDFDE6;
	text-align:left;
}

#left{
	position: absolute;
	background-color: #BFCBE2;
	left:0px;
	width:175px;
	height:100%;
	overflow:visible;	
}



#text { 
	position: relative;
	top:10px;
	margin-left: 200px;
	margin-right: 20px;
	overflow:visible;

}

#footer{
	position:relative;
	bottom:0px;
	width:100%;
	padding-top: 3px;
	padding-bottom:3px;
	background-color : #8F281F;
	color : #FFFFFF;
	font-size : 11px;
	text-align : center;
	overflow: visible;
}
