﻿/*
---------------------------------------------------------------
  Note that styles you apply to the main menu items are inherited by the sub menus items too.
  If you'd like to avoid this, you could use child selectors (not supported by IE6) - for example:
  .sm-sage > li > a { ... } instead of .sm-sage a { ... }
---------------------------------------------------------------*/



/* Menu box
===================*/

	
	.sm-sage {
		padding: 0px;
		background: #454545;
		
		/*
		background:#eee;
		
		-moz-border-radius:50px;
		-webkit-border-radius:50px;
		border-radius:50px;
		*/
	}
	.sm-sage-vertical {
		padding:10px 0;
		/*
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
		*/
	}
	.sm-sage ul {
		border:1px solid #bbb;
		padding:5px 0;
		background:#fff;
		/*
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
		*/
		-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		box-shadow:0 5px 9px rgba(0,0,0,0.2);
	}
	/* first sub level carets */
	.sm-sage > li > ul:before {
		content:'';
		position:absolute;
		top:-18px;
		left:30px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:9px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #bbb transparent;
	}
	.sm-sage > li > ul:after {
		content:'';
		position:absolute;
		top:-16px;
		left:31px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:8px;
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #fff transparent;
	}
	/* no carets for vertical main */
	.sm-sage-vertical > li > ul:before, .sm-sage-vertical > li > ul:after {
		display:none;
	}
	



/* Menu items
===================*/



	.sm-sage a {
		padding:12px;
		color:#555;
		font-size:12px;
		line-height:13px;
		font-family: Arial,sans-serif;
		text-decoration:none;
	}


	.sm-sage > li > a
	/* top-level items in menu bar */
	{
		color: #eee;
	}
	
	.sm-sage a:hover, .sm-sage a:focus, .sm-sage a:active,
	.sm-sage a.highlighted {
		/* edited for sage colours */
		color: #000000;
		background-color: #ECF6EC;
	}
	
	.sm-sage-vertical a:hover, .sm-sage-vertical a:focus, .sm-sage-vertical a:active,
	.sm-sage-vertical a.highlighted {
		background:#fff;
	}
	.sm-sage a.has-submenu {
		padding-right:25px;
	}
	.sm-sage-vertical a,
 	.sm-sage ul a {
		padding:10px 20px;
	}
	.sm-sage-vertical a.has-submenu,
 	.sm-sage ul a.has-submenu {
		padding-right:40px;
	}
	.sm-sage ul a {
		font-size:12px;
	}
	.sm-sage ul a:hover, .sm-sage ul a:focus, .sm-sage ul a:active,
	.sm-sage ul a.highlighted {
		/* edited for sage colours */
		color:#000000;
		background-color: #ECF6EC;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-sage a.current, .sm-sage a.current:hover, .sm-sage a.current:focus, .sm-sage a.current:active {
		/* edited for sage colours */
		color:#000000;
		background-color: #CFE9CF;
	}


/* Sub menu indicators
===================*/



	.sm-sage a span.sub-arrow {
		position:absolute;
		right:12px;
		top:50%;
		margin-top:-3px;
		/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
		width:0;
		height:0;
		overflow:hidden;
		border-width:4px; /* tweak size of the arrow */
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}
	
	.sm-sage > li > a > span.sub-arrow 
	/* set arrow to light on menu bar items */
	{
		border-color:#eee transparent transparent transparent;
	}

	.sm-sage > li > a.current > span.sub-arrow,
	.sm-sage > li > a.highlighted > span.sub-arrow 
	/* set arrow to dark on highlighted and current menu bar items */
	{
		border-color:#555 transparent transparent transparent;
	}
	
	.sm-sage-vertical a span.sub-arrow,
 	.sm-sage ul a span.sub-arrow {
		right:15px;
		top:50%;
		margin-top:-5px;
		border-width:5px;
		border-style:dashed dashed dashed solid;
		border-color:transparent transparent transparent #555;
	}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/

	.sm-sage span.scroll-up, .sm-sage span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		background:#fff;
		height:20px;
		/* width and position will be automatically set by the script */
	}
	.sm-sage span.scroll-up:hover, .sm-sage span.scroll-down:hover {
		background:#eee;
	}
	.sm-sage span.scroll-up-arrow, .sm-sage span.scroll-down-arrow {
		position:absolute;
		top:0;
		left:50%;
		margin-left:-6px;
		/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
		width:0;
		height:0;
		overflow:hidden;
		border-width:6px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #555 transparent;
	}
	.sm-sage span.scroll-up:hover span.scroll-up-arrow {
		border-color:transparent transparent #D23600 transparent;
	}
	.sm-sage span.scroll-down-arrow {
		top:8px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}
	.sm-sage span.scroll-down:hover span.scroll-down-arrow {
		border-color:#D23600 transparent transparent transparent;
	}


