


[data-tab-control] {
    box-sizing:border-box;
    padding:0;
    overflow:hidden;
    margin-bottom:15px;
    font-size:14px;
    color: #008ee1;
    display: table;
    clear: both;
    padding-bottom: 10px;
}

[data-tab-control] a {
    box-sizing:inherit;
    color: inherit;
    position: relative;
    cursor: pointer;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
	display:block;
	float:left;
}
[data-tab-control] a:hover {
    text-decoration:none;
}
[data-tab-control] a.selected {
    background-color: #008ee1; 
    color: #fff;
}
[data-tab-control] a :first-child {
    border-left:0;
}
[data-tab-control] a:before {
    display: block;
    position: absolute;
    width:20px;
    height:20px;
    box-sizing: border-box;
    content: "";
    border: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #008ee1;
    left: 50%;
    top: 100%;
    margin-left: -10px;
    border-width:0px;
    -webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
[data-tab-control] a.selected:before {
    border-width:10px;
}
.tab-content.selected{
    display:block;
}
.tab-content {
    display:none;
}