/* ========== MAIN DIV THAT HOLDS THE ENTIRE MENU ========== */
.menu{
	width:100%; 
	height:30px;
    font-family: 'Open Sans Semibold', Arial, sans-serif;
	font-size: 12px;
	text-transform:uppercase;
	font-size:12px;
	margin:0px auto 0; 
	padding:1px 0;
	}
.menu .pertama {background:url(../image/bg_menu.jpg) top repeat-x; width:100%}
.menu .kedua {background:url(../image/bg_menu_hover.png) bottom repeat-x; width:100%}
.menu .kedua .sempalan {width:54px;}

.menu .pertama li { border-right:1px solid #185427;}
.menu .kedua li { border-right:1px solid #C78116;}
/* ========== DIV THAT HOLDS MAIN LINKS ========== */
.menu ul{
	margin:0; 
	padding:0; 
	float:left; 
	list-style:none;
	margin-left:0px;
	}
/* ========== MAIN LINKS ========== */
.menu ul li{
	position:relative;
	float:left; 
	}
.menu ul li a{
	display:block;
	padding:10px; 
	color:#fff; 
	text-transform:uppercase; 
	text-decoration:none;
	-webkit-transition:background 190ms ease-in, color 190ms ease-in;
	-moz-transition:background 190ms ease-in, color 190ms ease-in;
	-ms-transition:background 190ms ease-in, color 190ms ease-in;
	-o-transition:background 190ms ease-in, color 190ms ease-in;
	transition:background 190ms ease-in, color 190ms ease-in;
	}
/* ========== MAIN LINKS ON MOUSEOVER  ========== */
.menu ul:hover li.active > a{
	background:#FF6600; 
	color:#FFF; 
	}	
.menu ul li.active > a, .menu ul li:hover > a, .menu ul li.active:hover > a{
	background:url(../image/bg_menu_hover.png) bottom repeat-x; 
	color:#FFF; 
	}

ul.kedua  li.active > a, ul.kedua li:hover > a, ul.kedua li.active:hover > a{
	background:url(../image/bg_menu.jpg) bottom repeat-x; 
	color:#FFF; 
	}

	
	
/* ========== MAIN LINKS ON MOUSE CLICK ========== */	
.menu ul li a:active, .menu ul li.active a:active{
	color:#CCC;
	}
/* ========== DROPDOWN MENU ========== */
.menu ul ul{
	position:absolute;
	visibility:hidden;
	opacity:0;
	margin:10px 0 0 10px;
	padding-top:4px; 
	background:#C4E958; 
	border-bottom:solid 2px #B4E225;
	-webkit-border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius:0 0 3px 3px;
	border-radius:0 0 3px 3px;
	-webkit-transition:all 210ms ease-out 10ms;
	-moz-transition:all 210ms ease-out 10ms;
	-ms-transition:all 210ms ease-out 10ms;
	-o-transition:all 210ms ease-out 10ms;
	transition:all 210ms ease-out 10ms;	 z-index: 1000;

	}
.menu ul li:hover > ul{
	visibility:visible;
	opacity:1;
	margin:0;
	}
/* ========== LINKS IN DROPDOWN MENU ========== */
.menu ul ul li{
	cursor:pointer;
	border:solid 1px #B4E225;
	border-bottom:none;
	}
.menu ul ul li a{
	min-width:134px; 
	height:25px;
	padding-right:0; 
	font-size:18px; 
	color:#003470; 
	line-height:32px;
	text-transform:none;
	}
.menu ul ul li span{
	position:absolute;
	top:0;
	right:10px;
	font-size:16px; 
	}
/* ========== LINKS ON MOUSEOVER IN DROPDOWN MENU ========== */
.menu ul ul li:hover > a{
	background:#96BF1A;
	}
/* ========== LINKS ON MOUSE CLICK IN DROPDOWN MENU ========== */
.menu ul ul li a:active{
	color:#CCC; 
	}
/* ========== DROPDOWN MENU LVL 2,3,4,... ========== */
.menu ul ul ul{
	top:-1px;
	left:100%;
	padding:0;
	}
/*==================================================*******/

.menu input#dropdown, .menu label{
		display:none;
		position:absolute;
		top:5px;
		right:10px;
		width:46px;
		height:30px;
		}
	.menu input#dropdown{
		opacity:0;
		}
	.menu label{
		background:url(../list_menu.png) no-repeat center;
		webkit-border-radius:3px;
		-moz-border-radius:3px;
		border-radius:3px;
		}
	.menu label:hover{
		cursor:pointer;
		}
	.menu input#dropdown:checked ~ label{
		-webkit-box-shadow:inset 0 0 28px #2A2A2A, inset 0 0 6px #1A1A1A;
		-moz-box-shadow:inset 0 0 28px #2A2A2A, inset 0 0 6px #1A1A1A;
		box-shadow:inset 0 0 28px #2A2A2A, inset 0 0 6px #1A1A1A;
		}
	.menu input#dropdown:checked ~ ul{
		display:block;
		}	
	.menu p{
		display:none;
		position:absolute;
		top:7px;
		left:14px;
		margin:0;
		font:19px Arial, Helvetica, sans-serif;
		color:#9E9E9E;
		font-weight:bold;
		}
