@charset "UTF-8";
/* CSS Document */

body  {
	font: 100%, Helvetica, Verdana, Arial, sans-serif;
	background-color: #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 */

}

/* This code is for containter */
.twoColumnFixed #container { 
	width: 1024px;  /* Specifies width of contained element */
	background-color: #FFFFFF;
	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. */
} 

/* This code is for header and contents */
.twoColumnFixed #header {  
	padding: 0;  /* No Padding */
	float: left;
} 

/* This code is for mainContent and elements within */
.twoColumnFixed #mainContent { 
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* 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 */
	margin: 0 38px 0 35px; /* Margin numbers start top, right, bottom, left = 0px 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. */
						 /* remember that padding is the space inside the div box and margin is the space outside the div box */

} 

.twoColumnFixed #mainContent h1 { 
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 60px;
	font-weight: Bold;
	color: #66AA99; 
	margin: 6px 0 0 0;
	padding: 0 0 0 0px;
}

.twoColumnFixed #mainContent p { 
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 13px;
	line-height: 19px;
	color: #FF6600;
	margin: 0 0 0 0px;
	padding: 16px 0 0 0px;
}


/* This code is for the sidebar and it's contents */
.twoColumnFixed #sidebar { 
	margin: 0px 0 0 0px; /* This controls top of page to move things. To move everything down from top of page example = 100px 0 0 0px */
	padding: 0 0 0 0px;  
}

/* This code is for the menu and its content */
.twoColumnFixed #page_menu a{  
	font-family: arial;
	font-size: 24px;
	line-height: 19px;
	color: #FF9C00;
	margin: 0 0 0 0px;
	padding: 16px 0 0 0px;
	text-decoration: none;
	
	} 

/* This code is for centering the menu */
.twoColumnFixed #page_menu {  
	text-align: left;	
	} 

/* This code is for the \\'s in the menu, it makes them green */
.GrnLines
    {
    color: #66AA99;
    font-size: 20px;
    }
    
/* This code is for the adress at the bottom and its content */
.twoColumnFixed #contact_info p{  
	font-family: arial;
	font-size: 14px;
	line-height: 19px;
	color: #66AA99;
	margin: 0 0 0 0px;
	padding: 16px 0 0 0px;
	text-decoration: none;
	text-align: center;
	
	} 
