@charset "UTF-8";
body  {
	font: 95%  "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height:1.35em;
	background-image:url(images/bkgnd_stars.gif);
	background-repeat:repeat;
	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;
}
/*hr {
	display:none;
	visibility:hidden;
	clear:both;
}*/

.letter {
	font-family:Georgia, "Times New Roman", Times, serif;
	margin-left: 2.5em;
	margin-right: 2.5em;
	line-height:1.75em;
}
.handwriting {
	font-family:cursive;
	font-size:2em;
	margin-left: 2em;
	line-height:2.5em;	
}

.twoColFixLtHdr #container { 
	width: 780px;  /* 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; */
	background-image:url(images/container_bkgnd.png);
background-repeat:repeat-y;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/*-----------------------------------*/
/* Header Styling                    */
/*-----------------------------------*/
.twoColFixLtHdr #header {  
	padding: 25px 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. */
	margin-left:13px;
	margin-right:13px;
	background-color:#3366cc;
	/*  background-image:url(images/banner.png); */
	background-image:url(images/headerborder.png);
	background-position:top;
	/*background-repeat:repeat-none;*/
	background-repeat:repeat-x; 
	color:#fff;
} 
.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 #header p {
	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 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:Georgia, "Times New Roman", Times, serif;
}
#header a, a:visited {
	color:#fff;
	text-decoration:none;
}
#header a:hover {
	color:#FF0;	
	text-decoration:underline;
}
#header .headernav {
	text-align:center;	
}


/*-----------------------------------*/
/* Sidebar Navigation styling        */
/*-----------------------------------*/
.twoColFixLtHdr #sidebar1 {
	float: left; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	margin-left:13px;
	/*font-family:Verdana, Geneva, sans-serif; */
}
.twoColFixLtHdr #sidebar1 p {
	/* Non-navigation text blocks in sidebar */
	font-family:Verdana, Geneva, sans-serif;
	font-size: 85%; 
	font-weight:normal;
	padding: 0 15px 0 15px;
	color:#060;
}
.sidebarcopy {
	margin:0;
	padding:0.25em 1.5em 0.25em 2em;
}
.navgap {
	font-size:25%;
	margin:0;
	padding-top:3px;
}
/* Nav Menu Section Boxes */
.box {
	width:200px;
	background:url(images/box_bottom.gif) no-repeat bottom left;
}
.box h3 {
	background:url(images/box_top.gif) no-repeat top left;	
	margin:0;
	padding: 6px 8px 4px 10px;
	font-size: 100%;
	color:#333;
	border-bottom: 1px solid #E0CFAB;
	text-align:center;
}
.box ul {
	margin:0;
	padding: 14px 10px 14px 10px;
	list-style: none;
}
.box ul li {
	margin: 0 0 9px;
	padding:0;
	font-size:90%;
	font-weight:bolder;
	line-height:1.1em;
}
.box ul ul {
	margin:0;
	padding: 4px 10px 4px 10px;
	list-style: none;
}
.box ul ul li {
	margin: 0 0 9px;
	padding:0;
	font-size:80%;
	font-weight:bold;
	line-height:1em;
}
.box a {
	text-decoration:none;
	color:#36c;
}
.box a:hover {
	text-decoration:underline;	
	color:#396;
}
.box a:visited {
	color:#639;	
}
.box .newitem {
	color:#c33;	
}

