/*----------------------------------------------------------------------*/
/*   DMS - Diwan Menu System - Version 2.0 - May 24, 2005               */
/*   (c)2005 - Harish Diwan. All Rights Reserved.                       */
/*   No part of this code to be used, copied or modified without        */
/*   prior written permission.	Email : DiwanH@Yahoo.com                */
/*----------------------------------------------------------------------*/

/*---- MAIN MENU STYLES ------------------------------------------------*/
.dms {
    padding: 0px;
	margin: 0; 
}
.dms li {
	position: relative;
	width: 115px;
	list-style-image: none;
	list-style-type: none;
 	font: 10pt verdana, sans-serif;
	font-family: arial;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: none;
	padding: 1 3 1 3;
	color: White;
    background: transparent;
	cursor: pointer;
	line-height: 20px;
}
/*---- 1st SUB-MENU STYLES ---------------------------------------------*/
.dms ul{
	display: block; /* initially set to display - IE 5+ fix */
	position: absolute;
	top: 0;
	left: 117px;
	width: 210px;
	margin: 0;
    padding: 0;
	border: 2px solid Navy; 
	background: White;
}
.dms ul li{
	width: 206px; /* ul width - (2 x border width) */
    font-family: arial;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: none;
	color: Navy;
	padding: 2 2 2 2;
/*	border-top: 1px solid Maroon; */
}
/*---- 2nd or more sub-menu styles -------------------------------------*/
.dms ul ul{
	left: 208px;
}
