@charset "utf-8";
/* CSS Document */
<!--
body {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #DDE1FF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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;
}
.FBTConeCol #container {
	width: 750px;  /* using 50px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 5px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.FBTConeCol #header {
	background: #071468;
	width:750px;
	height:121px;
	margin: 0;	
}
.FBTConeCol #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.FBTConeCol #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.FBTConeCol #navbarburg{
	background-color:#68003D;
	padding:0;
	height:52px;
}

.FBTConeCol #footer{
	vertical-align: middle;
	text-align: center;
	color:#CCCCCC;
	background-color:#333333;
	font-size:small;
	padding:5px 10px 5px 10px;
}

-->
