/* reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, code, em, img, small, strong, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
a{
	color: blue;
	text-decoration:underline;
}
a:hover{
	text-decoration:underline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* main */
h2{
	color:#3b4e63;
	font-size:14px;
	text-align:center;
	text-transform:uppercase;
}
h3{
	color:#3b4e63;
	text-transform:uppercase;
}
html{
	background: url('../images/background.gif'); 
	background-color: #f2f2f2;
	background-position: top left;
	background-repeat: repeat-x;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

#container{
	margin: 3px auto;
	width: 960px;
}
#header{
	background-color:#fff;
	height:93px;
	line-height:93px;
	margin:15px 0 10px;
	overflow:hidden;
	-moz-border-radius:5px; /* mozilla fix */
	-webkit-border-radius:5px; /* apple fix */
	border-radius:5px; /* not valid till css3 */
}
#logo{
	float:left;
	margin:4px 0 0 24px;
	width:355px;
}
#header ul{
	color:#5A5899;
	float:right;
	font-weight:bold;
	height:82px;
	line-height:82px;
	text-transform:uppercase;
	width:500px;
}
#header li{
	display:inline;
	margin-left:9px;
}
#header li img{
	vertical-align:middle;
}
#header li a{
	color:#5A5899;
	text-decoration: none;
}
#header li a:hover{
	text-decoration: underline;
}
#whiteBox{
	background-color: white;
	color:#142343;
	overflow: hidden;
	padding: 20px 30px 30px;
	position: relative;
	width: 900px;
	-moz-border-radius:5px; /* mozilla fix */
	-webkit-border-radius:5px; /* apple fix */
	border-radius:5px; /* not valid till css3 */
}

/*////////////////////////////////////////////////////////////////////////////////////////////////
////                                                                                          ////
//// The Perfect 'Holy Grail' 3 Column Layout                                                 ////
////                             - http://matthewjamestaylor.com/blog/perfect-3-column.htm    ////
////                                                                                          ////
////////////////////////////////////////////////////////////////////////////////////////////////*/

/* 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%;			/* width of page */
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
		overflow:hidden;
	}
	/* 3 Column settings */
	.threecol {
		background:#f5eebf;		/* right column background colour */
	}
	.threecol .colmid {
		right:200px;			/* width of the right column */
		background:#fff;		/* center column background colour */
	}
	.threecol .colleft {
		right:500px;			/* width of the middle column */
		background:#f5eebf;	/* left column background colour */
	}
	.threecol .col1 {
		line-height:18px;
		left:911px;			/* 100% plus left padding of center column */
		width:470px;			/* width of center column content (column width minus padding on either side) */
	}
	.threecol .col1 ul{
		list-style:disc;
		margin:0 0 15px 15px;
	}
	.threecol .col1 ul li{
		margin:0 0 0 15px;
	}
	.threecol .col2 {
		background-image:url(../images/3-column-top.gif);
		background-position:top left;
		background-repeat:no-repeat;
		width:200px;			/* Width of left column content (column width minus padding on either side) */
		left:230px;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
		padding:20px 0;
	}
	.threecol .col3 {
		background-image:url(../images/3-column-top.gif);
		background-position:top left;
		background-repeat:no-repeat;
		left:730px;			/* Please make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
		padding:20px 0;
		top:0;
		width:200px;			/* Width of right column content (column width minus padding on either side) */
	}

/*///////////////////// end Perfect 'Holy Grail' 3 Column Layout //////////////////////////*/

.homePress{
	line-height:15px;
	margin:25px auto 0;
	width:90%
}
.homePress a{
	color:#ff0000;
	text-decoration: none;
}
.homePress a:hover{
	text-decoration: underline;
}
.threecol .col3 p{
	line-height:15px;
	margin:15px auto 0;
	width:90%;
}
.threecol .col1 p{
	line-height:15px;
	margin:15px auto 0;
	text-align:justify;
}
.threecol .col1 h2{
	margin: 25px 0 15px 0;
}
.threecol .col1 ul{
	margin: 15px 0 0 15px;
}
.threecol .col2 img{
	margin:15px 0 15px 5px;
	width: 190px;
}
.threecol .col3 img{
	margin:15px 0 15px 5px;
	width: 190px;
}
#insideTan{
	background-color:#f5eebf;
	overflow:hidden;
	padding:18px;
	-moz-border-radius:5px; /* mozilla fix */
	-webkit-border-radius:5px; /* apple fix */
	border-radius:5px; /* not valid till css3 */
}
#subHead{
	height:40px;
	line-height:40px;
}
#subHead h1{
	color:#56549b;
	float:left;
	font-family:arial black;
	font-size:28px;
}
#subHead ul{
	color:#637689;
	float:right;
	width:140px;
}
#subHead ul li{
	display:inline;
	margin:0 0 0 5px;
	text-align:right;
}
#subHead ul li a{
	color:#637689;
	text-decoration: none;
}
#insideBody{
	float:left;
	line-height:15px;
	margin:15px 0;
	width:500px;
}
#insideBody p{
	margin:0 0 15px 0;
	line-height:18px;
	text-align:justify;
}
#insideBody h2{
	margin: 0 0 15px 0;
}
#insideBody ul{
	list-style: disc;
	margin: 0 0 18px 25px;
}
#insideBody ul li{
	line-height: 18px;
	margin: 0 0 0 5px;
}
#insideRightColumn{
	float:right;
	line-height:15px;
	margin:5px 0;
	width: 345px;
}
#insideRightColumn img{
	margin:0 0 25px 0;
}
#footer{
	clear:both;
	color:#647589;
	height:55px; /*height and line-height being the same will valign text to middle */
	line-height:55px;
	text-align:center;
}