/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
   /* overflow: hidden;*/
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);

}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('icones-defaut/select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;
	font-size:12px;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('icones-defaut/select2.png') no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('icones-defaut/select2.png') no-repeat 100% -22px;
    background: url('icones-defaut/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('icones-defaut/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('icones-defaut/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('icones-defaut/select2.png') no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('icones-defaut/select2-spinner.gif') no-repeat 100%;
    background: url('icones-defaut/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('icones-defaut/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('icones-defaut/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('icones-defaut/select2-spinner.gif') no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
   	border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('icones-defaut/select2-spinner.gif') no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */
.select2-container-multi {
	margin-top:3px !important;
	border-radius:4px;
}
.select2-container-multi .select2-choices {
    height: auto !important;
    margin: 0;
    padding: 0;
    position: relative;

    border: 1px solid #aaa;
	border-bottom:2px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('icones-defaut/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('icones-defaut/select2.png') right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi)  {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
      background-image: url('icones-defaut/select2x2.png') !important;
      background-repeat: no-repeat !important;
      background-size: 60px 40px !important;
  }
  .select2-search input {
      background-position: 100% -21px !important;
  }
}
/* Calendrier Menus */
.nav_menu {
	width:100%;
	height:30px;
	margin-bottom:2px;
}
.cnt_menus {
	width:100%;
	height:100px;
	overflow:hidden;
}
.cnt_menus > .mois_menus {
	float:left;
	height:100%;
	width:19.6%;
	margin-right:0.5%;
	border:1px solid #CCC;
}
.cnt_menus > .mois_menus:last-child {
	margin-right:0px;
}

.cnt_menus > .mois_menus .titre_mois {
	height:25px;
	background-color:#3B5998;
	color:#FFFFFF;
	text-align:center;
	line-height:25px;
}
.cnt_menus > .mois_menus .jours {
	position:relative;
	border-bottom:1px solid #CCC;
	font-size:10px;
	text-indent:10px;
}
.cnt_menus > .mois_menus .jours.dimanche {
	background-color:#E0E0E0;
	background-image:url(/images/ro.png);
}
.jours.ferie {
	background-color:#75E037 !important;
	background-image:url(/images/ro.png);
}
.cnt_menus > .mois_menus .jours .bt-menu {
	top:0px;
	right:0px;
	position:absolute;
	width:16px;
	height:100%;
	background-color:#929CE5;
	cursor:pointer;
}
.cnt_menus > .mois_menus .jours .bt-menu.tmp {
	background-color:#093;
}
.cnt_menus > .mois_menus .jours .bt-menu_temp {
	top:0px;
	right:16px;
	position:absolute;
	width:16px;
	height:100%;
	background-color:#093;
}
.croise {
	background-color:#990000 !important;
}
.impair {
	background-color:#394DE5 !important;
}
.cnt_menus > .mois_menus .ajoute-menu {
	cursor:url(icones-defaut/add_menu.png), pointer;
}
.cnt_menus > .mois_menus .jours .num-semaine {
	top:0px;
	right:32px;
	position:absolute;
	width:32px;
	height:100%;
	text-align:right;
	font-size:10px;
	font-weight:bold;
}
/* Saisie Menu */
#cnt-titre {
	margin-bottom:4px;
	height:25px;
}
.blank-menu {
	float:left;
	width:15%;
	height:25px;
}
.titre-menus {
	float:left;
	width:84%;
	height:25px;
	border:1px solid #CCC;
	background-color:#EEE;
}
.titre-menus .jour-semaine {
	float:left;
	height:25px;
	line-height:25px;
	font-size:12px;
	text-align:center;
}
#wrap_menu {
	width:100%;
	overflow:hidden;
	position:relative;
	
}
#cnt_wrap_menu {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	padding:0;
	display:block;
	height:3000px;
}
.type_ajout {
	float:left;
	width:15%;
	font-size:12px;
}
.type_ajout .nom_type_ajout span.suppr_type_plat {
	height:100%;
	width:16px;
	display:inline-block;
	background-image:url(icones-defaut/cross.png);
	background-repeat:no-repeat;
	background-size:10px 10px;
	background-position:center;
	margin:0px 5px;
	cursor:pointer;
}
.type_ajout .nom_type_ajout, .type_ajout .change_type_ajout {
	height:45px;
	line-height:45px;
}
.cnt_jour_plat {
	float:left;
	width:84%;
	border:1px solid #CCC;
}
.col-jours {
	float:left;
	
}
.col-jours .plats, .col-jours .change-plats {
	height:45px;
	line-height:45px;
	width:100%;
	font-size:10px;
}
.change-plats {
	background-color:#EEE;
	text-align:center;
}
/* Modele de Menu */
.col-regime {
	float:left;
	width:49%;
	margin-right:1%;
	/*height:500px;*/
	overflow:auto;
}
.col-type-plat {
	float:left;
	width:49%;
}
.drop-regime h1 {
	margin:0px;
	padding:0px;
	font-size:14px;
	font-weight:bold;
}
.drop-regime ol {
	list-style:none;
	padding:10px;
	border-radius:4px;
	border:2px dotted #CCCCCC;
	margin:0px;
	margin-bottom:10px;
}
.drop-regime ol.ui-state-hover {
	border:3px dotted #090;
}
.drop-regime ol li {
	margin:0px;
	display:block;
	border:1px solid #CCC;
	font-size:12px;
	padding:2px;
	margin:5px 5px;
	background-color:#EEE;
}
.drop-regime ol li span.suppr {
	width:16px;
	display:inline-block;
	background-image:url(icones-defaut/cross.png);
	background-repeat:no-repeat;
	background-size:10px 10px;
	background-position:center;
	margin-right:5px;
	cursor:pointer;
}
	
#liste_plat_modele h1 {
	margin:0px;
	padding:0px;
	font-size:14px;
	font-weight:bold;
}
#liste_plat_modele ol {
	list-style:none;
	padding:10px;
	border-radius:4px;
	border:1px solid #CCCCCC;
	margin:0px;
	margin-bottom:10px;
}
#liste_plat_modele ol li {
	margin:0px;
	display:block;
	border:1px solid #CCC;
	font-size:12px;
	padding:2px;
	margin:5px 5px;
	background-color:#EEE;
}
.ui-draggable-dragging {
	z-index:100 !important;
}
li.ui-draggable-dragging {
	margin:0px;
	display:block;
	border:1px solid #CCC;
	font-size:12px;
	padding:2px;
	margin:5px 5px;
	background-color:#EEE;
	width:200px;
}
.select2-highlighted span.ajoute-plat-label {
	background-image:url(icones-defaut/plusG.png);
}
span.ajoute-plat-label {
	background-image:url(icones-defaut/plusV.png);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:12px;
	display:inline-block;
	width:16px;
	height:12px;
	margin-right:3px;
	margin-top:5px;
}
span.ajoute-plat-texte {
	display:inline-block;
	height:12px;
	font-style:italic;
}/* CSS Document */

