/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('blank.gif');
	z-index: 1103;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	top: 0;
	left: 0;
	color: #FFF;
	text-align: left;
	padding-top:10px;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('fancy_title_over_white.png');
	display: block;
    font-family:Arial;
    font-weight:bold;
    font-size:12px;
    color:#3d3d3d;
    text-align:center;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #dde;
	position: relative;
}

.jspDrag
{
	background: #bbd;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}
/* Selectmenu
----------------------------------*/
.ui-selectmenu { display: block; display: inline-block; position: relative; height: 2.2em; vertical-align: middle; text-decoration: none; overflow: hidden; zoom: 1; }
.ui-selectmenu-icon { position:absolute; right:6px; margin-top:-8px; top: 50%; }
.ui-selectmenu-menu { padding:0; margin:0; list-style:none; position:absolute; top: 0; display: none; overflow: auto; z-index: 1005;} /* z-index: 1005 to make selectmenu work with dialog */
.ui-selectmenu-open { display: block; }
.ui-selectmenu-menu-popup { margin-top: -1px; }
.ui-selectmenu-menu-dropdown { }
.ui-selectmenu-menu li { padding:0; margin:0; display: block; border-top: 1px dotted transparent; border-bottom: 1px dotted transparent; border-right-width: 0 !important; border-left-width: 0 !important; font-weight: normal !important; }
.ui-selectmenu-menu li a,.ui-selectmenu-status { line-height: 1.4em; display: block; min-height:17px; outline:none; text-decoration:none; text-align:center; padding-top:3px }
.ui-selectmenu-menu li.ui-state-disabled a, .ui-state-disabled { cursor: default; }
.ui-selectmenu-menu li.ui-selectmenu-hasIcon a,
.ui-selectmenu-hasIcon .ui-selectmenu-status { padding-left: 20px; position: relative; margin-left: 5px; }
.ui-selectmenu-menu li .ui-icon, .ui-selectmenu-status .ui-icon { position: absolute; top: 1em; margin-top: -8px; left: 0; }
.ui-selectmenu-status { line-height: 1.4em; }
.ui-selectmenu-open li.ui-selectmenu-item-focus a { }
.ui-selectmenu-open li.ui-selectmenu-item-selected { }
.ui-selectmenu-menu li span,.ui-selectmenu-status span { display:block; margin-bottom: .2em; }
.ui-selectmenu-menu li .ui-selectmenu-item-header { font-weight: bold; }
.ui-selectmenu-menu li .ui-selectmenu-item-content { }
.ui-selectmenu-menu li .ui-selectmenu-item-footer { opacity: .8; }
/* for optgroups */
.ui-selectmenu-menu .ui-selectmenu-group { font-size: 1em; }
.ui-selectmenu-menu .ui-selectmenu-group .ui-selectmenu-group-label { line-height: 1.4em; display:block; padding: .6em .5em 0; font-weight: bold; }
.ui-selectmenu-menu .ui-selectmenu-group ul { margin: 0; padding: 0; }
/* IE6 workaround (dotted transparent borders) */
* html .ui-selectmenu-menu li { border-color: pink; filter:chroma(color=pink); width:100%; }
* html .ui-selectmenu-menu li a { position: relative }
/* IE7 workaround (opacity disabled) */
*+html .ui-state-disabled, *+html .ui-state-disabled a { color: silver; }
label
{
    margin: 5px 0px;
}
.header
{
    height:78px;
}
.logo
{
    margin-left:100px;
    margin-top:15px;
    float:left;
}
.gestion {
    float:right;
    margin-right:105px;
    margin-top:15px;
    color:#fff;
}

.gestion a
{
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-family:Verdana;
    font-style:italic;
    display:inline-block;
}

.gestion a:hover, .gestion a.selected
{
}

.langues
{
    margin-top:15px;
    margin-right:10px;
}
.langues .langueON
{
    font-weight:bold;
}
.header .titreCourse
{
    float:left;
    margin:15px 0 0 67px;
}
.header h1
{
    color:#FFF;
    background: transparent right 5px no-repeat;
    padding-right:42px;
}
.header h2
{
    color:#96bf0d;
}
.header .social
{
    float:right;
    clear:right;
    margin-top:15px;
    margin-right:105px;
}
.choixContraste
{
    float:right;
    margin-top: -24px;
    margin-right: 240px !important;
}
.content
{
    width:980px;
    padding:5px 10px;
    margin-bottom:35px;
}
.tudor
{
    width:70px;
    height:129px;
    background:url('/bundles/elmsfront/img/live/bgTudor.png') left top no-repeat;
    text-align:center;
    float:left;
    margin-left:14px;
}
#etatCourse .info .valeur
{
    font-weight: normal;
    float:right;
}
#etatCourse #bgFeux
{
    width:100%;
    height:39px;
    background:url('/bundles/elmsfront/img/live/bgFeux.png') left top no-repeat;
    margin:10px auto 3px;
    text-align:center;
}
#feux
{
    font-size:14px;
    font-weight:bold;
    padding-top:5px;
    width:100%;
    height:29px;
}
.feuxOff
{

}
.feuxGreen
{
    color:#96bf0d;
    background:url('/bundles/elmsfront/img/live/feuxGreen.png') center center no-repeat;
}

.feuxYellow
{
    color:#ffc40f;
    background:url('/bundles/elmsfront/img/live/feuxOrange.png') center center no-repeat;
}

.feuxRed
{
    color:#9d0d15;
    background:url('/bundles/elmsfront/img/live/feuxRed.png') center center no-repeat;
}
.feuxChk
{
    background:url('/bundles/elmsfront/img/live/feuxCheck.png') center center no-repeat;
}
#etatCourse #message
{
    color:#FFF;
    font-family:Verdana;
    font-size:11px;
    font-weight:bold;
    padding:8px 7px;
}
#meteo img
{
    float:right;
    width:90px;
}

#previsions img
{
    float:left;
    clear:both;
}
#meteo span,
#previsions span
{
    font-size:11px;
}
.actionPrevisions
{
    float:right;
    margin-top:-12px;
    font-size:11px;
    font-weight:bold;
    color:#000;
}
#closePrevisions
{
    float:right;
    margin-top:0;
}
#previsions
{
    display:none;
    margin-top:128px;
    position:absolute;
    z-index:2;
    background:#fff;
    padding:10px;
    border:solid 2px #e0e0e0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

}
.cellPrevision {
    float:left;
    border-left:solid 1px #e0e0e0;
    padding-left:10px;
    width:75px;
}
.cellPrevision:first-child
{
    border-left-width:0;
    padding-left:0;
}
.cellPrevision .description
{
    display:none;
    cursor:default;
    margin-top:10px;
}
#previsions label,
#previsions span
{
    float:left;
    clear:both;
}

.cellPrevision .heure
{
    text-align:center;
    float:none !important;
    display:block;
}
.cellPrevision img
{
    width:70px;
    margin:auto;
}


#videos
{
    float:left;
    width:690px;
    height:446px;
    clear:left;
    margin-top:10px;
}
#zoneVideo
{
    width:680px;
    height:390px;
    background-color:#E0E0E0;
}
#channels,
#channels #left,
#channels #right
{
    width:680px;
    height:58px;
    background:url('/bundles/elmsfront/img/live/bgChannels.png') left top repeat-x;
}
#channels #left
{
    background:url('/bundles/elmsfront/img/live/leftChannels.png') left top no-repeat;
}
#channels #right
{
    width:660px;
    height:58px;
    background:url('/bundles/elmsfront/img/live/rightChannels.png') right top no-repeat;
    padding:10px;
}
#contenuChannels
{
    overflow:hidden;
}
#channels #lesChannels
{
    height:58px;
}
#channels .fleche
{
    display:block;
    float:left;
    width:24px;
    height:40px;
    background:url('/bundles/elmsfront/img/live/left.png') left top no-repeat;
    margin-right:3px;
    cursor:pointer;
}
#channels #droiteChannel
{
    background:url('/bundles/elmsfront/img/live/right.png') left top no-repeat;
    margin-right:0px;
    float:right;
}
#channels #contenuChannels
{
    float:left;
}
#channels a.channel
{
    float:left;
    font-family:Abadi Bold,Arial;
    font-style:italic;
    font-weight:bold;
    font-size:16px;
    color:#FFF;
    border-right:solid 1px #FFF;
    padding:0 10px;
    text-align:center;
    cursor:pointer;
}

#channels a:hover,
#channels a.selected
{
    color:#5a5a5a;
}

#epub
{
    text-align:center;
    height:75px;
    width:680px;
    float:left;
    clear:left;
    margin-top:10px;
    overflow:hidden;
}
#epub img
{
    max-height:75px;
}


/***********************/
/*      Live Text      */
/***********************/
#livetext
{
    float:right;
    width:284px;
    /*height:280px;*/
    height:680px;
    background:#e0e0e0;
    /*background:#e0e0e0 url('/bundles/elmsfront/img/live/botLiveText.png') left bottom no-repeat;*/
}
#livetext .top
{
    width:100%;
    height:6px;
    /*  background:url('/bundles/elmsfront/img/live/topLiveText.png') left top no-repeat;*/
}
#livetext #titre
{
    background:url('/bundles/elmsfront/img/live/bgFiltreText.png') left top no-repeat;
    height:62px;
    padding:5px 10px;
    margin-left:5px;
    color:#fff;
    font-size:13px;
}
#livetext #titre h4
{
    margin-bottom:5px;
    float:left;
}
#livetext #titre select
{
    width:95px;
}
#nbNew
{
    display:block;
    float:right;
    width:15px;
    height:19px;
    padding:1px 0 0 5px;
    background:url('/bundles/elmsfront/img/live/notif.png') left top no-repeat;
    font-weight:bold;
    font-size:13px;
    color:#FFF;
    cursor:pointer;
}
#resumeFiltre
{
    display:none;
    font-size:11px;
    font-style:italic;
    font-weight:bold;
    color:#5a5a5a;
    width:274px;
    padding:7px 0 0;
    margin:0 auto;
    background:url('/bundles/elmsfront/img/live/bgResumeFiltre.png') left top repeat-y;
}
#resumeFiltre #contenuFiltre
{
    padding:0 5px 5px;
}
#resumeFiltre #bottom
{
    width:274px;
    height:4px;
    background:url('/bundles/elmsfront/img/live/botResumeFiltre.png') left bottom no-repeat;
}

#boxLive
{
    /*height:185px;*/
    height:585px;
    overflow:auto;
    font-size:11px;
}
#boxLive .line
{
    width:256px;
    padding:10px 0 10px 4px;
    border-bottom:solid 1px #fff;
}
#boxLive .picto
{
    margin-left:2px;
    float:left;
    width:43px;
    min-height:1px;
}
#boxLive .time {
    float:left;
    font-weight:bold;
}
#boxLive .contenuMsg
{
    float:right;
    width:210px;
}
#boxLive .msg,
#boxLive .msg a
{
    color:#5a5a5a;
}
#livetext img.thumbLive
{
    margin:3px 5px 3px 0;
    max-width:90px;
    float:left;
    clear:left;
}
#boxLive .jspContainer
{
    width:278px !important;
}
.provided
{
    float:right;
    color:#5a5a5a;
    padding:7px 10px 0 0;
    font-weight:bold;
    font-size:11px;
}
/********************/
/*   LIVE TIMING    */
/********************/
#chronos
{
    width:100%;
    float:left;
    clear:left;
    font-size:11px;
    margin-top:10px;
}
.titreChronos h4,
.titreChronos h5
{
    font-family:Arial;
    font-size:20px;
    color:#96bf0d;
    float:left;
}
.titreChronos h5
{
    margin-left:25px;
    margin-right:5px;
    text-transform:none;
}
#refreshTiming
{
    display:block;
    float:left;
    margin:2px 0 0 10px;
    width:15px;
    height:17px;
    background:url('/bundles/elmsfront/img/live/updateTiming.png') left top no-repeat;
    cursor:pointer;
}
.lastUpdate
{
    float:right;
    margin:5px 0 0 0;
}
.lastUpdate span
{
    font-weight:bold;
    color:#96BF0D;
}
.refreshLiveText
{
    display:block;
    float:left;
    margin:2px 0 0 10px;
    width:15px;
    height:17px;
    background:url('/bundles/elmsfront/img/live/updateText.png') left top no-repeat;
}
#fullTiming
{
    display:block;
    float:right;
    margin-top:-10px;
    width:32px;
    height:32px;
    background:url('/bundles/elmsfront/img/live/fullscreen.png') left top no-repeat;
    cursor:pointer;
}

