@charset "iso-8859-1";
/* Margins and padding are set with properties for an element using shorthand notation (top, right, bottom, left) */
/* If all four measurements are the same then you need only use one unit of measurement - instead of 0px 0px 0px 0px use just 0px */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, 
content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer 
because each browser has a different top margin default value. By resetting these values to 0, the elements 
will initially be rendered in an identical fashion and their properties can be easily defined by the designer 
in any subsequent rule. */

/* Notes for Senior New Ways 2 and 3 columns DWTs.  Same css used for both.
   Make edits to site3col.dwt
   Copy site3col.dwt to site2colleft.dwt
   Edit site2colleft.dwt:
      Change <title>
      Remove rightcolumn   (leave in two commends "right column begins/ends here"
      Change content3col to content2colleft.
*/ 

/* Color reference chart
	bkg and border blue   	#4080c0
	footer bkg yellow	#ffe75d
	orange borders		#ff9900
*/



html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
  border: 0px;
  outline: 0px;
  font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the 
body element will help to create consistent styling of the page content and more manageable CSS. Besides using 
the body element to set global properties, it is common to use the body element to set the background color 
of the page and create a centered container for the page content to display. */
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #4080c0;
	line-height: 16px;
	font-size: 14px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px 0px 6px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	color: #000000;
	margin: 12px 0px 6px 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 24px;
	text-align: left;
	margin-bottom: 24px;
}
/* Commonly used to style section titles. */
h2 {
	margin: 24px 0px 0px 0px;
	font-size: 16px;
}
h3 {
	font-size: 14px;
}
h4 {
	margin: 0px;
	font-size: 16px;
	color: #095ba4;
}
h5 {
	margin: 0px;
	font-size: 12px;
}


/* Sets the style for unvisited links. */
a,  a:link {
	color: #0033cc;
	text-decoration: underline;
	font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
	color: #0033cc;
	text-decoration: underline;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #FF9900;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #FF9900;
}


/* This is a container for the page content. It is common to use the container to constrain the width
of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed 
layouts you may specify a container width and use auto for the left and right margin to center the container 
on the page. IE 5 browser require the use of text-align: center defined by the body element to center the 
container. For liquid layouts you may simply set the left and right margins to center the container 
on the page. */
#outerWrapper {
	background-color: #fff;
	width: 1000px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto 0px auto;
}
#outerWrapper #header {
	background-color: #FFFFFF;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 2px #4080c0;
	height: 100px;
	border-bottom-color: #4080c0;
	border-bottom-width: 4px;
	background-image: url('../imagesv2/headeryellowgradient.png');
}
#outerWrapper #header .title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bold;
	color: #095ba4;
	margin-top: 35px;
	margin-left: 200px;
}
/*
#outerWrapper #header .links {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	color: #095ba4;
	margin-top: 50px;
	margin-left: 200px;
}
*/
#outerWrapper #header .hdrlinks {
	margin: 2px 10px 0 200px;
	padding: 2px 0 0 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0033cc;
	text-align: right;
}
#outerWrapper #menuwrapper {
	background-color: #ecf2f9;
	height: 24px;
	padding: 4px 0px 4px 0px;
	border-bottom: solid 2px #4080c0;
	border-bottom-width: 4px;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/* Styles for Top Navigation */
/*
topNavigation is the root UL and topNavigation ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family. This sets font for just the menu. 
Do not add a font-size here. 
*/
#outerWrapper #topNavigation, #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#outerWrapper #topNavigation li {
	float: left;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
*/
#outerWrapper #topNavigation a {
	display: block;
	text-decoration: none;
	margin: 0px;
	padding: 4px 12px 4px 12px;
	font-size: 14px;
	color: #000000;
	font-weight: bold;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the topNavigation a element. The right padding can be increased
to accomodate the display of optional background image depicting a downward
pointing arrow.
*/
#outerWrapper #topNavigation a.trigger {
	padding: 4px 12px 4px 12px;
