<style TYPE="text/css" MEDIA=screen>

.gxxxx{}

.tb {
	position: relative;
}

input[type="checkbox"] {	
	width: 80%;
	height: 32px;
	position: absolute;
	left: 2;
	z-index: 10;
	opacity: 0;
	cursor: pointer;
	transition: all .3s ease;
}

input[type="checkbox"]:hover ~ span {
	background-image: linear-gradient(to right, #1111ee, transparent);
	border-radius: 8px;
	-webkit-transition: background 1s ease;  
	-moz-transition: background 1s ease;  
	transition: background 1s ease;
	font-weight: bold;
	font-size: 16pt;
}

.tb span {
	position: relative;
	display: inline-block;
	background-image: linear-gradient(to right, #111188, transparent);
	border-radius: 8px;
	color: white;
	padding-left: 16px;
	font-size: 16pt;
	width: 80%;
}

.tb input[type="checkbox"] ~ div {
	max-height: 0;
	overflow: hidden;
	width: 76%;
	color: silver;
	background: rgba(20, 20, 180, 0.5);
	font-size: 14pt;
	margin-left: 16px;
	/* Set our transitions up. */
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition-delay: 0s;
}

.tb input[type="checkbox"]:checked ~ div {
	max-height: 200px;
	width: 76%;
	transition-delay: 0s;
	transition: all 0.5s ease;
	border: 2px solid #dede42;
	border-radius: 8px;
	left: 4px;
	overflow: auto;
}
 
</style>
