@charset "UTF-8";
body {
	font: 100%/1.3 Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/vert.jpg);
	margin: 0;
	padding: 0;
	color: #333;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { 
	border: none;
}
a:link {
	color: #36C;
	text-decoration: underline;
}
a:visited {
	color: #36C;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #df2525;
	text-decoration: none;
}

.container {
	width: 960px;
	background: #FFF;
	margin: 10px auto; 
}

.header {
	height: 150px;
	width: 960px;
	background-image: url(images/diag1.jpg);
	margin: 0px 0px 15px 0px;
}
.header h1 {
	color: #c1cac6;
}
.logo {
	height: 150px;
	width: 150px;
	float: left;
}
.logoimage {
	float: right;
	padding: 5px 0px 0px 0px;
}
.companyName {
	width: 700px;
	margin: 80px 10px 0px 5px;
	float: left;
}

.content {
	background: #FFFFFF;
	padding: 10px 0;
}
.toppanel {
	background: #FFF;
	margin: 0 30px 0 10px;
}
.h2 {
	color: #333;
	font-size: 1.5em;
	font-weight: bold;
}
.bottompanel {
	height: 400px;
	background: #fff;
	display: block;
}
.leftpanel {
	background: #f3f3f3;
	height: 375px;
	width: 290px;
	padding: 10px 0;
	margin: 0px 10px 0px 25px;
	float: left;
}
.centerpanel {
	background: #f3f3f3;
	height: 375px;
	width: 290px;
	padding: 10px 0;
	margin: 0px 10px 0px 10px;
	float: left;
}
.rightpanel {
	background: #f3f3f3;
	height: 375px;
	width: 290px;
	padding: 10px 0;
	margin: 0px 25px 0px 10px;
	float: left;
}
.panel p {
	color: #fff;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0 10px 0;
	background-image: url(images/diag1.jpg);
}
.footer p {
	color: #ccc;
	font-size: 0.9em;
	text-align: center;
}
.fltrt {  
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}