﻿/*
Color Scheme
353a94 Blue
007694
009480
94353a Red
White
*/

body{
	background:#C6C6C6;
	/*background-image: url('../images/Background.png');*/
	background-repeat: repeat-x;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #696969;
    text-align:center;
	}
	
a img{
	text-decoration: none;
	border: 0 none;
}
/*
h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}*/

h5, h6
{
    font-size: 1em;
}

/*Main Elements*/

div.flashHeader
{
    position: relative;
    margin: 0px;
    padding: 0px;
    background: #4b6c9e;
	color: #f9f9f9;
    width: 100%;
}

div.header h1
{
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: #f9f9f9;
    border: none;
    line-height: 2em;
    font-size: 2em;
}

div.header a:visited, a:active, a:link, a:hover
{
    color: #f9f9f9;
	text-decoration: none;
}

div.mainPage
{
    /*min-height: 420px;*/
    background: white;
}

div.navigation
{
    color: white;
    text-align: center;
    line-height: normal;
    background: red;/*red color was #94353a; #353a94;*/
}

div.wholePage
{
    margin-left:auto;
    margin-right:auto;
    width: 1000px;
    min-height: 600px;
    text-align:center;
}


div.footer
{
    color: white;
    text-align: center;
    line-height: normal;
    background: #353a94;
}
/*end Main Elements*/




div.wholePage{
    margin-left:auto; 
    margin-right:auto;
	background:#AED0DD;
	z-index:1;
  }
  
  div.shadow {
	/*http://robertnyman.com/2010/03/16/drop-shadow-with-css-for-all-web-browsers/*/
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	}
	



ul,ol,li{
	margin:0;
	padding:0;
}

/* BE SURE TO INCLUDE THE CSS RESET FOUND IN THE DEMO PAGE'S CSS */
/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	/* Clear floats 
	float:left;
	width:100%;*/
	position:relative;
	z-index:5;
}
#nav li{
	float:left;
	margin-right:10px;
	margin-left: 10px;
	position:relative;
}
#nav a{
	display:block;
	color:white; /*text color*/
	font-size:20px;
	background: red;/*94353a; /*background color*/
	text-decoration:none;
}
#nav a:hover{
	color:white;
	background:#265f75;
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav ul{
	background: #353a94; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	font-size: 18px;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#366779;
	text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
} 