/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

html {
	/*font-family: Arial, Helvetica, sans-serif;*/
	font-family: "Book Antiqua", Palatino, serif;
	font-size:  85%;
	height: 100%;
}
body {
	color: #000;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background:#3362c0;

}


/* -----  Regular link styles ----->


/* Sets the style for unvisited links. */
a, a:link {
	color: #074fe1;

}
/* Sets the style for visited links. */
a:visited {
	color: #074fe1;
}
/* Sets the style for links on mouseover. */
a:hover {
	color:#000;
}
/* Sets the style for a link that has focus. */
a:focus {
	color:  #074fe1;

}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color:  #074fe1;

}
.clear {
	clear:both;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
}


/* ---------- Page Structure CSS ---------- */

#header {
	text-align: left;
	height: 215px;
	padding-left: 0px;
	padding-top:5px;
	background:#fff;
	
}

#headerindex
{
text-align: left;
	height: 200px;
	padding-left: 0px;
	padding-top:10px;
	background: url(images/layout/index_header.jpg) no-repeat;
}


/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 920px;
}


#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
	background: #FFF; url(images/content-fill.gif) repeat-y left;

}
#twoColumnleft #content, #twoColumnright #content {
	width:620px;
	background:#fff;

}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 140px;
	height:400px;
	border-right: 2px solid #E2E9F1;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnleft #content {
	margin: 0 15px 0 200px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}


#footer {
	margin-left:0px;
	margin-right:0px;
	width:920px;
	/*padding: 10px 10px 20px 10px;  Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top:10px;
	padding-bottom:20px;
	height: 30px;
	font-family: "Book Antiqua", Palatino, Times, serif;
	color: #074fe1;
	clear: both;
	background:#fff;

	

}

#reviews
{
padding-left:10px;
}

#credit {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 8px;
	font-size: 11px;
	color: #456290;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
#credit a, #credit a:hover, #credit a:visited, #credit a:active, #credit a:focus {
	color: #456290;
	font-weight: normal;
	text-decoration: none;
}


#playphotos{
padding-top:25px;
margin-right:auto;
margin-left:auto;
text-align:center;
}


/* --------- SLIDESHOW styles ---------- */

#ss_controls{
margin-right:auto;
margin-left:auto;
width:520px;
}

#slideshow{
margin-right:auto;
margin-left:auto;
width:515px;
height:345px;
background:#000;
padding-top:10px;
padding-left:5px;
padding-right:3px;

}

p.sscaption{
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
padding-top:3px;
text-align:center;
padding-left:60px;
padding-right:60px;

}



/* ---------- Navigation CSS ---------- */

#navcontainer {
	position:relative;
	height:0px;
	width:100%;
	font-family:Helvetica, Arial, Verdana, sans-serif;
	background:#fff;
}
#nav {
	position:relative;
	height:10px;
	text-transform:uppercase;
	/*background:url(images/nav-container-bg.gif) no-repeat left top;*/
	padding:0 0 0 23px;
	font-size: 11px;
	font-weight: bold;
}
#nav ul {
	margin:0;
	padding:25px 0px 0px 15px;
	list-style-type:none;
}
#nav ul li {
	display:inline;
	margin:0px;
	padding-right: 20px;
	width: auto;
}
#nav ul li a {
	color:#C1D0E1;
	text-decoration:none;
}
#nav ul li a:hover {
	color:#FFF;
}

/* ---------- Typography CSS ---------- */

h1 {
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	font: normal 2em Georgia, "Times New Roman", Times, serif;
}
h2 {
	margin: .3em 0em;
	/*color: #4C6D9E;*/
	/*font: bold 1.5em "Book Antiqua", Palatino, Times, serif;*/
	font: bold 16px "Book Antiqua", Palatino, Times, serif;
	color:#3362c0;
}
h3 {
	font-size: 1.4em;
	margin: .5em 0em;
	font-weight: bold;
}
h4 {
	font-size: 1.2em;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
}
h5 {
	font-size: 1.0em;
	margin: .5em 0em;
	font-weight: bold;
}
h6 {
	font-size: 0.8em;
	margin: .5em 0em;
	font-weight: bold;
}



