@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #000042;
	background: #FFFFFF;
	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 */
}

/* 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: #sidebar is given a 70% font size and #main 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.
*/
#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: #F5F5DC; /* Beige */  	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #030075;
	/*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. */
} 
#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 */
}

#headermenu { 
	background: #0BCF9D;
} 

/* Tips for sidebar:
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 "#sidebar p" rule.
*/
#sidebar {
	float: right; 
	width: 12em; /* since this element is floated, a width must be given */
	padding: 15px 15px; /* top and bottom padding create visual space within this div */
}
#sidebar h3, #sidebar 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 main:
1. If you give this #main div a font-size value different than the #sidebar div, the margins of the #main div will be based on its font-size and the width of the #sidebar div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the main and sidebar is created with the left margin on the main div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this left margin if you want the #main div's text to fill the #sidebar space when the content in #sidebar 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 #main div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the main "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#main {
	color: #000042;
  	margin: 0 13em 0 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
} 

#main p {
	padding-left: 10px;
	padding-right: 10px;
	text-indent: 2em;
}
.quotation {
     font-style: italic; 
     font-size: 0.9em;
	 padding-left: 20em;
}
.secondquotation {
     font-style: italic; 
     font-size: 0.9em;
	 padding-left: 5em;
}
.author{
     font-style: normal;
	 font-variant: small-caps;
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#00568D;
    color: #FFFFFF;
    font-size: 0.7em;
    text-align: center;
} 
#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 */
	line-height: 100%;	
}
strong { font-weight: bold
}
em { font-style: italic;
}

/* Miscellaneous classes for reuse */
.bold { font-weight: bold
}
.italic { font-style: italic;
}
.center {padding:0em;
	margin:0em;
	text-align: center;
}
.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;
}

/* Styles for the homepage */
.homepage #sidebar {
	background: #00529B; /* the background color will be displayed for the length of the content in the column, but no further */
}
.homepage #classesBox {
	background: #80AFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
    border: 10px ridge #003189;
}
.homepage #newsBox {
	background: #80AFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
    border: 10px ridge #003189;
}
.homepage #articlesBox {
	background: #80AFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
    border: 10px ridge #003189;
}
.homepage p {
    line-height: 200%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.homepage h1 {
	font-size: 1.5em;
	font-family: "Comic Sans MS", Arial, sans-serif;
    text-align: left;	
    padding: 1em 0em 1em 8em;
}
.homepage #sidebar h1 {
	font-size: 1em;
	font-family: "Courier New", Courier, monospace;
	line-height: 100%;
	padding: 10px;
}
.homepage #sidebar p {
	font-size: 0.9em;
	font-family: "Courier New", Courier, monospace;
	line-height: 100%;
	padding: 10px;
}
.homepage #sidebar ul {
	font-size: 0.9em;
	font-family: "Courier New", Courier, monospace;
	line-height: 100%;
	padding: 10px;
	list-style-type: none;
}
.homepage #sidebar li {
	padding-bottom: .5em;
	padding-left: .5em;
}
.homepage #footermenu {
    width: 100%;
}

/* Styles for the other pages */
.page #main h1 {
	font-variant: small-caps;
	font-size: 1.2em;
	font-family:"Comic Sans MS", Arial, sans-serif;
	text-align: right;	
    padding-right:5em;
}
.page #main h2 {
	font-size: 1.5em;
	font-family:"Comic Sans MS", Arial, sans-serif;
	padding-left:5em;
}
.page #main h3 {
	font-size: 1.2em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	padding-top:1.5em;
	padding-left:10px;
}
.page #main p {
	line-height: 150%;
}
.page #main p.address {
	text-align:center;
	padding-left: 0px;
	padding-right: 0px;
	font-family:Georgia, "Times New Roman", Times, serif;
}
.page #main p.map {
	text-align:center;
}
.page #main img {
	padding-left: 10px;
	padding-right: 10px;
}
.page #sidebar {
	background: #00529B;
}
.page #sidebar h1 {
	font-size: 1.1em;
	color:#80D6FF;
}

/* Styles for the classes tables */
.page .classes {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.page .classes caption {
	font-size: 1.2em;
	font-weight:bold;
	padding:10px;
}
.page .classes caption p {
	font-size: 0.9em;
	font-weight:bold;
	padding:10px;
}
.page .classes td {
	padding:10px;
}
.page .classes .weekday{
	font-weight: 600;
}
.page .classes .subtype{
	font-style: italic;
}
.page .classnote {
	font-size: 0.8em;
}
.page .teacher {
	font-weight: bold;
	padding: 20px;
	text-align:right;
	padding-right:10em;
}

/* Styles for the fees div */
.page .fees {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left:4em;
}
.page .fees h4 {
	font-size: 1.1em;
	font-weight:bold;
	padding-top:1em;
}
.page h4.links {
	padding-left:3em;
}

/* Styles for the articles list */
.page #main ul.articles {
	list-style-type:none;
	font-weight:bold;
}
.page #main ul.articles li{
	line-height: 150%;
	padding-bottom:1.5em;
}
.news h2 {
	font-size: 1.5em;
	font-family:"Comic Sans MS", Arial, sans-serif;
	padding:0em;
	padding-top:2em;
	margin:0em;
	text-align: center;
}
.news h3 {
	font-size: 1.2em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	padding:0em;
	padding-top:1.5em;
	margin:0em;
	text-align: center;
}
