*-----------------------------------------*/
* {
	margin: 0;
	padding: 0;

}
#menu-tab {
    font-family: 'trebuchet ms', geneva;
	font-size: 11pt;
	color: black;
    /*border: 1px solid #ff0000;*/
    height: 750px;
}

#menu-tab a {
  color: grey;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  font-variant: normal;
  cursor: pointer;
}
#menu-tab a:hover{
  color: green;
}

/*--------------Dimensions tableau--------------*/

#page-wrap {
	  width: 100%;
	  margin: 10px auto;
      /*border: 1px solid #0000ff;*/
}

/*--------------Onglets--------------*/

.tabs {
      position: relative;
      clear: both;
      margin: 25px 0;
      /*border: 1px solid #00ff00;*/
}
.tab {
      float: left;
      /*border: 1px solid #00ffff;*/
}
.tab .labeltab {
   position: relative;
   left: 1px;
   margin-left: -1px;
   border-radius: 10px 10px 0px 0px;
   box-shadow: 3px -3px 6px rgba(0, 0, 0, 0.71);
   padding: 10px 20px;
   border: 1px solid #ccc;
   font-weight: bold;
   color: #ffffff;
   background-color: #729EBF;
   background-image: -webkit-linear-gradient(top, #729EBF 0%, #333A40 100%);
   background-image: linear-gradient(to bottom, #729EBF 0%, #333A40 100%);
}
.tab .radiotab[type=radio] {
      display: none;
}

/*--------------Contenu article onglet--------------*/
.content {
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px 1px 0 1px solid #ccc;
      border-radius: 0px 10px 0px 0px;
      box-shadow: 6px 0px 10px rgba(0, 0, 0, 0.41);
      background: white;
      min-height: 412px;
      padding: 20px; /*48px 20px 48px 20px;*/
      overflow: hidden;
	  overflow-y: auto;
}
.content > * {
      opacity: 0;

      -webkit-transform: translate3d(0, 0, 0);

      -webkit-transform: translateX(-100%);
      -moz-transform:    translateX(-100%);
      -ms-transform:     translateX(-100%);
      -o-transform:      translateX(-100%);

      -webkit-transition: all 0.6s ease;
      -moz-transition:    all 0.6s ease;
      -ms-transition:     all 0.6s ease;
      -o-transition:      all 0.6s ease;
}

/*--------------Images--------------*/

.content img {
	border:4px solid white;
	box-shadow:6px 6px 10px grey;
	-webkit-transition: all 0.6s ease;
    -moz-transition:    all 0.6s ease;
    -ms-transition:     all 0.6s ease;
    -o-transition:      all 0.6s ease;
}

.content img:hover {
	opacity: 0.8;
	-webkit-transform: rotate(7deg);
    -moz-transform:    translateX(0);
    -ms-transform:     translateX(0);
    -o-transform:      translateX(0);

	-webkit-transition: all 0.6s ease;
    -moz-transition:    all 0.6s ease;
    -ms-transition:     all 0.6s ease;
    -o-transition:      all 0.6s ease;
}

/*-------------Onglets actifs--------------*/

.radiotab[type=radio]:checked ~ .labeltab {
      background: white;
      border-bottom: 1px solid white;
      z-index: 2;
      color: #1D6086;
}
.radiotab[type=radio]:checked ~ .labeltab ~ .content {
      z-index: 1;
}
.radiotab[type=radio]:checked ~ .labeltab ~ .content > * {
      opacity: 1;
      -webkit-transform: translateX(0);
      -moz-transform:    translateX(0);
      -ms-transform:     translateX(0);
      -o-transform:      translateX(0);
}

/*--------------tabfoot--------------*/

.tabfoot {
    position: relative;
  	top: 480px;
  	text-align: right;
    border: 0 1px 1px 1px solid #ccc;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1);
    padding: 10px;
    background-color: #729EBF;
    background-image: -webkit-linear-gradient(top, #729EBF 0%, #333A40 100%);
    background-image: linear-gradient(to bottom, #729EBF 0%, #333A40 100%);
  }

.tabfoot input {
    border-radius: 5px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.5);
    padding: 5px 20px;
    border: 1px solid #ccc;
    color: #ffffff;
	margin-left: 10px;
    font-family: 'trebuchet ms', geneva;
	font-size: 18pt;
    font-weight: bold;
    cursor: pointer;
    background-color: #8CC5E6;
    background-image: -webkit-linear-gradient(top, #8CC5E6 0%, #2883B8 100%);
    background-image: linear-gradient(to bottom, #8CC5E6 0%, #2883B8 100%);
  }
.tabfoot a {
    border-radius: 5px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.5);
    padding: 5px 20px;
    border: 1px solid #ccc;
    color: #ffffff;
	margin-left: 10px;
    font-family: 'trebuchet ms', geneva;
	font-size: 18pt;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    background-color: #8CC5E6;
    background-image: -webkit-linear-gradient(top, #8CC5E6 0%, #2883B8 100%);
    background-image: linear-gradient(to bottom, #8CC5E6 0%, #2883B8 100%);
}