/* SmartMenus Core CSS (it's not recommended editing this)
===============================================================*/

#mmmenu,#mmmenu ul,#mmmenu li				{ display:block;list-style:none;padding:0;margin:0;line-height:normal;direction:ltr;}
ul.sm										{ padding:0px; margin:0px; float:left;-webkit-tap-highlight-color:rgba(0,0,0,0);}
ul.sm li									{ position:relative;float:left;}
ul.sm a										{ position:relative;display:block;white-space:nowrap;}
ul.sm a.disabled							{ cursor:default;}
ul.sm ul									{ position:absolute;top:-999999px;left:-800px;width:100px;}
ul.sm-rtl									{ direction:rtl;}
ul.sm-rtl li								{ float:right;}
ul.sm ul li									{ float:none;}
ul.sm ul a									{ white-space:normal;}
ul.sm ul.sm-nowrap>li>a						{ white-space:nowrap;}
ul.sm:after									{ content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden;}
* html ul.sm								{ height:1px;}
*:first-child+html ul.sm					{ min-height:1px;}
ul.sm li *,ul.sm li *:before,ul.sm li *:after{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}
/*
---------------------------------------------------------------
  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-clean > li > a { ... } instead of .sm-clean a { ... }
---------------------------------------------------------------*/


/* Menu box
===================*/

.sm-clean { }
.sm-clean ul { border:0px solid #029c49;padding:5px 0;background:#029c49;-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-clean > 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 #029c49 transparent;}
.sm-clean > 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 #029c49 transparent;}


/* Menu items
===================*/

.sm-clean a							{ padding:17px 7px;color:#fff;font-size:14px;line-height:1.1em;font-family: Arial, Helvetica, sans-serif;text-decoration:none; font-weight:bold}
.sm-clean a:hover					{ color:#77fdb5}
.sm-clean ul a 						{ padding:10px 15px; font-size:13px; color:#fff;}
.sm-clean ul a.has-submenu 			{ padding-right:40px;}
.sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active,.sm-clean ul a.highlighted {color:#222;background:#fcedb7;}
/* current items - add the class manually to some item or check the "markCurrentItem" script option */
.sm-clean a.current, .sm-clean a.current:hover, .sm-clean a.current:focus, .sm-clean a.current:active {color:#222; background:#fcedb7;}


/* Sub menu indicators
===================*/
.sm-clean 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:#fff transparent transparent transparent; display: none; padding:0px; margin:0px;}
.sm-clean-vertical a span.sub-arrow,
.sm-clean 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 #fff; display:block}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/
.sm-clean li.Breadcrumb a span.sub-arrow{border-style:solid dashed dashed dashed;border-color:#fff transparent transparent transparent;}

.sm-clean span.scroll-up, .sm-clean 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-clean span.scroll-up:hover, .sm-clean span.scroll-down:hover {background:#eee;}
.sm-clean span.scroll-up-arrow, .sm-clean 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-clean span.scroll-up:hover span.scroll-up-arrow {border-color:transparent transparent #D23600 transparent;}
.sm-clean span.scroll-down-arrow {top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent;}
.sm-clean span.scroll-down:hover span.scroll-down-arrow {border-color:#D23600 transparent transparent transparent;}