@charset "utf-8";
#contentVD{
	width:100%;
	background-color:#fff;
	min-height:800px;
	background-image:url(../picsv3/stripes.jpg);
	background-size:cover;
	background-repeat:no-repeat;
}
.showVD{
	width:100%;
	margin:auto;
	text-align:center;
	/*border:solid 1px red;*/
}
.showVD ul{
	text-align:center;
	/*border:solid 1px green;*/
}
.showVD li{
	display: inline-block;
	height: 150px;
	width: 207px;
	margin: 10px;
	font-family: 'Josefin Sans', Arial, sans-serif;
	font-size: 14px;
	color: #000;
	line-height: 22px;
	text-align: center;
	background-color: #FFF;
	border: solid 1px black;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.showVD li:hover{
	display:inline-block;
	height:150px;
	width:207px;
	margin:10px;
	font-family: 'Josefin Sans', Arial, sans-serif;
	font-size:14px;
	color:#fff;
	line-height:22px;
	text-align:center;
	/*background-color:#34123c;*/
	background-color:#000;
	border:solid 1px black;
}
.showVD p{
	font-family: 'Stardos Stencil', cursive;
	font-size: 30px;
	color: rgba(69, 69, 69, 0.7);
	font-weight: bold;
}
.iframeVD{
	width:500px;
	height:281px;
}

/*--------- MODAL -----------*/
.modalDialog {
	display:none;
        position: fixed;
        font-family: Arial, Helvetica, sans-serif;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: 99999;
        opacity:0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
        pointer-events: none;
    }

    .modalDialog:target {
		display:inherit;
        opacity:1;
        pointer-events: auto;
    }

    .modalDialog > div {
        width: 800px;
		height:450px;
        position: relative;
        margin-top:50px;
		margin-left:74px;
        padding: 5px 20px 13px 20px;
        box-shadow: 0px 0px 20px #000;
		border: 10px solid #e7e7e7;
		border-radius: 10px;
        background: #000;
        background: -moz-linear-gradient(#fff, #999);
        background: -webkit-linear-gradient(#fff, #999);
        background: -o-linear-gradient(#fff, #999);
		
		-webkit-animation: popup 0.5s linear;
        	-moz-animation: popup 0.5s linear;
        	 -ms-animation: popup 0.5s linear;
         	 -o-animation: popup 0.5s linear;
			 animation: popup 0.5s linear;
    }
	@-webkit-keyframes popup{ from { -webkit-transform: translateY(-100%); } } 
    @-moz-keyframes popup{ from { -moz-transform: translateY(-100%); } } 
     @-ms-keyframes popup{ from { -ms-transform: translateY(-100%); } } 
      @-o-keyframes popup{ from { -o-transform: translateY(-100%); } } 
         @keyframes popup{ from { transform: translateY(-100%); } }   

    .close {
        background: #606061;
        color: #FFFFFF;
        line-height: 25px;
        position: absolute;
        right: -12px;
        text-align: center;
        top: -10px;
        width: 24px;
        text-decoration: none;
        font-weight: bold;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -moz-box-shadow: 1px 1px 3px #000;
        -webkit-box-shadow: 1px 1px 3px #000;
        box-shadow: 1px 1px 3px #000;
    }

    .close:hover { background: #00d9ff; }
	#video{
			width:800px;
			height:450px;
}
/* ---- Mobile ---- */
@media only screen and (max-width:480px){
#contentVD{
	width:100%;
	background-color:#fff;
	min-height:560px;
	background-image:url(../picsv3/bg_activite.jpg);
	background-size:auto;
	background-repeat:repeat;
}
.showVD{
	width:100%;
	margin:auto;
	text-align:center;
	/*border:solid 1px red;*/
}
.showVD ul{
	text-align:center;
	/*border:solid 1px green;*/
}
.showVD li{
	display: inline-block;
	height: 150px;
	width: 207px;
	margin: 10px;
	font-family: 'Josefin Sans', Arial, sans-serif;
	font-size: 14px;
	color: #000;
	line-height: 22px;
	text-align: center;
	background-color: #FFF;
	border: solid 1px black;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.showVD li:hover{
	display:inline-block;
	height:150px;
	width:207px;
	margin:10px;
	font-family: 'Josefin Sans', Arial, sans-serif;
	font-size:14px;
	color:#fff;
	line-height:22px;
	text-align:center;
	background-color:#34123c;
	border:solid 1px black;
}
.showVD p{
	font-family: 'Stardos Stencil', cursive;
	font-size: 30px;
	color: rgba(69, 69, 69, 0.7);
	font-weight: bold;
}

/*--------- MODAL -----------*/
.modalDialog {
        position: fixed;
        font-family: Arial, Helvetica, sans-serif;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: 99999;
        opacity:0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
        pointer-events: none;
    }

    .modalDialog:target {
        opacity:1;
        pointer-events: auto;
    }

    .modalDialog > div {
        width: 300px;
		height:150px;
        position: relative;
        margin-top:50px;
		margin-left:0;
        padding: 5px 20px 13px 20px;
        box-shadow: 0px 0px 20px #000;
		border: 10px solid #e7e7e7;
		border-radius: 10px;
        background: #000;
        background: -moz-linear-gradient(#fff, #999);
        background: -webkit-linear-gradient(#fff, #999);
        background: -o-linear-gradient(#fff, #999);
		
		-webkit-animation: popup 0.5s linear;
        	-moz-animation: popup 0.5s linear;
        	 -ms-animation: popup 0.5s linear;
         	 -o-animation: popup 0.5s linear;
			 animation: popup 0.5s linear;
    }
	@-webkit-keyframes popup{ from { -webkit-transform: translateY(-100%); } } 
    @-moz-keyframes popup{ from { -moz-transform: translateY(-100%); } } 
     @-ms-keyframes popup{ from { -ms-transform: translateY(-100%); } } 
      @-o-keyframes popup{ from { -o-transform: translateY(-100%); } } 
         @keyframes popup{ from { transform: translateY(-100%); } }   

    .close {
        background: #606061;
        color: #FFFFFF;
        line-height: 25px;
        position: absolute;
        right: -12px;
        text-align: center;
        top: -10px;
        width: 24px;
        text-decoration: none;
        font-weight: bold;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -moz-box-shadow: 1px 1px 3px #000;
        -webkit-box-shadow: 1px 1px 3px #000;
        box-shadow: 1px 1px 3px #000;
    }

    .close:hover { background: #00d9ff; }
	#video{
			width:800px;
			height:450px;
}
}
