@charset "UTF-8";
body  {
	font-size: .9em;
	/*background: #E5DDD3;*/
	background: #dddce0;
	background-repeat:repeat-x;
	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:Georgia, "Times New Roman", Times, serif;
}

a{
	color:#0B8434;
}

a:hover{
	color:#CC3300;
}


.imageborder{
	margin: 10px;
	padding: 3px;
	border: 1px solid #115629;
}

.imageright{
	margin: 0px 0px 10px 10px;
	padding: 3px;
	border: 1px solid #115629;
}

.imageleft{
	margin: 0px 01px 10px 0px;
	padding: 3px;
	border: 1px solid #115629;
	
}

.park-table{
	background-color: #C7D2E4;
	text-align:center;
	font-size: .9em;
	font-family:Arial, Helvetica, sans-serif;
	font-style:italic;
}
.park-table-header{
	color:#FFF;
	background-color:#004676;
	font-weight:bold;
}
.park-table-sidelabels{
	color: #FFF;
	background-color:#5278A2;
	font-weight:bold;
}
.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#FFFFFF url(images/main.bkgtile.gif);
	background-repeat:repeat-y;
	margin: 5px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#container h1{
	font-size:1.3em;
	
}
 
.twoColFixLtHdr #header { 
	background: #115629 url(images/hdr.image.jpg); 
	height: 177px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #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 */
	
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #EBEBEB; the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 15px;
	color:#FFFFFF;
	z-index:10;
}

.rightbox{
	float: right;
	width:auto; 
	margin: 0px 0px 3px 5px; 
	font-size: .8em; 
	font-family:'Times New Roman', Times, serif;
	
}

.leftbox{
	float: left;
	width:auto; 
	margin: 0px 8px 8px 0px; 
	font-size: .8em; 
	font-family:'Times New Roman', Times, serif;
	
}

.smalllead{
	line-height: 1.2em;
	padding:5px 0px 5px 0px;
}

#sidebar1 a{
	color: #FFFFFF;
}

#sidebar1 a:hover{
	color:#000;
}
.sidelink{
	color: #FFF;
}

.sidelink a{
	color: #FFF;
}

.sidelink a:hover{
	color:#FFFFCC;
	background-color:#FFF;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 5px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	margin: 0 0 0 180px;
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
	font-size: .7em;
	font-style:italic;
} 
.twoColFixLtHdr #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 */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

.makeMenu a, .makeMenu a:hover{
	text-decoration:none;
}

.smalltext{
	font-size:12px;
}

.dbheader{
	color:#FFF;
	background-color:#003300;
}

.dbdate{
	font-size:1.1em;
	color:#115629;
}

.datetext{
	font-size:.9em;
	color:#115629;
	
}

.monthbar{
	background-color:#005830;
	color:#FFF;
	padding-left: 15px;
}

.monthbarfront{
	background-color:#005830;
	color:#FFF;
	display: block;
	font-size: 16px;
	padding: 2px;
}



/*Styles for menu hover thingy */
ul.makeMenu, ul.makeMenu ul {
  width: 165px;                 /* sets the size of the menu blocks */
 /* border: 1px solid #000;      /* puts a black border around the menu blocks */
  background-color: #115629;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  line-height: 2em;
  
}

ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
  /*padding-left:5px;*/
  
  
   
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 164px; 
                   /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
	/*border:1px solid #990000;*/
	top:-20px;
	
	
}

ul.makeMenu li > ul li{
	line-height: 2em;
	border: 1px dotted #FFFFFF;
	padding-left: 10px;

	
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #00cc00;      /* gives the active menu items a yellow background */
 /* border-bottom: 1px dotted #115629;
  border-right: 1px dotted #115629;
  border-top: 1px dotted #115629;*/
  color: #000;                 /* makes the active menu item text black */ 
  
  
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
  
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
  line-height:1.2em;
  /*font-size:.8em;*/
  padding:0px;
  
}
/* and some link styles */
ul.makeMenu li a { color: #000; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }
ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */.rightlogo {
	margin: 5px;
	float: right;
}

#fall {
background: #fde4c7;
padding: 10px;
border: 1px solid #be5337;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin: 0 0 20px 0;}


#fall img {float:left;
margin: 5px 10px 0 0;}
