/*menu - list*******************************************************************************************************/
#menu2_holder
{
position:relative;
float:right;
margin-right:6px;
/*border:1px solid black;*/
}


#menu2_list
{
list-style-type:none;	/*it makes the menu horizontaly step 1/3*/
diplay:inline;			/*it makes the menu horizontaly step 2/3*/
font-family:sans-serif; /*here you can set the style for the font*/
font-size:10px;			/*here you can set the size for the font*/
padding:0px;
margin:0px;
}

/*menu items*/
#menu2_list li
{
/*border-top:1px solid #DDD;
border-left:1px solid #DDD;
border-right:1px solid #DDD;*/

float: left;			/*it makes the menu horizontaly step 3/3*/
padding-top:3px;		/*vertical position considering to top*/
text-align:center;		/*arrange the menu item to middle*/
height:18px; 			/*here you can set the menu height*/
/*width:100px;*/		/*here you can set the menu fixed width*/
padding-left:2px;
padding-right:2px;
}


/* separators between the menu items - gap */
#menu2_list .separator		
{
	background-image:url("../separator.jpg");
	width:1px;
	border:none;			/* inactivate the inherited border around the items */
	padding:0;				/* inactivate the inherited padding of items */
}

/*link of menu items*/
#menu2_list li a				
{
	color:#000;				/*basic color of links*/
	text-decoration:none;		
}

/*style of mouse hover*/
#menu2_list li a:hover				
{
	color:#AAA;				
	/*text-decoration:underline;*/
}

/*selected item*/
#menu2_list li.selected 
{
	color:red;
	background-color:blue;
	font-weight:bold;			
}
/*menu - list*******************************************************************************************************/
#menu3_holder
{
	position:relative;
	float:left;
}

#menu3_list 
{
	list-style-type:none;	/*it makes the menu horizontaly step 1/3*/
	diplay:inline;			/*it makes the menu horizontaly step 2/3*/
	font-family:sans-serif; /*here you can set the style for the font*/
	font-size:11px;			/*here you can set the size for the font*/
	padding:0px;
	margin:0px;
}

/*menu items*/
#menu3_list li
{
	border-top:1px solid #DDD;
	border-left:1px solid #DDD;
	border-right:1px solid #DDD;
	
	float: left;			/*it makes the menu horizontaly step 3/3*/
	padding-top:3px;		/*vertical position considering to top*/
	text-align:center;		/*arrange the menu item to middle*/
	height:15px; 			/*here you can set the menu height*/	 
	width:100px;			/*here you can set the menu fixed width*/
	/*padding-left:3px;		
	padding-right:3px;*/	
	background-color:white;	
	
}

/* separators between the menu items - gap */
#menu3_list .separator		
{
	/*background-image:url("separator.jpg");*/
	width:1px;
	border:none;			/* inactivate the inherited border around the items */
	padding:0;				/* inactivate the inherited padding of items */
}

/*link of menu items*/
#menu3_list li a				
{
	color:gray;				/*basic color of links*/
	text-decoration:none;		
}

/*style of mouse hover*/
#menu3_list li a:hover				
{
	color:black;				
	/*text-decoration:underline;*/
}

/*selected item*/
#menu3_list li.selected 
{
	color:white;
	background-color:#13357D;
	/*font-weight:bold;*/
}
