/* CSS for the Structure of the Page */
* {
    margin:0;
    padding:0;
}
#wrapper {
	width:100%;
}
#main {
	display:table;
	border-collapse:collapse;
}
#main .inner {
	display: table-row;
}
#header {
	margin:30px 0 15px 0;
	height:220px;
	border:solid 12px #FFFFFF;
}
/* Width set for the side column to stop it 'stretching' beyond the point you want */
#navigation {
	display:table-cell;
	padding-top:25px;
	width:12em;
	background-color:#FFFFFF;
	border-right:solid 15px #CCFFFF;
}
/* Don't set a width for the main column & it will expand to fill the window - on this occasion, have had to set a width! */
#content {
	display:table-cell;
	background-color:#FFFFFF;
	padding:25px 15px 15px 15px;
	min-width:48em;
	vertical-align: top;
}
#footer {
	background-color:#FFFFFF;
	text-align:center;
	margin:15px 0 20px 0;
	padding:20px;
}
/* Header Div Styling */
h1 {
	color:#FFFFFF;
	font-size:3.5em;
	margin-top:60px;
}
#header img {
	border:none;
	float:left;
	padding:0 25px 0 0;
}
/* Styling Affecting Body Area */
body {
	max-width:1024px;
	margin:auto;
	background-color:#CCFFFF;
	background-image:url(images/gradient.png);
	background-repeat:repeat-x;
	color:#000066;
	font-family:Verdana, Helvetica, Arial, sans-serif;
	font-size:1em;
}
.clear {
	clear:both;
}
h2,h3,h4 {
	padding-bottom:15px;
}
h2 {
	color:#000066;
	font-size:1.4em;
}
h3 {
  font-size:1.1em;
}
p {
  line-height:120%;
  padding-bottom:20px;
}
table, th, tr, td {
	padding:5px;
	font-size:0.9em;
	background-color:#FFFFFF;
	border-spacing:8px;
}
td {
	border:solid 8px #99CCCC;

}
img {
	border:none;
}
.left {
	float:left;
	padding:0 20px 20px 0;
}
.right {
	float:right;
	padding:0 0 20px 20px;
}
ul.content {
	padding-left:15px;
	list-style-position:inside;
}
li.content {
	padding-bottom:10px;
}
/* Styling for Navigation Area Only */
#navigation ul {
	list-style:none;
	text-align:center;
}
#navigation li a {
	display:block;
	margin:0 15px 15px 15px;
	padding:10px;
	text-decoration:none;
	border:solid 2px #99CCCC;
	color:#000066;
}
#navigation li a:hover {
	background-color:#99CCCC;
	text-decoration:none;
	color:#FFFFFF;
}
/* Styling for Footer Area Only*/

