        /* menu */
    #menu :focus { outline: none; }
    #menu .row { margin-right: 0; margin-left: 0;}
/*
    Sometimes the sub menus get too large for the page and prevent the menu from scrolling, limiting functionality
    A quick fix is to change #menu to

    -> position:absolute

    and uncomment the code below.
    You also need to uncomment

    -> <div class="absolute-wrapper"> </div> in the html file

    you also need to tweek the animation. Just uncomment the code in that section
    --------------------------------------------------------------------------------------------------------------------
    If you want to make it really neat i suggest you look into an alternative like http://areaaperta.com/nicescroll/
    This will allow the menu to say fixed on body scoll and scoll on the side bar if it get to large
*/
/*.absolute-wrapper{
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid #e7e7e7;
}*/

#menu {
  /*position: fixed;*/
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-right: 1px solid #e7e7e7;    
}
#menu .navbar {
  border: none;
}
#menu .navbar-header {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
#menu .navbar-nav .active a {
  background-color: transparent;
  margin-right: -1px;
  border-right: 5px solid #e7e7e7;
}
#menu .navbar-nav li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
#menu .navbar-nav li a {
  padding: 7px; text-transform: uppercase;
}
#menu .navbar-nav li a .glyphicon {
  padding-right: 10px;
}
#menu #dropdown {
  border: 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
#menu #dropdown .caret {
  float: right;
  margin: 9px 5px 0;
}
#menu #dropdown .indicator {
  float: right;
}
#menu #dropdown > a {
  border-bottom: 1px solid #e7e7e7;
}
#menu #dropdown .panel-body {
  padding: 0;
  background-color: #f3f3f3;
}
#menu #dropdown .panel-body .navbar-nav {
  width: 100%;
}
#menu #dropdown .panel-body .navbar-nav li {
  padding-left: 15px;
  border-bottom: 1px solid #e7e7e7;
}
#menu #dropdown .panel-body .navbar-nav li:last-child {
  border-bottom: none;
}
#menu #dropdown .panel-body .panel > a {
  margin-left: -20px;
  padding-left: 35px;
}
#menu #dropdown .panel-body .panel-body {
  margin-left: -15px;
}
#menu #dropdown .panel-body .panel-body li {
  padding-left: 30px;
}
#menu #dropdown .panel-body .panel-body li:last-child {
  border-bottom: 1px solid #e7e7e7;
}
#menu #search-trigger {
  background-color: #f3f3f3;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 18px;
}
#menu .brand-name-wrapper {
  min-height: 50px;
}
#menu .brand-name-wrapper .navbar-brand {
  display: block;
}
#menu #search {
  position: relative;
  z-index: 1000;
}
#menu #search .panel-body {
  padding: 0;
}
#menu #search .panel-body .navbar-form {
  padding: 0;
  padding-right: 50px;
  width: 100%;
  margin: 0;
  position: relative;
  border-top: 1px solid #e7e7e7;
}
#menu #search .panel-body .navbar-form .form-group {
  width: 100%;
  position: relative;
}
#menu #search .panel-body .navbar-form input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 50px;
}
#menu #search .panel-body .navbar-form .btn {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 0;
  background-color: #f3f3f3;
  padding: 15px 18px;
}
/* Main body section */
.side-body {
  margin-left: 310px;
}
/* small screen */
@media (max-width: 768px) {
  #menu {
    position: relative;
    width: 100%;
    height: 0;
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  #menu .brand-name-wrapper .navbar-brand {
    display: inline-block;
  }
  /* Slide in animation */
  @-moz-keyframes slidein {
    0% {
      left: -300px;
    }
    100% {
      left: 10px;
    }
  }
  @-webkit-keyframes slidein {
    0% {
      left: -300px;
    }
    100% {
      left: 10px;
    }
  }
  @keyframes slidein {
    0% {
      left: -300px;
    }
    100% {
      left: 10px;
    }
  }
  @-moz-keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -300px;
    }
  }
  @-webkit-keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -300px;
    }
  }
  @keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -300px;
    }
  }
  /* Slide side menu*/
  /* Add .absolute-wrapper.slide-in for scrollable menu -> see top comment */
  #menu-container > .navbar-nav.slide-in {
    -moz-animation: slidein 300ms forwards;
    -o-animation: slidein 300ms forwards;
    -webkit-animation: slidein 300ms forwards;
    animation: slidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  #menu-container > .navbar-nav {
    /* Add position:absolute for scrollable menu -> see top comment */
    position: fixed;
    left: -300px;
    width: 300px;
    top: 43px;
    height: 100%;
    border-right: 1px solid #e7e7e7;
    background-color: #f8f8f8;
    -moz-animation: slideout 300ms forwards;
    -o-animation: slideout 300ms forwards;
    -webkit-animation: slideout 300ms forwards;
    animation: slideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  /* Uncomment for scrollable menu -> see top comment */
  /*.absolute-wrapper{
        width:285px;
        -moz-animation: slideout 300ms forwards;
        -o-animation: slideout 300ms forwards;
        -webkit-animation: slideout 300ms forwards;
        animation: slideout 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }*/
  @-moz-keyframes bodyslidein {
    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @-webkit-keyframes bodyslidein {
    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @keyframes bodyslidein {
    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @-moz-keyframes bodyslideout {
    0% {
      left: 300px;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes bodyslideout {
    0% {
      left: 300px;
    }
    100% {
      left: 0;
    }
  }
  @keyframes bodyslideout {
    0% {
      left: 300px;
    }
    100% {
      left: 0;
    }
  }
  /* Slide side body*/
  #menu .side-body {
    margin-left: 5px;
    margin-top: 70px;
    position: relative;
    -moz-animation: bodyslideout 300ms forwards;
    -o-animation: bodyslideout 300ms forwards;
    -webkit-animation: bodyslideout 300ms forwards;
    animation: bodyslideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  #menu .body-slide-in {
    -moz-animation: bodyslidein 300ms forwards;
    -o-animation: bodyslidein 300ms forwards;
    -webkit-animation: bodyslidein 300ms forwards;
    animation: bodyslidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  /* Hamburger */
  #menu .navbar-toggle {
    border: 0;
    float: left;
    padding: 18px;
    margin: 0;
    border-radius: 0;
    background-color: #f3f3f3;
  }
  /* Search */
  #menu #search .panel-body .navbar-form {
    border-bottom: 0;
  }
  #menu #search .panel-body .navbar-form .form-group {
    margin: 0;
  }
  #menu .navbar-header {
    /* this is probably redundant */
    position: fixed;
    z-index: 3;
    background-color: #f8f8f8;
  }
  /* Dropdown tweek */
  #menu #dropdown .panel-body .navbar-nav {margin: 0;}
}
     /*.carousel-inner {border-radius: 5px 5px 5px 5px; border: 5px solid white; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);}*/
