@charset "UTF-8";
/* CSS Document */


 
/*

-----------------------------------------------------------------------------------------------

BODY

-----------------------------------------------------------------------------------------------


*/  

body {
	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: #000000;
	font-family: Helvetica Neue, Helvetica Neue Light, Helvetica, Arial, Geneva;
}

body,td,th {
	font-family: Helvetica Neue, Helvetica Neue Light, Helvetica, Arial, Geneva;
}
a {
	font-size: 11px;
	color: #FFFFFF;
}
a:link {
	color:#000000
}
a:visited {
	color: #000000;
}
a:hover {
	text-decoration: none;
	color:#FFFFFF;
}
a:active {
color: #000000;
}
/*

-----------------------------------------------------------------------------------------------

BODY

-----------------------------------------------------------------------------------------------


*/ 
/*

-----------------------------------------------------------------------------------------------

TEXT - STYLES

-----------------------------------------------------------------------------------------------


*/  
.texttitle {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 16px;
	font-style: normal;
	line-height: 2em;
	font-weight: lighter;
	letter-spacing: 0.8px;
	word-spacing: 2px;
	text-align: justify;
}
.textphonenumber {
	color: #999999;
	font-family: "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 24px;
	font-style: normal;
	line-height: 2em;
	font-weight: lighter;
	letter-spacing: 0.8px;
	word-spacing: 3px;
	text-align: right;
}
.textcontact {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 9px;
	font-style: normal;
	line-height: 2em;
	font-weight: 100;
	letter-spacing: 1px;
	word-spacing: 0px;
	text-align: right;
}
.textbody {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 13px;
	font-style: normal;
	line-height: 2em;
	font-weight: lighter;
	letter-spacing: 1px;
	word-spacing: 0px;
	text-align: justify;
}

.textstraptop {
	color: #333333;
	font-family: "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 11px;
	font-style: normal;
	line-height: 2em;
	font-weight: bold;
	letter-spacing: 1px;
	word-spacing: 0px;
	text-align: right;
}
.textstrap {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	letter-spacing: 1px;
}
.textBottomLinks {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 11px;
	font-style: normal;
	line-height: 2em;
	font-weight: lighter;
	letter-spacing: 1px;
	word-spacing: 0px;
	text-align: center;
	color: #FFFFFF;
}

.text-news-box {
	padding-left:20px;
	padding-right:20px;
	border-left-width: thin;
	border-color: #333333;
	border-left-color: #CCCCCC;
	border-left-style: solid;
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica Neue Bold Condensed", "Helvetica Neue Black Condensed", "Helvetica";
	font-size: 12px;
	color: #333333;
}

.text-content-box {
	padding-left:20px;
	padding-right:20px;
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica Neue Bold Condensed", "Helvetica Neue Black Condensed", "Helvetica";
	font-size: 12px;
	color: #333333;
}

.textbody-white {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	color:#FFFFFF;
	font-size: 13px;
	font-style: normal;
	font-weight: lighter;
	line-height:2em;
	word-spacing: 0px;
	text-align: justify;
}
.text-links-box {
	padding-left:20px;
	padding-right:20px;
	border-left-width: thin;
	border-color:#000000;
	border-left-color: #000000;
	border-left-style: solid;
}


.newsheader {
	font-family: "Geneva", "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 16px;
	font-style: normal;
	line-height: 2em;
	font-weight: lighter;
	letter-spacing: 1px;
	word-spacing: 0px;
	text-align: justify;
	color:#000000;
}
/*

-----------------------------------------------------------------------------------------------

TEXT - STYLES

-----------------------------------------------------------------------------------------------


*/  

/*

-----------------------------------------------------------------------------------------------

SITE-CONTAINER

-----------------------------------------------------------------------------------------------


*/  
.jake #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 

/*

-----------------------------------------------------------------------------------------------

SITE-CONTAINER

-----------------------------------------------------------------------------------------------


*/ 



/*

-----------------------------------------------------------------------------------------------

SIDE BARS

-----------------------------------------------------------------------------------------------
 Tips for absolutely positioned sidebars:
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 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.
*/
.jake #sidebar1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-image:url(images/background/side-left.jpg);
	height:100%;
}
.jake #sidebar2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-image:url(images/background/side-right.jpg);
	height:100%;
}


/*

-----------------------------------------------------------------------------------------------

SIDE BARS

-----------------------------------------------------------------------------------------------
*/


.jake #mainContent { 
	margin: 0 50px; /* 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. */
}

/*

-----------------------------------------------------------------------------------------------

CONTENT

-----------------------------------------------------------------------------------------------


*/ 

.jake #header-top-strip {
	height: 24px;
	width: 900px;
	background-image:url(images/headers/header-top.jpg);
	background-repeat:repeat-x;
	
}


.jake #header {
	border-bottom-width: thin;
	border-color: #333333;
	border-bottom-color: #CCCCCC;
	border-bottom-style: solid;
	background-color: #000000;
	width:900px;
	
}


.jake #graphic-window {
	background: #FFFFFF;
	height:300px;
	width:900px;
	
}

.jake #video-window {
	background: #FFFFFF;
	width:900px;
	
}

.jake #content {
	background-image: url(images/logobg.jpg);
	background-repeat:repeat-x;
	background-color: #FFFFFF;

}             

.jake #main-content{
width:900px;
background:#FFFFFF;
}

.jake #navigation {
	
}

.jake #wdc-link {
	width: 900px;	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-bottom: 20px;
	padding-right: 20px;
	text-align:right;
	
}


.jake #footer-strip {
	width: 880px;
	background-color:#000000;
	padding-left:20px;
	padding-bottom: 0px;
	text-align:left;
	
	
}

.jake #footer-links-box{
	width: 880px;
	background-color:#333333;
	text-align:left;
	padding-left:20px;
	padding-right:20px;	
	padding-bottom: 20px;
	font-family: "Helvetica Neue", "Helvetica Neue Light", "Helvetica", "Arial Geneva";
	font-size: 15px;
	font-style: normal;
	line-height: 1em;
	word-spacing: 0px;
	
}




 
</style>[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.jake #sidebar1 { width: 50px; }
.jake #sidebar2 { width: 50px; }
</style>
<![endif]
