@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;

}
.FBTCtwoCol #container {
	width: 750px;  /* using 50px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(../images/layout/twoColbkgrnd.jpg);
	background-repeat: repeat-y;
	margin: 5px auto; /* the auto margins (in conjunction with a width) center the page - 10px add top & bottom space on page */
	text-align: center;
}
 
.FBTCtwoCol #header {
	background: #071468;
	width:750px;
	height:121px;
	margin: 0;	
}
 
.FBTCtwoCol #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 */
}

.FBTCtwoCol #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 215px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* the background color will be displayed from the #container image */
	padding: 15px 10px;
}

.FBTCtwoCol #mainContent { 
	margin: 0 235px 0 0px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

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

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

.FBTCtwoCol #msglink{
	vertical-align: middle;
	text-align: center;
	background-color:#000000;
	margin:5px 0 5px 0;
	padding:5px 0;
}
