/*Layout Cascasding Style Sheet with Notes
  */
 
/* Text within the /* symbols are comments to help with your understanding of the design.
 * They do not affect the look of the pages at all.
  */

@charset "utf-8"; /*This just tells the computer how to read this page.  Nothing to change here*/

/*The body tag is the overall highest level formatting.  Barring any other CSS formatting, text will follow the body tag*/
body  {
	/*Define overall font properties here. We will tailor other sizes later.  
	* The 100% is there because you can't omit a size, so this sets the family to Arial and the default size.  Verdana, Arial, etc.
	* are alternatives. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background: #CCCCCC;  /*  Next, we set the background.  This is defining the RBG colors a six digit Hex vales */
	/*background-image:url(../images/Map.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;
	color: #000000; /* Initial (default) text is defined here */
	text-align: center;  /* This centers the entire main table and content of the website */
}


/* The container is the overall element that "contains" all others.  If you wanted to add a border around the web page, you 
would do it here.  Here we also define the page width. */
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	text-align: left;
	background: #ffffff;
	margin: auto;
} 

/*The header contains the main image.  Since it is an image, we can set the background color equal to the overall image color
 * in case the image doesn't exactly fill the header space.
 */
#header { 
	background: #0b4a39; 
}

/* The h1 tag is where you can put the title of the page, if desired.  Here, this h1 tag is within the header, so we really
 * don't need to do anything here.  The padding and margin allows the pull-down menus to rest just below the image.
 */ 
#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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


/*  This would define the left navigation sidebar */
#sidebar1 {
    margin: 8px 0 0 0;
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px 15px 20px;
}
ul {margin-top: 0px; padding-top: 0px; }
/*  This is the main content */
#mainContent {
	width:550px;
	margin-top: 15px;
	/* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float:left;
} 

/*  Let's now define some text sizes and styles within the main content,  We are defining here the style of the h1 elements and the
 *  paragraphs within the main content.  This is where you can tailor the look of all the default styles (h2 - h6)
 */
#mainContent h1 {
	font-size: 12pt;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
/*Some more examples of how to write this are at http://www.w3.org/TR/CSS21/fonts.html*/
}

/*  This is the main content for pages that do not use the left sidebar*/
#mainContentNoSidebar { 
	margin: 35px 0px 0px 0px; 
	/* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

/*  Let's now define some text sizes and styles within the main content,  We are defining here the style of the h1 elements and the
 *  paragraphs within the main content.  This is where you can tailor the look of all the default styles (h2 - h6)
 */
#mainContentNoSidebar h1 {
	font-size: 14pt;
/*Some more examples of how to write this are at http://www.w3.org/TR/CSS21/fonts.html*/
}


/* These next two parts define the overall format of the footer, and the paragraph tag within a footer */
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 

#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 */
}

/* Finally, dreamweaver gives us some classes to help position an element to the left or to the right.  This is useful when coming up with your own templates.  */

.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;
}

.Green {color: #0b4a39;}

.GreenHd {color: #0b4a39; font-size: 12pt; font-weight:bold;}

.GreenHd2 {color: #0b4a39; font-size: 11pt; font-weight:bold;}

.GreenHdBig {color: #0b4a39; font-size: 14pt; font-weight:bold;}

.LgGreenHd {color: #0b4a39; font-size: 18pt; font-weight:bold;}

.Gray {color: dddddd;}

.AttyHd {font-size: 12pt; font-weight:bold;}

.NewsHd {font-size: 11pt; font-weight:bold;}

.Sidebar {font-size: 9pt;}

.Smgreen {font-size: 9pt; color: #0b4a39; font-weight:bold;}

.ArialM {font-size: 12pt;}

.ArialL {font-size: 14pt;}

.small {font-size: 8pt;}

.xsmall {font-size: 8pt; color: #0b4a39; font-weight:bold;}

.xxsmall {font-size: 7pt;}

.TimesL {font-size: 18pt; font-family: "Times New Roman", Times, serif}

.TimesM {font-size: 16pt; font-family: "Times New Roman", Times, serif}

.TimesS {font-size: 13pt; font-family: "Times New Roman", Times, serif}

.TimesXS {font-size: 12pt; font-family: "Times New Roman", Times, serif}

.TimesH {margin: 0; padding: 0;font-size: 16pt; font-family: "Times New Roman", Times, serif; font-weight:bold;}

