/* Core Stuff */

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}


table, th, td {
    border: 1px solid;
  }
th, td {
    padding: 10px 12px;
}




/* *********

   TYPOS
********** */

@font-face{
    font-family: "TitleFont";
    src: url('/user/themes/dankhilie/fonts/almendra/AlmendraSC-Regular.otf');
}
@font-face{
    font-family: "BodyFont";
    src: url('/user/themes/dankhilie/fonts/Averia_Serif_Libre/AveriaSerifLibre-Light.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "BodyFont";
    src: url('/user/themes/dankhilie/fonts/Averia_Serif_Libre/AveriaSerifLibre-Bold.ttf');
    font-weight:bold;
    font-style: normal;
}
@font-face{
    font-family: "BodyFont";
    src: url('/user/themes/dankhilie/fonts/Averia_Serif_Libre/AveriaSerifLibre-LightItalic.ttf');
    font-weight: normal;
    font-style: italic;
}
@font-face{
    font-family: "BodyFont";
    src: url('/user/themes/dankhilie/fonts/Averia_Serif_Libre/AveriaSerifLibre-BoldItalic.ttf');
    font-weight: bold;
    font-style: italic;
}



/* ***********************


          BODY

   
***********************  */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height:100%;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    padding-bottom: 0px; /* pour footer fixed */
    min-height: 100%;
    background: repeat url('/user/themes/dankhilie/images/dkl_velin_base.jpg');
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: normal;
    font-style: normal;
    color: #474768;
    font-family: "BodyFont", Helvetica, monospace;
}
/* RESET MENUS */
nav > ul {
    margin: 0;
    padding: 0;
}

nav li{
    list-style-type: none;
}
strong b {
    font-weight: bold;
}

em i {
    font-style: italic;
}

h1 {
    font-family: "TitleFont";
    color : #a03734;
    font-size: 2.7rem;
    line-height: 2.8rem;
    font-weight: 500;
    text-align: center;
    margin: 0 0 75px 0;
}
h2 {
    color : #411385;
    font-size: 2.3rem;
    line-height: 2.7rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 2.1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-top: 1.1rem;
    margin-bottom: 0.2rem;
}
p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: normal;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: #474768;}
a:hover {
    color: #960000;
    text-decoration: underline dotted;
}
img {
    max-width: 100%;
}


/* ***********************


           DKL

   
***********************  */
div.dkl {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}
@media all and (max-width: 1024px) {
    div.dkl {
        width: 100%;
    }
}


/* ***********************


    ENTETE de PAGE

   
***********************  */
.dkl_header{
    text-align: center;
}
/* 


  Menu Settings 
*/
.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    font-family: "BodyFont";
    font-size: 1.3rem;
    position: relative;
    display: block;
    line-height: 1.3rem;
    color: #5f3108;
    padding: 13px 13px 3px 13px;
    white-space: nowrap;
}
.main-nav ul li ul {
    padding-bottom: 20px;
}
.main-nav ul li ul li a {
    font-size: 1.1rem;
    line-height: 1.1rem;
}
.main-nav > ul > li > a {
    border-radius: 2px;
}


/* 


  Dropdown CSS 
*/
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: rgb(204, 204, 183);
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */

.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    bottom: 3px;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}
/*Active dropdown nav item */
.main-nav ul li:hover > a {
    color: #b90000;
    text-decoration: underline dotted;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    color: #960000;
}




/* ***********************


    CORPS de PAGES

   
***********************  */
.dkl_body{
    background-color: rgba(255, 255, 240, 0.45);
    width: 100%;
    margin: 20px auto;
    min-height: 100vh;
}



/* 


  PAGES AVENTURES
*/

/* PAGE LIST AVENTURES */
.dkl_aventures_content {
    padding: 64px 32px 32px 32px;
}
h2.dkl_aventures-list {
    padding: 0 0 0 250px;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}
