#navigation{
	width:100%;
	position:absolute;
	right:0;
	top:0;
	background:#f27022;
	z-index:9999;
}

.sm, 
.sm ul {
}

.sm, 
.sm ul, 
.sm li {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: normal;
	direction: ltr;
}

ul.sm li {
	background:none;
	position: relative;
	float: left;
}

ul.sm a {
	position: relative;
	display: block;
}
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, ul.sm-vertical li {
	float: none;
}
ul.sm a {
	white-space: nowrap;
}
ul.sm ul a, ul.sm-vertical a {
	white-space: normal;
}
* html ul.sm-vertical li {
	float: left;
	width: 100%;
}
* html ul.sm-vertical ul li {
	float: none;
	width: auto;
}
*:first-child+html ul.sm-vertical>li {
	float: left;
	width: 100%;
}
ul.sm ul.sm-nowrap>li>a {
	white-space: normal;
}
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;
}
ul.sm {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}


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

.sm a.homelink{
	background-image:url(../images/layout/home.png) !important;
	background-repeat:no-repeat !important;
	background-position:center !important;
	width:24px;
}

.sm a {
	padding: 0 13px;
	height:45px;
	text-align:center;
	color: #fff;
	line-height:45px;
	font-size:14px;
	font-weight: 300;
	text-decoration: none;
	text-transform:uppercase;
}
.sm a:hover, 
.sm a:focus, 
.sm a:active,  
.sm a.highlighted {
	color:#fff;
	background:#91623f;
}

.sm li li{
	border:none !important;
}

.sm li li a{
	background:#91623f;
	height:auto !important;
	text-align:center;
	color: #fff;
	text-align:left;
	line-height:normal !important;
	font-size:14px;
	padding:11px 15px;
	text-decoration: none;
	text-transform:none;
	border:none !important;
}

.sm li li a:hover{
	background:#86542e;
	color:#fff;
}

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

.sm a span.sub-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	font-size:0;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid white;
	display:none;
}
.sm ul a span.sub-arrow,
.sm-vertical a span.sub-arrow {
	right: auto;
	margin-left: -14px;
}
/*=======Tambahan===========*/
.sm li ul li{
	width:300px;
}
/* Items separators
===================*/

.sm li:first-child {
	border-left: 0;
}

.sm ul li:first-child,  
.sm-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- span.scroll-up, 
.sm 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 span.scroll-up-arrow, 
.sm 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 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 {
	width: auto !important;
}
ul.sm 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>li {
	float: none;
}
ul.sm>li>a, ul.sm ul.sm>li>a {
	white-space: normal;
}
ul.sm iframe {
	display: none;
}

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


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

.sm 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 a {
	padding: 5% !important;
	width:90% !important;
	line-height:normal !important;
	height:auto !important;
}
	



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

.sm a span.sub-arrow {
	display:block;
}
/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
.sm a.highlighted span.sub-arrow {
	display: none !important;
}
/* Items separators
===================*/

.sm li {
	border-left: 0;
	border-top: 1px solid rgba(0,0,0,0.05) !important;
}
.sm li:first-child {
	border-top: 0 !important;
}
/*=======Tambahan===========*/
.sm li ul li{
	width:100%;
}
}

/*======================*/