/* ----------- IMAGE Styles -------- */
img {
	border: 0;
}


img.blackborder{
border:2px solid #000; 
}



#excerpt {

	font-family:"Book Antiqua", Palatino, Times, serif;
	padding-left:20px;
}

/* ------- General PARAGRAPH Styles --------*/

p {
	font-size: 1.0em;
	line-height: 1.5em;
	margin: 0em 0em 1.2em 0em;  /*default top margin 1.2em*/

}


p.indent
{
margin-left:50px;

}


p.right{
text-align:right;
}


p.center{
text-align:center;
}


.bold {
font-weight:bold;
}

.underline {
text-decoration:underline;
}

.italics{
font-style:italic;
}

.boldcenter{
text-align:center;
font-weight:bold;
}

.indent {
margin-left:10px;
}


.center{
text-align:center;
}




/* --------- PHOTO CAPTION Styles -------- */



p.photocaption{
font-family: Arial, Helvetica, sans-serif;
font-size:11px;
line-height:13px;
text-align:center;
padding-top:5px;

}

p.photocaptionleft{
font-family: Arial, Helvetica, sans-serif;
font-size:11px;
line-height:14px;
text-align:left;
padding-top:5px;
}




.pc_caption{
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:normal;
text-align:center;

}


.bluetitles
{
text-align:center;
margin-left:auto;
margin-right:auto;
font-style:italic;
color:#3362c0;
}

.bluecredit
{
padding: 10px 10px 10px 10px;
border-style:solid;
border-color:#000;
border-width:1px;
text-align:left;
color:#074fe1;
}


/* ---------- MAIN Left column NAVIGATION styles ---------- */


.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font: normal 11px "Book Antiqua", Palatino, serif;
	color: #000; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 5px 0 20px; /*bottom spacing between each UL and rest of content*/
	margin-left:30px;
}
.simplemenu ul li {
	margin: 0px;
	padding-bottom: 2px;
}
.simplemenu ul li a {
	font: bold 16px "Book Antiqua", Palatino, serif;
	color: #000;	/*background: #FFF;*/
	display: block;
	padding: 5px 0 5px 11px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
}
.simplemenu ul li a:visited {
	color: #000;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #1f60ec;
	text-decoration: none;
}



/* --------- FOOTER Navigation -------- */


	#nav_footer	{

			margin-left:auto;
			margin-righ:auto;
			padding:0;
			text-align:center;
			padding-bottom:5px;
			background:#fff;
			
			}
	#nav_footer li{
			background:none; 
			display:inline; 
			/*text-indent: 15pt;*/
			color:#074fe1;
 
			}
	#nav_footer a {
			color: #74fe1;
			font-size: 12px;
			margin-left:10px;
			margin-right:10px;
			color:#074fe1;	

			text-decoration:none;}
	#nav_footer a:hover  {
			/*border-bottom:#000000 dotted 1px;*/
			color: #000;
			padding-bottom:3px;}



#sitecredit {
	font-family:Arial, Helvetica, Verdana, sans-serif;
	text-align: right;
	padding-top: 0px;
	padding-bottom: 8px;
	font-size: 11px;
	color:#9cb4e4;
	background:#fff;
	height:20px;
	padding-right:30px;



}
#sitecredit a {
	/*color:#5275AA;*/
	color:#9cb4e4;
	font-weight: normal;
	text-decoration: none;
	/*text-decoration: underline;*/
}
#sitecredit a:hover
{
	color:#074fe1;
	font-weight: normal;
	text-decoration: underline;
} 

#sitecredit a:visited {
	color:#9cb4e4;
	font-weight: normal;
	text-decoration: none;
}
#sitecredit a:active{
	color:#9cb4e4;
	font-weight: normal;
	text-decoration: none;
}

#sitecredit a:focus {
	color:#9cb4e4;
	font-weight: normal;
	text-decoration: none;
	
}