@charset "utf-8";

.twoColElsRtHdr #container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	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. */
} 
.twoColElsRtHdr #header {
	padding: 0 10px;  /* 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. */

} 
.twoColElsRtHdr #header #pageNav ul {
	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 0 0;  using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* 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 ".twoColElsRtHdr #sidebar1 p" rule.
*/
.twoColElsRtHdr #sidebar1 {
	float: right;
	width: 12em; /* 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 */

}
.twoColElsRtHdr #sidebar1 h3, .twoColElsRtHdr #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;
}

/* 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.
*/
.twoColElsRtHdr #mainContent {
	margin: 0 13em 0 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
	padding: 1.5em;
	clear:left;
} 
.twoColElsRtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

} 
.twoColElsRtHdr #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 */
}
/* ************************************************************
	Color codes 
	#000000; black
	#ffffff; white
	#FF6633; orange
	#fc7; light orange
	#FFFF66; yellow
	#395C6F; blue
	#504; plum
	#807; bright plum
	#534; grey plum
	**********************************************************/
@font-face {
	font-family: Handscript;
	src:url("../fonts/Candbb__.ttf");
}
body  {
	color: #000000;
    background-color: LemonChiffon;
	font: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	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 */
}

/*Container styles*/
#container {
	color: #F0C400;
    background-color: #4E4D51;
} 

/*Header tag styles*/
#container #header {
    background-color: #0E7195;
	margin: 0px;
    padding-top: .5em;
}
#container #header h1 { /*sort of assuming only one h1 per page - thus no qualifiers on selector */
	font-family: "Tempus Sans ITC", "Goudy Old Style", Garamond, Charlesworth, Verdana, serif;
	/*font-family:Handscript, "Tempus Sans ITC", "Goudy Old Style", Garamond, Charlesworth, Verdana;*/
	padding-right: 105px;
/*		background:url(../images/clip-pp.png) bottom right no-repeat;*/
}
#container #header img {
	float: left;
	margin: 0 .75em .75em 0;
}
/*Style the quote section of header*/
#container #header #quotes {
	color:#000;
	background-color: #F0C400;
	border-top-right-radius: 2em;
	border-bottom-right-radius: 2em;
	margin: 1em 0 1em 10em;
	padding: 1em;
}
#container #header dt { /*the actual quote is marked as a dt*/
	color: #395C6F;
	font-family: "Tempus Sans ITC", "Goudy Old Style", Garamond, Charlesworth, Verdana, serif;
	/*font-family: Handscript, "Tempus Sans ITC", "Goudy Old Style", Garamond, Charlesworth, Verdana;*/
}
#container #header dd { /*dd is the attribution*/
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	text-align: right;
	font-size: .75em;
	margin-bottom: 1em;
}
/*Page Navigation - In-Page Nav Links*/

#container #header #pageNav { /*jump to locations within the page*/
	clear:left;
	margin:0;
	padding-left: 5em;

}
#container #pageNav ul { /*jump to locations within the section*/
	margin:0;
	padding:0 0 .3em 0;	
	list-style:none;
}
#container #pageNav ul li#sectionID {
	color: #395C6F;
	background:#F0C400;
	font-size:0.75em;
	margin:0;
	padding: .4em 1.0em;
	border: #F0C400 thin solid;
	border-top-left-radius:.5em;
	border-top-right-radius:.5em;
}
#container #pageNav ul li a{
	color: #F0C400;
	background:#395C6F;
	font-size:0.75em;
	margin:0;
	padding: .4em 1.0em;
	border:outset thin;
	border-top-left-radius:.5em;
	border-top-right-radius:.5em;
}
#container #pageNav ul li a:link {
	color: #F0C400; 
	text-decoration:none;
}
#container #pageNav ul li a:visited {
	color: #F0C400; /*yellow */
	text-decoration:none;
}
#container #pageNav ul li a:hover {
	color: #fff; /*white*/
	
}
#container #pageNav ul li a:active {
	color: #395C6F; /* blue */
	text-decoration:none;
	border:inset thin;
}




#container #pageNav ul li{ /*jump to locations within the page*/
	display:inline;
}

/*Sidebar styles*/
#container #sidebar1 ul#siteIndex {
	margin: 0px;
	padding: 2em 0px 0 0;
	list-style-type: none;
}

#container #sidebar1 ul#siteIndex a {
	display:block;
	padding: .4em .9em;
	text-decoration: none;
	font-size:0.75em;
	background-color: #395C6F;
	border: thin outset;
	margin-bottom:.25em;
}
#container #sidebar1 ul#siteIndex li a:link {
	color: #F0C400;
	text-decoration:none;
}
#container #sidebar1 ul#siteIndex li a:visited {
	color: #F0C400; /*yellow */
	text-decoration:none;
}
#container #sidebar1 ul#siteIndex li a:hover {
	color: #fff; /*white*/	
}
#container #sidebar1 ul#siteIndex li a:active {
	color: #395C6F; /* blue */
	text-decoration:none;
	border:inset thin;
}
/*Sidebar Booking information section */
#container #sidebar1 #bookingInfo h2 {
	margin:0;
	padding:0;
	border-bottom:#395C6F thin;
	font-size: .75em;
	font-weight: bold;
	color: #395C6F;
}
#container #sidebar1 #bookingInfo p {
	margin:0;
	padding:0;
	font-size: .75em;
	color: #395C6F;
}
#container #sidebar1 #bookingInfo {
	padding: 10px;
	color: #395C6F;
	background-color: #F0C400;
}
#container #sidebar1 #bookingInfo ul {
	color:#000;
	list-style:none;
	margin:.5em 0;
	padding:0;
	font-size: .75em;
}
/* Links - Main Content*/
#container #sidebar1 a:link {
	color: #504;
	text-decoration:none;
}
#container #sidebar1 a:visited {
	color: #534;
	text-decoration:none;
}
#container #sidebar1 a:hover {
	color: #504;
	text-decoration:underline;
}
#container #sidebar1 a:active {
	color: #807;
	text-decoration:none;
}


