body {
	color: #3B3B3B;
	background-color: #EBE7DA;
	font-size: 12px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 15px;
	line-height: 1.5em;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 5px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px;
	margin-bottom: 5px;
	text-align: left;
	font-weight: normal;
}
h1 {
	font-size: 24px;
	color: #000;
	font-weight: 200;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: normal;
	line-height: 1.2em;
	margin-top: 5px;
	margin-bottom: 10px;
}
h2 {
	font-size: 18px;
	color: #3F3F3F;
	padding-right: 3px;
	padding-bottom: 0px;
	padding-left: 26px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	padding-top: 0px;
	background-image: url(../imagesnew/bullet-orange.png);
	background-repeat: no-repeat;
	background-position: 5px 6px;
	text-transform: lowercase;
	background-color: #F2F1EC;
	margin-bottom: 10px;
	line-height: 1.2em;
	margin-top: 10px;
	border-top-width: 1px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #E4E1DA;
	border-right-color: #E4E1DA;
	border-bottom-color: #E4E1DA;
	border-left-color: #E4E1DA;
}
h3 {
	font-size: 12px;
	margin-bottom: 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	line-height: 1.6em;
	margin-top: 0px;
	font-weight: bold;
}
h4 {
	font-size: 11px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
	line-height: 1.2em;
	margin-bottom: 0.5em;
	margin-top: auto;
}
h5 {
	font-size:13px;
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	line-height: 1.1em;
}
li {
	background-image: url(../imagesnew/newgraphics/arrow2.gif);
	background-repeat: no-repeat;
	background-position: 0px 0.5em;
	padding-left: 10px;
	margin-left: 4px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	text-decoration: none;
	color: #33332D;
}
a:visited {
	color: #6E6C64;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #000;
}
.p-reading {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	color: #000;
}
#ad-wrapper {
	width: 1160px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #E6E3D9;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DADADA;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #DADADA;
}


/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0;
	margin-right: auto;
	margin-left: auto;
	float: left;
	text-align: left;
	background-color: #FFF;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	padding-left: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: 88px;
	margin-top: 10px;
	background-image: url(../imagesnew/UFOEvidenceCSSHeader-2.jpg);
	background-repeat: no-repeat;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.contentsidebar {
	float: right;
	width: 275px;
	background-color: #F2F1EC;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-left-color: #E7E4DC;
	background-color: #F8F7F3;
	margin: 0px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.contentmain {
	width: 598px;
	float: left;
	clear: both;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 25px;
	background-color: #FFF;
	margin: 0px;
}
.content ol , .contentmain ul{
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* -- NEW Nav Bar 2 - from W3Schools.com */
ul.navbar2 {
	list-style-type:none;
	padding:0;
	overflow:hidden;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0;
}
ul.navbar2 li {
	float:left;
	background-image:none;
	margin: 0px;
	padding: 0px;
}
ul.navbar2 a, ul.navbar2 a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display:block;
	width:128px;
	color:#999;
	background-color:#F1EFE4;
	text-align:center;
	padding:1px;
	text-decoration:none;
	height: 18px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	text-transform: uppercase;
	font-weight: bold;
}
ul.navbar2 a:hover, ul.navbar2 a:active, ul.navbar2 a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color:#D6D0BA;
	color: #000;
}