@media only screen and (max-width: 1024px){
	.menu{
		width:95%;
		background:#006600;
		}
	.kedua ul {margin-top:-20px; }
	.kedua li{
		background:#006600;
		}
	.menu #search_box{
		display:none;
		}
	.menu ul ul{
		margin:0;
		}
	}
@media screen and (max-width:992px){
	.menu input, .menu label, .menu p {
		display:block; 
		}
	.home, .menu .kedua .sempalan {display:none;}
	.menu{
		width:62%;
		min-height:40px;
		height:100%;
		position:relative;
		overflow:hidden;
		margin-bottom:5px;
		}
	.menu ul{
		margin-top:46px;
		display:none;
		}
	.menu ul li{
		width:100%;
		background:#009900;
		}
	.menu ul li a{
		height:15px;
		padding:5px;
		font-size:14px;
		}
	.menu ul ul{
		width:100%;
		display:block;
		position:static;
		visibility:visible;
		opacity:1;
		margin:0;
		padding:0;
		overflow:hidden;
		border:none;
		background:none;
		}
	.menu ul ul li{
		width:25%;
		float:left;
		border:none;
		}
	.menu ul ul li a{
		width:auto;
		padding:0;
		text-align:center;
		color:#888;
		font-size:13px;
		}
	.menu ul ul li:hover a{
		background:#C4E958;
		}
	.menu ul ul ul, .menu ul ul li a span{
		display:none;
		}
	ul.kedua { margin-top:2px;}
	}
@media only screen and (max-width: 480px) {
	.menu{
		width:92%;
		}
	}

.menu .current  {color:#000; background: url(../image/bg_menu_hover.png) bottom center; height:16px; margin-top:0px;}
ul.kedua .current  {color:#000; background: url(../image/bg_menu.jpg) bottom center; height:16px; margin-top:0px;}

.menu .home { height:43px;}
.menu .home a:hover { background:none;}


/* Search Area
=================================*/
.search {
	position: relative;
}
#search { background: url(../image/search-btn-active.png) no-repeat; width: 41px; height:35px; float: right; cursor: pointer; }
.search_field {
	position: absolute;
	top:-2px;
	right:35px;
	padding-bottom: 19px;
	width: 73%;
}
.search_field input {
	color: #343434 !important;
	float: left;
	font-size: 26px !important;
	height:32px !important;
	margin-top: 1px;
	padding-left: 26px !important;
	padding-right: 62px;
	width: 88%;
}
.search_field button {
	border: none;
	padding: 26px 19px 26px 19px;
	float: right;
	padding: 26px 19px;
	position: absolute;
	right: 0;
	top: 0px;
}
.search .plus {
	background: url(../image/search-btn.png) no-repeat !important;
	height:35px !important;
}
#searchsubmit{ height:34px; padding:10px 25px; margin-top:3px; margin-right:9px; background: url(../image/bg_menu.jpg) bottom repeat-x; color:#FFF; border-radius:0;}