@charset "utf-8";


html, body {
	font: 100% Verdana, Tahoma, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	background-color: #6699cc;
	background-image: url(img/bk.jpg);
	background-repeat: repeat-x;
	color: #666633;
	font-size: 11px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

.hidden {
	display: none;
}

.GH #container {
	position: relative;
	width: 777px;
	background-color: #FFFFFF;
	background-image: url(img/cont_bk.jpg);
	background-repeat: repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-top: 1px solid #000; 
	margin-top: -1px; 
} 

.GH #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 269px; 
	height: 634px;
	margin: 0 0 0 0;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(img/sidebar.jpg);
}
.GH #nav {
    position: absolute;
	margin-top: 183px; 
	margin-left: 9px;
	width: 234px;
	height: 247px;
	z-index: 3;
}
.GH #testimonials {
	margin: 445px 40px 40px 20px;
	padding: 3px 3px 3px 3px; 
	color: #666633;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.GH #testimonials h6 {
	color: #666633;
	font-size: 10px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0;
}

.GH #header {
	float: right;
	width: 508px;
	height: 276px;
	z-index: 1;
	margin: 0 0 0 0;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(img/header.jpg);
}

.info p {
	position: absolute;
	width: 489px;
	margin: 35px 0px 0px 280px;
	z-index: 2;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffcc;
}


.GH #mainContent { 
	margin: 290px 15px 0 260px; /* the left margin on this div element creates the column down the left 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.GH #mainContent h1 {
	color: #cc9900;
	font-size: 18px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif; 
	margin-top: 2em;
}
.GH #mainContent h2 {
	color: #666633;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	margin-top: 0;
}
.GH #mainContent h3 {
	color: #cc9900;
	font-size: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-top: 2em;
}
.GH #mainContent h4 {
	font-size: 15px;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 0em;
}
.GH #mainContent p {
	color: #666633;
	font-size: 11px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}
.GH #mainContent ul {
	margin-top: 0;
}
.GH #mainContent li {
	color: #666633;
	font-size: 11px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}
.GH #mainContent blockquote {
	margin-top: 0;
}
.p {
	color: #666633;
	font-size: 11px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	margin-top: 5px;
}

.GH #teasers {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(img/cont_bk.jpg);
	background-repeat: repeat-y;
	background-color: #FFFFFF;
}
.GH #teasers h1 {
	color: #cc9900;
	font-size: 11px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	margin-bottom: 0;
	margin-top: 0;
}
.GH #teasers p {
	color: #666633;
	font-size: 10px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	margin-top: 0;
}
.GH #teasers h6 {
	color: #666633;
	font-size: 10px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0;
}

.GH #footer { 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(img/footer.jpg);
	height: 42px;
} 
.GH #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 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666633;
}

.GH A:link {
	text-decoration: none;
	color: #666633;
	font-weight: bold;
}
.GH A:visited {
	text-decoration: none;
	color: #666633;
	font-weight: bold;
}
.GH A:hover {
 	text-decoration: underline;
	color: #666633;
	font-weight: bold;
}

.info A:link {
	text-decoration: none;
	color: #ffffcc;
}
.info A:visited {
	text-decoration: none;
	color: #ffffcc;
}
.info A:hover {
 	text-decoration: underline;
	color: #ffffcc;
}

.GH #button { 
	position: absolute;
	margin: 40px 0px 0px 10px;
	width:245px; 
	height:85px; 
	border: 0px;
	z-index:3;
}
.GH #button a  {
	width:245px; 
	height:85px;  
	display:block; 
	padding-top:2px; 
	text-align:center;
}
.GH #button a:link { 
	text-decoration:none;
}
.GH #button a:hover {
	text-decoration:none;
}

.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;
}


/* common styling */
.menu {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	width: 234px; 
	height: 247px; 
	position: absolute; 
	margin: 0; 
	font-size: 13px; 
	color: #FFFFFF;
}
.menu ul li a, .menu ul li a:visited {
	display: block; 
	text-decoration: none; 
	color: #FFFFFF; 
	width: 234px; 
	height: 29.5px; 
	text-align: left; 
	border: 1px solid #999999; 
	border-width: 1px 0 1px 0; 
	background: #000000; 
	line-height: 29.5px; 
	font-size: 13px;
}
.menu ul li a:link {color:#FFFFFF;}
.menu ul {padding:0; margin:0; list-style-type: none;}
.menu ul li {float:left; margin-right:1px; position:relative; color:#FFFFFF}
.menu ul li ul {display: none;}

/* specific to non IE browsers */
.menu ul li:hover a {color:#666633; background:#cdc4aa; text-decoration:none;}
.menu ul li:hover ul {display:block; position:absolute; top:0; left:235px; width:175px;}
.menu ul li:hover ul li a.hide {background:#dfc184; color:#000;}
.menu ul li:hover ul li:hover a.hide {width:150px; color:#FFFFFF;}
.menu ul li:hover ul li ul {display: none;}
.menu ul li:hover ul li a {display:block; background:#cdc4aa; color:#000; width:175px; padding:3px;}
.menu ul li:hover ul li a:hover {background:#dfc184; color:#000; text-decoration:none;}
