/* redefined default styles */
html {
	height:100%;
}
body {
	height:100%;
	min-height:100%;
	margin:0;
	padding:0;
	
	background-image:     -ms-radial-gradient(left top, circle farthest-corner, #E7FFF7 0%, #009966 100%);	/* IE10 Consumer Preview */
	background-image:    -moz-radial-gradient(left top, circle farthest-corner, #E7FFF7 0%, #009966 100%);	/* Mozilla Firefox */
	background-image:      -o-radial-gradient(left top, circle farthest-corner, #E7FFF7 0%, #009966 100%);	/* Opera */
	background-image: -webkit-radial-gradient(left top, circle farthest-corner, #E7FFF7 0%, #009966 100%);	/* Webkit (Chrome 11+) */
	background-image: -webkit-gradient(radial, left top, 0, left top, 993, color-stop(0, #E7FFF7), color-stop(1, #009966));	/* Webkit (Safari/Chrome 10) */ 
	background-image: radial-gradient(circle farthest-corner at left top, #E7FFF7 0%, #009966 100%);	/* W3C Markup, IE10 Release Preview */  
	
    background-repeat:no-repeat;    
	background-attachment:fixed;
}
/* -------------------------------------------------------------------------------- */
/* These are the three main boxes: header, content, footer                          */
/* -------------------------------------------------------------------------------- */
#container {
	clear:left;
	position:relative;
	min-height:100%;
	height:auto;
	height:100%;
	width:100%;
	min-width:600px;
	margin: 0 auto -6em;
	font-size:100%;
	border:0; 			/* This removes the border around the viewport in old versions of IE */
}
#header {
	clear:both;
	float:left;
	width:100%;
	margin-top:1em;
	margin-bottom:1em;
}
.content {
	clear:both;
	float:left;
	position:relative;		/* This fixes the IE7 overflow hidden bug */
	width:90%;				/* width of whole page */
	margin:0 5%;
	overflow:hidden;		/* This chops off any overhanging divs */
}
#footer {
	clear:both;
	position: relative;
	margin-top: -6em; /* negative value of footer height */
	height: 5em;
	/* my Styles */
	text-align:center;
	padding-bottom:.5em;
	padding-top:.5em;
}
/* -------------------------------------------------------------------------------- */
/* All Header Box styles */
/* -------------------------------------------------------------------------------- */
#header p, #header h1, #header h2 {
	margin:0;
	padding:.6em 20px .4em 20px;
}
#headerLeft  {
	float:left;
	padding:.6em 20px .4em 40px;
}
#headerRight {
	float: right;
	width:390px;
	padding:.6em 20px .4em 20px;
}
#header hr {
	clear:both;
	width:92%;
	height:.3em;
	color:#000066;
	background-color:#000066;
}
/* -------------------------------------------------------------------------------- */	
/* Main menu settings */
/* -------------------------------------------------------------------------------- */
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:.5em 0 2em 0;
	width:100%;
	font-family:Verdana, Geneva, sans-serif; /* Menu font */
	font-size:65%; /* Menu text size */
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
}
/* Top menu items */
#centeredmenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#centeredmenu ul li {
	margin:0 0 0 5px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#centeredmenu ul li a {
	display:block;
	margin:0;
	padding:.6em .5em .4em;
	font-size:1.2em;
	line-height:1.2em;
	background:#ddd;
	text-decoration:none;
	color:#000066;
	font-weight:bold;
	border-bottom:1px solid #ddd;
}
#centeredmenu ul li.active a {
	background:#ddd;
	color:#000066;
}
#centeredmenu ul li a:hover {
	background:#000066; /* Top menu items background colour */
	color:fff;
	border-bottom:1px solid #000066;
}
#centeredmenu ul li:hover a, #centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	background:#000066; /* Top menu items background colour */
	color:#fff;
	border-bottom:1px solid #000066;
}
/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	top:2.6em;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul */
	width:10em; /* width of the drop-down menus */
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	float:left;
	width:100%;
}
#centeredmenu ul ul li a, #centeredmenu ul li.active li a, #centeredmenu ul li:hover ul li a, #centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-size:.8em;
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:#eee;
	color:#444;
	line-height:1.4em; /* overwrite line-height value from top menu */
	border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
	float:left;
	width:100%;
}
#centeredmenu ul ul li a:hover, #centeredmenu ul li.active ul li a:hover, #centeredmenu ul li:hover ul li a:hover, #centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:#36f; /* Sub menu items background colour */
	color:#eee;
	float:left;
}
/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
#centeredmenu ul ul.last li {
	float:right;
	position:relative;
	right:.8em;
}
/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul, #centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}
/* -------------------------------------------------------------------------------- */
/* Right Hand Menu */
/* -------------------------------------------------------------------------------- */
#rightMenu {
	clear:both;
	float:left;
	margin:0;
	padding: .2em 0;
	width:100%;
	position:relative;
}
#rightMenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#rightMenu ul li{
	margin:0 0 0 1px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#rightMenu ul li a {
	display: block;
	padding: 2px 12px;
	background-color: #000066;
	font-family: Arial, Helvetica, san-serif;
	font-size: x-small;
	font-weight: bold;
	font-style: oblique;
	text-decoration:none;
	color: #fff;
}
#rightMenu ul li a:hover {
	color: #FF0000;
}
/* -------------------------------------------------------------------------------- */
/* All Footer Box styles */
/* -------------------------------------------------------------------------------- */
#footer h1, #footer h2, #footer p {
	font-family:Arial, Helvetica, sans-serif;
	color:#000066;
}
#footer h1 {
	font-size:1.2em;
	font-weight:bold;
	padding:0;
	padding-top:10px;
	margin:0;
}
#footer h2 {	
	font-size:1em;
	font-style:oblique;
	padding:0;
	margin:0;
}
#footer p {
	font-size:.6em;
	padding:0;
	margin:0;
}
/* -------------------------------------------------------------------------------- */
