/*  SOME CSS CODE BELOW TAKEN FROM:
 *	http://ago.tanfa.co.uk/css/examples/menu/tutorial-h.html
 *  ON 1/1/10
 */

/******************/
/**** FONT SIZE ***/
/******************/
p, li, blockquote {
	font-size: 200%;
}

h2 {
	font-size: 250%;
}


/******************/
/***** LAYOUT *****/
/******************/
#block_main {
	min-height: 1000px;
}

#block_rt_panel {
	padding-top: 2em;
}

#block_rt_panel ul {
	width: 400px;
}


/************************/
/*         TOP          */
/*      NAVIGATION      */
/************************/
#nav ul {
	width: 210px;
	float: left;
	list-style: none;
}

#nav a, #nav h2 {
	display: block;
}


/*********************************/
/*  TOP NAVIATION: 1st LINE      */
/*  About, Services, How to Help */
/*-------------------------------*/
#nav h2 {
	color: white;
	background-color: rgb(18,10,128);
	padding-left: 12px;
}

#nav h2:hover {
	color: yellow;
}

#nav li h2 {
	font-size: 100%;
	font-weight: normal;
}


/*********************************/
/*  TOP NAVIATION: 1st LINE      */
/*  SUBMENU LINES                */
/*-------------------------------*/
#nav a {
	color: black;
	background-color: rgb(143, 200, 78);
	padding-bottom: 0.4em;
	padding-left: 30px;
	text-indent: -10px;
}

#nav a:hover {
	color: yellow;
}

#nav a.first {
	padding-top: 0.4em; 
}

#nav li a {
	font-size: 45%;
	font-weight: normal;
	color: black;
}

#nav li {
	position: relative;
}

#nav ul ul {
	display: none;


	/* IN CASE TEXT NEAR DROP DOWN 
	   MAY NOT WORK IN IE 
	 */
	z-index: 500;
}

#nav ul li:hover ul {
	display: block;
}
