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


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

/*	.sm-simple,
	.sm-simple ul {
		border:1px solid #bbb;
		background:#fff;
		-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);
	}
*/
	.sm-simple,
	.sm-simple ul {
		border:0px solid #bbb;
		background:tranparent;
		-moz-box-shadow:0 0px 0px rgba(0,0,0,0);
		-webkit-box-shadow:0 0px 0px rgba(0,0,0,0);
		box-shadow:0 0px 0px rgba(0,0,0,0);    
	}/*margin-left:1.2em;*/

/* Custom */
.sm-simple > li{
   width:14.28%;
   margin-right:0;
}
.sm-simple a.no_link{
 cursor: default; 
}


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

	.sm-simple a {
		padding:0px 5px 0px 5px;
		color:#fff;
    background-color:transparent;
		font-size:16px;
		line-height:60px;
		font-family:'Lucida Sans Unicode','Lucida Sans','Lucida Grande',Arial;
		text-decoration:none;
    border:0px solid #D7D2B6;
    margin-right:0em;
    margin-top:0px;
	}
  
  /* Custom */
  .sm-simple > li > a{
    text-align:center; 
  }  
  .sm-simple > li > ul > li:first-child > a{
    margin-top:8px;
  }
  .sm-simple > li > ul > li > a{
 		background:rgba(100,0,20,0.85);
  }
  
	.sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active,
	.sm-simple a.highlighted {
		background:#640014;
		color:#fff;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-simple a.current, .sm-simple a.current:hover, .sm-simple a.current:focus, .sm-simple a.current:active {
		background:#555;
		color:#fff;
	}
	.sm-simple a.has-submenu {
		/*padding-right:32px;*/
    text-align:center;
	}
 	.sm-simple ul a.has-submenu,
	.sm-simple-vertical a.has-submenu {
		padding-right:23px;
	}


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

	.sm-simple a span.sub-arrow {
		position:absolute;
		right:50%;
		top:70%;
    margin-right:-8px;
		margin-top:-6px;
		width:10px;
		height:16px;
		line-height:16px;
    border:0px solid black;
	}
 	.sm-simple ul a span.sub-arrow,
	.sm-simple-vertical a span.sub-arrow {
		right:auto;
		margin-left:-14px;
    margin-left:0;
	}


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

	.sm-simple li {
		border-left:0px solid #f3f3f3;
	}
	.sm-simple li:first-child {
		border-left:0;
	}
	.sm-simple ul li,
	.sm-simple-vertical li {
		border-left:0;
		border-top:0px solid #f3f3f3;
	}
	.sm-simple ul li:first-child,
	.sm-simple-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-simple span.scroll-up, .sm-simple span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		border:solid #bbb;
		border-width:1px 0;
		background:#fff;
		height:20px;
		/* width and position will be automatically set by the script */
	}
	.sm-simple span.scroll-up-arrow, .sm-simple 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-simple span.scroll-down-arrow {
		top:6px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}