/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #BDB89F;
	height: 65px;
	padding: 15px;
	margin-bottom: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B9B9AC;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}#splash {
	margin: 0px;
	padding: 0px;
}
#featuredsections {
	padding-left: 0px;
	padding-top: 0px;
	margin-top: 10px;
}
#topicmenu-wrap {
	margin-top: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#featuredsections img {
	padding: 5px;
	border: 1px solid #DBDBDB;
	background-color: #F5F5F3;
	height: 74px;
	width: 175px;
	margin-bottom: 5px;
	margin-top: 5px;
	margin-left: 0px;
}
#splash img {
	border: 1px solid #DBDBD7;
	padding: 5px;
	background-color: #F5F5F3;
	margin: 0px;
	float: left;
	width: 586px;
}
.topicmenu-col {
	background-color: #FFF;
	padding: 2px;
	float: left;
	width: 195px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.topicmenu-col h4, .sidemenu-col h4, .sectionhomemenu-col h4 {
	padding-top: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D3D3C0;
	padding-bottom: 3px;
	margin-bottom: 5px;
	margin-right: 5px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	width: 96%;
}
.topicmenu-col h3, .sidemenu-col h3, .sectionhomemenu-col h3 {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #E2E2D8;
	border-bottom-color: #E2E2D8;
	color: #4F4F4F;
	background-color: #F2F1EC;
	font-size: 14px;
	padding-right: 0px;
	width: 95%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	line-height: 1.2em;
}
.featureditem {
	float: left;
	padding-left: 3px;
	padding-right: 13px;
}
.sidebar-item {
	background-color: #EFEDE4;
	border-top-width: 3px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E7E4DC;
	border-right-color: #E7E4DC;
	border-bottom-color: #E7E4DC;
	border-left-color: #E7E4DC;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 7px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
}
.sidebar-item img {
	float: left;
	padding: 3px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #d4d4d4;
	background-color: #F5F5F3;
}
.sidebar-item h3 {
	font-size: 18px;
	font-weight: normal;
	color: #33332D;
	line-height: 1.2em;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.featureditem ul li {

}
.contentsidebar p {
	padding-top: 5px;
	margin: 5px;
	padding-left: 5px;
}
.sidebar-item ul {
	float: left;
}
#introtext {
	margin: 0px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: normal;
	width: 310px;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#underlinemenu {
	padding-top: 94px;
}

body.home #underlinemenu ul li #home, body.home #underlinemenu ul li #home a, body.home #underlinemenu ul li #home a:hover,
body.topics #underlinemenu ul li #topics, body.topics #underlinemenu ul li #topics a, body.topics #underlinemenu ul li #topics a:hover,
body.photos #underlinemenu ul li #photos, body.photos #underlinemenu ul li #photos a, body.photos #underlinemenu ul li #photos a:hover,
body.cases #underlinemenu ul li #cases, body.cases #underlinemenu ul li #cases a, body.cases #underlinemenu ul li #cases a:hover,
body.sightings #underlinemenu ul li #sightings, body.sightings #underlinemenu ul li #sightings a, body.sightings #underlinemenu ul li #sightings a:hover,
body.reportform #underlinemenu ul li #reportform, body.reportform #underlinemenu ul li #reportform a, body.reportform #underlinemenu ul li #reportform a:hover{
	background-color: #FBFAF7;
	background-image: none;
	list-style-image: none;
	list-style-type: none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #C5B485;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #C5B485;
	border-left-color: #C5B485;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin: 1px;
}



	
#underlinemenu ul{
	margin-bottom: 0px;
	padding-left: 0px;
	float: left;
	font-weight: normal;
	width: 945px;
	text-align: center;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #e4e1da;
	border-bottom-color: #e4e1da;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 15px;
	background-color: #f5f2ea;
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
}

* html #underlinemenu ul{ /*IE only rule. Delete extra margin-bottom*/
	margin-bottom: 0;
	list-style-image: none;
	list-style-type: none;
}

#underlinemenu ul li{
	display: inline;
	list-style-type: none;
	font-weight: bold;
	font-size: 12px;
	background-color: #f5f2ea;
	font-family: Tahoma, Geneva, sans-serif;
	list-style-image: none;
	background-image: none;
}


#underlinemenu ul li a{
	float: left;
	color: #5B4322;
	text-decoration: none;
	background-color: #f5f2ea;
	background-repeat: no-repeat;
	background-position: right 4px;
	width: 136px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 4px;
	padding-left: 3px;
	background-image: url(../imagesnew/newgraphics/menudivide2.gif);
	list-style-image: none;
	list-style-type: none;
}