._cnt form {
	margin:5px;
}
._cnt form .select2-container {
	/*margin-top:-5px;*/
}
._cnt form label {
	display:inline-block;
	font-size:12px;
	width:100px;
	margin-left:10px;
}
._cnt form input {
	width:300px;
	border:1px solid #CCC;
	border-radius:3px;
	height:16px;
	padding:5px;
	margin-bottom:4px;
}
._cnt form button[type=submit] {
	display:none;
}
.ajout_client_select {
	font-weight:bold;
}
/*!
 * jQuery UI Datepicker 1.10.3
 * http://jqueryui.com
 *
 * Copyright 2013 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
	/*width: 17em;*/
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	/*padding: .2em;*/
	text-align: center;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
/* DatePicker Container */
.date-tache {
	background-image:url(icones-defaut/date.png);
	background-repeat:no-repeat;
	background-position:center right;
}
.ui-datepicker {
	/*width: 216px;*/
	height: auto;
	margin: 5px auto 0;
	font: 9pt Arial, sans-serif;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	background-color:#333;
}
.ui-datepicker a {
	text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
	width: 100%;
}
.ui-datepicker-header {
	/*background: url('dark_leather.png') repeat 0 0 #000;*/
	background-color:#333333;
	color: #e0e0e0;
	font-weight: bold;
	-webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
	-moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
	box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
	text-shadow: 1px -1px 0px #000;
	filter: dropshadow(color=#000, offx=1, offy=-1);
	line-height: 30px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #111;
}
.ui-datepicker-title {
	text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	background-image: url('icones-defaut/arrow.png');
	background-repeat: no-repeat;
	line-height: 600%;
	overflow: hidden;
}
.ui-datepicker-prev {
	float: left;
	background-position: center -34px;
}
.ui-datepicker-next {
	float: right;
	background-position: center -4px;
}
.ui-datepicker thead {
	background-color: #f7f7f7;
	background-image: -moz-linear-gradient(top,  #f7f7f7 0%, #f1f1f1 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#f1f1f1));
	background-image: -webkit-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: -o-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: -ms-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
	border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
	text-transform: uppercase;
	font-size: 6pt;
	padding: 5px 0;
	color: #666666;
	text-shadow: 1px 0px 0px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
	padding: 0;
	border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
	border-right: 0px;
}
.ui-datepicker tbody tr {
	border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
	border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
	display: inline-block;
	font-weight: bold;
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 24px;
	color: #666666;
	text-shadow: 1px 1px 0px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=1);
	padding:2px;
}
.ui-datepicker-calendar .ui-state-default {
	background: #ededed;
	background: -moz-linear-gradient(top,  #ededed 0%, #dedede 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#dedede));
	background: -webkit-linear-gradient(top,  #ededed 0%,#dedede 100%);
	background: -o-linear-gradient(top,  #ededed 0%,#dedede 100%);
	background: -ms-linear-gradient(top,  #ededed 0%,#dedede 100%);
	background: linear-gradient(top,  #ededed 0%,#dedede 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
	-webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
	-moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
	box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
}
.ui-datepicker-calendar .ui-state-hover {
	background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
	background: #6eafbf;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	color: #e0e0e0;
	text-shadow: 0px 1px 0px #4d7a85;
	filter: dropshadow(color=#4d7a85, offx=0, offy=1);
	border: 1px solid #55838f;
	position: relative;
	margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
	background: #f4f4f4;
	color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
	width: 25px;
	/*margin-left: 0;*/
}
.ui-datepicker-calendar td:last-child .ui-state-active {
	width: 25px;
	margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
	height: 25px;
	margin-bottom: 0;
}form input[type=text] {
	width:218px;
	font-family:"Century Gothic";
	border:1px solid #CCC;
	border-radius:4px;
	padding:5px;
}
form input[type=checkbox] {
	margin:0px;
	border:1px solid #099;
}
form label.checkbox {
	position:relative;
	height:16px;
	margin-top:5px;
}
form label.checkbox:after {
	content:'';
	margin-left:5px;
	position:absolute;
	width:16px;
	height:16px;
	border:1px solid #CCC;
	box-sizing:border-box;
	cursor:pointer;
	background-size:10px;
	background-repeat:no-repeat;
	background-position:center;
	border-radius:4px;
}
form label.checkbox.select-lab:after {
	background-image:url(ico-bt_valide.png);

}
form label {
	width:105px;
	display:inline-block;
	text-align:right;
	margin-right:5px;
}
form select {
	margin-top:3px;
}
form textarea {
	margin-top:5px;
	width:200px;
	min-height:90px;
	border:1px solid #CCC;
	border-radius:4px;
	font-family:"Century Gothic";
}
div.table table input {
	border:none;
	width:100%;
}/* Main */
html {
	height:100%;
	font-family:"Century Gothic";
	font-size:14px;
}

body { 
	margin:0px;
	overflow:hidden;
	background-color:#f5f5f4; 
	/*opacity:0;*/
}
aside#cote-gauche {
	width:350px;
	height:100px;
	border-right:1px solid #CCC;
	float:left;
}
aside#cote-droit {
	width:350px;
	height:100px;
	float:left;
}
div.cnt-aside {
	margin:5px;
}
aside#cote-gauche h2 {
	margin:0px;
	font-size:14px;
	padding:4px;
	background-color:#DDD;
	height:30px;
	line-height:30px;
	border-bottom:1px solid #CCC;
}
/* pages */
.page-site {
	width:150px;
	height:200px;
	background-color:#FFFFFF;
	border:1px solid #CCC;
	float:left;
	margin-right:5px;
	margin-bottom:5px;
	box-shadow:0px 0px 3px #999999;
}
#control-page {
	padding:5px;
	border:1px solid #CCC;
	margin-bottom:5px;
}
.control {
	height:16px;
	margin:5px;
}
.control div {
	width:16px;
	height:16px;
	float:left;
	background-repeat:no-repeat;
	margin-right:5px;
	cursor:pointer;
}
.control .edit {
	background-image:url(/images/edit.png);
}
.control .supprime {
	background-image:url(/images/cross.png)
}
.control .in-menu {
	background-image:url(/images/sort.png);
}
.control .in-menu.not {
	background-image:url(/images/entre.png);
}

.titre-page {
	font-size:12px;
	text-align:center;
	font-weight:bold;
	padding:5px 0px;
	border-bottom:1px solid #CCC;
	border-top:1px solid #CCC;
}
#cnt-ordre-menu {
	padding:5px;
	border:1px solid #CCC;
	margin-bottom:5px;
}
ul.ordre-menu {
	list-style:none;
	color:#000;
	margin:0px;
	font-size:14px;
	padding:0px;
}
ul.ordre-menu li {
	display:inline-block;
	padding:8px;
	margin-right:10px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position:relative;
	height:100%;
}
ul.ordre-menu li span.pos {
	margin-right:5px;
	font-size:10px;
	padding:4px;
	background-color:rgba(2,118,168,1);
	color:#FFF;
}
header {
	background-color:rgb(98, 71, 39);
	z-index:200;
}
header div.bandeau {
	height:45px;
	line-height:45px;
	text-indent:10px;
	font-size:1.5em;
	font-weight:bold;
	color:#FFFFFF;
	text-shadow: black 0.1em 0.1em 0.2em;
	background-color:rgb(251, 147, 25);
}
header > ul {
	list-style:none;
	color:#FFF;
	margin:0px;
	font-size:14px;
	margin-left:15px;
	height:0px;
}
header > ul > li {
	display:inline-block;
	padding:8px;
	margin-right:10px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor:pointer;
	position:relative;
	height:100%;
}
header > ul > li:hover {
	background-color:#AE7E45;
}
header > ul > li:hover > ul {
	display:block;
}
header > ul > li > ul {
	position:absolute;
	display:none;
	left:0px;
	top:35px;
	background-color:#AE7E45;
	padding:5px;
	margin:0;
	list-style:none;
	z-index:200;

}
header > ul > li > ul > li {
	display:block;
	margin:0px;
	padding:0px;
	height:35px;
	line-height:35px;
	text-indent:10px;
	min-width:200px;
}
header > ul > li > ul > li:hover {
	background-color:#FBB664;
	color:rgba(55,55,55,1);
}
.sortir {
	position:absolute;
	bottom:20px;
	right:20px;
	height:45px;
	width:300px;
	text-align:right;
	font-size:16px;
	font-weight:bold;
	line-height:45px;
	cursor:pointer;
}
.sortir:hover {
	text-decoration:underline;
}
.sortir > img {
	vertical-align:middle;
	margin-left:5px;
}
input.in-td {
	border:none;
	width:100%;
	height:100%;
}
.search-input {
	background-image:url(icones-defaut/select2-spinner.gif);
	background-repeat:no-repeat;
	background-position:right center;
}
form input {
	margin-bottom:3px;
}
.util-site, .adr-site {
	margin-top:10px;
	border:1px solid #CCC;
	border-radius:4px;
}
.titre-util, .titre-adr {
	height:20px;
	border-radius:4px 4px 0px 0px;
	background-color:#DDD;
	padding:5px;
	font-weight:bold;
	margin-bottom:5px;
}
footer {
	position:absolute;
	width:100%;
	height:35px;
	background-color:rgb(98, 71, 39);
	left:0px;
	bottom:0px;
}
footer ul {
	color:#FFF;
	list-style:none;
	padding:0px;
	margin:0px;
	font-size:12px;
}
footer ul li {
	display:inline-block;
	height:35px;
	line-height:35px;
	padding:0px 5px;
	border-right:1px solid #665;
	cursor:pointer;
}
footer ul li:hover {
	background-color:rgb(174, 126, 69); 
}
.deconnecte {
	position:absolute;
	padding:10px;
	color:#FFF;
	background-color:rgb(98, 71, 39);
	text-decoration:none;
	right:10px;
	bottom:45px;
}
#filter-tournee {
	position:absolute;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.8);
	opacity:.6;
	z-index:100;
	opacity:0;
}
#choix-tournee {
	position:absolute;
	width:400px;
	height:60px;
	background-color:#FFF;
	z-index:101;
	top:50%;
	left:50%;
	margin-top:-100px;
	margin-left:-200px;
	box-shadow:0px 0px 5px #000;
	padding-top:30px;
	text-align:center;
	opacity:0;
}
#info-tournee {
	position:absolute;
	top:80px;
	left:0px;
	padding:10px;
}
#info-tournee h1 {
	margin:0px;
}

