﻿#dhtmlgoodies_menu{		
		font-family:arial;	/* Font for main menu items */
		width:150px;	/* Width of main menu */
		
	}
	#dhtmlgoodies_menu	li{	/* Main menu <li> */
		list-style-type:none;	/* No bullets */
		margin:0px;	/* No margin - needed for Opera */
		
	}
	#dhtmlgoodies_menu ul{	
		margin:0px;	/* No <ul> air */
		padding:0px;	/* No <ul> air */
	}
	#dhtmlgoodies_menu ul li ul{	/* Styling for those who doesn't have javascript enabled */
		padding-left:10px;
	}
	#dhtmlgoodies_menu	li a{	/* Main menu links */
		text-decoration:none;	/* No underline */
		color:#FFFFFF;	/* Black text color */
		height:29px;	/* 20 pixel height */
		width:144px;
		background-color:#FAFAFA;	/* Light blue background color */
		background-image:url("../images/bg-l.gif");
		display:block;
        line-height:28px;
        padding-left:17px;
        font-weight:bold;
        margin-bottom:0px;
	}
	#dhtmlgoodies_menu	li a:hover,#dhtmlgoodies_menu .activeMainMenuItem{
		color:#FFFF66;
		background-color:#317082;
	}
	.dhtmlgoodies_subMenu{
		visibility:hidden;
		position:absolute;
		overflow:hidden;
		background-color:#FAFAFA;
		font-family:arial;
		text-align:left;
	
	
	}
	.dhtmlgoodies_subMenu ul{
		margin:0px;
		padding:0px;	
		border:1px solid #000000;
	}
	.dhtmlgoodies_subMenu ul li{
		list-style-type:none;
		margin:0px;
		padding:1px;	/* 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: #000; /* Black text color */
    padding-right: 20px;
    padding-left: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    height: 16px; /* 16 pixels height */
    line-height: 16px; /* 16 pixels height */
    display: block; /* Display as block - you shouldn't change this */
    font-weight: bold;
    border-bottom: 1px solid;
}
	.dhtmlgoodies_subMenu ul li a:hover{	/* Sub menu items - mouse over effects */
		color:#FFF;	/* White text */
		background-color:#317082;	/* Blue background */
		
	}