@charset "UTF-8";
*  {
	margin: 0; /* initially zero margin, padding, and border of all element to account for differing browser defaults */
	padding: 0;
	border: 0;
}

body  {
	font: 100% Verdana, Arial, "Bitstream Vera Sans", "Luxi Sans", Helvetica, sans-serif;
	background: #FFF;
	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: #000;
}
#container {
	width: 100%;  /* this will create a container 100% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left;
	font: normal 12px/14px Arial, "Bitstream Vera Sans", "Luxi Sans", Helvetica, sans-serif;
	color: #666;
} 


#header { 
	padding: 30px 40px 0;  /* 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 p{
	padding: 10px 0;
	align: center;
	text-align: center;
	display: block;
	margin: 0px;	
} 

#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: 20px 10px 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/* Tips for mainContent:
1. 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.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#mainContent {
	margin: 15px 0px 0 25px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding-right: 10%;
	padding-left: 0px;
} 
#mainContent h1 {
	margin: 0;
	padding: 10px 0 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: normal 20px/25px Arial, "Bitstream Vera Sans", "Luxi Sans", Helvetica, sans-serif;
}
#mainContent h2 {
	margin: 0px;
	padding: 10px 0 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: normal 16px/20px Arial,"Bitstream Vera Sans","Luxi Sans",Helvetica,sans-serif;
}

#mainContent h3 {
	margin: 0px;
	padding: 5px 0 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: normal 6px/8px Arial, "Bitstream Vera Sans", "Luxi Sans", Helvetica, "sans-serif #FFF";
	color: #FFF;
	text-decoration: none;
}

#mainContent p { 
	margin: 0;
	padding: 0 0 20px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:13px ;
	line-height: 19px ;
}

#mainContent p a {
 	text-decoration: none;
 	color: #690;
}

#mainContent p a:link {
 	color: #690:
}

#mainContent li {
	margin: 0 ;
	padding: 0 0 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	line-height: 22px;
	text-indent: 10px;
	list-style-position: outside;
	list-style-type: square;
}



#footer {
	margin: 5px 0 0 0;
	padding: 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#9C6;
	text-align: center;
} 
#footer p {w
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 1px 5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: lighter normal x-small/12px Arial, "Bitstream Vera Sans", "Luxi Sans", Helvetica, sans-serif;
	color: #666;
	text-decoration: none;
}

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

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */  
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
