/*
---------------------------------------------------------------
  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-simple2-menu > li > a { ... } instead of .sm-simple2-menu a { ... }
---------------------------------------------------------------*/


/* Menu box
===================*/

	.sm-simple2-menu {

	}

	.sm-simple2-menu > ul {
		background:#F5F5F5;
	}

	.sm-simple2-menu ul {
		background:#FFFFFF;
		-moz-box-shadow:0 1px 1px rgba(0,0,0,0.2);
		-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.2);
		box-shadow:0 1px 1px rgba(0,0,0,0.2);
		z-index: 10000;
	}	

	.sm-simple2-menu > li {
	    color: #737373;
	    font-size: 14px;
	    margin: 0 4px;
	    padding: 0px 0px 0px 0px;
	    text-decoration: none;
	    text-overflow: ellipsis;
	    transition: border-color 0.218s ease 0s;
	    white-space: nowrap;
	}

	.sm-simple2-menu > li:first-child {
		margin-left: 0px;
	}		

	.sm-simple2-menu > li:hover, .sm-simple2-menu > li.hoverli {
	}	

	.sm-simple2-menu > li > a {
		padding: 5px 5px;
	}

	.sm-simple2-menu > li:first-child > a {
		padding-left: 0px;
	}	

	.sm-simple2-menu > li:hover > a > span.sub-arrow {
		opacity: 0.9;
	}


/* Menu items
===================*/

	.sm-simple2-menu a {
		padding:11px 20px;
		color:#555;
		font-size:13px;
		line-height:14px;
		font-family:'Lucida Sans Unicode','Lucida Sans','Lucida Grande',Arial,sans-serif;
		text-decoration:none;
	}
	.sm-simple2-menu li ul a:hover, .sm-simple2-menu li ul a:focus, .sm-simple2-menu li ul a:active,
	.sm-simple2-menu li ul a.highlighted {
		color: #FF9900 !important;
		background-color: #FFFFFF;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-simple2-menu a.current, .sm-simple2-menu a.current:hover, .sm-simple2-menu a.current:focus, .sm-simple2-menu a.current:active {
		background:#555;
		color:#fff;
	}
	.sm-simple2-menu a.has-submenu {
		padding-right:32px;
	}
 	.sm-simple2-menu ul a.has-submenu,
	.sm-simple2-menu-vertical a.has-submenu {
		padding-right:23px;
	}


/* Sub menu indicators
===================*/

	.sm-simple2-menu a span.sub-arrow {
		position:absolute;
		right:0px;
		top:50%;
		width:7px;
		height:5px;
		line-height:21px;
		background-image: url('../../images/smartmenu/marker-down-white.png');
		background-repeat: no-repeat;
		background-position: 0 0;
		overflow: hidden;
		text-indent: 1000px;
		margin-top: -3px;
		opacity: 0.7;
	}
 	.sm-simple2-menu ul a span.sub-arrow,
	.sm-simple2-menu-vertical a span.sub-arrow {
		right:auto;
		background-image: url('../../images/smartmenu/marker-right-white.png');
		left: 3px;
		height: 7px;
	}


/* Items separators
===================*/

	.sm-simple2-menu li {
	}
	.sm-simple2-menu li:first-child {
	}
	.sm-simple2-menu ul li,
	.sm-simple2-menu-vertical li {
	}
	.sm-simple2-menu ul li:first-child,
	.sm-simple2-menu-vertical li:first-child {
		border-top:0;
	}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/

	.sm-simple2-menu span.scroll-up, .sm-simple2-menu span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		border:solid #bbb;
		border-width:1px 0;
		background:#fff;
		height:22px;
		/* width and position will be automatically set by the script */
	}
	.sm-simple2-menu span.scroll-up-arrow, .sm-simple2-menu span.scroll-down-arrow {
		position:absolute;
		top:-2px;
		left:50%;
		margin-left:-8px;
		/* 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:8px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #555 transparent;
	}
	.sm-simple2-menu span.scroll-down-arrow {
		top:6px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}


/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/


@media screen and (max-width: 640px) {

	/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
	ul.sm-simple2-menu{width:auto !important;}
	ul.sm-simple2-menu 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-simple2-menu>li{float:none;}
	ul.sm-simple2-menu>li>a,ul.sm-simple2-menu ul.sm-nowrap>li>a{white-space:normal;}
	ul.sm-simple2-menu iframe{display:none;}

	/* Uncomment this rule to disable completely the sub menus for small screen devices */
	/*.sm-simple2-menu ul, .sm-simple2-menu span.sub-arrow, .sm-simple2-menu iframe {
		display:none !important;
	}*/


/* Menu box
===================*/

	.sm-simple2-menu ul {
		border:0;
		/* darken the background of the sub menus */
		background:rgba(100,100,100,0.1);
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}


/* Menu items
===================*/

	.sm-simple2-menu a {
		padding-top:13px;
		padding-bottom:13px;
		background:transparent !important;
		color:#555 !important;
	}
	.sm-simple2-menu a.current {
		background:#555 !important;
		color:#fff !important;
	}
	.sm-simple2-menu a.has-submenu {
		padding-right:23px;
	}
	/* add some text indentation for the 2+ level sub menu items */
	.sm-simple2-menu ul a {
		border-left:8px solid transparent;
	}
	.sm-simple2-menu ul ul a {
		border-left:16px solid transparent;
	}
	.sm-simple2-menu ul ul ul a {
		border-left:24px solid transparent;
	}
	.sm-simple2-menu ul ul ul ul a {
		border-left:32px solid transparent;
	}
	.sm-simple2-menu ul ul ul ul ul a {
		border-left:40px solid transparent;
	}


/* Sub menu indicators
===================*/

	.sm-simple2-menu a span.sub-arrow {
		right:auto;
		margin-left:-14px;
	}
	/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
	.sm-simple2-menu a.highlighted span.sub-arrow {
		display:none !important;
	}


/* Items separators
===================*/

	.sm-simple2-menu li {
		border-left:0;
		border-top:1px solid rgba(0,0,0,0.05) !important;
	}
	.sm-simple2-menu li:first-child {
		border-top:0 !important;
	}

}