@charset "utf-8"; 
/*====================================
STYLE.CSS
=====================================*/
/*
Author:Alexia NISI
Version : 1.0
Date : 14/12/2011
*/
/*====================================
RESET
=====================================*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block; zoom:1;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}


ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}


mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* =============================================================================
   HTML5 element display
   ========================================================================== */

/*
 * Add display for block-level HTML5 elements
 * Addresses display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

/*
 * Add display for embedded HTML5 elements
 * Addresses display not defined in IE6/7/8/9 & FF3
 */

audio[controls],
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Add font size
 *    Addresses text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Add vertical scrollbar
 *    Keeps page centred in all browsers regardless of content height
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Remove iOS text size adjust without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
	/* 1 */
    /* font-size: 100%;  */
	/* 2 */
    /* overflow-y: scroll;  */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 3 */
    -webkit-text-size-adjust: 100%; /* 4 */
    -ms-text-size-adjust: 100%; /* 4 */
}

/*
 * Remove margin
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
}

/* 
 * Define base font-family
 * Addresses font-family inconsistency between <textarea> and other form elements.
 */

body,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * 1. Remove border
 *    Improves readability when inside <a> element in all browsers
 * 2. Allow high quality bicubic image resampling
 *    Improves readability when scaled in IE7
 *    Read before using : code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}




/* =============================================================================
   Forms
   ========================================================================== */
/*
 * 1. Define font-size as equal to ancestor's
 * 2. Remove margin
 *    Fixes different margins set in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * 1. Define line-height as normal
 *    Addresses FF3/4 setting it using !important in the UA stylesheet
 * 2. Make overflow visible
 *    Fixes spacing displayed oddly in IE6/7
 */

button,
input {
    line-height: normal; /* 1 */
    *overflow: visible;  /* 2 */
}

/*
 * 1. Display hand cursor for clickable form elements
 *    Improves usability and consistency of cursor style between image-type <input> and others
 * 2. Define appearance for clickable form elements
 *    Fixes inability to style clickable <input> types in iOS
 */

button,
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
}

/*
 * Define box sizing
 * Addresses box sizing set to content-box in IE8/9
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
}

/*
 * Define box sizing and appearance
 * Addresses box sizing set to border-box in S5 Chrome (include -moz to future-proof)
 * Addresses appearance set to searchfield in S5 Chrome
 */

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/*
 * Remove WebKit search decoration
 * Addresses inner padding displaying oddly in S5 Chrome on OSX
 */

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Remove inner padding and border 
 * Fixes appearance displayed oddly in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Remove default vertical scrollbar
 *    Fixes scrollbar displayed oddly in IE6/7/8/9
 * 2. Add top vertical alignment
 *    Improves readability and aligment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

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

}

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

}

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

/* -------------------------------------
Base -> partially inspired by Christophe Zlobinsky Furmaniak @So Studio. 
------------------------------------- */
html {
font-size: 70%;
/* Puisque la taille par défaut des navigateurs est de 16px, nous réduisons la taille à 10px, de manière à simplifier les calculs relatifs (10px = 1rem, 12px = 1.2rem, 14px = 1.4rem, etc) */
background-color: #111111;
-webkit-background-size: cover;
/* Safari/Chrome*/
-moz-background-size: cover;
/* Firefox */
-o-background-size: cover;
/* Opera */
background-size: cover;
/* Official Syntax */
}

body {
font-size: 100%;
text-rendering: optimizeLegibility;
/* Optimisation de la lisibilité, universel*/
-webkit-font-smoothing: antialiased;
/* Optimisation de la lisibilité, Webkit */
text-shadow: 0 0 1px transparent;
/* Anti-aliasing */
font-weight: normal;
font-style: normal;
color: #1a1a1a;
border-top: 6px solid #981b1f;
font-family: 'ITCSouvenirStdLight';
}

div {
	font-size: 1em;
}

.wrapper {
margin: 0 auto;
max-width: 960px;
width: 100%;
}
/* Supprime les cadres focus de Firefox */

a {
outline: none;
border: none;
text-decoration: none;
color: #6c9296;
font-family: 'ITCSouvenirStdLight';
}
:focus {
-moz-outline-style: none;
}

a:hover {
	color: #993e44;
}

.btn {
	display: block;
	margin-top: 6%;
	width: 100%;
}

.ariane a {
	font-size: 1.2em;
	margin-top: 4%;
}

.ariane {
	padding: 6% 6% 0 0;
}

.section .article h2 {
	font-variant: small-caps;
	font-size: 1.5em;
	font-family: 'LintelRegular';
}

.section .article p {
	font-size: 1.3em;
	font-family: 'ITCSouvenirStdLight';
}

.section a {
	font-size: 1.2em;
}

/* Header
----------------------------------------------------*/
#logo {
	margin-left: 28%;
	margin-top: -3%;
}

#perso {
	display: block;
	float: left;
	position: absolute;
	top: 0;
	z-index: -1;
}

/* Menu Header & Footer
----------------------------------------------------*/
#nav1 .navSec li {
	display: block;
	float: left;
	margin-left: 1em;
	margin-right: 1em;
	font-size: 1em;
	font-family: 'LintelRegular';	
}

#nav1 .navSec li a {
	display: inline-block;
	text-decoration: none;
	color: #a2a2a2;
}

#nav1 .navSec li a:hover {
	color: #fff;
}

.navSec .actif {
	color: #fff;
	padding-bottom: 10px;
	border-bottom: solid 1px #b31b24;
}

.navSec .inactif {
	color: #2f2d2d;
	cursor: default;
}

#nav1 .navSec, .navSec {
	display: block;
	float: right;
	padding: 2%;
	margin-bottom: 1%;
}

h1, h2, h3, h4, h5, h6 {
		font-family: 'LintelRegular';
}

h1 {
	color: #9d958d;
	font-size: 1.8em;
	font-variant: small-caps;
	margin-top: 2%;
	margin-bottom: 1%;
	font-family: 'LintelRegular';
}

a, p {
	font-family: 'ITCSouvenirStdLight';
}

p {
	color: #9d958d;
	margin-top: 2%;
	font-size: 1.2em;
	line-height: 1.1em;
}

/* ------------------------------------------------
FOOTER
----------------------------------------------------*/

#footer ul, .navSec ul{
    list-style:none;
}

