body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background:#fff;
	min-width:600px;    	/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	font-size:90%;
}
a {
	color:#369;
}
a:hover {
	color:#FFF;
	background:#369;
	text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
}
a:h1, h2, h3 {
	margin:.8em 0 .2em 0;
	padding:0;
}
p {
	margin:.4em 0 .8em 0;
	padding:0;
}
img {
	margin:10px 0 5px;
}
#ads img {
	display:block;
	padding-top:10px;
}

/* Header styles */
#header {
	clear:both;
	float:left;
	width:100%;
}
#header {
	border-bottom:1px solid #000;
}
#header p,
#header h1,
#header h2 {
	padding:.4em 15px 0 15px;
	margin:0;
}
#header ul {
	clear:left;
	float:left;
	width:100%;
	list-style:none;
	margin:10px 0 0 0;
	padding:0;
}
#header ul li {
	display:inline;
	list-style:none;
	margin:0;
	padding:0;
}
#header ul li a {
	display:block;
	float:left;
	margin:0 0 0 1px;
	padding:3px 10px;
	text-align:center;
	background:#eee;
	color:#000;
	text-decoration:none;
	position:relative;
	left:15px;
	line-height:1.3em;
}
#header ul li a:hover {
	background:#369;
	color:#fff;
}
#header ul li a.active,
#header ul li a.active:hover {
	color:#fff;
	background:#000;
	font-weight:bold;
}
#header ul li a span {
	display:block;
}
/* 'widths' sub menu */
#layoutdims {
	clear:both;
	background:#0072BB;
	border-top:4px solid #369;
	margin:0;
	padding:6px 15px !important;
	text-align:right;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
}
/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;
	overflow:hidden;
}
/* 2 Column (right menu) settings */
.rightmenu {
	background:#0072BB;		/* right column background colour */
}
.rightmenu .colleft {
	right:25%;			/* right column width */
	background:#FFF;		/* left column background colour */
}
.rightmenu .col1 {
	width:71%;			/* left column content width (left column width minus left and right padding) */
	left:27%;			/* (right column width) plus (left column left padding) */
}
.rightmenu .col2 {
	width:21%;			/* right column content width (right column width minus left and right padding) */
	left:31%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
}
/* Footer styles */
#footer {
	clear:both;
	float:left;
	width:100%;
	border-top:1px solid #000;
	background-color: #0072BB;
}
#footer p {
	padding:10px;
	margin:0;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
}



/* Main menu settings */
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	border-bottom:1px solid #000; /* black line below menu */
	width:100%;
	font-family:Verdana, Geneva, sans-serif; /* Menu font */
	font-size:90%; /* Menu text size */
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
	background-color: #0072BB;
}

/* 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 1px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#centeredmenu ul li a {
	display:block;
	margin:0px;
	padding:.6em .5em .4em;
	font-size:1em;
	line-height:1em;
	background:#0072BB;
	text-decoration:none;
	color:#FFF;
	font-weight:bold;
	border-bottom:1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
#centeredmenu ul li.active a {
	color:#fff;
	background:#0072BB;
}
#centeredmenu ul li a:hover {
	background:#0072FF; /* Top menu items background colour */
	color:#fff;
	border-bottom:1px solid #03f;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	background:#0072FF; /* Top menu items background colour */
	color:#fff;
	border-bottom:1px solid #03f;
}

/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	top:2em;
	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:0.8em;
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:#0072FF;
	color:#FFF;
	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:#0072BB; /* Sub menu items background colour */
	color:#fff;
	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 */
}


	#wrapper {
			clear:left;
			float:left;
			width:100%;
			background:#f4f4f4;
			padding-bottom:20px;
		}
		#box1wrap {
			float:left;
			width:440px;
			margin-top:20px;
		}
		#box1 {
			float:right;
			width:420px;
			height:820px;
			background:#fff;
		}
		#box1pad {
			position:relative;
			right:5px;
			float:right;
			width:410px;
			overflow:hidden;
		}
		#box2wrap {
			float:left;
			width:320px;
			height:820px;
			margin-top:20px;
		}
		#box2 {
			float:right;
			width:300px;
			height:820px;
			background:#fff;
			padding-bottom:5px;
		}
		#box2pad {
			position:relative;
			right:5px;
			float:right;
			width:290px;
			overflow:hidden;
		}
		.box3wrap {
			float:left;
			width:220px;
			margin-top:20px;
		}
		.box3 {
			float:right;
			width:200px;
			height:400px;
			background:#fff;
			padding-bottom:5px;
		}
		.box3pad {
			position:relative;
			right:5px;
			float:right;
			width:190px;
			overflow:hidden;
		}
		#footer {
			clear:left;
			padding:10px 20px;
		}








