/*
------------------------------------------------------------------------------------------------------------------------
TWO COL LAYOUT
------------------------------------------------------------------------------------------------------------------------
*/
.container-twocol {
	/* !! REQUIRES CLEARFIX CLASS !! */			/* Can't use float or overflow clearing methods, as we can't set the width on this due ot its padding */
	position: relative;
	padding-right: 498px;						/* keep clear area for left column - video-player(fullwidth + margin/padding/border space) */
}
.container-twocol .right-col {
	position: relative;
	float: right;
	width: 488px;
	margin-left: 10px;							/* Need to explicitly set, even if to 0 */
	margin-right: -498px;						/* position outside the containers padding zone */
	display: inline;							/* fixes IE double-float margin bug */
}
.container-twocol .left-col {
	position: relative;
	float: right;
	width: 100%;
}

/*
------------------------------------------------------------------------------------------------------------------------
CHANNEL TABS
------------------------------------------------------------------------------------------------------------------------
*/
.panel-channel { 
	/* Legacy */
	position: relative;
	margin: 0 0 10px 0;
	padding: 0;
	border: 1px solid #4F4F4F;
	background: #050707 url(../images/interface/panel_bg.gif) 0 0 repeat-x;
	/* End Legacy */
	overflow: hidden; /* contain floats */
	width: 100%;
	margin-right: -2px; /*compensate for border */
	border: none;
	background-color: transparent;
	background-image: none;
}
.tabs { 
	/* Legacy */
	position: relative;
	padding: 0;
	/* End Legacy */
}

.panel-channel .tab-content {
	border: 0px solid yellow;
}

.panel-channel .tab-content .channel-intro {
	border: 0px solid red;
	float:left;
	width:396px;	
}
.panel-channel .tab-content .channel-media {
	position: relative;
	clear: left;
	margin-right: 0;
	border-top: 1px solid #4F4F4F;
	padding-top: 2px;
}

/* NOWPLAYING */
dl.vs-info {
	width:310px;
}

