/*HOME CSS*/
ul.cssMenu, ul.cssMenu ul
        {
        	list-style:none;
        	margin:0; padding:0;
        	position: relative;
        	imagesrc:bullet-4.gif;        	
        	
        }
		
		/*Style for 1st level menu header*/
        ul.cssMenu li
        { 
        	position: relative; 
        	float: center;	      	
        	zoom: 1; /*Needed for IE*/
  
        }
        ul.cssMenu li:hover
       { 
	     	TEXT-ALIGN: left;	
	     	background:#2E2E2C;	     	    	
        }

        ul.cssMenu li a
        {
			/*Menu link styles*/
			
		FONT: 12px/120% helvetica; 
	   	FONT-WEIGHT: bold;
	    FONT-FAMILY:  helvetica, verdana, sans-serif, arial,trebuchet, tahoma;	
       	display: block; 
       	padding: 6px; 
       	color:2E2E2C;     	   
       	margin-left: 5px;        	        
			        	
        }
        
        /* Building menu items - for 2nd and more level menu items
                	list-style-image:url('bullet-4.gif');
                	
        */
        ul.cssMenu ul 						
        { 
        	display:none; /*initially menu item is hidden*/
        	position: absolute; /*absolute positioning is important for menu to float*/
			width: 150px; 			
			/*Formating of menu items      BACKGROUND-COLOR: #9D8D4D; */
        	border:1px solid #AAAAAA;

        	padding:1px;
        	color:000;
        	background:#2E2E2C;	
			/*optional - to change position of 2nd level menu item*/
			top: 100%; 
        	left: 0;      

        }
/*Formating of menu items      BACKGROUND-COLOR: #9D8D4D; */

     ul.cssMenu ul li
        { 
        	background: #2E2E2C; 	
			border-bottom: 1px solid #DDDDDD; 
			float: none; 
			BACKGROUND-COLOR: #9D8D4D; 
		}
									  
     ul.cssMenu ul li a
        { 
        	width: 100%; 
        	display: block; 
        	color:810000;
        } 

        /* Menu item position for 3rd level and more */
        ul.cssMenu ul ul
        { 
        	left: 100%; 
        	top: 0; 
        }
        
        /* Hover effect for menu*/
        ul.cssMenu li:hover > ul 			
        { 
        	display:block;
        }
    </style>