/* CSS Document */

<!--
/* 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;
  font-size: 100%;
}

* html .gainlayout { height: 1%; }

/* 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 body {
  background-color: #4C6269;
  background-image: url("../images/dkgray_brocade.png");
  background-position: top left;
  background-repeat: repeat-x;
  border-left-width: medium;
  border-top-width: medium;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1em;
  line-height: normal;
  min-width: 1000px;
  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. */
}
/* Commonly used to style page titles. */
h1 {
  color: #781A05;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
}
/* Commonly used to style section titles. */
h2 {
  color: #781A05;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
}
/* Sets the style for the h3 header. */
h3 {
  color: #2B3B41;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #1B2D3A;
  /*font-weight: bold;*/
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #a14a35;
  /*font-weight: bold;*/
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #c92c17;
   font-weight: bold;
 text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #c92c17;
  font-weight: bold;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #732600;
}
/* 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 {
  background-color: #fff;
  background-image: url("../images/0");
  border-bottom-style: none;
  border-left: none thin #A49F9F; /* Sets the left border properties for an element using shorthand notation */
  border-right: none thin #A49F9F; /* Sets the right border properties for an element using shorthand notation */
  border-top: none thin #A49F9F; /* Sets the top border properties for an element using shorthand notation */
  margin: 25px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  max-width: 1600px;
  min-width: 900px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 80%;
}
#outerWrapperWide {
  background-color: #fff;
  background-image: url("../images/0");
  border-bottom-style: none;
  border-left: none thin #A49F9F; /* Sets the left border properties for an element using shorthand notation */
  border-right: none thin #A49F9F; /* Sets the right border properties for an element using shorthand notation */
  border-top: none thin #A49F9F; /* Sets the top border properties for an element using shorthand notation */
  margin: 25px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  max-width: 1600px;
  min-width: 1100px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 80%;
}
#outerWrapperVERYWide {
  background-color: #fff;
  margin: 5px auto 0 5px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  min-width: 1100px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
}
#outerWrapper #header, #outerWrapperWide #header {
	background-color: #4C6269;
	background-image: url("../images/logo.png");
	background-position: 15px center;
	background-repeat: no-repeat;
	border-bottom: solid 1px #900; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-top: solid 1px #033; /* Sets the top border properties for an element using shorthand notation */
	border-left: solid 1px #033; /* Sets the left border properties for an element using shorthand notation */
	border-right: solid 1px #033; /* Sets the right border properties for an element using shorthand notation */
	z-index: 1;
}
#outerWrapper #contentWrapper, #outerWrapperWide #contentWrapper {
  	overflow: hidden;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #033;
}
#outerWrapper #contentWrapper #leftColumn1, #outerWrapperWide #contentWrapper #leftColumn1 {
	background-color: #FFFFCC;
	background-image: url("../images/gray_grad.png"); /* Sets the right border properties for an element using shorthand notation */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #F0F1F2;
	float: left;
	min-height: 950px;
	height: auto;
	padding: 10px 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 14em;
	text-indent: 15px;
	border-right-width: 1px;
	border-left-width: thin;
	border-right-style: none;
	border-left-style: solid;
	/*border-right-color: #bd9c76;
	border-left-color: #918A8A;*/
	border-right-color: #033;
	border-left-color: #033;
}
#outerWrapper #contentWrapper #leftColumn1 a , #outerWrapperWide #contentWrapper #leftColumn1 a{
  color: #F0F1F2;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover, #outerWrapperWide #contentWrapper #leftColumn1 a:hover {
  color: #c92c17;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #leftColumn1 a:focus, #outerWrapperWide #contentWrapper #leftColumn1 a:focus  {
  color: #c92c17;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #leftColumn1 a:active, #outerWrapperWide #contentWrapper #leftColumn1 a:active {
  color: #732600;
}
/* 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. */
#outerWrapper #contentWrapper #content, #outerWrapperWide #contentWrapper #content {
	margin: 0 0 0 16em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content #mainimg, #outerWrapperWide #contentWrapper #content #mainimg {
	margin: 0px 0 5px 5px; /* Sets the margin for the main index page image so that it overlaps the top banner bar */
	z-index: 10;
	float: right;
}
#outerWrapper #contentWrapper blockquote, #outerWrapperWide #contentWrapper blockquote {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: normal;
	color: #600;
	margin-bottom: -20px;
}
#outerWrapper #footer, #outerWrapperWide #footer {
	background-color: #4C6269;
	border-top: solid 1px #900; /* Sets the bottom border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-bottom: solid 1px #033; /* Sets the top border properties for an element using shorthand notation */
	border-left: solid 1px #033; /* Sets the left border properties for an element using shorthand notation */
	border-right: solid 1px #033; /* Sets the right border properties for an element using shorthand notation */
	font-family: verdana;
	color: #FFF;
	font-size: 9px;
}
#outerWrapper #footer a, #outerWrapperWide #footer a {
	color: #FFF;
}
#outerWrapper #footer a:hover, #outerWrapperWide #footer a:hover {
	color: #ADABCD;
}