#classement table, .table_percategory table
{
    border-collapse:collapse;
    border-color:#fff;
    border-width:0 !important;
    width: 100%;
}
#classement tbody, .table_percategory tbody
{
    overflow:auto;
    /*height:250px;*/
}
#classement th, .table_percategory th
{
    font-size:14px;
    padding:10px 5px;
    vertical-align:middle;
    background-color:#263989 !important;
    color:white !important;
    border:none;
    border-top:none;
}
#classement th.first, .table_percategory th.first
{
    background:#3d3d3d url('/bundles/elmsfront/img/live/leftHeader.png') left top no-repeat;
}
#classement th.last, .table_percategory th.last
{
    background:#3d3d3d url('/bundles/elmsfront/img/live/rightHeader.png') right top no-repeat;
    padding-right:8px;
}
.clignote th.last
{
    background-image:none;
}
#classement td, .table_percategory td
{
    cursor:pointer;
    font-size:10px;
    padding:8px 5px;
    height:10px !important;
    overflow:hidden;
    /*    white-space:nowrap;*/
    border:none;
    /*    border-left:solid 1px #FFF;
        border-top:solid 1px #fff;*/
}
#classement td.wec, .table_percategory td.wec
{
    /*padding-right:20px;
    background:url('/bundles/elmsfront/img/live/wec_classement.png') right center no-repeat;*/
}
#classement td.wec img, .table_percategory td.wec img
{
    float:right;
}
/*#classement tr:hover td,*/
#classement tr.selected td, .table_percategory tr.selected td
{
    //background-color:#3d3d3d;
    //color:#b9eb11;
}
#classement td:first-child,
#classement th:first-child,
.table_percategory td:first-child,
.table_percategory th.first-child
{
    /*    border-left-color:#e0e0e0;   */
}
#classement .impair td, .table_percategory .impair
{
    background-color:white;
}
#classement tr, .table_percategory tr
{
    height:10px !important;
    background-color : #e9ebf3;
}
#classement .temps, .table_percategory .temps
{
    text-align:center;
}

