/*
** layout.css
** 
** Version 1.1 - 06 February 2007
*/

*  {		
	margin: 0;
	border: 0;
	padding: 0;
} 

html, body {
	background: #6B6B6B;
	height: 100%;
}
	
body { 
	color: #000;
	text-align: center; /* part 1 of 2 centering hack */
}

/*-------------------------------------------------
From: Aline Lin [mailto:aline@linkstudio.info] 
Sent: Tuesday, February 10, 2009 9:28 AM
To: Hasch, Dennis
Subject: Re: CSS 

Hi Dennis, 

The total width of the center section including the 1 pixel black border on the left and right is 910 pixels. In the file layout.css

#wrap is defined as 910 pixels. We currently design sites with the screen resolution 1024 x 768. The 910 pixels accounts for scroll bars, etc. I think that should be safe. We've also done them where it is 923 pixels wide and there is no horizontal scroll. 

This is the code from layout.css that we edited:
-------------------------------------------------*/ 

/*-------------------------------------------------
Content Wrapper / Centers Layout
-------------------------------------------------*/ 

#wrap {
	background-color:#fff; /*fix for grey flash?*/

	border: 1px solid #000;
	margin-top: 1em;
	margin-bottom: 0.5em;
	margin-right: auto;
	margin-left: auto;
	text-align:left; /* part 2 of 2 centering hack */
	width: 910px;
} 

* html #wrap {
	width: 910px; /*fixes for IE5win*/
	w\idth: 910px; /*fixes for IE6win/IE5mac */
}

/*-------------------------------------------------
Masthead / Logo / Search Form
-------------------------------------------------*/

#mastHead 	{
	/* width: 771px; */ /* masthead width also changed from 771 to 910 JAK */
	width: 910px;
	position: relative;
	background: #000;
}

#mastHead h1 span{
	position: absolute;
	top: -5000px;
	left: 0;
}

#mastHead h1 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 74px;
	background: #000 url(../_img/headerMastHead.gif) no-repeat;
	width: 369px;
	float: left;
} 

/* Added in order to change the logo from an H1 tag to a div tag. This was done to correct the HTML and improve SE indexing, JAK. */

#mastHead div#top a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 74px;
	width: 449px;
	float: left;
	background-color: #000;
	background-image: url(../_img/headerMastHead.gif);
	background-repeat: no-repeat;
}

#mastHead.short-header h1 a {
	width: 292px;
	height: 57px;
	background: #000 url(../_img/nmnh_logo_small.jpg) no-repeat;
}

/* Added in order to change the logo from an H1 tag to a div tag. This was done to correct the HTML and improve SE indexing, JAK. */

#mastHead.short-header div#top a {
	width: 292px;
	height: 57px;
	background: #000 url(../_img/nmnh_logo_small.jpg) no-repeat;
}
/*-------------------------------------------------
Search Form
-------------------------------------------------*/

#mastHead #searchForm {
	height: 74px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0;
	/* padding-left: 586px; */ /* left padding changed from 586 to 723 JAK */
	padding-left: 723px;
}

#mastHead.short-header #searchForm {
	height: 47px;
}

#qt {
	width: 10em;
	/*width:136px;*/
	background: #CCC;
	margin-right: .1em;
	vertical-align: middle;
}

#qt, #submit {
	vertical-align: middle;
}

#searchForm p {
	font-size: 80%; 
	margin: 4px 0 0 0;
	position: absolute;
	top: 29px;
	right: 90px;
}

#searchForm label {
	position: absolute;
	top: -500px;
}

#searchForm fieldset {
	border: 0;
}

#searchForm a:link, #searchForm a:visited  {
	color: #ccc;
	font-weight: normal;
	text-decoration: underline;
}

#searchForm a:hover, #searchForm a:active {
	color: #fff;
	font-weight: normal;
	text-decoration: none;
}

/*-------------------------------------------------
Donate Button
-------------------------------------------------*/

#mastHead #donate_button a {
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	position: absolute;
	top: 42px;
	right: 123px;
}

#mastHead.short-header #donate_button a {
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	position: absolute;
	top: 1px;
	right: 185px;
}

/*-------------------------------------------------
Global Navigation
-------------------------------------------------*/

#globalNav {
	background: #808080;
	/* width: 771px; */ /* global navigation width also changed from 771 to 910 JAK */
	width: 910px;
}

#globalNav ul     {
	list-style: none;
	/* width: 771px; */ /* global navigation width also changed from 771 to 910 JAK */
	width: 910px;
	background: #808080;
	float: left;
	margin-bottom: 0;
}

#globalNav ul li {
	text-align: center;
	float: left;
	margin: 0;
}

#globalNav ul a  {
	display: block;
	/*line-height: 2.1em;
	line-height: 24px;*/
	text-decoration: none;
	color: #fff; 
	font-size: 11px;
	background: #808080 url(../_img/headerGlobalNavDiv.gif) no-repeat right; 
	padding: 5px 0 8px 0; /* fix for text resize, or convert to line height above?*/
}
		
#globalNav ul a:hover {
	background: #A6A6A6 url(../_img/headerGlobalNavDiv.gif) no-repeat right;
}

#globalNav ul li a.lastlist {
	background:#808080;
}

#globalNav ul li a:hover.lastlist {
	background: #A6A6A6;
}

#globalNav ul a#menuPlan {
	width: 102px;
}

