@charset "UTF-8";
body  {
	font-family: Optima, Georgia, Palatino Linotype, Book Antiqua, Palatino, serif;
	/*font-family: Palatino Linotype, Book Antiqua, Palatino, serif; /* */
	/*font-family: Arial, Arial, Helvetica, sans-serif; /* */
	background: #cddede;
	background-image: url("images2/bg-1.jpg");
	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;
}
.tiny {
font-size: 10px;
margin:0px;
padding: 0px;
}
a:link 
{ 
  color: #006666;
}
a:visited {
  color: #006666;
}
a:hover {
  background: #ffffcc;
}
a:active { 
  color: #006666;
}

a.no-hover {
background:none;
}

#green {
color: #336666;
}
/* Tips for Elastic layouts 
006666
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.
*/
.thrColElsHdr #container { 
	width: 60em;  /* 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;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 3%;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColElsHdr #header { 
	background: #669999;
	padding: 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. */
	border-bottom: 1px solid #d2e3f7;

}

.thrColElsHdr #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: 0 0 0 10px; /* 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 ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
	float: left; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #sidebar2 {
	float: right; 
	width: 20em; /* since this element is floated, a width must be given */
	background: #d2e3f7; /* Blue */
	/*background: #c8e7e7; /* Green */
	padding: 0px 1em 1em 1.5em; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #sidebar2 h3 {
	margin: 30px 5px 0 0;
	padding: 0 0 0 0;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	font-size: 100%;
}
.thrColElsHdr #sidebar2 h3.youth {
	margin: 0 0 0 0;
	padding: .25em .5em .25em .5em;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	font-size: 140%;
	font-variant:small-caps;
	font-style:oblique;
	background-color:#FFFFFF;
	letter-spacing: .125em;
}
.thrColElsHdr #sidebar2 h3.youth2 {
	margin: 0 0 0 0;
	padding: .25em .5em .25em .5em;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	font-size: 160%;
	font-variant:small-caps;
	font-style:oblique;
	background-color:#000000;
	letter-spacing: .125em;
	color: #FFFFFF;
}
.thrColElsHdr #sidebar2 h3.first {
	margin: 1.5em 5px 0 0;
	padding: 0 0 0 0;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	font-size: 100%;
	color:#006666;
}
.thrColElsHdr #sidebar2 p {
	margin: 5px 5px 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #sidebar2 p.sp {
	margin: 10px 5px 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}
.thrColElsHdr #sidebar2 p.quote {
	margin: 5px 3em 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
	line-height: 2em;
}
.thrColElsHdr #sidebar2 p.sm {
	margin: 5px 5px 0 0;
	padding: 0 0 0 0;
	font-size: 70%;
}

.thrColElsHdr #sidebar2 ul {
 	margin: 5px 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

/* 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.
*/
#youth-cal {
float: right;
margin: 0px;
padding: 0 10px 10px 10px;
}
.thrColElsHdr #mainContent {
 	margin: 0 23em 0 1em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 1em 0 1.5em;
	border-right: solid #000000 0px;
	vertical-align:middle;
}

.thrColElsHdr #mainContent h1, .thrColElsHdr #mainContent h2 {
 	margin: 30px 0 0 0;
	padding: 0 0 0 0;
	font-size: 110%;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.thrColElsHdr #mainContent h2 {
 	margin: 30px 0 0 0;
	padding: 0 0 0 0;
	font-size: 100%;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.thrColElsHdr #mainContent h3 {
 	margin: 1.25em 0 0 0;
	padding: 0 0 0 0;
	font-size: 90%;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	color: #006666;
}

.thrColElsHdr #mainContent h1.first, .thrColElsHdr #mainContent h2.first {
 	margin: 1.5em 0 0 0;
	padding: 0 0 0 0;
	font-size: 110%;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	color:#006666;
}

.thrColElsHdr #mainContent h2.first {
 	margin: 1.5em 0 0 0;
	padding: 0 0 0 0;
	font-size: 100%;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.thrColElsHdr #mainContent p {
 	margin: 5px 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #mainContent p.nsp {
 	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #mainContent p.ind {
 	margin: .3em 1em 0 1em;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #mainContent p.sp {
 	margin: 1em 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #mainContent p.sp2 {
 	margin: 2em 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}

