/*----------------------------------------------------------------
   CSS FOR ALL PAGES
----------------------------------------------------------------*/

body, html
{
   max-width: 1200px;
   margin: auto;
   margin-top: 20px;
   font-family: "bank_gothiclight", "Andale Mono", "Arial Black", Arial, Verdana, serif;
   }

body{
	overflow-y: scroll;
	}

@font-face {
    font-family: 'bank_gothiclight';
    src: url('fonts/bankgotl/bankgotl-webfont.eot');
    src: url('fonts/bankgotl/bankgotl-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/bankgotl/bankgotl-webfont.woff') format('woff'),
         url('fonts/bankgotl/bankgotl-webfont.ttf') format('truetype'),
         url('fonts/bankgotl/bankgotl-webfont.svg#bank_gothiclight') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*----------------------------------------------------------------
   INTRO ANIMATION CSS
----------------------------------------------------------------*/
#animation{
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 3em;
	
	animation-name: animEnter;
	animation-duration: 5s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: animEnter;
	-webkit-animation-duration: 5s;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: animEnter;
	-moz-animation-duration: 5s;
	-moz-animation-iteration-count: 1;
	
	-o-animation-name: animEnter;
	-o-animation-duration: 5s;
	-o-animation-iteration-count: 1;
	}

@keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;	
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
		
}

@-webkit-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;	
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
		
}

@-moz-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;	
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
		
}

@-o-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;	
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
		
}

/*----------------------------------------------------------------
   INDEX BODY ANIMATION CSS
----------------------------------------------------------------*/   
#indexBody{
	animation-name: animBody;
	animation-duration: 3s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: animBody;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: 1;	
	
	-moz-animation-name: animBody;
	-moz-animation-duration: 3s;
	-moz-animation-iteration-count: 1;	
	
	-o-animation-name: animBody;
	-o-animation-duration: 3s;
	-o-animation-iteration-count: 1;		
	}

@keyframes animBody{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
		
}

@-webkit-keyframes animBody{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
		
}

@-moz-keyframes animBody{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
		
}

@-o-keyframes animBody{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
		
}


/*----------------------------------------------------------------
   HEADER CSS
----------------------------------------------------------------*/
header{
	position: relative;
	font-size: 1.5em;
	color: RGB(200, 200, 200);
	background-color: white;
	padding: 0px 5px 0px 5px;
	width: 100%;
	display: none;
	}

header a{
	color: RGB(200, 200, 200);
	background-color: white;
	text-decoration: none;
	}

header a:hover{
	color: RGB(200, 200, 200);
	background-color: white;
	text-decoration: underline;
	}

header a:visited{
	color: RGB(200, 200, 200);
	background-color: white;
	text-decoration: none;
	}

header a:active{
	color: RGB(200, 200, 200);
	background-color: white;
	text-decoration: none;
	}

#wait{
	position : relative;
	font-size: 2em;
	width: 100%;
	text-align: center;
	margin: auto;
	margin-top: 25%;

//	animation-name: animEnter;
//	animation-duration: 5s;
//	animation-iteration-count: infinite;
//	
//	-webkit-animation-name: animEnter;
//	-webkit-animation-duration: 5s;
//	-webkit-animation-iteration-count: infinite;
//	
//	-moz-animation-name: animEnter;
//	-moz-animation-duration: 5s;
//	-moz-animation-iteration-count: 1;
//	
//	-o-animation-name: animEnter;
//	-o-animation-duration: 5s;
//	-o-animation-iteration-count: 1;
}

@keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

@-webkit-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}	
}

@-moz-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

@-o-keyframes animEnter{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}	
}


/*----------------------------------------------------------------
   MAIN DIV CSS
----------------------------------------------------------------*/
#mainDiv{
	position: relative;
//	min-width: 700px;
	max-width: 1200px;
	background-color: white;
	padding: 10px 5px 0px 5px;
	margin-bottom: 50px;
	margin-top: 20px;
	display: none;
//	border: solid green 1px;
	}


/*----------------------------------------------------------------
   MENU CSS
----------------------------------------------------------------*/
#menu{
	display: inline-block;
	margin: 0;
	width: 200px;
	vertical-align: top;
	font-size: 1em;
//    border: solid black 1px;
	}

#menu ul, li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 20px;
//	border: solid red 1px;
	}

#menu ul li a{
	display: inline-block;
	width: 99%;
	margin: 0px;
		
    background-color: white;
    color: black;
    text-decoration: none;
    
    font-size: 1em;
    
    background-color: white;
    -webkit-transition-property: background-color;
    -moz-transition-property: background-color;
    -o-transition-property: background-color;
    transition-property: background-color;
    
    -webkit-transition-duration:0.5s;
    -moz-transition-duration:0.5s;
    -o-transition-duration:0.5s;
    transition-duration:0.5s;

//    border: red solid 1px;
	}

#menu a:visited{
	background-color: white;
	color: black;
	text-decoration: none;
	}

#menu a:hover{
	background-color: RGB(200, 200, 200);
	color: white;
	text-decoration: none;
	text-align: right;
	}