#info-tournee h3 {
	margin:0px;
	margin-top:4px;
}
#spin {
	position:absolute;
	width:32px;
	height:32px;
	right:10px;
	top:7px;
	display:none;
}
#spin img {
	width:32px;
}
#annee_menu {
	width:50px;
}
#annee_menu + label {
	width:50px;
}
span.sep {
		border-left:1px solid #999;
		width:1px;
		margin-right:5px;
	}/* CSS Document */

.connexion {
	position:absolute;
	width:350px;
	height:140px;
	left:50%;
	top:50%;
	margin-left:-175px;
	margin-top:-70px;
	/*
	opacity:0;
	display:none;
	*/
	
}
.connexion .logo {
	position:absolute;
	width:316px;
	height:179px;
	background-image:url(/images/ORepas.png);
	left:-160px;
	top:-120px;
}
.connexion label {
	display:inline-block;
	width:105px;
	text-align:right;
	margin-right:5px;
}
.connexion input {
	display:inline-block;
	height:20px;
	margin-top:5px;
	border:1px solid #CCC;
	border-radius:4px;
	margin-left:1px;
	width:218px;
	padding:5px;
}
.connexion  button {
	margin-right:4px;
}
.LEG {
	position:absolute;
	width:120px;
	height:80px;
	text-align:right;
	right:20px;
	bottom:10px;
}
.LEG img {
	border:0px;
}
.entreprise {
	position:absolute;
	width:200px;
	height:150px;
	/*background-color:#E8821A;*/
	top:10px;
	left:10px;
	border-radius:4px;
	border:1px solid #CCC;
	padding:5px;
}
.entreprise hr {
	border:none;
	border-top:1px solid #CCC;
}

