.category {
	position: relative;
	width: 100%;
	height: 50px;
	max-width: 1000px;
	margin: 0 auto;
	
}

.category > li {
	float: right;
	width: 20%;
	text-align:left;
	font-size:16px;
	box-sizing:border-box;
	cursor: pointer;
	color:#39C;
	font-weight:bold;
	
}

.category > li a {
	display: block;
	color: #39C;
	font-size:14px;
	box-sizing:border-box;
}

.category > li a:hover {
	color: #red;

}

ul.category__second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

ul.category__third-level {
	visibility: hidden;
	opacity: 0;
	
}

ul.category__fourth-level {
	visibility: hidden;
	opacity: 0;
	
}

.category > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.category__second-level li {
	padding: 3%;
	box-sizing: border-box;
	line-height: 30px;
	border-bottom: 1px dotted
	#39C;

}

.category__third-level li {
	border-top: 1px solid #39C;
	
}

.category__second-level li a:hover {
	color:#39C;


}

.category__third-level li a:hover {
	background: #2a1f1f;
	
}

.category__fourth-level li a:hover {
	background: #1d0f0f;
	
}


/* floatƒNƒŠƒA */
.category:before,
.category:after {
	content: " ";
	display: table;
}

.category:after {
	clear: both;
	
}

.category {
	*zoom: 1;
	
}
.category > li.category__single {
	position: relative;
	
}

li.category__single ul.category__second-level {
	position: absolute;
	width: 100%;
	background:rgba(255,255,255,0.9);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	
}

li.category__single:hover ul.category__second-level {
	visibility: visible;
	opacity: 1;
	
}

.init-bottom {
	color:#39C;

}

.init-bottom:after {
	content: '';
	display: inline-block;
	font-weight:bold;
	width: 7px;
	height: 7px;
	margin:18% 0 0 55%;
	border-right: 1px solid #39C;
	border-bottom: 1px solid #39C;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}