#menu a:active{
	-webkit-animation-name: anim;
	-webkit-animation-duration: 0.1s;
	-webkit-animation-iteration-count: infinite;
	}

@keyframes anim{
	0%{
		background-color: white;
	}
	100%{
		background-color: black;
	}
		
}

@-webkit-keyframes anim{
	0%{
		background-color: white;
	}
	100%{
		background-color: black;
	}
		
}

@-moz-keyframes anim{
	0%{
		background-color: white;
	}
	100%{
		background-color: black;
	}
		
}

@-o-keyframes anim{
	0%{
		background-color: white;
	}
	100%{
		background-color: black;
	}
		
}

#menu ul li .activemenuelem{
	background-color: black;
	color: white;
	text-decoration: none;
	text-align: left;
	}

/*----------------------------------------------------------------
   RIGHT DIV CSS
----------------------------------------------------------------*/
#showDiv{
	position: relative;
	display: inline-block;
//	min-width: 950px;
	width: 900px;
//	max-width: 910px;
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	margin: 0;
	background-color: white;
	font-size: 1em;
//	border: blue solid 1px;
	}

#showDiv article{
	display: inline-block;
	width: 100%;
//	max-width: 90%;
	margin:0;
	padding: 0px 0px 30px 0px;
	color: grey;
//	border: solid black 1px;
	}

//#showDiv article:last-child{
//	border-bottom: 0px;
//	}

#showDiv article p{
	margin: 0px;
	font-size: 0.8em;
	font-family: Helvetica;
	}

#showDiv article p,h1{
	margin: 0px;
	}

#showDiv .biodate{
	display: inline;
	font-size: 1.2em;
	font-family: "bank_gothiclight", "Andale Mono", "Arial Black", Arial, Verdana, serif;
	}

#showDiv .videotitle{
	display: inline;
	font-size: 1.2em;
	font-family: "bank_gothiclight", "Andale Mono", "Arial Black", Arial, Verdana, serif;
	}

#showDiv article a{
	font-size: 1.2em;
    background-color: white;
    color: RGB(200, 200, 200);
    text-decoration: underline;
	}

#showDiv article a:visited{
	background-color: white;
    color: RGB(200, 200, 200);
	}

#showDiv article a:hover{
	background-color: RGB(240, 240, 240);
	color: grey;
	}

#showDiv article .articletitle{
	padding: 0px;
	font-size: 1.2em;
	color: white;
	background-color: RGB(200, 200, 200);
	font-family: "bank_gothiclight", "Andale Mono", "Arial Black", Arial, Verdana, serif;
	padding: 2px 0px 0px 5px;
	margin-bottom: 5px;
	}

//#music article{
//	width: 30%;
//	height: 150px;
//	vertical-align: top;
//	border: 2px solid RGB(200, 200, 200);
//	margin: 1% 0% 1% 0%;
//	padding: 0;
//	border-radius: 5px;
//	
//	-webkit-transition-property: height;
// 
//    -webkit-transition-duration:0.5s;
//
////	-webkit-animation-name: articleNoexp;
////	-webkit-animation-duration: 1s;
////	-webkit-animation-iteration-count: 1;
//	}


#music{
//	text-align: right;
	}

#music article{
	display: inline-block;
	width: 100%;
//	max-width: 90%;
	margin:0;
	padding: 0px 10px 30px 0px;
	color: grey;
}


//#music article:hover{
//	cursor: default;
//	z-index: 2;
////	-webkit-animation-name: articleexp;
////	-webkit-animation-duration: 1s;
////	-webkit-animation-iteration-count: 1;
//	height: 200px;
//	}

#music article .articletitle{
	display: inline-block;
	}

#flash_player{
	display: inline-block;
	vertical-align: top;
//	float: right;
	text-align: bottom;
	backgroun: white;
	}

@-webkit-keyframes articleNoexp{
	0%{
		height: 200px;
	}
	100%{
		height: 150px;
	}		
}

@-webkit-keyframes articleexp{
	0%{
		height: 150px;
	}
	100%{
		height: 200px;
	}		
}


#video video{
	width : 100%;
	max-width : 100%;
	border : 2px black solid;
	allowfullscreen="true";
	preload = "none"
	}

/*----------------------------------------------------------------
   PAGES CSS
----------------------------------------------------------------*/
.contenu{
	position: absolute;
	left: 0;
	display: none;
	top: -2000px;
	visibility: hidden;
	
	animation-name: divHideAnim;
	animation-duration: 1s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: divHideAnim;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: divHideAnim;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	
	-o-animation-name: divHideAnim;
	-o-animation-duration: 1s;
	-o-animation-iteration-count: 1;
//	opacity: 0;
	}

.contenu:target{
	display: block;
//	position: relative;
	visibility: visible;
//	opacity: 0;
	top: 0;
	margin: 0;
	padding: 0;
	
	animation-name: divShowAnim;
	animation-duration: 1s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: divShowAnim;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: divShowAnim;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	
	-o-animation-name: divShowAnim;
	-o-animation-duration: 1s;
	-o-animation-iteration-count: 1;
	}