#dlapp {
	position:absolute;
	padding:10px;
	color:#FFF;
	background-color:#9FBF3B;
	left:10px;
	bottom:10px;
	text-decoration:none;
}
#dlapp img {
	height:32px;
	vertical-align:middle;
	margin-right:10px;
}/* CSS Document */


div.cadre {
	font-size:12px;
	width:100%;
	background-color:#FFF;
	border:1px solid #d9dcde;
	border-radius:4px 4px 4px 4px;
}
div.cadre div.titre_cadre {
	height:25px;
	line-height:25px;
	border-radius:8px 8px 0px 0px;
	color:#333;
	position:relative;
	margin-left:15px;
	margin-right:15px;
	border-bottom:1px solid #d9dcde;
	font-size:13px;
}
span.ajoute-plus {
	display:inline-block;
	width:20px;
	margin-left:10px;
	background-image:url(icones-defaut/p-ajout.png);
	background-size:16px;
	background-repeat:no-repeat;
	background-position:center center;
	cursor:pointer;
}
div.cadre div.titre_cadre div.bt_cadre {
	height:25px;
	width:25px;
	position:absolute;
	top:0px;
	right:-15px;
	background-repeat:no-repeat;
	background-position:center center;
	cursor:pointer;
}
div.cadre div.titre_cadre div.bt_cadre[state=open] {
	background-image:url(icones-defaut/moins.png);
}
div.cadre div.titre_cadre div.bt_cadre[state=close] {
	background-image:url(icones-defaut/plus.png);
}