#footer li {
	display: inline;
	margin: 1em;
	font-family: 'LintelRegular';	
}

.navSec li a {
	display: inline-block;
	text-decoration: none;
	color: #a2a2a2;
}

#footer li a {
	display: block;
	float: left;
	padding: 8px;
}

#footer li a:hover, .navSec li a:hover {
	color: #fff;
}

#footer {
	display: block;
	float: right;
	padding: 2%;
	/*margin-top: 8%;*/
}


/* Menu Header & Footer 2eme niveau */
.navSec {
	display: block;
	float: right;
}

#nav1 .navSec .niveau1 li {
	clear: both;
	background-color: #d4d2d2;
	width: 160px;
	margin-left: 0;
}

#nav1 .navSec li .niveau1 li a {
	margin: 1em;
	color: #090909;
}

#nav1 .navSec li .niveau1 {
	display: none;
	position: absolute;
}

#nav1 .navSec li:hover ul.niveau1 {
	display: block;
}

.navSec li:hover a {
	color: #A2A2A2;
}

.navSec li a {
}

#nav1 .navSec .niveau1 li:hover {
	background-color: #9d958d;
}



/* Menu déroulant Principal
----------------------------------------------------*/
#nav {
	display: block;
	float: right;
	line-height: 3em;
	font-size: 1.2em;
}

#nav2 #nav li {
	display: block;
	float: left;
	position: relative;
	background-color: #111111;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

#nav2 #nav li:hover {
	background-color: #993e44;
	color: #A2A2A2;
}

#nav2 #nav li .niveau1 li {
	clear: both;
	background-color: #d4d2d2;
	width: 280px;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

#nav2 #nav li .niveau1 li a {
	margin: 1em;
	color: #090909;
}

#nav2 #nav ul {
	display: none;
	position: absolute;
}

#nav2 #nav li:hover ul.niveau1 {
	display: block;
}

#nav2 #nav li:hover a {
	color: #A2A2A2;
}

#nav2 #nav li a {
	margin: 1em;
	color: #993e44;
	-webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

#nav2 #nav li .niveau1 li:hover {
	background-color: #9d958d;
}

#nav2 #nav li .niveau1 li:hover a {
	font-weight: 500;
}

#nav {
	position: relative;
	z-index: 1;
	/*visibility: hidden;*/
}

/* Page accueil attente
---------------------------------------------------*/

#speciale {
	width: 100%;
	margin : 0 auto;
	margin-top: 10%;
}

#speciale h1 {
	color: #9d958d;
	font-size: 1.4em;
	font-variant: small-caps;
	text-align: center;
	margin-bottom: 5%;
}

#speciale p {
	color: #757575;
	text-align: center;
	font-size: 1.5em;
	margin-bottom: 1%;
}

#speciale a {
	display: block;
	color: #6c9296;
	font-size: 1.1em;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 4%;
}

#speciale a:hover {
	color: #993e44;
}

#speciale a:visited {
	color: #045665
}


/* Page accueil
---------------------------------------------------*/
.encarts {
	width:960px;
	height: 500px;
	background-image: url("../img/rayure.png");
	background-repeat: repeat;
	margin-top: 6%;
}

.blocs {
	margin-top: 1.2%;
	width: 618px;
	float: left;
	
}

.blocs li:hover {
	opacity: 1;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.blocs ul > li {
	display: block;
	float: left;
	margin-bottom: 1.6%;
	margin-left: 1.6%;
	opacity: 0.7;
}

.flex-container ul.slides > li {
	margin-bottom: 0;
}

.blocs .part {
	margin-bottom: 0;
}

.blocs .horaires {
	background-image: url("../img/bloc1.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height: 131px;
}

.blocs .breves {
	background-image: url("../img/bloc2.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height: 131px;
}

.blocs .boutique {
	background-image: url("../img/bloc3.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height: 131px;
}

.blocs .webtv {
	background-image: url("../img/bloc4.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height:197px;
}

.blocs .bandesa {
	background-image: url("../img/bloc5.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height:197px;
}

.blocs .festimages {
	background-image: url("../img/bloc6.jpg");
	background-repeat: no-repeat;
	width: 195px;
	height:197px;
}

.blocs .part {
	background-image: url("../img/blocpart.jpg");
	background-repeat: no-repeat;
	width: 399px;
	height: 130px;
	opacity: 1;
	padding-top: 10px;  /* placement du slider */
}


.blocs .blocfb {
	background-image: url("../img/blocfb.jpg");
	background-repeat: no-repeat;
	width: 196px;
	height: 130px;
	opacity: 1;
}

.agenda {
	width: 340px;
	height: 478px;
	background-image: url("../img/blocagenda.jpg");
	background-repeat: no-repeat;
	float: right;
	margin-top: 1.2%;
	width: 335px;
}

.blocs h1 {
	text-align: center;
	font-size: 2.5em;
	margin-top: 1%;
	text-shadow : 2px 2px 2px #000;
	padding: 12%;
	font-weight: lighter;
	color: #CBCAC5;
	font-family: Helvetica, Arial, sans-serif;
}

.blocs h2 {
	padding: 0;
	margin-top: 13%;
	text-shadow : 2px 2px 2px #000;
	font-size: 2.2em;
	font-weight: lighter;
	color: #CBCAC5;
	font-family: Helvetica, Arial, sans-serif;
}

.blocs p {
	margin-left: 9%;
	margin-right: 9%;
}

.blocfb p {
	padding: 6%;
	text-align: center;
}

.blocfb img {
	margin-left: 38%;
}

.webtv h2, .bandesa h2, .festimages h2 {
	margin-top: 56%;
	font-size: 2em;
	padding: 15%;
}

.webtv h2 {
	margin-top: 67%;
}

.blocs .btn {
	display: block;
	margin-left: 52%;
}

.boutique .btn {
	display: block;
	margin-left: 65%;
	margin-top: 52%;
}

#films {
	overflow: auto;
	height: 350px;
	width: 300px;
}

/* AGENDA */

.agenda h1 {
	color: #b29d77;
	font-size: 2.7em;
	padding: 5%;
	text-align: center;
	font-weight: lighter;
	font-family: Helvetica, Arial, sans-serif;
}

.agenda h3 {
	color: #cbcac5;
	font-size: 1.3em;
	font-variant: normal;
	font-weight: lighter;
	font-family: Helvetica, Arial, sans-serif;
}

.agenda p {
	margin-top: 0;
	color: #993e44;
	font-weight: lighter;
	font-size: 1.3em;
	font-family: Helvetica, Arial, sans-serif;
}

.agenda .pictof {
	padding: 6%;
	display: block;
	float: left;
	width: 47px;
	margin-top: 1%;
	margin-bottom: 8%;
}
	

.contenusa1 {
	padding: 10%;
	padding-right: 16%;
}

.traita {
	box-shadow: 2px 2px 22px #121212;
	margin: 2%;
}

/* Header
----------------------------------------------------*/
#logo {
	margin-left: 28%;
	width: 50%
	max-width: 600px;
}


/* Slider
----------------------------------------------------*/
.slides img {
	max-width: 100%; 
	margin: 0 auto; 
	display: block;
	max-height: 30%;
} 

#slider_wrap{
	margin-top: 4.2%;
	z-index: -1;
}






/* ------------------------------------------------
PRESSE
----------------------------------------------------*/

.wrapfond2 {
	background-color: #c8c5c5;
	overflow: hidden;
	padding: 1.5%;
	background-image: -moz-linear-gradient(center bottom, #262626 11%, #242424 56%);  
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.11, #262626), color-stop(0.56, #242424));  
    -moz-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    -webkit-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;
    border: 10px #202e34 solid;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 4%;
	margin-top: 0.5%;
}


#entete .article {
	display: block;
	width: 30%;
	float: left;
	padding top: 2%;
	margin: 1.6%;
}

#entete .article h2 {
	color: #9d958d;
	width: 80%;
	float: right;
	padding-right: 6%;
}

#entete .article p {
	color: #9b9898;
	padding-right: 6%;
	margin-top: 5%;
	padding-bottom: 4%;
	width: 100%;
}

#entete img {
	display: inline;
}

