.tab-menu { 
    padding: 0; 
    clear: both; 
}

.tab-menu li { 
    display: inline; 
}
            
.tab-menu li a { 
    background: #d1d2d3; 
    padding: 10px; 
    float:left; 
    border-right: 1px solid #fff; 
    border-bottom: none; 
    text-decoration: none;
	min-width: 107px;
    text-align: center;

    /* bordes redondeados */
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
	
}
            
.tab-menu li.active a { 
    background: #f5f6f7;

    /* bordes redondeados */
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
            
.tab-content { 
    float: left; 
    clear: both;
    border: 1px solid #d1d2d3; 
    border-top: none; 
    border-left: none; 
    background: #f5f6f7; 
    padding: 10px 20px 20px; 
    width: 100%;
	margin-bottom: 25px;
}

.tab-centrado { 
    text-align: center;
}