
/*------------------------------------*\
	RESET
\*------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{
	margin:0;

	padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img{
	border:0;
}
address,caption,cite,code,dfn,th,var{
	font-style:normal;
	font-weight:normal;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}



/*------------------------------------*\
	MAIN
\*------------------------------------*/
html{
	height:100%;

}
body{
	font-family: Sylfaen;
	font-size:1em;
	color:#333;
	width:950px;
	margin:0 auto;
	padding:10px;
}



/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	margin-left: 120px;
	text-align:left;
	list-style:none;
	font-weight:bold;
	/* Boldness of menu bar text*/
	margin-bottom:10px;
	/* Clear floats */
	float: left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	padding-top:1px;
	margin-right: 5px;
	/*--- Gaps between buttons ---*/
	position:relative;
}
#nav a{
	display:block;
	padding:5px;
	color:black;
	background:#e9efef;
	text-decoration:none;
}
#nav a:hover{
	color:blue;
	background:#6b0c36;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	display: inline;
	background: Black;
	/* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0);
	/* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style: none outside;
	position:absolute;
	left:-9999px;
	/* Hide off-screen when not needed (this is more accessible than display:none;
	) */
	;
	background-color : #e9efef;
	border-color : Blue;


}
#nav ul li{
	padding-top:4px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#e9efef;
	text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:white;
}



/*------------------------------------*\
	TYPE
\*------------------------------------*/
h1{
	font-family:Sylfaen, Calibri, Arial, Verdana, sans-serif;
	font-size:2em;
	width:800px;
	padding-top: 1%;
	padding-bottom: 1%;
	padding-left:75px;
}


td
{
padding:15px;


}
li {
    list-style-position:inside;
} 






/* This area is related to the "show more" parts of the website */
a {
    color: #0254EB
}
a:visited {
    color: #0254EB
}
a.morelink {
    text-decoration:none;
    outline: none;
}
.morecontent span {
    display: none;
}
/* End of the "show more" code */


/* This part of the code adds indentation/margins to any
"li" that belongs to a ul. If you use the "li" instead of "ul" in the 
css code, you will only see the formatting applied to the ul and not the 
li items themselves! */
.bulletlistindent li{
 margin-left:25px;
 }
/* End of indent list script */