/*	background-image: url("../images/p7PM_dark_south.gif");
	background-repeat: no-repeat;
	background-position: right center;  */
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#outerWrapper #topNavigation li {
	float: left;
	width: 9em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#outerWrapper #topNavigation li ul, #topNavigation ul li  {
	width: 16em;    /* original 12em */
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding and increase the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#outerWrapper #topNavigation ul li a  {
	color: #000000;
	border-right: 0;
	border-left: 0;
	padding: 6px 12px 6px 24px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#outerWrapper #topNavigation li ul {
	position: absolute;
	display: none;
	background-color: #ecf2f9;
	border-right: 2px solid #333333;
	border-bottom: 2px solid #333333;
/*	background-image: url('../images/sun_bkgd_button.jpg');
	background-repeat: repeat-x; */
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#outerWrapper #topNavigation li:hover a, #outerWrapper #topNavigation a:focus,
#outerWrapper #topNavigation a:active, #outerWrapper #topNavigation li.p7hvr a {
	color: #FFFFFF;
	background-color: #4080c0;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#outerWrapper #topNavigation li:hover ul, #outerWrapper #topNavigation li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying background on the UL
to show through.
*/
#outerWrapper #topNavigation li:hover ul a, #outerWrapper #topNavigation li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the background. We set text color to white.
*/
#outerWrapper #topNavigation ul a:hover {
	background-color: #4080c0!important;
	color: #FFFFFF!important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#outerWrapper #topNavigation li {width: auto;}


/* VLB -- unused from previous version without submenus
#outerWrapper #topNavigation a:hover {
	background-color: #4080c0;
	color: #FFFFFF;
}
#outerWrapper #topNavigation {
	background-color: #ecf2f9;
	height: 24px;
	padding: 4px 0px 4px 0px;
	border-bottom: solid 2px #4080c0;
	border-bottom-color: #4080c0;
}
*/

/* Two layouts:   1) three column layout (site3col.dwt), 
                  2) two column layout with left sidebar (site2colleft.dwt),
                  3) two column layout with right sidebar (site2colright.dwt) -- not kept up-to-date  */
/* To maintain the three layouts, make major changes to site3col.dwt.  Then copy to the other two layouts
and edit as needed. */

#outerWrapper #contentWrapper #leftcolumn {
	padding: 10px 10px 10px 10px;
	background-color: #EFFFFE;
	float: left;
	border-right: solid 2px;
	width: 165px;
	border-bottom: solid 2px;
	border-style: none solid none none;
	border-right-width: 3px;
	border-bottom-width: 2px;
	border-right-color: #4080c0;
	border-bottom-color: inherit;
}
/* Same right columns for 3 column layout and 2 column layout */
#outerWrapper #contentWrapper #rightcolumn {
	padding: 10px 10px 10px 10px;
	float: right;
	background-color: #EFFFFE;
	border-left: solid 2px;
	border-bottom: solid 2px;
	width: 275px;
	border-bottom-color: inherit;
	border-left-color: #4080c0;
	border-style: none none none solid;
	border-left-width: 3px;
	border-bottom-width: 2px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account
 for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content3col {
	padding: 10px 10px 10px 10px;
	margin: 0px 295px 0px 190px;
}
#outerWrapper #contentWrapper #content2colright {
	padding: 10px 10px 10px 10px;
	margin: 0px 300px 0px 30px;
}
#outerWrapper #contentWrapper #content2colleft {
	padding: 10px 10px 10px 10px;
	margin: 0px 70px 0px 195px;
}

