@charset "utf-8";
body  {
	font: 100% Helvetica, Arial, sans-serif;
	background: #000;
	margin: 0; /* browser reset this line and next */
	padding: 0;
	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: #333;
}
.twoColElsLtHdr #container { 
	width: 1024px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: url(../grx/lft_nav.jpg) repeat-y; /* put bg image in container so it goes to bottom of sidebar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header { 
	background: url(../grx/hdr.jpg); /* use image to be sure colours match */
	height:256px; /* put image into background and specify height to fix gap problem in IE */
} 
.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 337px; 
}
.twoColElsLtHdr #leftnav {
	margin-left: 128px;
	width: 209px;
}

/* the following image rollover code modified from this: http://alanwho.com/css/rollover-css-image-menu */
.twoColElsLtHdr img {border:none;}
.twoColElsLtHdr #leftnav ul{
	margin: 0; /* we must reset browser again to make it work */
	padding: 0;
	list-style:none;
}
/*.twoColElsLtHdr #leftnav li{
	display:inline;
	list-style:none;
}
*/.twoColElsLtHdr #leftnav li a{
	float:left;
	display:block;
	width:209px;
	height:33px;
}
.twoColElsLtHdr #leftnav li a:hover {
	visibility:visible;
}
.twoColElsLtHdr #leftnav li a:hover img{
	visibility:visible;
}
.twoColElsLtHdr #leftnav li a:hover img/**/{visibility:hidden;}

/* Button ID's FOR ROLLOVER MENU */
.twoColElsLtHdr #home {background: url(../grx/home_btn_f2.jpg);}
.twoColElsLtHdr #profile {background: url(../grx/profile_btn_f2.jpg);}
.twoColElsLtHdr #services {background: url(../grx/services_btn_f2.jpg);}
.twoColElsLtHdr #difference {background: url(../grx/difference_btn_f2.jpg);}
.twoColElsLtHdr #contact {background: url(../grx/contact_btn_f2.jpg);}
.twoColElsLtHdr #login {background: url(../grx/client_login_f2.jpg);}
.twoColElsLtHdr #french {background: url(../grx/french_btn_f2.jpg);}

.twoColElsLtHdr #mainContent {
	float:left;
	width: 687px;
	background:url(../grx/shade_bg.jpg) repeat-x;
	padding-top:10px; /* create a little space around the box so it 'floats' */
	padding-bottom: 32px;
} 
.twoColElsLtHdr #mainText {
	margin-left: 32px;
	padding: 30px; /* create space within the box to keep text away from edges */
	background-color:#F2F2F3;
	width:556px;
	height:468px; /* maximum size possible before it starts to skew in IE; don't know why that is. Would prefer to not specify height if the copy fills the box enough */
}
.twoColsElsLtHdr #mainText ul {font-size:12px;}
/* text styling for copy */
.twoColElsLtHdr #mainText h1{}
.twoColElsLtHdr #mainText h2{font-size:16px; color:#6D211C;}
.twoColElsLtHdr #mainText h3{font-size:12px;}
.twoColElsLtHdr #mainText h4{}
.twoColElsLtHdr #mainText p{font-size:12px;}

.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	color: #666;
} 
.twoColElsLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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
}
/* TEXT CLASSES */
.small {font-size: x-small;}
.bold {font-weight:bold;}
.logo_text {font-size:14px; font-weight:bold;}
.logo_blue {color:#1C546D;}
.logo_green {color:#847C00;}
