/*  Main Body Elements Across Site */

body {
	font: 62.5% Georgia, Times New Roman, serif;
	font-size:.9em;
	background: #666666;
	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: #000000;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

a:link { color: #255C9F; text-decoration: none; }
a:hover { color: #255C9F; text-decoration:underline; }
a:visited { color: #255C9F; text-decoration: none; }

img { border:none; }

.fltrt { float: right; }
.fltlft { float: left; }

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* Home Page Specific */

#home { background: #fff; }
#home #container { border:none; }

#header_logo_home {
	padding: 60px 0px 0px 240px;
}

#main_image {
	padding: 0px 10px 0px 150px;
}

#navbar_home {
   padding: 20px 0px 0px 125px;
}

#navbar_home ul {
   list-style-type: none;
   line-height: 30px;
   font-size: 1.1em;
}


/* Header, Footer, and Navigation Elements */

#header_logo {
	padding: 20px 0px 0px 40px;
}

#navbar {
    padding: 20px 40px 0px 0px;
    font-size: 1.1em;
}

#footer {
	padding: 10px 0;
        font-size: 1em;
	text-align: center;
 	background-color: #666;
	color: #ccc;
}

#footer a:link { color: #99ccff; text-decoration: none; }
#footer a:hover { color: #99ccff; text-decoration:underline; }
#footer a:visited { color: #99ccff; text-decoration: none; }


/* Biography and Contact Form */

#bio #content_main, #contact #content_main {
	padding: 20px 40px;
}

#bio_text, #contact_form {
	margin:0 0 20px 380px;
}

#contact #submit {
	margin-top:10px;
}

.star {
	color:#870303;
}

/* Events */

body#events #content_main {
	padding: 20px 40px;	
}

#event_blog {
	padding:0 40px;
	margin: 20px 0
}

.event_title {
	font-size: 1.5em;
	font-weight: bold;
    text-align: center;
	margin-bottom:10px;
}

.event_body {
   border-bottom: 1px dotted;
   margin: 0 0 10px;
   padding: 0 0 20px;
}

.event_body img {
	margin:10px;
}

#view_past_events {
   text-align: right;
}

