/* CSS Document - style_1.css */
/* Used for everything - including navigation menus*/

/*	Clear & set default settings to eliminate cross-browser differences and provide standard
    starting point. All side margins are controlled by browser width and all vertical spacing is controlled by font size. */

/* remove ul,ol,li from clear to fix problem of lists not indenting correctly; also sommented our list-style  3/2009 BRR */	
body,div,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,th,td { 
margin:0; 
padding:0;
font-weight: normal; 
}
li, dd {
	margin-left:0; 
} 
fieldset { 
	padding: .5em; 
} 
/* End default clearance settings */

/* Default styles - apply to unless over-ridden by Class(.) or ID(#)  */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 87%; /* Master font size for the website. Effective size is 12px */
	text-align: center;
	margin: 0px;
	padding: 0px;
	background: #660033;
}
html>body { 
font-size: 14px; 
} 
h1 {
	/*21px - Used only for initial "Welcome to the Linnaeus Garden"*/
	font: bolder small-caps 1.5em/2.25em Georgia, "Times New Roman", Times, serif;
	color: #660033;
	padding: 0px;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 20px;
}
h2 	{
	/*Used for page description heading  on each page. 15.6px*/
	color: #660033;
	text-align:center;
	width: auto;
	margin-top: 1.1666em;
	margin-bottom: 1.1666em;
	font: bold 1.2857em/1.1666em Georgia, "Times New Roman", Times, serif;
	padding-top: .5em;
}
h3 	{
	/* Green letters, white background. Page level article titles. 16px*/
	font-weight: bold;
	color: #009900;
	text-align:center;
	font-size: 1.1428em;
	line-height: 1.3125em;
	margin-top: 1.3125em; 
	margin-bottom: 1.3125em;
}
h4 {
	/* White letters, green background. Page level article titles. 16px*/
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	background-color:#009900;
	font-size: 1.1428em;
	line-height: 1.3125em;
	/*margin-top: 1.3125em; */
	margin-bottom: 1.3125em;
}	
h5 {
	/*14px* Used on Home page for left column titles.*/
	font: bolder 1em Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background: #990066;
	margin-top: 1.5em; 
	margin-bottom: 1.5em; 
	line-height: 1.5em; 	/*21px*/
}
h6 {
	/*14px* Used for column titles.*/
	font: bolder 1em Verdana, Arial, Helvetica, sans-serif;
	color: #990066;
	margin-top: .3em; 
	margin-bottom: 1.5em; 
	line-height: 1.5em; 	/*21px*/
}
br {
	font-weight: normal;
	margin: 5px;
}
p {
	/*12px*/
	text-align: left;
	font-size:1em; 
	margin-top: 1.5em; 
	margin-bottom: 1.5em; 
	line-height: 1.5em; 	/*21px*/
}		
img {
	/*Applies to all images*/
	border: none;
}
li {
	/*Applies to all list items*/
	line-height: 1.5em;
	background: left;
	text-align: left;
/*	list-style: disc inside;  */
	margin: 0px;
	padding: 0px;
}
ol li {
	/*Applies to numbered list items*/
	font-size:1em;
	line-height: 1.5em;
	background: left;
	text-align: left;
/*	list-style: decimal inside;  */
	margin: 0px;
	padding: 0px;
	text-indent: 5px;
}
em {
	/*Makes words bold for emphasis*/
	font-weight: bold;
}
strong {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: bold;
	color: #009900;
}
table, thead, tbody, tr, th, td {
	/*Applies to all tables*/
	font-size:1em;
}

/* End of default styles*/

/* The following styles used for navigation menus only  - id = navmenu */

#navmenu, #navmenu ul {
	float: left;
	width: 770px;
	list-style: none;
	background: #FFFFCC;   /*light yellow*/
	padding: 0;
	margin: 0;
	color: #000000;
	height: 1.5em;
	border-right: 1 solid #666600;
}