#presse .articlep {
	display: block;
	width: 48%;
	float: left;
}

#presse .article:last-child {
	display: block;
	width: 48%;
	float: right;
}

#presse h1 {
	color: #9d958d;
	font-size: 2em;
	font-variant: small-caps;
	margin-bottom: 5%;
}

#presse p {
	color: #757575;
	margin-bottom: 4%;	
	font-variant: small-caps;
	font-size: 1.4em;
	font-family: 'LintelRegular';
}

.trait {
	width: 90%;
	padding: 5%;
}

.traitA {
	width: 100%;
	padding-top:1%;
}

#dossier h1, #accred h1, #visuel h1 {
	color: #9d958d;
	font-size: 2em;
	text-align: center;
	font-variant: small-caps;
	margin-bottom: 5%;
	margin-top: 5%;
}

#dossier h2, #accred h2, #visuel h2 {
	color: #9d958d;
	font-size: 1.8em;
	text-align: center;
	font-variant: small-caps;
	margin-bottom: 3%;
	margin-top: 3%;
}


#dossier p, #visuel p {
	color: #757575;
	margin-bottom: 2%;
	text-align: center;
	font-size: 1.4em;
	font-family: 'ITCSouvenirStdLight';
}

#accred p {
	text-align: left;
}

#dossier .btn, #accred .btn, #visuel .btn {
	width: 100%;
	text-align: center;
	margin-bottom: 7%;
	margin-top: 0;
}

.zoomboxP {
	float: right;
	width: 40%;
}


.zoomboxP span {
	display: block;
	margin: 10%;
}

.zoomboxP span a {
	margin-bottom: 2%;
}

.zoomboxP span img {
	padding-right: 6%;
}

#third {
	float: left;
}

/* ------------------------------------------------
FORMULAIRE DE CONTACT
----------------------------------------------------*/

