@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ccc;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
a:link {
	color: #031951;
	text-decoration: none;
}
a:visited {
	color: #031951;
	text-decoration: none;
}
a:active {
	color: #031951;
	text-decoration: none;
}
a:hover {
	color: #031951;
	text-decoration: underline;
}
#footer a:link {
	color: #fff;
	text-decoration: none;
}
#footer a:visited {
	color: #fff;
	text-decoration: none;
}
#footer a:active {
	color: #fff;
	text-decoration: none;
}
#footer a:hover {
	color: #fff;
	text-decoration: underline;
}

#container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1004px; 
	background: #ccc;
	margin: 0 auto;
	text-align: left;
} 
.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;
}

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
#header {
	height: 94px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	padding: 0;
	margin: 0;
} 
#sidebarLeft {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 75px;
	padding: 0;
}
#sidebarRight {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 75px; 
	padding: 0px; 
	margin: 0px;
}
#awmAnchor-menu {
	margin:0;
	padding:0;
	width: 850px;
	background-color: #031951;
	height: 27px;
}
#mainContent {
	margin: 0 75px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0;
	border: 2px solid #031951;
	background-color: #FFF;
}
#homeColumnLeft {
	margin: 0;
	float: left;
	width: 350px;
	background-color: #FFF;
	background-image: url(images/home-content-left.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}
