/* colors */
/* for custom colours, just copy lines 4-16 below (ie. black colour scheme) and replace the word "black" with "custom" and place in your site theme CSS file. */
/* black */
.black.mychannel {
	background: #000000;
}
.black .videos .title {
	border: 1px solid #222;
}
.black .title span.video-title {
	color: #FFF;
    background-color: #222;
}
.black .showVideoPanel a {
	color: #FFF !important;
}
.black .showVideoPanel .loading {
    background-image: url(../images/loadinfo_black.gif);
}
/* white */
.white.mychannel {
	background: #fff;
}
.white .videos .title {
	border: 1px solid #ccc;
}
.white .title span.video-title {
	color: #000;
    background-color: #ccc;
}
.white .showVideoPanel a {
	color: #000;
}
.white .showVideoPanel .loading {
    background-image: url(../images/loadinfo_white.gif);
}
/* grey */
.grey.mychannel {
	background: #666;
}
.grey .videos .title {
	border: 1px solid #999;
}
.grey .title span.video-title {
	color: #FFF;
    background-color: #999;
}
.grey .showVideoPanel a {
	color: #FFF;
}
.grey .showVideoPanel .loading {
    background-image: url(../images/loadinfo_grey.gif);
}

/* layout */
.mychannel {
    padding: 10px;
    font-family: Arial;
    font-weight: bold;
    overflow: hidden;
}

.mychannel a {
    text-decoration: none;
    outline: none;
}

.videos {
    overflow: hidden;
    padding: 2px 0px;
    margin-bottom: 5px;
    position: relative; 
    height: auto;
}

.videos .scroll {
    overflow: hidden;
    /*position: relative;*/
    text-align: center;
    /*-ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;*/
}

.videos .scroll:after {
    content: '';
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.scroll li {
    float: left;
}

.videos .title {
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    width: 120px;
    overflow: hidden;
    margin: 1px;
    padding: 2px;
    background-position: 2px 2px;
    zoom: 1;
}

.title span.video-title {
    line-height: 1.3em;
    font-size: 9pt;
    font-weight: bold;
    height: 30px;
    overflow: hidden;
    margin-top: 93px;
    padding: 1px 3px;
	display: block;
    white-space: normal;
    word-wrap: break-word;
    text-align: left;
}

.title span.video-date {
	display: block;
	text-align: center;
	color: #818181;
	font-size: 12px;
	min-height: 32px;
}

.mychannel .showVideoPanel {
    text-align: right;
    overflow: hidden;
    margin-top: 10px;
}

.showVideoPanel a {
    display: none;
    font-size: 10pt;
    margin-right: 10px;
    float: right;
}

.showVideoPanel .loading {
    height: 16px;
    width: 16px;
    margin-right: 10px;
    float: right;
}

.player {
    display: block;
    overflow: hidden;
    height: auto;
    text-align:center;
}

.backBtn {
    float: left !important;
    margin-left: 10px !important;
}