.thrColElsHdr #mainContent p.psc {
 	margin: 1em 0 0 0;
	padding: 0 0 0 0;
	font-size: 0.75em;
}

.thrColElsHdr #mainContent p.audio {
 	margin: .75em 0 0 0;
	padding: 0 0 0 0;
	font-size: 70%;
}

.thrColElsHdr #mainContent p.sm {
 	margin: 5px 0 0 0;
	padding: 0 0 0 0;
	font-size: 70%;
}

.thrColElsHdr #mainContent ul {
 	margin: 5px 0 0 0;
	padding: 0 0 0 0;
	font-size: 80%;
}
 
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align:center;
} 
.thrColElsHdr #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:70%;
}

/* 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;
	margin-bottom: 8px;
	border: 0px;
}
.fltrt2 { /* 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: 1em;
	margin-bottom: 8px;
	border: 0px;
	margin-right: 5em;
}
.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;
}
.thrColElsHdr #sidebar2 ul { margin: 0 20px 0 10px; padding: 0px; }
.thrColElsHdr #sidebar2 li { margin: 0 0 5px 10px; padding: 0px; }
.thrColElsHdr #sidebar2 li.psc { margin: 0 0 8px 10px; padding: 0px; font-size: 100%; }
.thrColElsHdr #mainContent ul { margin: 10px 10px 0 10px; padding: 0px; }
.thrColElsHdr #mainContent li { margin: 0px 0 5px 10px; padding: 0px; }
.thrColElsHdr #mainContent ul.sp { margin: 10px 10px 0 10px; padding: 0px; }
.thrColElsHdr #mainContent li.sp { margin: 10px 0 5px 10px; padding: 0px; }
.thrColElsHdr #mainContent ul.com { margin: 10px 10px 0 10px; padding: 0px; }
.thrColElsHdr #mainContent li.com { margin: 0px 0 5px 10px; padding: 0px; }
.thrColElsHdr #mainContent ol { font-size: 80%; margin: 10px 10px 0 10px; padding: 0px; }

/*!!!!!!!!!!! QuickMenu Core CSS [Do Not Modify!] !!!!!!!!!!!!!*/
.qmmc .qmdivider{display:block;font-size:1px;border-width:0px;border-style:solid;position:relative;z-index:1;}.qmmc .qmdividery{float:left;width:0px;}.qmmc .qmtitle{display:block;cursor:default;white-space:nowrap;position:relative;z-index:1;}.qmclear {font-size:1px;height:0px;width:0px;clear:left;line-height:0px;display:block;float:none !important;}.qmmc {position:relative;zoom:1;z-index:10;}.qmmc a, .qmmc li {float:left;display:block;white-space:nowrap;position:relative;z-index:1;}.qmmc div a, .qmmc ul a, .qmmc ul li {float:none;}.qmsh div a {float:left;}.qmmc div{visibility:hidden;position:absolute;}.qmmc .qmcbox{cursor:default;display:block;position:relative;z-index:1;}.qmmc .qmcbox a{display:inline;}.qmmc .qmcbox div{float:none;position:static;visibility:inherit;left:auto;}.qmmc li {z-index:auto;}.qmmc ul {left:-10000px;position:absolute;z-index:10;}.qmmc, .qmmc ul {list-style:none;padding:0px;margin:0px;}.qmmc li a {float:none;}.qmmc li:hover>ul{left:auto;}#qm0 ul {top:100%;}#qm0 ul li:hover>ul{top:0px;left:100%;}