#navmenu a {
	display: block;
	width: auto;
	font: bold small-caps .85em Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	text-decoration: none;
	padding: 2px 6px;
	margin-right: 5px;
	margin-left: 5px;
}
#navmenu li {
	float: left;
	padding: 0;
	width: auto;
	line-height: 1.5em;
	border-right: 1px solid #666600;
	list-style: url(none) none;
	height: auto;
	overflow: hidden;
}

#navmenu li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 170px;
	font-weight: normal;
	border-width: 2px;
	margin: 0;
	color: #000;	/* black */
	background: #FFFF99;	/* medium yellow */
	border-right: 1px solid #666600;	
}

#navmenu li li {
	/*padding-right: 1px;*/
	width: 170px;
}

#navmenu li ul a {
	width: 170px;
	color: #000;	/* black */
}

#navmenu li ul ul {
	margin: -1.70px 0 0 170px;
}

#navmenu li:hover ul ul, #navmenu li:hover ul ul ul, #navmenu li.iehover ul ul, #navmenu li.iehover ul ul ul {
	left: -999px;
}

#navmenu li:hover ul, #navmenu li li:hover ul, #navmenu li li li:hover ul, #navmenu li.iehover ul, #navmenu li li.iehover ul, #navmenu li li li.iehover ul {
	left: auto;
}

#navmenu li:hover, #navmenu li.iehover {
	background: #CCFFCC;	/* light green */
}

/* End of Navigation CSS */

/*Each page is contained by a wrapper. This sets maximum page width */
#wrapper {
	border: 1px solid #990066;
	width: 770px;
	color: #000000;
	margin: 0px auto 10px;
	background: #FFFFFF;
}

/*Three major sections of each page - Header, Content and Footer */
/* 1. Header contains site title and navigation menu. Same for all pages */
#header {
	text-align: center;
	margin: 0px auto 0px;
	height: auto;
	background: #009900 center;
	width: auto;
}

/*2. Content serves as container for all page content - can be subdivided within 780px width  */
#content {
	/*padding: 2px;*/
	width: auto;
	background: #FFFFFF center;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0.5em;


}
/*3. Footer is the bottom portion of the page. Same for all pages*/
#footer {
	clear: both;
	border-top: thin solid #009900;
	width: auto;
	background: #FFFFFF;
	padding-top: 0.5em;
	padding-bottom: 1.2em;
}
#footer p {
	font-size: 0.8em;
	font-style: italic;
	text-align: center;
	background: center center;
	line-height: 1.6em;
}

/* End of Standard sections*/

/* Contains lead picture on a page - allows caption and other text below picture - width 360px  - floats left */
.featured_picture_container {
	float:left;
	width:358px;
	clear: left;
	border: thin solid #009900;
	background: url(LG_images/shared_objects/yellow_fade.gif);
}
.featured_picture_container p {
	padding-left: 5px;
	padding-right: 2px;
	margin: 0px;	
}
/* Lead picture on a page - has border around the picture - largest picture size - width 350px  - floats left */
.featured_picture {
	border:4px groove #009900;
	padding:0;
	text-align: left;
	width:350px;
	float:left;
	margin-bottom: .5em;
}

/* Large standard size picture - has single pixel border - width 350px - floats left */
.picture	{
	padding:0;
	text-align: left;
	float:left;
	border: 1px solid #009900;
	margin: 0px;
	background: #009900;
}
/* Large standard size picture - no border - width 350px - floats left */
.picture_left	{
	padding:0;
	text-align: left;
	background: #FFFFCC;
	float:left;
	margin: 0px 5px 0px 0px;
}
/* Large standard size picture - no border - width 350px - floats right */
.picture_right	{
	padding:0;
	text-align: left;
	background: #FFFFCC;
	float:right;
	margin: 0px 3px 0px 3px;
}
.caption p	{
	font-size: 0.7em;
	font-weight: bold;
	background: #FFFFCC;
	margin: 0px;
	padding: 0px 0px 2px;
	line-height: 1.1em;
	text-align: center;
}
.picture_popup { 
	float:left;
	width:350px;
	height:350px;
	color:#000;
	background:#FFFFFF;
	border: medium outset #009900;
	margin-bottom: 1em;
    }
