

/* 타이틀영역 버튼 디자인 __________________________________*/
.top_btnSet{overflow:hidden;}
.top_btnSet a{
	vertical-align:middle;
	float:left;
	cursor:pointer;
	text-align:center;
	padding:0 30px;
	height:34px;
	line-height:32px;
	font-weight: 400;
	font-size:14px;
	font-family: 'Noto Sans KR', sans-serif;
	color:#494949;
	background:rgba(0,0,0,0.02);
	border:1px solid rgba(0,0,0,0.1);
	border-right:none;
	border-bottom:1px solid rgba(0,0,0,0.18);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	}
.top_btnSet a:hover{background-color:#e5e5e5;}
.top_btnSet a.active{background-color:#181818; color:#fff !important;}
.top_btnSet a:first-child{
	border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	}
.top_btnSet a:last-child{
	border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
	border-right:1px solid rgba(0,0,0,0.1); 
	}