/* 
############################################################################
Set up any default styles needed throughout 
############################################################################ */
* {
	padding:0;
	margin:0;
}
img { 
	border: 0px; 
	margin: 0px;
	padding: 0px;
}

/* 
############################################################################
Standard HTML & Body 
############################################################################ */
body {
	background-color: #a0c3da;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 100%;
	height: 100%;
}

/* 
############################################################################
Main Layout 
############################################################################ */
div#outer {
	position:absolute;
	top: 50%;
	left: 50%;
	margin-top: -295px; /*set to a negative number 1/2 of the height*/
	margin-left: -450px; /*set to a negative number 1/2 of the width*/
	width: 899px;
	text-align: left;
	height: 575px;
}
div#header {
	height: 105px;
	background-color: #fff;
}
div#logo {
	float: right; 
	margin: 15px 15px 0 0;
}
div#header_text {
	float: right; 
	margin-right: 12px;
}
div#menuarea {
	float: left;
	margin-top: 66px;
	height: 39px;
	background-color: #fff;
	width: 500px;
}
div#submenuarea {
	float: left;
	margin-top: 0px;
	height: 26px;
	background-color: #fff;
	width: 899px;
}
div#column1 {
	padding-top: 36px;
	width: 335px;
	height: 434px;
	float: left;
	background-color: #cfe1ec;
}
div#column1_content {
	height: 354px;
	color: #4f7092;
	margin-left: 15px;
	margin-right: 11px;
}
div#column1_footer {
	height: 75px;
	background-color: #fff;
}
div#column2 {
	width: 564px;
	height: 470px;
	float: right;
	background-color: #cfe1ec;
}
div#column1_sub {
	padding-top: 10px;
	width: 335px;
	height: 434px;
	float: left;
	background-color: #cfe1ec;
}
div#column1_content_sub {
	color: #4f7092;
	margin-left: 15px;
	margin-right: 11px;
}
div#column2_sub {
	width: 564px;
	height: 444px;
	float: right;
	background-color: #cfe1ec;
}
div#footer {
	color: #4f7092;
	margin-top: 0px; 
}

.floatleft {
	float: left;	
}
.floatright {
	float: right;	
}
li.square {
	list-style-type: square;				
}

/* 
############################################################################
Headings 
############################################################################ */
h1 {
	font-size: 16px;
	font-weight: normal;
	padding-bottom: 2px;
	margin-top: 5px;
}
h2 {
	font-size: 11px;
	font-weight: bold;
	padding: 9px 0 0px 0;
}
/* 
############################################################################
Text Styles 
############################################################################ */
p {
	margin-top: 5px;
}
p.spaced {
	margin-bottom: 15px;			
}
p.case_studies {
	 margin-top: 9px;
}
ul {
	margin: 2px 15px 9px 15px;	
}
li {
	padding-top: 1px;				
}

/* Links - link visited hover active */
a:link, a:visited {
	color: #4f7092;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #646464;			
	text-decoration: none;
}
div#footer a:link, div#footer a:visited {
	color: #4f7092;
	text-decoration: none;
	font-weight: normal;
}
div#footer a:hover {
	color: #646464;			
	text-decoration: none;
}


/* 
############################################################################
Miscellaneous 
############################################################################ */
.clear {
	clear: both;
}

/* 
############################################################################
Clearfix from: http://www.positioniseverything.net/easyclearing.html 
############################################################################ */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
