@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #aba;
	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;
	
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 52em;  /* this width will create a container that will fit in an 900px browser window if text is left at browser default font sizes */
	background:#445566 url("images/buttons/corners_cap_top_832.gif") no-repeat left top;
	margin: 1em auto;
	text-align: left;
	padding-top: 2px;
	padding-bottom: 2px;
} 

.oneColElsCtrHdr #header {
	background: #445566;
} 
.oneColElsCtrHdr #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 */
}

.oneColElsCtrHdr #menubar {
	width: 52em;  /* this width will create a container that will fit in an 900px browser window if text is left at browser default font sizes */
	margin: 1em auto;
	
}
.oneColElsCtrHdr #container2 {
	width: 52em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background:#ffffff url("images/buttons/corners_wh_top_832.gif") no-repeat left top;
	margin: 1em auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
} 
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
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 ".oneColElsCtrHdr #sidebar1 p" rule.
*/
.oneColElsCtrHdr #sidebar1 {
	float: left;
	width: 10em; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 15px 0; /* top and bottom padding create visual space within this div */
}
.oneColElsCtrHdr #sidebar1 h3, .oneColElsCtrHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.oneColElsCtrHdr #sidebar2 {
	float: right;
	width: 10em; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px; /* top and bottom padding create visual space within this div */
}
.oneColElsCtrHdr #sidebar3 {
	float: right;
	width: 15em; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 15px 10px; /* top and bottom padding create visual space within this div */
}
.oneColElsCtrHdr #sidebar2 h3, .oneColElsCtrHdr #sidebar2 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.oneColElsCtrHdr #mainContent {
	margin: 0 1em 0 1em;
} 
.oneColElsCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background:url("images/buttons/corners_wh_bot_832.gif") no-repeat left bottom;
} 
.oneColElsCtrHdr #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 */
}