div.cadre div.cnt_cadre {
	/*border:1px solid #CCC;
	padding:5px;*/
	padding-top:5px;
	overflow:hidden;
}
/* Nouvelle TABLE */
table.ntable {
	width:100%;
	border-spacing : 0;
	border-collapse : collapse;
	table-layout:fixed;
	font-family: 'Inconsolata', monospace;
}
table.ntable caption {
	text-align:right;
	font-size:12px;
	margin-right:16px;
}
table.ntable th {
}
table.ntable th, table.ntable td {
	padding: 4px;
	text-align: left;
	-webkit-user-select:none;
}
table.ntable th {
	padding:6px 4px;
}
table.ntable thead {
	background-color:rgb(112, 207, 158);
	border:1px solid rgb(112, 207, 158);
	display:block;
}
table.ntable tfoot {
	display:block;
	border-top:1px solid #CCC;
	background-color:rgb(112, 207, 158);
	border:1px solid rgb(112, 207, 158);
}

table.ntable thead th, table.ntable tfoot td {
	border-right:1px solid rgb(112, 207, 158);
	color:#FFF;
}
table.ntable tfoot td {
	border-right:1px solid #FFF;
}
table.ntable thead th:last-child,  table.ntable tfoot td:last-child {
	border-right:none;
}
table.ntable thead tr {
	display:block;
	position:relative;
}
table.ntable tbody {
	display: block;
	overflow: auto;
	width: 100%;
	height: 300px;
}
table.ntable tbody tr {
	border-bottom:1px solid #CCC;
	display:block;
}
table.ntable tbody tr[modele] {
	display:none;
}
table.ntable tbody tr[disable] {
	opacity:.5;
}
table.ntable tbody tr[edit] {
	cursor:pointer;
}
table.ntable tbody tr[edit]:hover {
	background-color:#CAEEFF;
}
table.ntable tbody tr td {
	border-right:1px solid #CCC;
	word-break:break-all;
}
table.ntable tbody tr.ui-sortable-helper {
	border:1px solid #CCC;
}
table.ntable tbody tr.ui-sortable-helper td {
	border:none;
}
table.ntable tbody tr td[decimal] {
	text-align:right;
}
table.ntable tbody tr td[contenteditable=true] {
	cursor:text !important;
}
table.ntable tbody tr td[suppr] {
	text-align:center;
	cursor:pointer;
}
table.ntable tbody tr td[suppr]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-select2.png) top right no-repeat;
}
table.ntable tbody tr td[suppr]:hover::before {
	background-position: right -11px;
}
table.ntable tbody tr td[enable] {
	text-align:center;
	cursor:pointer;
}
table.ntable tbody tr td[enable]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-change_d.png) ;
}
table.ntable tbody tr td[enable]:hover::before {
	background:url(ico-change_e.png) ;
}
table.ntable tbody tr td[sort] {
	text-align:center;
	cursor:move;
}
table.ntable tbody tr td[sort]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-sort_d.png) ;
}
table.ntable tbody tr td[sort]:hover::before {
	background:url(ico-sort_e.png) ;
}
table.ntable tbody tr td[edit] {
	text-align:center;
	cursor:pointer;
}
table.ntable tbody tr td[edit]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-edit_d.png) ;
}
table.ntable tbody tr td[edit]:hover::before {
	background:url(ico-edit_e.png) ;
}
table.ntable tbody tr td[action] {
	text-align:center;
	cursor:pointer;
}
table.ntable tbody tr td[action]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-action_d.png) ;
}
table.ntable tbody tr td[action]:hover::before {
	background:url(ico-action_e.png) ;
}

