/* Keep height property (in html and body) for browser pop-up compatibility */
html {
	height: 100%;
}
/* (all) Prevent forms from messing with page layout. */
form {
	padding: 0px;
	margin: 0px;
}
/* (render.php) Site-specific design.  */
	body {
		margin: 0px;
		height: 100%;
		padding: 0px;
		background: url('/images/background.jpg') #ffe1cd top center repeat;
		font-family: Arial, Helvetica, sans-serif;
		text-align: center;
	}
	a {
		color: black;
		outline: none;
	}
	.centered {
		text-align: center;
		margin: 0px auto;
		padding: 0px;
	}
	#header {
		clear: both;
		width: 872px;
		height: 172px;
		padding: 0px;
		margin: 36px auto 14px auto;
		background: url('/images/header.gif') transparent top left no-repeat;
	}
	#navbar {
		width: 872px;
		margin: 0px;
		padding: 0px;
		margin: 10px auto;
		text-align: center;
	}
		a.navbutton {
		  /* Sliding right image */
			background: transparent url('/images/navbutton-right.jpg') no-repeat scroll top right; 
			display: block;
			float: left; 
			height: 32px; /* Image Height */
			margin-right: 5px; /* 1/2 the space between links */
			margin-bottom: 0px;
			padding-right: 15px; /* Right Image Width */
			text-decoration: none;
			color: #a23030;
			font-size: 12px;
			font-weight: bold;
		}
		a.navbutton span {
			/* Background left image */ 
			background: transparent url('/images/navbutton-left.jpg') no-repeat; 
			display: block;
			line-height: 32px; /* Image Height */
			padding: 0px 0 8px 18px;
			margin-left: 5px; /* 1/2 the space between links */
		} 
		a.navbutton:hover {
			color: #7a3030;
		}
	#cont_top {
		height: 18px;
		width: 872px;
		background: url('/images/cont-ends.gif') transparent top left no-repeat;
		overflow: hidden;
		font-size: 1px;
		margin: 14px auto 0px auto;
	}
	#cont_mid {
		width: 792px;
		background: url('/images/cont-mid.gif') transparent top left repeat-y;
		overflow: hidden;
		color: black;
		padding: 20px 40px;
		text-align: left;
		margin: 0 auto;
	}	
		#page_title {
			margin: 0px 0px 12px 0px;
		}
			#page_title h1 {
				font-size: 32px;
				color: #a23030;
				padding: 0px;
				margin: 0px;
				display: inline;
			}
		#content p {
			margin: 22px 0px 10px 0px;
			padding: 0px;
		}
	#cont_bot {
		height: 30px;
		width: 872px;
		background: url('/images/cont-ends.gif') transparent bottom left no-repeat;
		overflow: hidden;
		font-size: 1px;
		margin: 0 auto;
	}	
	#footer img {
		margin: 25px auto;
		border: 0;
	}
/* (manage.inc) Second, logged-in menu. */
#menu2 {
	display: block;
	margin: 0px auto;
	width: 852px;
	padding: 5px 10px 5px 10px;
	background-color: #FFC58A;
	color: white;
	font-weight: bold;
	font-size: 80%;
	clear: both;
}
#menu2 a {
	color: black;
	text-decoration: none;
}
#menu2 a:hover {
	text-decoration: underline;
}
#menu2 ul {
	margin: 0;
	padding: 0;
}
#menu2 li {
	display: inline;
	margin: 5px;
	padding: 0px 10px;
}
/* (render.php) Content of the page. */
#meat {
	width: 778px;
	border: 1px solid #0C0721;
	padding: 20px 10px;
	overflow: hidden;
}
#meat a {
	color: black;
}
#meat a:hover {
	text-decoration: none;
}
/* (all) The error/success message box for every page. */
.msg {
	background-color: #FFFBA4;
	border: 2px solid #FFF420;
	padding: 5px 10px;
	margin-bottom: 15px;
}
/* (index.php) Used to maximize boxes, tables, etc. */
.maxWidth {
	width: 100%;
}
/* (index.php) All data tables used in settings and management. */
.tableData1 {
	border-collapse: collapse;
}
.tableData1 thead {
	font-size: 75%;
	font-weight: bold;
	background-color: #B5B5B5;
}
.tableData1 thead td {
	border: 1px solid #676767;
	padding: 4px 5px;
}
.tableData1 tr.odd {
	background-color: #EBEAFF;
}
.tableData1 tr td {
	font-size: 85%;
	border: 1px solid #676767;
	padding: 4px 8px;
}
.tableData1Page {
	float: right;
	font-size: 80%;
}
/* (all) Used at the top of pages and sections. */
h1 {
	font-size: 150%;
}
h2 {
	font-size: 130%;
	margin-top: 6px;
	margin-bottom: 6px;
}
h3 {
	font-size: 115%;
	margin-top: 4px;
	margin-bottom: 4px;
}
/* (index.php) Used for subdividing settings. */
.settingsBox {
	border: 1px solid gray; 
	padding: 10px 15px; 
	margin: 15px 0px;
}
/* (index.php) Used to color .settingsBox. */
.white {
	background-color: white;
}
.green {
	background-color: #E6FFEC;
}
.blue {
	background-color: #E6E7FF;
}
/* (login.inc) Sets how the login link is displayed. */
#login {
	float: right;
	font-size: 75%;
	color: black;
	font-weight: normal;
	margin: 5px;
}
#login a {
	color: black;
	text-decoration: none;
}
#login a:hover {
	text-decoration: underline;
}
/* (index.php, login.inc) Settings for pop-up boxes. */
#loginPopUp, #menuSettingsPopUp, #menuEditPopUp {
	width: 400px; 
	background-color: white;
	color: black; 
	border: 2px solid black; 
	padding: 20px; 
	z-index: 10; 
	position: absolute;
	display: none;
	text-align: left;
}
/* (login.inc) The settings for alternate login options such as 'forgot my password'. */
#altLoginOptions a {
	text-decoration: none;
	font-weight: normal;
	color: black;
	font-size: 75%;
}
#altLoginOptions a:hover {
	text-decoration: underline;
	font-weight: normal;
	color: black;
}
#altLoginOptions ul {
	display: block;
	clear: both;
	list-style-type: none;
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
#altLoginOptions li {
	display: block;
	margin: 0px;	
	padding: 0px;
}
/* (index.php) For paragraphs with no margin above or below. Used primarily on 'people' page. */
p.noMargin {
	margin-top: 0px;
	margin-bottom: 0px;
}
/* (index.php) The personal bio for a 'people' page is placed in this div. */
div#profileBio {
	margin-top: 15px;
	border-top: 3px double black;
	padding: 10px 0px;
	overflow: auto;
}
/* (index.php, login.inc) Background-dimming settings for pop-up boxes. */
#pageDimmer {
	background-color: black; 
	z-index:5; 
	position: absolute; 
	display: none;
	top:0; 
	left:0;
	right:0;
	bottom:0;
	opacity:0.0;
	-moz-opacity:0.0;
	-khtml-opacity:0.0;
	filter:alpha(opacity=0);
}
/* (all) Used in form tables to right-align first columns. */
.alignRight {
	text-align: right;
}
/* (all) For smaller font. */
.small {
	font-size: 75%;
}