.wrapform {
	background-color: #131313;
	padding: 2%;
	overflow: hidden;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background-image: -moz-linear-gradient(center bottom, #262626 11%, #242424 56%);  
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.11, #262626), color-stop(0.56, #242424));  
    -moz-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    -webkit-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;
    border: 10px #202e34 solid;
    margin-top: 1%;
}

/*.wrapform2 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}*/

form {
	width: 42%;
	float: left;
	margin-left: 12%;
}

.blue {
	color: #993e44;
	font-weight: bold;
}

/* Congratulation message */
.MsgSent {
	Display: block;
	padding: 2%;
	margin: 10% auto;
	width: 25%;
	text-align: center;
	border: 1px solid #EEE;
	background-color: #ececec;
}

.MsgSent h1 {
	font-size: 1.8em;
}

.MsgSent a {
	margin-top: 5%;
	color: #6c9296;
}

.MsgSent a:hover {
	color: #993e44;
}

/* Error message */
.MsgError {
	Display: block;
	padding: 10px;
	margin: 40px auto;
	width: 400px;
	text-align: center;
	border: 1px solid #EEE;
	background-color: white;
}

.MsgError h1 {
	background: url(../images/MsgError.gif) no-repeat 0 0;
	padding-left: 20px;
	height: 85px;
	line-height: 85px;
	color: #CC0000;
}

.MsgSent p, .MsgError p {
	font-size: 1.3em;
	color:#999;
}

/***** FormCheck *****/
.tipsbox .tipsbox_top_left{
	background : url('../images/top_left.png') no-repeat;
	_background : url('../images/top_left.gif') no-repeat;
	_background-position : 9px 8px;
}

.tipsbox .tipsbox_top{
	background : url('../images/top.png') repeat-x;
	height : 17px;
	_background : url('../images/top.gif') repeat-x;
	_background-position : 0px 8px;
}

.tipsbox .tipsbox_top_right{
	background : url('../images/top_right.png') no-repeat;
	_background : url('../images/top_right.gif') no-repeat;
	_background-position : 0px 8px;
}

.tipsbox .tipsbox_left{
	background : url('../images/left.png') repeat-y;
	width : 17px;
	_background : url('../images/side.gif') repeat-y;
	_background-position : 9px 8px;
}

.tipsbox .tipsbox_right{
	background : url('../images/right.png') repeat-y;
	width : 22px;
	_background : url('../images/side.gif') repeat-y;
	_width : 9px;
}

.tipsbox .tipsbox_bottom_left{
	background : url('../images/bottom_left.png');
	_background : url('../images/bottom_left.gif') no-repeat;
	_background-position : 9px 0px;
}

.tipsbox .tipsbox_mark{
	background : url('../images/mark.png') no-repeat;
	height : 36px;
	_background : url('../images/mark.gif') no-repeat;
}

.tipsbox .tipsbox_bottom_right{
	background : url('../images/bottom_right.png');
	_background : url('../images/bottom_right.gif') no-repeat;
}

.tipsbox .tipsbox_inner, .tipsbox .tipsbox_inner_ie6{
	background : url('../images/inner.png');
}

.tipsbox .tipsbox_inner_ie6 {
	padding : 4px;
}

.tipsbox .tipsbox_error {
	background : url('../images/error.png') no-repeat;
	_background : url('../images/error.gif') no-repeat;
	width: 40px;
	height: 40px;
	margin-top: 5px;
	float: left;
	clear: left;
}

.tipsbox p, .tipsbox {
	font-size: 1em;
	margin : 0;
	padding : 0;
	border : 0;
	color : #FFF;
	font-family: tahoma, verdana, "sans-serif";
}

.tipsbox p {
	padding-left: 55px;
	line-height: 15px;
}

.tipsbox p span {
	font-size: 1em;
	font-weight: bold;
	color: red;
	line-height: 35px;
}


.error_f {
	border : 1px dotted #666;
	margin-top : 5px;
	background-color : #EAEAEA;
}

.error_f p {
	margin : 5px;
	color : #A00;
}

.error_f p span {
	font-size : 1.1em;
	color : #000;
	margin : 5px 0px 0px 0px;
}


/*Forms defaults - change as needed*/
input, textarea {
	font-size:1.2em;
	color:#000;
	width: 80%;
	margin-bottom: 1%;	
	float: left;
	background-image: -moz-linear-gradient(center bottom, #999999 11%, #999999 56%);  
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.11, #999999), color-stop(0.56, #999999));  
    -moz-box-shadow: 0 0 20px #121212 inset;  
    -webkit-box-shadow: 0 0 20px #121212 inset;  
    box-shadow: 0 0 20px #121212 inset;
    border: 2px solid #9D958D;
    font-family: 'LintelRegular';

}

textarea {
	max-height: 250px;
}

label {
	color:#9d958d;
	cursor:pointer;
	padding-left:2px;
	line-height:16px;
	width: 20%;
	display: block;
	margin-top: 7%;
}

.spamcheck {
	margin-top: 40%;
}

label.chosen {color:#333;}

/*Transparent items*/
.outtaHere {
	position:absolute;
	left:-3000px;
}

/*Radio buttons*/
.radioArea, .radioAreaChecked {
	display:block;
	float:left;
	clear:left;
	width:15px;
	height:14px;
	font-size:0;
	cursor:pointer;
}
.radioArea {background:url(../images/radio.gif) no-repeat left top;}
.radioAreaChecked {background:url(../images/radio.gif) no-repeat left bottom;}

/*Checkboxes*/
.checkboxArea, .checkboxAreaChecked {
	display:block;
	float:left;
	clear:left;
	width:13px;
	height:13px;
	font-size:0;
	padding:0;
	margin:0;
	cursor:pointer;
}
.checkboxArea {background:url(../images/checkbox.gif) no-repeat left top;}
.checkboxAreaChecked {background:url(../images/checkbox.gif) no-repeat left bottom;}
.focused {border:1px dotted #ddd;}

/*Text inputs*/
.textinput, .textinputHovered {
	height:15px;
	background:url(../images/input_bg.gif) repeat-x left top;
	border:none;
	padding:4px 0;
	vertical-align:middle;
}
.textinputHovered {background-position:left bottom;}
.inputCorner {
	padding-bottom:0;
	vertical-align:middle;
}

/*Text areas*/
.txtarea .tr, .txtarea .tr_xon {background:url(../images/txtarea_tr.gif) no-repeat top right;}
.txtarea .tr_xon {background:url(../images/txtarea_tr_xon.gif) no-repeat top right;}
.txtarea img.txt_corner {
	width:5px;
	height:5px;
	display:block;
}
.txtarea .br, .txtarea .br_xon {background:url(../images/txtarea_br.gif) no-repeat top right;}
.txtarea .br_xon {background:url(../images/txtarea_br_xon.gif) no-repeat top right;}
.txtarea .cntr {background:url(../images/txtarea_cntr.gif) repeat-y right top;}
.txtarea .cntr_xon {background:url(../images/txtarea_cntr_xon.gif) repeat-y right top;}
.txtarea .cntr_l, .txtarea .cntr_l_xon {
	width:5px;
	background:url(../images/txtarea_l.gif) repeat-y left top;
	float:left;
}
.txtarea .cntr_l_xon {background:url(../images/txtarea_l_xon.gif) repeat-y left top;}
.txtarea textarea {
	border:0;
	background:none;
	padding:0;
	margin:5px;
}

/*Selects*/
.selectArea {
	width:200px;
	height:21px;
	background:url(../images/select_bg.gif) repeat-x left top;
}
.selectArea .left {
	width:8px;
	height:21px;
	float:left;
	background:url(../images/select_left.gif) no-repeat left top;
}
.selectArea .right {
	width:21px;
	height:21px;
	float:right;
	background:url(../images/select_right.gif) no-repeat left top;
}
.selectArea .right a {
	display:block;
	width:200px;
	height:21px;
	margin-left:-179px;
	position:absolute;
}
.selectArea .right i {display:none;}
.selectArea .center {
	width:160px;
	color:#FFF;
	padding-top:3px;
	overflow:hidden;
	white-space:nowrap;
}

/*Selects drop-down*/
.optionsDivInvisible, .optionsDivVisible {
	position:absolute;
	margin-top:-1px;
	margin-left:3px;
	width:172px;
	background:#6f7074;
	padding:2px;
	font-size:11px;
	z-index:20;
}
.optionsDivInvisible {display:none;}
.optionsDivVisible {display:block;}
.optionsDivVisible p {
	margin:0;
	padding:0;
}
.optionsDivVisible a {
	color:#F2F2F2;
	text-decoration:none;
	display:block;
	padding:1px 4px;
	border:1px solid #6f7074;
}
.optionsDivVisible a:hover {
	color:#FFF;
	background:#5F6062;
	border-color:#cfd0d6;
}

/*Button*/
.buttonSubmit, .buttonSubmitHovered {
	max-width: 150px;
	max-height: 36px;
	width: 100%;
	height: 100%;
	font-weight:bold;
	padding:0.8%;
	background:url(../img/btnform.png);
	cursor:pointer;
	border:none;
	float: right;
	margin-right: 39%;
	margin-top: 2%;
	font-size: 1.2em;
	color: #lelele;
	font-family: 'ITCSouvenirStdLight';
}
.buttonSubmitHovered {background-position:left bottom;}
.buttonImg {vertical-align:bottom;}


/*
Aside adresse
-----------------------------------------------------------*/

.wrapform .aside, #asidew {
	width: 27.50%;
	padding: 2%;
	overflow: hidden;
	margin-left: 59%;
	margin-top: 4%;
}

.wrapform .aside span, #asidew span {
	color: #993e44;
	display: block;
	float: left;
	width: 25%;
	padding: 1% 1% 3%;
}

.wrapform .aside p, #asidew p {
	padding: 2% 2% 8%;
	font-size: 1.2em;
}

.wrapform .aside h2, #asidew h2 {
	padding: 8%;
	text-align: center;
	color: #9d958d;
	font-size: 1.3em;
}

