/* CSS Document */
body{
	background-color:black;
}
/*2. HEADER--------------------------*/
#header{
	width:1000px;
	height:50px;
	border:1px solid #CCC;
	margin-right:auto;
	margin-left:auto;
	padding-top:50px;
	background-image: url(pic/header.jpg);
    background-color:black;
	
	
}
#menu{
      width:500px;
	  height:49px;
	  float:right;
	  

}
#home{
      width:100px;
	  height:50px;
	  float:left;
	  background-color:red;
}
#produk{
      width:100px;
	  height:50px;
	  float:left;
	  background-color:blue;

}
#information{
      width:100px;
	  height:50px;
	  float:left;
	  background-color:green;
}
#contact{
	width:100px;
	height:50px;
	float:left;
	background-color:orange;
}
#gallery{
      width:100px;
	  height:50px;
	  float:left;
	  background-color:white;		  
}
/*4. CONTENT------------------------*/
#content{
	width:1000px;
	height:650px;
	border:1px solid #CCC;
	margin-right: auto;
	margin-left: auto;
	background-color:black;
	padding-top:90px;
	padding-bottom:80px;	
	
}
#contentpicture{
	width:1000px;
	height:820px;
	border:1px solid #CCC;
	margin-right: auto;
	margin-left: auto;
	background-color:black;
}


#flashbanner{
	width:600px;
	height:400px;
	border:1px solid #CCC;
	margin-right: auto;
	margin-left:auto;
	background-color:black;
	margin-bottom:50px;
	background-image: url(pic/anigif1.gif);
	

}
#subcontent{
	width:800px;
	height:150px;
	border:1px solid #CCC;
	margin-right: auto;
	margin-left:auto;
	background-color:black;
	margin-top:95px;
	background-image: url(pic/subcontent1.jpg);
	
}	
#footer2{
	width:980px;
	height:40px;
	border:1px solid #CCC;
	margin-right:auto;
	margin-left:auto;
	color:white;
	padding-top:20;
	padding-left:20px;
}
#copyright{
    float:left;
    width:770px;
	height:45px;
}
#icon{
    float:right;
    width:200px;
	height:40px;
    background-color:black;
}
/*Sub Menu*/
#menu ul{
   list-style-type:none;/*membuang bullet/numbering*/
   margin: 0;
   padding: 0;
   overflow: hidden;/*mengawal kandungan samada hidden, scroll*/
   background-color:BLACK;/*warna<ul>*/
   font-family:Arial, Helvetica, sans-serif;/*menetapkan jenis tulisan*/
   font-size:14px;/*menetapkan sais tulisan*/
}
#menu li{
float:left;/*Kedudukan list item*/
}
#menu li a{
   display: inline-block;/*membentuk blok*/
   color: white;/*warna tulisan*/
   text-align: center;/*jajaran tulisan*/
   padding: 16.5px 21px;
   text-decoration: none;/*membuang underline pada pautan*/
}
#menu li a:hover{
   bSSSSor:#222;/*warna bg bila dituding/hover*/
}
/*-----------SUB MENU----------*/
#menu li ul{
   position: absolute;/*kedudukan paparan submenu absolute-akan keluar dari posisi asal
*/ 
   display: none;/*None-submenu tidak dipaparkan jika tidak dituding*/
   width: inherit;
}
#menu li:hover ul{
   display:block;/*bentuk paparan submenu*/}