/* Left column vertical navigation for "About Us" page and its subpages.  Copy and paste into left column:
			<p><br /></p>
			<p><a href="aboutus.html">About Us</a></p>
			<p><a href="ourstaffandboards.html">Our Staff, Board of Directors and Board of Trustees</a></p>
			<p><a href="ourteachers.html">Our Teachers</a></p>
			<p><a href="faqs.html">FAQs</a></p>
			<br />
*/

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless
layouts. If floated elements are used without being cleared the elements following will wrap around the 
floated element. This class should be applied to an element after the last floated element and before 
the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: both;
}
#outerWrapper #footer {
	border-style: solid;
	background-color: #Ffe75d;
	padding: 10px 10px 10px 10px;
	border-top-width: 12px;
	border-top-color: #4080c0;
	background-image: url('../imagesv2/footeryellowgradient.png');
}

/* removes the top and bottom margins*/
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: 14px;
	padding-top: 2px;
	padding-bottom: 2px;
}



.imgleft {
	margin: 6px;
	padding: 0px;
	float: left;
	border: solid 1px #000000;
}
.imgright {
	margin: 6px 0px 6px 6px;
	padding: 0px;
	float: right;
	border: solid 1px #000000;
}
.imgcenter {
	display: block;
	margin: 0px auto;
	border: solid 1px #000000;
}
.imgcaption {
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	background-color: #FFFFFF;
	padding: 0px;
	font: 14px Arial, sans-serif;
}

.ctr {
	text-align: center;
}
.ctrboldblue {
	text-align: center;
	color: #095ba4;
	font-weight: bold;
}
.ctrboldblueborder {
	margin: 6px 18px 6px 18px;
	border: 1px solid #4080c0;
	padding: 6px;
	text-align: center;
	color: #095ba4;
	font-weight: bold;
}
.ctrorange {
	text-align: center;
	color: #ff9900;
}
.ctrorangeborder {
	border: 1px solid #ff9900;
	padding: 9px 3px 9px 3px;
	margin: 3px 1px 3px 1px;
	text-align: center;
	background-color: #FFFFFF;
}
.ctrboldorange {
	text-align: center;
	color: #ff9900;
	font-weight: bold;
}


.hzline {
	padding: 3px 0px 3px 0px;
	margin: 0px;
	color: #ff9900;
}
.hzline100orange {
	color: #ff9900;
	width: 100%;
	height: 2px;
	border-width: 0;
	background-color: #ff9900;
}

/*============ form styles ==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 1px solid #353c48;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	border: 1px solid #353c48;
	color: #ffffff;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
	background-color: #353c48;
}
.cf {
	border: 1px solid #424852;
	background-image: url('../imagesv2/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #353c48;
	background-color: #353c48;
	color: white;
}

/*============ For Bing search box ==============*/

#WLSearchBoxDiv {
	margin: 1em;
}


.leftorangeborder {
	border: 1px solid #ff9900;
	padding: 9px 3px 9px 3px;
	margin: 3px 1px 3px 1px;
	text-align: left;
	background-color: #FFFFFF;
}


.ctrboldbluebordercolumn {
	margin: 6px 3px 6px 3px;
	border: 1px solid #4080c0;
	padding: 6px;
	text-align: center;
	color: #095ba4;
	font-weight: bold;
	background-color: #FFFFFF;
}





.leftblackborder {
	border: 1px solid #333333;
	padding: 9px 3px 9px 3px;
	margin: 3px 1px 3px 1px;
	text-align: left;
	background-color: transparent;
}





.ctrorangeborderConfetti {
	background-position: 0px center;
	border: 1px solid #ff9900;
	padding: 9px 3px 9px 3px;
	margin: 3px 1px 3px 1px;
	text-align: center;
	background-color: #FFFFFF;
	background-image: url('../imagesv2/confetti_bkgd.jpg');
	background-repeat: no-repeat;
}





.hzline80orange {
	color: #ff9900;
	width: 80%;
	height: 2px;
	border-width: 0;
	background-color: #ff9900;
}
.pblog {
	border: 1px solid #333333;
	padding: 9px 3px 9px 3px;
	margin: 3px 1px 3px 1px;
	text-align: left;
	background-color: #FFFFCC;
}







