@charset "UTF-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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 */
	color: #666;
}
#container1  {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height: 600px;
} 
#header  {
	padding: 0;
	margin:0;
	text-align:left;
	position:relative;
} 
#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 5px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -9999px;
	background: url(../images/gfx/hdrh1logo.png) no-repeat 10px 10px;
	height: 90px;
	color: #216699;
	border:1px solid #FFd;
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 0 15px;
	margin:0;
}
#mainContent  {
	margin: 20px 340px 0 0; /* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent.full {
	margin-right: 0px;
}
h1 {
	margin: 15px 0px;
	color: #216699;
}
h2 {
	font-size: 1.5em;
	color: #00659B;
	font-weight: normal;
	margin: 10px 0 6px;
}
h3 {
	font-size: 1.2em;
	font-weight: bold;
	color: #A9846A;
	margin: 6px 0 4px;
}
h4 {
	font-size: 1em;
	font-weight: bold;
	color: #333;
	margin: 6px 0 4px;
}
p {
	margin: 2px 0 6px;
	line-height: 1.4;
}
a:link, a:visited {
	color: #C60;
	text-decoration: none;
}
a:hover, a:active {
	color: #00659B;
	text-decoration: underline;
}
a image {
	border: 0 none;
}
#header ul#nav {
	position:absolute;
	left:450px;
	top:60px;
	margin:0;
	padding: 0;
	background:#fff;
	list-style-type: none;
	width:705px;
	float:left;
}
#nav li {
	margin:0;
	padding:0;
	float:left;
}
#nav li a {
	float: left;
	font-size:1.2em;
	/*width:120px;*/
	padding:0 25px;
	color:#069;
	line-height:2;
	text-decoration:none;
	text-align: center;
	border:1px solid #fff;
	background:#034 url(../images/navglaze.jpg);
	border-top-color: #A9846A;
}
/*#nav li a:hover {
	background:#034 url(../images/navglaze.jpg);
	color:#fff;
	border:1px solid #fff;
}*/
#body_hom #nav_hom a, #body_con #nav_con a, #body_sho #nav_sho a, #body_new #nav_new a, #body_abo #nav_abo a {
	border-bottom-color: #a9846a;
	border-top-color:#fff;
}
#detail {
	text-align:right;
	margin-left:100px;
	width: 550px;
}
#tinygallery li {
	display: inline;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	height:106px;
}
#tinygallery ul {
	margin:0;
	padding:0;
	overflow:hidden; /* for FF */
}
/* forms */
.liform {
	margin:0 auto;
	font-size: 1em;
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}
.liform label {
	position:relative;
	width:14em;
	margin-right:1em;
	float:left;
	text-align:right;
}
.liform label em {
	position:absolute;
	left:14em;
	top:0;
}
.fc-field-error {
	border: 2px solid #F60 !important;
	background:#fff url(../images/forms/reqstar.png) no-repeat right center;
}
#footer  {
	padding: 0;
	border-top: 1px solid #a9846a;
	margin-top: 15px;
} 
#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 */
	text-align: center;
	color: #666;
}
#footer p.maconnage {
	float: right;
	width: 200px;
	font-size: .8em;
	text-align:right;
}
.caption {
	color: #000;
	text-align: center;
	margin: 10px auto;
}
table.inquiry {
	margin: 10px auto;
	border-collapse:collapse;
	empty-cells:show;
}
table.inquiry td {
	padding:0 6px;
}
table.inquiry td.label {
	text-align:right;
}
.hilite , .msg{
	color: #b00;
}
.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;
}

