@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/* background: images/backgroundFade.jpg */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.topPanel #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #0E2D4F;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/* border:3px solid #777;
	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.topPanel #header {
	height:70px;
	background: #1C3E6A; 
	margin: 0;
	padding: 25px 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	/* padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.topPanel #navbar { 
	margin: 0; /* zeroing the margins of the first element in the navbar will avoid the possibility of margin collapse - a space between divs */
	margin-left:8px;
	height:15px;
	padding-top:2px;
	/* padding: 0 10px 0 20px; this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #0E2D4F;
} 
.topPanel #background {
	/* background:url(../images/Q_pattern.gif); */
	background:url(../images/dk_grey_txtrblk.png);
	height:487px;
}
.topPanel #leftPanelBkgrnd {
	/* background:url(../images/Q_pattern.gif); */
	background:url(../images/lt_grey_txtrblk.png);
	clear:right;
	height:487px;
	width:154px;
}
.topPanel #sectionImage {
	position:relative;
	clear:left;
	top:-400px;
	left:72px;
	height:82px;
	width:82px;
}
.topPanel #contentHeader {  
	position:relative;
	top:-525px;
	left:180px;
	height:0px;
	width:570px;
}
.topPanel #columnFullWide {  
	position:relative;
	float:left;
	top:-475px;
	left:182px;
	height:0px;
	width:570px;	
}
.topPanel #column1 {  
	position:relative;
	float:left;
	top:-475px;
	left:181px;
	height:0px;
	width:178px;
}
.topPanel #column2 { 
	position:relative;
	float:left;
	top:-475px;
	left:376px;
	height:0px;
	width:178px;
}
.topPanel #column3 {  
	position:relative;
	float:left;
	top:-475px;
	left:571px;
	height:0px;
	width:178px;
}
.topPanel #workbutton1 { 
	position:relative;
	float:left;
	top:-290px;
	left:180px;
	height:0px;
	/* width:570px; */
}
.topPanel #workbutton2 {  
	position:relative;
	float:left;
	top:-290px;
	left:330px; 
	height:0px;
	/* width:570px; */
}
.topPanel #workbutton3 {  /* Positions web development button */
	position:relative;
	float:left;
	top:-290px;
	left:480px;
	height:0px;
	/* width:570px; */
}
.topPanel #workbutton4 {  /* Positions success stories button */
	position:relative;
	float:left;
	top:-290px;
	left:630px;
	height:0px;
	/* width:570px; */
}
.topPanel #thumbtable {
	position:relative;
	float:left;
	top:-350px;
	left:167px;
	/* width:570px; */
	
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
