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

#nav-trailer{
	display: block;
	margin:15px 22px;
	-webkit-font-smoothing: antialiased;
	border-radius:3px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
}
#nav-trailer li {
	display: block;
	float:left;
	width:33%;
	box-sizing:border-box;
	border-left:1px solid #000;
}
#nav-trailer li:first-child{
	border-left:0;
	width:34%;
}
#nav-trailer li a{
	position:relative;
	top:0;
	left:0;
	right:0;
	display: block;
	color:#fff;
	background:#4d4d4d;
	line-height: 1;
	padding:10px 0;
	text-align: center;
	height:auto;
	font-size:14px;
	letter-spacing: 0.1em;
	text-decoration: none;
		 -o-transition: all 0.2s ease 0;
	    -ms-transition: all 0.2s ease 0;
	   -moz-transition: all 0.2s ease 0;
	-webkit-transition: all 0.2s ease 0;
}
#nav-trailer li.cur a{
	background:#7b7771;
	cursor:default;
}
#nav-trailer li a:hover{
	background:#7b7771;
}