/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/* 
 * Définition des styles par defaut de la plupart des éléments html
 * @since : 2011 08 13
 * @last version : 2012 03 02 
 * ==|== Normalize ==========================================================
 */
/* =============================================================================
   Base
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  background: #FFF;
  margin: 0;
  font-size: 12px;
  line-height: 1.231;
}
body,
button,
input,
select,
textarea {
  font-family: Arial, sans-serif;
  color: #222;
}
/* =============================================================================
   Links
   ========================================================================== */
a,
a:hover {
  color: #222;
  text-decoration: underline;
}
a:focus {
  outiline: 0 none;
  /*outline: thin dotted;*/
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0 none;
}
/* =============================================================================
   Typography
   ========================================================================== */
b,
strong {
  font-weight: bold;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 0;
  padding: 0;
}
dd {
  margin: 0;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
ol {
  list-style: decimal outside none;
}
ul {
  list-style: disc outside none;
}
li {
  margin: 0 0 0 30px;
}
/* =============================================================================
   PNG FIX (only IE6)
   ========================================================================== */
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
 * Correct overflow not hidden in IE9 
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button,
input {
  line-height: normal;
  *overflow: visible;
}
/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */
table button,
table input {
  *overflow: auto;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* =============================================================================
   Titles
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
/* =============================================================================
   Place Holders
   ========================================================================== */
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
.placeholder {
  color: #999;
}
/* annule le border-box sur tout jquery ui à cause des problème de redimensionnement en JS */
.ui-widget,
.ui-widget * {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.ui-dialog .ui-dialog-content * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ui-dialog .ui-dialog-content {
  padding: 15px;
}
/*
<input class="ui-autocomplete-input"/>
<ul class="ui-autocomplete ui-menu ui-widget ui-widget-content ui-corner-all">
  <li class="ui-menu-item">
    <a class="ui-corner-all">item 1</a>
  </li>
  <li class="ui-menu-item">
    <a class="ui-corner-all">item 2</a>
  </li>
  <li class="ui-menu-item">
    <a class="ui-corner-all">item 3</a>
  </li>
</ul> 
*/
.ui-autocomplete {
  border: 1px solid #b7afaf;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  width: auto !important;
}
.ui-autocomplete .ui-corner-all {
  border-radius: 0;
}
.ui-autocomplete .ui-menu-item a {
  color: #45494d;
}
.ui-autocomplete .ui-menu-item .ui-state-hover {
  color: #FFF;
  background: #e74c55;
  /*
	-webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0 1px 4px rgba(0,0,0,0.75);
	box-shadow: inset 0 1px 4px rgba(0,0,0,0.75);
	*/
  border-color: #FFF;
}
/*
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
   <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
      <span id="ui-dialog-title-dialog" class="ui-dialog-title">Dialog title</span>
      <a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
   </div>
   <div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content ui-widget-content" id="dialog">
      <p>Dialog content goes here.</p>
   </div>
</div>
*/
.ui-dialog {
  border: 0 none;
}
.ui-dialog .ui-dialog-titlebar {
  border: 0 none;
}
.ui-dialog .ui-dialog-titlebar.ui-corner-all {
  border-radius: 4px 4px 0 0;
}
.ui-dialog .ui-dialog-title {
  font-size: 16px;
}
/*---------------------------------------
 * =ERREUR 
 ----------------------------------------*/
.dialog-error .ui-dialog-titlebar {
  background: #E1011B;
}
.dialog-error .ui-dialog-title {
  color: #FFF;
}
.dialog-error .ui-dialog-content {
  color: #E1011B;
  font-weight: bold;
}
.dialog-error .ui-dialog-titlebar .ui-icon {
  background-image: url("phoenix-theme/images/ui-icons_ffffff_256x240.png");
}
.dialog-error .ui-dialog-titlebar .ui-state-hover {
  background: #FFF;
  border-color: transparent;
}
.dialog-error .ui-dialog-titlebar .ui-state-hover .ui-icon {
  background-image: url("phoenix-theme/images/ui-icons_e1011b_256x240.png");
}
/*---------------------------------------
 * =WARNING 
 ----------------------------------------*/
.dialog-warning .ui-dialog-titlebar {
  background: #FA7211;
}
.dialog-warning .ui-dialog-title {
  color: #FFF;
}
.dialog-warning .ui-dialog-content {
  color: #FA7211;
  font-weight: bold;
}
.dialog-warning .ui-dialog-titlebar .ui-icon {
  background-image: url("phoenix-theme/images/ui-icons_ffffff_256x240.png");
}
.dialog-warning .ui-dialog-titlebar .ui-state-hover {
  background: #FFF;
  border-color: transparent;
}
.dialog-warning .ui-dialog-titlebar .ui-state-hover .ui-icon {
  background-image: url("phoenix-theme/images/ui-icons_e1011b_256x240.png");
}
/* TipTip CSS - Version 1.2 */
#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
#tiptip_holder.tip_top {
  padding-bottom: 5px;
}
#tiptip_holder.tip_bottom {
  padding-top: 5px;
}
#tiptip_holder.tip_right {
  padding-left: 5px;
}
#tiptip_holder.tip_left {
  padding-right: 5px;
}
#tiptip_content {
  font-size: 11px;
  color: #fff;
  padding: 4px 8px;
  background: #2a2a2a;
}
#tiptip_arrow,
#tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}
#tiptip_holder.tip_top #tiptip_arrow {
  border-top-color: #fff;
  border-top-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_bottom #tiptip_arrow {
  border-bottom-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_right #tiptip_arrow {
  border-right-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_left #tiptip_arrow {
  border-left-color: #fff;
  border-left-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -6px;
  border-top-color: #191919;
  border-top-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: #191919;
  border-bottom-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -5px;
  border-right-color: #191919;
  border-right-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: #191919;
  border-left-color: rgba(25, 25, 25, 0.92);
}
/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #tiptip_content {
    padding: 4px 8px 5px 8px;
  }
  #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    border-bottom-color: rgba(45, 45, 45, 0.88);
  }
  #tiptip_holder.tip_top #tiptip_arrow_inner {
    border-top-color: rgba(20, 20, 20, 0.92);
  }
}
/* **************** GRIDS ***************** */
.line,
.lastUnit {
  overflow: hidden;
  _overflow: visible;
  _zoom: 1;
}
.unit {
  float: left;
  _zoom: 1;
}
.unitExt {
  float: right;
}
.size1of1 {
  float: none;
  width: 100%;
}
.size1of2 {
  width: 50%;
}
.size1of3 {
  width: 33.33333%;
}
.size2of3 {
  width: 66.66666%;
}
.size1of4 {
  width: 25%;
}
.size3of4 {
  width: 75%;
}
.size1of5 {
  width: 20%;
}
.size2of5 {
  width: 40%;
}
.size3of5 {
  width: 60%;
}
.size4of5 {
  width: 80%;
}
.lastUnit {
  float: none;
  _position: relative;
  _left: -3px;
  _margin-right: -3px;
  /*width:auto;*/
}
.rightUnit {
  float: right;
}
.push1of2 {
  margin-left: 50%;
}
.push1of3 {
  margin-left: 33.33333%;
}
.push2of3 {
  margin-left: 66.66666%;
}
.push1of4 {
  margin-left: 25%;
}
.push3of4 {
  margin-left: 75%;
}
.push1of5 {
  margin-left: 20%;
}
.push2of5 {
  margin-left: 40%;
}
.push3of5 {
  margin-left: 60%;
}
.push4of5 {
  margin-left: 80%;
}
.gutter10 {
  padding-right: 10px;
}
.gutter20 {
  padding-right: 20px;
}
/* extending grids to allow a unit that takes the width of its content */
.media {
  width: auto;
}
/*********************
** ICONS CLICKABLE
**********************/
.icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  text-indent: -99999px;
}
.icon:hover {
  border: 1px solid #adadad;
  background-color: #FFF;
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.icon-32 {
  width: 50px;
  height: 50px;
}
.icon-32.icon-excel {
  background-image: url(../img/icon_export_excel.png);
}
.icon-24 {
  width: 40px;
  height: 40px;
  background-image: url(../img/icons_24x24.png);
}
.icon-24.icon-copy {
  background-position: left 0;
}
.icon-24.icon-copy:hover {
  background-position: -41px -2px;
}
.icon-24.icon-mail {
  background-position: left -40px;
}
.icon-24.icon-mail:hover {
  background-position: -41px -42px;
}
.icon-24.icon-save {
  background-position: left -80px;
}
.icon-24.icon-save:hover {
  background-position: -41px -82px;
}
.icon-24.icon-pdf {
  background-position: left -120px;
}
.icon-24.icon-pdf:hover {
  background-position: -41px -122px;
}
.icon-24.icon-mail-history {
  background-position: left -160px;
}
.icon-24.icon-mail-history:hover {
  background-position: -41px -162px;
}
.icon-24.icon-excel {
  background-position: left -200px;
}
.icon-24.icon-excel:hover {
  background-position: -41px -202px;
}
/*********************
** ICONS STATUTS
**********************/
.icon-statut {
  background: url(../img/icons_statuts.png) no-repeat left top;
  display: block;
  overflow: hidden;
  text-indent: -99999px;
  width: 22px;
  height: 22px;
  cursor: help;
}
.icon-statut.icon-inline-block {
  display: inline-block;
}
.icon-statut.icon-accepte {
  background-position: 0 0;
}
.icon-statut.icon-check {
  background-position: 0 -32px;
}
.icon-statut.icon-cloture {
  background-position: 0 -64px;
}
.icon-statut.icon-encours {
  background-position: 0 -96px;
}
.icon-statut.icon-refuse {
  background-position: 0 -128px;
}
.icon-statut.icon-warning {
  background-position: 0 -160px;
}
/*********************
** TITLE WITH ICON
**********************/
.title-icon {
  padding-left: 20px;
  background: url(../img/icons_16x16.png) no-repeat left top;
}
/*** icons 16x16px ***/
.title-icon.icon-calendar {
  background-position: 0 0;
}
.title-icon.icon-deletebl {
  background-position: 0 -46px;
}
.title-icon.icon-copy {
  background-position: 0 -92px;
}
.title-icon.icon-chart {
  background-position: 0 -138px;
}
.title-icon.icon-calc {
  background-position: 0 -184px;
}
.title-icon.icon-bookmark {
  background-position: 0 -230px;
}
.title-icon.icon-attach {
  background-position: 0 -276px;
}
.title-icon.icon-adsearch {
  background-position: 0 -322px;
}
.title-icon.icon-edit {
  background-position: 0 -368px;
}
.title-icon.icon-email2 {
  background-position: 0 -414px;
}
.title-icon.icon-excel {
  background-position: 0 -460px;
}
.title-icon.icon-pdf {
  background-position: 0 -506px;
}
.title-icon.icon-zoom {
  background-position: 0 -552px;
}
.title-icon.icon-users {
  background-position: 0 -598px;
}
.title-icon.icon-user {
  background-position: 0 -644px;
}
.title-icon.icon-trash {
  background-position: 0 -690px;
}
.title-icon.icon-time {
  background-position: 0 -736px;
}
.title-icon.icon-text {
  background-position: 0 -782px;
}
.title-icon.icon-pin {
  background-position: 0 -828px;
}
.title-icon.icon-pickdate {
  background-position: 0 -874px;
}
.title-icon.icon-options {
  background-position: 0 -920px;
}
.title-icon.icon-help {
  background-position: 0 -966px;
}
.title-icon.icon-doc {
  background-position: 0 -1012px;
}
.title-icon.icon-deletegris {
  background-position: 0 -1058px;
}
.title-icon.icon-cube {
  background: url(../img/icon_cube.png) no-repeat left top;
}
.title-icon.icon-layers {
  background: url(../img/icon_layers.png) no-repeat left top;
}
.title-icon.icon-reload {
  background: url(../img/icon_reload.png) no-repeat left top;
}
/*** box bleue ***/
.box-blue > .box-hd .title-icon {
  background-image: url(../img/icons_16x16_white.png) !important;
}
.box-blue > .box-hd .title-icon.icon-layers {
  background-position: 0 0;
}
.box-blue > .box-hd .title-icon.icon-reload {
  background-position: 0 -45px;
}
.box-blue > .box-hd .title-icon.icon-cogs {
  background-position: 0 -89px;
}
.box-blue > .box-hd .title-icon.icon-options {
  background-position: 0 -89px;
}
/*********************
** ICONS LIST
**********************/
.icon-list {
  display: inline-block;
  text-indent: -99999px;
  width: 16px;
  height: 16px;
}
.icon-list.icon-delete {
  background: url(../img/icon_delete.png) no-repeat center center;
}
.icon-list.icon-minus {
  background: url(../img/icon_minus.png) no-repeat center center;
}
.icon-list.icon-plus {
  background: url(../img/icon_plus.png) no-repeat center center;
}
.icon-list.icon-edit {
  background: url(../img/icons_16x16.png) no-repeat 0 -368px;
}
.icon-list.icon-edit-grey {
  background: url(../img/icon_grey_edit.png) no-repeat center center;
}
.icon-list.icon-zoom {
  background: url(../img/icons_16x16.png) no-repeat 0 -552px;
}
.icon-list.icon-validate {
  background: url(../img/icon_validate.png) no-repeat center center;
}
.icon-list.icon-unvalidate {
  background: url(../img/icon_unvalidate.png) no-repeat center center;
}
.icon-list.icon-lock {
  background: url(../img/icon_lock.png) no-repeat center center;
}
.icon-list.icon-encaisser {
  background: url(../img/icon_encaisser.png) no-repeat center center;
}
.icon-list.icon-decaisser {
  background: url(../img/icon_decaisser.png) no-repeat center center;
}
.icon-list.icon-text {
  background: url(../img/icons_16x16.png) no-repeat 0 -782px;
}
.icon-list.icon-pin {
  background: url(../img/icons_16x16.png) no-repeat 0 -828px;
}
.icon-list.icon-attention {
  background: url(../img/icon_attention.png) no-repeat center center;
}
.icon-list.icon-excel {
  background: url(../img/icons_16x16.png) no-repeat 0 -460px;
}
/*** box bleue ***/
.box-blue > .box-hd .icon-list.icon-minus {
  background: url(../img/icon_minus_white.png) no-repeat center center;
}
.box-blue > .box-hd .icon-list.icon-plus {
  background: url(../img/icon_plus_white.png) no-repeat center center;
}
/*********************
** LINK ICON
**********************/
.link-icon {
  text-decoration: none;
  font-size: 13px;
  line-height: 16px;
}
.link-icon:hover {
  text-decoration: underline;
}
/* feature/#62277 */
.icon-list.icon-euro {
  background: url(../img/icon_euro.png) no-repeat 0 0;
}
/* feature/#98888 */
.icon-list.icon-basket {
  background: url(../img/icon_basket.png) no-repeat 0 0;
}
/*** navigation commun ***/
ul.nav,
.nav ul {
  list-style: none;
}
.nav li {
  margin: 0;
}
.nav {
  white-space: nowrap;
}
.nav-elem {
  float: left;
  margin: 0;
  position: relative;
}
.nav a {
  text-decoration: none;
  display: block;
}
.nav a:hover {
  text-decoration: none;
}
/*** SITE NAV ***/
#site-nav {
  background: #eaeaea;
  height: 42px;
  border-bottom: 1px solid #FFF;
}
/*** SITE NAV - MENU PRINCIPAL ***/
#site-nav .nav-elem > a {
  background: #FFF;
  height: 41px;
  /* hauteur du site-nav - la bordure a cause du box-sizing */
  line-height: 41px;
  padding: 0 15px;
  font-size: 16px;
  border-right: 1px solid #E1E1E1;
  position: relative;
  z-index: 20;
  /* pour que le sous menu passe dessous à cause de l'ombre */
  color: #45494D;
  font-weight: bold;
}
/* menu item actif */
#site-nav .nav-elem.elem-actif > a {
  color: #e11f2a;
  border-bottom: 0 none;
}
/* menu item over */
#site-nav .nav-elem > a:hover,
#site-nav .nav-elem.elem-hover > a {
  background: #FFF;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  color: #e74c55;
}
#site-nav .nav-elem.elem-actif > .icon-nav-actif {
  background: url(../img/icon_nav_actif.png) no-repeat;
  width: 18px;
  height: 9px;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: 41px;
  z-index: 5;
}
/*** SITE NAV - SOUS MENU ***/
#site-nav .subnav {
  position: absolute;
  z-index: 10;
  left: -1px;
  top: 100%;
  background: #FFF;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding: 5px;
  border-right: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  border-left: 1px solid #E1E1E1;
}
#site-nav .subnav-elem {
  position: relative;
  margin-bottom: 5px;
}
#site-nav .subnav-elem > a {
  height: 30px;
  line-height: 30px;
  padding-left: 15px;
  padding-right: 25px;
  font-size: 14px;
}
/* submenu item over et actif */
#site-nav .subnav-elem > a:hover,
#site-nav .subnav-elem.elem-actif > a {
  background-color: #ececec;
}
/* submenu item avec sous menu */
#site-nav .subnav-elem.elem-whsubsubnav > a {
  background: url(../img/subsubnav_off.png) no-repeat right center;
}
#site-nav .subnav-elem.elem-whsubsubnav > a:hover,
#site-nav .subnav-elem.elem-actif.elem-whsubsubnav > a {
  background: #807f7f url(../img/subsubnav_on.png) no-repeat right center;
}
/*** SITE NAV - SOUS SOUS MENU ***/
#site-nav .subsubnav {
  background: #FFF;
  padding: 10px 2px;
  border-bottom: 1px solid #d9d9d9;
}
#site-nav .subsubnav-elem > a {
  height: 24px;
  line-height: 24px;
  padding: 0 15px;
  font-size: 14px;
}
#site-nav .subsubnav-elem > a:hover {
  background: #e74c55;
  color: #FFF;
}
/*********************
** CONTENT - NAV
**********************/
#content-nav {
  border-bottom: 1px solid #d3d3d3;
  height: 47px;
  padding-top: 20px;
}
#content-nav .nav-elem > a {
  color: #666666;
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  height: 27px;
  line-height: 26px;
  padding: 0 15px;
  font-size: 14px;
}
#content-nav .nav-elem.elem-first {
  margin-left: 50px;
}
#content-nav .nav-elem.elem-first a {
  border-left: 1px solid #d3d3d3;
}
#content-nav .nav-elem a:hover {
  color: #e74c55;
}
#content-nav .nav-elem.elem-actif {
  left: -1px;
  top: -4px;
}
#content-nav .nav-elem.elem-actif a {
  color: #e74c55;
  font-weight: bold;
  background: #ececec;
  background-image: -webkit-gradient(linear, center top, center bottom, from(#fafafa), to(#ececec));
  background-image: -webkit-linear-gradient(top, #fafafa, #ececec);
  background-image: -moz-linear-gradient(top, #fafafa, #ececec);
  background-image: -o-linear-gradient(top, #fafafa, #ececec);
  background-image: -ms-linear-gradient(top, #fafafa, #ececec);
  background-image: linear-gradient(to bottom, #fafafa, #ececec);
  height: 31px;
  border-left: 1px solid #d3d3d3;
  line-height: 33px;
  -webkit-box-shadow: inset 0 2px 3px #FFF;
  -moz-box-shadow: inset 0 2px 3px #FFF;
  box-shadow: inset 0 2px 3px #FFF;
}
/*********************
** BUTTONS
**********************/
.btn {
  display: inline-block;
  background: #666666 no-repeat 0 0;
  height: 27px;
  line-height: 27px;
  padding: 0 10px;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  border: 0 none;
  cursor: pointer;
  text-decoration: none;
  outline: 0 none;
  vertical-align: top;
  -webkit-transition: background-color 0.15s ease-in-out 0s;
  -moz-transition: background-color 0.15s ease-in-out 0s;
  transition: background-color 0.15s ease-in-out 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn:hover {
  background-color: #4d4d4d;
  color: #FFF;
  text-decoration: none;
}
.btn:active {
  position: relative;
  top: 1px;
  left: 1px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}
.btn-orange {
  background-color: #e74c55;
  color: #FFF;
  text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
.btn-orange:hover {
  background-color: #e11f2a;
  color: #FFF;
  border-color: #c81d29;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.btn-blue {
  background-color: #4c8ffd;
  color: #FFF;
  border-color: #3079ed;
  text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
.btn-blue:hover {
  background-color: #357ae8;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #FFF;
  border-color: #357ae8;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
/**** big button ****/
.btn-big {
  height: 31px;
  line-height: 31px;
  font-size: 14px;
}
/**** small button ****/
.btn-small {
  height: 22px;
  line-height: 20px;
}
/**** advanced search ****/
.btn-adsearch {
  padding-left: 25px;
  font-size: 13px;
  background-image: url(../img/icon_adsearch.png);
  background-position: 5px center;
}
/**** Filtres ****/
.btn-filtres {
  background: url(../img/bg_btn_filtres.png) no-repeat left top;
  width: 152px;
  height: 22px;
  line-height: 22px;
  color: #FFF;
  cursor: normal;
  border: 0 none;
  padding-left: 25px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  border-radius: 10px;
}
.btn-filtres:hover {
  color: #FFF;
  text-decoration: none;
}
.btn-filtres.filtres-actif {
  background-position: left bottom;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.list {
  width: 100%;
  margin-bottom: 10px;
  border-collapse: separate;
}
.list th,
.grey-row td {
  vertical-align: top;
  border-top: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  background: #F2F2F2 !important;
  text-align: left;
  color: #45494d;
  font-size: 14px;
  white-space: nowrap;
  /* pour que les en-têtes ne passent pas sur 2 lignes */
}
.list th a {
  color: #45494d;
  display: block;
  padding: 7px 5px;
  text-decoration: none;
  overflow: hidden;
}
.list th .notsortable {
  padding: 7px 5px;
  display: block;
}
.sort-indicator {
  background-image: url(../img/icons_sort.png);
  background-repeat: no-repeat;
  height: 7px;
  width: 8px;
  margin-left: 5px;
  margin-top: 7px;
  display: inline-block;
}
.sorted.asc .sort-indicator {
  background-position: left bottom;
}
.sorted.desc .sort-indicator {
  background-position: right bottom;
}
.sortable .sort-indicator {
  background-position: -9999px;
}
.sorted.asc:hover .sort-indicator {
  background-position: right top;
}
.sorted.desc:hover .sort-indicator {
  background-position: left top;
}
.sortable:hover .sort-indicator {
  background-position: left top;
}
.sortable:hover,
.sorted:hover {
  background: #e1e1e1;
  color: #222;
}
.list .sorted {
  color: #222;
}
.list .check-column {
  width: 30px;
  text-align: center;
  padding-top: 9px;
}
.list th:first-child {
  border-left: 1px solid #dddddd;
}
.list > tbody > tr > td {
  padding: 5px;
  background: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  vertical-align: middle;
}
.list > tbody > tr.alt td {
  background: #f5f5f5;
  border-color: #ddd;
}
.list > tbody > tr.alt td:first-child {
  border-left-color: #f5f5f5;
}
.list > tbody > tr.alt td:last-child {
  border-right-color: #f5f5f5;
}
.list > tbody > tr td:first-child {
  border-left: 1px solid #FFF;
}
.list > tbody > tr td:last-child {
  border-right: 1px solid #FFF;
}
.list > tbody > tr > td.column-secondary {
  color: #7e7e7e;
}
.list > tbody > tr.canceled td {
  color: #d00814;
}
/**** Sub Head ****/
.list .sub-head td {
  background: #d3d3d3;
  padding: 3px 5px;
}
.list .sub-head td.column-border {
  border-right: 1px solid #FFF;
}
.list > tbody > tr td.column-border {
  border-right: 1px solid #d3d3d3;
}
/*** logo client ***/
.list .client-logo {
  margin-right: 5px;
  border: 1px solid #dedede;
}
.list .client-name {
  overflow: hidden;
}
/**** MAIN LIST ****/
.list-main > tbody > tr > td {
  font-size: 13px;
  color: #45494D;
}
.list-relances > tbody > tr > td {
  font-size: 11px;
  padding: 1px;
}
.list-main > tbody > tr:hover td {
  border-top: 1px solid #e74c55;
  border-bottom: 1px solid #e74c55;
}
.list-main > tbody > tr:hover td:first-child {
  border-left: 1px solid #e74c55;
}
.list-main > tbody > tr:hover td:last-child {
  border-right: 1px solid #e74c55;
}
.list-main tr[data-href] {
  cursor: pointer;
}
/**** SIMPLE LIST ****/
.list-simple th,
.grey-row td {
  font-weight: normal;
  font-size: 12px;
}
.list-simple th .notsortable,
.list-simple th a {
  padding: 5px;
}
.list tr.noborder td {
  border: 0 none;
}
/*** LIST / ICON ***/
.list tr th.column-noborder {
  border-right: 0 none;
}
.list > tbody > tr .icon-list {
  visibility: hidden;
}
.list > tbody > tr .icon-list.icon-visible {
  visibility: visible;
}
.list > tbody > tr:hover .icon-list {
  visibility: visible;
}
/**** List actions ****/
.list-actions {
  margin-bottom: 20px;
  position: relative;
  height: 50px;
}
/*** Placement des différents éléments pour qu'ils soient tous bien allignés en bas ***/
.list-actions .icon-32 {
  position: relative;
  top: 9px;
}
.list-actions .search {
  position: relative;
  top: 21px;
}
.list-actions .btn-big {
  position: relative;
  top: 19px;
}
.list-actions .btn-filtres {
  position: relative;
  top: 28px;
}
.list-actions .pagination {
  position: relative;
  top: 31px;
}
.list-actions .list-title {
  color: #e74c55;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 25px;
}
.list-actions .list-total {
  margin-top: 19px;
}
.list-actions .stats-op-fieldset {
  margin: 0;
  position: relative;
  top: -10px;
  width: auto;
}
/**** Pagination ****/
.pagination {
  font-size: 14px;
}
.pagination a {
  text-decoration: none;
  display: inline-block;
}
.pagination a:hover {
  color: #e74c55;
}
.pagination .page-current {
  font-weight: bold;
}
.pagination .page-total {
  color: #a3a3a3;
}
.pagination .page-prev {
  margin-right: 10px;
}
.pagination .page-next {
  margin-left: 10px;
}
.pagination .page-first {
  margin-right: 10px;
}
.pagination .page-last {
  margin-left: 10px;
}
/**** table Total****/
.list-total td {
  font-size: 16px;
  padding: 5px;
  vertical-align: middle;
}
.column-total {
  background: #e74c55;
  color: #FFF;
  font-weight: bold;
}
/**** table stats op ****/
.stats-op-fieldset {
  border: 1px solid #dbdbdb;
  padding: 5px 10px;
  width: 270px;
  margin: -15px auto 0;
}
.stats-op-fieldset.large {
  width: 400px;
}
.stats-op {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.stats-op th {
  font-weight: normal;
  text-align: left;
}
.stats-op th.op-accepte {
  color: #446700;
}
.stats-op th.op-encours {
  color: #404040;
}
.stats-op th.op-refuse {
  color: #af0000;
}
.stats-op td {
  font-weight: bold;
  font-size: 16px;
  padding: 2px 5px;
}
td.op-cree {
  background-color: #046780 !important;
  color: #FFF;
}
td.op-accepte {
  background-color: #446700 !important;
  color: #FFF;
}
td.op-encours {
  background-color: #404040 !important;
  color: #FFF;
}
td.op-refuse {
  background-color: #af0000 !important;
  color: #FFF;
}
.stats-op td a {
  display: block;
  color: #FFF;
  text-decoration: none;
}
/*** list kpis ***/
.list-kpis th {
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  width: 10%;
}
.list-kpis td {
  white-space: normal;
  text-align: right;
  vertical-align: middle;
  width: 10%;
  border-right: 1px solid #ccc;
}
.list-kpis td .arrow {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: 35px;
}
.list-kpis td .green-arrow {
  color: green;
}
.list-kpis td .red-arrow {
  color: red;
}
.list-kpis td .orange-arrow {
  color: orange;
}
.list-kpis-settings {
  min-height: 150px;
  display: block;
  background-color: #F2F2F2;
  width: 100%;
}
.list-kpis-settings tr {
  width: 100%;
}
.list-kpis-settings input {
  width: 50%;
}
.list-kpis-settings select {
  width: 50%;
}
#id_btn_save_settings {
  float: none;
}
#id_div_btn_save_settings {
  text-align: center;
}
/*********************
** FORMS
**********************/
.form-label {
  padding-right: 10px;
  padding-top: 4px;
}
.form-text {
  padding-top: 4px;
}
.form-input,
.form-long-input {
  padding: 0 5px;
  border: 1px solid #d3d3d3;
  height: 22px;
  line-height: 20px;
  color: #45494d;
}
.form-long-input {
  width: 350px;
}
.form-span-highlight {
  padding: 4px 4px 4px;
  border: 1px solid #d3d3d3;
  line-height: 20px;
  background: #59CAFB;
  padding: 0 0px;
  float: left;
  width: 100%;
  height: 22px;
}
.form-select {
  padding: 2px;
  border: 1px solid #d3d3d3;
  height: 22px;
  color: #45494d;
}
.form-textarea {
  padding: 5px;
  border: 1px solid #d3d3d3;
  color: #45494d;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #BBB;
}
.form-line {
  margin-bottom: 10px;
}
.form-section {
  margin-bottom: 20px;
}
.col {
  margin-right: 10px;
}
.col-dbl {
  margin-right: 20px;
}
.lastUnit > .col {
  margin-right: 0;
}
/**** input special ****/
.input-orange {
  color: #e74c55;
}
.input-orange:focus {
  border-color: #e74c55;
}
.input-big {
  height: 30px;
  line-height: 28px;
  font-size: 16px;
  font-weight: bold;
}
/**** input editable (prestations) ****/
.input-editable {
  border: 1px solid transparent;
  background: none;
  color: #222;
}
.input-editable:hover {
  cursor: pointer;
  background: #ffd7af;
}
.input-editable:focus {
  cursor: auto;
  background: #FFF;
  border: 1px solid #e74c55;
}
.input-highlight {
  cursor: pointer;
  background: #ffd7af;
}
.input-highlight:focus {
  cursor: auto;
  background: #ffd7af;
  border: 1px solid #e74c55;
}
/***** date picker ****/
.date .date-input,
.date-input-min,
.date-input-max {
  padding: 0 5px;
  height: 22px;
  line-height: 20px;
  border-top: 1px solid #d3d3d3;
  border-right: 0 none;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  float: left;
  width: 90px;
}
.hasDatepicker {
  color: #45494d;
}
.ui-datepicker-trigger {
  background: url(../img/icon_datepicker.png) no-repeat center center;
  width: 20px;
  height: 22px;
  color: #45494d;
  padding: 0;
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 0 none;
  float: left;
  font-size: 0;
}
/***** Autocomplete ****/
.input-autocomplete {
  padding-left: 25px !important;
  background: #ffffff url(../img/icon_search.png) no-repeat 5px center;
}
/****** SEARCH ******/
.search .form-input {
  padding-left: 25px;
  background: #ffffff url(../img/icon_search.png) no-repeat 5px center;
  width: 230px;
  float: left;
  border-radius: 15px 0 0 15px;
  height: 27px;
  line-height: 25px;
  border-right: 0 none;
  font-size: 14px;
}
.search .btn {
  float: left;
}
.search .btn-orange {
  border-radius: 0 15px 15px 0;
}
.search .btn-adsearch {
  margin: 0 20px;
  position: relative;
  top: -2px !important;
}
.align-fields-inblock {
  float: left;
  margin-left: 8px;
  width: 48%;
}
/****** SWITCH ******/
.input-switch {
  padding-left: 32px;
  background: #ffffff url(../img/icon_switch.png) no-repeat 5px center;
  width: 230px;
  border-radius: 15px;
  height: 27px;
  line-height: 25px;
  font-size: 14px;
}
/**** error ***/
.form-error,
.date-error .date-input,
.date-error .ui-datepicker-trigger {
  background-color: #FFDFE3 !important;
  border-color: #E1011B !important;
}
.success-msg {
  background: #00cc00 no-repeat 5px 5px;
  padding: 5px 5px 5px 40px;
  min-height: 20px;
  line-height: 20px;
  color: #FFF;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}
.success-msg ul {
  list-style: none;
}
.success-msg ul li {
  margin: 0;
}
.errors-msg {
  background: #cc0000 url(../img/icon_warning.png) no-repeat 5px 5px;
  padding: 5px 5px 5px 40px;
  min-height: 20px;
  line-height: 20px;
  color: #FFF;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}
.errors-msg ul {
  list-style: none;
}
.errors-msg ul li {
  margin: 0;
}
.error-msg {
  color: #cc0000;
  font-weight: bold;
  font-size: 13px;
  padding-top: 5px;
}
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
.placeholder {
  color: #999;
}
*:disabled {
  background-color: #ccc;
  opacity: 0.5;
}
/*********************
** BOX
**********************/
.box {
  margin-right: 10px;
  margin-bottom: 10px;
  background: #FFF;
  border: 1px solid #ddd;
}
.box.toggle {
  background-position: 0 0;
}
.box.toggle.hide h2:first-child {
  background: url(../img/icon_fleche_up.png) no-repeat;
  padding-left: 20px;
}
.box.toggle.hide .box-bd {
  display: none;
}
.box.toggle.show h2:first-child {
  background: url(../img/icon_fleche_down.png) no-repeat;
  padding-left: 20px;
}
.box.toggle.show .box-bd {
  display: box;
}
.box .lastUnit > .box,
.box-last {
  margin-right: 0;
}
.box-hd {
  background: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image: -moz-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image: -o-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image: -ms-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
  padding: 5px;
}
.box-title {
  line-height: 16px;
  font-size: 16px;
  font-weight: bold;
}
.box-bd {
  padding: 10px;
}
/*** box bleue ***/
.box-blue > .box-hd {
  background: #505d7a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#606c88), to(#3f4c6b));
  background-image: -webkit-linear-gradient(top, #606c88, #3f4c6b);
  background-image: -moz-linear-gradient(top, #606c88, #3f4c6b);
  background-image: -o-linear-gradient(top, #606c88, #3f4c6b);
  background-image: -ms-linear-gradient(top, #606c88, #3f4c6b);
  background-image: linear-gradient(to bottom, #606c88, #3f4c6b);
}
.box-blue > .box-hd .box-title {
  color: #FFF;
}
.bd-grey {
  background-color: #cccccc;
}
.box-with-action-button {
  width: 97%;
  float: left;
}
.box-action-button {
  float: left;
  margin: 5px 0px 0px 5px;
}
/*********************
** SECTIONS
**********************/
.section {
  margin-bottom: 10px;
}
.section-hd {
  background: #eee;
  padding: 5px;
  margin-bottom: 10px;
}
.section-hd .icon,
.section-hd h2 {
  display: inline;
}
.section-hd .icon {
  margin-top: -12px;
}
.section-bd {
  padding: 0 10px;
}
.section-title {
  font-size: 14px;
  font-weight: bold;
  color: #463031;
  line-height: 16px;
}
.section-title.title-icon {
  font-size: 13px;
}
.section-separator {
  clear: both;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 5px;
}
/*********************
** CLEARFIX
**********************/
/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clearfix:after {
  clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/
.clearfix {
  zoom: 1;
}
/*********************
** MEDIA
**********************/
.media {
  /*margin: 10px;*/
}
.media,
.media-bd {
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
}
.media .media-img {
  float: left;
  margin-right: 10px;
}
.media .media-img img {
  display: block;
}
.media .media-imgExt {
  float: right;
  margin-left: 10px;
}
/*********************
** ALIGN
**********************/
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
/*********************
** COLORS
**********************/
.text-waiting {
  font-weight: bold;
  color: #c30;
}
.text-ok {
  font-weight: bold;
  color: #009900;
}
.text-ko {
  font-weight: bold;
  color: #d00814;
}
.text-color {
  color: #e74c55;
}
/*********************
** LINKS
**********************/
.link-add {
  background: url(../img/icon_add.png) no-repeat left center;
  padding-left: 25px;
  color: #e74c55;
  font-size: 13px;
  text-decoration: none;
}
.link-add:hover {
  color: #e74c55;
  text-decoration: underline;
}
/*********************
** OPTIONS
**********************/
/*** Common ***/
.opt-title1,
.opt-title2 {
  background: url(../img/icons_options.png) no-repeat 0 0;
  padding-left: 20px;
  display: block;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 5px;
}
/*** Niveau 1 ***/
.options,
.options ul {
  list-style: none;
}
.opt-item1 {
  margin-left: 0;
}
.opt-title1 {
  font-size: 14px;
  line-height: 14px;
  background-position: 0 -27px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.opt-item1:nth-child(2n) .opt-title1 {
  background-color: #f5f5f5;
}
.opt-title1.opt-hide {
  background-position: 0 5px;
}
/*** Niveau 2 ***/
.options2 > .option {
  margin-left: 35px;
}
.opt-title2 {
  font-size: 13px;
  background-position: 0 -96px;
}
.opt-title2.opt-hide {
  background-position: 0 -64px;
}
/*** Niveau Option ***/
.option {
  margin-bottom: 5px;
}
.opt-label {
  font-size: 12px;
  font-weight: normal;
  color: #e74c55;
}
/*********************
** LOADER
**********************/
.loader-overlay {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #000000 url(../img/loader.gif) no-repeat center center;
  background-color: rgba(234, 234, 234, 0.5);
  height: 100%;
  width: 100%;
}
/*********************
** CLIENTS
**********************/
.address-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.address-div .icon-list {
  visibility: hidden;
}
.address-div:hover .icon-list {
  visibility: visible;
}
.text-warning {
  background: url(../img/icon_warning.png) no-repeat left center;
  padding-left: 30px;
  line-height: 24px;
}
.text-inactif {
  font-style: italic;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
}
/*** BOXES SORTABLE ***/
.boxes-sortable .ui-sortable-placeholder {
  margin-bottom: 10px;
  background: #ff9774;
  border: 2px dashed #c30;
}
.boxes-sortable .box-hd .box-handle {
  display: inline-block;
  width: 10px;
  height: 22px;
  cursor: pointer;
  cursor: -moz-grab;
  cursor: grab;
  background: transparent url(../img/icon_handle.png) no-repeat 5px center;
  border-left: 2px solid #BCBCBC;
  visibility: hidden;
}
.boxes-sortable .box-hd .icon-delete {
  visibility: hidden;
}
.boxes-sortable .box-hd:hover .box-handle,
.boxes-sortable .box-hd:hover .icon-delete {
  visibility: visible;
}
/*** BOX PRESTAS ***/
.box-prestas .box-hd {
  height: 34px;
  font-size: 13px;
}
.box-prestas .box-title {
  line-height: 22px;
}
.box-prestas .box-title .input-editable {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
}
.box-prestas .box-hd .icon-list {
  position: relative;
  top: 3px;
}
.box-prestas .box-hd .form-label {
  padding-top: 0;
  line-height: 22px;
}
.box-prestas .box-hd .text-money {
  font-size: 13px;
  font-weight: bold;
  line-height: 22px;
}
.box-prestas .box-hd .form-checkbox {
  position: relative;
  top: 5px;
  vertical-align: top;
}
/*** LIST SORTABLE ***/
.list-sortable > tbody > tr:hover td {
  border-top-color: #FFF;
  border-bottom-color: #FFF;
}
.list-sortable > tbody > tr:hover td:first-child {
  border-left-color: #FFF;
}
.list-sortable > tbody > tr:hover td:last-child {
  border-right-color: #FFF;
}
.list-sortable > tbody > tr:nth-child(2n) td {
  background: #f5f5f5;
  border-top-color: #ddd;
  border-bottom-color: #ddd;
}
/*** LIST SORTABLE / PLACEHOLDER ***/
.list-sortable .ui-sortable-placeholder td {
  background: #ff9774 !important;
  border: 2px dashed #c30 !important;
}
/*** LIST SORTABLE / HANDLER ***/
.list-sortable > tbody > tr td.column-handle {
  border-left-width: 2px !important;
  border-left-color: #FFF;
  cursor: pointer;
  cursor: -moz-grab;
  cursor: grab;
}
.list-sortable > tbody > tr:hover td.column-handle {
  background: #ffffff url(../img/icon_handle.png) no-repeat 5px center;
  border-left-color: #bcbcbc;
}
.list-sortable > tbody > tr:hover:nth-child(2n) td.column-handle {
  background-color: #f5f5f5;
}
/*** LIST SORTABLE / HELPER ***/
.list-sortable > tbody > tr.ui-sortable-helper td {
  border-color: #c30;
  background-color: #FFF;
}
.list-sortable > tbody > tr.ui-sortable-helper td:first-child {
  border-color: #c30;
  border-left-width: 1px !important;
}
.list-sortable > tbody > tr.ui-sortable-helper td:last-child {
  border-color: #c30;
}
.list-sortable > tbody > tr.ui-sortable-helper td.column-handle {
  cursor: move;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
#ind3 .c3-circle {
  fill: #F08389 !important;
}
#ind3 .c3-grid line {
  stroke: #F08389;
}
.c3-tooltip-container {
  z-index: 101 !important;
}
.kpi-title {
  cursor: pointer;
  cursor: hand;
}
#id_select_user_kpi_settings option:checked,
#id_select_user_kpi_settings option:hover {
  color: white;
  background: #e74c55 repeat url('data:image/gif;base64,R0lGODlhAQABAPAAAOdMVf///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.c3 {
  position: relative !important;
}
.c3-tooltip-name--DIFF-N---1,
.c3-tooltip-name--DIFF-N {
  display: none;
}
.kpi-list-actions {
  height: 50px;
  margin-bottom: 8px;
  padding-top: 15px;
  position: relative;
}
.admin-options-hd-activity {
  float: right;
  margin-right: 8px;
}
/* apply a natural box layout model to all elements */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* remove ugly outline from Chrome */
*:focus {
  outline: none;
}
/*
color:#e74c55;
background-color:#666;
*/
body {
  background: #ECECEC;
  color: #222;
}
a {
  color: #222;
}
a:hover {
  color: #2b2b2b;
}
a:focus {
  outline: 0 none;
}
#site {
  min-width: 1250px;
  margin: 0 auto;
  /*padding: 10px 0;*/
}
#site-hd {
  height: 42px;
  position: relative;
  z-index: 100;
}
#actions-bar {
  background: #f2f2f2;
  height: 100px;
  position: relative;
  z-index: 90;
}
#taller-actions-bar {
  background: #f2f2f2;
  height: 120px;
  position: relative;
  z-index: 90;
  padding-left: 30px;
  padding-top: 25px;
}
#actions-bar.actions-bar-indicators {
  float: left;
  width: 100%;
  height: auto;
  padding: 25px 0 25px 30px;
}
#actions-bar.actions-bar-indicators .section-hd {
  background: none;
}
#site-content {
  background: #FFF;
}
#content-bd {
  background: #ececec;
  padding: 15px;
}
.content-list {
  padding: 0 15px;
}
/*********************
** SITE - HEADER
**********************/
#site-logo {
  float: left;
  border-right: 1px solid #d3d3d3;
}
.application-logo {
  width: 150px;
  height: 42px;
}
/*********************
** SITE - ACTIONS BAR
**********************/
.page-title {
  font-size: 16px;
  font-weight: bold;
  color: #e11f2a;
  margin-bottom: 10px;
}
#actions-bar {
  padding-left: 30px;
  padding-top: 25px;
}
/**************************
** PAGE - AUTHENTIFICATION
**************************/
#auth {
  background: #cccccc;
}
#auth #site {
  width: 500px;
  min-width: 500px;
  margin: 90px auto 50px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
#auth #site-content {
  background: #FFF;
  padding: 50px 25px;
}
#auth-title {
  line-height: 42px;
  font-size: 18px;
  text-align: center;
}
#auth-translate {
  text-align: right;
  padding-right: 7px;
  margin-top: 3px;
}
#auth .form-label {
  font-size: 14px;
}
#auth .form-input {
  font-size: 14px;
  height: 27px;
  line-height: 25px;
}
/**************************
** HEADER - PERSO
**************************/
.perso {
  padding-top: 7px;
  padding-right: 30px;
}
.perso ul {
  background: #FFF;
  width: 200px;
  position: absolute;
  z-index: 100;
  right: 30px;
  top: 48px;
  list-style: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding: 5px;
  border: 1px solid #bcb6b6;
}
.perso li {
  background: #FFF;
  float: none;
  margin: 0;
}
.perso li a {
  text-decoration: none;
  font-size: 14px;
  display: block;
  height: 34px;
  line-height: 34px;
  padding-left: 35px;
}
.perso li a.icon-lockopen {
  background: transparent url(../img/icon_lock_open.png) no-repeat 10px center;
}
.perso li a:hover {
  text-decoration: none;
  background-color: #ececec;
}
.perso .arrow {
  background: url(../img/perso_arrow.png) no-repeat 0 0;
  position: absolute;
  z-index: 110;
  right: 50px;
  top: 37px;
  width: 18px;
  height: 12px;
}
.role-select {
  width: 100%;
}
.bloc-switchers {
  float: left;
  padding: 30px 28px;
}
.acl_management_container {
  width: 100%;
  overflow: auto;
}
.countries_bloc {
  overflow: auto;
  max-height: 140px;
  margin-top: 20px;
}
.mini_list_checkbox_popup_form_container {
  height: 220px;
  overflow: auto;
}
.operation_option_related_service_table_style {
  height: auto;
  max-height: 210px;
  overflow: auto;
}
.operation_reward_listing_shortcut {
  color: #e74c55;
}
.operation_reward_linked_countries {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.op_service_name {
  width: 87%;
}
.text-ko input.op_service_name {
  font-weight: bold;
  color: #d00814;
}
.op_dec_date_validite_container .error-msg {
  clear: both;
}
.scenerio_npa {
  margin-top: -3px;
}
.scenerio_npa input {
  margin-right: 3px;
}
/* feature/#97588 */
.client-input-with-delete-button {
  width: 265px;
}
.client-input-with-delete-button input {
  width: 242px;
}
