*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.div-switcher {
    display: block;
    list-style-type: none;
    padding: 0;
}

.div-switcher .switcher {
    display: inline-block;
    border: 1px solid #CCC;
    height: 28px;
    margin: 0 1% 2px 0;
    padding: 3px 8px;
    font-size: 14px;
    line-height: 20px;
    -moz-transition: background .43s;
    -o-transition: background .43s;
    -webkit-transition: background .43s;
    transition: background .43s;
    cursor: pointer;
}

.div-switcher .switcher.active,
.div-switcher .switcher.active:hover {
    background-color: #ff5;
}
.div-switcher .switcher:hover {
    background-color: #ffd;
}

.switcher-target-container {
    height:500px;
    width: 100%;
    overflow: hidden;
}
.switcher-target {
    position: relative;
    float: left;
    height: 100%;
    width: 100%;
    text-align: center;
}