/* reset de Meyer
@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
center,
dl,
dt,
dd,
ol,
ul,
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*fin du reset de Meyer*/

#ct{
	width:100%;
	margin:0 auto;
	/*border:solid thin blue;*/
	
	/*background-color:white;*/
	/*overflow:hidden;*/
	padding-bottom:20px;
}


.tab{
	overflow:hidden;
	/*background-color:rgb(100,100,100);
	margin:5px;*/
}

.tab a {
	text-decoration:none;
	display:block;
	float:left;
	padding:10px;
	transition: all 0.5s ease;
	color:rgb(200,200,200);
}


.tab .active{
	background-color:#E4E4E4;
	color:blue;
}

.tab .active .legende{
		color:#317E90;
}


#contenu{
	overflow:hidden;
	width:60vw;
	margin:0 auto;
	
}
.content{
	display:none; /* les contenus ne sont plus visibles, on les fera réapparaître avec javascript */
	width:100v;
}



ul{
	display:table;
	width:60vw;
	margin:0 auto;
}

li{
	display:table-cell;
	overflow:hidden;
	width:12vw;
}

a{
	display:block;
	/*padding:5px;*/
	text-decoration:none;
	text-align:center;
	color:rgb(130,130,130);
}

h1{
	margin-left:20%;
	padding-top:20px;
	margin-bottom:20px;
	color:#317E90 !important;
	/*color:#75D2DC !important;*/
}

#retour{
	display:block;
	float: right;
	margin-right:20vw;
	
}

p{
	margin-top:5px; /*pour éviter que le texte soit collé sous l'image */
	font-family: 'Anaheim', sans-serif;
	/*font-family: Helvetica, Arial, sans-serif;*/
	/*font-size:0.7rem;
	line-height: 1.1rem;*/
	font-size:14px;/*pour les vieux navigateurs qui ne lisent pas les rem*/
	font-size:0.85rem;
	line-height:18px;
	line-height:1.2rem;
	color:rgb(130,130,130);
}

#menuaquarelle img{
	width:100%;
}



 .legende{
	opacity:1;
	color:rgb(140,140,140);
	font-family: 'Barlow Semi Condensed', sans-serif, Arial;
	font-size:0.9rem;
	line-height:1.6;
	transition:all 0.8s ease;
}

.row{
	overflow:hidden; 
	margin-right:-15px;
	margin-left:-15px;
			}
			
.w20{width:20%;
}


/*effet scroll to top */
button{
  position: relative;
}
.scrollToTop{
    color: #444;
    text-decoration: none;
    position:fixed;
  z-index: 9999;
    bottom:5%;
  left: 90%;
  background-color: rgba(50,50,50,0.8);
  color: white;
    display:none;
  border: none;
  padding: 5px;
  cursor: pointer;
}



/********************************mode taille d'écran de mobile ************************/


@media screen and (max-width: 767px){
	
	
	ul{
	display:block;
	width:100vw;
	margin:0 auto;
}

li{
	display:block;
	float:left;
	overflow:hidden;
	width:80vw;
	padding-left:20px;
}

li img{
	display:none;
}

a{
	display:block;
	/*padding:5px;*/
	text-decoration:none;
	text-align:center;
	color:rgb(130,130,130);
}
			
			#contenu{
	overflow:hidden;
	width:100vw;
	margin:0 auto;	
	}
}		