/*Main Content styles*/
#container #mainContent {

	color:#000;	
	/*font-family: Handscript, Verdana, Arial, Helvetica, sans-serif;*/
    background-color: #AFC6CF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*font-weight:bold;*/
	
	border-top-right-radius: 2em;
	border-bottom-right-radius: 2em;
	padding: 2em 1em 1em 2em;


}
#container #mainContent h2 {
	color: #395c6f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*font-family: Handscript, Georgia, "Times New Roman", Times, serif;*/
	padding:0;
	margin:0;

}
#container #mainContent h3 {
	border-bottom-color: #000000;
	color: #000000;
	border-bottom-width: thin;
	border-bottom-style: solid;
	font-size: 1em;
}
#container #mainContent h4 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-weight:bold;
}
#container #mainContent h4 + p{
	margin-top: 0;
	padding-top: 0;

}
#container #mainContent p {
	line-height: 140%;
}
#container #mainContent ul {
	margin: 0;
	padding: 0;
}
#container #mainContent ul li {
	margin: 0;
	padding: 0;
	margin: 0 0 0.5em 1.25em;
}
#container #mainContent ul ul { /*Nested unordered list */
	margin-top: .5em;
}
#container #mainContent blockquote {
	margin: 0;
	padding: 0;
}
/* Links - Main Content*/
#container #mainContent a:link {
	color: #504;
	text-decoration:none;
}
#container #mainContent a:visited {
	color: #534;
	text-decoration:none;
}
#container #mainContent a:hover {
	color: #504;
	text-decoration:underline;
}
#container #mainContent a:active {
	color: #807;
	text-decoration:none;
}


/*Footer styles*/
#container #footer {
	color:#F0C400;
	background:#331100;
	padding:.5em;
}
#container #footer h2 {
	padding:0 0 .25em 0;
	margin:0;
	font-size:.5em;
	font-weight:normal;
}
#container #footer ul{
	list-style:none;
	margin:0;
	padding:0;

}
#container #footer ul li{
	display:inline;
	font-size:.75em;


}

/* Links - footer Content*/

#container #footer a:link {
	color: #FA8;
	text-decoration:none;	
	margin:0;
	padding: 0 2em;
	border-left: #FA8 solid thin;
	border-right: #FA8 solid thin;
}
#container #footer a:visited {
	color: #dd9;
	text-decoration:none;
}
#container #footer a:hover {
	color: #ff8;
	text-decoration:underline;
}
#container #footer a:active {
	color: #ffa;
	text-decoration:none;
}
/* 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;
}
.rightCaption {
	clear: left;	text-align:right;
}
.leftCaption {
	clear: right;

}
.bookTitle {
	color: #395C6F;
	font-style: italic;
	font-weight: bold;
}
.bookAttribution { /*might only be used on the aboutSherry page, but here, justin case */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: smaller;
	font-style: italic;
	margin: 0 0 .5em 0;
	padding: 0;
}
.address {
	list-style:none;
	margin:0;
	padding:0;
	font-weight:bold;
}


/*Redefine background for Storytelling Perfomances group of pages
Home
Profile
Performances
Residencies
Development
Keynotes
Programs
DynamicDuo
Resources

body#Home {
		background-image:url(../images/backgrounds/orang045b.png)
}
body#aboutSherry {
		background-image:url(../images/backgrounds/orang096.jpg)
}
body#Performances {
		background-image:url(../images/backgrounds/stars01.jpg)
}
body#inSchool {
		background-image:url(../images/backgrounds/orang046.jpg)
}

body#staffDevelopment{
		background-image:url(../images/backgrounds/TEXTURES_74_by_Inthename_Stock-mod2.jpg)
}
body#speaker {
		background-image:url(../images/backgrounds/orang040.jpg)
}
body#literacy {
		background-image:url(../images/backgrounds/orang131.jpg)
}
body#dynamicDuo {
		background-image:url(../images/backgrounds/StoneFX.jpg)
}

body#resources {
		background-image:url(../images/backgrounds/carp_white_suede.jpg)
}*/
/*These rules define scrolling area of the overlong list of programs int the 
perfomances-libraries.html file*/
#container #mainContent .programList dl {
	margin: 0px;
	padding: 0px;
}
#container #mainContent .programList dt {
	font-size:1.25em;
	font-weight: bold;
	text-decoration:underline;
	margin: 0 0 .10em 0;
	padding: 0px;
}
#container #mainContent .programList dd {
	font-size: 1em;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: .5em;
	margin-left: 0px;
}
/*#Performances #container #mainContent .programList {
	height: 20em;
	overflow:scroll;
}
#staffDevelopment #container #mainContent .programList {
	height: 30em;
	overflow:scroll;
}*/
.scrollablePage {
	/*height: 35em;
	margin-right:0;
	overflow:scroll;*/
	}
	
/*Styling the list of books titles - mostly for the resources pages*/
#container #mainContent dl.booklist {
	margin: 0px;
	padding: 0px;
}
#container #mainContent dl.booklist dt{
	margin: 3em 0 0 0;
	padding: 0px;
}
#container #mainContent dl.booklist dd{
	margin: 0px;
	padding: 0px;
}
#container #mainContent .booklist .infoBlock p {
	font-style: italic;
	margin: 0px;
	padding: 0px;
}
