@charset "utf-8";
/* CSS Document */

/* resetting default styles... from:
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, p,
a, em, img, ins, b, u, i, center, ol, ul, li, form, label,
table, caption, embed, 
figure, figcaption, footer, header, 
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	float: none;
}


/*AEJ's homebrewed style*/
/*BODY'S BACKGROUND STYLING*/
body {
	min-width: 400px;
	margin: 2em 0;
	padding: 5px 0 25px;
	display: block;
	background-color: #007575;
	overflow: auto;
}


/*PAGE DIV THAT WRAPS ENTIRE PAGE; GLOBAL STYLES*/
.page {
	margin: auto;
	/*min-width: 400px;*/
	max-width: 700px;
	font-family: Georgia, "Times New Roman", Times, serif;
	background: #FFF;
	min-height: 32em;  /*!!!find a more elegant solution!!*/
	
	-webkit-box-shadow: 0px 0px 30px #000; /* Saf3.0+, Chrome */
    -moz-box-shadow: 0px 0px 30px #000; /* FF3.5 - 3.6 */
    box-shadow: 0px 0px 30px #000; /* Opera 10.5, IE9, FF4+, Chrome 10+ */
}

a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

a:visited{
	color: #000;
}

p{
	line-height: 1.2em;
}

.internal_nav {
	width: 50%;
	text-align: center;
	display: inline;
	float: left;
}

h4{
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: normal;
}

table{
	
}

/*BANNER DIV THAT WRAPS THE HEADER PHOTO AND NAVIGATION BAR*/
.banner {
	background-size: 100%; /*raw-file size 1200px x 662px*/
    background-repeat: no-repeat;
	background-position: center;
}

/*WINDOW DIV THAT WRAPS THE HEADER PHOTO*/
.window {
	padding-top: 4.3em;
	padding-bottom: .1em;
}

.window p{
	padding-left: .2em;
	line-height: .8em;
}

/*NAVBAR DIV THAT WRAPS THE NAVIGATION BAR*/
.navbar{
	width: 100%;
	text-align: center;
	background-color: rgba(204,204,204,.4); /*previous color #AFAAAA, (220, 205, 209, .4)*/
}

.navbar ul{
	height: 2em;
	position: relative;
	margin: 0px;
	list-style: none;
	color: #000000;
}

.navbar li {
	padding-top: .5em;
	padding-bottom: .1em;
	width: 20%;
    /*width: 25%;*/
	float: left;
	display: block;
}

.navbar li a{
	display: block;
}

.navbar li:hover {
	font-weight: bolder;
	font-size: 1.05em;
	background-color: rgba(220,205,209, .1);
}

/*SIDEBAR DIV THAT CREATES WHITESPACE TO LEFT OF CONTENT*/
.sidebar {
	min-height: 18em;
	width: 18%;
	float: left;
}


/*CONTENT DIV THAT WRAPS THE CONTENT OF EACH PAGE*/
.content {
	min-height: 18em;
	width: 62%;
	float: right;
	padding: 10%;
	padding-top: 8%;
	text-align: justify;
    -webkit-box-shadow: 0px 0px 2em #AFAAAA inset; /* Saf3.0+, Chrome */
    -moz-box-shadow: 0px 0px 2em #AFAAAA inset; /* FF3.5 - 3.6 */
    box-shadow: 0px 0px 2em #AFAAAA inset; /* Opera 10.5, IE9, FF4+, Chrome 10+ */
	/*previous color used: #F3E7F3*/
}

.content a:hover {
	color: #005E5E;
}

.content img{
	max-width: 100%;
	max-height: 100%;
}

.content h2{
	padding-bottom:.5em;
}

.return li{
	display:inline;
	padding-right: 3em;
}

/*FOOTER DIV*/
.footer {
	padding: .5em;
	width: 100%;
	clear: both;
	display: block;
	text-align: center;
	opacity: .5;
}

.footer p{
	width: 20%;
	display: inline;
}

.tags {
	margin-right: 0;
}