@charset "utf-8";
/* 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%;
}

/*This rule forces the scrollbar to always appear on Firefox to avoid shift*/
html { min-height: 100%; margin-bottom: 1px; }
/* 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. */
body {
	background-color: #333;
	color: #4F4F4F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.3em;
	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: #593F9A;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.3em;
}
/* Commonly used to style section titles. */
h2 {
  color: #593F9A;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.1em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #593F9A;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #7E4089;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
/* 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: 700px;
		background-image: url(../images/bg-content.gif);
	background-repeat: repeat-y;
	background-position: 0px 0px;
}
#outerWrapper #contentWrapper {
	position: relative;
}
#banner {
	position: absolute;
	height: 216px;
	width: 619px;
	background-image:url(../images/banner1.jpg);
	left: 0px;
	top: 180px;
}
#banner-extra {

    position: absolute;
	height: 216px;
	width: 619px;
	left: 0px;
	top:180px;
}
/* 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 {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

	width: 590px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 35px;
	padding-left: 25px;
}

#background-color {
	background-color: #666666;
	width: 100%;
}
#nav {
	
	height: 396px;
	width: 700px;
	background-image: url(../images/bg-top.gif);
	background-repeat: no-repeat;
	
}
#nav2 {
float:left;
 text-align:center;
 width:619px;
 }
 #nav2 ul{
margin-left:-20px;
 }
#nav2 li{
	display: inline;
	list-style-type: none;
	padding-right: 10px;
	padding-left: 10px;
}
#nav2 li a{
text-decoration:underline;
}
/* Sets the style for visited links. */
#nav2 li a:visited {
  color: #7E4089;

}

#footer {
	color: #FFFFFF;
	text-align: center;
	font-size: 1.1em;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.2em;
	background-color: #666666;

}
#copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #666666;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 25px;
	padding-bottom: 25px;
}
#copyright a{
	float: right;
	font-size: 1em;
	font-weight: normal;
	color: #666666;
	padding-right: 50px;
}.right-photo-links {
	float: right;
	width: 185px;
	margin-left:35px;
	
}

/*tooltip style*/

 a.tooltip1 span {
  display: none;

  }
 
 a.tooltip1:hover {
  }
/* The above hover change defeats the
  IE/Win display changing bug */
 

  
a.tooltip1 {position: relative;z-index: 10;}
 a.tooltip1:hover span {
 z-index: 100;
	position: absolute;
	display: block;
	border: none;
    left:-15px;
	top:-400px;
	text-decoration: none;

  }
  
  /* This code hides this style from Internet Explorer */
html>/**/body  a.tooltip1:hover span {

    left:-13px;
	top:-445px;


  }
  
  
   a.tooltip2 span {
  display: none;

  }
 
 a.tooltip2:hover {
  }
/* The above hover change defeats the
  IE/Win display changing bug */
 

  
a.tooltip2 {position: relative;z-index: 10;}
 a.tooltip2:hover span {
 z-index: 100;
	position: absolute;
	display: block;
	border: none;
    left:-56px;
	top:-497px;
	text-decoration: none;

  }
  
  html>/**/body  a.tooltip2:hover span {

    left:-63px;
	top:-590px;


  }
  
  
  
   a.tooltip3 span {
  display: none;

  }
 
 a.tooltip3:hover {
  }
/* The above hover change defeats the
  IE/Win display changing bug */
 

  
a.tooltip3 {position: relative;z-index: 10;}
 a.tooltip3:hover span {
 z-index: 100;
	position: absolute;
	display: block;
	border: none;
    left:-285px;
	top:-410px;
	text-decoration: none;

  }
    html>/**/body  a.tooltip3:hover span {

   
	top:-470px;


  }
  
   a.tooltip4 span {
  display: none;

  }
 
 a.tooltip4:hover {
  }
/* The above hover change defeats the
  IE/Win display changing bug */
 

  
a.tooltip4 {position: relative;z-index: 10;}
 a.tooltip4:hover span {
 z-index: 100;
	position: absolute;
	display: block;
	border: none;
    left:-440px;
	top:-450px;
	text-decoration: none;

  }
  
      html>/**/body  a.tooltip4:hover span {

   
	top:-500px;


  }