
/* Basic */

*
{
	margin: 0em;
	padding: 0em;
}


body
{
	font-family: "trebuchet ms", sans-serif;
	font-size: 10pt;
	background-color: black;
}

a
{
	text-decoration: underline;
}


a:hover
{
	text-decoration: none;
	background-color: rgb(204, 0, 0);
} 

/* Outer */

#outer
{
	left: 10%;
	width: 80%;
	top: 5%;
	height: 90%;
	align: center;
	position: relative;
	background-color: white;
}

/* Header */

#header
{
	padding: 1.75em;
	text-align: center;
}


/* Menu */

#menu
{
	padding: 1.75em;
}

#menu ul
{
	list-style: none;
	text-align: center; 
}

#menu li
{
	padding: 0em 1.5em 0em 1.5em;
	display: inline;
}

#menu li a
{
	color: black;
	font-weight: bold;
	text-decoration: none;
	text-decoration: underline;
	font-size: 1.3em;
	letter-spacing: 0.2em;
}

#menu li a:hover
{
	background-color: rgb(204, 0, 0);
}

/* Downmenu */

#downmenu
{
        padding: 1.75em;
}

#downmenu ul
{
        list-style: none;
      text-align: center; 
}

#downmenu li
{
        padding: 0em 1.5em 0em 1.5em;
        display: inline;
}

#downmenu li a
{
        color: black;
        font-weight: bold;
        text-decoration: none;
	text-decoration: underline;
        font-size: 1.3em;
        letter-spacing: 0.2em;
}

#downmenu li a:hover
{
	background-color: rgb(204, 0, 0);	
}


/* Content */

#content
{
	padding: 1.75em;
	background-color: white;
	height: 70%;
	width: 80%;
}

#content p
{
	margin-bottom: 2em;
	line-height: 1.5em;
}

#content h2,h3,h4,h5,h6
{
	position: relative;
	color: #3F2109;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
}

#content h2
{
	font-size: 1.5em;
}

#content h3
{
	font-size: 1.1em;
}

#content ul
{
	margin-bottom: 2em;
	padding-left: 1em;
}

#content blockquote
{
	margin-bottom: 2em;
}

#content blockquote p
{
	border-left: solid 5px #303030/*#667700*/;
	padding-left: 1em;
	margin-bottom: 0em;
}

#content table
{
	margin-bottom: 2em;
}

#content table th
{
	text-align: left;
	font-weight: bold;
	padding: 0.5em;
}

#content table td
{
	padding: 0.5em;
}

#content table tr.rowA
{
	background-color: #DFBD99;
	color: inherit;
}

#content table tr.rowB
{
	background-color: #EFDCC2;
	color: inherit;
}


