@charset "UTF-8";
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
  
}

.coeur{
	
	color:#FF5E57;
}



a {
  color: #393A96;
  text-decoration: none;
}

audio{width:100%;}


img {
  max-width: 100%;
}

input {

  font-size: 1.2rem;
}

/* remove “X” from search input field */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
header {
  height: 100px;
  background: #ffffff;

}

.cd-dropdown-wrapper {
  display: inline-block;
  position: relative;
  height: 40px;
  margin: 30px 0 0 5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index:999999;


}

.cd-dropdown-trigger {
  display: block;
  position: relative;
  padding: 0 36px 0 20px;
  line-height: 40px;

  background-image:linear-gradient(to right, #2343B9, #6C4AA9);
  color: #ffffff;
  border-radius: 3px;

  background-color: #111433;

}
.no-touch .cd-dropdown-trigger:hover {

}
.cd-dropdown-trigger::before, .cd-dropdown-trigger::after {
  /* this is the arrow inside the dropdown trigger*/
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 9px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  -moz-transition: width 0.3s, -moz-transform 0.3s;
  transition: width 0.3s, transform 0.3s;

}
.cd-dropdown-trigger::before {
  right: 22px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);

}
.cd-dropdown-trigger::after {
  right: 17px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .cd-dropdown-trigger {
    font-size: 1.2rem;

  }
  .cd-dropdown-trigger.dropdown-is-active {
    background-color: #393A96;
  }
  .no-touch .cd-dropdown-trigger.dropdown-is-active:hover {
    background-color: #393A96;
  }
  .cd-dropdown-trigger.dropdown-is-active::before, .cd-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    width: 14px;
  }
  .cd-dropdown-trigger.dropdown-is-active::before {
    /* transform the arrow into a 'X' */
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a {
  height: 50px;
  line-height: 50px;
  	  font-size:100%;


}
@media only screen and (min-width: 768px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 60px;
    line-height: 60px;

  }
}
@media only screen and (min-width: 1024px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
	
  }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
  padding: 0 20px;
  

}

@media only screen and (min-width: 768px) {
.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
  background-color:#C8C7E7;
  
}
}
@media only screen and (max-width: 1024px) {
.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
  background-color:#111433;
}
}



.cd-dropdown {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111433;
  color: #ffffff;
  visibility: hidden;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s;
}
.cd-dropdown h2 {
  /* dropdown title - mobile version only */
  position: relative;
  z-index: 1;
  color: #585a70;
  background-color: #111433;
  border-bottom: 1px solid #242643;
}
.cd-dropdown .cd-close {
  /* 'X' close icon - mobile version only */
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
.cd-dropdown .cd-close::after, .cd-dropdown .cd-close::before {
  /* this is the 'X' icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 20px;
  width: 2px;
  background-color: #ffffff;
}
.cd-dropdown .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-dropdown .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.cd-dropdown.dropdown-is-active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
  transition: transform 0.5s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
  .cd-dropdown .cd-close {
    top: 5px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    /* reset style*/
    height: auto;
    width: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    background-color: #ffffff;
    color: #111433;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
  }
  .open-to-left .cd-dropdown {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    right: 0;
    left: auto;
  }
  .cd-dropdown h2, .cd-dropdown .cd-close {
    /* on desktop - hide title and 'X' */
    display: none;
  }
  .cd-dropdown.dropdown-is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
  }
}

.cd-dropdown-content, .cd-dropdown-content ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  padding-top: 50px;
}
.cd-dropdown-content a, .cd-dropdown-content ul a {
  display: block;
  color: #ffffff;
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top-width: 1px;
  border-color: #242643;
  border-style: solid;
  
}
.cd-dropdown-content li:first-of-type > a, .cd-dropdown-content ul li:first-of-type > a {
  border-top-width: 0;
}
.cd-dropdown-content li:last-of-type > a, .cd-dropdown-content ul li:last-of-type > a {
  border-bottom-width: 1px;
}
.cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #0b0e23;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #585a70;
  text-transform: uppercase;
}
.cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
  border-top-width: 0;
}
.cd-dropdown-content a, .cd-dropdown-content .cd-search, .cd-dropdown-content .cd-divider, .cd-dropdown-content ul a, .cd-dropdown-content ul .cd-search, .cd-dropdown-content ul .cd-divider {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  
}
.cd-dropdown-content.is-hidden, .cd-dropdown-content ul.is-hidden {
  /* push the secondary dropdown items to the right */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
  /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
  opacity: 0;
}
.cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
  /* push the dropdown items to the left when secondary dropdown slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.dropdown-is-active .cd-dropdown-content, .dropdown-is-active .cd-dropdown-content ul {
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
  .cd-dropdown-content, .cd-dropdown-content ul {
    padding-top: 60px;
  }
  .cd-dropdown-content a, .cd-dropdown-content ul a {
    font-size: 1.8rem;
	
  }
}
@media only screen and (min-width: 1024px) {
  .cd-dropdown-content, .cd-dropdown-content ul {
    padding-top: 0;
    overflow: visible;
  }
  .cd-dropdown-content a, .cd-dropdown-content ul a {
    color: #111433;
    height: 50px;
    line-height: 50px;
    font-size: 1.1rem;
    border-color: #ebebeb;
	
  }
  .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
    background-color: transparent;
    color: #b3b3b3;
    border-top: 1px solid #ebebeb;
  }
  .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
    border-top-width: 1px;
  }
  .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* reset mobile style */
    opacity: 1;
  }
}

