@charset "utf-8";
body {
	font: .85em Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	background: #313131;
	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: #d5ce7f;
	letter-spacing: .2em;
}

h1 {
	font-size: 1.6em;
}

h2 {
	font-size: 1.1em;
	border-bottom: 1px solid #706557;
	width: 100%;
	margin-bottom: 0px;
}

h3 {
	font-size: .7em;
	color: #918779;
	font-weight:normal;
	margin: 3px 0px 10px 0px
}

h4 {
	color: #FFFFFF;
	width: 100%;
}

input, textarea {
	background: #666666;
	color: #f7ef9f;
	border: 1px #918779 solid;
	font: .85em Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: .2em;
}

ul {margin-left: 0px;}
.year {margin-left: 0px; list-style:none;}
.year li{margin-left: -10px; list-style:circle;}


.codedirection { unicode-bidi:bidi-override; direction: rtl; color: #FFFFCC}


#container {
	width: 70%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	min-width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-top: 80px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header { 
	padding: 0 10px 15px 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 p {
	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 */
	font: "Palatino Linotype", Verdana, Arial;
	font-size: 1.6em;
	letter-spacing: 1.2em;
}

#mainContent {
	padding: 40px 160px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-bottom: 1px #918779 solid;
	border-top: 1px #918779 solid;
}

#mainContent a, a:visited, a:hover {
	text-decoration: none;
	color: #d5ce7f;
}

#mainContent img {
	border: 1px #918779 solid;
	margin: 5px 5px 5px 5px;
}

#mainContent .newslinks {
	text-decoration: none;
	color: #FFFFCC;
}

#mainContent .newslinks:hover {
	text-decoration: underline;
	color: #FFFFCC;
}

#footer {
	text-align: right;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	font-size: 80%;
	letter-spacing: .3em;
	padding: 10px 10px;
}

#footer a, a:visited {
	color: #d5ce7f;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}

#footer .copy {
	text-align:left;
	width: 90px;
	font-size: 90%;
	letter-spacing: .3em;
	color: #918779;
	float:left;
} 

