.SkillBits
{
	margin-right:8px;
	margin-bottom:8px;
	float:left;
	padding:2px 6px 2px 6px;
	font-size:12px;
	border:1px solid #ddd;
	border-radius:4px;
	color:#777;
}

.tabs {
	position: relative;   
	min-height: 220px; /* This part sucks */
	clear: both;
	margin: 25px 0;
	display:inline-block;
}
.tab {
	float: left;
	width:90px;
	display:inline-block;
	height:40px;
 // border:1px solid #4a89d9;
//  border-radius:4px;
}

.tab:nth-child(1), .tab:nth-child(2)
{
	margin-right:7px;
}

.tab label {
//  background: #eee; 
//  padding: 10px; 
//  border: 1px solid #ccc; 
//  margin-left: -1px; 
	position: relative;
//  left: 1px; 
	font-size:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	height:40px;
	background-color:#4a89d9;
	color:#fff;
	border-radius:4px;
	cursor:pointer;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;


//  background:red;
//  width:90%;
}

.tab label:hover
{
	opacity:0.9;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        transition: all .3s ease-in;

}

.tab [type=radio] {
	display: none;   
}
.TabContent {
	position: absolute;
	top: 40px;
	left: 0;
	background: white;
	right: 0;
	bottom: 0;
	padding-top: 15px;
	height:200px;
//  height:auto;
//  border: 1px solid #ccc; 
//  background-color:orange;
	text-align:left;
	display:inline-block;
}
[type=radio]:checked ~ label {
//  background: orange;
	color:#777;
//  font-weight:bold;
	border: 1px solid #4a89d9;
	z-index: 2;
	background-color:#fff;
	border-radius:4px;
}

[type=radio]:checked ~ label:hover {
	color:#4a89d9;
}

[type=radio]:checked ~ label ~ .TabContent {
	z-index: 1;
}