/*-----------------------------------*/
/* Main Content Page Section Styling */
/*-----------------------------------*/
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 245px; /* 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: 0 20px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent p {
	padding: 0 20px;
}
.twoColFixLtHdr #mainContent h1 { 	
	padding-top:0.5em;
	font-size:200%;
	color:#c33;
	line-height:100%;
}
.twoColFixLtHdr #mainContent h2 {
	font-size:165%;
	color:#396;
	line-height:1.0;
	margin-top:15px;	
	margin-bottom:2px;
}
.twoColFixLtHdr #mainContent h3 { 
	font-size:145%;
	color:#396;
	line-height:1.0;
}
.twoColFixLtHdr #mainContent h4 { 
	font-size:125%;
	color:#f60;
	line-height:1.0;
}
.twoColFixLtHdr #mainContent h5 { /*Product titles */
	font-size:135%;
	line-height:1.0;
	margin:0;
	padding:0;
	padding-bottom: 5px;
	padding-top:20px;
}
.twoColFixLtHdr #mainContent blockquote {
	font-size:100%;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#333;
	line-height:1.35;
	padding-right:1em;	
}
#mainContent ul {
	padding: 0 20px 0 50px;
}
.twoColFixLtHdr #mainContent ul ul li{
	font-size:100%;
	font-style:oblique;
	padding-top:4px;
}
.twoColFixLtHdr #mainContent ul li{
	font-size:100%;
	padding-top:0.5em;
}
#mainContent a {
	text-decoration:none;
	color:#36c;
}
#mainContent a:hover {
	text-decoration:underline;	
	color:#396;
}
#mainContent a:visited {
	color:#639;
		
}
.orangetype {
	color:#f60;
	font-weight:bold;
}
.redtype {
	color:#C00;
	font-weight:bold;
}
.subtitle {
	font-size:80%;
}

.twoColFixLtHdr #footer {
	clear:both; /* Ensures that footer won't go higher than the nav menu section */
	padding: 45px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it.*/
	background:#3366cc; 
	color:#ffffff;
	margin-left:13px;
	margin-right:13px;
	text-align:center;
	background-image:url(images/foot_top.png);
	background-position:top;
	background-repeat:no-repeat;
} 
.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 */
}
.twoColFixLtHdr #footer a {
	color:#ffffff;
}
.twoColFixLtHdr #footer a:hover {
	color:#f8e618;
}

.twoColFixLtHdr #footer #footface {
	width: 25%;
	float:right;	
}
.twoColFixLtHdr #footer #footlinks {
	width: 75%;
	float:left;	
}

.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;
}
.clearfloatexp { /* 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. Also set to be invisible. */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	visibility:hidden;
}
.colorblock {
	margin:0; 
	display:block;
	background:#DEF6DE;
	margin-left:6px;
	margin-right:1em;
	padding-top:1em;
	padding-bottom: 1.5em;
	padding-right: 1em;
	padding-left: 1em;
	font-size:95%;
}
.colorblock img {	
	display:inline;
}
#calendar {
	margin:0;
	padding:0;
	font-size:110%;
	padding-left:15%;
}
#calendar dt {
	font-size:125%;	
	font-weight:bold;
	color:#f60;
	padding-top:10px;
	padding-bottom:5px;
}
.twoColFixLtHdr #mainContent .itemsummary {
	/* layout for item description on group pages */
	float:left;
	width: 95%;
	margin-left:5%;
	margin-bottom:0;
}
.twoColFixLtHdr #mainContent .itemexpsummary {
	/* layout for item description on product detail*/
	float:left;
	width: 95%;
	margin-left:5%;
	margin-bottom:0;
}
.twoColFixLtHdr #mainContent .agedivision {
	/* layout for item groupings by age on storytelling pages */
	/* Should be applied as a class to a div containing an h2 		item separating age grouped items*/
	float:left;
	width: 95%;
	margin-left:0;
	margin-bottom:0;
	background-image:url(images/line_divider.png);
	background-position:top left;
	background-repeat:repeat-x;
	display:block;
	padding: 25px 0 0 5px;
	font-size:95%;
}
.twoColFixLtHdr #mainContent .agegrouptabs {
	/* horizontal tab menu for age groups */
	width:100%;
	margin:0;
	padding: 10px 0 0 56px;
	list-style:none;
}
.twoColFixLtHdr #mainContent .agegrouptabs li{
	float:left;
	margin:0;
	padding:0;
	font-size:85%;
}
.twoColFixLtHdr #mainContent .agegrouptabs a {
	float:left;
	display:block;
	margin:0 1px 0 0;
	padding: 6px 12px;
	color:#FFF;
	text-decoration:none;
	border: 1px solid #999;
	
}	
.twoColFixLtHdr #mainContent .agegrouptabs a:hover {
	color:#F4D579;
	text-decoration:underline;	
}	
/* Set background colors for age group buttons */
.t3up { background:#399; }
.t5up { background:#c00; }
.t7up { background:#36c; }
.t12up { background:#906; }

.itembreak hr{
	clear:both;
}
.itemspecs {
	margin:0;
	padding:0;
}
.itemexpspecs {
	margin:0;
	padding:0;
}
.itemdisplay {
	display:block;
	float:left;
	width:25%;
	text-align:right;
}
.itemexpdisplay {
	display:block;
	float:left;
	text-align:right;
	padding-right: 15px;
}
#mainContent .itemdisplay p {
	font-size:80%;
	text-align:right;
	margin:0;
	margin-top:5px;
	padding:0;
}
#mainContent  .itemdetail {
	padding:0;
	margin:0;
	margin-left:25%;
}
#mainContent  .itemexpdetail {
	padding:0;
	margin:0;
	margin-left:55%;
}
.subcopy {
	
	font-size:90%;
	font-style:oblique;
}
.subcopy li {
	color:#333;
}
.twoColFixLtHdr #mainContent .age3title {
	color:#399;
}
.twoColFixLtHdr #mainContent .age5title {
	color:#C00;

}
.twoColFixLtHdr #mainContent .age7title {
	color:#36C;
}
.twoColFixLtHdr #mainContent .age12title {
	color:#906;
}