.wrapform h1 {
	font-size: 1.5em;
	margin: 1%;
	margin-left: 12%;
	color: #9d958d;
}

.wrapform h1:before{
	content: url(../img/contact.png);
}

.wrapform tr td p {
	color: #fff;
}

.wrapform .aside span, #asidew span {
	font-size: 1.2em;
}


/* ------------------------------------------------
MAP
----------------------------------------------------*/

#map {
	width:100%;
	margin:0 auto;
	height:400px;
}

.map {
	width:100%;
	margin:0 auto;
	height:400px;
}


#ajax {
	clear:left;
	margin-top:10px;
}


#messagem { position:absolute; padding:10px; background:#555; color:#fff; width:75px; }
#list { float:left; width:200px; background:#eee; list-style:none; padding:0; }
#list li { padding:10px; }
#list li:hover { background:#555; color:#fff; cursor:pointer; cursor:hand; }


/* ------------------------------------------------
mignatures jury
----------------------------------------------------*/

.imageG {
	width: 212px;
	height: 304px;
	background-color: #c2c2c2;
	background-image: url(../img/bilal.jpg);
}

.imageP1 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/citti.jpg);
	margin-top: -11px;
}
.imageP2 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/desagnat.jpg);
	margin-top: -11px;
}
.imageP3 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/drukarova.jpg);
	margin-top: -11px;
}
.imageP4 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/marshall.jpg);
	margin-top: -11px;
}
.imageP5 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/merlet.jpg);
	margin-top: -11px;
}
.imageP6 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/sfar.jpg);
	margin-top: -11px;
}
.imageP7 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/sisley.jpg);
	margin-top: -11px;
}


/* Jury court */

.cimageG {
	width: 212px;
	height: 304px;
	background-color: #c2c2c2;
	background-image: url(../img/rauger.jpg);
}

.cimageP1 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/demeaux.jpg);
	margin-top: -11px;
}
.cimageP2 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/dupont.jpg);
	margin-top: -11px;
}
.cimageP3 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/monot.jpg);
	margin-top: -11px;
}
.cimageP4 {
	width: 154px;
	height: 221px;
	background-color: #c2c2c2;
	background-image: url(../img/renier.jpg);
	margin-top: -11px;
}


#blocgrand {
	width: 211px;
	height: 362px;
	padding: 1%;
	background-color: #e8e8e8;
	overflow: hidden;
	float: left;
	-webkit-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-p-transition: all 0.25s ease-out 0s;
	transition: all 0.25s ease-out 0s;
	opacity: 1;
}

#blocgrand:hover {
	background-color: #fff;
	-moz-box-shadow: 0px 0px 1px 4px #ffffff;
	-webkit-box-shadow: 0px 0px 1px 4px #ffffff;
	-o-box-shadow: 0px 0px 1px 4px #ffffff;
	box-shadow: 0px 0px 1px 4px #ffffff;
}

#blocgrand h4 {
	position: absolute;
	top: 681px;
	/*left: 28.8%;*/   //bug à regler : padding ?
	margin-left: 0.3em;
	padding: 0.4%;
	background-color: #044450;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 1.8em;
	color: #fff;
	-moz-box-shadow: -1px 1px 5px 0px #000;
	-webkit-box-shadow: -1px 1px 5px 0px #000;
	-o-box-shadow: -1px 1px 5px 0px #000;
	box-shadow: -1px 1px 5px 0px #000;
	font-family: Helvetica, Arial, sans-serif;
}

#blocgrand p {
	font-size: 1.4em;
}

#blocgrand a {
	display: bloc;
	float: right;
	font-size: 1.3em;
	margin-top: 1.8%;
}

/*#blocspetits {
	float: right;
	width: 78%;
}*/

.blocpetit {
	width: 153px;
	height: 284px;
	padding: 1%;
	background-color: #e8e8e8;
	overflow: hidden;
	float: left;
	margin-left: 1%;
	margin-bottom: 1%;
	line-height: 103%;
	-webkit-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-p-transition: all 0.25s ease-out 0s;
	transition: all 0.25s ease-out 0s;
	opacity: 1;
}

/*#blocspetits:hover .blocpetit{
	opacity: 0.5;
}*/

.blocpetit:hover {
	opacity: 1;
	background-color: #fff;
	-moz-box-shadow: 0px 0px 1px 4px #ffffff;
	-webkit-box-shadow: 0px 0px 1px 4px #ffffff;
	-o-box-shadow: 0px 0px 1px 4px #ffffff;
	box-shadow: 0px 0px 1px 4px #ffffff;
}

.blocpetit h4 {
	position: absolute;
	top: 608px;
	margin-left: -0.6%;
	padding: 0.4%;
	background-color: #044450;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	-moz-box-shadow: -1px 1px 5px 0px #000;
	-webkit-box-shadow: -1px 1px 5px 0px #000;
	-o-box-shadow: -1px 1px 5px 0px #000;
	box-shadow: -1px 1px 5px 0px #000;
	font-family: Helvetica, Arial, sans-serif;
}

.blocpetit .l2 {
	top:921px;
}

.blocpetit p {
	font-size: 1.3em;
}

.blocpetit a {
	display: bloc;
	float: right;
	font-size: 1.2em;
	margin-top: 3%;
}

.textegauche {
	float: left;
	padding-right: 4%;
	margin-bottom: 8%;
}

