/* CSS Document */



/* common styles
----------------------------------------------- */






/* headings
----------------------------------------------- */

#header




{
background-color: #FFFFFF;
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 14pt;
	font-weight: bold;
	text-align: left;
}



/* links
----------------------------------------------- */

a, a:link, a:visited {
color: #047114;
font-size: 9pt;
text-decoration: underline;

}
#navbar a, #navbar a:link, #navbar a:visited {
color: #047114;
font-size: 9pt;
text-decoration: none;
}
#navbar a:hover {
color: #047114;
font-size: 9pt;
text-decoration: none;
}
a:hover {
color: #047114;
font-size: 9pt;
text-decoration: none;
}


/* Menu bar
------------------------------------------------------------ */
	#mainContainer{
		width:600px;
		margin:0 auto;
		text-align:left;
		background-color:#FFF;
		border-color:#FF0000 ; 
	}
	
	#leftContainer{
		width:100px;
		float:left;
		padding-left:5px;
		padding-right:5px;
		height:300px;
	}
	
	#contentContainer{
		width:480px;
		float:left;
	}
	

	#dhtmlgoodies_menu{		
		font-family:verdana;	/* Font for main menu items */
		width:100px;	/* Width of main menu */
		
	}
	#dhtmlgoodies_menu	li{	/* Main menu <li> */
		list-style-type: none;	/* No bullets */
		margin:0px;	/* No margin - needed for Opera */
		width:100px;	
	}
	#dhtmlgoodies_menu ul{	
		margin:0px;	/* No <ul> air */
		padding:0px;	/* No <ul> air */
	}
	#dhtmlgoodies_menu ul li ul{	/* Styling for those who don't have javascript enabled */
		padding-left:10px;
	}
	#dhtmlgoodies_menu	li a{
	text-decoration:none;
	color:#000;
	height:20px;
	line-height:20px;
	vertical-align:middle;
	border:1px solid #000;
		background-color:#FFBBBB;	/* Light blue background color */
	margin:1px;
	padding:1px;
	display:block;
	width:100px;	
		}
	#dhtmlgoodies_menu	li a:hover,#dhtmlgoodies_menu .activeMainMenuItem{
		color:#FFF;
		background-color:#D5B639;
	}
	.dhtmlgoodies_subMenu{
		visibility:hidden;
		position:absolute;
		overflow: hidden;
		border:1px  outset #000;
		background-color:#FFFF99;
		font-family:verdana;
		text-align:left;
	
	}
	.dhtmlgoodies_subMenu ul{
		margin:0px;
		padding:5px;	
	}
	.dhtmlgoodies_subMenu ul li{
		list-style-type:none;
		margin:0px;
		padding:3px;	/* 1px of air between submenu border and sub menu item - (the "white" space you see on mouse over )*/
	}
	.dhtmlgoodies_subMenu ul li a{	/* Sub menu items */
		white-space:nowrap;	/* No line break */
		text-decoration:none;	/* No underline */
		color:#FF0000;	/* Black text color #333333 */
		
		height:16px;	/* 16 pixels height */
		line-height:16px;	/* 16 pixels height */
		padding:1px;	/* 1px of "air" inside */
		
		display: block;	/* Display as block - you shouldn't change this */
	}
	.dhtmlgoodies_subMenu ul li a:hover{	/* Sub menu items - mouse over effects */
		color:#FFF;	/* White text */
		background-color:#047114;	/* Blue background */
	}



