@charset "utf-8";

/* BrianEHall.com style sheet */
/* *********** COLORS ********************* */
/* #000000 - black      */
/* #ffffff - white      */
/* #2a648f - dark blue */
/* #98bccd - medium blue  */
/* #cc00e9 - light blue  */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	background-color: #98bccd;
}
#container {
	width: 600px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 10px auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	padding: 30px;
}
h1 {
	margin-top: 0;
	padding-top: 0;
	font-weight: bold;
	color: #2a648f;
	}
h2 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-weight: bold;
	color: #2a648f;
	}
#header {
	/* background: #DDDDDD; */
	/* padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	display: block;
	height: 100px;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 0 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* Substitute header image for heading text */
#header h2, #header h3 {
	/* font-family: 'Times New Roman', Palatino, serif; */
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#header h2 {
	font-size: 36px;
	margin-top: 0px;
	font-weight: bold;
	color: #2a648f;
}
#header h3 {
	font-size: 14px;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
}
#mainContent {
	background: #FFF;
	clear: both;
	padding-top: 15px;
}
a:link, a:visited { 
	text-decoration: none;
}

a:hover { text-decoration: underline; }
#navlist {
	background-color: #2a648f;
	display: block;
	float: none;
	list-style-type: none;
	height: 40px;
	padding: 0;
	margin: 0px;
}

#navlist li {
	float: left;
	list-style-type: none;
}
#navlist li a {
	display: block;
	float: left;
	/* border: 0; */
	color: #fff;
	background-color: #2a648f;
	padding: 10px;
	font-weight: bold;
}
#navlist li a:hover {
	color: #98bccd;
}

#footer {
	text-align: center;
	background-color: #98bccd;
	font-size: 8pt;
	width: 600px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
img {
	border: 2px solid #000;
}

.index {
	margin: 0 auto; 
	border: 5px solid #000000; 
	width: 590px;
	height: auto; 
}
.disclaimer {font-size: 8pt; }

.picture {
	display: block;
	width: auto;
	height: auto;
	float: left;
	clear: none;
	text-align: center;
}

.picture img {
	position: relative;
	float: left;
	margin: 5px 5px 30px 5px;
	padding: 0;
	border: solid 2px #000;
}

.caption {
	clear: both;
	text-align: center;
	font-size: 10px;
	margin: 0 0 5px 0;
	padding: 0;
}

.clearer { clear: both; }

.text_field { width: 250px; }
.floatright {
	float: right;
	margin-bottom: 5px;
	margin-left: 10px;
}
.floatleft {
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}