.cd-dropdown-content .see-all a {
  /* different style for the See all links */
  color: #393A96;
}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;




}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  
}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
  padding-left: 90px;
  
}
.cd-dropdown-content .cd-dropdown-gallery img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
  padding-left: 75px;
  position: relative;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
  color: #111433;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%; 
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-1::before {
  background-image: url("https://www.audiocite.net/images/icone-livre-audio.jpg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-2::before {
  background-image: url("../img/nucleo-icon-2.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-3::before {
  background-image: url("../img/nucleo-icon-3.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-4::before {
  background-image: url("../img/nucleo-icon-4.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-5::before {
  background-image: url("../img/nucleo-icon-5.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-6::before {
  background-image: url("../img/nucleo-icon-6.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-7::before {
  background-image: url("../img/nucleo-icon-7.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-8::before {
  background-image: url("../img/nucleo-icon-8.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-9::before {
  background-image: url("../img/nucleo-icon-9.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-10::before {
  background-image: url("../img/nucleo-icon-10.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-11::before {
  background-image: url("../img/nucleo-icon-11.svg");
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-12::before {
  background-image: url("../img/nucleo-icon-12.svg");
}
@media only screen and (min-width: 1024px) {
  .cd-dropdown-content {
    /* reset mobile style */
    position: static;
    height: auto;
    width: 280px;

  }
  .cd-dropdown-content > li:last-of-type a {
    border-bottom: none;
  }
  .no-touch .cd-dropdown-content > li:not(.has-children) a:hover {
    color: #393A96;
  }
  .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-dropdown-content .cd-secondary-dropdown, .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: 100%;
    height: auto;
    background-color: #ffffff;

    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  }
  .cd-dropdown-content .cd-secondary-dropdown::after, .cd-dropdown-content .cd-dropdown-gallery::after, .cd-dropdown-content .cd-dropdown-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .open-to-left .cd-dropdown-content .cd-secondary-dropdown, .open-to-left .cd-dropdown-content .cd-dropdown-gallery, .open-to-left .cd-dropdown-content .cd-dropdown-icons {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    left: auto;
    right: 100%;
  }
  .cd-dropdown-content .cd-secondary-dropdown.is-hidden, .cd-dropdown-content .cd-dropdown-gallery.is-hidden, .cd-dropdown-content .cd-dropdown-icons.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-dropdown-content .cd-secondary-dropdown.fade-in, .cd-dropdown-content .cd-dropdown-gallery.fade-in, .cd-dropdown-content .cd-dropdown-icons.fade-in {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-in 0.2s;
    -moz-animation: cd-fade-in 0.2s;
    animation: cd-fade-in 0.2s;
  }
  .cd-dropdown-content .cd-secondary-dropdown.fade-out, .cd-dropdown-content .cd-dropdown-gallery.fade-out, .cd-dropdown-content .cd-dropdown-icons.fade-out {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-out 0.2s;
    -moz-animation: cd-fade-out 0.2s;
    animation: cd-fade-out 0.2s;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .go-back, .cd-dropdown-content .cd-dropdown-gallery > .go-back, .cd-dropdown-content .cd-dropdown-icons > .go-back {
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .see-all, .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
    position: absolute;
    bottom: 20px;
    height: 45px;
    text-align: center;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .see-all a, .cd-dropdown-content .cd-dropdown-gallery > .see-all a, .cd-dropdown-content .cd-dropdown-icons > .see-all a {
    margin: 0;
    height: 100%;
    line-height: 45px;
    background: #ebebeb;
    pointer-events: auto;
    -webkit-transition: color 0.2s, background-color 0.2s;
    -moz-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-gallery > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-icons > .see-all a:hover {
    color: #ffffff;
    background-color: #111433;
  }
  .cd-dropdown-content .cd-secondary-dropdown .cd-dropdown-item, .cd-dropdown-content .cd-secondary-dropdown a, .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-gallery a, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons a {
    border: none;
  }
  .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
    padding: 20px 30px 100px;
  }
  .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
    width: calc(100% - 60px);
  }
  .cd-dropdown-content .cd-dropdown-icons > li, .cd-dropdown-content .cd-secondary-dropdown > li {
    width: 50%;
    float: left;
  }
  .cd-dropdown-content .cd-secondary-dropdown {
    overflow: hidden;
    width: 550px;
    padding-bottom: 65px;
  }
  .cd-dropdown-content .cd-secondary-dropdown::before {
    /* this is the separation line in the middle of the .cd-secondary-dropdown element */
    position: absolute;
    content: '';
    top: 290px;
    left: 15px;
    height: 1px;
    width: 520px;
    background-color: #ebebeb;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > a {
    color: #393A96;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    pointer-events: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > a::after, .cd-dropdown-content .cd-secondary-dropdown > li > a::before {
    /* hide the arrow */
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown.move-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-dropdown-content .cd-secondary-dropdown > li {
    margin: 20px 0;
    border-right-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    padding: 0 30px;
    height: 250px;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li:nth-of-type(2n) {
    border-right-width: 0;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > ul {
    /* reset mobile style */
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    position: relative;
    height: auto;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > ul > .go-back {
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown a {
    line-height: 25px;
    height: 25px;
    font-size: 1.3rem;
    padding-left: 0;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown a:hover {
    color: #393A96;
  }
  .cd-dropdown-content .cd-secondary-dropdown ul {
    padding-bottom: 25px;
    overflow: hidden;
    height: auto;
  }
  .cd-dropdown-content .cd-secondary-dropdown .go-back a {
    padding-left: 20px;
    color: transparent;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
    color: transparent;
  }
  .cd-dropdown-content .cd-secondary-dropdown .go-back a::before, .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
    left: 0;
  }
  .cd-dropdown-content .cd-secondary-dropdown .see-all {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .cd-dropdown-content .cd-dropdown-gallery {
    width: 600px;
    padding-bottom: 100px;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li {
    width: 48%;
    float: left;
    margin-right: 4%;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding: 0;
    height: auto;
    line-height: normal;
    color: #393A96;
    margin-bottom: 2em;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li:nth-last-of-type(2) a,
  .cd-dropdown-content .cd-dropdown-gallery > li:last-of-type a {
    margin-bottom: 0;
  }
  .cd-dropdown-content .cd-dropdown-gallery img {
    position: static;
    height: auto;
    width: 100%;
    margin: 0 0 0.6em;
  }
  .cd-dropdown-content .cd-dropdown-icons {
    width: 600px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item:hover {
    background: #ebebeb;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    color: #393A96;
    font-weight: bold;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    display: block;
    font-size: 1.2rem;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    left: 25px;
  }
  .cd-dropdown-content > .has-children > ul {
    visibility: hidden;
  }
  .cd-dropdown-content > .has-children > ul.is-active {
    /* when hover over .cd-dropdown-content items - show subnavigation */
    visibility: visible;
  }
  .cd-dropdown-content > .has-children > .cd-secondary-dropdown.is-active > li > ul {
    /* if .cd-secondary-dropdown is visible - show also subnavigation */
    visibility: visible;
  }
  .cd-dropdown-content > .has-children > a.is-active {
    /* hover effect for .cd-dropdown-content items with subnavigation */
    box-shadow: inset 2px 0 0 #393A96;
    color: #393A96;
  }
  .cd-dropdown-content > .has-children > a.is-active::before, .cd-dropdown-content > .has-children > a.is-active::after {
    background: #393A96;
  }
  .open-to-left .cd-dropdown-content > .has-children > a.is-active {
    box-shadow: inset -2px 0 0 #393A96;
  }
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
@-moz-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
.cd-search input[type="search"] {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #242643;
  color: #ffffff;
  border: none;
  border-radius: 0;
}
.cd-search input[type="search"]::-webkit-input-placeholder {
  color: #ffffff;
}
.cd-search input[type="search"]::-moz-placeholder {
  color: #ffffff;
}
.cd-search input[type="search"]:-moz-placeholder {
  color: #ffffff;
}
.cd-search input[type="search"]:-ms-input-placeholder {
  color: #ffffff;
}
.cd-search input[type="search"]:focus {
  background: #ffffff;
  color: #111433;
  outline: none;
}
.cd-search input[type="search"]:focus::-webkit-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.cd-search input[type="search"]:focus::-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.cd-search input[type="search"]:focus:-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.cd-search input[type="search"]:focus:-ms-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
@media only screen and (min-width: 1024px) {
  .cd-search input[type="search"] {
    background-color: #ebebeb;
  }
  .cd-search input[type="search"]::-webkit-input-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]::-moz-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]:-moz-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]:-ms-input-placeholder {
    color: #b3b3b3;
  }
}

.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #b3b3b3;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

@media only screen and (min-width: 1024px) {
  .open-to-left .cd-dropdown-content > .has-children > a {
    padding-left: 40px;
    padding-right: 20px;
  }
  .open-to-left .cd-dropdown-content > .has-children > a::before, .open-to-left .cd-dropdown-content > .has-children > a::after {
    right: auto;
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
  }
}
.cd-dropdown-content .go-back a {
  padding-left: 40px;
}
.cd-dropdown-content .go-back a::before, .cd-dropdown-content .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

.cd-main-content {
font-size:1.1em;
}

.no-js .cd-dropdown-wrapper:hover .cd-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.no-js .cd-dropdown-wrapper .cd-close {
  display: none;
}








































/*
Author: W3layout
Author URL: https://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
*/
/* reset */
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,dl,dt,dd,ol,nav ul,nav 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;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0;padding:0;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
.underline{	padding-bottom:5px;	border-bottom: 1px solid #eee; margin:0 0 20px 0;}/* Add 5px bottom padding and a underline */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/*end reset*/
body {
	font-family:myFirstFont,Arial, helvetica, sans-serif; 
	background:#ffffff;
	font-size: 100%;


}


.cadreboxrubriques{
	margin-left: auto;
	margin-right: auto;	
  	width: 100%;


}
.boxrubriques{	
  	display: inline-block;
	width:45%;
	height:inherit;
	padding:10px;
	vertical-align: top;
	vertical-align : top;
	margin:4px;
	font-size :1em;
}	

.boxrubriques img {
 	display: block;
	float: left;
	margin:10px;
}
.titrerubindex{
	font-size :1.5em;	
	font-variant:small-caps;

    background:#BAC6FA;	
	color:#000099;
	border-radius:0.5em;
	padding:0.1em;	
	padding-left:0.5em;
	width:100%;
	margin:10px;
	margin-bottom:0px;
	
}
.titreindex{
	
	font-size :1.2em;	
	font-variant:small-caps;	
  font-weight: bold; 	
} 


@font-face {
    font-family: myFirstFont;
    src: url(https://www.audiocite.net/SourceSerifPro-Regular.otf);
}






#nav
{
    /* container */
}
    #nav > a
    {
        display: none;
    }
    #nav li
    {
        position: relative;
    }
 
    /* first level */
 
    #nav > ul
    {
        height: 3.75em;
    }
        #nav > ul > li
        {
            width: 25%;
            height: 100%;
            float: left;
        }
 
    /* second level */
 
    #nav li ul
    {
        display: none;
        position: absolute;
        top: 100%;
    }
        #nav li:hover ul
        {
            display: block;
        }
		
		
@media only screen and ( max-width: 40em ) /* 640 */
{
    #nav
    {
        position: relative;
    }
        #nav > a
        {
        }
        #nav:not( :target ) > a:first-of-type,
        #nav:target > a:last-of-type
        {
            display: block;
        }
 
    /* first level */
 
    #nav > ul
    {
        height: auto;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
    }
        #nav:target > ul
        {
            display: block;
        }
        #nav > ul > li
        {
            width: 100%;
            float: none;
        }
 
    /* second level */
 
    #nav li ul
    {
        position: static;
    }
}








/*start search*/
.nonvoyant{
  

}
.blanc{	color: #000000;}
.nonvoyant{
background-color:#ffffff; 

text-align:center;
font-size:0.9em;
}


.sb-search {
	position: absolute;
	top: 2px;
	right:0px;
	width: 0%;
	min-width: 45px;
	height: 45px;
	float: right;
	overflow: hidden;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
	-webkit-backface-visibility: hidden;
}
.sb-search-input {
	position: absolute;
	top: 0;
	left: 0px;
	border: none;
	outline: none;
	background: #252525;
	width: 100%;
	height: 41px;
	margin: 0;
	z-index: 10;
	padding: 5px 20px;

font-size: 0.9125em;
	color: #ffffff;
}
.sb-search-input::-webkit-input-placeholder {
	color: #ffffff;
}
.sb-search-input:-moz-placeholder {
	color: #ffffff;
}
.sb-search-input::-moz-placeholder {
	color: #efb480;
}
.sb-search-input:-ms-input-placeholder {
	color: #ffffff;
}
.sb-icon-search,.sb-search-submit  {
	width: 45px;
	height: 39px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	margin: 0;
	line-height: 45px;
	text-align: center;
	cursor: pointer;
}
.sb-search-submit {
	background: #fff; /* IE needs this */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
	-webkit-appearance: none;
}
.sb-icon-search {
	color: #fff;
	background: #000 url('../images/search.png') no-repeat 14px 14px;
	z-index: 90;
}
/* Open state */
.sb-search.sb-search-open,.no-js .sb-search {
	width: 100%;
}
.sb-search.sb-search-open .sb-icon-search,.no-js .sb-search .sb-icon-search {
	background: #3F59B3 url('../images/search.png') no-repeat 14px 14px;
	color: #fff;
	z-index: 11;
}
.sb-search.sb-search-open .sb-search-submit,.no-js .sb-search .sb-search-submit {
	z-index: 90;
}
/*start wrap  */
.wrap{
	margin:0 auto;
	width:100%;
}
/*start header */
.header{
	border-top:2px solid #7272AC;

}
.logo{
	float: left;
}
.h_right {
    position: relative;
    float: right;
    width:70%;
    text-align: center;
}
.h_right h4{
	text-align: right;
	margin: 10px 0;
	font-size: 0.9125em;
	color: #7272AC;
	text-transform: uppercase;
	font-weight: 600;
}
.h_right h4  span{
	color: #252525;
}
/*start slider  */
.slider{
	margin-top:0px;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;

}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
 	display: block;
	height: auto;
	float: left;
	border: 0;
	width: 100%;
}
/*-- Slider Part starts Here --*/



.events {
  list-style: none;
}
.callbacks_container {
  position: relative;
  float: left;
  width: 100%;
}
.callbacks {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.callbacks li {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.callbacks img {
  position: relative;
  z-index: 1;
  height: auto;
  border: 0;
}
.callbacks .caption {
	display: block;
	position: absolute;
	z-index: 2;
font-size: 0.9125em;
	text-shadow: none;
	color: #fff;
	left: 0;
	right: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
	top: 10%;
	text-align: center;
}
.callbacks_nav {
  	position: absolute;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 61%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 62px;
	width: 45px;
	margin-top: -65px;
}
.callbacks_nav:active {
  opacity: 1.0;
}
a.callbacks_nav.callbacks1_nav.prev {

  left: -3.1%;
}
.callbacks_nav.next {

  left: 87%;
}
#slider3-pager a,#slider4-pager a  {
  display: inline-block;
}
#slider3-pager span,#slider4-pager span{
}
#slider3-pager span,#slider4-pager span{
	width:100px;
	height:15px;
	background:#fff;
	display:inline-block;
	border-radius:30em;
	opacity:0.6;
}
#slider3-pager .rslides_here a ,#slider4-pager .rslides_here a {
  background: #FFF;
  border-radius:30em;
  opacity:1;
}
#slider3-pager a ,#slider4-pager a {
  padding: 0;
}
#slider3-pager li, #slider4-pager li{
	display:inline-block;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index:10;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li{
  position: relative;
  display: block;
}

.callbacks_tabs{
	list-style: none;
	position: absolute;
	top: 48%;
	z-index: 999;
	right: 8%;
	padding: 0;
	margin: 0;
}
ul.callbacks_tabs.callbacks2_tabs {
    top: 23%;
    left: 21%;
}

.slider-top ul.social-slide{
	display:inline-flex;
	margin: 0px;
	padding: 0px;
}
ul.social-slide li i{
	width:70px;
	height:74px;

	display: inline-block;
	margin:0px 15px;
}
ul.social-slide li i.win{
	background-position:-6px 0px;
}
ul.social-slide li i.android{
	background-position:-110px 0px;
}
ul.social-slide li i.mac{
	background-position:-215px 0px;
}
.callbacks_tabs li{
  display:inline-block;
}
@media screen and (max-width: 600px) {
  .callbacks_nav {
    top: 47%;
    }
}

.callbacks_tabs a{
 visibility: hidden;
}
.callbacks_tabs a:after { 
  content: "\f111";
  font-size:0;

  visibility: hidden;
  display: block;
  height:14px;
  width:14px;
  display:inline-block;
  background: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
}
.callbacks_here a:after{
	background: #000;	
}
a.callbacks_nav.callbacks2_nav.prev {

width:38px;
height:72px;
}
a.callbacks_nav.callbacks2_nav.next{

  width: 38px;
  height: 72px;
}
a.callbacks_nav.callbacks2_nav.prev {
left: -9% !important;
top:72%;
}
a.callbacks_nav.callbacks2_nav.next {
right: 0% !important;
top: 72%;
}
.da-slide h2 {
	width: 100%;
	top: 0px;
	z-index: 10;

	font-size: 1.5em;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-align: left;
	    margin-bottom: 72px;
}
.da-slide p{
margin-bottom: 30px;
	color: #FFFFFF;
	font-size: 0.8152em;
	height: 80px;
	overflow: hidden;
	line-height: 20px;
	text-align:left;
	width: 100%;
}
.banner-text {
    padding-bottom: 40px;
}
.da-slide .da-link{
	cursor:pointer;
	text-transform:uppercase;
	top:20px;
	padding:10px 20px;
	margin-top:200px;
	background: #ffffff;
	color: #242424;
	font-size: 0.8125em;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-o-border-radius:2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
 .da-link:hover{
	background-color:#242424;
	color: #ffffff;
 }
/* start main */
.main_bg{
	background: #ffffff;
	margin-top: -5px;
}
.main{
	padding-bottom: 4%;

}
/*--menu--*/



.icon2 {
    background: url('../images/down_arrow.png') no-repeat 0px 0px;
    width: 16px;
    height: 16px;
    margin: 0 auto;
	display:block;
}
.icon3 {
    width: 16px;
    height: 16px;
    margin: 0 auto;
	display:block;
}

/* start main_content */
.content{
	float:left;
	width: 78%;
	
padding-left:25px;
	
}
.content_left{
	float:left;
	width: 34%;
}
.content_right{
	float:left;
	width: 66%;
}
.grids{
	padding: 0;
	margin: 0;
}
.list {
	background: #ffffff;
}
.list li{
	display: block;	
}
.list li.top{
	border-top: 1px solid #7272AC;
	display:block;
	position: relative;
}
.list li.top:before{
	content: url('../images/top.png');
	position: absolute;
	top: -17px;
	left: 45%;
	z-index: 9999;
}
.list1 li.right{
	border-right: 1px solid #7272AC;
	display:block;
	position: relative;
}
.list1 li.right:before{
	z-index: 9999;
	content: url('../images/right.png');
	position: absolute;
	top: 45%;
	right: -17px;
}
.list1 li.left{
	border-left: 1px solid #7272AC;
	display:block;
	position: relative;
}
.list1 li.left:before{
	content: url('../images/left.png');
	position: absolute;
	top: 45%;
	left: -17px;
	z-index: 9999;
}
.list1{
	display: inline-flex;
	background: #ffffff;
}
.list1  li{
	float: left;
	width: 50%;
}
.grid_img {
	margin-bottom: -5px;
	position: relative;
}
.grid_img img{
	height: 100% !important;
}
span.next{
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-webkit-transition: -webkit-transform 1s;
	background: url(../images/next.png) center center no-repeat rgba(255, 255, 255, 0);
	cursor: pointer;
	height: 98%;
	width: 100%;
	position: absolute;
	bottom: 4px;
	z-index: 10;
	opacity: 0;
	-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;
}
span.next:hover {
	opacity: 0.9;
	-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;
}
.grid_info{
	padding: 10px;

}
.grid_info2{
	padding: 3px;




}


.grid_info2 p{
	font-size: 0.725em; 
	color: #000000;
	line-height: 22px;
	font-weight: 600;
}


.grid_info h3{
 
	font-size: 1.2em; 
	color: #000000;
	background-color:#E4E8FC;
	font-weight: 100;
	padding:0.2em;
	padding-left:10px;
			font-weight:bold;
			border-radius:0.5em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.grid_info h3:hover{
	color: #7272AC;
}
.grid_info h4{
	font-size: 0.8725em;
	color: #242424;
	font-weight: 600;
	text-transform: uppercase;
	margin: 8% 0;
}
.grid_info p{
	font-size: 1em;
	color: #242424;
	line-height: 22px;
	font-weight: 600;
}

input {

    box-sizing: border-box;

}
textarea{
    width: 70%;

    box-sizing: border-box;

}


/* start sidebar */
.sidebar{
	float:left;
	width: 16%;

	background: linear-gradient(to right, #3F59B3, #5152A5);	
	background: #3F59B3;
	padding: 5px;

}
.sidebar2{
	float:left;
	width: 16%;  

	background: linear-gradient(to right, #3F59B3, #5152A5);
	background: #3F59B3;	
	padding: 5px;


}
.sidebar.top{
	
	margin-top: -25%;
	z-index: 990;
	position: relative;

}
.sidebar2.top{
	
	margin-top: -8%;
	z-index: 990;
	position: relative;


}
.sidebar h3{

	font-size: 1em;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.1em;
	text-align:center;
	background: linear-gradient(to right, #233F9C, #3F59B3);  
}
.sidebar2 h3{

	font-size: 1em;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.1em;
	text-align:center;
	background-color:#233F9C; 
	background: linear-gradient(to right, #233F9C, #3F59B3);	 
}
.s_nav{
	margin-top: 4%;
}
.s_nav li{
	display: block;
}
.s_nav li a{
	display: block;
	padding: 10px 0;
	color: #ffffff;
	text-transform: uppercase;
	font-size:0.8125em;
	border-bottom: 1px solid rgb(255, 71, 0);
}
.s_nav li a:hover{

	filter: alpha(opacity=50);
	opacity: 0.7;
	-webkit-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-ms-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}
.s_nav li a span{
	float:left;
	padding-top: 5px;
}
.s_nav li a label{
	float: right;
	color: #242424;
	background: #ffffff;
	padding: 5px 8px;
	cursor: pointer;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-o-border-radius:2px;
}
/* recent views */
.r_views p{
	font-size: 0.7125em;
	color: #ffffff;
	line-height: 1.8em;
	font-weight: 600;
	margin: 4% 0;
}
.r_views a{
	float: right;
	margin: 10px 0 22px;
	background: #ffffff;
	color: #242424;
	font-size: 0.7125em;
	padding: 12px 24px;
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-o-border-radius:2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.r_views a:hover{
	background: #242424;
	color: #ffffff;
}
/* end  main_content */
/* start span_of_4 */
.span_of_4{
	margin: 6% 0 3%;
	text-align: center;
}
.span1_of_4{
	border-top: 2px solid #7272AC;
	float: left;
	background: #ffffff;
	width: 18.233333%;
	padding: 3%;
	margin-left: 10px;
	position: relative;
}
.span1_of_4:first-child{
	margin-left: 0;
}
.span1_of_4 h4{

	font-size: 1.5em;
	color: #A5A5A5;
	text-transform: uppercase;
	font-weight: 100;
	margin-top: 4%;
}
.span1_of_4 p{
	font-size: 1.0em;
	color: #242424;
	line-height: 22px;
	font-weight: 600;
	margin: 8% 0 10%;
}
.btn{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #e0e0e0;
	background: #D3DBFD;
	color: #242424;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.btn:hover{
	background: #093FB9;
	color: #ffffff;
}
.btntele{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;

background-color:#D3D5FA;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btntele:hover{
	background: #093FB9;
	color: #ffffff;
}
.btnpeer{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #B8B7E3;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btnpeer:hover{
	background: #093FB9;
	color: #ffffff;
}
.btninvit{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #A4AED5;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btninvit:hover{
	background: #093FB9;
	color: #ffffff;
}
.btnsign{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #8697BF;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btnsign:hover{
	background: #093FB9;
	color: #ffffff;
}
.btncom{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #4165B5;
	color:#FFFFFF;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btncom:hover{
	background: #093FB9;
	color: #ffffff;
}
.btnvid{
	margin:2px;
	text-transform: uppercase;
	font-size: 0.7125em;
	font-weight: 600;
	background: #AFB9E2;

	padding: 10px 20px;
	display: inline-block;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btnvid:hover{
	background: #093FB9;
	color: #ffffff;
}






.span1_of_4 span{
	padding: 10px;
	background: #7272AC;
	position: absolute;
	top: -30px;
	left: 42%;
	border-radius: 30px;
}
.span1_of_4 span.icon_1{
	content: url('../images/art.png');
}
.span1_of_4 span.icon_2{
	content: url('../images/str.png');
}
.span1_of_4 span.icon_3{
	content: url('../images/user_p.png');
}
.span1_of_4 span.icon_4{
	content: url('../images/cog.png');
}
/* start footer */
.footer{
	background: #242424;
}
.footer.top{
	border-top:2px solid #7272AC;
}
/* start soc_icons */
.soc_icons {
	text-align:center;
	padding: 15px 0;
}
.soc_icons ul li{
	display:inline-block;
	margin-left: 4px;
}
.soc_icons ul li:first-child{
	margin-left: 0;
}
.soc_icons ul li a{
	display: block;
	background: #2e2e2e;
	width: 24px;
	height: 24px;
	padding: 5px;
}
.soc_icons ul li a.icon_1{
	background: url('../images/soc_icons.png') no-repeat 0px 8px;
}
.soc_icons ul li a.icon_1:hover{
	background: url('../images/soc_icons.png') no-repeat 0px -23px;
}
.soc_icons ul li a.icon_2{
	background: url('../images/soc_icons.png') no-repeat -44px 8px;
}
.soc_icons ul li a.icon_2:hover{
	background: url('../images/soc_icons.png') no-repeat -44px -24px;
}
.soc_icons ul li a.icon_3{
	background: url('../images/soc_icons.png') no-repeat -88px 8px;
}
.soc_icons ul li a.icon_3:hover{
	background: url('../images/soc_icons.png') no-repeat -88px -24px;
}
.soc_icons ul li a.icon_4{
	background: url('../images/soc_icons.png') no-repeat -126px 8px;
}
.soc_icons ul li a.icon_4:hover{
	background: url('../images/soc_icons.png') no-repeat -126px -22px;
}
.soc_icons ul li a.icon_5{
	background: url('../images/soc_icons.png') no-repeat -170px 8px;
}
.soc_icons ul li a.icon_5:hover{
	background: url('../images/soc_icons.png') no-repeat -170px -23px;
}
.soc_icons ul li a.icon_6{
	background: url('../images/soc_icons.png') no-repeat -212px 8px;
}
.soc_icons ul li a.icon_6:hover{
	background: url('../images/soc_icons.png') no-repeat -212px -24px;
}
.soc_icons ul li a.icon_7{
	background: url('../images/soc_icons.png') no-repeat -256px 8px;
}
.soc_icons ul li a.icon_7:hover{
	background: url('../images/soc_icons.png') no-repeat -256px -24px;
}
/* start plus_toogle */
.plus{
	position: relative;
}
/* start grids_of_3 */
.grids_of_4{
	display: block;
}
.grid1_of_4{
	float:left;
	width:30.9999%;
	margin-left:3.3333%;
}
.grid1_of_4:first-child{
	margin-left: 0;
}
.grid1_of_4 h3{

	font-size: 1.5em;
	color: #A5A5A5;
	text-transform: uppercase;
	font-weight: 100;
	margin-bottom: 4%;
}
.grid1_of_4 p{
	font-size: 0.725em;
	color: #242424;
	line-height: 22px;
	font-weight: 600;
}
.grid1_of_4 p.top{
	margin-top: 2%;
}
.grid1_of_4 p a{
	color: #7272AC;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.grid1_of_4 p a:hover{
	color: #242424;
}
.f_nav li{
	float: left;
	width: 28.3333%;
	margin: 0 14px 10px 0;
}
.f_nav li a{
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.f_nav li a img{
	width: 100%;
}
.f_nav li a:hover{

	filter: alpha(opacity=50);
	opacity: 0.7;
	-webkit-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-ms-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}

/* start footer_main */
.footer_main{
	padding: 3% 0;
}
/* start copy-rights */
.copy{

	width:90%;
		margin-left: auto;
	margin-right: auto;
}
.copy p{
	font-size: 0.8125em;
	color: #ffffff;
	line-height: 1.8em;
	text-transform:uppercase;
}
.copy p a{
	color: #99A5F9;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.copy p a:hover{
	color: #ffffff;
}
.f_nav1{
	 float: right;
}
.f_nav1 li{
	float: left;
	margin-right: 10px;
}
.f_nav1 li a{
	color: #ffffff;
	font-size: 0.8125em;
	text-transform:uppercase;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.f_nav1 li a span{
	padding-left: 15px;
}
.f_nav1 li a.arrow{
	background: url('../images/arrow.png') no-repeat 0px 1px;
}
.f_nav1 li a.arrow:hover{
	color: #7272AC;
	background: url('../images/arrow_h.png') no-repeat 0px 1px;
}
/* start headeing styles */
h1.style{

	font-size: 2.4em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin-bottom: 10px;
}
h2.style{

	font-size: 1.8em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin-bottom: 10px;
}
h3.style{

	font-size: 1.5em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
}
h4.style{

	font-size: 1.2em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin: 10px 0;
}


.classement{

	font-size: 1.2em;
	color: #242424;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin: 10px 0;
}
.classement2{

	font-size: 1.1em;
	color: #242424;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin: 10px 0;
}





h5.style{

	font-size: 0.8725em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #ffffff;
	margin: 10px 0;
}
/* start portfolio page */
.portfoli{
	padding: 4% 0;
}
.folio_list{
	display: block;

}
.folio_list.top{
	margin-top:4%;
}
.folio_list li{
	float: left;
	width: 22.3333%;
	margin-left: 3.3333%;
	position: relative;
}
.folio_list li:first-child{
	margin-left: 0;
}
.folio_list li a img:hover{

	filter: alpha(opacity=50);
	opacity: 0.8;
	-webkit-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-ms-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}
.folio_list li h3 {
	margin: 15px 0 5px;
	font-size:1.2em;
}
.folio_list li h4 a {

	display: block;
	margin-top: 10px;
	font-style: italic;
	font-weight: 600;
	line-height: 1.5em;
	font-size: 0.8725em;
	color: #7272AC;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.folio_list li h4 a:hover{
	color: #242424;
}
.foli_img {
	position: relative;
}
/* start service page */
.service{
	padding: 4% 0;
}
.service-content{
	float: left;
	width: 74.11111%;
	margin-right: 4.3333%;
}
.service-content ul li {
	display: block;
	margin: 15px 0;
}
.service-content ul li span {
	width: 5%;
	float: left;
	font-size: 3em;
	color: #7272AC;

	margin-right: 20px;
}
.service-content ul li p{
	margin-top: 10px;
	float: left;
	width: 92.3333%;
}
.service-content ul li p a{
	font-size: 1.2em;
	color: #242424;
	display: block;
	margin-bottom: 5px;
}
.service-content ul li p a:hover{
	color: #7272AC;
}
/* start blog  */
.blog{
	padding: 4% 0;
}
.blog_left{
	float: left;
	width: 74.22222%;
	margin-right: 4.3333%;
}
.blog_left  h3 a{
	margin-bottom: 2%;
	display: block;
	color: #242424;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.blog_left h3 a:hover{
	color:#7272AC;
}
.span_2_of_blog {
	float:left;
	width:72.3333%;
}
.span_1_of_blog {
		float:left;
	width: 26.3333%;
}
.blog_grid {
	margin-top: 3%;
}
.blog_main{
	margin-top: 2%;
}
.blog-list{
	color:#555;
}
.blog-list li{
	color: #242424;
	font-size: 0.8725em;
	margin-bottom: 15px;
	line-height: 1.5em;
	text-shadow: 0 1px 0 #ffffff;
}
.blog-list li a{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #7272AC;
}
.blog-list li a:hover{
	color:#242424;
}
.blog-img{
	padding-top:10px;
}
.blog-img1{
	padding-top:10px;
}
p.para{
	font-size: 0.8125em;
	color: #242424;
	line-height: 1.8em;
}
.blog_top{
	margin-top: 20px;
}
/* start contact */
.contact{
	padding: 4% 0;
}
.contact_left {
	float:left;
	margin-right:3.3333%;
	width: 32.3333%;
}
.contact_right {
	float:left;
	width: 63.3333%;
}
.contact_left h3{
	margin-bottom: 2%;
}
.company_address{
	padding-top:10px;
}
.company_address p{
	color: #242424;
	text-shadow: 0 1px 0 #ffffff;
	line-height: 1.8em;
	font-size: 0.8125em;
	font-weight: 600;
}
.company_address p a{
	color: #7272AC;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-shadow: 0 1px 0 #ffffff;
}
.company_address p a:hover{
	color: #242424;
}
.map{
	margin: 6% 0 4%;
}
.contact_right h3{
	margin-bottom: 2%;
}
.contact-form{
	position:relative;
	padding-bottom:30px;
}
.contact-form div{
	padding:5px 0;
}
.contact-form span{
	display: block;
	color: #252525;
	text-shadow: 0 1px 0 #ffffff;
	line-height: 1.5em;
	font-size: 0.7825em;
}
.contact-form input[type="text"],.contact-form textarea{

	margin-top: 5px;
	padding: 10px;
	display: block;
	width: 98%;
	background: rgba(255, 255, 255, 1);
	outline: none;
	color: #555555;
	font-size: 1em;
	border: none;
	-webkit-appearance: none;
}
.contact-form textarea{
	resize:none;
	height:120px;		
}
.contact-form input[type="submit"]{
	margin-top: 10px;

	cursor: pointer;
	background: #242424;
	border: 1px solid #242424;
	padding: 10px 24px;
	outline: none;
	color: #ffffff;
	font-size: 1em;
	text-transform: uppercase;
	-webkit-appearance: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
}
.contact-form input[type="submit"]:hover{
	background: #7272AC;
	border: 1px solid #7272AC;
}
/* start details_page */
.details{
	padding: 4% 0;
}
.details span{
	color: #242424;
	font-size: 1.2em;
	display: block;
	line-height: 1.8em;
	font-weight: 100;
	margin: 10px 0;
}
.det-histore{
	margin-top: 20px;	
}
.historey-lines ul li{
	display: block;
	margin: 20px 0;
}
.historey-lines ul li span{
	color: #ffffff;
	font-size: 13px;
	padding: 10px 20px;
	margin-bottom: 13px;
	float: left;
	background: #242424;
}
.det-histore ul li p{
	float: right;
	width: 91%;
}
.det-histore ul li p label{
	padding-bottom: 5px;
	display: block;
}
.det-histore ul li p label a{
	color: #7272AC;
	display: block;
	font-size: 1.2em;
	font-weight: 100;
	-webkit-transition: color .2s linear,background .2s linear;
	-moz-transition: color .2s linear,background .2s linear;
	-o-transition: color .2s linear,background .2s linear;
	transition: color .2s linear,background .2s linear;
}
.det-histore ul li p label a:hover{
	color: #242424;
}
/* start single_page */
.blog_left p{
	margin-top: 10px;
}
.extra{
	color: #5F5F5F;
	font-size: 0.8725em;
	padding: 2% 0 2%;
}
.extra a{
	color:#7272AC;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.extra a:hover{
	color:#242424;
}
.extra span{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #7272AC;
	cursor: pointer;
}
.extra span:hover{
	color: #242424;
}
/*---startr-like-social------*/
.like-social{
	margin:1em 0;
}
.like-social ul{
	margin: 2% 0 4%;
}
.like-social ul li{
	display:inline-block;
	margin-right: 10px;
}
.like-social li a img{
	vertical-align: middle;
	padding: 0.5em;
	display: inline-block;
	padding-left: 1em;
}
.like-social li a{
	width: 150px;
}
.like-social li a:hover {

	filter: alpha(opacity=50);
	opacity: 0.9;
	-webkit-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-ms-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}
.lface{
	font-size: 0.89em;
	background: #014B96;
	border-bottom: 3px solid #002C59;
	height: 33px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	padding-top: 1px;
	color: #FFF;
	display: block;
}
.lface img{
	padding:0.5em;
}
.lface span{
	font-weight: 400;
	margin-left: 5px;
}
.lface label{
	border-left: 1px solid #054383;
	text-align: right;
	padding: 7px 10px;
	margin-left: 8px;
}
/*----*/
.ltweet{
	font-size: 0.89em;
	background: #31AAE1;
	border-bottom: 3px solid #006594;
	height: 33px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	padding-top: 1px;
	color: #FFF;
	display: block;
}
.ltweet img{
	padding:0.5em;
}
.ltweet span{
font-weight: 400;
	margin-left: 5px;
}
.ltweet label{
	text-align: right;
	padding: 7px 10px;
	margin-left: 8px;
	border-left: 1px solid #188BC0;
}
/*----*/
.lgoogle{
	font-size: 0.89em;
	background: #DF4A32;
	border-bottom: 3px solid #961500;
	height: 33px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	padding-top: 1px;
	color: #FFF;
	display: block;
}
.lgoogle img{
	padding:0.5em;
}
.lgoogle span{
font-weight: 400;
	margin-left: 5px;
}
.lgoogle label{
	border-left: 1px solid #961500;
	text-align: right;
	padding: 7px 10px;
	margin-left: 8px;
}
/*----*/
.lin{
	font-size: 0.89em;
	background: #0076B3;
	border-bottom: 3px solid #003D5C;
	height: 33px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	padding-top: 1px;
	color: #FFF;
	display: block;
}
.lin img{
	padding:0.5em;
}
.lin span{
font-weight: 400;
	margin-left: 5px;
}
.lin label{
	border-left: 1px solid #015885;
	text-align: right;
	padding: 7px 10px;
	margin-left: 8px;
}
/*----*/
.lpin{
	font-size: 0.89em;
	background: #C91517;
	border-bottom: 3px solid #67090A;
	height: 33px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	padding-top: 1px;
	color: #FFF;
	display: block;
}
.lpin img{
	padding:0.5em;
}
.lpin span{
font-weight: 400;
	margin-left: 5px;
}
.lpin label{
	border-left: 1px solid #67090A;
	text-align: right;
	padding: 7px 10px;
	margin-left: 8px;
}
.links {
	padding: 10px 0px;
	border: 1px solid #eee;
	border-left: none;
	border-right: none;
	margin: 5px 0 0;
}
.links span{
	color: #242424;
	vertical-align: middle;
	font-size: 0.9725em;
	text-transform: capitalize;
}
.links span:hover{
	color: #7272AC;
}
.links ul li {
	display: inline-block;
}
.links ul li a {
	font-size:0.85em;
	color: #999;
	padding-left: 20px;
}
.links ul li a:hover{
	color:#555;
}
.links ul li img {
	vertical-align: middle;
	padding-right: 10px;
}
.comment h2{
	margin-bottom: 20px;

	font-size: 1.5em;
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #000000;
}

.reply {
	margin-top: 20px;
}
.reply a {
	color:#242424;
	font-weight: 600;
	font-size:0.8725em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.reply a:hover{
	color:#999;
}
.comment {
	background: #FFFFFF;
	padding: 20px;
}
.comments-area{
	padding-top:50px;
}
.comments-area h2 {
	color: #555;
	font-size: 1.5em;
	margin-bottom:10px;
	text-transform: uppercase;
}
.comments-area p {
	position: relative;
	padding: 8px 0;
	margin:0;
}
.comments-area label {
	display: block;
	color: #999;
}
.comments-area span {
	color:#7272AC;
	position: absolute;
	left: 4px;
	top: 30px;
}
.comments-area input[type="text"] {

	padding: 10px 15px;
	width: 50%;
	color: #242424;
	font-size: 13px;
	border: none;
	background: #FFFFFF;
	outline: none;
	display: block;
}
.comments-area textarea {

	padding: 7px 15px;
	width: 70%;
	color: #242424;
	font-size: 13px;
	outline: none;
	height: 100px;
	display: block;
	border: none;
	background:#ffffff;
	resize:none;
}
.comments-area input[type="submit"] {
	padding:12px 24px;
	color:#ffffff;
	background:#242424;
	font-size:0.8725em;
	border:none;
	outline:none;
	cursor: pointer;

	text-transform:uppercase;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.comments-area input[type="submit"]:hover {
	background:#7272AC;
}




/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/*	position: fixed	;
 position: absolute | fixed;
    right: 190px;
    top: 80px;
	z-index:999999999999999999999999999999999999;*/
 
/* --------------------------------------------------------------------------- */
/* css */

.cadresiteavisiter{
width:137px;
	margin-left: auto;
	margin-right: auto;
}

.paragraphes{
	font-weight: normal;
	font-size:large;


}


.lecteurarchive{
	Width:90%;
	height:40px;
	padding:0px;
	padding-left:3px;
	margin:0px;






}


img 	{	
	border:0px;		
	}
	

	
	
h1	{
	font-weight: bold;
	font-size:1em;
}
h2	{
	font-weight: normal;
	font-size:large;
	}

th	{
	font-weight: normal;
	}
	
hr
{
	color: #97007E;
	height: 2px;
}

form {  
	margin: 0em 0em 0em 0em;

	}
input {
	margin: 0em 0em 0em 0em;

	}
	
/*  Général */

.menuhaut{

	margin-left: auto;
	margin-right: auto;
    	max-width: 1110px;
	background-color:#FFFFFF;
border-width: 0px;
border-top:0px;
border-style:solid;
border-color:#FFFFFF;
border-bottom-width: 0px;
border-spacing: 0;
    border-collapse: collapse;
}
.noborder{
	vertical-align: text-top;
	border-spacing: 0px;
    border-collapse: collapse;
	padding:0px;
	
}



.tabgeneral{

	margin-left: auto;
	margin-right: auto;
    	max-width: 1110px;
	background-color:#FFFFFF;

border-style:solid;
border-width: 7px;
border-color:#FFFFFF;
border-bottom-width: 0px;
border-top-width: 0px;	
}
	




.clearfix {
  overflow: auto;

}

.boximage {
 display: inline-block;
  width: 125px;
  height: 173px;
  margin: 2px;

}
.boxpopulaire {
 display: inline-block;
  width: 390px;
  height: 82px;
  margin: 0px;
}





.largeurtotale {
width:100%;
}
.illustrationlarge 	{	
  	border-width:2px;
  	border-style:solid;
  	border-color:#000000;
	float:left;

box-shadow: 1px 1px 12px #555;
margin:20px;
margin-left:0px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
overflow: auto;	
	}
.illustrationlarge2 	{	


	margin: 0em 1em 0.5em 0em;
	
	}
	
.illustrationlargenew 	{	
  	border-width:2px;
  	border-style:solid;
  	border-color:#000000;


box-shadow: 1px 1px 12px #555;
margin:20px;
margin-left:0px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
overflow: auto;	
	}	
	
	
.illustrationauteur 	{	

	float:right;
	margin: 0em 1em 0.5em 0em;
	
	}
.illustrationauteur2 	{	

	float:right;
	  	border-width:2px;
  	border-style:solid;
  	border-color:#000000;
	margin: 0em 1em 0.5em 0em;
	
	}


.borderimg 	{	
  	border-width:2px;
  	border-style:solid;
  	border-color:#000000;
  	box-shadow: 1px 1px 12px #555;
	border-radius:5px;

	}
	
.borderimg3 	{	

	float:left;
	margin: 0em 1em 0.5em 0em;
	
	}	
	
	
.borderimg2 	{	
  	border-width:1px;
  	border-style:solid;
  	border-color:#000000;		
	}
	
.borderimg4 	{
	
	}
.imagescentergauche{
	float:right;
	margin: 0em 1em 0.5em 0em;

}


.titrerubrique{
	text-align:center;
        background:#7E2B73;
        color:#FFFFFF;
  	font-weight:bold;
        }

.smallcaps
{
	font-variant:small-caps;
	font-size:medium;
  	font-weight:bold;
}
.bolder{
	font-weight: bold;
        }



.i{
	font-style:italic;
        }

.centertable{
	margin-left:10px;
}


.equipelivreor{
        color:#9900CC;
	font-style:italic;
}


        
/* Header */
    
	

.nounderline
{
text-decoration: none;
}

/* Centre */

.titrenouveaute
{
        color:#97007E;
	font-variant:small-caps;
	font-weight:bold;
	text-align: left;
	font-size: 1.5em;

}

.titrerubriquenews
{
	color: #330099;
	font-weight:bold;
	font-size:medium;
	font-variant:small-caps;
	text-align: left;
}
.auteurnouveaute
{
	font-variant:small-caps;
	font-weight:bold;
	font-size:x-large;

}
.enregistrement
{

	font-weight:bold;
	font-style:italic;
}



.titre
        {
	font-variant:small-caps;
	font-size:1.5em;
	text-align:center;
        color:#97007E;
	font-weight: bold;
        color:#122259;
        }
.navigation
        {

	padding:5px;
	width:100%;


        }
		
.toppage{  
margin:0px; 

text-align:left; 

}		

		
.etoile{
	color: #CC0000;
}
.citation{
	font-weight: bold;

}
.lecteur:link{	color: #330099;}
.lecteur:visited {color: #330099;}


.white:link{	color: #ffffff;}
.white:visited {color: #ffffff;}

.search{width:90%;} 

.panier
{
	font-weight: bold;
  	border-width:0px;
  	border-style:solid;
  	border-color:#D97EF3;
	font-size:small;
	background: #FCF6FE;}
.paniertotal
{

	font-weight: bold;
	font-size:small;
  	border-width:0px;
  	border-style:solid;
  	border-color:#D97EF3;
	background: #FCF6FE;}	
.formulairepanier {

	margin-left:170px;}
.commande {

	font-weight: bold;
	font-size:medium;}
.espacemembre
{
        color:#FFFFFF;
  	border-width:1px;
  	border-style:solid;
  	border-color:#D97EF3;
	text-align:center;
	padding:1px;
  	font-weight:bold;
		background:#6600CC;
}
.bt
{
		background:#FCF1FE;

}
.musique
{
	background-color:#DBDBDB;	

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;	
padding:10px;
	font-weight: normal;
	font-size:large;



}
.livreor
{
        color:#3300CC;
  	border-width:1px;
  	border-style:solid;
  	border-color:#FFFFFF;
	padding:1px;
	background:#FEF5FE;
}

.livreor2
{
        color:#3300CC;
	padding:1px;
	background:#FFFFFF;
	font-size:medium;
}
.livreor3
{
	border-width:2px;
  	border-style:dashed;
  	border-color:#FFFFFF;	

	background-color:#F1E7F8;


	padding:15px;

}




.navigation2b
{
  	font-weight:bold;
 	font-size:medium;
	font-variant:small-caps;
	padding:1px;
	background:#FEF5FE;
}

.petit
{

	color: #ffffff;
	font-size: 1em;
}
.red {
   	color:#990033;
  	font-weight:bold;
	}
.red {
   	color:#990033;
  	font-weight:bold;
	}

	
.navigation2{
	font-style:italic;
  	font-weight:bold;
	padding:5px;


	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;

}
.navigation3{

  	font-weight:bold;
	padding:5px;
color:#FFFFFF;
	background:#6484F5; 
	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}	
.navigation4{

  	font-weight:bold;
	padding:5px;

	background:#B9B3F0;
	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}	
	
.navigationrapide 	{

  	border-width:1px;
  	border-style:solid;
  	border-color:#B9B3F0;
  	font-weight:bold;
	}
.tabpubcentre	{
	padding:10px;
	background:#FCF1FE;
	}
.centre	{
	margin-left:300px;
	}
.center2
        {
	text-align: center;
        }
	
.droitsdaut{

  	border-width:2px;
  	border-style:solid;
  	border-color:#FF0033;
	font-style:italic;
	text-align: center;
   	color:#FFFFFF;
   	background:#FF0033;
 	font-size:medium;
  	font-weight:bold;
        }

	
.petitesrubriques
		 {
		

		float: left;	
	margin-right:10px;
  	border-width:1px;
  	border-style:solid;
  	border-color:#000000;	
		 }
.trait
		 {
  	border-width:1px;
  	border-style:solid;
  	border-color:#FFFFFF;
		 }
.titreindexnews
{
	color: #FFFFFF;
	font-weight:bold;
	font-size:medium;
	font-variant:small-caps;
	text-align: left;
}
.tabpubindex	{
	background-image: url(images/bkgtabindex.jpg);
        background:#FFFFFF;
	}
.tabpubindex2	{
	font-weight:normal;
	text-decoration: none;
	color: #662660;
	padding:10px;
	background-image: url(images/bkgtabindex2.jpg);

	}
.tabpubindex2:link	{text-decoration: none;	}
.tabpubindex2:visited	{text-decoration: none;	}
.tabpubindex2:active	{text-decoration: none;	}




.radiocite	{
        background:#571A4E;
	background-image: url(images/tabradiocite.jpg);


	}
	
.extraitnouveaute{}
.cinqlivres{
        background:#C363E3;
	color: #FFFFFF;
	text-align: center;
	font-style:italic;
	font-weight:bold;

}	
	
	
.imgcinqlivres{
        background:#000000;

}

.romansacc{
	padding:5px;
        background:#F9EAFB;
	color: #3333FF;

	font-style:italic;
	font-weight:bold;
}


.cadreroman1{
	background-image: url(images/cadreroman.jpg);	


	padding:10px;
  	border-width:0px;
  	border-style:solid;
  	border-color:#CC33FF;


	}

.cadreroman2{
	background-image: url(images/cadreroman2.jpg);	


	padding:10px;
  	border-width:0px;
  	border-style:solid;
  	border-color:#CC33FF;	

	}

.caps	{
	font-variant:small-caps;
	
	}
.capstitrub{

	font-variant:small-caps;
	font-size:medium;
	font-weight:bold;
}	

.lesderniers	{
	font-variant:small-caps;
	font-weight:bold;
	font-size:medium;	
	}
.cadrevioletpage1{
  	border-width:2px;
  	border-style:solid;
  	border-color:#CCCCFF;	
	background-color:#F1E7F8;
	padding:10px;

}

.cadrevioletpage{
  	border-width:2px;
  	border-style:solid;
  	border-color:#CCCCFF;	

	background-color:#F1E7F8;
	padding:10px;
}


.themes{
	border-width:2px;
  	border-style:solid;
  	border-color:#CCCCFF;	

	background-color:#F1E7F8;


	padding:0px;
	padding-right:30px;

}
.NBdownload{
  	border-width:2px;
} 
.textedelapage{
		width:100%;
			margin-left: auto;
	margin-right: auto;
	overflow:hidden
}
.textedelapageindex{	padding-left:10px;
padding-right:10px;
}
.cadrelicence{	

	background-color:#DBDBDB;	

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;	
padding:10px;

}
.devise{	
 	font-size:medium;
  	border-width:2px;
  	border-style:solid;
  	border-color:#CCCCFF;	

	background-color:#F1E7F8;
	padding:10px;

}
.screenyoutube{

	background-color:#000000;
	width:100%;
	margin-left: auto;
	margin-right: auto;	

}
.PseudoLivreOr{
	color: #330099;
} 

.social{	

	background-color:#DBDBDB;	

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;	
padding:5px;

}

.youtube{
	width:100%;
padding:0px;
background-color:#000000;
text-align:center;

}


.cadrecommentsnew{

	border-radius:1em; 
	
	margin-bottom:20px;
	margin-top:20px;
	padding:15px;


    background: linear-gradient(to right, #8492f6f7, #fff);	 
	
	}

.commentsnew{
	

	background-color:#F1E7F8;
	background-color:#ffffff;
	padding:13px;
border-radius: 30px 0px 30px 0px;
box-shadow: 3px 3px 5px grey;	
}





/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* CSS */	
	

	
.navigation2{
	font-style:italic;


	background:#ABBDFD; 


}
.navigation3{



	background:#6484F5; 

}		
		

.cadrevioletpage1{
  	border-width:2px;
  	border-style:solid;
  	border-color:#CCCCFF;	
	background-color:#F1E7F8;
	padding:2px;

}


		
}



.boximage {
 display: inline-block;
  width: 125px;
  height: 173px;
  margin: 2px;
  padding:2px;

}
.titrecinqlivres { 

	font-style:italic;
	font-weight:bold;
	font-size:20px;
	
}
.nouveautes{
	    width: 190px;
		height:263px;
}



/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/***** Media Quries *****/
@media only screen and (max-width: 1440px) {
	.sidebar {
		float: left;
		width: 15.5%;
	}	

}
@media only screen and (max-width: 1366px) {
	.wrap{
		width:95%;

	}
	.h_right h4 {
		text-align: left;
	}
	.grid_img img {
		height: 328px !important;
		width: 336px !important;
	}
	.sidebar.top {
		margin-top: -25%;
	}
	.sidebar2.top {
		margin-top:-5%;
	}
	.soc_icons {
		text-align: left;
	}
	.style1 .tsc_toggle_link, .style1 .tsc_acc_link {
		right: 40px  !important;
	}
	

}
@media only screen and (max-width: 1280px) {
	.wrap{
		width:97% ;


	}
	
	

	

	
	
	.grid_img{
		margin-bottom: -5px;
	}
	.grid_img img {
		height: 300px !important;
		width: 336px !important;
	}
	span.next {
		height: 97.3333%;
		bottom: 5px;
	}
	.list li.top {
		margin-top: -5px;
	}
	.da-slide h2 {
		margin-bottom: 47px !important;
	}
	.callbacks_tabs a:after {
		height: 11px;
		width: 11px;
	}
	.da-slide .da-link {
		padding: 6px 7px !important;
	}
	.da-slide p {
		margin-bottom: 17px !important;
	}
	.banner-text {
		padding-bottom: 24px;
	}
}

@media only screen and (max-width: 900px) {
	.wrap{
		width:98%;


	}
	.content {
		width: 100%;
		float: none;
	}
	


	.sidebar.top {
		margin-top: 4%;
		Background-color:#fff;
		color:#000;
		padding : 1em;
	} 
	
	
	.sidebar.top h3 {


			background-color: #3F59B3;

	}
	.sidebar2.top {
		margin-top: 4%;
		Background-color:#fff;
		color:#000;
		padding : 1em;
	} 
	
	
	.sidebar2.top h3 {


			background-color: #3F59B3;

	}
	
		.petit{
		color:#000;		
		
	}
	
	.white:link{	color: #000;}
.white:visited {color: #000;}
	
	.sidebar {
		float: none;

	}
	.sidebar2 {
		float: none;

	}
	
			.sidebar {
		width: 95%;
	margin-left: auto;
	margin-right: auto;

	}
	.sidebar2 {
		width: 100%;
	margin-left: auto;
	margin-right: auto;
	}
	
	.da-slide h2, .da-slide p, .da-slide .da-link, .da-slide .da-img {
		left: 0%;
	}
	.da-dots {
		left:10% !important;
		text-align: left !important;
	}
	.grid_img img {
		height: 280px !important;
	}
	.span1_of_4 {
		width: 42.777777%;
		margin-top: 8%;
	}
	.span1_of_4:nth-child(3){
		margin-left: 0;
	}
	.blog_left {
		width: 100%;
		float: none;
	}
	.h_right {
		width: 57%;

	}
	.da-slide h2 {
		margin-bottom: 77px !important;
	}
	ul.callbacks_tabs.callbacks2_tabs {
		top: 15%;
	}
	.da-slide h2 {
		font-size: 1.5em !important;
	}
	
}

@media only screen and (max-width: 700px){
	
.boxrubriques{	

  	width: 90%;

}		
	
	
	.h_right {
		width: 95%;

	}	



	

	.sidebar {
		width: 95%;
	margin-left: auto;
	margin-right: auto;

	}
	.sidebar2 {
		width: 100%;
	margin-left: auto;
	margin-right: auto;
	}	

	
}

@media only screen and (max-width: 600px) {
	
	
	.content{

	width: 100%;
	padding-left:0px;
	}
	
	
	
	.wrap {
		width: 100%;

	}	
	
	
	.slider{
	margin-top:18px;
}
	
	
		
		.sidebar {
		width: 95%;
	margin-left: auto;
	margin-right: auto;

	}
	.sidebar2 {
		width: 100%;
	margin-left: auto;
	margin-right: auto;
	}	
		
	}
}

@media only screen and (max-width: 480px) {
.wrap {
    width: 98%;


}




	h1.style {
		font-size: 2em;
	}
	h2.style {
		font-size: 1.6em;
	}
	h3.style {
		font-size: 1.2em;
	}
	h4.style {
		font-size: 0.9725em;
	}
	h5.style {
		font-size: 0.8125em;
	}
	.logo {
		float: none;
		width: 25%;
	}
	.content_left {
		float: none;
		width: 100%;
	}
	.content_right {
		float: none;
		width: 100%;
	}
	.h_right h4 {
		font-size: 0.8125em;
	}
	.contact-form input[type="text"], .contact-form textarea {
		width: 94%;
	}
	.details span {
		font-size: 1em;
	}
	.det-histore ul li p {
		width: 82%;
	}
	

		
	
}
@media only screen and (max-width: 414px) {
.wrap {
    width: 98%; 

}

.boxrubriques{	



}	


.sixlivres{
	text-align:center;
} 



	.sidebar {
		width: 90%;
	margin-left: auto;
	margin-right: auto;

	}
	.sidebar2 {
		width: 100%;
	margin-left: auto;
	margin-right: auto;
	}
	
		.span1_of_4 {
		width: 92.777777%;
		float: none;
		margin: 15% 0;
	}
		.logo {
		float: none;
		width: 50%;
	}



}
@media only screen and (max-width: 320px) {

	
	.cadrevioletpage1{
	padding:2px;
	}	
	
	.wrap{
		width:95%;

	}
	.sidebar {
		width: 90%;
	margin-left: auto;
	margin-right: auto;

	}
	.sidebar2 {
		width: 100%;
	margin-left: auto;
	margin-right: auto;
	}
	.grid_info {
		padding: 10px;

	}
	.grid_img img {
		height: 320px !important;
	}
	span.next {
		height: 99.3333%;
		bottom: 4px;
	}
	.span1_of_4 {
		width: 92.777777%;
		float: none;
		margin: 15% 0;
	}
	.soc_icons ul li {
		margin-left: 0px;
	}
	.style1 .tsc_toggle_link, .style1 .tsc_acc_link {
		left: -5px !important;
	}
	.f_nav1 {
		text-align: left;
	}
	.f_nav1 li {
		margin-right: 0px;
	}
	.f_nav1 li a {
		font-size: 0.7125em;
	}
	.folio_list li {
		width: 44.3333%;
	}
	.folio_list li h3 {
		font-size: 0.8725em;
	}
	.span_1_of_blog {
		float: none;
		width: 100%;
	}
	.span_2_of_blog {
		float: none;
		width: 100%;
	}
	.contact-form input[type="text"], .contact-form textarea {
		width: 92%;
	}
	ul.comment-list img {
		width: 20%;
	}
	ul.comment-list .desc {
		width: 70%;
	}
	ul.comment-list .desc h5 a {
		font-size: 1em;
	}
	.det-histore ul li p {
		width: 72%;
	}

	.da-slide h2 {
		font-size: 1.3em !important;
	}
	.da-slide h2 {
		margin-bottom: 47px !important;
	}
	ul.callbacks_tabs.callbacks2_tabs {
		top: 11%;
	}

.btn{width:100%;}
.btntele{width:100%;}
.btnpeer{width:100%;}
.btninvit{width:100%;}
.btnsign{width:100%;}
.btncom{width:100%;}
.btnvideo{width:100%;}

.borderimg{width:100%;}
.boximage{width:60%;}



	
}
/*-- Go-To-Top-Button --*/
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 15px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url("https://www.audiocite.net/images/to-top.png") no-repeat 0px 0px;
}
/*-- //Go-To-Top-Button --*/

.dons{
text-align:center;	
background-color:#fff;
padding:1em;
  border-radius: 5px;
}

.application{
max-width:100%;
background-color:#fff;
text-align:center;
border: 10px solid #fff;
border-left:0px; 
border-right:0px;
padding:0.5em; 		
	
	
}
@media only screen and (min-width: 900px) {	
	.application{display:none;}
}

.applicationlarge{}
@media only screen and (max-width: 900px) {
	
.applicationlarge{
display:none;	
}
}


.player{width:100%;background-color:#f0f;}
.validcommentnv{
	
		color: #fff;
    background:#1E4015;	
	padding:0.5em;
	margin:1em;
  	border-width:2px;
  	border-style:solid;
  	border-color:#000;
	font-size:1.2em; 
}

.socialSeparation{
	display: inline-block;
vertical-align:middle; 
padding-left:0.5em;
	
}

.fb-share-button{
	
	
vertical-align:6px;	
}

.droitsauteurs{
	font-size: 1em;
	font-style: italic;
	text-transform:lowercase;
	text-align : center;
	color:#FFF;
}


.tipeee{
	width:200px; 
	height:23px; 

}

.tip{
	width:100%;


}

.mobile{display:none;}

@media only screen and (max-width: 901px) {	
	
.mobile{display:block;
padding:2em;
padding-top:0px;
padding-bottom:0.5em;   
background:#EEE;   
border: 0.2rem solid #3F59B3;



}

.nonmobile{display:block;}


@media only screen and (max-width: 900px) {	
	
.nonmobile{display:none;
}




}


.frametipeeetop{
	width:100%;
	height:150px;
	
}

.frametipeee{
	width:100%;
	height:380px; 
}








	