h1 {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 32pt;
	 font-weight: bold;
	 color: Black;
}

h2 {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 18pt;
	 font-weight: bold;
	 color: Black;
}

h3 {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 10pt;
	 font-weight: bold;
	 color: Black;
}

h4 {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 14pt;
	 color: Black;
}

p {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 10pt;
	 color: Black;
}

li {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 10pt;
	 color: Black;
}

a {
	 text-decoration: none;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 10pt;
	 color: Black;
}

A:LINK 
{
	text-decoration: none;
}

A:VISITED 
{
	 text-decoration: none;
}

A:ACTIVE 
{
	text-decoration: none;
}


/*** NAVIGATION ***/
/* Removing the bullets */
#nav-menu ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Displaying the menu items horizontally (float:left) or vertically (float:none) */
#nav-menu li
{
	float: none;
	margin: 0.5em;
}

/* Making the boxes */
#nav-menu li a
{
	background: url(background.gif) #fff bottom left repeat-x;
	height: 2em;
	line-height: 2em;
	float: none;
	width: 11em;
	display: block;
	border: 0.1em solid #dcdce9;
	color: Black;
	text-decoration: none;
	text-align: center;
	font-family: "Courier New", Courier, monospace;
}

/* Effect (hover) */
#nav-menu li a:hover
{
	background: url(background.gif) #fff bottom left repeat-x;
	height: 2em;
	line-height: 2em;
	float: none;
	width: 11em;
	display: block;
	border: 0.1em solid #dcdce9;
	color: Black;
	text-decoration: underline;
	text-align: center;
	font-family: "Courier New", Courier, monospace;
	font-weight: bolder;
}

/* Hide from IE5-Mac */
#nav-menu li a
{
	float: none;
}

/* No wrapping */
#nav-menu
{
	width: 9em;
} 