-->
@media print {
	
/* It is common to set printer friendly styles such as a white background with black text. */
	body {
	  background-color: #fff;
	  background-image: none;
	  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
	  color: #000;
	}
}


/* THE FOLLOWING STYLES RELATE TO THE PHOTO GALLERY */
@media screen {
.photocontainer {
	height: 750px;
}
/* slides styling */

.photo {width:1200px; text-align:left; position:relative; margin:0 auto;}

.photo ul.topic {padding:0; margin:0; list-style:none; width:1200px; height:auto; position:relative; z-index:10;}

.photo ul.topic li {display:block; width:125px; height:31px; float:left;}
.photo ul.topic li a.set {
	display:block;
	font-size:11px;
	width:124px;
	height:30px;
	text-align:center;
	line-height:30px;
	color:#000;
	text-decoration:none;
	border:1px solid #fff;
	border-width:1px 1px 0 0;
	font-family:verdana, arial, sans-serif;
	background-color: #4C6269;
	color:#FFF;
}

.photo ul.topic li a ul, 
.photo ul.topic li ul 
{display:none;}

.photo ul.topic li.active a
{
	color:#000;
	background:#bbb;
	background-color: #B7C5CA;
}

.photo ul.topic li a:hover,
.photo ul.topic li:hover a
{
	color:#000;
	background:#bbb;
	background-color: #B7C5CA;
}

.photo ul.topic li.active ul
{
	display:block;
	position:absolute;
	left:0;
	top:31px;
	list-style:none;
	padding:0;
	margin:0;
	height:700px;
	background:#ddd;
	width:600px;
	padding:40px 60px;
	border:5px solid #B7C5CA;
	z-index:1;
	background-color: #FFF;
}

.photo ul.topic li a:hover ul, 
.photo ul.topic li:hover ul
{
	display:block;
	position:absolute;
	left:0;
	top:31px;
	list-style:none;
	padding:0;
	margin:0;
	height:700px;
	background:#ddd;
	width:600px;
	padding:40px 60px;
	border:5px solid #B7C5CA;
	z-index:100;
	background-color: #FFF;
	font-weight:bold;
}

.photo ul.topic li ul li
{display:inline; width:112px; height:87px; float:left; border:1px solid #fff; margin:1px;}

.photo ul.topic li ul li a
{display:block; width:110px; height:85px; cursor:default; float:left; text-decoration:none; background:#444; border:1px solid #888;}

.photo ul.topic li ul li a img
{display:block; width:100px; height:75px; border:5px solid #eee;}

.photo ul.topic li a:hover ul li a:hover, 
.photo ul.topic li:hover ul li a:hover 
{white-space:normal; position:relative;}

.photo ul.topic li a:hover ul li a:hover img, 
.photo ul.topic li:hover ul li a:hover img 
{
	position:absolute; left:-50px; top:-32px; width:200px; height:150px; border-color:#fff;
	}
}