.vjs-title-box {
	position: absolute;
	top: 0;
	left: 0;
	
 	max-height: 0;
	overflow: hidden;

	/* Set our transitions up. */
	-webkit-transition: max-height 0.8s;
	-moz-transition: max-height 0.8s;
	transition: max-height 0.8s;

    font-size:2em;
    padding:0;
    width:100%;
    
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.7) 30%,rgba(0,0,0,0.7) 70%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(43, 51, 63, 0.8) 0%,rgba(43, 51, 63, 0.7) 30%,rgba(43, 51, 63, 0.7) 70%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.vjs-title-text {
	font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.333;
    /*margin-bottom: .333em;*/
    padding:10px 10px 0 10px;
}
.vjs-title-description {
	/*font-weight: 700;*/
    letter-spacing: 1px;
    line-height: 1.333;
    margin-bottom: 1.333em;
    padding:5px 10px 10px 15px;
    font-size:.7em
}

.vjs-user-inactive .vjs-title-box {
	max-height: 0;
}
.vjs-user-inactive.vjs-paused .vjs-title-box {
	max-height: 200px;
}

.vjs-user-active .vjs-title-box {
	max-height: 200px;
}