.twoColFixLtHdr #mainContent table tr td h2 {
	color:#399;
	margin-top:8px;
	font-size:110%;
}
.twoColFixLtHdr #mainContent .age5title {
	color:#C00;

}
.twoColFixLtHdr #mainContent .age7title {
	color:#36C;
}
.twoColFixLtHdr #mainContent .age12title {
	color:#906;
}

/*.twoColFixLtHdr #mainContent h2 {
	margin-top:25px;
	margin-bottom:15px;
}*/
.twoColFixLtHdr #mainContent hr {
	clear:both;	
}
.backtostorytelling {
	font-weight:bold;
	font-style:italic;
	font-size:75%;
}
.awardlist {
	font-size: 110%;
	font-style:oblique;
	font-weight:bold;
	color:#f60;
}
.itemquote {
	font-style: italic;	
	font-size:95%;
	color:#006;
}

.twoColFixLtHdr #mainContent  .rslinfo {
	margin-top:14px;
}
.twoColFixLtHdr #mainContent  .rslinfo p {
	margin:0.3em;
	line-height: 1em;
	font-size:85%;
}
.twoColFixLtHdr #mainContent .rslinfo .age3title {
	font-size: 100%;	
}
.twoColFixLtHdr #mainContent .rslinfo .age5title {
	font-size: 100%;	
}
.twoColFixLtHdr #mainContent .rslinfo .age7title {
	font-size: 100%;	
}
.twoColFixLtHdr #mainContent .rslinfo .age12title {
	font-size: 100%;	
}
.timelinestory {
	text-decoration:underline;
	color:#F00;
}
/* ------------------------------------------
Search results Styling
------------------------------------------ */

.searchtitle {
	font-size: 85%;
	color:#906;
	padding-bottom: 10px;
}
.searchresult {
	font-size: 85%;
	font-weight:bold;
}

/* ------------------------------------------
	Styles for Photo Album pages
------------------------------------------ */
.photo {
	border-width: 1px;
	border-color: #000;
	border-style: solid;
	padding: 8px;
}

/* ------------------------------------------
Notes
3/20/2009 - CSS page build
Background graphic for footer needs to be PNG to get color fidelity as well as transparency. Can change footer background by section if desired. 
------------------------------------------*/

.keytext {
	color: #666;
}