/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/


/* decrease horizontal main menu items left/right padding to avoid wrapping */
@media screen and (max-width: 900px) {

	.sm-sage:not(.sm-sage-vertical) > li > a {
		padding-left:8px;
		padding-right:8px;
	}
	.sm-sage:not(.sm-sage-vertical) > li > a.has-submenu {
		padding-right:25px;
	}
}
@media screen and (max-width: 850px) {

	.sm-sage:not(.sm-sage-vertical) > li > a {
		padding-left:3px;
		padding-right:3px;
	}
	.sm-sage:not(.sm-sage-vertical) > li > a.has-submenu {
		padding-right:25px;
	}
}


@media screen and (max-width: 800px) {

	/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
	ul.sm-sage{width:auto !important;}
	ul.sm-sage ul{display:none;position:static !important;top:auto !important;left:auto !important;margin-left:0 !important;margin-top:0 !important;width:auto !important;min-width:0 !important;max-width:none !important;}
	ul.sm-sage>li{float:none;}
	ul.sm-sage>li>a,ul.sm-sage ul.sm-nowrap>li>a{white-space:normal;}
	ul.sm-sage iframe{display:none;}

	/* Uncomment this rule to disable completely the sub menus for small screen devices */
	/*.sm-sage ul, .sm-sage span.sub-arrow, .sm-sage iframe {
		display:none !important;
	}*/


/* Menu box
===================*/

	.sm-sage {
		padding:0;
		/*
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
		*/
	}
	.sm-sage ul {
		border:0;
		padding:0;
		/* darken the background of the sub menus */
		background:rgba(130,130,130,0.1);
		-moz-border-radius:0;
		-webkit-border-radius:0;
		border-radius:0;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
	/* no carets */
	.sm-sage > li > ul:before, .sm-sage > li > ul:after {
		display:none;
	}


/* Menu items
===================*/

	
	.sm-sage a {
		padding:13px 5px 13px 28px !important;
		color:#eee;
		/* background:transparent !important; */
	}
	
	.sm-sage a.current {
		color:#555;
	}
	/* add some text indentation for the 2+ level sub menu items */
	.sm-sage ul a {
		border-left:8px solid transparent;
	}
	.sm-sage ul ul a {
		border-left:16px solid transparent;
	}
	.sm-sage ul ul ul a {
		border-left:24px solid transparent;
	}
	.sm-sage ul ul ul ul a {
		border-left:32px solid transparent;
	}
	.sm-sage ul ul ul ul ul a {
		border-left:40px solid transparent;
	}


/* Sub menu indicators
===================*/

	.sm-sage a span.sub-arrow,
	.sm-sage ul a span.sub-arrow {
		top:50%;
		margin-top:-9px;
		right:auto;
		left:6px;
		margin-left:0;
		width:17px;
		height:17px;
		font:normal 16px/16px monospace !important;
		text-align:center;
		border:0;
		text-shadow:none;
		background:rgba(255,255,255,0.6);
		/*
		-moz-border-radius:50px;
		-webkit-border-radius:50px;
		border-radius:50px;
		*/
	}
	/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
	.sm-sage a.highlighted span.sub-arrow {
		display:none !important;
	}


/* Items separators
===================*/

	.sm-sage li {
		border-top:1px solid rgba(0,0,0,0.05);
	}
	.sm-sage > li:first-child {
		border-top:0;
	}

}