#zoombox h1 {
	text-align: center;
	font-size: 4em;
	margin-top: 0;
	color: #b31b24;
}

#zoombox h2 {
	margin-bottom: 7%;
	font-size: 1.6em;
	color: ##2F2D2D;
}

#zoombox h3 {
	color: #9d958d;
	font-variant: small-caps;
	font-size: 1.5em;
	padding: 2%;
	color: #0b525f;
}

#zoombox p {
	font-size: 1.3em;
	color: #524e49;
}

#zoombox blockquote {
	font-weight: bold;
	font-size: 2.3em;
	font-variant: italic;
	margin-top: 8%;
	margin-bottom: 7%;
}

#zoombox span {
	margin-right: 2%;
	margin-left: 5%;
	font-weight: bold;
}

#zoombox li {
	text-decoration: none;
	list-style-type: none;
	font-size: 1.2em;
	padding: 0.2%;
	color: #524e49;	
}

#zoombox ul {
	margin-bottom: 2%;
}

#fichejury img {
	margin-bottom: 2%;
	margin-left: 6%;
}

/* ------------------------------------------------
tarifs
----------------------------------------------------*/

h2 {
	color: #9d958d;
	font-size: 1.7em;
	font-variant: small-caps;
	text-align: center;
	margin-bottom: 5%;
}

#tarifs {
	margin-top: 2%;
}

#tarifs th {
	background-color: #9d958d;
	padding: 2%;
	padding-right: 15px;
	text-align: left;
	font-size: 1.2em;
	font-variant: small-caps;
}

#tarifs tr {
	background-color: #c9c9c9;
}

#tarifs td {
	padding: 2%;
	padding-left: 15px;
	font-size: 1.1em;
	font-family: Helvetica, Arial, sans-serif;
}

#tableau .btn {
	font-size: 1.2em;
	text-align : right;
	margin-top: 2%;
}

.tarif {
	text-align: left;
	padding-right: 3%;
}

#tarifs tr.mev {
	background-color: #e8e8e8;
}

#conditions li {
	list-style: none;
	font-size:1.2em;
	color: #a2a2a2;
	margin-left: 5%;
	font-family: Helvetica, Arial, sans-serif;
}

#conditions p, #tableau p {
	color: #A2A2A2;
	font-size: 1.2em;
	margin-top: 2%;
	font-family: Helvetica, Arial, sans-serif;
}

#conditions em {
	font-weight: bold;
	color: #993E44;
	font-style: normal;
}

#conditions ul {
	margin-top: 2%;
}

#conditions span {
	color: #fff;
	border: 1px white solid;
	padding: 0.1%;
}


/* ------------------------------------------------
HORAIRES DES SEANCES
----------------------------------------------------*/

#tableauxprog {
	margin-top: 5%;
}

/*.tabhoraires2 {
	position: relative;
	left: 550px;
	top: -275px;
}*/

.tabhoraires1 th, .tabhoraires2 th, .tabhoraires3 th, .tabhoraires4 th {
	background-color: #9d958d;
	padding: 2%;
	text-align: left;
	font-size: 1.2em;
	font-variant: small-caps;
}

.tabhoraires1 td, .tabhoraires2 td, .tabhoraires3 td, .tabhoraires4 td {
	padding: 2%;
	font-size: 1.1em;
	font-family: Helvetica, Arial, sans-serif;
}

.tabhoraires1 tr, .tabhoraires2 tr, .tabhoraires3 tr, .tabhoraires4 tr {
	background-color: #c9c9c9;
}

.tabhoraires1 tr.mev, .tabhoraires2 tr.mev, .tabhoraires3 tr.mev, .tabhoraires4 tr.mev {
	background-color: #e8e8e8;
}

.tabhoraires1 .heure, .tabhoraires2 .heure, .tabhoraires3 .heure, .tabhoraires4 .heure {
	font-family: 'ITCSouvenirStdDemi';
}

.nomfilmc, .etatc {
	color: #993E44;
}

.nomfilm, .nomfilmc {
	font-weight: bold;
}

.nomfilm em, .nomfilmc em {
	font-weight: normal;
}

#nav3 ul {
	margin-left: 90px;
}

#nav3 li {
	display: block;
	float: left;
	position: relative;
	list-style: none;
	padding: 2%;
	background-color: #044450;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	width: 120px;
	text-align: center;
	-moz-box-shadow: -1px 1px 5px 0px #000;
	-webkit-box-shadow: -1px 1px 5px 0px #000;
	-o-box-shadow: -1px 1px 5px 0px #000;
	box-shadow: -1px 1px 5px 0px #000;
	font-family: Helvetica, Arial, sans-serif;
}

#nav3 li a {
	color: #fff;
}

#nav3 li a:hover {
	color: #993E44;
}

.tablrepart {
	float: left;
	width: 400px;
}

.progHoraires h1 {
	text-align: center;
	margin-bottom: 5%;
	background-color: #766e66;
	width: 960px;
	color: #cccccc;
	padding-top: 1%;
	padding-bottom: 1%;
	text-shadow: 2px 2px 2px #000;
}

.progHoraires h2 {
	text-align: center;
	margin: 0;
	color: #000;
	background-color: #9D958D;
	width: 400px;
	padding-top: 1%;
	padding-bottom: 1%;
}

#opt2, #opt3, #opt4, #opt5 {
	display: none;
}

#opt1 {
	display: block;
}

.tabhoraires1, .tabhoraires2, .tabhoraires3 {
	float: left;
	width: 40%;
	height: 40%;
}

#liens a {	
	text-align: right;
	font-size: 1.1em;
	text-align: right;
	margin-top: 0;
}

#liens {
	margin-top: 9%;
	margin-bottom: 2%;
}

/* ------------------------------------------------
infos pratiques
----------------------------------------------------*/

#office {
	margin-top: 3%;
}

#office a {
	font-size: 1.2em;
}

#office h2 {
	margin-top: 5%;
	margin-bottom: 2%;
	text-align: left;
}

.ville {
	padding-top: 2%;
}

#plans h1 {
	margin-top: 5%;
}

#plans {
	width: 50%;
	float: left;
}

#plans h2 {
	text-align: left;
	margin-top: 4%;
}

.plan {
	margin-top: 12%;
	margin-left: 2%;
}


/* ------------------------------------------------
ANIMATIONS
----------------------------------------------------*/

