@charset "utf-8";
/* CSS Document */

html {overflow-y: scroll;}
 
body  {
	font: 100% Arial, Verdana, Helvetica, sans-serif;
	background: #ffffff;
	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: #000000;
}

#container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {
	position: relative;
	height: 100px;
	border-bottom: 6px solid #dde89a;
} 

#header #header-logo {
	position: absolute;
	top: 21px;
	left: -63px;
}

img.logo {
	border: none;
}

a img {  
	border: none;
}

a:hover img {  
	border: none;
}

#menu {
	position: absolute;
	top: 70px;
	left: 309px;
	width: 426px;
	height: 30px;
}

#buttons-row {
	padding: 70px 0px 0px 320px; /*190-(128+33)= from view link */
	height: 30px;
}

#buttons-row img {
 display: block;
 border: 0;
 float: left;
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	margin-top: 10px;
	padding: 5px 20px 10px 0px;
}

#sidebar .quote {
	position: relative;
	margin-top: 80px;
}

#sidebar h1{
	color: #d8b134;
	font-size: 13px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	margin-top: 8px;
}

#sidebar p{
	color: #015DAA;
	font-size: 12px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
}

#sidebar span{
	font-style: normal;
}

#mainContent {
	background: url(images/dot.gif) repeat-y right;		
	width: 490px;
	margin: 9px 0px 0px 0px;
	padding: 6px 20px 15px 20px;
}

#gallery {
	padding: 0px; /*190-(128+33)= from view link */
	height: auto;
}

#gallery #vert {
	padding: 6px 6px 12px 12px; /*190-(128+33)= from view link */
	height: auto;
}

#gallery p {
	color: #015DAA;
	font-size: 12px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
}

#gallery span{
	font-style: normal;
}

#footer {
	background: url(images/hdot.gif) repeat-x top;
	padding: 20px 20px 10px;
}

#footer #bottom-images {
	position: relative;
	float: right;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}

#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 */
}

.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;
}

.bodyText {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
}

.bbbText {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}

.footerText {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
}

p {
	margin-bottom: 12px;
	font-size: 12px;
}

h1 {
	font-size: 18px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	color: #005dab;
}

h2 {
	font-size: 16px;
}

h6 {
	/* font-style: normal; */
	font-weight:100;
	/*font-variant:normal; */
	font-size: 10px;
}

a:link {
	color: #005dab;
	text-decoration: none;
}

a:active {
	color: #debc51;
	text-decoration: underline;
}

a:visited {
	color: #005dab;
	text-decoration: none;
}

a:hover {
	color: #d8b134;
	text-decoration: underline;
}

.brightedge {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.6em;
	color: #999999;
	text-align: right;
	margin: 0px;
	padding: 5px 0px 10px;
}

.bright:hover, .bright:visited:hover {
	color: #FF9900;
	text-decoration: underline;
}

.highlight {
	color: #005DAB;
	font-weight: bold;
}

/* form elements */
form.contactForm {
	margin: 0; padding: 15px;
	border: 1px solid #cacaca; 
	background-color: #F5F5F5; 
	width: 455px;
}
label {
	display:block;
	font-weight:bold;
	font-size: 95%;
	margin:5px 0;
}
input {
	padding: 2px;
	border:1px solid #cacaca;
	font: normal 1em Verdana, sans-serif;
	color:#777;
}
select.contact {
	padding:2px;
	width: 50px;
	font: normal 1em Verdana, sans-serif;
	color: #777;
	border:1px solid #cacaca;
}
select.jobs {
	padding:2px;
	width: 290px;
	font: normal 1em Verdana, sans-serif;
	color: #777;
	border:1px solid #cacaca;
}
textarea {
	width:450px;
	padding:2px;
	font: normal 1em Verdana, sans-serif;
	border:1px solid #cacaca;
	height:100px;
	display:block;
	color:#777;
}
input.button { 
	margin: 0; 
	font: bold 1em Arial, Sans-serif; 
	border: 1px solid #cacaca;
	background: #FFF; 
	padding: 2px 3px; 
	color: #005dab;
	cursor: pointer;
}

.imgBorder img {
	border: #fff 1px solid;
	padding: 2px;
}

.imgBorder:hover img {
	border: #333 1px solid;
	padding: 2px;
}