/*
 * Style class used for the box that contains the items' table.
 */
table.xml_menu {
	border-collapse:collapse;
	height:46px;
	text-align:left;
	font-family:Arial;
	font-size:1.3em;
	border-left:1px solid #a4a4a4;
}

table.xml_menu td
{
	color:#595959;
	cursor:pointer;
}

div.item
{
	padding-left:5px;
	padding-right:5px;
}

/*
 * Style class used for menu's items when they are not focused.
 */
td.menu_item_lost_focus 
{
	border-right:1px solid #a4a4a4;
	background-color:#ffffff;
	width:106px;
	
}

/*
 * Style class used for the menu's items when they have the focus on it.
 */
td.menu_item_get_focus 
{
	border-right:1px solid #a4a4a4;

	background:#f1f1f1 url(../img/menu_selected.gif) repeat-x top;
	width:106px;
}

/*
 * Style class used for the box that contains the subitems's table.
 */
div.subitem_group {
	background-color:#ffffff;
	display:none;
	position:absolute;
	margin-left:-2px;
	z-index:1000;
	border:1px solid #a4a4a4;
	margin-top:0px;
	width:140px;
}

/*
 * Style class used for the table that contains the subitems.
*/
table.subitem_group {
	border-collapse:collapse; /* Set the space between all TD elements to zero */
	font-size:0.9em;
}

/*
 * Style class used for subitems when they are not focused.
 */

td.menu_subitem_lost_focus {
	width:120px;
	padding:3px 10px 3px 10px;
}

/*
 * Style class used for subitems when they have the focus on it.
 */
td.menu_subitem_get_focus {
	padding:3px 10px 3px 10px;
	width:120px;
	background:#f1f1f1 url(../img/submenu_selected.gif) repeat-y left;
}

/*
 * Style class used for linked texts menu's items.
 */
a.item:link, a.item:visited
{
	text-decoration:none;
	display:block;
	width: 100%;
	padding-top:26px;
	height: 100%;
	color: #55503a;
}

a.item:hover {
	text-decoration:none;
	color: #55503a;
}

/*
 * Style class used for linked texts subitems.
 */
a.subitem:link, a.subitem:visited   
{
	text-decoration:none;
	display:block;
	width: 100%;
	color: #55503a;
}

a.subitem:hover
{
	text-decoration:none;
	color:#55503a;
}