/* Paired with Featured picture - floats left - width 360px */
.left_text   {
	float: left;
	width: 360px;
	clear: left;
	padding-left: 3px;
	background: url(LG_images/shared_objects/yellow_fade.gif);
}
/* Paired with Featured picture - floats right - width 375px */
.featured_text   {
	float: right;
	width: 375px;
	clear:right;
	padding-right: 3px;
}

						/* Photo Gallery */
/* The containing block for the photo gallery. */
#container {
	overflow: hidden;
	position:relative;
	width:650px;
	height:auto;
	margin:5px 0px 0;
	text-align:center;
	background:  url(LG_images/shared_objects/Linnaeus_placeholder.gif) no-repeat;
    }
/* Removing the list bullets and indentation from thumbs list*/  
#container ul {
    margin:5px; 
	padding:0;
    float:right;
	width:200px; 
    height:400px; 
    list-style-type:none; 
    }
#container li {
    float:left;
    }		
.gallery		{
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
}	
.gallery p	{
	padding-right: 2px;
	padding-left: 2px;
}	
/* Remove the full size images and text from sight */ 
#container a.gallery span {
    position:absolute; 
    width:1px; 
    height:1px; 
    top:5px; 
    left:5px; 
    overflow:hidden; 
    background:#FFFFCC;
    }
/* Adding the thumbnail images */ 
#container a.gallery {
    display:block; 
    color:#000; 
    text-decoration:none; 
    border:1px solid #009000; 
    margin:1px 2px 1px 2px; 
    text-align:left; 
    cursor:default;
    }
/* change the thumbnail border color */
#container a.gallery:hover {
    border:1px solid #fff; 
    }
/* styling the :hover span - full size picture*/  
#container a.gallery:hover span { 
	position:absolute;
	width:350px;
	height:350px;
	color:#000;
	background:#FFFFFF;
	border: medium outset #009900;
    }
#container a.gallery:hover img { 
	background:#FFFFFF;
    border:1px solid #fff; 
    float:left; 
    margin-right:5px;
}
.photo_credits {
	font-size: .8em;
	font-style: italic;
	text-align: center;
	clear: both;
}
								/* End of Photo Gallery */
.article {
	clear: both;
	margin-bottom: 1.5em;
	border: thin none;
	padding-left: 4px;
	height: auto;
}				

.article p {
	padding-right: 5px;
	padding-left: 5px;
}
.article ul li {
	/*Applies to unordered (not numbered) list items*/
	font-size:1em;
	line-height: 1.5em;
	background: left;
	text-align: left;
/*	list-style: disc inside;  */
	margin: 0px;
	padding: 0px 10px 0px 10px;
}
								/* For Monthly Meeting Notes - Same as article but able to add padding for dd */
.notes {
	clear: both;
	margin-bottom: 1.5em;
	border: thin none;
	padding-left: 4px;
	height: auto;
}	
	/* dd for monthly meeting notes; same as for gallery with bottom margin */
.notes dd {
	margin: 0 0 5px 0;
	padding:0;
	background: #FFFFCC;
	text-align:left;
	border-top: 1px dashed #000;
}

.popup_page {
	margin: 2px;
	padding: 2px;
	line-height: 1.3em;
	background: #fff;
}
.major_section {
	background: #FFFFFF;
	clear: both;
	width: 750px;
	border: medium groove #990066;
	margin: 0px;
	padding: 0px;
}
/* Special formatting used for Volunteer Brochure */
.volunteer_brochure {
	clear: both;
	margin-bottom: 2em;
	border: thin none;
	padding-left: 2px;
}
.volunteer_brochure h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
.volunteer_brochure p {
	padding-left: 2em;
}
.volunteer_brochure li {
	list-style: square;
}
/* End of Volunteer Brochure Formatting*/

							/* Left Column */