.topleft {
	background-color: #0072BB;
}
.topbg {
	background-color: #0072BB;
}
.leftcol {
	background-color: #0072BB;
}
.menu { color: #ffffff; font: bold 70% Verdana, Arial, Helvetica }
	.menu A:link, .menu A:visited { color: #ffffff; text-decoration: none }
	.menu A:active, .menu A:hover {
	color: #00F;
	text-decoration: none;
}
.bottom {
	background-color: #0072BB;
}
.copyright {
	color: #FFF;
	font: 68% Verdana, Arial, Helvetica
}
	.copyright A:link, .copyright A:visited { color: #ffffff; text-decoration: none }
	.copyright A:active, .copyright A:hover {
	color: #00F;
	text-decoration: none
}
.content { background: #ffffff; color: #777777; font: 100% Verdana, Arial, Helvetica }
.rightcol { background: #ffffff; border-left: solid 1px #4C9494; color: #777777; font: 68% Verdana, Arial, Helvetica }

h1 { border-bottom: solid 1px #4C9494; color: #000000; font: bold 150% Verdana, Arial, Helvetica }
h2 { color: #000000; font: bold 140% Verdana, Arial, Helvetica }
h3 { color: #000000; font: bold 130% Verdana, Arial, Helvetica }
h4 { color: #000000; font: bold 120% Verdana, Arial, Helvetica }
h5 { color: #000000; font: bold 110% Verdana, Arial, Helvetica }
h6 { color: #000000; font: bold 100% Verdana, Arial, Helvetica }

B:link {
	color: #FFF
}
B:visited {
	color: #2A5FFF
}
B:active, B:hover {
	color: #00F
}
#footer #footer_info p a {
	color: #FFF;
}
#layoutdims {
	color: #FFF;
}
#layoutdims {
	color: #FFF;
}
#layoutdims .active {
	color: #FFF;
}
.contentRcol {
	background: #ffffff;
	color: #777777;
	font: 125% Verdana, Arial, Helvetica
}
.contentRcolBold {
	background: #ffffff;
	color: #0072BB;
	font: 125% Verdana, Arial, Helvetica, Bold;
	font-weight: bolder;
}


img.FloatLeft {
	float: Left;
	Margin: 0px;
}

img.FloatRight {
	float: Right;
	Margin: 0px;
}

img.FloatLeftBody {
	float: Left;
	Margin: 10px;
}

img.FloatRightBody {
	float: Right;
	Margin: 10px;
}


.Back {
	z-index:0;
	position: abolute;
	top: 0px;
	left: 0px;
	width: ;
	height: 175px;
	background-color: white;
	border-style: none;
	boder-width: 1px;
}


.Front {
	z-index: 1;
	position: absolute;
	top: 0px;
	left:150px;
	width: ;
	height: 175 px;
	border-style: none;
	boder width: 1px;
}

.FloatBoxRight {
	float: right;
	Width: 450px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	clear: right;
	
}

.FloatBoxLeft {
	float: left;
	Width: 450px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	clear: left;
	
}


div.FloatBoxRight h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}


div.FloatBoxLeft h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}


.FloatBoxRightTXT {
	float: right;
	Width: 450px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	text-align: left;	
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	clear: right;
	
}

.FloatBoxLeftTXT {
	float: left;
	Width: 450px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	text-align: left;	
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	clear: left;
	
}


div.FloatBoxRightTXT h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}


div.FloatBoxLeftTXT h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}



.FloatBoxRightStates {
	float: right;
	Width: 200px;
	background-color: #F2F2F2;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	text-align: left;
}

.FloatBoxLeftStates {
	float: left;
	Width: 200px;
	background-color: #F2F2F2;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	text-align: left;
}


.FloatBoxRightReps {
	float: right;
	Width: 240px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	
	
}

.FloatBoxLeftReps {
	float: left;
	Width: 240px;
	background-color: #0072BB;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	
	
}


div.FloatBoxRightReps h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}


div.FloatBoxLeftReps h2 {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: medium;
	color: #FFF;
	text-align: left;
}

div.FloatBoxRightReps content {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: x-small;
	color: #FFF;
	text-align: left;
}


div.FloatBoxLeftReps content {
	line-height: 2pt;
	margin-bottom: 2px;
	font-size: x-small;
	color: #FFF;
	text-align: left;
}




.PopUpBox {
	Width: 200px;
	background-color: #F2F2F2;
	border-width: 1px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: -10px;
	font-weight: bold;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom:10px;
}



div.PopUpBox a span {
	display: none;
	text-decoration: none;
}

div.PopUpBox a:hover {
/** fix for IE6 popup bug.  nice one Microsoft! */
	overflow: hidden;
	text-decoration: none;
}

div.PopUpBox a:hover span {
	width: 350px;
	z-index: 1;	
	display: inline;
	border: 1px solid black;
	position: absolute;
	background-color: white;
	padding: 5px;
	margin-left: 10px;
	overflow: hidden;
	color: #0072BB;
	
}


.FloatBoxRightWide {
	float: right;
	Width: 350px;
	background-color: #FFFFFF;
	border-width: 2px;
	boder-style: solid;
	border-color: black;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: #0072BB;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	text-align: left;
	}

.FloatBoxLeftWide {
	float: left;
	Width: 240px;
	background-color: #FFFFF;
	border-color: black;
	border-width: 5px;
	boder-style: solid;
	padding; 10px;
	margin: 10px;
	font-weight: bold;
	color: #0072BB;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom:10px;
	text-align: left;
	border-right-color: #000;
	}
