.tab {
 width: 100%;
 position: relative;
}
/* ÅÇ ¸®½ºÆ® ¹öÆ° */
#tab-list {
 width: 100%;
 text-align: center;
}
#tab-list > li {
 display: inline-block;
 margin-right: 20px;
}
#tab-list > li > a{
 width: 100%;
 height: 100%;
 position: relative;
 padding: 0 20px;
 border-radius: 30px;
    color: #353535;
 height: 40px;
 line-height: 40px;
 font-weight: 400;
 text-align: center;
 display: block;
 text-decoration:none;
 font-size:15px;
 -moz-transition: all .25s ease;
 -ms-transition: all .25s ease;
 transition: all .25s ease;
}
#tab-list > li > a .dot {
 display: inline-block;
 width: 5px;
 height: 5px;
 background: #ef9800;
 position: absolute;
 top: -10px;
 left: 50%;
 margin-left: -2.5px;
 border-radius: 5px;
 opacity: 0;
 visibility: hidden;
 transition: all .3s;
}
/* ÅÇ ¹öÆ° Å¬¸¯ ½Ã ¾×Æ¼ºê Å¬·¡½º*/
#tab-list > li > a.active .dot,
#tab-list > li > a:hover .dot{
 top: 0;
 opacity: 1;
 visibility: visible;
}

#category_sel{display:none;}