.divShow{
//	position: absolute;
//	top: 0px;
//	left: 0px;
	opacity: 1;
	z-index: 1;
	color: blue;
	
	animation-name: divShowAnim;
	animation-duration: 1s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: divShowAnim;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: divShowAnim;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	
	-o-animation-name: divShowAnim;
	-o-animation-duration: 1s;
	-o-animation-iteration-count: 1;
	}

.divHide{
	position: absolute;
	
	animation-name: divHideAnim;
	animation-duration: 1s;
	animation-iteration-count: 1;
	
	-webkit-animation-name: divHideAnim;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: divHideAnim;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	
	-o-animation-name: divHideAnim;
	-o-animation-duration: 1s;
	-o-animation-iteration-count: 1;
	}

@keyframes divShowAnim{
	0%{
		opacity: 0;
		top: -2000px;
	}
	10%{
		opacity: 1;
	}
	20%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		top: 0px;
	}		
}

@-webkit-keyframes divShowAnim{
	0%{
		opacity: 0;
		top: -2000px;
	}
	10%{
		opacity: 1;
	}
	20%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		top: 0px;
	}		
}

@-moz-keyframes divShowAnim{
	0%{
		opacity: 0;
		top: -2000px;
	}
	10%{
		opacity: 1;
	}
	20%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		top: 0px;
	}		
}

@-o-keyframes divShowAnim{
	0%{
		opacity: 0;
		top: -2000px;
	}
	10%{
		opacity: 1;
	}
	20%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		top: 0px;
	}		
}

@-webkit-keyframes divHideAnim{
	0%{
		opacity: 1;
		top: 0px;
	}
	100%{
		opacity: 0;
		top: -2000px;
	}		
}

/*----------------------------------------------------------------
   ATELIERS PAGE CSS
----------------------------------------------------------------*/
.articlesubtitle{
	font-family: "bank_gothiclight", "Andale Mono", "Arial Black", Arial, Verdana, serif;
	font-size: 1.5em;
}

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


#ssMenuNews{
	position: absolute;
	top: 0px;
	left: 200px;
	visibility: hidden;
	margin: 0;
	width: 200px;
	vertical-align: top;
	font-size: 1em;
//    border: dotted black 1px;
	}

#ssMenuNews ul, li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 20px;

//	border: solid blue 1px;
	}

#ssMenuNews ul li a{
	display: inline-block;
	width: 99%;
	margin: 0px;
		
    background-color: black;
    color: white;
    text-decoration: none;
    
    font-size: 1em;
//    border: red solid 1px;
	}

#ssMenuNews a:visited{
	background-color: black;
	color: white;
	text-decoration: none;
	}

#ssMenuNews a:hover{
	background-color: white;
	color: black;
	text-decoration: none;
	text-align: right;
	}

#ssMenuNews ul li .activemenuelem{
	background-color: black;
	color: white;
	text-decoration: none;
	text-align: right;
	}

#ssMenuNews a:active{
//	background-color: orange;
//	color: white;
	animation-name: anim;
	animation-duration: 0.1s;
	animation-iteration-count: infinite;
	
	-webkit-animation-name: anim;
	-webkit-animation-duration: 0.1s;
	-webkit-animation-iteration-count: infinite;
	
	-moz-animation-name: anim;
	-moz-animation-duration: 0.1s;
	-moz-animation-iteration-count: infinite;
	
	-o-animation-name: anim;
	-o-animation-duration: 0.1s;
	-o-animation-iteration-count: infinite;
}


//@media screen and (max-width: 960px){
//	header{text-align: center;}
//	nav{position: relative; padding: 0; margin: 0;}
//	#prez article{width: auto;}
//	}
	
@media screen and (max-width: 1000px){
	*{
	margin: 0;
	padding: 0;	
	}
	
	body, html{
	margin: 0;
	padding: 0;
	width: 100%;	
	}

	header{
		font-size: 3em;
		}
	
	#wait{
		font-size: 10em;
		}
	
	#mainDiv{
	width: 100%;
	max-width: 1000px;
	position: relative;
	margin: 0;
	margin-top: 20px;
	padding: 0;
	font-size: 1em;
	}
	
	header{
	font-size: 2em;
	padding: 0;
	margin: 0;
	padding-top: 20px;
	text-align: center;	
		}
	
	#menu{
	margin: auto;
	vertical-align: inherit;
	text-align: center;
	width: 100%;
	font-size: 3em;
	background-color: black;
//	border-bottom: solid grey 2px;
	}
	
	#menu a{
	color: white;
	background-color: black;
	}
	
	#menu a:visited{
	color: white;
	background-color: black;
	}
	
	#menu a:active{
	color: white;
	background-color: grey;
	text-align: center;
	}
	
	#menu a:hover{
	text-align: center;
	}
	
	#menu ul, li{
	height: 100%;
	}
	
	#showDiv{
	text-align: center;
	position: relative;
	display: inline-block;
	width: 100%;
//	max-width: 500px;
	vertical-align: top;
	padding: 0;
	margin: 0;
	background-color: white;
	font-size: 3em;
//	border: blue solid 1px;
	}
	
	}