/* FIN MENU */


    body{
      padding-top: 10px; font-family: 'Play', calibri,"lucida Console","Time New Roman","sans-serif"; zoom:90%;
      /* user-select:none; */
    }
    #corps{min-height: 500px; border-radius: 4px; padding-left: 0px;   padding-right: 0px;}
    .blockGauche,.blockDroite{min-height: 600px; }
    .blockGauche{/*padding-top: 5px; border-radius:4px;min-height: 500px;*/}
    #logo{ width: 100%; text-align: center; font-size: 33px; padding-bottom: 10px; font-family: 'Acme', sans-serif;}
    #logo img{width: 100px;   height:80px; border-radius: 10px; }
    /*#menu{width: 100%; min-height: 60px;}
    #menu a{margin-top: 5px; margin-bottom: 5px; font-size: 90%; text-transform: uppercase; font-weight: bold;}*/
    .titEntUsers{}
    .filEtTablo,.action{min-height: 600px;}

    .filEtTablo{ border: 1px solid #f8f8f8; overflow: hidden; padding: 0px; border-radius: 4px; }
    #filtrage{min-height: 65px; padding-top: 8px;}
    footer{font-weight: bold; text-align: center;}
    .container-fluid{ /*background: url(../image/bckg.jpg) no-repeat;*/ }
    #frmFiltre{border:0px solid red;}
    #frmFiltre div{border:0px solid green;}
    #tablo{border: 1px solid #FFFFFF; height: 500px; overflow: auto;background:#FFFFFF; }
    #tablo thead th{vertical-align: middle; }
    #tablo thead th{ text-align: left ; color: #337ab7; }
    #tablo thead th[colspan]{ text-align: center ; color: #a94442;}
    .selectDivActive{background: #EEEEEE!important; cursor: default;}
    #tablo tbody tr:hover,.selectDivActive{background: #EEEEEE; cursor: default;}
    .action{background: #f8f8f8; border-radius: 4px; padding-top: 25px; }
    .titMenu{background: #f8f8f8; border-radius: 4px; font-weight: bold; font-size: 150%; font-family: 'Acme', sans-serif;}
    #frmFiltre .form-group .col-xs-2,#frmFiltre .form-group .col-xs-12{padding-left: 2px; padding-right: 2px; }
    .lignTr{/*color: #FFFFFF!important; background-color: #337ab7!important;*/}
    .alertAll{
        text-align:center; position: fixed; z-index: 3000; width: 30%; margin-left: 15%; margin-top: 40px; box-shadow: 17px 17px 10px -8px #808080;
        cursor: default; /* border-radius: 30px;*/ display: none;padding-top: 10px!important; padding-bottom: 10px!important;
    }
    .form-horizontal img{border-radius: 4px;}
    .soldCaisse{font-weight: bold; font-size: 130%; line-height: 30px;}

    #tablo .itr{cursor: pointer;}
    #tablo .itd{ display: none; }

    .titFacture{ text-transform: uppercase; font-weight: bold; font-size: 20px; text-align: center; }
    #modalPrint .modal-body{ padding-top: 1px; padding-bottom: 1px; font-size: 90%; }
    #modalPrint .infosCltPrint{ border-top: 1px #CCCCCC solid; border-bottom: 1px #CCCCCC solid; padding: 3px; border-radius: 3px; }

    #modalListProd .modal-header,#modalListProd .tabloListProd{padding: 2px; }
    #modalListProd .tabloListProd{max-height: 450px; overflow: auto; }
    #modalListProd .tabloListProd table{ margin:0px; }
    #modalListProd .modal-content{/*border-radius: 0px;*/ }

    .blockGauche .ggestion{ border:1px solid #EBEBEB; border-radius: 0px; text-align: center; }
    .blockGauche .ggestion b{ display: block; background-color: #EBEBEB; text-align: left; }
    .pTop0{ padding-top:0px; }
    .pBot10{ padding-top:10px; }
    .mTop10{ margin-top:10px; }

    .btnPrintEtat:hover{ cursor: pointer; text-decoration: underline;  }
    .pad0{padding: 0px; }
    .sign{ font-size: 70%; opacity: 0.4; }
