﻿        #DivMainmenuC{
        z-index: 20000;                
        }	
        #MainMenuUL {
		margin:0; 
		padding:0; 
		list-style:none;
		
	        }	
	/*<td valign="top"  style=" width: 180px;height: 33px"><AryanicCMS:searchbox:1:2:1:000000:ff0000:1:1:0:0:0:0:/uploads/se_279.jpg>
</td>*/
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#MainMenuUL li {
			float:right; 
			display:block; 
			height: 28px; 
			position:relative;
			z-index:500; 
			margin:0 2px;
			font-family: Tahoma, Arial, Helvetica, sans-serif;
			font-size: 10px;
			direction: rtl;
		}
		
		/* this is the parent menu */
		#MainMenuUL li a {
			display:block; 
			padding:8px 5px 0 5px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center;
			 
		}
		#MainMenuUL li:hover {
			color:#000;
			background-color:  #ccc;
		}

		#MainMenuUL li:hover a {
			color:#000;
			background-color:  #ccc; 
		}


		#MainMenuUL li a:hover {
			color:#000;
			background-color:  #ccc  ;
		}
	
		/* you can make a different style for default selected value */
		#MainMenuUL a.selected {
			color:#fff;
			background-color : #ccc ;
		}
	
		/* submenu, it's hidden by default */
		#MainMenuUL ul {
			position:absolute; 
			right:0; 
			display:none; 
			margin:0 0 0 0; 
			padding:0; 
			top:  28px; 
			list-style:none;
		}
		
		#MainMenuUL ul li {
			width: 230px;
			float:right; 
			border-top:1px solid #fff;
			position:relative;
			background-color: #ccc ;
		
		}
		
		/* display block will make the link fill the whole area of LI */
		#MainMenuUL ul a {
			display:block;  
			height:20px;
			padding: 8px 5px; 
			color:#000;
			background-color: #ccc ;
			 
		}
		
		#MainMenuUL ul a:hover {
			text-decoration:none ;
			color: #000;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #MainMenuUL ul {
			margin:0 0 0 0;
		}

		#MainMenuUL ul li ul{
			position:absolute; 
			right:200px; 
			top:-1px;
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#MainMenuUL ul li {

            width: 230px;
 			float:left; 
			border-top:1px solid #fff;
		}

