

.dos-tabs {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dos-tabs li {
    font-size: 16px;
    display: inline-block;
    padding: 15px 1px;
    background: #d3d3d3;
    text-align: center;
    font-weight: 300;
    width: 50%;
    float: left;
    /* text-transform: uppercase; */
    color: #000000;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #ffffff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}




.dos-tabs li.current {
	background: #faa002;
	color: #000000;
   border-bottom: 1px solid #faa002;
}



.tab-contents {
clear: both;
	padding: 15px;

}














.tab-contents .star{
    font-size: 16px;
    margin-bottom: 5px;
    color: #666666;
    font-weight: 300;
}

.tab-contents .star .check{
    color: #135fa3;
}

.tab-contents .star .not-check{
    color: #dddddd;
}








.tab-pane {
	display: none;
}

.tab-pane.current {
	display: block;
}



