@charset "utf-8";
/* CSS Document */
html { overflow-y: scroll }
IMG {border:none;}
P{margin:2px; padding:2px;}
body  {
	font: 90%  Arial, Verdana, Helvetica, sans-serif;
	background: #666666;
	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;
}
.thrColFixHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin: 0 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. */
	
	background-image:url(../images/bg.jpg);
	background-repeat:repeat-y;
} 
.thrColFixHdr #container2 { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin: 0 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. */
	background-color:#FFFFFF;
	
} 
.thrColFixHdr #header { 
	background: #DDDDDD;
	width:960px; 
	padding: 0 0px 0 0px;  /* 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. */
} 
.thrColFixHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 149px; /* 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-color: #97ab93; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	margin-top: 0px;
	height:100%;
	
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #f0f0f0; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 5px 5px; /* padding keeps the content of the div away from the edges */
	
	margin-top: 0px;
}
.thrColFixHdr #mainContent {
	margin-top:0px;
	margin-bottom:0px;
	margin-right:215px;
	margin-left:155px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 
.thrColFixHdr #footer { 
	padding: 0 5px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#748f6f;
	border-top: 1px solid #000000;
} 
.thrColFixHdr #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 */
	font-size:80%;
	color:#CCCCCC;
}
.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;
}
 
#info {background:#f8f8f8; border:0;}
 

.menu {width:100%; height:32px; position:relative; z-index:100;border-right:0px solid #000; background-color:#546350; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:100%; w\idth:100%; }
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:149px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:138px; height:30px; border:1px solid #000; border-width:1px 0 1px 0px; border-right: 1px solid #cccccc; background:#546350; padding-left:10px; line-height:29px; font-weight:bold;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}
 
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#d4d8bd url(../images/grey-arrow.gif) no-repeat 130px center;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#c9ba65 url(../images/blue-arrow.gif) no-repeat 130px center;}
.menu ul ul :hover > a.drop {background:#c9ba65 url(../images/blue-arrow.gif) no-repeat 130px center;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#b2ab9b;}
 
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:31px;left:0; width:149px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}
 
/* position the third level flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}
 
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}
 
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#d4d8bd; color:#000; height:auto; line-height:1em; padding:5px 10px; width:128px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}
 
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#000; background:#b7d186;}
.menu :hover > a, .menu ul ul :hover > a {color:#000; background:#b7d186;}



 
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}


#navigation {
background-color:#97ab93;
vertical-align:top;
}
#navigation ul {
list-style: none;
margin: 0;
padding: 0;
}
#navigation li {
border-bottom: 0px solid #a9b9a5;
border-top: 1px solid #a9b9a5;
}
#navigation li a:link, #navigation li a:active, #navigation li a:visited {
font-size: 14px;
display: block;
padding: 0.4em 0 0.4em 0.5em;
border-left: 0px solid #CCCCCC;
border-right: 0px solid #711515;
background-color:#97ab93;
color: #333333;
text-decoration: none;
}

#navigation li a:hover {
background-color:#aebdab;
color: #000000;
}
#navigation ul ul {
margin-left: 6px;
background-color:#97ab93;

}
#navigation ul ul li {
border-top: 0px solid #a9b9a5;
margin:0;
}
#navigation ul ul a:link, #navigation ul ul a:visited {
background-color: #F0F0F0;
color: #333333;

}
#navigation ul ul a:hover {
background-color: #CCCCCC;
color: #333333;
}


/*active menu item highlight in top navigation */

body#home a#homenav,
body#mainLibraryServices a#mainLibraryServicesnav,
body#mainAboutYourLibrary a#mainAboutYourLibrarynav,
body#mainGoingOn2 a#mainGoingOnnav2,
body#mainSupportLibrary a#mainSupportLibrarynav,
body#mainWantTo a#mainWantTonav,
body#kids a#kidsnav,
body#teens a#teensnav,
body#dbOverview a#dbOverviewnav,
body#links a#linksnav{
color: #000000;
background: #b7d186;
}

#pageTitleBG{
background-image:url(../images/pgTitleBG.jpg);
background-repeat:no-repeat;
vertical-align:bottom;
}

H1{

margin-left:46px;
margin-right:0px;
margin-top:10px;
margin-bottom:10px;
padding:0px;
text-size:26px;
font-family:arial, verdana, sans-serif;


}

H2{

margin-left:0px;
margin-right:0px;
margin-top:10px;
margin-bottom:10px;
padding:0px;
text-size:22px;
font-family:arial, verdana, sans-serif;


}
H3{

margin-left:0px;
margin-right:0px;
margin-top:10px;
margin-bottom:10px;
padding:0px;
text-size:18px;
font-family:arial, verdana, sans-serif;


}
H4{

margin-left:0px;
margin-right:0px;
margin-top:10px;
margin-bottom:10px;
padding:0px;
text-size:14px;
font-family:arial, verdana, sans-serif;


}

#highlight{
border:1px solid #006666;
background-color:#99CC99;
font-weight:bold;
padding:10px;
}

#homeBox{
border:1px solid #006666;
background-color:#cfe0d0;
font-weight:bold;
padding:10px;
}


