* {
   margin: 0;
   padding: 0;
}

html, body {
   margin: 0;
   padding: 0;
   height: 100%; /* needed for container min-height */
   font-family: Arial;
   font-size: 10px;
}

.background0 {
   background-image: url(../images/bg0.png);
   background-repeat: repeat;
}

.background1 {
   background-image: url(../images/bg1.png);
   background-repeat: repeat;
}

.date {
   font-style: italic;
   font-size: 9pt;
}

.dotBorder {
   border: 2px dotted Gray;
   padding: 0 10px 10px 10px;
}

.text {
   padding-top: 10px;
}

h1 { 
   padding-left: 5px;
   padding-top: 30px;
   padding-bottom: 20px;
}

h2 {
}

a {
	color: Blue;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #c00a0a;
}

a img {
   border-style: none;
}

#container {
	position: relative; /* needed for footer positioning*/
	margin: 0 auto; /* center, not in IE5 */
	
	height: auto !important; /* real browsers */
	height: 100%; /* IE6: treaded as min-height*/

	min-height: 100%; /* real browsers */
   
	background-color: #ffffff;
	font-family: Georgia;
	font-size: 1.5em;
	width: 760px;
	line-height: 1.5em;
}

#header {
   /*border-top: 1px solid #000000;*/
   border-bottom: 1px solid #000000;
   margin-left: auto;
   margin-right: auto;
   width: 740px;
}

#headerTitle {
   font-family: Georgia;
   font-size: 70pt;
   letter-spacing: 5px;
}

#content {
   padding-left: 15px;
   padding-right: 15px;
   padding-bottom: 9em; /* bottom padding for footer */
}


#footer {
   position: absolute;
   width: 100%;
   bottom: 0; /* stick to bottom */
}

#footerContent {
   border-top: 1px solid #000000;
   border-bottom: 1px solid #000000;
   text-align: center;
   padding: 10px 0 10px 0;
   font-style: italic;
   color: #6a6a6a;
   margin-bottom: 10px;
   margin-left: auto;
   margin-right: auto;
   width: 740px;
}

/*
#footer {
	position: absolute;
	width: 90%;
	bottom: 0; /* stick to bottom /
   
   border-top: 1px solid #000000;
   border-bottom: 1px solid #000000;
   text-align: center;
   padding: 10px 0 10px 0;
   margin: 30px 0 0 0;
   font-style: italic;
   color: #6a6a6a;
}
*/

#line {
   border: none;
   border-top: medium dotted Black;
}

#articles {
	list-style-type: none;
	margin: 0;
	padding: 0 20px 0 20px;
}

#articles li {
	padding-bottom: 10px;
}

#menu {
   list-style-type: none;
   text-align: center;
   padding: 10px 40px 10px 40px;
}

#menu li {
   display: inline;
   font-weight: bold;
   padding-left: 15px;
}

#menu li a {
   color: Green;
}

#menu li a:hover {
   color: #c00a0a;
}

/*
Based on the Peter Nederlof's 100% height layout:
http://www.xs4all.nl/~peterned/examples/csslayout1.html
*/