h1 {
	margin: 0;
	font-size: 14px;
	padding-top: 28px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 25px;
	color: #031951;
}
h2 {
	margin: 0;
	font-size: 12px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 25px;
	color: #031951;
}
.bodyText {
	margin: 0;
	font-size: 11px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 6px;
	padding-left: 25px;
}
.bodyText2 {
	margin: 0;
	font-size: 11px;
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 6px;
	padding-left: 25px;
}
.quote {
	font-size: 11px;
	font-style: italic;
	text-align: center;
	padding-top: 50px;
	padding-right: 35px;
	padding-left: 35px;
	margin: 0;
}
.specs {
	margin: 0;
	font-size: 11px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 35px;
	line-height: 1.45em;
}
.listParagraph {
	margin: 0;
	font-size: 11px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 25px;
}
.homeGrayBox {
	margin: 0;
	font-size: 10px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 0px;
	line-height: 1.35em;
	text-align: center;
	font-style: italic;
	font-weight: bold;
}
#homeColumnLeft ul {
	margin: 0;
	font-size: 10px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#homeColumnLeft li {
	margin-left: 20px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-position: outside;
	list-style-type: square;
}
#visionColumnLeft ul, #facilitiesColumnLeft ul, #facilitiesColumnRight ul {
	margin: 0;
	font-size: 11px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#visionColumnLeft li, #facilitiesColumnLeft li, #facilitiesColumnRight li {
	margin-left: 20px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-position: outside;
	list-style-type: square;
}
#homeColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 500px;
	background-color: #FFF;
}
#homeGrayBox {
	background-color: #CCC;
	width: 475px;
	padding: 6px;
	margin-right: 13px;
	margin-top: 28px;
	margin-bottom: 10px;
}
#flashTextLeft {
	margin: 0;
	padding: 0;
	float: left;
	width: 230px;
}
#flashTextRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 230px;
}
#flashTextLeft p, #flashTextRight p {
	margin: 0;
	font-size: 10px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 0px;
	line-height: 1.35em;
}
#visionColumnLeft {
	margin: 0;
	float: left;
	width: 450px;
	background-color: #FFF;
}
#visionColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 400px;
	background-color: #FFF;
}
#teamColumnLeft {
	margin: 0;
	float: left;
	width: 450px;
	background-color: #FFF;
	padding: 0px;
}
#teamColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 400px;
	background-color: #FFF;
}
#teamAccordion, #pressAccordion {
	margin: 0;
	padding-top: 5px;
	padding-left: 25px;
	padding-bottom: 10px;
}
#pressColumnLeft {
	margin: 0;
	float: left;
	width: 550px;
	background-color: #FFF;
	padding: 0px;
}
#pressColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 300px;
	background-color: #FFF;
}
#projectColumnLeft {
	margin: 0;
	float: left;
	width: 425px;
	background-color: #FFF;
	padding: 0px;
}
#projectColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 425px;
	height: 745px;
	background-color: #FFF;
	background-image: url(images/project-content-right.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
#designerColumnLeft {
	margin: 0;
	float: left;
	width: 375px;
	height: 630px;
	padding: 0px;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-image: url(images/designer-content-left.jpg);
}
#designerColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 475px;
	background-color: #FFF;
}
#galleryColumnLeft {
	margin: 0;
	float: left;
	width: 450px;
	background-color: #FFF;
	padding: 0px;
}
#galleryColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 400px;
	background-color: #FFF;
}
#builderColumnLeft, #industryColumnLeft {
	margin: 0;
	float: left;
	width: 225px;
	background-color: #FFF;
	padding: 0px;
}
#builderColumnRight, #industryColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 225px;
	background-color: #FFF;
}
#builderColumnCenter
{
	margin-left: 225px;
	padding: 0;
	width: 400px;
	background-color: #FFF;
}
#contactColumnLeft {
	margin: 0;
	float: left;
	width: 225px;
	background-color: #FFF;
	padding: 0px;
}
#contactColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 200px;
	background-color: #FFF;
}
#contactColumnCenter {
	font-size: 11px;
	margin-left: 225px;
	padding: 0px;
	background-color: #FFF;
	background-image: url(images/contact-content-center.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
#industryColumnCenter {
	margin-left: 225px;
	margin-right: 225px;
	background-color: #FFF;
	background-image: url(images/industry-content-center.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 65px;
	height: 410px;
}
#facilitiesColumnLeft {
	margin: 0;
	float: left;
	width: 425px;
	background-color: #FFF;
	padding: 0px;
}
#facilitiesColumnRight {
	margin: 0;
	padding: 0;
	float: right;
	width: 425px;
	height: 364px;
	background-color: #FFF;
}
#footer { 
	padding: 0; 
	background:#031951;
	margin: 0;
	padding: 10px 0px 10px 0px;
} 
.footer {
	margin: 0;
	font-size: 10px;
	color: #FFF;
	text-align: center;
	padding: 0px;
}
.footerLinks {
	font-size: 9px;
	color: #FFF;
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	line-height: 1.6em;
}
.copyright {
	font-size: 9px;
	color: #FFF;
	text-align: center;
	padding-top: 3px;
	margin: 0;
}
.fltrt { 
	float: right;
}
.fltlft { 
	float: left;
}
#facilitiesRowTwo {
	padding-top: 20px;
	margin: 0px;
}
/*honeypot for spiders*/
	 #website {
display: none;
}
.warning {
	font-weight: bold;
	color: #f00;
}
#table {
	margin: 0px;
	padding: 0px;
}

/*Gallery*/

img.thumbs {
    height:75px;
    width:75px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: solid white 1px;
}
img.thumbs2 {
    height:50px;
    width:50px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: solid white 1px;
}
#thumbContainer {
	float:left;
	width:175px;
	position: relative;
	left: 60px;
	top: 20px;
}
img.main {
    width:570px;
    border: solid white 2px;
}
#mainContainer { /*Gallery Page Only. Use min height*/
	float:left;
	width:570px;
	position: relative;
	top: 20px;
	left: 70px;
	height: 680px;
}
.galleryHeader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #031951;
	font-weight: bold;
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.galleryText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 19px;
	color: #031951;
	padding-bottom: 5px;
	margin: 0px;
}
.galleryCaption {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 17px;
	color: #031951;
	margin: 0px;
	padding: 0px;
}
.galleryPhotoCredit {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	color: #031951;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-style: italic;
}
