/*==================================================================
 * JQUERY MENUS - NOTE - these styles have been edited to work for sidebars - might need some customization still for mobile menus
 *================================================================*/

/*#block-jquerymenu-22 { width: 181px; }*/

.block-jquerymenu { 
	width: 100%;
	margin: auto;
	/*margin-top: 20px;
	margin-bottom: 20px;*/
	/*background-color: #f9f8f6;*/
	/*background-color: #f47936;*/
	
	/*-webkit-border-radius: 15px 15px 15px 15px;
	-moz-border-radius: 15px 15px 15px 15px;
	border-radius: 15px 15px 15px 15px;
	border-bottom: 5px solid #acacac;*/
	
/*	-webkit-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.10);
	-moz-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.10);
	box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.10); */
}

.block-jquerymenu h2 { 
	/*padding: 10px;*/
}

.block-jquerymenu ul li { 
	list-style: none;
}

ul.jquerymenu { 
	padding: 0px;
	margin: 0px;
	/*width: 90%;*/
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #f3f3f3;
	border: 1px solid #d2d2d2;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	overflow: hidden;
}

ul.jquerymenu li {
	display: block;
	width: 100%;	
	/* DO NOT SET height or line-height here - this does not work */
}

ul.jquerymenu li a {
	display: block;
	width: 91%;
	height: 100%;
	line-height: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5%;
	padding-right: 5%;
	color: #373737;
	font-weight: normal; /* needs to be a bit heavier */
}

ul.jquerymenu li a:hover {
	background-color: #9e9c9d;
	color: #fff;
}

/* note depth-2 class is applied when needed - be careful where this class is used - sidebar menus will use this occationallly : but mostly not! - review use in main menu */

ul.jquerymenu li a {
	display: block;
	width: 90%;
	padding-left: 10%;
	padding-right: 0;
}

ul.jquerymenu li.leaf {
	/*background-color: pink;
	border-bottom: 1px solid #dbdbdc;*/
}

/* span = EXPAND/COLLAPSE BUTTON */
ul.jquerymenu li.parent span.closed {
	background-image: url(images/controls.png);
	background-repeat: no-repeat;	
}

ul.jquerymenu li.parent span.open { 
	background: url(images/controller/left-nav-ctrl.png);
	background-repeat: no-repeat;
	background-position: left top;
	vertical-align: middle;
	display: block;
	position: relative;	
	width: 22px;
	height: 22px;
	cursor: pointer;
	float: right;
}

ul.jquerymenu li.parent span.closed {
	background-color: transparent;
	background-image: url(images/controller/left-nav-ctrl.png);
	background-repeat: no-repeat;
	background-position: right top;
	vertical-align: middle;
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
	float: right;
}


ul.jquerymenu li.parent a { 
	/*display: block;
	width: 90%;
	color: #373737;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5%;
	padding-right: 5%;*/
}

ul.jquerymenu li.parent a:hover { 
	/*display: block;
	width: 90%; 
	text-decoration: none;
	background-color: #f47936;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5%;
	padding-right: 5%;
	margin: 0;*/
}

/* SPECIAL STYLING FOR SOLUTIONS MENU - experimental */
ul.jquerymenu li a.mspcsp {
	/*background-color: orange;*/
}

ul.jquerymenu li a.mspcsp:hover {
	/*background-color: orange;*/
}

ul.jquerymenu li a.jqm-depth-2 {
	/*background-color: #f47936;*/
}

ul.jquerymenu li a.mobile {
	/*background-color: lightblue;*/
}

ul.jquerymenu li a.enterprise {
	/*background-color: green;*/
}

ul.jquerymenu li.leaf { 
	/*background-color: #fdf0e8;
	border: 1px solid #f6b796;*/
}

ul.jquerymenu li.open { 
	/*padding-left; 10px;*/
}

ul.jquerymenu li.parent ul li.leaf a:hover { 
	/*color: #4b4b4b;
	background: #dadada; 
	font-weight: normal; 
	text-decoration: none;*/
}

ul.jquerymenu li.leaf a { 
	/*color: #9f9f9f; 
	font-weight: normal; 
	line-height: 15px;*/
}

/* TODO - busy working here, trying to style "sections" 
.block-jquerymenu ul.jquerymenu li.leaf .depth-1 { 
	background-color: #f6b794;
}*/

/* CUSTOM CORNERS TO SOLVE HOVER 
ul.jquerymenu li.first a, 
ul.jquerymenu li.first a:hover { 
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

ul.jquerymenu li.last a, 
ul.jquerymenu li.last a:hover { 
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
*/

ul.jquerymenu li.open { 
	/*border-right: 1px solid #f6b794;*/
	/*background: #f6b794;*/
	/*padding-top: 5px;*/
	/*margin-bottom: 5px;*/
}

ul.jquerymenu li.open {
	/*padding-bottom: 5px;*/
}