#classement span, .table_percategory span
{
    display:inline-block;
    width:20%;
}
.lmp1
{
    color:#DC241F
}
.lmp2
{
    color:#2A568F;
}
.lmgtepro
{
    color:#009530;
}
.lmgteam
{
    color:#ff4f00;
}

.engageIn
{
    color:#dc291e;
}
.engageStop {
    color:#2b2b2b;
}
.engageOut
{
    color:#ff6418;
}
.engageRet
{
    color:#3d3d3d;
}
.engageRun
{
    color:#009a3d;
}

.ui-state-hover
{
    border:solid 1px #6c8909 !important;
}
.ui-selectmenu
{
    height:2.6em !important;
}
.ui-selectmenu-icon
{
    background:none !important;
}

/*********************************/
/*      Custom Scrollbar        */
/*********************************/
.jspTrack
{
    background:transparent url('/bundles/elmsfront/img/live/bgScrollbar.png') center top repeat-y !important;
}
.jspVerticalBar
{
    background-color:transparent !important;
}
.jspDrag
{
    background:transparent url('/bundles/elmsfront/img/live/scroll.png') center center no-repeat !important;
    height:20px !important;
}

.ui-widget
{
    font-size:0.8em !important;
}
.ui-button-text-only .ui-button-text
{
    padding: .1em 1em !important;
}
.ui-state-default
{
    color:#333 !important;
    border:none !important;
}
.ui-state-active
{
    color:#aaa !important;
}





