* {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	/* this will work for QtWebKit in future */
	-webkit-user-drag: none;
}

body {
	background-image: url(./img/bg.jpg);
	background-size: cover;
}

h1 {
	margin-left: 20px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: bold;
	font-size: 1.8rem;
	display: block;
}

.vGraph {
	max-width: 68rem;
	margin: 5rem auto;
	padding: 2rem;
	display: block;
}

.vGraph ul {
	margin: 0;
	padding: 0;
	height: 200px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top: 0;
	border-right: 0;
	font-size: 1rem;
	font-family: Tahoma, Geneva, sans-serif;
	list-style: none;
	/*		background-color: rgba(255, 255, 255, 0.2);*/
}

.vGraph ul:after {
	content: "";
	display: block;
	clear: both;
}

.vGraph li {
	float: left;
	display: inline;
	width: 8%;
	height: 100%;
	margin: 0 3%;
	position: relative;
	text-align: center;
	white-space: nowrap;
}

.vGraph .gTerm {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 20px;
	line-height: 20px;
	margin: 0 -100% -20px 0;
	padding: 200px 0 0 0;
	vertical-align: bottom;
	color: rgba(255, 255, 255, 0.6);
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}

.modi {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 20px;
	font-size: 0.8rem;
	line-height: 20px;
	margin: 0 -100% -40px;
	vertical-align: bottom;
	color: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	line-height: 0.8rem;
}

.vGraph .gBar {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0;
	/*		border:1px solid #ccc;*/
	border-radius: 10px 10px 0px 0px;
	border-bottom: 0;
	background: rgba(255, 255, 255, 0.6);
	vertical-align: bottom;
	transition: 0.5s;
}

.vGraph .gBar span {
	position: absolute;
	width: 100%;
	top: -20px;
	left: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

#reset, #all{
	margin-top: 50px;
	margin-right: 10px;
	float: right;
	padding: 8px 15px;
	border-radius: 10px;
	background-color: powderblue;
	border: powderblue;
	color: rgba(100, 100, 100, 0.9);
	font-size: 1rem;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	text-decoration: none;
}