html {
	height: 101%;
    }  

body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px; 
	color: #555555;
	height: 101%;
    }  

td {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #555555; 
    }  

th {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #555555; 
    }  

H1 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: normal;
	font-size: 22px;
	margin-bottom:5px;
	margin-top:-5px;
	color: #254b36;
	} 
	
H2 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: normal;
	font-size: 18px;
	color: #254b36;
	} 
	
A:link {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px; 
	color: #254b36;
    text-decoration: underline;
	}

A:visited {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px; 
	color: #254b36;
    text-decoration: underline;
	}

A:active {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px; 
	color: #254b36;
    text-decoration: underline;
	}

A:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px; 
	color: #254b36;
    text-decoration: none;
	}
.learn_more {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px; 
	color: #ffffff;
	}
A.learn_more:link {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: underline;  
}  
A.learn_more:active {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px; 
     color: #ffffff;  
     text-decoration: underline;  
}  
A.learn_more:visited {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: underline;  
}  
A.learn_more:hover {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: none;  
}
.home {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
	line-height: 24px;
	color: #555555;
	}
.footer {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px; 
	color: #ffffff;
	}
A.footer:link {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: underline;  
}  
A.footer:active {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px; 
     color: #ffffff;  
     text-decoration: underline;  
}  
A.footer:visited {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: underline;  
}  
A.footer:hover {  
     font-family: Verdana, Geneva, sans-serif;  
     font-size: 12px;  
     color: #ffffff;  
     text-decoration: none;  
}
/*NAVIGATION*/
 
/* reset browser defaults for unordered lists, to avoid possible unexpected behavior */ 
ul {
	padding: 0;
	margin: 0;
}
li {
	padding:0;
	margin:0;
}
/* wrapper helpful for positioning on page without messing with main menu style */
#navwrap {
	float: right;
	margin-top: -3px;
}
/* it helps to arrange menu styles in order of increasing specificity */
/* first two styles, #nav li and #nav a apply to entire menu, unless over-ridden */

#nav li {
	float: middle;
	position: relative;
	cursor: default;
	display:inline-block;
	
}
#nav a {
	font-family: "Times New Roman", Times, serif; 
	font-size: 18px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	font-style: normal;
	text-align: right;   /* keeps text aligned in block.  do not put text-align on li or IE7 will put the submenu below the center of the top menu */
	text-decoration: none;
	padding: 25px 8px 10px 8px;
	display: inline-block;     /* without this, IE7 displays a nasty bug, in which the submenu is shifted to the right */
	
}
/* from here down, every style is in some way overriding the base styles */
#nav a:hover {
	color: #397654;   /* text changes from plain to underline on hover */
}
#nav li li {
	float: none;  /* makes drop downs vertical instead of horizontal */
	background: #002466;
	color: #ffffff;
	width: 190px;
	font-style: normal;
	margin-left:100px;
	text-align: left;
	z-index: 9999;
}
#nav li li a {
	border-right:none; /* this is only really needed if the background color is different than the border color; in most layouts the border wouldn't be visible */
	text-transform: none;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	width: 190px;
	color: #ffffff;
	text-align: left;
	padding:5px 5px;
	background: #002466;
}
#nav li ul {
	display: none;    /* submenu is not visible until hover or .over (driven by JS) */
	position: absolute;  /* postioned absolutely, relative to parent li on top menu */
	top: 0%;   /* 100% of containing element height = #nav li, so the top of the submenu ul is at the bottom of the parent li */
	left: 70px;  /* submenu lined up with the left side of the parent li.  move this if desired */
}
/*#nav li>ul {   / * overrides previous style for browsers that understand selector * /
	top: auto;
	left: auto;
}*/
#nav li:hover ul, #nav li.over ul {
	display: block;  /* overrides display:none to make submenu visible  NB! the .over class is the thing the javascript generates */
}

#nav li li:hover{
	background-color:#707070;
}

#nav li li:hover a{
	background: #981c36 !important;
	color:white !important;
}

#slideshow_wrapper{
	position:absolute;
	z-index:-1;
	
}
#slideshow{
	position:relative;
	right:120px;
	
}
#slideshow img{
	position:relative;
	z-index:-1;
	right:120px;
}