@charset "utf-8";

/*this is for the whole page, sets default font attributes and centers page in browser.*/
body {
	margin: 10px;
	padding: 0px;
	text-align: center;
	color: #7c5371;
	font-family:"Times New Roman", Times, serif;
	font-size: 14px;
}
	
/*attributes for default links, no underlines, */
a:link, a:active, a:visited {
	text-decoration: none;
	font-weight:bold;
	color: #7c5371;
}

/*attributes for hovering over default links, no underlines & changes color */
a:hover {
	text-decoration:none;
	COLOR: #77a76c;
}

/*classes for different colored text and link behavior*/
.white, .white a:link, .white a:visited {
	COLOR: #FFFFFF;
    TEXT-DECORATION: none;
}
.white a:hover {
	COLOR: #EEEEEE;
}
.green {
	COLOR: #014a43;
}
.red {
	color:#750b0b;
}

/*these are for the main header tags, customize these for headers over creating new style*/
h1 {
	margin:0px;
	font-size: 36px;
	font-weight: normal;
	line-height:36px;
	text-align:right;
}
h2 {
	font-size: 20px;
	font-weight: normal;
	margin: 15px 0 0 0;
	line-height:20px;
}
h3 {
	font-size: 14px;
	margin:0px;
	line-height:14px;
	font-weight: normal;
}
h4 {
	font-size: 20px;
	margin:0px;
	line-height:14px;
	font-weight: normal;
}

/*if need to change space above or below all paragraphs*/
p {
	margin-top: 4px;
	margin-bottom: 4px;
}

/*Unordered List, if you're making a bulleted list, this changes indent and such.*/
ul {
	margin-top:0px;
	padding-left:20px;
	margin-bottom:0px;
}

/*this is the outer container, telling it margins from the edges of browser. */
.content {
	margin: 0 auto;
	border-color:#7c537;
	border: 1px solid;
	width:800px;
	font-size:14px;
	line-height:16px;
	background-color:#e5d8e1;
	text-align:left;
}

/*padding can be applied to a td (cell) tag or to image if placing it within a box*/
.padding {
	padding-left: 15px;
	padding-right: 20px;
	vertical-align:top;
}

.fltright {
	float:right;
	padding-right:15px;
}
.middle {
	padding-left:15px;
	padding-right:10px;
	font-size:.9em;
	line-height:1.2em;
}
.leftcell {
	padding: 20px 20px 0px 20px;
	text-align:left;
	vertical-align:top;
	width:500px;
	height:521px;
}
.rightcell {
	padding-right:20px;
	padding bottom: 20px;
	width:300px;
	text-align:left;
}
.leftcellalt {
	padding: 20px 20px 0px 20px;
	text-align:left;
	vertical-align:top;
	width:300px;
	height:500px;
}
.rightcellalt {
	padding-right:20px;
	padding bottom: 20px;
	width:500px;
	text-align:left;
}
.content .white .padding {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.pagename {
	font-size: 24px;
	font-style: italic;
	font-weight:normal;
	margin:5px 0 0 0;
	text-align:right;
}
#menubar, #menubar a:link, #menubar a:visited{
 color:#FFFFFF;
 text-align:left;
 vertical-align:center;
 background-color:#7c5371;
 font-size:12px;
 font-weight:normal;
 padding-left:10px;
}
#menubar a:hover {
	color:#e5d8e1;
}
.lightpurple {
	color:#e5d8e1;
	padding-left:10px;
}
.footer {
	width:800px; 
	margin: 0 auto;}
	
