/* Main */
#menu{
  background-image: url(../images/menubar5.png);
	background-repeat: no-repeat;
	width: 100%;
	height: 134px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 628px;
	list-style: none;
}

#menu li{
	float: left;
	padding: 0px 1px 10px 1px;
	position: relative;
  border-right:1px solid #ffffff;
  height: 65px;  
}

#menu a{
	float: left;
	height: 34px;
	margin-left: 00px;
  margin-top: 33px;
	padding-top: 8px;
	padding-left: 16px;
	padding-right: 16px;
	color: #fff;
	font: 12px/25px Arial, Helvetica;
	line-height: 110%;
	text-align: center;
	text-decoration: none;
}

#menu li:hover > a{
  color: #0000AB;
	/* background: #FFFF00; */
  /* batas awal warna baru */
  background: #fce302;
  background: -moz-linear-gradient(top,  #fce302 0%, #ffffff 50%, #efcf00 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fce302), color-stop(52%,#ffffff), color-stop(100%,#efcf00));
  background: -webkit-linear-gradient(top,  #fce302 0%,#ffffff 50%,#efcf00 100%);
  background: -o-linear-gradient(top,  #fce302 0%,#ffffff 50%,#efcf00 100%);
  background: -ms-linear-gradient(top,  #fce302 0%,#ffffff 50%,#efcf00 100%);
  background: linear-gradient(to bottom,  #fce302 0%,#ffffff 50%,#efcf00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fce302', endColorstr='#efcf00',GradientType=0 );
  /* batas akhir warna baru */
	height: 34px;
	margin-left: 00px;
  margin-top: 33px;
	padding-top: 8px;
}

*html #menu li a:hover{ /* IE6 */
	color: #fff;
}

#menu li:hover > ul{
	display: block;
}

/* Sub-menu */

#menu ul{
    list-style: none;    
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 99999;
    background: #000033;
    background: -moz-linear-gradient(#006EB4, #004579);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #004579),color-stop(1, #006EB4));
	  background: -webkit-linear-gradient(#006EB4, #004579);
	  background: -o-linear-gradient(#006EB4, #004579);
	  background: -ms-linear-gradient(#006EB4, #004579);
	  background: linear-gradient(#006EB4, #004579);
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
    -moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
}

#menu ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#menu ul a{
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: uppercase;
}

*html #menu ul a{ /* IE6 */
	height: 10px;
	width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */
	height: 10px;
	width: 150px;
}

#menu ul a:hover{
  background: #0A17FF;  
  color: #FFF;
}

#menu ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #006EB4;
}

#menu ul li:first-child a:hover:after{
    border-bottom-color: #0A17FF;
}

#menu ul li:last-child a{
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */