@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Alegreya');

body {
	font-family: "alegreya",Helvetica,Arial,sans-serif;
	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;
	color: #000000;
	font-size: 16px;	
}
#header {
	height: 85px;
	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. */
	background: #0d5746 url(images/logo-header.png) left no-repeat;
	padding: 0 10px 0 20px;  /* 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 {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	font-family: "century expanded", Verdana, sans-serif;
	font-size: 150%;
	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 0 0 190px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #dbdbdb;
	display: none;
}
#header img {
	float: left;
}
#main {

	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. */
}
#content {
	margin: 10px 10px 10px 0;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
}
h3 {
	font-size: 100%;
	font-weight:bold;
	font-family: "Tahoma", Verdana, Sans-serif;
/*	background: url(images/10x10.gif) repeat-x bottom;*/
	border-bottom: 2px solid #dbdbdb;
	padding: 10px;
}
#sidebar {
	width: 250px;
	margin: 10px 0;
	padding: 0 10px;
	float: right;
}
#sidebar p {
	font-size: 90%;
}
#footer {
	clear: both;
/*	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size: 85%;
}
 #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 */
	font-size: 75%;
	line-height: 150%;
	color: Gray;
}
#footer a {
	color : #808080;
	border: none;
}
#footer a:hover {
	text-decoration: underline;
	color : #000000;
	border: none;
} 
	
li {
	text-align:left;
}