#underlinemenu ul li a:hover{
	background-color: #FBFCFD;
	border: 1px solid #CAC5B7;
	margin: 1px;
	padding-top: 1px;
	padding-bottom: 2px;
	background-image: none;
	list-style-image: none;
	list-style-type: none;
	padding-left: 1px;
	padding-right: 1px;
}
.ad-skyscraper {
	text-align:center;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #BDBD9F;
	padding-top: 17px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 20px;
	display: block;
}
#ad-banner {
	background-color: #E6E3D9;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	display: block;
	float: left;
	position: relative;
}
#contentmain-col {
	padding-top: 15px;

}
#contentmain-intro {
	padding: 0px;
}
#contentmain-intro img {
	border: 1px solid #D2D2D2;
	padding: 4px;
	background-color: #F9F9F7;
	margin-top: 0px;
	margin-right: 15px;
	margin-left: 0px;
	float: left;
}
.sidemenu-col {
	background-color: #FFF;
	border-top-width: 3px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E7E4DC;
	border-right-color: #E7E4DC;
	border-bottom-color: #E7E4DC;
	border-left-color: #E7E4DC;
	margin: 0px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.img-photothumb {
	padding: 5px;
	border: 1px solid #DBDBDB;
	background-color: #F5F5F3;
	width: 200px;
	height: 150px;
	float: left;
	margin-bottom: 15px;
}
.contentsidebar-narrow {
	float: right;
	width: 215px;
	background-color: #F8F7F3;
	margin: 0px;
	padding: 15px;
	border-left-width: 1px;
	border-left-style: solid;
	border-top-color: #E7E4DC;
	border-right-color: #E7E4DC;
	border-bottom-color: #E7E4DC;
	border-left-color: #E7E4DC;
}
.contentmain-wide {
	width: 668px;
	background-image: url(../imagesnew/slider_background_noise.png);
	float: left;
	clear: both;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 25px;
}
.contentmain-fullwidth {
	padding-top: 15px;
	padding-bottom: 10px;
	background-image: url(../imagesnew/slider_background_noise.png);
	float: left;
	clear: both;
	padding-right: 15px;
	padding-left: 15px;
	width: 930px;
}
.contentmain-fullwidth-margins {
	margin-left: 60px;
	margin-top: 25px;
	
}
.img-box {
	padding: 5px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #d4d4d4;
	background-color: #F4F4F0;
}
.img-photobig {
	padding: 12px;
	border: 1px solid #DBDBDB;
	background-color: #F4F4F0;
	width: 580px;
	height: 430px;
	float: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 25px;
}
.img-case-big {
	padding: 12px;
	border: 1px solid #DBDBDB;
	background-color: #F4F4F0;
	width: auto;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 25px;
}
.photodetail-imgcontainer {
	width: 595px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.photodetail-imgcontainer img {
	padding: 5px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #d4d4d4;
	background-color: #F4F4F0;
}
.photodetail-imgcontainer p {
	width:580px;
	line-height: 1.1em;
	margin-top: 5px;
}
#contentwrapper {
	float: left;
	clear: both;
}
.content-intro-text {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #494949;
	line-height: 1.6em;
	font-style: italic;
}
ul.image_gallery {
	width:100%;
	padding: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.image_gallery li {
	display: inline;
	list-style: none;
	width: 200px;
	height: 200px;
	float: left;
	text-align: center;
	background-image: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 18px;
	margin-bottom: 25px;
	margin-left: 4px;
}
.image_gallery:after { 
display: block; 
height: 0; 
clear: both; 
visibility: hidden; 
}
.sectionhomeheader-wrapper {
	background-color: #FFF;
	width: auto;
	border: 1px solid #DBDBD7;
	padding: 5px;
	background-color: #F5F5F3;
	margin: 0px;
}
.sectionhomeheader-one {
	width: auto;
	margin: 0px;
	height: 225px;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.sectionhomeheader-one.photos {
	background-image:url(../Photographs/images/sectionheader-bg.jpg);
}
.sectionhomeheader-one.cases {
	background-image: url(../cases/images/sectionheader-bg.jpg);

}
.sectionhomeheader-one.sightings {
	background-image:url(../sightings/images/sectionheader-bg.jpg);
}
.sectionhomeheader-one.topics {
	background-image:url(../topics/images/sectionheader-bg.jpg);
}
.sectionhomeheader-one p {
	width: 400px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	color: #494949;
	line-height: 1.6em;
	font-weight: normal;
	font-style: italic;
}
.sectionhomemenu-col {
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 15px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.sectionhomemenu-col ul {
	padding-bottom:10px;
}
.sectionhomemenu-col.photos {
	width: 23%;
}
.sectionhomemenu-col.topics {
	width: 31%;
	margin-top: 5px;
}
.sectionhomemenu-col.cases {
	width: 23%;
}
.sectionhomemenu-col.sightings {
	width: 31%;
}
.sectionhomemenu-col.horizontal li {
	display:inline;
}
.sectionhomemenu-col.horizontal h4 {
	display:inline;
}
.caseshome-casecount {
	font-size:10px;
}
#home-wrapper {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DADADA;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #DADADA;
}
#ad-topspacer {
	height: 129px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
	position: relative;
}
#ad-sidebar {
	width: 200px;
	float: left;
	background-color: #E6E3D9;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 900px;
}

.footer-copyright {
	text-align: right;
	float: right;
	color: #FFF;
	font-size: 10px;
	font-weight: bold;
}
.footer ul {

  margin: 0;
  padding: 0;
  display:inline;
}
.footer li {
	display: inline; /* Shows each item side-by-side */
	list-style-type: none; /* Gets rid of the bullet points */
	background-image: url(../imagesnew/newgraphics/arrow2.gif);
	background-repeat: no-repeat;
	background-position: 0px;
	margin: 0px;
	padding: 0px;
}
 
.footer ul a {
	margin: 0px;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0;
	padding-left: 10px;
	color: #FFF;
	font-weight: bold;
}
.sectionhomeheader-one.sightings p {
	width: 600px;
}
.reportsbox {
}
.reportsbox h4 {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 1.4em;
}
.reportsbox p {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 1.4em;
}
.reportsbox h5 {
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 1.2em;
	text-align: left;
}
.pagenavi {
	text-align: right;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	width: 100%;
	float: left;
}
.pagenavi a, .pagenavi a:link {
	padding: 3px 6px;
	margin: 2px;
	text-decoration: none;
	border: 1px solid #e1e1c8;
	color: #413f36;
	background-color: #eeeeee;
}
.pagenavi a:visited {
	padding: 3px 6px;
	margin: 2px;
	text-decoration: none;
	border: 1px solid #e1e1c8;
	color: #413f36;
	background-color: #eeeeee;
}
.pagenavi a:hover {
	border: 1px solid #608e7a;
	color: #FFF;
	background-color: #CCCC9F;
}
.pagenavi a:active {
	padding: 3px 6px;
	margin: 2px;
	text-decoration: none;
	border: 1px solid #e1e1c8;
	color: #413f36;
	background-color: #eeeeee;
}
.pagenavi span.pages {
	margin: 2px;
	color: #000000;
	border: 1px solid #e1e1c8;
	color: #413f36;
	background-color: #eeeeee;
	padding-top: 3px;
	padding-right: 6px;
	padding-bottom: 3px;
	padding-left: 6px;
}
.pagenavi span.current {
	font-size:16px;
	padding: 3px 6px;
	margin: 2px;
	font-weight: bold;
	border: 1px solid #608e7a;
	color: #FFF;
	background-color: #CCCC9F;
}
.pagenavi span.extend {
	font-size:16px;
	padding: 3px 6px;
	margin: 2px;
	border: 1px solid #608e7a;
	color: #FFF;
	background-color: #CCCC9F;
}
.sidemenu-col ul {
	padding-bottom: 5px;

}
.caselist-row {
	margin-top: 15px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D3D3C0;
	padding-bottom: 15px;
}
.caselist-img {
	padding: 5px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #d4d4d4;
	background-color: #F4F4F0;
	float: left;
}
.caselist-row h3 {
	font-size: 16px;
	margin-bottom: 0px;
}
.caselist-row h4 {
	font-size: 14px;
	margin-bottom: 0px;
}
.caselist-row p {
	line-height: 1.5em;
}
.caselist-row h5 {
	line-height: 1.4em;
	margin: 0px;
	color: #5C5C5C;
	font-size: 12px;
}
.articlelist-row {
	margin-top: 5px;
	margin-bottom: 5px;
	padding-bottom: 5px;
}
.articlelist-row a:link {
	color:#333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: normal;
}
.sightings-row {
	padding-bottom: 25px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #A6A6A6;
	padding-top: 15px;
}
.sightings-row h3 {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top:0px;
}
.sightings-row p {
	line-height: 1.4em;
	margin: 0px;
	padding: 0px;
}
.sightings-row h4 {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2em;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.casereport-imgcontainer {
	width: 510px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.casereport-imgcontainer img {
	padding: 5px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #d4d4d4;
	background-color: #F4F4F0;
}
.casereport-imgcontainer p {
	width:500px;
	line-height: 1.1em;
	margin-top: 5px;
}
.contentcontainer {
	float: left;
	width: 960px;
	background-repeat: repeat-y;
	background-color: #FFF;
}
.columnsbg-2narrow {
	float: left;
	width: 960px;
	background-repeat: repeat-y;
	background-color: #F2F1EC;
}
.columnsbg-2wide {
	float: left;
	width: 960px;
	background-repeat: repeat-y;
}
.sidebar-featureicons {
	float: left;
	margin: 3px;
}
.sidebar-featureicons img {
	padding: 3px;
	border: 1px solid #d4d4d4;
	background-color: #F5F5F3;
	margin: 0px;
	height: 68px;
	width: 68px;
}
.sidebar-featureicons h4 {

}

.updates {
	padding-top: 0px;
	margin-top: 10px;
}
.updates-content {
	padding-left: 9px;
	padding-top: 5px;
}
.featureditem h3 {
	font-size: 18px;
	font-weight: normal;
	color: #33332D;
	line-height: 1.2em;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.listparagraph {
	line-height: 1.4em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.dayfeature {


}
.dayfeature h3 {
	font-size: 12px;
	text-transform: capitalize;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
}
.dayfeature h4 {
	font-size: 10px;
	font-style: italic;
	font-weight: bold;
	text-align: center;
}
.dayfeature .sidebar-item {
	background-color: #DDD9C6;
	/*border: 1px solid #8A9299;*/
	 border:1px solid #8A9299;
 /* -webkit-border-top-left-radius:6px;
  -webkit-border-top-right-radius:6px;
  -moz-border-radius-topleft:6px;
  -moz-border-radius-topright:6px;
  border-top-left-radius:6px;
  border-top-right-radius:6px; */
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  border-radius:4px;

}
.dayfeature h2 {
	background-color: #8A9299;
	height: 8px;
	background-image: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: -7px;
	margin-right: -12px;
	margin-bottom: 10px;
	margin-left: -12px;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
}
.sharethis-standard {
	text-align: right;
}
.sharethis-left {
	text-align: left;
}
.sharethis-floatright {
	text-align: right;
	float: right;
	position: relative;
}
#contentmain-intro h1 {
	padding-top: 10px;
}
.newsletter {
	color: #3B3B3B;
	background-color: #EBE7DA;
	font-size: 12px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0px;
	padding: 0px;
	line-height: 1.5em;
}
.newsletter div, p, a, li, td { 
	-webkit-text-size-adjust:none;
}
.newsletter #home-wrapper {
	width: 650px;
}
.newsletter .container {
	width: 650px;
	padding-top: 0px;
}
.newsletter .header {
	width: 598px;
}
.NL-case {
	width: 200px;
	float: left;
}
.NL-case .sidebar-item {
	padding-right: 5px;
	padding-left: 5px;
	height: 325px;
	overflow: hidden;
	position: relative;
}
.NL-case h3 {
	font-size: 12px;
	margin-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
}
.NL-case h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
}
.NL-case .sidebar-item img {
	margin-bottom: 10px;
}
.NL-case p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	color: #585858;
}
.newsletter .updates {
	margin-right: auto;
	margin-left: auto;

}
.newsletter .listparagraph {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	color: #585858;
}
.NL-photo {
	float: left;
	margin-right: auto;
	margin-left: auto;
}
.NL-photo .sidebar-item {
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 3px;
}
.NL-photo h3 {
	font-size: 12px;
	margin-bottom: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
}
.NL-photo h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
}
.NL-photo .sidebar-item img {
	margin-bottom: 5px;
	margin-right: 0px;
	margin-top: 0px;
}
.NL-photo p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	color: #585858;
}
.NL-topic {
	float: left;
	margin-left: auto;
	margin-right: auto;
}
.NL-topic .sidebar-item {
	padding-right: 5px;
	padding-left: 5px;
	height: 175px;
	overflow: hidden;
	position: relative;
}
.NL-topic h3 {
	font-size: 18px;
	margin-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
}
.NL-topic h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
}
.NL-topic .sidebar-item img {
	margin-bottom: 10px;
}
.NL-topic p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	color: #585858;
}
.container-NLcases {
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
	margin-top: 15px;
	position: relative;
}
.container-NLsightings {
	width: 415px;
	float: left;
	padding-left: 10px;
	margin-bottom: 10px;
	position: relative;
}
.container-NLphotos {
	width: 200px;
	float: right;
	margin-right: 10px;
	position: relative;
}
.container-NLtopic {
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
	margin-top: 5px;
	margin-bottom: 10px;
}
.NLsectionheader {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #FFF;
	background-color: #8EA69D;
	padding-left: 7px;
	font-style: italic;
	line-height: 1.3em;
	margin-bottom: 10px;
}
.NLsectionfooter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 1.2em;
	color: #333;
	background-color: #D8D3BE;
	position: absolute;
	bottom: 0px;
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	right: 0px;
	width: 100%;
	opacity:0.8;
	filter:alpha(opacity=80); /* For IE8 and earlier */
	font-weight: bold;
	padding: 2px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CAC2A6;
}
.ad-topspacer-bottombar {
	height: 23px;
	margin-right: auto;
	margin-left: auto;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #e4e1da;
	border-bottom-color: #e4e1da;
	background-color: #F5F2EA;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
}
.NLbottomlinks {
	position:absolute;
	right: 10px;
	bottom: -6px;
	text-transform: uppercase;
}
.NLbottomlinks a {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: bold;
	text-transform: uppercase;
}
.container-NLsightings h3 {
	line-height: 1.3em;
}