#left_col {
	background: #FFFFFF;
	height: auto;
	width: 255px;
	float: left;
	margin-top: 0em;
	margin-left: 3px;
	margin-bottom: 10px;
	border: thin none #990066;
}
							/* Right Column */
#right_col {
	background: #FFFFFF;
	float: right;
	height: auto;
	width: 490px;
	margin: 0em 1px 10px 3px;
	border: thin solid #990066;
}

					/* Table of Contents */
.table_of_contents {
	margin-bottom: 10px;
}
#gallery a {
  	text-decoration:none; 
  	display:block; 
  	padding:0.4em;
  	color:#000000;
}
#gallery a:visited {
	color:#000000;
}
#gallery a:hover {
  	background: #990066; 
  	color:#FFFFFF;
}
dd {
	margin:0;
	padding:0;
	background: #FFFFCC;
	text-align:left;
	border-top: 1px dashed #000;
}
dt {
	font: bold small-caps 1em/1em Verdana, Arial, Helvetica, sans-serif;
	background: #660033;
	padding:0.4em;
	text-align:center;
	color: #fff;
	text-transform: none;
}
.top {
  display:block; 
  background:#FFF;
  font-size:1px;
  }
.bottom {
  display:block; 
  background:#FFFFFF;
  font-size:1px; 
  border-top:1px dashed #000;
  }
.b1 {margin:0 5px; background:#FFCCFF;}
.b2 {margin:0 3px; border-width:0 2px;}
.b3 {margin:0 2px;}
.b4 {height:2px; margin:0 1px;}
.b1, .b2, .b3, .b4 {
display:block; 
/* hide overflow:hidden from IE5/Mac */ 
/* \*/ 
overflow: hidden; 
/* */ 
}
.b1, .b2, .b3 {height:1px;
}
.b2, .b3, .b4 {
  background:#660033;
  border-left:1px solid #660033; 
  border-right:1px solid #660033;
  }
  /* End of TOC */
  
  /* Start of Sponsor Class */
  
.sponsor ul {
	margin-bottom: 3em;
}  
.sponsor li {
	list-style: none;
	display: block;
	clear: both;
	margin-top: 5px;
	padding-top: 5px;
	height: 70px;
} 
.sponsor img {
	float: left;
	width: 105px;
	clear: left;
}
.sponsor p {
	list-style: none;
	width: auto;
	clear: right;
	margin-left: 115px;
	margin-right: 10px;
	font-size: 1em;
}
 /* End of Sponsor Class */

.calendar table {
	border: 2px ridge #CCFFCC;
	margin-bottom: 3px;
	width: 700px;
} 

.calendar th, .calendar td {
	text-align: left;
	border: 1px ridge #CCFFCC;
	padding: 2px;
}
.calendar th {
	background: #CCFFCC;
}
.calendar td {
	background: #FFFFCC;
}
hr {
	color: #009900;
	clear: both;
}
 
 /* Directory table */ 
.directory table {
	border: 2px ridge #CCFFCC;
	margin-bottom: 3px;
	width: 700px;
} 

.directory th, .directory td {
	text-align: center;
	border: 1px ridge #CCFFCC;
	padding: 2px;
}
.directory th {
	background: #CCFFCC;
}
.directory td {
	background: #FFFFCC;
}

/* box to draw attention to new items */
.attention {
	width: 200px;
	border: 3px solid black;
/*  background-color: #a7cece; */       /* light blue */
/*	background-color: #dd0033; */       /* bright pink */
	background: #FFFF99;	/* medium yellow */
	padding: 25px;
	margin: 10px; font-style:normal;
	font-variant:normal;
	font-weight:bold;
	line-height:1.1666em;
	font-size:1.2857em;
	font-family:Georgia, Times New Roman, Times, serif;
}