/* Thread Player
================================================ */

/* player */
.thread_player {
    clear: both;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1024px;
}
.thread_player .player_wrap {
    background-color: #e5e5e5;
    width: 100%;
    float: left;
    margin-bottom: 12px;
    overflow: hidden;
	position: relative;
}
.thread_player object {
    width: 100%;
    float: left;
}
.thread_player header {
    background-color: transparent;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 90%;
}
.thread_player header h5 {
    background-color: #000;
    color: #fff;
    display: inline;
    font-size: 18px;
    line-height: 22px;
    padding: 6px 10px;
    position: relative;
    float: left;
    width: auto;
}
.thread_player_sm header h5 {
    font-weight: 400;
    font-size: 12px;
    max-width: 80%;
    line-height: 16px;
}

/* preview */
.thread_player .preview {
/*	background-color: rgba(255,0,0,.4);*/
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.thread_player .preview img {
	margin-top: -9.4%;
}


/* navigation */
.thread_player nav {
    background-color: #282828;
    clear: both;
    margin: 0 39px;
    position: relative;
}
.thread_player nav li {
    display: inline;
    float: left;
    height: 68px;
    margin: 0 !important;
    position: relative;
    width: 120px;
}
.thread_player nav img {
    border: none;
    display: block;
    margin: -11px 0 0 0 !important;
    padding: 0;
}
.thread_player nav a {
    color: #fff;
    display: block;
    font-family: "futura-pt-1","futura-pt-2", sans-serif;
    font-size: 12px;
    font-weight: 800;
    width: 110px;
    height: 58px;
    position: absolute;
    left: 0;
    top: 0;
    border: solid 5px #fe339c;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.thread_player nav a span {
    background-color: #fe339c;
    display: block;
    padding: 5px 5px 0 0;
/*    width: 1000px;*/
    position: absolute;
    left: 0;
    bottom: -80px;
    line-height: 16px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.thread_player nav a:hover,
.thread_player nav .active {
    border: solid 5px #fe339c;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
.thread_player nav a:hover span {
    bottom: 0px;
}
.thread_player .controls a {
    background-color: rgba(40,40,40,.7);
    border-radius: 62px;
    display: none;
    height: 126px;
    left: 50%;
    margin-left: -63px;
    margin-top: -63px;
    position: absolute;
    text-indent: -999em;
    top: 50%;
    width: 126px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.thread_player_sm .controls a {
    background-size: 50% 50%;
    width: 63px;
    height: 63px;
    margin-left: -31px;
    margin-top: -31px;
}
.thread_player .controls .play {
    background: url(../imgs/play.png) center center no-repeat rgba(40,40,40,.7) ;
}
.thread_player .controls .pause {
    background: url(../imgs/pause.gif) center center no-repeat rgba(40,40,40,.7) ;
    display : none;
}
.thread_player .controls a:hover {
    background-color: rgba(40,40,40,.9);
}

/* arrows */
.thread_player li, 
.thread_player .arrows a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.thread_player .arrows a {
    background: url(../imgs/arrows.gif) left center no-repeat #e5e5e5;
    bottom: 0;
    cursor: pointer;
    display: block;
    height: 68px;
    position: absolute;
    text-indent: -999em;
    width: 35px;
}
.thread_player .arrows a.disabled {
    cursor: default;
    background-image: none;
}
.thread_player .arrows a:hover {
    background-color: #d2d2d2;
}
.thread_player .arrows .disabled:hover {
    background-color: #e5e5e5;
}
.thread_player .arrows .next {
    background-position: right center;
    right: 0px;
}
.thread_player .arrows .prev {
    left: 0px;
}