@charset "utf-8";
/* CSS Document */

body  {
	font-size: 65%; /*means 1em = 10px*/
	font-family: Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000099;
	border-color: #ffffff;
}
a {
	 color: #000099;
	 text-decoration:none
}

a:visited {
	 color: #000099;
	 text-decoration:none
}
h1 {
	padding-top:2em;
	padding-bottom:1em;
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
h1 a {
	padding-top:2em;
	padding-bottom:1em;
	text-decoration:none;
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
h1 a:hover {
	padding-top:2em;
	padding-bottom:1em;
	text-decoration:underline;
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
h2 {
	font-size: 1.6em;
	padding-top:1.5em;	
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
h2 a {
	text-decoration:none;	
	color: #000099;
}
h2 a:hover {
	text-decoration:underline;
	color: #000099;
}
h3 {
	font-size: 1.4em;
	padding-top:1em;
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
h3 a:visited {
	font-size: 1.2em;
	padding-top:1em;	
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
}
p {
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	color:#000000;
}
a img{
border:none
}
#container {
	width: 100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ffffff; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #FFFFFF; 
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse */
	padding: 2em, 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#menubar {
	background: #DDDDDD;
	padding: 1px 0 0;
	width: 100%;	
} 
#menubar h1 {
	margin: 0; 
	padding: 1px 0; 
}
#mainContent {
	margin: 0 27% 5% 27%;
	max-width:45%;
	background:#ffffff;
	} 
#mainContent p a {
text-decoration:none;
color:#000099;	
} 
#mainContent p a:visited {
	text-decoration:none;
	color:#000099;
}
#mainContent p a:hover {
	text-decoration:underline;
	color:#000099;
}
#mainContent li {
text-decoration:none;
color:#000099;	
} 
#mainContent li a {
text-decoration:none;
color:#000099;
font-size: 1.2em;	
} 
#mainContent li a:visited {
text-decoration:none;
color:#000099;
font-size: 1.2em;	
} 
#mainContent li a:hover {
	text-decoration:underline;
	color:#000099;
	font-size: 1.2em;
} 
#footer {
	
	padding: 0 0;
	background:#DDDDDD;
	vertical-align: bottom;
	width: 100%;
	text-align: center;
	float:centre;
	} 
#footer a {
	font-size: 1.2em;
	text-decoration:none;
	color:#000099;
}
#footer a:visited {
	font-size: 1.2em;
	color:#000099;
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.sidebarleft { /* this class is used for left floating side bars */
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 25%; /* since this element is floated, a width must be given */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 0;
	min-width:200px;
	margin-top:15px;
}
.sidebarleft img{
	float: right;
	margin-right:15%;
	margin-bottom:20px;
}
.sidebarright { /* this class is used for right floating side bars */
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 25%; /* since this element is floated, a width must be given */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0;
	min-width:200px;
}
.sidebarright img{
	float: left;
	margin-left:15%;
	margin-bottom:20px;
}
.sidebarleft p, .sidebarright p, .sidebarright h3 {
	margin-left: 3em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 3em;
	float:right;
	text-align:right
}
.sidebarleft h3, .sidebarright h3 {
	/* margin-left: 3em; 
	margin-right: 3em;*/
	padding-top:3em;
	padding-bottom:3em;
	padding-right:2em;
	float:left;
	text-decoration:none;
	background:#ffffff;
	min-width: 10em;
	height:2em;
	text-align: right;
	border: 1em;
	margin: 0 10px 0 0;
	}
#nav{
	float:right;
	margin:0;
	padding: 0 0 0 0;
	list-style:none;
	background-color: #dddddd;
}
#nav li {
	float:left;
	margin: 0 1px 0 0;
	padding:0;
	border: 2px;
	border-color: #000099;
	}
#nav a {
	float:left;
	font-size: 1.2em;
	font-family:Arial, Helvetica, sans-serif;
	display:block;
	margin:0;
	padding: .5em 1em;
	color:#777777;
	text-decoration:none;
	background:#dddddd;
}
#nav a:hover {
	color: #333;
	padding-bottom: 5px;
	border-color:#0000FF;
	background:#FFFFFF;
}
#sidenav{
	float:left;
	margin:0;
	padding: 0 2em 0 0;
	list-style:none;
	background-color: #ffffff;
	max-width: 5em;
	
}
#sidenav li {
	float:left;
	margin: 0 10px 0 0;
	padding:0;
	border: 1em;
}
#sidenav a {
	float:right;
	font-size: 1.2em;
	font-family:Arial, Helvetica, sans-serif;
	display:inline-table;
	padding: 0.5em;
	color:#777777;
	text-decoration:none;
	background:#ffffff;
	min-width: 10em;
	height:2em;
	text-align: right;
}
#sidenav a:hover {
	color: #333;
	padding-bottom: 5px;
	border-color:#0000FF;
	background:#FFFFFF;
}
