@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

body  {
	background: #00002D url(../images/background.jpg) repeat-x;
	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;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 18px;
}


#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/fauxcolumn.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #102661;
	text-align: left;
} 

a {
	color: #006A64
}

#header {
	background: #FFF;  /* 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. */
	height: 118px;
	width: 874px;
	margin-right: auto;
	margin-left: auto;
}

#headerText {
	float: right;
	width: 400px;
	margin-top: 50px;
	text-align: right;
	color: #0E4D45;
	font-weight: bold;
	font-size: 13px;
}

#logo {
	width: 382px;
	height: 118px;
	position: relative;
	float: left;
}

#logo h1 {
	background: transparent url(../images/logo.jpg) no-repeat;
	width: 382px;
	height: 118px;
	margin: 0px;
	padding: 0px;
}

#logo a {
	width: 382px;
	height: 118px;
	display: block;
	text-indent: -999999px;
}
#animation {
	margin-right: auto;
	margin-left: auto;
	height: 276px;
	width: 874px;
}


/**------------------Navigation--------------------------**/
#navigation {
	height: 36px;
	width: 874px;
	background: #004D45;
	margin-bottom: 1px;
	margin-right: auto;
	margin-left: auto;
}

#navigation ul {
	margin: 0px;
	padding: 0px;
	height: 36px;
	width: 847px;
	list-style: none;
	float: left;
}

#navigation li {
	float: left;
}

#navigation li a, #navigation li a:active, #navigation li a:visited {
	display: block;
	height: 25px;
	font-size: 15px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	margin-right: 0px;
	padding: 10px 21px 0px;
	background: url(../images/navdivider.jpg) no-repeat right;
	float: left;
}

#navigation li a:hover {
	color: #FFFF99;
	background: #050031;
}

#navbar_email {
	color: #FFF;
	float: right;
	width: 200px;
}

#navigation li a.last, #navigation li a:active.last, #navigation li a:visited.last {
	border-right-style: none;
}


/**--------------------End Navigation_________________________**/


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 299px;
	margin: 0px 0px 0px 14px;
	position: relative;
	min-height: 550px;
}

#newslettersignup {
	background: #0E4D45;
	text-align: center;
	height: 40px;
	line-height: 40px;
	color: #FFF;
}

#newslettersignup a:link, #newslettersignup a:visited {
	color: #FFF;
	text-decoration: none;
}

#newslettersignup a:hover {
	text-decoration: underline;
}

#recentnews {
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	background: #89ADA9;
	border: 1px solid #144D45;
	min-height: 375px;
	position: relative;
}

#recentnews p {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

#sidebar1 #address {
	height: 60px;
	text-align: center;
	padding-top: 10px;
}

.latestnews_head {
	font-size: 18px;
	color: #050031;
	padding-bottom: 20px;
}

.latestnews_readmore {
	text-align: right;
	font-size: 12px;
	font-weight: bold;
}

.latestnews_readmore a:link {
	text-decoration: none;
	color: #050031;
}

.latestnews_readmore a:hover {
	text-decoration: underline;
}

#recentnews hr {
	color: #05002C;
	height: 1px;
	border-top: 1px solid #050031;
}

#mainContent {
	margin: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: right;
	width: 560px;
} 

#mainContent_news {
	width: 875px;
	margin-left: auto;
	position: relative;
	margin-right: auto;
} 

#mainContent h1, #mainContent_news h1 {
	color: #090031;
	padding-bottom: 0px;
	border-bottom: 1px solid #0B6A64;
	font-style: italic;
	font-weight: normal;
	font-size: 30px;
	margin-bottom: 5px;
	margin-top: 12px;
}
#mainContent h2 {
	font-size: 18px;
	font-style: italic;
	font-weight: normal;
	color: #0B6A64;
	padding-top: 8px;
}
#mainContent ul li {
	margin-left: 25px;
	list-style: square;
	padding-bottom: 6px;
}

#contenttext {
	width: 510px;
	border: 1px solid #666;
	margin-bottom: 20px;
	min-height: 500px;
	padding: 5px 15px 10px;
}

#contenttext_news {
	width: 845px;
	border: 1px solid #666;
	margin-bottom: 20px;
	min-height: 500px;
	padding: 5px 15px 10px;
}

#contenttext p {
	padding-bottom: 5px;
	padding-top: 5px;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.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;
}
.imagine {
	font-size: 24px;
	font-style: normal;
}
#flyspeck a {
	text-decoration: none;
}
