
body {
	background:#3b3b3b;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/bg1.gif);
	background-repeat: repeat-x;
}



#container {
	width: 975px;  
	height: 532px;
	background: #FFFFFF;
	padding:0;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 45px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	background: url(images/left_title_bg.gif) repeat-x top left;
	padding: 20px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0;
	width: 444px;
	height: 320px;
	}

#mainContent a {
	color: #ff0000;
	padding:0;
	margin:0;
	}

#mainContentHome {
	padding: 5px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0;
	width: 444px;
	height: 200px;
	}

.inlineimage{
	float:left;
	padding:5px;
	margin:0;	

}

.inlineimager{
	float:right;
	padding:10px;
	margin:0;	

}

.quote{
	display:block;
	font-style: italic;
	font-weight: bold;
	line-height: 16px;
	padding:10px 0;
	margin:0;	

}

	
#leftcol {
	float: left;
	width: 504px;	
	height:502px;
	margin: 0;
	padding: 0;	
	background:#ffffff;
}



#logo {
	width: 	504px;
	height: 120px;
}

#logo img{
	margin-top: 30px;
	margin-left: 30px;
}


#logohome {
	float:left;
	width: 	247px;
	height: 120px;
}

#logohome img{
	margin-top: 30px;
	margin-left: 30px;
}


#promo{
	float:left;
}

#promo img{
	margin-top: 14px;
	margin-left: 0px;
}


#lefttitle {
	margin: 0;
	padding: 10px 0 0 0;
	height: 130px;
	width: 504px;	
}

#locationlist {

	background: url("images/locationgrad.gif") top left repeat-x;
	padding: 20px 30px;
	margin:20px 0 0 0;
	width:444px;
}

#locationlist a{
	color: #fff;
	text-decoration: none;
}

#locationlist a:hover{
	color: #fff;
	text-decoration: underline;
}

#locationlist a.selected{
	font-weight: bold;
	color: #fff;
	text-decoration: underline;
}

#mainContent-loc {
	background: url(images/left_title_bg.gif) repeat-x top left;
	padding: 20px 30px; 
	margin:0;
	width: 444px;
	height: 185px;
	}


.clear {

	clear:both;
}



/**************************
Begin Case Study Right Photos
**************************/

#csright1,#csright2,#csright3,#csright4 {
position:absolute;
visibility: hidden;
padding: 0;
margin:0;
}

#csthumbs {
	margin: 0;
	padding:20px 0px 0px 0px;
	
}




#csthumbs li{
	display: inline;
	margin: 0;
	padding: 10px;
	list-style: none;
}

#casestudyphoto {
	width:471px;
	height:400px;
	padding: 0;
	margin: 0;
}

#casestudydes {
	background:url(images/casestudy_bg.gif) repeat-x top left;
	color:#ffffff;
	width:451px;
	height:62px;
	padding: 5px 10px;
	margin: 0;
}

.casetype {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 15px;
	text-align: justify;
	color: #ffffff;
	padding: 0;
	margin: 0;
}

.casetype a {
	color: #0099FF;
}

.casetypebold {
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
	color: #ffffff;
}


/* End Case Studies Right */


#rightcol {
	width:471px;
	height:502px;
	margin-left: 504px;
	padding: 0;
	background:#333333;
}

* html #rightcol {
	position: relative;
	left: -3px; /* move the element left to close the gap */
	margin-right: -3px; /* add a negative right margin to fill the 3 pixel space left by moving everything left */

}




#rightphoto {
	width:471px;
	height:229px;
	padding: 0;
	margin: 0;
}

#rightphotobig {
	width:471px;
	height:472px;
	padding: 0;
	margin: 0;
}

#careercont {
	color:#ffffff;
	width:471px;
	height:472px;
	padding:0;
	margin: 0;
}


#flashmovie {
	color:#ffffff;
	width:471px;
	height:472px;
	padding:0;
	margin: 0;
}






/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
position:relative;

}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
	}

.transMenu.top .items {
	border-top:none;
	}

/* each TR.item is one menu item */
.transMenu .item {
    color:#336;
    font-size:10px;
    font-family:sans-serif;
    text-decoration:none;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	border:none;
	cursor:pointer;
	cursor:hand;
	text-align:left;
	}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	/*
	-moz-opacity:.8;
	filter:alpha(opacity=80);
*/
	}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
	position:absolute;
	z-index:3;
	top:3px; width:2px;
	/*
	-moz-opacity:.4;
	filter:alpha(opacity=40);
*/
	}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:3px; height:2px;
	/*
	-moz-opacity:.4;
	filter:alpha(opacity=40);
*/
	}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.transMenu .item.hover {
	background:#e5e5e5;
	color:black;
	}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.transMenu .item img {
	margin-left:10px;
	}
	
	#menu {
    position:relative;
	margin: 0;
	padding: 0;
	height: 30px;
	width:471px;
	background: #000000;
    
    }
	
#menu a {
	/*display:block;*/
	float:left;
	background: #000000;
	margin-left: 30px;
	height: 30px;
	padding:0;
    }
#menu a.hover {
    background:#000000;
    }
#menu span {
    display:none;
    }


#subnav {
    font-size:10px;
    margin-bottom:2em;
    }
#subnav a {
    color:#FB3B00;
    margin-right:1em;
    }
