﻿/****************************************************************************************/
/* 
    CSS PAGES 

    Plus bas: CSS Transistion des pages, CSS Menu
 */
/****************************************************************************************/
/**,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}*/
body, html
{
	/*font-family:Sans-serif;*/
    font-family:"Segoe UI",Tahoma,Helvetica,Sans-Serif;
	font-size:100%;
	padding:0px;
	margin:0px;
	background-color: #f6f6f6;

}

body {
    overflow-y:scroll;  /*ie8 chrome*/
    -ms-overflow-y:scroll; /*ie6 7*/
}

#fondtop {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    margin: 0px auto;
    z-index: 99;
}
#topcontent
{
	position:relative;
	margin:0px auto;
	max-width:1200px;
    /*background-color:red;*/
    /*height:160px;*/
}
#bodycontainer
{
    padding-top:160px;
    
	position:relative;
	margin:0px auto;
    
	max-width:1200px;
    /*background-color:#8bd8ff;*/
    
}

/* tordu, mais c'est pour ajouter un padding bottom quand le footer est affiché. Marche pas ailleurs ?? */
#divView > div:first-of-type
{
    padding-bottom:44px;
}
#banniere {
    position: relative;
    /*top:10px;*/
    width: 100%;
    /*display:block;*/
    height: 140px;
    background-color: black;
    background-image: url('../images/LogoWKLdroite.jpg');
    background-position: right 22px;
    background-repeat: no-repeat;
    color: white;
}
#banniereContent
{
    height:100px;
    padding-left:18px;
    padding-top:25px;
    font-size:32px;
}
#menutop
{
    width:100%;
    position:absolute;
    bottom:0;
    /*top:120px;*/
    /*display:block;*/
    height:40px;
    background-color:#383838;
    color:white;
    
}

.depresol
{
    display: none;
}

.hideWhenMobile { display: initial;}
.showWhenMobile { display:none;}

.retour-chariot
{
    /*white-space: pre;*/
    white-space: pre-wrap;     
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;    
    white-space: -o-pre-wrap;  
    word-wrap: break-word;     

}
input.required
{
    background-color:#ffdddd;
}
.required
{
	background-color:#ffdddd;
}
.italic 
{
    font-style:italic;
}
@media screen and (max-width: 1200px) 
{
    #bodycontainer
    {
        /*margin-left: 10px;
        margin-right: 10px;*/
    }
}

/*@media screen and (min-width: 800px) and (max-width: 1200px)
{
    #topcontent
    {

    }
    #bodycontainer
    {
    }
    #banniere
    {
        height:100px;
    }
    #banniereContent
    {
        height:100px;
    }
}*/
@media screen and (min-width: 992px) and (max-width: 1200px)
{
    #fondtop{background-color:black;}
    #topcontent { max-width:970px; }
    #bodycontainer { max-width:970px; }
}
@media screen and (min-width: 768px) and (max-width: 992px)
{
    #fondtop{background-color:black;}
    #topcontent { max-width:750px; }
    #bodycontainer { max-width:750px; }
}

@media all and (min-width: 480px) and (max-width: 768px)
{
    /*#topcontent
    {
        height:90px;
    }*/
    #bodycontainer
    {
        margin:4px;
        /*margin-left:10px;*/
        padding-top:80px;
    }
    #banniere
    {
        height:80px;
        background-image:url(../images/LogoWKLdroitePetit.jpg);
        background-position:right top;
        background-repeat:no-repeat;
    }
    #banniereContent
    {
        height:80px;
        padding-left:18px;
        padding-top:2px;
        font-size:24px;
    }
    .hideWhenMobile { display: none; }
    .showWhenMobile { display:inherit; }
}
@media all and (max-width: 480px) {
    /*#topcontent
    {
        height:80px;
    }*/
    #bodycontainer
    {
        margin:4px;
        padding-top:80px;
    }
    #banniere
    {
        height:80px;
        background-image:url(../images/LogoWKLboule.jpg);
        background-position:right top;
        background-repeat:no-repeat;
    }
    #banniereContent
    {
        height:80px;
        padding-left:18px;
        padding-top:2px;
        font-size:24px;
    }
    .hideWhenMobile { display: none; }
    .showWhenMobile { display:inherit; }

}

/* 4: max device width */
/*@media screen and (max-device-width: 480px) {

}*/

/* 5: orientation:portrait */
@media screen and (orientation:portrait) {
    .verti
    {
        display: block;
    }
}


/* 6: orientation:paysage */
@media screen and (orientation:landscape) {
    .hori
    {
        display: block;
    }
}

/****************************************************************************************/
/* CSS TRANSITION DE PAGES */
/****************************************************************************************/

.fade {
    /*border:1px solid red;*/
    position: absolute;
    /*top: 150px;*/
    left: 0;
    right: 0;
    
            
    height: 100%;
    opacity: 1;
}
.fade.ng-enter,
.fade.ng-leave {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.fade.ng-enter {
    opacity: 0;
}
.fade.ng-enter-active {
    opacity: 1;
}
.fade.ng-leave {
    opacity: 1;
}
.fade.ng-leave-active {
    opacity: 0;
}

/****************************************************************************************/
/* CSS MENU */
/****************************************************************************************/

/*#topcontent, #bodycontainer
    {
        display:none;
    }*/
.menuTitre, #menuMobile {
    float: left;
    padding: 9px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    /*background-color:#444444;*/
    cursor: pointer;
    font-variant: small-caps;
            
}

#menuMobile {
    padding-bottom: 5px;
    /*padding-top:7px;*/
    display: none;
}
.menuTitre A{
    color:white;
    text-decoration:none;
}
.menuTitre:hover {
    /*background-color:blue;*/
}

.menuTitreClosed {
    padding-right: 35px;
    background-image: url(ImagesLoc/MenuClosedLight.gif);
    /*background-position-x:right 10px;
        background-position-y:top 10px;*/
    background-position: right top;
    background-repeat: no-repeat;
}

.menuTitreOpened {
    padding-right: 35px;
    background-image: url(ImagesLoc/MenuOpenedLight.gif);
    /*background-position-x:right 10px;
        background-position-y:top 10px;*/
    background-position: right top;
    background-repeat: no-repeat;
}

.menuItems {
    font-variant: normal;
    border: solid 1px #aaaaaa;
    border-top: none;
    display: none;
    position: absolute;
    left: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 10px;
    margin-left: -21px;
    background-color: white;
    color: black;
    min-width: 180px;
}

.menuTitreSelected {
    background-color: white;
    color: black;
}
.menuItem a, .menuTitre a
{
    background-color: inherit;
}

.menuItem {
    padding: 4px;
    padding-left: 20px;
    padding-right: 20px;
    /*background-color:green;*/
}

.menuItem A {
    color: black;
    text-decoration: none;
}

.menuItem:hover {
    background-color: #eeeeee;
}

#search {
    position: absolute;
    right: 0px;
    top: 100px;
    min-width: 40px;
    height: 40px;
    color: white;
    /*background-color:#565656;*/
}

#search input {
    outline-width: 0px;
    display: none;
    float: left;
    padding: 10px;
    padding-right: 0;
    color: white;
    border: 0;
    background-color: #565656;
    width: 250px;
    height: 20px;
}
/*#search > input
    {
        display: table-cell;
        vertical-align: middle;
    }*/
.x {
    width: 200px;
    height: 200px;
    background-color: red;
}

.y {
    width: 400px;
    height: 400px;
    background-color: yellow;
}

@media screen and (min-width: 00px) and (max-width: 768px) {
    .menuTitre /*, #menuMobile*/ {
        display: none;
        float: none;
        color: black;
        background-color: white;
        border-bottom: solid 1px #aaaaaa;
        border-right: solid 1px #aaaaaa;
        max-width: 250px;
        padding-right: 0;
        /*margin:0;*/
    }
    .menuTitre A { color: black; }
    .menuTitreClosed {
        background-image: url(ImagesLoc/MenuClosed.gif);
        /*background-position-x:right 10px;
            background-position-y:top 10px;
            background-repeat:no-repeat;*/
    }

    .menuTitreOpened {
        background-image: url(ImagesLoc/MenuOpened.gif);
        /*background-position-x:right 10px;
            background-position-y:top 10px;
            background-repeat:no-repeat;*/
    }

    .menuTitre:hover {
        background-color: #e5e5e5;
    }

    .menuTitreSelected {
        background-color: #e5e5e5;
    }

    .menuItems {
        margin-bottom: -10px;
        /*margin:0;*/
        position: inherit;
        border: none;
        padding-top: 0;
        /*width:400px;*/
        /*
            border:solid 1px #aaaaaa;
            border-top:none;
            display:none;
            position:absolute;
            left:auto;
            padding-top:8px;
            padding-bottom:8px;
            margin-top:10px;
            margin-left:-21px;
            background-color:white;
            color:black;
                */
    }
    .menuItem a, .menuTitre a
    {
        background-color: inherit;
    }
    .menuItem {
        /*padding:4px;
            padding-left:20px;
            padding-right:20px;*/
        padding-bottom: 4px;
        padding-left: 30px;
        /*background-color:green;*/
    }

    #menuMobile {
        float: none;
        display: inherit;
    }

    nav {
        padding-bottom: 0px;
    }

    #search {
        position: absolute;
        right: 0px;
        top: 40px;
        min-width: 40px;
    }
}

@media screen and (max-width: 480px) {
    #search input {
        width: 200px;
    }
}
/* modifier le look des textbox SAUF celui de recherche dans le menu et les zones de texte du login */
input[type=text]:not(.different), input[type=email]:not(.different), input[type=number]:not(.different), #TBCode
{
    
    /*width:100%;*/
    /*height:24px;*/
    /*margin:0px;*/
    box-sizing:border-box;
    /*border:1px solid #aaa;*/
    border-radius:4px;
    
    position: relative; /* ça fout la merde ! */

    /*height: auto;*/
    /*-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
            box-sizing: border-box;*/
    padding: 8px;
    padding-bottom:6px;
    padding-top:9px;
    font-size: 16px;
    border:1px solid #ccc;
    border-color:#ccc;
    /*box-shadow:inset 0px 1px 1px rgba(0,0,0,0.075);*/
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);
    transition-property:border-color, box-shadow;
    transition-duration:0.15s, 0.15s;
    transition-timing-function:ease-in-out, ease-in-out;
    transition-delay:0s, 0s;

    /*border-radius:4px;*/
    margin-top: 6px;
    /*z-index: -1;*/
}
input[type=text]:focus:not(.different), input[type=email]:focus:not(.different), input[type=number]:focus:not(.different), #TBCode:focus
{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    z-index: 4;
}
h1, h2, h3, h4, h5, h6
{
    font-weight:500;
    line-height:1.1;
    
}
:-ms-input-placeholder, placeholder
{
    color: #aaa;
}
/* les textbox groupés (page de login) */
.input-group
{
    /*margin:0 auto;*/
}
.input-group > input
{
    width:100%;
    /*height:24px;*/
    /*margin:0px;*/
    box-sizing:border-box;
    /*border:1px solid #aaa;*/

    position: relative;
    /*height: auto;*/
    /*-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
            box-sizing: border-box;*/
    padding: 10px;
    font-size: 16px;
    border:1px solid #ccc;
    border-color:#ccc;
    box-shadow:inset 0px 1px 1px rgba(0,0,0,0.075);
    transition-property:border-color, box-shadow;
    transition-duration:0.15s, 0.15s;
    transition-timing-function:ease-in-out, ease-in-out;
    transition-delay:0s, 0s;
    margin-top:0px;
    border-radius:0px;
    margin-bottom: -1px;
    /*z-index: 0;*/
}
.input-group > input:first-of-type
{
    border-top-left-radius:4px;
    border-top-right-radius:4px;
}
.input-group > input:last-of-type
{
    border-bottom-left-radius:4px;
    border-bottom-right-radius:4px;
    padding-bottom:10px;
    margin-bottom:10px;
}
.input-group > input:focus
{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    z-index: 4;
}
.input-group > .btn
{
    width:100%;
}
/* les boutons */
.btn
{
    font-size: 16px;
    padding:8px;
    border-radius:4px;
    border:1px solid #676767;
    color:#fff;
    min-width:50px;
    /*background-color: rgb(51, 122, 183);*/ /*#337AB7*/
    background-image: linear-gradient(#828282 0%, #676767 100%); /*#337AB7 #265A88*/
    /*background-image: linear-gradient(rgb(51, 122, 183) 0%, rgb(38, 90, 136) 100%);*/
}
.btn:hover
{
    background-image: linear-gradient(#747474 0%, #585858 100%);
}
.btn.blue
{
    border-color:#265a88;
    background-image: linear-gradient(#337ab7 0%, #265a88 100%);
}
.btn.blue:hover
{
    background-image: linear-gradient(#2c699e 0%, #1f496e 100%);
}
.btn.green
{
    border-color:#217529;
    background-image: linear-gradient(#2c9e38 0%, #217529 100%);
}
.btn.green:hover
{
    background-image: linear-gradient(#26882f 0%, #1b5f22 100%);
}
.btn.orange
{
    border-color:#dc4c00;
    background-image: linear-gradient(#ff6411 0%, #dc4c00 100%);
}
.btn.orange:hover
{
    background-image: linear-gradient(#f45300 0%, #c04300 100%);
}
.btn.yellow
{
    /*e9b604*/
    border-color:#cfa104;
    background-image: linear-gradient(#e9b604 0%, #cfa104 100%);
}
.btn.yellow:hover
{
    background-image: linear-gradient(#daaa04 0%, #bc9204 100%);
}
.btn.red
{
    border-color:#ad0a00;
    background-image: linear-gradient(#e90c00 0%, #ad0a00 100%);
}
.btn.red:hover
{
    background-image: linear-gradient(#c90b00 0%, #8c0800 100%);
}
.log
{
    margin:0 auto;
    width:300px;
    /*background-color:#ddd;*/
}
.btnupd {
        position:absolute; 
        right:6px;
        bottom:6px;
}
@media all and (max-width:768px) {
    .btnupd {
        top:6px;
    }
}

/* EXPANDERS */
.expander
{
    box-sizing:border-box;
    border-bottom:1px solid #ddd;
}
.exp-header
{
    color:black;
    padding-top:8px;
    padding-bottom:8px;
    /*font-size:14px;*/
    /*border-bottom:1px solid #ddd;*/
    /*background-color:#f5f5f5;*/
    /*background-color:#f8f8f8;*/
}
.exp-header:hover
{
    /*background-color:#ffeeee;*/
}
/*.expander div:last-of-type
{
    padding-bottom:0px;
    background-color:#ff0000;
}*/
/*.exp-content .expander 
{
    border:0px;
}*/
.exp-content
{
    position:relative;
    padding:8px;
    padding-left:12px;
    /*color:#888;*/
    border-top:1px solid #ddd;
    border-left:4px solid #ddd;
    border-right:1px solid #ddd;
    /*border-radius:4px;*/

    font-size:15px;
    background-color:#ffffff;
    /*border-left:4px solid #eee;*/
}
.exp-content.green { border-color:#ddd; border-left-color:#1f6e2a; }
.exp-content.red { border-color:#ddd; border-left-color:#981e1e; }
.exp-content.blue { border-color:#ddd; border-left-color:#1f496e; }
.exp-content.orange { border-color:#ddd; border-left-color:#d24a00; }
.exp-content.turquoise { border-color:#ddd; border-left-color:#03a49c; }
.exp-content.yellow { border-color:#ddd; border-left-color:#e9b604; }
.exp-content.grisfonce { border-color:#ddd; border-left-color:#676767; }

.expander .closed {
    padding-right: 35px;
    background-image: url(ImagesLoc/MenuClosed.gif);
    background-position: right top;
    background-repeat: no-repeat;
}

.expander .opened {
    background-image: url(ImagesLoc/MenuOpened.gif);
    /*background-color:#f5f5f5;*/
}

.inputText
{
    box-sizing:border-box;
    border-radius:4px;
    padding: 8px;
    /*border:1px solid #ccc;*/
	border: 1px solid rgba(0,0,0,0.17);
    /*box-shadow:inset 0px 1px 1px rgba(0,0,0,0.075);*/
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	font-weight: normal;
	font-size: 16px;
    transition-property:border-color, box-shadow;
    transition-duration:0.15s, 0.15s;
    transition-timing-function:ease-in-out, ease-in-out;
    transition-delay:0s, 0s;
}
.inputText:focus
{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    z-index: 4;
}

/*************************/
    .hpSearch
    {
        border:1px solid #ccc;
        box-sizing:border-box;
        margin:0 auto;
        max-width:600px;
        background-color:#eee;
        padding:10px;
        border-radius:4px;
        /*transform: scale(0.5) rotate(45deg);*/
    }
    .hpSearch h2
    {
        margin-top: 0;
    }
    .hpSearch .inputText
    {
        width: 100%;
    }
    /*article {
      -webkit-columns: 2 378px;
         -moz-columns: 2 378px;
              columns: 2 378px;
      -webkit-column-gap: 8px;
         -moz-column-gap: 8px;
              column-gap: 8px;
    }*/

    .multi-header-folder, .multi-header-contact, .multi-header-calendar, .multi-header-timesheet, .multi-header-task
    {
        background-color:#e8e8e8; 
        border-top-left-radius:4px; 
        border-top-right-radius:4px; 
        /*border-radius:4px;*/
        padding:10px;
        margin:0; 
    }
    .multi-header-folder
    {
        padding-left:44px;
        background-image:url(ImagesLoc/tr-dos40.png);
        background-position: left center;
        background-repeat: no-repeat;
    }
    .multi-header-contact
    {
        padding-left:44px;
        background-image:url(ImagesLoc/tr-contact40.png);
        background-position: left center;
        background-repeat: no-repeat;
    }
    .multi-header-calendar
    {
        padding-left:44px;
        background-image:url(ImagesLoc/tr-agenda40.png);
        background-position: left center;
        background-repeat: no-repeat;
    }
    .multi-header-timesheet
    {
        padding-left:44px;
        background-image:url(ImagesLoc/tr-presta40.png);
        background-position: left center;
        background-repeat: no-repeat;
    }
	.multi-header-task
    {
        padding-left:44px;
        background-image:url(ImagesLoc/tr-task40.png);
        background-position: left center;
        background-repeat: no-repeat;
    }
    .multi-content
    {
        padding:4px;
        margin:0; 
    }

    .items {
	    box-sizing: border-box;
        display: -webkit-box;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex ;
	    -webkit-flex-wrap: wrap;
	        -ms-flex-wrap: wrap;
	            flex-wrap: wrap;
    }
    .item {
	    -webkit-box-flex: 1;
	    -webkit-flex: 1 0 15%;
	        -ms-flex: 1 0 15%;
	            flex: 1 0 15%;
      /*border:1px solid #e8e8e8;*/
      border-radius:4px;
      /*border-top:0;*/
      box-sizing: border-box;
      color: #171e42;
      margin:4px;
    }
    /*.items .item:first-of-type
    {
        margin-left:0px;
    }
    .items .item:last-of-type
    {
        margin-right: 0px;
    }*/
    .blue { border-color:#1f496e; }
    .blue .multi-header, .blue .multi-header-folder, .blue .multi-header-contact, .blue .multi-header-calendar, .blue .multi-header-timesheet, .blue .multi-header-task, .panel-title.blue,
    .blue.item
    {
        background-color:#1f496e;
        color:white;
    }
    .red { border-color:#981e1e; }
    .red .multi-header, .red .multi-header-folder, .red .multi-header-contact, .red .multi-header-calendar, .red .multi-header-timesheet, .red .multi-header-task, .panel-title.red,
    .red.item
    {
        background-color:#981e1e;
        color:white;
    }
    .green { border-color:#1f6e2a; }
    .green .multi-header, .green .multi-header-folder, .green .multi-header-contact, .green .multi-header-calendar, .green .multi-header-timesheet, .green .multi-header-task, .panel-title.green,
    .green.item
    {
        background-color:#1f6e2a;
        color:white;
    }
    .orange { border-color:#d24a00; }
    .orange .multi-header, .orange .multi-header-folder, .orange .multi-header-contact, .orange .multi-header-calendar, .orange .multi-header-timesheet, .orange .multi-header-task, .panel-title.orange,
    .orange.item
    {
        background-color:#d24a00;
        color:white;
    }
    .turquoise { border-color:#03a49c; }
    .turquoise .multi-header, .turquoise .multi-header-folder, .turquoise .multi-header-contact, .turquoise .multi-header-calendar, .turquoise .multi-header-timesheet, .turquoise .multi-header-task, .panel-title.turquoise,
    .turquoise.item
    {
        background-color:#03a49c;
        color:white;
    }
    .yellow { border-color:#e9b604; }
    .yellow .multi-header, .yellow .multi-header-folder, .yellow .multi-header-contact, .yellow .multi-header-calendar, .yellow .multi-header-timesheet, .yellow .multi-header-task, .panel-title.yellow,
    .yellow.item
    {
        background-color:#e9b604;
        color:white;
    }
	.gris { border-color:#eeeeee; }
    .gris .multi-header, .gris .multi-header-folder, .gris .multi-header-contact, .gris .multi-header-calendar, .gris .multi-header-timesheet, .gris .multi-header-task, .panel-title.gris, .panel-subtitle.gris
    .gris.item
    {
        background-color:#eeeeee;
        color:white;
    }

	.grisfonce { border-color:##676767; }
    .grisfonce .multi-header, .grisfonce .multi-header-folder, .grisfonce .multi-header-contact, .grisfonce .multi-header-calendar, .grisfonce .multi-header-timesheet, .grisfonce .multi-header-task, .panel-title.grisfonce, .panel-subtitle.grisfonce
    .grisfonce.item
    {
        background-color:#676767;
        color:white;
    }
    
    @media all and (max-width:992px)
    {
        .item
        {
        -webkit-box-flex: 1;
	        -webkit-flex: 1 0 30%;
	            -ms-flex: 1 0 30%;
	                flex: 1 0 30%;
        }
    }
    @media all and (max-width:768px)
    {
        .item
        {
        -webkit-box-flex: 1;
	        -webkit-flex: 1 0 100%;
	            -ms-flex: 1 0 100%;
	                flex: 1 0 100%;
                width:100%;
                margin:0 0 4px 0;
        }
		.multi-content
		{
			display: none;
		}
        .multi-header-folder, .multi-header-contact, .multi-header-calendar, .multi-header-timesheet
        {
            padding-top:16px;
            padding-bottom:16px;
        }
    }

    .panel-title
    {
        position:relative;
        padding:24px;
        background-color:#ddd;
        border-radius:4px;
        margin-bottom:4px;
        font-size:18px;
    }
    .panel-title.folder, .panel-title.contact, .panel-title.calendar, .panel-title.timesheet, .panel-title.task, .panel-title.doc
    {
        padding-left:68px;
        background-position: left center;
        background-repeat: no-repeat;
    }
    .panel-title.folder { background-image: url(ImagesLoc/tr-dos64.png); }
    .panel-title.contact { background-image: url(ImagesLoc/tr-contact64.png); }
    .panel-title.calendar { background-image: url(ImagesLoc/tr-agenda64.png); }
    .panel-title.timesheet { background-image: url(ImagesLoc/tr-presta64.png); }
	.panel-title.task { background-image: url(ImagesLoc/tr-task64.png); }
	.panel-title.doc { background-image: url(ImagesLoc/tr-doc64.png); }

	.panel-title .img-search
    {
        position:absolute; 
        right:0px; 
        top:0; 
        padding:16px; 
        cursor:pointer;
    }
    .search-panel
    {
        opacity: 1;
        /*border-radius:4px;*/
        /*background-color:#eee;*/
        background-color:white;
        border:1px solid #ddd;
        border-top:0;
        padding:6px;
        /*display:none;*/
    }
@media all and (max-width:768px)
{
	.search-panel
	{
		display:none;
	}
}
	.panel-subtitle
    {
        padding:8px;
        background-color:#ddd;
        border-radius:4px;
        margin-bottom:4px;
        font-size:14px;
    }
    .panel-subtitle.note, .panel-subtitle.datas, .panel-subtitle.timesheet, .panel-subtitle.doc, .panel-subtitle.client, .panel-subtitle.search
    {
        padding-left:38px;
        background-position: left center;
        background-repeat: no-repeat;
    }
    .panel-subtitle.note { background-image: url(ImagesLoc/n-note32.png); }
    .panel-subtitle.datas { background-image: url(ImagesLoc/n-carre32.png); }
    .panel-subtitle.timesheet { background-image: url(ImagesLoc/n-prest32.png); }
    .panel-subtitle.client { background-image: url(ImagesLoc/n-contact32.png); }
	.panel-subtitle.doc { background-image: url(ImagesLoc/n-doc32.png); }
	.panel-subtitle.search { background-image: url(ImagesLoc/n-loupe32.png); }

    .list
    {
        border-bottom:1px solid #ddd;
        padding:4px;
    }
    /*.list .title
    {
        padding-top:4px;
        padding-bottom:4px;
        background-color:#eee;
        border-radius:4px;
        border:1px solid #ddd;
    }
    .list .cell
    {
        padding-top:4px;
        padding-bottom:4px;
        box-sizing:border-box;
        display:inline-block;
        width:33%;
    }*/
    .list .item
    {
        border:0;
    }

.centerNotMobile { text-align: center; }
.rightNotMobile { text-align: right; }
@media all and (max-width:768px)
{
    .centerNotMobile, .rightNotMobile { text-align:left; }
}

/* modales */
.modal
{
    margin:0 auto;
    vertical-align:middle;
    max-width:500px;
    border-radius:6px;
    background-color:white;
    box-shadow:2px 2px 10px 0px #777;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.modal-container
{
    position:fixed;
    top:0; left:0; right:0;
    background-color:rgba(0, 0, 0, 0.35);
    z-index:100;
	height:100%;
    padding:10px;
}
.modal-header
{
    font-size:18px;
    padding:8px;
}
.modal-content
{
    font-size:14px;
    padding:8px;
    padding:20px 8px 20px 8px;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}
.modal-footer
{
    padding:8px;
    text-align:right;
}

.intlink
{
    padding-left:16px;
    background-image:url(ImagesLoc/link.png);
    background-position: left 4px;
    background-repeat: no-repeat;
}


#footer
{
    position:fixed;
    bottom:0;
    width:100%;
}
#footer-content
{
    background-color:#565656;
    width:1200px;
    height:40px;
    margin:0 auto;
}

/* radio et checkbox */
    /*.checkbox,
    .radio{
      width   : 28px;
      margin  : 0;
      padding : 0;
      opacity : 0;
    }
 
    .checkbox + label,
    .radio + label{
      display      : inline-block;
      margin-left  : -28px;
      padding-left : 28px;
      background   : url('ImagesLoc/checks.png') no-repeat 0 0;
      line-height  : 24px;
    }
 
    .checkbox:checked + label{
      background-position : 0 -24px;
    }
 
    .radio:checked + label{
      background-position : 0 -48px;
    }*/  
    input[type=checkbox].custom:not(old),
    input[type=radio   ].custom:not(old){
      /*width   : 28px;*/
      width:0;
      margin  : 0;
      padding : 0;
      opacity : 0;
    }
 
    input[type=checkbox].custom:not(old) + label,
    input[type=radio   ].custom:not(old) + label{
      display      : inline-block;
      /*margin-left  : -28px;*/
      padding-left : 28px;
      padding-right:8px;
      background   : url('ImagesLoc/checks.png') no-repeat 0 0;
      line-height  : 24px;
      text-align:left;
    }
 
    input[type=checkbox].custom:not(old):checked + label{
      background-position : 0 -24px;
    }
 
    input[type=radio]:not(old).custom:checked + label{
      background-position : 0 -48px;
    }
    @media all and (max-width:768px)
    {
        input[type=checkbox].custom:not(old) + label,
        input[type=radio ].custom:not(old) + label
        {
            min-width:50px;
        }
    }

/**********************************
dropdown
***********************************/
.wrapper-dropdown *,
.wrapper-dropdown *:after,
.wrapper-dropdown *:before
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.wrapper-dropdown {
    /* Size and position */
    position: relative;
    width: 200px;
    margin: 0 auto;
    padding: 6px;

    /* Styles */
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ccc; /*rgba(0,0,0,0.15);*/
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);
    cursor: pointer;
    outline: none;

    /* Font settings */
    /*font-weight: bold;*/
    color: #000;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    display:inline-block;
}
	.wrapper-dropdown.required
	{
		background: #fdd;
	}
.wrapper-dropdown.active
{
    border-color:#265a88;
    color:white;
    background-image: linear-gradient(#337ab7 0%, #265a88 100%);
}
.wrapper-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #8aa8bd transparent;
}

.wrapper-dropdown .dropdown {
  /* Size & position */
    position: absolute;
    top: 124%;
    left: 0;
    right: 0;

    /* Styles */
    background: white;
    border-radius: inherit;
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-weight: normal;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
    visibility:hidden;
    z-index:999;
}
/*.wrapper-dropdown span
{
    height:40px;
}*/
.wrapper-dropdown .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-dropdown .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}

.wrapper-dropdown .dropdown li a {
    display: block;
    padding: 4px;
    text-decoration: none;
    color: #265a88;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    /*-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;*/
}

/*.wrapper-dropdown .dropdown li i {
    float: right;
    color: inherit;
}*/

/*.wrapper-dropdown .dropdown li hr
{
    border:1px solid #ddd;
}*/
/*hrz
{
    border:4px solid #ddd;
}*/
.wrapper-dropdown .dropdown li:first-of-type a {
    border-radius: 7px 7px 0 0;
}

.wrapper-dropdown .dropdown li:last-of-type a {
    border: none;
    border-radius: 0 0 7px 7px;
}

/* Hover state */

.wrapper-dropdown .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility:visible;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown .dropdown,
.no-pointerevents .wrapper-dropdown .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown.active .dropdown,
.no-pointerevents .wrapper-dropdown.active .dropdown {
    display: block;
}
/********************************************************/
/* autocomplete */
/********************************************************/
.wrapper-autocompl *,
.wrapper-autocompl *:after,
.wrapper-autocompl *:before
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.wrapper-autocompl {
    /* Size and position */
    position: relative;
    color: #000;
}
.wrapper-autocompl input[type=text]
{
    width:400px;
    
}
@media all and (max-width: 480px)
{
    .wrapper-autocompl input[type=text]
    {
        width: 300px;
    }
}

.wrapper-autocompl .dropdown {
  /* Size & position */
    position: absolute;
    top: 164%;
    /*width:400px;*/
    
    left: 0;
    right: 0;

    /* Styles */
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-weight: normal;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
    visibility:hidden;
    z-index:999;

}
.wrapper-autocompl.required
{
	background: #fdd;
}
.wrapper-autocompl ul
/*.ddul*/
{
    max-height:400px;
    overflow-y:auto;
}
@media all and (max-width: 768px)
{
    .wrapper-autocompl ul
    {
        max-height:200px;
    }
}
.wrapper-autocompl .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-autocompl .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}

.wrapper-autocompl .dropdown li a {
    display: block;
    padding: 6px;
    text-decoration: none;
    color: #265a88;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
}

.wrapper-autocompl .dropdown li:first-of-type a {
    border-radius: 7px 7px 0 0;
}

.wrapper-autocompl .dropdown li:last-of-type a {
    border: none;
    border-radius: 0 0 7px 7px;
}

/* Hover state */
.wrapper-autocompl .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-autocompl.active .dropdown {
    opacity: 1;
    visibility:visible;
    pointer-events: auto;
}

/* No CSS3 support */
.no-opacity       .wrapper-autocompl .dropdown,
.no-pointerevents .wrapper-autocompl .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-autocompl.active .dropdown,
.no-pointerevents .wrapper-autocompl.active .dropdown {
    display: block;
}
/********************************************************/
/*chrono*/
/********************************************************/
.chronotext
{
    font-weight:bold;
    float: left;
    /*padding: 8px;*/
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 10px;
}
/*********************************************************
    pour la home page v2
*********************************************************/
.containerv2
{
    
    /*font-family:Segoe UI, "SegoeUIWF", Arial, sans-serif;*/
    /*border-top:1px solid #aaa;*/
    border-bottom:1px solid #aaa;
    /*box-sizing:border-box;*/
    background-color:#ebebeb;
    color:#666;
    padding:0;
    margin:0;
    /*width:100%;*/
}
.containerv2.first
{
    border-top:1px solid #aaa;
}
.cont-gaucheV2, .cont-droiteV2
{
    /*position:relative;*/
    box-sizing:border-box;
    display:table-cell;
    
    padding-top:10px;
    padding-bottom:10px;
}
.cont-gaucheV2
{
    background-color:#f6f6f6;
    width:300px;
    font-size:20px;
    /*min-height:70px;*/
    vertical-align:top;
}
.cont-gaucheV2 span
{
    display:block;
}
.cont-droiteV2
{
    padding:10px;
    padding-right:50px;
    /*border:1px solid green;*/
    width:900px;
}
.coloredimg
{
    border-radius:50%;
    /*border:1px solid #aaa;*/
    padding:8px;
}
.coloredimg.small
{
    width:25px;
}
.coloredimg.orange
{
    background-color:#dc4c00;
}
.coloredimg.turquoise
{
    background-color:#03a49c;
}
.coloredimg.yellow
{
    background-color:#e9b604;
}
.coloredimg.blue
{
    background-color:#265a88;
}
.coloredimg.green
{
    background-color:#217529;
}
.coloredimg.red
{
    background-color:#ad0a00;
}
.coloredimg.gris
{
    background-color:#eeeeee;
}
.coloredimg.grisfonce
{
    background-color:#676767;
}
@media all and (max-width: 1200px)
{
    .cont-gaucheV2
    {
        width:200px;
    }
    .cont-droiteV2
    {
        width: 772px;
    }
}
@media all and (max-width: 992px)
{
    .cont-gaucheV2
    {
        width:200px;
    }
    .cont-droiteV2
    {
        width: 560px;
    }
}
/*@media all and (max-width: 480px)
{
}*/
@media all and (max-width: 768px)
{
    .cont-gaucheV2, .cont-droiteV2
    {
        display:block;
        width:100%;
    }
    .cont-droiteV2
    {
        border-top:1px solid #aaa;
    }
    .cont-gaucheV2 span
    {
        position:absolute; 
        padding-top:14px;
        display:inline;
    }
    .containerv2.first
    {
        border-top: 0;
    }
}

@media all and (max-width: 480px)
{
    .coloredimg
    {
        width: 25px;
    }
    .cont-gaucheV2, .cont-droiteV2
    {
        display:block;
        width:100%;
        
    }
    .cont-gaucheV2
    {
        padding-bottom:0;
    }
    .cont-droiteV2
    {
        padding-top:0;
        background-color: #f6f6f6;
        border-top:0px;
    }
    .cont-gaucheV2 span
    {
        position:absolute; 
        padding-top:8px;
        display:inline;
    }
    .containerv2.first
    {
        border-top: 0;
    }
}
/*********************************************************
    Expander v2
*********************************************************/
a
{
    cursor:pointer;
}
a.fleche
{
    color:#1d61ab;
    text-decoration:none;
    padding-right:24px;
    background-image:url(ImagesLoc/bleu-fleche20.png);
    background-position: right center;
    background-repeat: no-repeat;
}
a.fleche:hover
{
    color:black;
    background-image:url(ImagesLoc/n-fleche20.png);
}
a.movetop
{
    color:#1d61ab;
    text-decoration:none;
    padding-right:24px;
    background-image:url(ImagesLoc/bleu-movetop20.png);
    background-position: right center;
    background-repeat: no-repeat;
    margin:8px;
}
a.movetop:hover
{
    color: black;
}
a.showmore
{
    color:#1d61ab;
    text-decoration:none;
    padding-right:24px;
    background-image:url(ImagesLoc/bleu-plus20.png);
    background-position: right center;
    background-repeat: no-repeat;
    margin:8px;
}
a.showmore:hover
{
    color: black;
}
a.expander2
{
    color:#1d61ab;
    text-decoration:none;
    padding-left:24px;
    /*background-image:url(ImagesLoc/bleu-plus20.png);*/
    background-image:url(ImagesLoc/bleu-expandbas20.png);
	/*background-image:url(ImagesLoc/MenuClosed.gif);*/
    background-position: left center;
    background-repeat: no-repeat;
}
a.expander2:hover
{
    color:black;
    /*background-image:url(ImagesLoc/n-plus20.png);*/
    background-image:url(ImagesLoc/n-expandbas20.png);
	/*background-image:url(ImagesLoc/MenuClosed.gif);*/
}
a.expander2.opened
{
    color:#1d61ab;
    text-decoration:none;
    padding-left:24px;
    /*background-image:url(ImagesLoc/bleu-moins20.png);*/
    background-image:url(ImagesLoc/bleu-expandhaut20.png);
	/*background-image:url(ImagesLoc/MenuOpened.gif);*/
    background-position: left center;
    background-repeat: no-repeat;
}
a.expander2.opened:hover
{
    color:black;
    /*background-image:url(ImagesLoc/n-moins20.png);*/
    background-image:url(ImagesLoc/n-expandhaut20.png);
	/*background-image:url(ImagesLoc/MenuOpened.gif);*/
}
a.mail
{
    
    padding:2px;
    line-height:26px;
    color:#1d61ab;
    text-decoration:none;
    padding-right:28px;
    background-image:url(ImagesLoc/bleu-mail2-24.png);
    background-position: right center;
    background-repeat: no-repeat;
}
a.phone
{
    
    padding:2px;
    line-height:26px;
    color:#1d61ab;
    text-decoration:none;
    padding-right:28px;
    background-image:url(ImagesLoc/bleu-tel2-24.png);
    background-position: right center;
    background-repeat: no-repeat;
}

@media all and (max-width: 768px)
{
    a.mail > span, a.phone > span
    {
        display: none;
    }
}
div.expander2
{
    display:none;
    /*background-color:#f4f4f4;*/
    padding:4px;
    padding-left:16px;
    margin-top:8px;
    margin-left:8px;
    border-left:4px solid #bbb;
}
div.expander2.orange
{
    border-left:4px solid #dc4c00;
}
div.expander2.turquoise
{
    border-left:4px solid #03a49c;
}
div.expander2.yellow
{
    border-left:4px solid #e9b604;
}
div.expander2.blue
{
    border-left:4px solid #265a88;
}
div.expander2.green
{
    border-left:4px solid #217529;
}
div.expander2.red
{
    border-left:4px solid #ad0a00;
}

.libelle-coloredimg 
{
    display:table-cell;
    height:40px;
    /*padding-top:16px; 
    padding-left:6px;*/ 
    /*font-size:20px;*/
    /*color:#666;*/
    border:1px solid red;
    /*line-height:40px;*/

    
    vertical-align:middle;
}
/*****************************************************************
    paneltitle v2
******************************************************************/
.panel-titlev2
{
    padding-bottom:8px; 
    padding-top:10px; 
    border-bottom:1px solid #aaa; 
    border-top:1px solid #aaa; 
    cursor:pointer;
}
.panel-titlev2 span
{
    display:inline-block; 
    position:absolute;
    padding-top:16px; 
    padding-left:8px; 
    font-size:20px;
    color:#666;
}
@media all and (max-width: 480px)
{
    .cont-droiteV2 > .btnContainer
    {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    .panel-titlev2 span
    {
        padding-top:8px;
    }
}
/*****************************************************************
    home page v2
******************************************************************/
.hp-items
{
    margin: 0 auto;
    width: 100%;
    /*border: 1px solid #aaa;*/
    display: table;
}
.hp-item
{
    display: table-cell;
}
.hp-item.mailitem
{
    text-align: right;
    width: 240px;
}
.hp-item.phoneitem
{
    text-align: right;
    width: 164px;
}
.hp-item.prestitem
{
    text-align: right;
    width: 16px;
}
.HPAgenda
{
	width:49%;
	display:inline-block;
    /*border: 1px solid red;*/
    vertical-align:top;
}
@media all and (max-width: 992px)
{
    .hp-item.phoneitem
    {
        width:30px;
    }
    /* masquer le label dans le lien téléphone */
    .hp-item.phoneitem .phone span
    {
        display:none;
    }
}
@media all and (max-width: 768px)
{
    .hp-item.mailitem, .hp-item.phoneitem, hp-item.prestitem
    {
        width:30px;
    }
	.HPAgenda
	{
        margin-bottom:10px;
		width:100%;
		display:block;
	}
}
/*****************************************************************
    colonnes
******************************************************************/
    .col-full, .col-demi, .col-quart, .col-sixieme, .col-cinquieme{
        position: relative;
        min-height: 1px;
        box-sizing:border-box;
        padding:4px;
        float: left;
    }
    .col-full{ width:100%; }
    .col-demi{ width: 50%; }
    .col-quart{ width: 25%; }
    .col-sixieme{ width: 16.66666667%; }
    .col-cinquieme{ width: 20%;}
    .row:before,
    .row:after{
        display: table;
        content: " ";
    }
    .row:after{
        clear: both;
    }
@media all and (max-width: 992px){

    .col-full{ width:100%; }
    .col-demi{ width: 100%; }
    .col-quart{ width: 50%; }
    .col-sixieme{ width: 33.33333333%; }

}
@media all and (max-width: 768px){

    .col-full{ width:100%; }
    .col-demi{ width: 100%; }
    .col-quart{ width: 50%; }
    .col-sixieme{ width: 50%; }

}
@media all and (max-width: 480px){
    .col-full, .col-demi, .col-quart, .col-sixieme{
        float:none;
        width:100%;
        display:block;
    }

}