﻿/*****************************************************************************************************
 *												  MENU START BLOCK									 *
 * NOTES:																							 *
 *		Includes settings for elements, element ids and classes used in the menu control!			 *
 *																									 *
 *****************************************************************************************************/

/*****************************************************************************************************
 *						Settings for elements which inherit 'homeMenuItem' class					 *
 *****************************************************************************************************/
.homeMenuItem
{
	font-size: 12px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif, Calibri;
	font-weight: bold;
	font-style: normal;
	color: #bdbfcb;
	vertical-align: middle;
}

/*****************************************************************************************************
 *							Settings for elements which inherit 'menuWrapper' class					 *
 *****************************************************************************************************/
.menuWrapper
{
	font-size: 12px;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif, Calibri;
	font-weight: normal;
	font-style: normal;
	margin: 6px; 
	border-top: solid 1px #7f736d;
}

/*****************************************************************************************************
 *							 Settings for elements which inherit 'menuItem' class					 *
 *****************************************************************************************************/
.menuItem
{
	font-weight: bold;
	padding: 6px 0px 6px 6px;
	color: #bdbfcb;
	vertical-align: middle;
}
/*****************************************************************************************************
 *							 Settings for elements which inherit 'menuItem' class					 *
 *****************************************************************************************************/
.menuItemDisabled
{
	font-weight: bold;
	padding: 6px 0px 6px 6px;
	color: #bdbfcb;
	vertical-align: middle;
	background-color:Transparent;
}
/*****************************************************************************************************
 *							Settings for elements which inherit 'submenuItem' class					 *
 *****************************************************************************************************/
.submenuItem
{
	font-weight: normal;
	padding: 3px 0px 3px 6px;
	color: #bdbfcb;
	vertical-align: middle;
}

.hideSubmenu
{
	display: none;
	cursor: pointer;
}

.showSubmenu
{
	display: block;
	cursor: pointer;
}

/*****************************************************************************************************
 *			    Settings for anchor elements which inherit 'menuItem', 'homeMenuItem' or			 *
 *										     'submenuItem' class									 *
 *****************************************************************************************************/
.menuItem a, .homeMenuItem a, .submenuItem a
{ 
	color: #bdbfcb;
	cursor: pointer;
	text-decoration: none;
}

/*****************************************************************************************************
 *			Settings for anchor elements which inherit either 'menuItem', 'homeMenuItem' or			 *
 *							  'submenuItem' and 'selectedMenuItem' class							 *
 *****************************************************************************************************/
.menuItem a.selectedMenuItem, .homeMenuItem a.selectedMenuItem , .submenuItem a.selectedMenuItem
{	
	color: #9cd1f3;
	cursor: pointer;
	text-decoration: none;
}

/*****************************************************************************************************
 *		  Settings for anchor hover elements which inherit either 'menuItem', 'homeMenuItem' or		 *
 *							  'submenuItem' and 'selectedMenuItem' class							 *
 *****************************************************************************************************/
.menuItem  a.selectedMenuItem:hover, .homeMenuItem a.selectedMenuItem:hover, 
.submenuItem a.selectedMenuItem:hover
{	
	color: #9cd1f3; 
	cursor: default;
	text-decoration: none;
}

/*****************************************************************************************************
 *	      Settings for anchor hover elements which inherit either 'menuItem', 'homeMenuItem' or		 *
 *										   'submenuItem' class										 *
 *****************************************************************************************************/
.menuItem a:hover, .homeMenuItem a:hover, .submenuItem a:hover
{
	color: #bdbfcb; 
	cursor: pointer;
	text-decoration: underline;
}

/*****************************************************************************************************
 *												  MENU END BLOCK									 *
 *****************************************************************************************************/