.animationsg {  //pour les pages ne possédant pas de photos
	width: 100%;
}

.animations {
	width: 65%;
	float: left;
	margin-bottom: 7%;
}

.animations h1, .animationsg h1, .credits h1, .actualitesMini h1, .actualitesPage h1 {
	margin-top: 8%;
	margin-bottom: 2%;
}

.animations h3, .animationsg h3, .credits h3, .actualitesMini h3, .actualitesPage h3 {
	margin-top: 5%;
	text-align: left;
	font-size: 1.5em;
	color: #9d958d;
	font-variant: small-caps;
}

.animations h2, .animationsg h2, .credits h2, .actualitesMini h2, .actualitesPage h2 {
	margin-top: 2%;
	text-align: left;
	font-size: 1.5em;
}

.animations h5, .animationsg h5, .credits h5, .actualitesMini h5, .actualitesPage h5 {
	color: #A2A2A2;
	font-size: 1.3em;
}

.animations h4, .animationsg h4, .credits h4, .actualitesMini h4, .actualitesPage h4 {
	color: #A2A2A2;
	font-size: 1.3em;
}

.animations em, .animationsg em, .credits em, .actualitesMini em, .actualitesPage em {
	font-weight: bold;
	color: #993E44;
}

.animations p, .animationsg p, .credits p, .actualitesMini p, .actualitesPage p {
	color: #A2A2A2;
	margin-top: 2%;
	font-size: 1.3em;
	line-height: 1.1em;
	font-family: Helvetica, Arial, sans-serif;
}

.animations ul li, .animationsg ul li, .credits ul li {
	list-style: none;
	font-size: 1.3em;
	color: #A2A2A2;
	padding: 0.2%;
	font-family: Helvetica, Arial, sans-serif;
}

.animationsg ul {
	margin-top: 2%;
}
	
.animationsg span {
	font-weight: bold;
	margin-left: 5%;
	margin-right: 2%;
}

#imagesa img {
	margin-top: 32%;
	display: block;
}

#imagesa {
	float: right;
}



/* ------------------------------------------------
ACTUALITES
----------------------------------------------------*/


.imageresume {
	width: 295px;
	height: 200px;
	float: left;
	background-image: url('../img/rayure.png');
}

.imageresume img {
	display: block;
	margin: 0 auto;
	margin-top: 10px;
}

.resume {
	width: 610px;
	float: right;
}

.resume .btn {
	text-align: right;
	font-size: 1.2em;
}

.actualitesMini {
	padding: 2%;
	margin-top: 6%;
	margin-bottom: 6%;
	width: 940px;
	height: 210px;
	background-color: #cfcfcf;
	border: 10px solid #202E34;
	background-image: -moz-linear-gradient(center bottom, #262626 11%, #242424 56%);  
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.11, #262626), color-stop(0.56, #242424));  
    -moz-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    -webkit-box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;  
    box-shadow: 0 0 65px #121212 inset, 0 0 20px #121212 inset;
}

.actualitesMini h4 {
	position: absolute;
	margin-left: 750px;
	width: 140px;
	text-align: center;
	padding: 0.6%;
	background-color: #044450;
	box-shadow: -1px 1px 5px 0 #000000;
	color: #fff;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
}

.pagesNum {
	clear: both;
	margin-left: 730px;
	margin-top: 10%;
	margin-bottom: 4%;
}

.pagesNum a {
	text-align: right;
	background-color: #044450;
	padding: 5%;
	color: #fff;
	font-size: 1.2em;
}

.pagesNum a:hover {
	color: #993E44;
}


.actualitesPage h1 {
	font-size: 2.5em;
	margin-bottom: 5%;
}

.actualitesPage .actu {
	width: 410px;
	float: left;
	margin-left: 90px;
	margin-bottom: 100px;
}

#actuzardi {
	height: 1000px;
}

#actuzardi2 {
	height: 1300px;
}

#bilalactu {
	height: 750px;
}

#breveactu {
	height: 350px;
}

.imagedroite {
	float: right;
	margin-top: 110px;
}

/* couleur fond */
#fondc {
	background-color: #fff;
}


.actualitesPage {
	width: 100%;
	height: 550px;
	padding-top: 100px;
	background-color: #efefef;
}

.imagedroite img {
	display: block;
	margin-right: 50px;
}

.actualitesPage em {
	color: #232323;
	margin-top: 4px;
	line-height: 2.3em;
}

.actualitesPage .btn {
	font-size: 1.2em;
}

/* ------------------------------------------------
BOUTIQUE
----------------------------------------------------*/

.pboutique li {
	display: block;
	float: left;
	margin: 2%;
}

.pboutique h1, .bandesannonces h1 {
	margin-bottom: 1%;
}

.pboutique h4, .bandesannonces h4 {
	margin-bottom: 1%;
	color: #9D958D;
	font-size: 1.1em;
	text-align: right;
	font-family: Helvetica, Arial, sans-serif;
}

.pboutique > p, .bandesannonces > p {
	padding: 2%;
	background-color: #044450;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	width: 65%;
	text-align: center;
	margin-left: 280px;
	-moz-box-shadow: -1px 1px 5px 0px #000;
	-webkit-box-shadow: -1px 1px 5px 0px #000;
	-o-box-shadow: -1px 1px 5px 0px #000;
	box-shadow: -1px 1px 5px 0px #000;
	font-family: Helvetica, Arial, sans-serif;
}

.pboutique em, .bandesannonces em {
	font-variant: normal;
	color: #000;
	font-weight: lighter;
}

.pderives {
	width: 100%;
	height: 460px;
	margin-top: 9%;
}

.paffiches {
	width: 100%;
	height: 950px;
	margin-top: 9%;
}

/* ------------------------------------------------
WEBTV
----------------------------------------------------*/

.bafilms1, .bafilms2, .bafilms3, .bafilms4, .bafilms5, .bafilms6, .bafilms7, .bafilms8 {
	margin-top: 5%;
}

.bandesannonces li {
	float: left;
	margin: 2%;
	width: 200px;
	height: 135px;
	opacity: 0.7;
}

