@charset "utf-8";

/*********************************************************************************/
/* Colors in use                                                                 */
/*                                                                               */
/*  #2e581e Darker Green (nav bar background)                                    */
/*  #5f5f3f Very Dark Olive (type)                                                */
/*  #858559 Dark Olive (sidebar background)                                       */ 
/*  #cccc9d Olive (background gradient match                                      */
/*  #cccc98 Light Olive (type)                                                    */
/*  #FFCD05 Gold                                                                */
/*  #ffffff White (banner/content backgrounds)                                   */
/*  #5a7b4e                                                                             */
/*                                                                               */
/*                                                                               */
/*                                                                               */
/*                                                                               */
/*********************************************************************************/
/*********************************************************************************/
/* clear out margins to start */
/********************************************************************************/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, pre, blockquote, form, fieldset, dl, dt, dd {
margin: 0;
padding: 0;
border: 0;
}

ul, ol, p, h1, h2, h3, h4, h5, h6, pre, blockquote, address, dl {
margin: 1em 0;
padding: 0;
}

html{
	/* background: url(../images/wisecatbodybg.jpg) repeat; */
	background: #9baf93 url(../images/holly-left.gif) repeat-y top left; 
	background-color: #9baf93; 
	overflow-y: scroll;
}

body  {
	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 */
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(../images/holly-right.gif) repeat-y top right;
	color: #5f5f3f;
	min-height: 770px;
	min-width: 970px;
}

/************** header tag styles **************/
blockquote {
	padding: .5em 2em .5em 2em;
}

p {
	margin-bottom: 5px;
	font-size: 80%;
}

h1{
	margin: 0px;
	padding: 5px 0 2em 0;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 120%;
	font-weight:900;
}

h2{
 margin: 0px;
 padding:5px 0 1em 0;
 font-size: 110%;
 font-weight: lighter;
}

h3{
	margin: 0px;
	padding: 10px;
	font-size: 100%;
}

h4{
  margin: 0px;
 padding: 0px;
 font-size: 90%;
}

h5{
  margin: 0px;
 padding: 0px;
}

h6{
  margin: 0px;
 padding: 0px;
}

a {
	text-decoration: none;
	color: #835abc;
} 

.twoColHybRtHdr #container {
	width: 85%;  /* this will create a container 90% of the browser width */
	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. */
} 
.twoColHybRtHdr #header {
	height: 145px; /* this is the height of the header background graphic plus margin*/
	position: relative;
	margin-bottom: 10px;
	margin-right: 0;
	
} 
.twoColHybRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display:none;
}

.twoColHybRtHdr #logo {
	margin-bottom: 10px;
	background: #2e581e url(../images/holly-header.gif) no-repeat; 
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybRtHdr #sidebar1 p" rule.
*/
.twoColHybRtHdr #sidebar1 {
	float: right;
	width: 15em; /* since this element is floated, a width must be given */
	padding: 0 0 1em;
	background-color: #2e581e; /* the background color will be displayed for the length of the content in the column, but no further */
	color: #ffffff;
	margin-bottom: 1em;
}
.twoColHybRtHdr #sidebar1 div {
	padding-bottom: 1em;
	margin-bottom: 10px;
}

.twoColHybRtHdr #sidebar1 h2 {
	border-bottom: medium dotted #FFCD05;
	padding-left: 1.6em;
	padding-right: 1.6em;
	text-transform: lowercase;
	letter-spacing: 0.2em;
}

.twoColHybRtHdr #sidebar1 p, .twoColHybRtHdr #sidebar1 h3,.twoColHybRtHdr #sidebar1 ul {
	padding-left: 1.6em;
	padding-right: 1.6em;
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

.twoColHybRtHdr #mainContent {
	padding: 0 0 1em;
	background: #FFFFFF url(../images/wy-25g.gif) no-repeat;
	margin: 0 0em 1em 0;
} 

.twoColHybRtHdr #mainContent h2 {
	font-weight: 600;
	letter-spacing: 0.2em;
	font-variant: normal;
	border-bottom: medium dotted #FFCD05;
	padding-left: 1.6em;
	padding-right: 1.6em;
	text-transform: lowercase;
}

.twoColHybRtHdr #mainContent p {
	font-size: 110%;
	padding-left: 1.6em;
	padding-right: 1.6em;
}

.quote {
	font-style:italic;
	text-align: center;
}

.twoColHybRtHdr #mainContent h3, .twoColHybRtHdr #mainContent h4, .twoColHybRtHdr #mainContent ul {
	padding-left: 1.6em;
	padding-right: 1.6em;
}

.twoColHybRtHdr #footer {
	padding: 0.5em 1.6em 55px 1.6em;
	color: #ffffff;
	margin-bottom: 1em;
	margin-right: 0;
	background: #2e581e url(../images/footertext.gif) no-repeat left bottom;
}
 
.twoColHybRtHdr #footer p {
	margin: 0;  /*zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	color: #ffffff;
}


/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

.leftfloatimage {
float: left;
margin: 3px 10px 3px 0;
}

.rightfloatimage {
float: right;
margin: 3px 0 3px 10px;
}

.imagemarg{
	margin: 3px;
}

.imagecenter{
	text-align:center;
}

.img-wrapper {
background:url(../images/shadow.gif) no-repeat bottom right;
margin:8px 3px 3px 8px;
clear: right;
float: left;
position: relative;
}


.img-wrapper img {
margin: -5px 5px 5px -5px;
display:block;
position:relative;
}

/******* hyperlink and anchor tag styles *******/

/* mainnav id */

/* Padding for button look:  padding: ID has the top & bottom, 0 sides, ID UL has 0 padding; ID UL LI has the same as ID; ID UL LI a has same top & bottom plus side padding */

#mainnav {
	background-color: #2e581e; 
	height: 2em;
}


#mainnav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;
	position: absolute;
	left: .5em;
	bottom: 0px;
}

#mainnav li {
	float: left;
}

#mainnav li a {
	/*  background-color: #cc9a67; */
	/* background-color: #cc7106; */
	/* background-color: #4c9332; */
	background-color: #5a7b4e;
	padding: .2em .5em;
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	line-height: 1.2em;
	margin-right: 0.5em;
	text-transform: lowercase;
}
body#homepage li#home a, body#picturespage li#pictures a, body#historypage li#history a, body#partpage li#part a, body#resourcespage li#resources a, body#contactpage li#contact a {
color: #ffffff;
background-color:#FFCD05;
cursor: default;
}

#mainnav ul li a:link {
color:#ffffff; 
}

#mainnav ul li a:visited {
	color:#cccc98;
}

#mainnav ul li a:hover, #mainnav ul li a:focus, #mainnav ul li a:active {
color: #ffffff;
background-color: #FFCD05;
}


/* end mainnav */

#homepage #mainContent p {
	font-size: 90%;
}
.logoimage {
	border-style: none;
}

a img{
	border: thick dotted #FFCD05;
	text-decoration: none;
}

div.bigbutton {
	margin: 40px 40px 40px 70px;
}

div.bigbutton a  {
	padding: 20px 10px;
	background-color: #5a7b4e;
	color:#cccc98;
	cursor: default;
	font-weight:bold;
	border-right: 2px solid #2e581e;
	border-bottom: 2px solid #2e581e;
}

div.bigbutton a:hover, div.bigbutton a:focus, div.bigbutton a:active {
	background-color:#ffcd05;
	border-right: 1px solid #2e581e;
	border-bottom: 1px solid #2e581e;
	color: #ffffff;
}