h2.dkl_aventures-list a {
    color: #3f3f58;
    font-size: 1.5rem;
    font-weight: 600;
}
h2.dkl_aventures-list a span {
    color: #3f3f58;
    font-size: 1.3rem;
    font-weight: 500;
}

/*


  MENU LATERAL
*/
img.dkl_menu_tete {
    width: 100%;
    display: block;
    padding-top: 15px;
}

ul.dkl_menu_corps {
    background: url('/user/themes/dankhilie/images/dkl_enluminure-bordure.png') repeat-y top right;
    padding: 20px 16px 32px 48px;
    margin: 0;
}

img.dkl_menu_pied {
    width: 100%;
    display: block;
    padding-bottom: 15px;
}

/* p0 */
ul.dkl_menu_corps > li {
    padding-bottom: 17px;
}

ul.dkl_menu_corps > li > a {
    font-size: 2rem;
    line-height: 2rem;
}

/* p1 */
ul.dkl_menu_corps > li > ul {
    padding-inline-start: 34px;
}
ul.dkl_menu_corps > li > ul > li {
    padding-top: 5px;
    padding-bottom: 7px;
}
ul.dkl_menu_corps > li > ul > li > a {
    font-size: 1.6rem;
    line-height: 1.6rem;
}

/* p2 */
ul.dkl_menu_corps > li > ul > li > ul {
    padding-inline-start: 40px;
}
ul.dkl_menu_corps > li > ul > li > ul > li {
    list-style-type: circle;
    padding-top: 3px;
    padding-bottom: 1px;
}
ul.dkl_menu_corps > li > ul > li > ul > li > a {
    font-size: 1.2rem;
    line-height: 1.3rem;
}

/* p3 */
ul.dkl_menu_corps > li > ul > li > ul > li > ul {
    padding-inline-start: 47px;
}
ul.dkl_menu_corps > li > ul > li > ul > li > ul > li {
    list-style-type: '- ' ;
    padding-top: 1px;
    padding-bottom: 2px;
}
ul.dkl_menu_corps > li > ul > li > ul > li > ul > li > a {
    font-size: 1rem;
    line-height: 1rem;
}
/*


  PAGES MENU LATERAL
*/
.dkl_lateral_menu {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    height: 100%;
    margin: 0;
    /* min-height: 100vh; */
}
.dkl_lateral_content {
    display: inline-block;
    vertical-align: top;
    width: 724px;
    height: 100%;
    margin: 0;
    padding: 64px 32px 32px 32px;

    /* min-height: 100vh; */
}

ul.dkl_menu_inactif {
    display: none;
}

ul.dkl_menu_actif,nav.dkl_lateral_menu li:hover ul {
    display: block;
}

a.dkl_sous-menu_actif {
    color: #960000;
}



.red {color: red;}
.green {color: green;}


/* ***********************


    FOOTER

   
***********************  */
.dkl_footer {
    background: repeat url('/user/themes/dankhilie/images/dkl_velin_base.jpg');
    position: fixed;
    bottom: 0px;
    width: 1024px;
    padding-top: 21px;
}
.dkl_footer > div {
    background-color: rgba(255, 255, 240, 0.45);
    padding : 5px 0 10px 0; 

}
/*


  BREADCRUMB
*/
#breadcrumbs {
    color: #474768;
    font-size: 1.3rem;
    line-height: 1.5rem;
    padding-top: 0.5rem;
    padding-left: 3rem;
}
#breadcrumbs span {
    display: inline-block;
    padding: 0 1rem;
}
#breadcrumbs span:first-child {
    padding-left: 0;
}
#breadcrumbs i {
    display: inline-block;
    width: 20px;
    text-align: center;
}
span.orp_breadcrumb-separation {
    padding: 0 2rem;
}
a.orp_breadcrumb-haut::after {
    font-family: FontAwesome;
    content: '\f106';
    padding-left: 0.5rem;
 }