/* 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;
}
.smaller {font-size:smaller
}
.oneColElsCtrHdr #container #header #top {
	background-color: #FFFFFF;
	max-height: 112px;
	margin: 10px 5px 10px 5px;
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif
}
.oneColElsCtrHdr #container2 #mainContent #blog {
	margin-left: 1.5em;
	border-left:3px #999999 dotted;
	padding-left: 1.5em;
	clear:both;
}
.oneColElsCtrHdr #container2 #footer #links {
	border-bottom: 0px solid #000000;

}

.oneColElsCtrHdr #container2 #footer #links a{
	font-size: 70%;
	text-decoration: none;
	font-weight: bold;
}

.oneColElsCtrHdr #container2 #footer #links a:visited{
	font-size: 70%;
	text-decoration: none;
	font-weight: bold;
}
.oneColElsCtrHdr #container2 #footer #links a:hover, #links a:focus{
	background-color: #FFFF66;
	text-decoration: underline;
	color: #000000;
}
.oneColElsCtrHdr #container2 #footer #links ul{
	padding: 0 0 0 0;
	margin: 0;

}
.oneColElsCtrHdr #container2 #footer #links ul li{
display: inline;
padding: 0;
margin: 0;
}
.oneColElsCtrHdr #container2 #footer #links ul li a{
	padding: 0px 5px 0px 5px;
	border-right: 1px solid #000000;
	text-align: center;
	
} 
.oneColElsCtrHdr #container2 #footer #links ul li a:hover, #links ul li a:focus{
	background-color: #FFFF66;
	text-decoration: underline;
	color: #000000;
}
.oneColElsCtrHdr #menubar #catalog {
	text-align: right;
}
.oneColElsCtrHdr #menubar #catalog #MenuBar1 {
	position: relative;
	float: left;
}
.oneColElsCtrHdr #menubar #catalog .searchwords {
	font-size: x-small;
	text-decoration: none;
}
.oneColElsCtrHdr #container #header #top #heading {
	font-size: x-large;
}
.oneColElsCtrHdr #container #header #top #hours {
	font-size: smaller;
		
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav{
	background:url("/images/buttons/corners_wh_top_160.gif") no-repeat left top;
	background-color: #00628B;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav{
	background:url("/images/buttons/corners_wh_top_160.gif") no-repeat left top;
	background-color: #b74270;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav{
	background:url("/images/buttons/corners_wh_top_160.gif") no-repeat left top;
	background-color: #660066;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav{
	background:url("/images/buttons/corners_wh_top_160.gif") no-repeat left top;
	background-color: #9c7c38;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

.oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav #adult_navend, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav #kids_navend, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav #ya_navend, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav #award_navend{
	background:url("/images/buttons/corners_wh_bot_160.gif") no-repeat left bottom;
}

.oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav ul, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav ul, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav ul, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav ul{
	padding: 0 0 0 8px;
	margin: 0;
	padding-top: 3px;
}

.oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav ul li, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav ul li, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav ul li, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav ul li{

	list-style-type: none;
	
	
}
.oneColElsCtrHdr #container2 #mainContent #sidebar3 #side_calendar a:hover, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav li a:hover, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav li a:hover, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav li a:hover, .oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav li a:hover{
	text-decoration: underline;
	background-color: #FFFF66;
	color: #000000;	
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #adult_nav ul li a{
text-decoration: none;
	color: #FFFFFF;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav{
	color: #FFFFCC;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #kids_nav ul li a{
text-decoration: none;
	color: #FFFFFF;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav{
	color: #FFFFCC;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #ya_nav ul li a{
text-decoration: none;
	color: #FFFFFF;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar1 #award_nav ul li a{
text-decoration: none;
	color: #FFFFFF;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar2 #kids_nav{
	background:url("/images/buttons/corners_wh_top_160.gif") no-repeat left top;
	background-color: #CCCCCC;
	font-size:smaller;
	padding:2px 2px 2px 2px;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar2 #kids_nav #kids_navend{
	background:url("/images/buttons/corners_wh_bot_160.gif") no-repeat left bottom;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar3 #side_calendar{
	background:url("/images/buttons/corners_wh_top_240.gif") no-repeat left top;
	background-color: #00628B;
	font-size:smaller;
	padding:2px 2px 2px 2px;
}
.oneColElsCtrHdr #container2 #mainContent #side_calendar{
	background:url("/images/buttons/corners_wh_top_510.gif") no-repeat left top;
	background-color: #00628B;
	font-size:smaller;
	padding:2px 2px 2px 2px;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar3 #side_calendar, .oneColElsCtrHdr #container2 #mainContent #side_calendar a{
text-decoration: none;
	color: #FFFFFF;
}
.oneColElsCtrHdr #container2 #mainContent #sidebar3 #side_calendar #side_calendar_end{
	background:url("/images/buttons/corners_wh_bot_240.gif") no-repeat left bottom;
}
.oneColElsCtrHdr #container2 #mainContent #side_calendar #side_calendar_end{
	background:url("/images/buttons/corners_wh_bot_510.gif") no-repeat left bottom;
}
.oneColElsCtrHdr #container2 #mainContent #bookinfo {
	float:left;
	width: 250px;
	margin-top: 90px;
	text-align: center;
	font-size:smaller;
	margin-left: 15px;
}
.oneColElsCtrHdr #container2 #mainContent #imageinfo {
	float:left;
	width: 400px;
	margin-top: 40px;
}
#sidebar {
	width:305px;
	margin-top: 0;
	margin-left: 20px;
	float: right;
	
}

#sidebar_brace {
	float: right;
	width:300px;
	height:260px;
	margin: 20px 0px 20px 20px;
	display: inline;
}
.oneColElsCtrHdr #container2 #mainContent #videos {
	border-collapse:collapse;
	width:90%;
	margin: 0;
	color: #00a0af;
}

#news_archive {
	border-collapse:collapse;
	margin: 0;
	color: #00a0af;
	font-size: smaller;
}

#news_archive tbody, .oneColElsCtrHdr #container2 #mainContent #videos tbody { 
	margin: 0; 
}

#news_archive th, .oneColElsCtrHdr #container2 #mainContent #videos th {
	background-color: #ffffff;
	padding: 6px 0.25em;
	color: #000000;
	margin: 0;
	border-bottom: solid 1px #c2e8ee;
	cursor: pointer;
}

#news_archive td, #news_archive th, .oneColElsCtrHdr #container2 #mainContent #videos td, .oneColElsCtrHdr #container2 #mainContent #videos th { 
	margin: 0; 
	padding: .75em 0.375em .75em 0.375em;
	text-align: left;
}
	
#news_archive tr.titlerow, .oneColElsCtrHdr #container2 #mainContent #videos tr.titlerow { 
background: none; 
}

#news_archive tr td.booktitleTD, .oneColElsCtrHdr #container2 #mainContent #videos tr td.booktitleTD {
    background-color: #f0f9fb;
	border-bottom: solid 1px #c2e8ee;
	cursor: pointer;
}

#news_archive tr td.bookauthorTD, .oneColElsCtrHdr #container2 #mainContent #videos tr td.bookauthorTD {
    background-color: #f0f9fb;
	border-bottom: solid 1px #c2e8ee;
	cursor: pointer;
}

#news_archive tr td.videodateTD, .oneColElsCtrHdr #container2 #mainContent #videos tr td.videodateTD {
    background-color: #f0f9fb;
	border-bottom: solid 1px #c2e8ee;
	cursor: pointer;
}
#news_archive tr.rowSelected td.videodateTD, .oneColElsCtrHdr #container2 #mainContent #videos tr.rowSelected td.booktitleTD {
    background-color: #d0eef4;
	border-bottom: solid 1px #c2e8ee;

}

#news_archive tr.rowSelected td.bookauthorTD, .oneColElsCtrHdr #container2 #mainContent #videos tr.rowSelected td.bookauthorTD {
    background-color: #d0eef4;
	border-bottom: solid 1px #c2e8ee;

}

#news_archive tr.rowSelected td.videodateTD, .oneColElsCtrHdr #container2 #mainContent #videos tr.rowSelected td.videodateTD {
    background-color: #d0eef4;
	border-bottom: solid 1px #c2e8ee;

}
#news_archive .rowHover, .oneColElsCtrHdr #container2 #mainContent #videos .rowHover {
	color: #000;
	cursor: pointer;
}
.oneColElsCtrHdr #container2 #mainContent #prelitcontents {
	position: static;
	margin-left: 175px;
}
.oneColElsCtrHdr #container2 #mainContent #prelitcontents ul {
	list-style-type: none;
}
.oneColElsCtrHdr #container2 #mainContent #prelitcontents ul ul {
	list-style-type: disc;
}
.oneColElsCtrHdr #container2 #mainContent #prelitcontents ul ul ul{
	list-style-type: none;
}
.cPanel_left {
	float: left;
	width: 400px;
}
.cPanel_right {
	float: right;
	width: 375px;
}

.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	
	text-align: left;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	font: bold;
	border-bottom: solid 1px #CCC;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-align: center;
	text-decoration: underline;
	color: #0000FF;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px;
	
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EEE;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #CCC;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #3399FF;
}