table.ntable tbody tr td[clone] {
	text-align:center;
	cursor:pointer;
}
table.ntable tbody tr td[clone]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-clone_d.png) ;
}
table.ntable tbody tr td[clone]:hover::before {
	background:url(ico-clone_e.png) ;
}

table.ntable tbody tr td[check] {
	cursor:pointer;
	text-align:center;
}
table.ntable tbody tr td[check]:hover {
	background-color:#DDD;
}
table.ntable tbody tr td[check][checked]::before {
	content:'';
	width:12px;
	height:12px;
	display:inline-block;
	background:url(ico-mark.png) ;
}
table.ntable tbody tr td:first-child {
	border-left:1px solid #CCC;
}
 table.ntable tbody::-webkit-scrollbar {
 width:16px;
}
 table.ntable tbody::-webkit-scrollbar-thumb {
 border: solid 0 transparent;
 border-left-width: 5px;
 border-right-width: 5px;
 -webkit-border-radius: 6px;
 -webkit-box-shadow:  inset 0 0 0 6px rgba(0,0,0,.6);
}
 table.ntable tbody::-webkit-scrollbar-thumb:hover {
 -webkit-box-shadow:  inset 0 0 0 6px rgba(0,0,0,1);
}
 table.ntable tbody::-webkit-scrollbar-thumb:active {
}
 table.ntable tbody::-webkit-scrollbar-button {
 background-image:url(ico-haut.png);
}
 table.ntable tbody::-webkit-scrollbar-button:increment {
 background-image:url(ico-bas.png);
}
 table.ntable tbody::-webkit-scrollbar-track-piece {
 background-image:url(ico-milieu.png);
}
/* CSS Document */