.nuitLive
{
    color:#fff;
}
.nuitLive .subcontent
{
    background:none !important;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.nuitLive h1,
.nuitLive h2,
.nuitLive h3,
.nuitLive h4,
.nuitLive h5,
.nuitLive a,
.nuitLive .lastUpdate span,
.nuitLive #classement th ,
.nuitLive #etatCourse .info .valeur,

{
    color:#f00;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive .feuxChk
{
    color:#000;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive .content
{
    background-color:#000;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #livetext,
.nuitLive #classement
{
    background-color:#000;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #meteo
{
    background:none;
    border:solid 1px #ddd;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #previsions
{
    background-color:#000;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #boxLive .msg,
.nuitLive #boxLive .msg a
{
    color:#fff;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.nuitLive #topChronos,
.nuitLive #bottomChronos
{
    background:#909090;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive .ui-selectmenu-menu-dropdown a:hover
{
    background-color:#f00 !important;
    color:#fff;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive .ui-state-hover
{
    border-color:#f00 !important;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive .ui-selectmenu-status
{
    background-image:url('/bundles/elmsfront/img/bgSelectNuit.png');
    border-color:#f00;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #channels
{
    background-image:url('/bundles/elmsfront/img/live/bgChannelsNuit.png');
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #channels #left
{
    background-image:url('/bundles/elmsfront/img/live/leftChannelsNuit.png');
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #channels #right
{
    background-image:url('/bundles/elmsfront/img/live/rightChannelsNuit.png');
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #channels a:hover,
.nuitLive #channels a.selected
{
    color:#fff;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #refreshTiming
{
    background-image:url('/bundles/elmsfront/img/live/updateText.png');
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #fullTiming
{
    background-image:url('/bundles/elmsfront/img/live/fullscreenNuit.png');
}
.nuitLive #classement .impair td
{
    background-color:#3d3d3d;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #classement tr:hover td
{
    background-color:#fff;
    color:#f00;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #popEngage
{
    background-image:url('/bundles/elmsfront/img/live/bgPopupNuit.png');
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #popEngage h4
{
    color:#f00;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #popEngage .descTeam
{
    background:none !important;
    border-right:solid 2px #fff;
    width:170px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.nuitLive #popEngage .descPilotes
{
    margin-left:20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#block_live h2 {
    margin-bottom: 5px;
}

.tablescroll_wrapper, .tablescroll_head, .tablescroll_body {
    width: 100% !important;
}

#popEngage label {
    margin: 0px;
}

.live_toolbar .spacing-left {
    margin-left: 15px !important;
}

.live_toolbar select {
    margin-top : -3px;
}


.chronoTabs {
    display:table;
    table-layout: fixed;
    width : 100%;
    margin-bottom: 10px;
}

.chronoTabs .item.active {
    border-bottom: none;
    border-top : 1px solid #e0e0e0;
    border-right : 1px solid #e0e0e0;
    border-left : 1px solid #e0e0e0;
    /*border-radius: 5px 5px 0 0;*/
}

.chronoTabs .item.btn:not(.active):hover {
    background-color: #cccccc;
    color: white;
    /*border-radius: 5px 5px 0 0;*/
}

.chronoTabs .item {
    vertical-align: middle;
    width:25%;
    display:table-cell;
    border-bottom: 1px solid #e0e0e0;

    /* background-color: #3c3c3c; */
}

.chronoTabs .item.btn {
    /* background-color: #3c3c3c; */
    text-align:center;
    cursor: pointer;
    line-height:30px;
    font-weight:bold;
    font-size:16px;
    color: #3c3c3c;
    /* font-style: italic; */
    font-family: Verdana;
    /*border-radius: 3px 3px 0px 0px;*/
}

.link_category {
    font-weight:bold;
    text-decoration:none;
    color:white;
    padding: 5px 0;
    margin:10px 5px;
    width: 110px;
    display: inline-block;
    text-align: center;
    border-radius:3px;
}

.link_category.disable {
    background-color:#3c3c3c!important;
    opacity: 0.3;
}

.link_category_table {
    width:50px;
    display:block;
    text-align:center;
    margin:0px;
}

#categoriesTab {
    display:table-cell;
    vertical-align: middle;
    height:50px;
}

.chronoTabs {
    margin-bottom: 0px;
}

.table_percategory tr.disable td{
    background-color: white;
    opacity: 0.5;
}