/*!!!!!!!!!!! QuickMenu Styles [Please Modify!] !!!!!!!!!!!*/


	/* QuickMenu 0 */

	/*"""""""" (MAIN) Container""""""""*/	
	#qm0	
	{	
		padding:5px;
		background-image:url(qmimages/center_tile_blue.gif);
		border-width:0px;
		border-style:solid;
		border-color:#EEEEEE;
		padding-bottom: 3px;
		padding-left: 10px;
	}


	/*"""""""" (MAIN) Items""""""""*/	
	#qm0 a	
	{	
		padding:5px 5px 5px 5px;
		color:#006666;
		font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
		font-size:12px;
		text-decoration:none;
	}


	/*"""""""" (SUB) Container""""""""*/	
	#qm0 div, #qm0 ul	
	{	
		padding:10px;
		margin:-2px 0px 0px 0px;
		background-color:transparent;
		border-style:none;
	}


	/*"""""""" (SUB) Items""""""""*/	
	#qm0 div a, #qm0 ul a	
	{	
		padding:3px 10px 3px 5px;
		background-color:transparent;
		font-size:12px;
		border-width:0px;
		border-style:none;
	}


	/*"""""""" (SUB) Hover State""""""""*/	
	#qm0 div a:hover	
	{	
		background-color:#ffffcc;
		color:#083d40;
	}


	/*"""""""" (SUB) Hover State - (duplicated for pure CSS)""""""""*/	
	#qm0 ul li:hover>a	
	{	
		background-color:#ffffcc;
		color:#083d40;
	}


	/*"""""""" (SUB) Active State""""""""*/	
	body #qm0 div .qmactive, body #qm0 div .qmactive:hover	
	{	
		background-color:#ffffcc;
		color:#083d40;
	}


	/*"""""""" Individual Titles""""""""*/	
	#qm0 .qmtitle	
	{	
		cursor:default;
		padding:3px 0px 3px 4px;
		color:#444444;
		font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
		font-size:11px;
		font-weight:bold;
	}


	/*"""""""" Individual Horizontal Dividers""""""""*/	
	#qm0 .qmdividerx	
	{	
		border-top-width:1px;
		margin:4px 0px 4px 0px;
		border-color:#96C7FD;
	}


	/*"""""""" Individual Vertical Dividers""""""""*/	
	#qm0 .qmdividery	
	{	
		border-left-width:1px;
		height:15px;
		margin:4px 8px 0px 8px;
		border-color:#AAAAAA;
	}


	/*"""""""" (main) Rounded Items""""""""*/	
	#qm0 .qmritem span	
	{	
		border-color:#0570E7;
		background-color:#D8EEFD;
	}


	/*"""""""" (main) Rounded Items Content""""""""*/	
	#qm0 .qmritemcontent	
	{	
		padding:0px 0px 0px 4px;
	}


	/*"""""""" Custom Rule""""""""*/	
	ul#qm0 ul	
	{	
		padding:10px;
		margin:-2px 0px 0px 0px;
		background-color:#D8EEFD;
		border-width:1px;
		border-style:solid;
		border-color:#0570E7;
	}


	/*"""""""" Custom Rule""""""""*/	
	ul#qm0 li:hover > a	
	{	
		background-color:#D8EEFD;
	}


<style type="text/css">
.newcorner{display:block}
.newcorner *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#d2e3f7}
.newcorner1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #d2e3f7;
  border-right:1px solid #d2e3f7;
  background:#d2e3f7}
.newcorner2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #d2e3f7;
  border-right:1px solid #d2e3f7;
  background:#d2e3f7}
.newcorner3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #d2e3f7;
  border-right:1px solid #d2e3f7;}
.newcorner4{
  border-left:1px solid #d2e3f7;
  border-right:1px solid #d2e3f7}
.newcorner5{
  border-left:1px solid #d2e3f7;
  border-right:1px solid #d2e3f7}
.newcornerfg{
  background:#d2e3f7}
.colorcheck {
background-color: #336699;
}
.alert {
background-color:#FFFFCC;
color:#CC0000;
padding: 1em;
font-weight: bold;
}
.loc {color: #333333;}
a.white:link {color: #FFF; text-decoration: none;}
a.white:visited {color:#FFF; text-decoration: none;}
a.white:active {color: #FFF; text-decoration: none;}
a.white:hover {color: #FFF; background-color: #666666; text-decoration:underline;}
</style>