.bandesannonces li:hover {
	opacity: 1;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.bafilms1 {
	width: 100%;
	height: 620px;
}

.bafilms2 {
	width: 100%;
	height: 950px;
}

.bafilms3 {
	width: 100%;
	height: 250px;
}

.bafilms4 {
	width: 100%;
	height: 420px;
}

.bafilms5, .bafilms6 {
	width: 100%;
	height: 250px;
}

.bafilms7 {
	width: 100%;
	height: 600px;
}

.bafilms8 {
	width: 100%;
	height: 780px;
}

/* ------------------------------------------------
CREDITS
----------------------------------------------------*/

.credits {
	text-align: center;
}

.credits h1 {
	font-size: 2.2em;
}

.credits h2 {
	color: #993E44;
	font-variant: italic;
	margin-top: 6%;
	text-align: center;
}

.credits h3 {
	margin-top: 2%;
	text-align: center;
}

.credits h4 {
	text-decoration: underline;
	margin-top: 3%;
	margin-bottom: 1%;
	color: #9D958D;
}

.credits p {
	margin-top: 0;
}


/* ------------------------------------------------
MENTIONS LEGALES
----------------------------------------------------*/

#ment {
	margin-top: 5%;
}

#textesimple h1 {
	margin-top: 5%;
	color: #9D958D;
	font-size: 1.8em;
	font-variant: small-caps;
	font-family: 'LintelRegular';
}


#textesimple p {
	margin-bottom: 5%;
	font-size: 1.2em;
}

#textesimple h2 {
	margin-top: 5%;	
	font-size: 1.3em;
	color: #9D958D;
}


/* ------------------------------------------------
VIGNETTES FILM
----------------------------------------------------*/

.blocfilm {
	width: 288px;
	height: 284px;
	padding: 1%;
	background-color: #e8e8e8;
	overflow: hidden;
	float: left;
	margin-left: 1%;
	margin-bottom: 1%;
	line-height: 103%;
	-webkit-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-p-transition: all 0.25s ease-out 0s;
	transition: all 0.25s ease-out 0s;
	opacity: 1;
}

.blocfilm:hover {
	opacity: 1;
	background-color: #fff;
	-moz-box-shadow: 0px 0px 1px 4px #ffffff;
	-webkit-box-shadow: 0px 0px 1px 4px #ffffff;
	-o-box-shadow: 0px 0px 1px 4px #ffffff;
	box-shadow: 0px 0px 1px 4px #ffffff;
}

.blocfilm img {
	margin-bottom: 3%;
}

.blocfilm a {
	display: block;
	font-size: 1.2em;
	text-align: right;
	margin-top: 4%;
}

.blocfilm span {
	font-weight: bold;
	color: #7a7a7a;
}

.blocfilm h4 {
	position: absolute;
	top: 600px;
	margin-left: -15px;
	padding: 0.4%;
	background-color: #044450;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	-moz-box-shadow: -1px 1px 5px 0px #000;
	-webkit-box-shadow: -1px 1px 5px 0px #000;
	-o-box-shadow: -1px 1px 5px 0px #000;
	box-shadow: -1px 1px 5px 0px #000;
	font-family: Helvetica, Arial, sans-serif;
}

.blocfilm .l2 {
	top:912px;
}

.blocfilm .l3 {
	top: 1225px;
}

.blocfilm .l4 {
	top: 1530px;
}

.blocfilm .l5 {
	top: 1844px;
}

.blocfilm .l6 {
	top: 2159px;
}

.creditsf p {
	color: #7a7a7a;
}

.creditsf span {
	color: #993E44;
}


/* ------------------------------------------------
FICHES FILM
----------------------------------------------------*/

#film h1 {
	margin-top: 4%;
	margin-bottom: 4%;
}

#film h2 {
	margin-top: 5%;
	margin-bottom: 2%;
	text-align: left;
}

#film h5 {
	font-size: 1.3em;
	font-style: italic;
	color: #6C9296;
	margin-top: 6%;
}

#film p {
	color: #9D958D;
	font-size: 1.3em;
	font-family: Helvetica, Arial, sans-serif;
}

#film {
	padding: 2%;
}


#film ul {
	margin: 3%;
}

#film .photoid {
	display: block;
	margin-right: 2%;
	margin-bottom: 20%;
}

#film .photoid {
	float: left;
}

#film .titreid {
	margin-bottom: 5%;
	margin-top: 10%;
}

#film #bande_annonce {
	margin-top: 9%;
}

#film #programmation {
	margin-top: 9%;
}

#film #cadrec {
	background-color: #cecbc8;
	width: 460px;
	height: 60px;
	float: left;
	margin-right: 2%;
	margin-top: 3%;
}

#film .btn {
	text-align: right;
	font-size: 1.3em;
}

#fichefilm img {
	margin: 0 auto;
	margin-bottom: 6%;
}


/* ------------------------------------------------
WEB TV
----------------------------------------------------*/

.menuwebtv {
	width: 30%;
	overflow: hidden;
	float: left;
}

#encartvideos {
	width: 70%;
	float: right;
}

#encartvideos .videowebtv {
	display: none;
}

#bannonces {
	display:none;
}

#coulisses {
	display:none;
}

.menuwebtv li {
	list-style: none;
	color: #9D958D;
	font-size: 1.1em;
	font-family: Helvetica, Arial, sans-serif;
}

.menuwebtv li a {
	color: #9D958D;
}

.menuwebtv li a:hover {
	color: #993E44;
}

.menuwebtv h2 {
	text-align: left;
	font-size: 1.1em;
	margin-top: 3%;
	margin-bottom: 1%;
}

/* ------------------------------------------------
FOOTER EVOLUE
----------------------------------------------------*/

#footerEvol {
	background-image: url('../img/bkg_footer.jpg');
	background-repeat: no-repeat;
	height: 335px;
	margin-top: 4%;
	opacity: 0.7;
	clear: both;
}

#footerEvol:hover {
	opacity: 1;
}

#footerEvol ul {
	display: block;
	float: left;
	padding: 2.7%;
}

#footerEvol li, #footerEvol a {
	color: #9D958D;
	list-style: none;
	font-size: 1em;
	font-family: Helvetica, Arial, sans-serif;
}

#footerEvol a:hover {
	color: #993e44;
}

.titrecol {
	margin-bottom: 7%;
	margin-top: 30px;
}

.encartbleu{ background: url(fond_encartbleu.jpg) repeat-y; padding:30px;}
.titre_accueil1{ font-size:24px; font-weight:bold;}
.titre_accueil2{ font-size:18px; font-weight:bold;}