/* CSS Document */
.skillbar {
	position:absolute;
	display:block;
	margin-bottom:15px;
	width:300px;
	background:#eee;
	height:30px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	-webkit-transition:0.4s linear;
	-moz-transition:0.4s linear;
	-ms-transition:0.4s linear;
	-o-transition:0.4s linear;
	transition:0.4s linear;
	-webkit-transition-property:width, background-color;
	-moz-transition-property:width, background-color;
	-ms-transition-property:width, background-color;
	-o-transition-property:width, background-color;
	transition-property:width, background-color;
	z-index:9999;
	}
	.skillbar-bar {
		height:30px;
		width:0px;
		background-image:pass.png;
		background-position:center;
		border-radius:3px;
		-moz-border-radius:3px;
		-webkit-border-radius:3px;
	}
	
	.skill-bar-percent {
		position:absolute;
		right:-85px;
		top:0;
		font-size:12px;
		height:30px;
		line-height:30px;
		color:#ffffff;
		background:rgba(0, 0, 0, 0);
		font-size:xx-large;
	}