#globalNav ul a#menuExhibitions {
	width: 88px;
}

#globalNav ul a#menuEducation {
	width: 79px;
}

#globalNav ul a#menuResearch {
	width: 147px;
}

#globalNav ul a#menuExplore {
	width: 109px;
}

#globalNav ul a#menuAbout {
	width: 76px;
}

#globalNav ul a#menuInvolved {
	width: 93px;
}

#globalNav ul a#menuCalendar {
	width: 77px;
}

/*-------------------------------------------------
Side Content / Sub Content / Left & Right Columns
-------------------------------------------------*/
#sideContent {
	float: left;
	width: 175px;
	padding-bottom: 40px; /* for content light pages */
}

#sideContent div.sideGutter  {
/*	padding: 20px 11px 4px 11px; */
}

#sideContent div#left_column_top {
	padding: 10px 11px 4px 11px;
}

#sideContent div#left_column_bottom {
	padding: 10px 11px 4px 11px;
}

#sideContent h1 	{
	font-family: Georgia, "Times New Roman", Times, serif;
}

#sideContent h1 .deptof {
	display: block;
	font-size: 62%;
	font-weight: 500;
	font-style: normal;
}

#sideContent h1 .deptname {
	display: block;
	line-height: 1.2em;
}

#sideContent h1 .deptname a:link,  #sideContent h1 .deptname a:visited  {
	text-decoration: none;
}

#sideContent h1 .deptname a:hover,  #sideContent h1 .deptname a:active  {
	text-decoration: underline;
}

#sideContent h2 .divof {
	font-size: 80%;
	font-weight: 500;
	font-style: italic;
}

#sideContent h2 .divname {
	font-size: 80%;
	font-weight: 500;
	font-style: italic;
}

#sideContent h2 .divname a:link,  #sideContent h2 .divname a:visited  {
	text-decoration: none;
}

#sideContent h2 .divname a:hover,  #sideContent h2 .divname a:active  {
	text-decoration: underline;
}

#sideContent img { /* image should be placed outside of div#gutter */
	margin: 10px auto 0 auto; /* used to be margin: 10px 0 0 0; 
	changed at same time width was changed to max-width JAK */
	max-width: 100%; /* changed to max-width. Used to be width JAK */
	height: auto; /* added at same time width was changed to max-width JAK*/	
	overflow: hidden;
}

#sideContent div.sideGutter img { /* image should be placed inside of div#gutter */
	margin: 10px 0 0 0;
	width: 153px; /* change to max-width? */
	overflow: hidden;
}

#sideContent #left_column_image p {
	font-size: 80%;
	line-height: 1.15;
	padding: 0 11px 0 11px;
}

#sideContent p.side-caption {
	font-size: 80%;
	line-height: 1.15;
}

/*-------------------------------------------------
Breadcrumbs
-------------------------------------------------*/

#mainContent div#breadCrumb {
	background: #fff;
	border-bottom: 1px solid #fff; /*forces bg color down/match bg color*/
	padding: 10px 0 0 0;
}

#mainContent div#breadCrumb ul {
	display: inline;
	list-style: none;
} 

#mainContent div#breadCrumb ul li {
	margin: 0;
	display: inline;
}

#mainContent div#breadCrumb h1	{
	font: 210% Georgia, "Times New Roman", Times, serif;
	margin-bottom: 0.3em;
	padding: 22px 0 0 0;
}

#mainContent div#breadCrumb a:link, #mainContent div#breadCrumb a:visited {
	text-decoration: none;
}

#mainContent div#breadCrumb a:hover, #mainContent div#breadCrumb a:active {
	text-decoration: underline;
}

/*-------------------------------------------------
Main Content Footer
-------------------------------------------------*/
#mainContent div#mainFoot {
	background: #fff;
	border-bottom: 1px solid #fff; /*forces bg color down/match bg color*/
	padding: 30px 0 30px 0;
	clear: both; 
}

#mainContent div#mainFoot p {
	margin: 0;
}

#mainFoot a.top {
	border-bottom: 1px solid #FFF;  /*stops 1 pixel shifting*/	
	padding-left: 1em;
	text-decoration: none;
}

#mainFoot a:hover.top {	
	padding-left: 1em;
	text-decoration: none;
}
	
/*-------------------------------------------------
Footer
-------------------------------------------------*/

#footer {
	margin: 0 auto;
	width: 771px;
	padding-bottom: 0.6em;
}

#footer ul {
	color: #fff;
	font-size: 7pt;
	margin-left: -3px;
}

#footer ul li { 
	display: inline;
}

#footer ul li a {
	color: #fff;
	float: left; /*eliminates blue underline in IE5 mac*/
	border-left: 1px solid #fff;
	padding: 0 .6em;
}

#footer ul li a:link, #footer ul li a:visited {
	text-decoration: none;
}

#footer  ul li a:hover, #footer  ul li a:active {
	text-decoration: underline;
}

#footer ul li a:link.firstlist, #footer ul li a:visited.firstlist, #footer ul li a:hover.firstlist, #footer ul li a:active.firstlist {
	border-left: 1px solid #6B6B6B;
	padding-left: 0;
}
/*--------------------------------
 Footer wrapping fix
 
 Based on fix created by NKI for Centennial website, JAK 4/12/2010
--------------------------------*/

div#footer {
	width: 910px;
}

div#footer ul li {
	font-size: 11px;
	margin-left: 1px;
}