#subnav span {
    color:silver;
    margin-right:1em;
    }

#featcontain {
	margin: 0;
	padding: 0;
	width:471px;
	height: 243px;
	
}

#homefeat1 {
	margin: 0;
	padding: 0;
	height: 81px;
	
}

#homefeat2 {
	margin: 0;
	padding: 0;
	height: 81px;

}

#homefeat3 {
	margin: 0;
	padding: 0;
	height: 81px;

}




p {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 15px;
	text-align: justify;
	color: #333333;
}

.bold {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 15px;
	color: #333333;
}

td {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 15px;
	color: #333333;
}

ul, ol {
	display:block;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 13px;
	text-align: left;
	font-weight: normal;
	color: #333333;
	margin:10px 0 10px 18px;
	padding:0;
}

#linklist {
	margin:0;
	padding-left:20px;
	color: #333333;
	list-style:url(images/arrow.gif);
}


#linklist a:hover {
	text-decoration:underline;
	color: #ff0000;

}

#linklist li{
	line-height:18px
}


#linklist a {
	
	text-decoration:none;
	color: #ff0000;
}

#linklist2 {
	margin:0 0 0 5px;
	padding:0;
	color: #333333;
	
}


#linklist2 li{
	list-style:url(images/arrow.gif);
	margin:0 12px;
	padding:0 0 0 0;
	float:left;
}


#linklist2 a {
	
	text-decoration:none;
	color: #ff0000;
}

#linklist2 a:hover {
	text-decoration:underline;
	color: #ff0000;

}






#cspos {
	margin:0 0 0 25px;
	padding:0;
	line-height:20px;
	color: #333333;
	list-style:url(images/docbullet2.png);
}


#cspos a {
	text-decoration:none;
	color: #ff0000;
 	

}

#cspos a:hover {
	text-decoration:underline;
	color: #ff0000;

}



h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	margin:10px 0;
}

h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	padding:0;
	margin:0;
}



#footer {
	clear:both;
	height:30px;
	margin:0;
	padding:0;
	background:#000000;
	
}

#footer ul{
	padding-top:8px;
	padding-left:130px;
	margin:0;
}

#footer ul li{
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	padding-left: 10px;
	list-style:none;
}

#footer ul li a{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	text-decoration:none;
}

#footer ul li a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	text-decoration:underline;
}


input {
	background-color:#F3F3F3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
	
}

fieldset {
	width:360px;
	padding:10px;
	margin:10px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border:1px solid #ccc;
	color: #333333;
	font-weight: normal;
}

legend {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 5px 5px;
  	border:1px solid #666666;
  	text-align:right;
	color: #ffffff;
	font-weight: normal;
}




select {
	background-color:#F3F3F3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
}

textarea {
	background-color:#F3F3F3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
}



/**************************
Begin Photo Thumb Tips
**************************/

#directors {
	margin: 0;
	padding:10px 0px 0px 0px;
	
}


#directors li{
	display:inline;
	margin: 0;
	padding:3px;
	list-style: none;
}

#biotip1 {
position:absolute;
background: #ebebeb;
padding: 7px 7px;
margin-top:5px;
width:420px;
}
			
#biotip2, #biotip3, #biotip4,  #biotip5, #biotip6, #biotip7, #biotip8 {
position:absolute;
background: #ebebeb;
padding: 7px 7px;
margin-top:5px;
width:420px;
visibility: hidden;}

/* Structure for careers page job list */


.buttons-horiz {
	height:38px;
	list-style: none;
	margin:0;
	padding:0;
	}

.buttons-horiz	li{
	float:left;
	height:38px;
	margin:0 10px 0 0;
	padding:0;
	}

#joblisting1, #joblisting2, #joblisting3
{
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
width: 430px;;
margin: 0;
padding: 10px 10px;
border-top: 1px solid #999;
cursor: pointer;
}



#jobselect {
	background: url(images/bluegrad.gif) repeat-x top left;
	padding:0; 
	margin:0;
	width: 444px;
	height: 120px;
	}

#jobselect a{
	color: #000;
	line-height: 20px;
	text-decoration: none;
	}

#jobselect a:hover{
	color: #000;
	line-height: 20px;
	text-decoration: underline;
	}

#jobselect ul {
	color:#000;
	list-style: none;
	margin:0 0 0 0;
	padding:0;
	}

#jobselect ul li {
	float:left;
	margin:0;
	padding: 5px 10px 15px 10px;
	height: 100px;

	}

#jobselect li.job1 {
	border-right:1px solid #96b7c0;
	}
#jobselect li.job2 {
	border-right:1px solid #96b7c0;
	border-left:1px solid #fff;
	}
#jobselect li.job3 {
	border-left:1px solid #fff;
	}
	


/* Ajax and Submit Buttons */

#mainContentjobs {
	background: url(images/left_title_bg.gif) repeat-x top left;
	padding: 20px 30px; 
	margin:0;
	width: 444px;
	height: 290px;
	}



#submitbuttons {
	/* background: url(images/left_title_bg.gif) repeat-x top left; */
	padding: 20px 5px; 
	margin:0;
	width: 444px;
	height: 40px;
	text-align: center;
	margin 0 auto;
	}
	
#submitbuttons input{
	/* background: url(images/left_title_bg.gif) repeat-x top left; */
	padding: 2px 4px; 
	margin: 0 10px;
	}
