.skillbar {
 position:relative;
 display:block;
 margin-bottom:15px;
 width:100%;
 background:#eee;
 height:20px;
 border-radius:3px;
 transition:0.1s linear;
 transition-property:width, background-color;
}
.skillbar-title {
 position:absolute;
 top:0;
 left:0;
 width:110px;
 font-weight:bold;
 font-size:13px;
 color:#ffffff;
 background:#6adcfa;
 border-top-left-radius:3px;
 border-bottom-left-radius:3px;
}
.skillbar-title span {
 display:block;
 background:rgba(0, 0, 0, 0.1);
 padding:0 20px;
 height:20px;
 line-height:20px;
 border-top-left-radius:3px;
 border-bottom-left-radius:3px;
}
.skillbar-bar {
 height:20px;
 width:0px;
 background:#6adcfa;
 border-radius:3px;
}
.skill-bar-percent {
 position:absolute;
 right:10px;
 top:0;
 font-size:11px;
 height:20px;
 line-height:20px;
 color:#ffffff;
 color:rgba(0, 0, 0, 0.8);
}