/*------------------------------------*\
	MAIN
\*------------------------------------*/
html{
	height:101%;
	background:#4e9fde url(../images/Blue.png) no-repeat center top;
}

body {
	font-family: Calibri, Trebuchet MS, verdana, arial, sans-serif; 
	color:#fff;
	font-size:1em;
	word-wrap:break-word;
	overflow-y:auto;
	display: table;
	width:890px;
	margin:0 auto;
	padding:10px;
	}
	
a:link {
	color:#3460a4;
	text-decoration:none;
	font-weight:bold;
}

a:visited {
	color:#3460a4;
	text-decoration:none;
	font-weight:bold;
}

a:hover {
	color:#3460a4;
	text-decoration:none;
	font-weight:bold;
}

a:active {
	color:#3460a4;
	text-decoration:none;
	font-weight:bold;
}



#wrapper {
	width:890px;
	margin: 0px auto; 
	color: #fff; /*This is the font-color*/
	border:0px solid black;
}

#topnav {
	margin-top:40px;
	width:100%;
	height:23px;
	line-height: 23px; /*Having Line Height same as Div Height vertically centers the text*/
	border:0px solid green;
	border-right: 0px solid #000;
	text-align: left;
}
#content {
	width:890px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	overflow: hidden;
	margin: 10px auto; 
	text-align: center;
	/*float: right; /*Floats this column to the right, rather than positioning it*/
	color:#333;
	}
#content p { /*This styles the pargraphs within the content DIV*/
	margin: 0; /*Different browsers have different defaults here so we set it to 0*/
	padding: 10px 14px; /*Adds 10px space around the pargraph, no need for blank paragraphs now*/
	text-align: left;
	}

#content h3 {
	color:#3460a4;
	text-align:left;
	padding: 0px 14px;
} #content h4 {
	color:#3460a4;
	text-align:left;
	padding: 0px 14px; margin:0
}	

#content table { /*This styles the pargraphs within the content DIV*/
	text-align: left;
	}
	
#content td { /*This styles the pargraphs within the content DIV*/
	vertical-align:top;
	}

#leftcol {
	width:180px;
	float:left;
	background-color: #FFFFFF;
	height:100%;
	padding-bottom: 1000px;
  margin-bottom: -1000px;
  border:1px solid #3460a4;
}

#rightcol {
	float:right;
	width:695px;
	background-color: #FFFFFF;
	height:100%;
	padding-bottom: 1000px;
  margin-bottom: -1000px;
  border:1px solid #3460a4;
}
		
#footernav {
	clear: both; /*This clears any floats, so the footer appears on a different line*/
	background-color: #4e9fde;
	width:888px;
	height:23px;
	line-height: 23px; /*Remember, line height same as height of the DIV vertically centers text */
	text-align: center;
	border:1px solid #3460a4;
	padding:3px 0;
	margin: 0 auto;
}

.footerelement {
	display:inline-block;
	padding: 0 10px;
}



/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	padding-left:204px;
	background:#3460a4;
	border-left:1px solid #3460a4;
	border-right:1px solid #3460a4;
	/* Clear floats */
	float:left;
	width:684px;
	/* Bring the nav above everything else--uncomment if needed.*/
	position:relative;
	z-index:5;
	
}
#nav li{
	float:left;
	margin-right:0px;
	position:relative;
}
.item {
	border-right:2px solid #4e9fde;
}
.last {
	border-right:0px;
}
#nav a{
	display:block;
	padding:5px;
	color:#fff;
	background:#3460a4;
	text-decoration:none;
}
#nav a:hover{
	color:#fff;
	background:#4e9fde;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#4e9fde; /* 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 */
}
#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:#4e9fde;
	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:#3460a4;

}

img.floatLeft { 
  float: left; 
  margin: 5px ;
}
img.floatRight { 
  float: right; 
  margin : 10px 10px 10px 20px;
}
img.centered { 
  margin : 15px auto 5px auto;
}