/*
---------------------------------------------------------------
  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-mint > li > a { ... } instead of .sm-mint a { ... }
---------------------------------------------------------------*/


/* Menu box
===================*/

	.sm-mint {
		border-bottom:0;
		background:#b32d36;
	}
	.sm-mint-vertical {
		border-right:0;
		border-bottom:0;
	}
	.sm-mint ul {
		padding:0;
		background:#c13037;
		 
		-moz-box-shadow: 0 0 3px #ccc;
		-webkit-box-shadow: 0 0 3px #ccc;
		box-shadow: 0 0 3px #ccc;
	}
	.sm-mint-vertical ul,
	.sm-mint ul ul {
		 
	}


/* Menu items
===================*/

	.sm-mint a {
		border-bottom:0;
		padding:4px 11px;
		color:#ffffff;
		font-size:14px;
		font-weight:bold;
		font-family: "Times New Roman", Times, serif;
		text-decoration:none;
		 
	}
	.sm-mint a:hover, .sm-mint a:focus, .sm-mint a:active {
		color:#eeeeee;
		background:#c13037;
	}
	.sm-mint a.highlighted {
		background:#c13037;
		color:#eeeeee;
		-moz-box-shadow: 0 0 3px #ccc;
		-webkit-box-shadow: 0 0 3px #ccc;
		box-shadow: 0 0 3px #ccc;
	}
	.sm-mint-vertical a {
		
	}
	.sm-mint-vertical a:hover, .sm-mint-vertical a:focus, .sm-mint-vertical a:active,
	.sm-mint-vertical a.highlighted {
		border-bottom-color:#ffffff; !important;
		background:#f9f9f9;
		color:#ffffff;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
	.sm-mint ul a {
		border-bottom:0;
		padding:5px 10px;
		font-size:13px;
		font-weight:normal;
		line-height:normal;
		
	}
	.sm-mint ul a:hover, .sm-mint ul a:focus, .sm-mint ul a:active,
	.sm-mint ul a.highlighted {
		background:#f9f9f9;
		color:#c7363d;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-mint a.current, .sm-mint a.current:hover, .sm-mint a.current:focus, .sm-mint a.current:active {
		border-bottom-color:#ffffff;
	}
	.sm-mint-vertical a.current, .sm-mint-vertical a.current:hover, .sm-mint-vertical a.current:focus, .sm-mint-vertical a.current:active {
		border-right:0;
		border-bottom-color:#fff;
	}
	.sm-mint ul a.current, .sm-mint ul a.current:hover, .sm-mint ul a.current:focus, .sm-mint ul a.current:active {
		border-right:0;
		border-bottom:0;
		font-weight:bold;
	}
	.sm-mint a.has-submenu {
		
	}


/* Sub menu indicators
===================*/

	.sm-mint a span.sub-arrow {
		display:none !important;
	}
	

/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." in the default download package
===================*/

	.sm-mint span.scroll-up, .sm-mint span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		background:#c13037;
		height:20px;
		/* width and position will be automatically set by the script */
	}
	.sm-mint span.scroll-up-arrow, .sm-mint span.scroll-down-arrow {
		position:absolute;
		top:6px;
		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-bottom:8px solid #159ae5; /* tweak size of the arrow */
		border-left:6px dashed transparent;
		border-right:6px dashed transparent;
	}
	.sm-mint span.scroll-down-arrow {
		border-top:8px solid #159ae5; /* tweak size of the arrow */
		border-bottom:0;
	}


/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/




@media screen and (max-width: 920px) {

	/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
	ul.sm-mint{width:auto !important;}
	ul.sm-mint 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-mint>li{float:none;}
	ul.sm-mint>li>a,ul.sm-mint ul.sm-nowrap>li>a{white-space:normal;}
	ul.sm-mint iframe{display:none;}

	/* Uncomment this rule to disable completely the sub menus for small screen devices */
	/*.sm-mint ul, .sm-mint span.sub-arrow, .sm-mint iframe {
		display:none !important;
	}*/


/* Menu box
===================*/

	.sm-mint {
		border:0;
	}
	.sm-mint ul {
		border:0;
		padding:0;
		/* darken the background of the sub menus */
		background:#c13037;
		-moz-border-radius:0 !important;
		-webkit-border-radius:0 !important;
		border-radius:0 !important;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}


/* Menu items
===================*/

	.sm-mint a {
		border:0 !important;
		padding:13px 23px !important;
		background:transparent !important;
		color:#ffffff !important;
		
		-moz-box-shadow:none !important;
		-webkit-box-shadow:none !important;
		box-shadow:none !important;
	}
	.sm-mint a.current {
		font-weight:bold;
	}
	/* add some text indentation for the 2+ level sub menu items */
	.sm-mint ul a {
		border-left:8px solid transparent !important;
	}
	.sm-mint ul ul a {
		border-left:16px solid transparent !important;
	}
	.sm-mint ul ul ul a {
		border-left:24px solid transparent !important;
	}
	.sm-mint ul ul ul ul a {
		border-left:32px solid transparent !important;
	}
	.sm-mint ul ul ul ul ul a {
		border-left:40px solid transparent !important;
	}


/* Sub menu indicators
===================*/

	.sm-mint a span.sub-arrow {
		display:none !important;
	}
	/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
	.sm-mint a.highlighted span.sub-arrow {
		display:none !important;
	}




/* Items separators
===================*/

	.sm-mint li {
		border-top:1px solid #f9f9f9;
	}
	.sm-mint li:first-child {
		border-top:0;
	}

}