/*Reminder
	<u> = text-decoration: underline;
	<i> = font-style: italic;
	<b> = font-weight: bold;
*/

body { 
	background-color: #212121;
	font-size: 120%;
	font-family: "Arial Narrow", "Arial", serif, sans-serif;
	background-color: #F7BF23;
	color: #000000;
	
}

div{

	/*border-style: solid;
	border-color: #AA0000;
	border-width: 1px;*/

}


div.container {
/*This is the box all the stuff is contained in.   */	
	position: relative;
	width: 800px;
	max-width: 800px;
	margin: 0px auto;
	margin-top:60px;
	margin-bottom:50px;	
	padding: 0px;
		
	background-color: #F8E724;
	border-style: solid;
	border-color: #000000;
	
	min-height: 600px;
		/*This should be the height of the links sidebar, and is necessary
		  since we cant use display: tablecell in links (due to IE), and thus 
		  have to have it floating*/

	background-image: url(images/fadebg.png);
}


div.links {

	position: relative;
	
	width: 130px;
	padding-left: 3px;
	padding-right: 3px;
	padding-top:20px;
	
	left: 0px;
	
	float: left;
	clear:both;
	
	text-align: center;
	
}
	
div.main {
	position: relative;
	
	/*width: 620px;*/
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 30px;
	margin-left: 130px; 
	/*Must match total size of links, makes display correctly in Firefox (and doesn't break IE)*/

	text-align: left;
	
}

div.footer {
	position: relative;
	
	font-size: 75%;
	
	padding: 10px;
	
	text-align: center;
	
}

a img{
	border: 0px;
}

hr {
	background-color: #A57407;
	color: #805906;
	border: 0;
	/*height: 3px;*/
}

div.links div{
	padding: 0.4em 0em;
}
div.links .book{
	font-style: italic;
}
div.links .current{
	font-weight: bold;
}

/*Hyperlink Effects*/

a:link {
	text-decoration: underline;
	color: #6E4300;
}

a:visited {
	text-decoration: underline;
	color: #985E02;
}

a:hover { 
	text-decoration: underline; 
	color: #DE8800
}

/*Classes*/

.title{
	font-weight: bold;
	text-decoration: underline;	
}

.italic{
	font-style: italic;
}

.bolditalic{
	font-style: italic;
	font-weight: bold;
}
.calligraphy{
	font-family: "Lucida Handwriting", "Monotype Corsiva", "Informal Roman",cursive;
}
.centered{
	text-align: center;
	
}

.seperatedX{
	margin-right: 70px;
	
}

.passage{
	padding-left: 30px;
	font-style: italic;
	font-size: 90%;	
}

.smalltext{
	font-size: 85%;	
}

img.floatRight{
	float:right; 
	margin-left: 10px;
}

.attentionBox{
	background-color: orange;
	padding: 0 0.2em;
	color: #FFF;
	font-size: 50%;
	font-style: normal;
}
