@charset "utf-8";
/* CSS Document */

#navi{
	width:1024px;
	height:50px;
	margin:0 auto 10px auto;
	background:url(../images/navBack.gif) no-repeat;
	z-index:1;
	position:relative;
}

/*ドロップダウンメニュー*/

ul#nav {
	width:1000px;
	margin:0 auto;
    border-right: none;
    height: 50px;
}

ul#nav li {
    float: left;
    height: 50px;
    width:200px;
    text-align: center;
    line-height: 50px;
}

ul#nav li.hover {
    background: #eee;
}

ul#nav li a {
    display: block;
    color: #252525;
    text-decoration: none;
}

ul#nav li ul {
     border: none;
     display: none;
     background: #666;
     overflow: hidden;
     opacity: .9;
     filter: alpha(opacity=90);
}

ul#nav li ul li {
	border: none;
}

ul#nav li ul li.hover {
	background: #777;
}

ul#nav li ul li a {
	color: #efefef;
}