#filter
{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 0%;
	height: 100%;
	background-color: #000;
	z-index:49;
	opacity:0;
	filter: alpha(opacity=50);
	/*-webkit-transition: opacity 0.0s ease-out;*/
	/*
background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); 
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); 
background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); 
background: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); 
background: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 ); 
*/

}
.titre_page_tmp {
	display:none;
}
#filter.ACTIF {
	width:100%;
	opacity:0.4;
	/*-webkit-transition-duration: 0.25s;*/
}
._dialog {
	opacity:1;
}
@-webkit-keyframes showDialog {
    0% {
        transform: scale(.7);
        -webkit-transform: scale(.7)
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    80% {
        transform: scale(.95);
        -webkit-tranform: scale(.95)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
@keyframes showDialog {
    0% {
        transform: scale(.7);
        -webkit-transform: scale(.7)
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    80% {
        transform: scale(.95);
        -webkit-tranform: scale(.95)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
@-webkit-keyframes hideDialog {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5)
    }
}
@keyframes hideDialog {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5)
    }
}
.showDialog {
    -webkit-animation: showDialog .3s;
    animation: showDialog .3s
}
.hideDialog {
    -webkit-animation: hideDialog .2s;
    animation: hideDialog .2s
}
div._extform {
	position:fixed;
	width:100%;
	height:100%;
	background-color:#FFF;
	top:110%;
	left:0px;
	z-index:50;
}
div._sideform {
	position:absolute;
	width:100px;
	height:100px;
	box-shadow:0px 0px 15px #000000;
	font-family:"Century Gothic";
	background-color:#FFFFFF;
	left:100%;
}
._modal {
	/*z-index:110 !important;*/
}
div._form {
	top:50%;
	left:50%;
	position:absolute;
	width:100px;
	height:100px;
	box-shadow:0px 0px 15px #000000;
	border-radius:3px;
	font-family:"Century Gothic";
	background-color:#FFFFFF;
}
div._form .onglet, div._sideform .onglet {
	position:absolute;
	width:35px;
	height:250px;
	top:30px;
	left:-36px;
	background-color:#FFF;
	border-radius:10px 0px 0px 10px;
	border:1px solid #CCC;
	border-right:none;
}
.onglet span {
	position:absolute;
	-webkit-transform:  rotate(270deg);
	-moz-transform:  rotate(270deg);
	-o-transform:  rotate(270deg);
	writing-mode: rl-tb;
	white-space:nowrap;
	line-height:35px;
	cursor:pointer;
}
div._close {
	display:block;
	left:-200%;
}
div._close_sideforrm {
	display:none;
}
/* La barre de Titre */
div._form div._titre, div._sideform div._titre, div._extform div._titre {
	width:100%;
	height:35px;
	/*border-radius:3px 3px 0px 0px;*/
	line-height:35px;
	border-bottom:1px solid #999;
	text-indent:5px;
}
div._form_error div._titre {
background: -moz-linear-gradient(top, #b50000, #6d0000) !important; /* Firefox */
background: -webkit-gradient(linear, 0 0, 0 100%, from(#b50000), to(#6d0000)) !important; /* Safari et Chrome*/
}
/* Le bouton Fermer */
div._form div._fermer, div._sideform div._fermer,  div._extform div._fermer {
	position:absolute;
	width:30px;
	height:30px;
	right:0px;
	top:3px;
	border-radius:0px 3px 0px 0px;
	background-image:url(icones-defaut/ferme2.png);
	background-repeat:no-repeat;
	background-position:center center;
	cursor:pointer;
	opacity:0.8;
}
._fermer:hover {
	opacity:1;
}
/* l'icone de la barre de titre */
div._form div._icone {
	position:absolute;
	width:30px;
	height:30px;
	left:0px;
	top:0px;
	border-radius:3px 0px 0px 0px;
	background-repeat:no-repeat;
	background-position:center center;
} 
div._form div._wrap, div._sideform div._wrap, div._extform div._wrap{
	margin:5px;
	overflow:hidden;
	width:100%;
	/*position:absolute;*/
}
div._wrap {
}
div._wrap::-webkit-scrollbar{
		width:16px;
		/*background-color:#cccccc;*/
	} 
div._wrap::-webkit-scrollbar-thumb{
		border: solid 0 transparent;
		border-left-width: 5px;
		border-right-width: 5px;
		-webkit-border-radius: 6px;
		-webkit-box-shadow:  inset 0 0 0 6px rgba(0,0,0,.6);
	}
div._wrap::-webkit-scrollbar-thumb:hover{
		-webkit-box-shadow:  inset 0 0 0 6px rgba(0,0,0,1);
	
	}
div._wrap::-webkit-scrollbar-thumb:active{
		
	} 
div._wrap::-webkit-scrollbar-button {
		background-image:url(/images/haut.png);
	}
div._wrap::-webkit-scrollbar-button:increment {					
		background-image:url(/images/bas.png);
	}
div._wrap::-webkit-scrollbar-track-piece {						
		background-image:url(/images/milieu.png);
	}
div._cnt {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	padding:0;
	display:block;
}
div._cnt table.bloc-td td {
	text-align:center;
	vertical-align:middle;
}
div._cnt div.bloc {
	display:inline-block;
	vertical-align:middle;
	text-align:center;
	line-height:1.2;
	font-size:12px;
	width:100%;
}
div._form div._footer, div._sideform div._footer {
	margin:5px;
	/*margin-top:-5px;*/
	border-top:1px solid #DDD;
	padding-top:5px;
	top:0px;
	height:40px;
}
/******************************************************************
 * Les Message pour les controles
 ******************************************************************/
 .message {
	 position:absolute;
	 background-color:#900;
	 color:#FFF;
	 border:1px solid #900;
	 top:20px;
	 left:20px;
	 z-index:200;
	 width:200px;
	 height:100px;
	 padding:5px;
	 box-shadow:0px 0px 15px #000000;
	 border-radius:3px;
	 opacity:0;
 }
  .message div.ancre {
	  position:absolute;
	  width:16px;
	  height:16px;
	  top:50%;
	  left:-16px;
	  margin-top:-8px;
	  background-image:url(flgr.png);
	  background-size:contain;
	  background-repeat:no-repeat;
	  background-position:right;
  }
   .message div.contenu {
	   font-size:11px;
	   overflow:hidden;
   }
  /* Notification */
.notifie_frm {
	font-weight: bold;
	width:500px;
	height:30px;
	top:0px;
	left:50%;
	margin-left:-250px;
	color:#FFFFFF;
	position:absolute;
	z-index:101;
	font-size:13px;
	line-height:30px;
	text-align:center;
	border-radius:0px 0px 10px 10px;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.5); 
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	background: -moz-linear-gradient(top, #6CC171, #3C793D); /* Firefox */
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#6CC171), to(#3C793D)); /* Safari et Chrome*/
}
.ERREUR {
	background: -moz-linear-gradient(top, #b50000, #6d0000); /* Firefox */
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#b50000), to(#6d0000)); /* Safari et Chrome*/
}/* CSS Document */

/* CSS Document */

/* Boutons Standards */

button {
	font-family:"Century Gothic";
	font-style:normal;
	color:#000000;
	background:#f5f5f5;
	border:1px solid #bbb;
	box-shadow:0px 1px 10px #d1cfd1;
	-moz-box-shadow:0px 1px 10px #d1cfd1;
	-webkit-box-shadow:0px 1px 10px #d1cfd1;
	padding:5px 10px;
	cursor:pointer;
	margin:0 auto;
	margin-left:2px;
	margin-right:2px;
}

button.form {
	padding:3px 10px;
	margin-left:4px;
}
button[small] {
	font-size:10px;
}
button[disabled], button[disabled]:hover, button[disabled]:active{
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
  box-shadow: none !important;
  text-shadow: none !important;
}

/*
button:active {
	cursor:pointer;
	position:relative;
	top:2px;
}
*/
button img {
    margin:0 4px -4px 0; /* important */
    padding:0;
    border:none;
    width:16px;
    height:16px;
}
button[disabled] img {
	opacity:0.5;
}
/*
button:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
*/
/* bouton sensible */
button.sensible {
    color:#d12f19;
	font-weight:bold;
}
button.sensible:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
button.sensible:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}
/* bouton valide */
button.valide:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
} 
button[disabled].valide:hover{
	border-color: #eaeaea;
	background: #fafafa;
	color: #999;
}
div#CONTENU_BT {
	width:100%;
	margin-top:15px;
	height:28px;
	text-indent:10px;
	border-top:1px #CCC solid;
	padding-top:5px;
}
div[center]#CONTENU_BT {
	text-align:center;
}
div[right]#CONTENU_BT {
	text-align:right;
}/* Skin Form */

._custom_form {
	box-shadow:0px 0px 20px rgba(0,0,0,.4);
}
._custom_sideform {
	box-shadow:none !important;
	border-right:1px solid #CCC;
	border-left:1px solid #CCC;
}

._custom_titre {
	background-color:#C83200;
	color:#FFFFFF;
	
}