
body {margin: 0;}
#lbOverlay {
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #000;
	cursor: pointer;
}

#lbCenter, #lbBottomContainer {
	position: absolute;
	left: 50%;
	overflow: hidden;
	background-color: #fff; text-align: center; padding: 5px;
}

.lbLoading {
	background: #fff url(../videoview/css/loading.gif) no-repeat center;
}

#lbImage {
	border: 10px solid #fff;
}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
	background: transparent url(../videoview/css/prevlabel.gif) no-repeat 0% 15%;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
	background: transparent url(../videoview/css/nextlabel.gif) no-repeat 100% 15%;
}

#lbBottom {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border: 5px solid #fff;
	border-top-style: none;
}

#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: transparent url(../videoview/css/closelabel.gif) no-repeat center;
	margin: 5px 0;
}

#lbCaption, #lbNumber {
	margin-right: 71px;
}

#lbCaption {
	font-weight: bold;
}

/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	 
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
		   Refer to README.txt to review markup requirements.
	
	<div class="gallery">
		<div class="gv-panel_wrap">
			<div class="gv-panel">
				<img src="path/to/image.jpg" />
				<div class="gv-panel-overlay">
					...overlay content...
				</div>
				<div class="gv-overlay-background"></div>
			</div>
		</div>
		<div class="gv-strip_wrapper">
			<ul class="gv-filmstrip">
				<li class="gv-frame current">
					<img src="path/to/thumbnail.jpg" />
					<div class="gv-caption">caption text</div>
				</li>
				<li class="gv-frame">
					<img src="path/to/thumbnail.jpg" />
					<div class="gv-caption">caption text</div>
				</li>
			</ul>
		</div>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */
#myGallery { visibility: hidden;margin-left:40px; }
#myGallery img { border:none; }

/* GALLERY CONTAINER */
.gv-gallery { overflow: hidden; }

/* LOADING BOX */
.gv-loader { background: url(../galleryview/css/loader.gif) center center no-repeat #fff; }


/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/

/* GALLERY PANELS */
.gv-panel { filter: inherit; }

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.gv-panel .gv-panel-overlay,
.gv-panel .gv-overlay-background { height: 5em; padding: 1em; }

/* PANEL OVERLAY BACKGROUND */
.gv-panel .gv-overlay-background { background: #222; }

/* PANEL OVERLAY CONTENT */
.gv-panel .gv-panel-overlay { color: white; }
.gv-panel .gv-panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }

/* CONTENT PANELS */
.gv-panel-content { overflow-y: auto; }


/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/


/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.gv-filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv-frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.gv-frame .gv-img_wrap {}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.gv-frame.current .gv-img_wrap {}

/* FRAME IMAGES */
.gv-frame img { border: none; }

/* FRAME CAPTION */
.gv-frame .gv-caption { height: 2em; line-height: 2em; font-size: 1em; text-align: center; }

/* CURRENT FRAME CAPTION */
.gv-frame.current .gv-caption { }

/* POINTER FOR CURRENT FRAME */
.gv-pointer {
	border-color: black;
}

/* NAVIGATION BUTTONS */
.gv-nav-next {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(../galleryview/css/themes/dark/next.png) top left no-repeat;
}
.gv-nav-prev {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(../galleryview/css/themes/dark/prev.png) top right no-repeat;
}
.gv-panel-nav-next {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(../galleryview/css/themes/dark/panel-nav-next.png) top left no-repeat;
}
.gv-panel-nav-prev {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(../galleryview/css/themes/dark/panel-nav-prev.png) top right no-repeat;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .gv-pointer {
	filter: chroma(color=pink);
}
@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	width: 100%;
	color: #5f5f5f;
	font-style: normal;
	font-size: 11px;
	line-height: 1.6em;
	font-family: Arial, Helvetica, sans-serif;
	/*background: url(images/bg.gif);*/
}

html,.main {
	padding: 0;
	margin: 0;
	background-color: #fff;
}

.main {
	padding-top: 25px;
}

.clr {
	clear: both;
	padding: 0;
	margin: 0;
	width: 100%;
	font-size: 0px;
	line-height: 0px;
}

h1 {
	margin: 0;
	padding: 24px 0 40px 40px;
	color: #36c4d1;
	font-weight: bold;
	font-size: 40px;
	line-height: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}

h1 a,h1 a:hover {
	color: #36c4d1;
	text-decoration: none;
}

h1 span {
	margin: 0 4px;
	padding: 26px 6px;
	color: #fff;
	background-color: #36c4d1;
}

h1 small {
	padding-left: 8px;
	font-style: normal;
	font-size: 13px;
	line-height: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
}

h2 {
	font: bold 24px Arial, Helvetica, sans-serif;
	color: #323a3f;
	padding: 0px 0;
	margin: 18px 0 0 0;
}

p {
	margin: 8px 0;
	padding: 0 0 8px 0;
	font-size: 12px;
	line-height: 1.8em;
	font-family: Arial, Helvetica, sans-serif;
}

a {
	color: #36c4d1;
	text-decoration: underline;
	outline: none;
}

img.imgwh {
	margin: 6px 16px 0 0;
	padding: 3px;
	float: left;
	border: 1px solid #dedede;
}

.header,.hbg,.content,.footer,form,ol,ol li,ul {
	margin: 0;
	padding: 0;
}

.header_resize,.hbg_resize,.content_resize,.fbg_resize,.footer_resize {
	margin: 0 auto;
	padding: 0 40px;
	width: 890px;
}

.header_resize{
	width: 910px;
	padding-left: 60px;
}

.content {
	padding: 0px 40px;
}

/* header */
.header {
	background: #ebebeb url(images/header_bg.gif) repeat-x top;
}

.header .logo {
	float: left;
}

.header_resize .logo a{
	background: url(images/logo_hover.png) no-repeat;
	display: block;
	width: 232px;
	height: 94px;
}

.header_resize .logo a:hover .logoImg{
	visibility: hidden;
}

.header img.hbgimg {
	padding: 22px 28px 0 0;
	float: right;
}

.header .logo .phone_logo{
	font-size: 13px;
	color: #72778C;
	margin-top: 3px;
}

.header h2 {
	margin: 0;
	padding: 8px 0 0 0;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}

.logoImg {
	width: 230px;
}

/* menu */
#menu {
	float: right;
	width: 640px;
	padding-left: 33px;
	height: 135px;
	position: relative !important;
	display: block;
	overflow: hidden;
	margin-bottom: -4px;
	background: url('images/background-menu.png') 0 35px no-repeat;
}

#menu ul {
	margin: 115px 0 0 0;
	padding: 0;
	position: relative;
}

#menu li {
	width: 115px;
	float: left;
}

#menu li.elem_menu {
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	height: 50px;
	overflow: hidden;
	margin: 0 7px 0 0;
	background: url('images/menu-ombre.png') top right no-repeat;
	padding-right: 3px;
}

#menu li.elem_menu:hover h3{
	background-color: #52D0DE;
}

#menu li ul {
	margin: 0;
}

#menu h3{
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 2px;
	padding-bottom: 0;
	padding-left: 5px;
	margin: 0;
	border-left: 2px solid #DF786F;
	cursor: pointer;
	display: block;
	background-color: #63BFCF;
	color: white;
	height: 19px;
}

#menu a{
	color: white;
}

#menu .elem_menu ul li{
	line-height: normal;
}

#menu .elem_menu ul li a {
	display: block;
	margin: 0;
	padding: 0;
	color: #737373;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 9px;
	border-left: 2px solid #E56A5F;
	padding-left: 3px;
	line-height: normal;
	background: #FBFBFB;
}

#menu .elem_menu h3 a{
	display: block;
}

#menu .elem_menu ul li{
	clear: both;
}
#menu .elem_menu ul li a{
	clear: both;
}

#menu .elem_menu ul li a:hover,.panel_body ul li.active a {
	border-left: 2px solid #36c4d1;
	color: #36c4d1;
}

/* hbg */
.hbg {
	background: url(images/hbg_bg.gif) repeat-x top;
	margin-bottom: -20px;
}

.hbg_resize {
	height: 220px;
	overflow: hidden;
	background: url(images/hbg_r_bg.jpg) no-repeat center top;
	padding-top: 20px;
}

.hbg img {
	margin-right: 30px;
	padding: 20px 0 0 5px;
	float: left;
}

.hbg h2 {
	margin: 0;
	padding: 20px 0 0px;
	font-weight: bold;
	font-size: 23px;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: -10px;
}

.hbg p {
	margin-bottom: -15px;
}

/* content */
.article {
	font-size: 120%;
}

.small_font .article {
	font-size: 100%;
}

.large_font .article {
	font-size: 160%;
}

.content .mainbar {
	margin: 0;
	padding: 0;
	float: right;
	width: 650px;
}

.content .mainbar .article,.content .sidebar .gadget {
	margin: 0;
	padding: 0 0 16px 0;
}

.content .mainbar .article img {
	border: 1px solid #dedede;
	padding: 3px;
}

.content .mainbar .article img .imgLargeurCentre {
	width: 550px;
	height: 166px;
}

.content .mainbar .article p.txtColonneGauche {
	float: left;
	width: 240px;
}

.content .mainbar .article p.txtColonneDroite {
	width: 225px;
	margin-left: 240px;
	padding-left: 10px;
	border-left: 1px solid #d9d9d9;
	height: 100px;
}

.content .mainbar .article img.ilf {
	float: left;
	margin: 0 16px 8px 0;
}

.content .sidebar {
	margin: 0;
	padding: 0;
	float: left;
	width: 230px;
}

.content .mainbar .article p {
	margin-bottom: -10px;
	line-height: 18px;
}

.content .mainbar_accueil {
	margin: 0;
	padding: 0;
	width: 350px;
}

.content .sidebar_accueil {
	margin: 0;
	padding: 0;
	float: left;
	width: 200px;
}

.content .sidebar_right_accueil {
	margin: 0;
	padding: 0;
	float: right;
	width: 200px;
}

#lstVideo {
	margin-left: 60px;
}

ul.sb_menu,ul.ex_menu {
	margin: 0;
	padding: 0;
	list-style: none;
	padding-right: 20px;
}

.ex_menu a {
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 2px;
	padding-bottom: 0;
	margin: 0;
	border-right: 2px solid #737373;
	cursor: pointer;
	display: block;
	color: #737373;
	margin-bottom: 2px;
}

.ex_menu a:hover {
	border-right: 2px solid #36c4d1;
	color: #36c4d1;
}

/* subpages */
.content .mainbar .comment {
	margin: 0;
	padding: 16px 0 0 0;
}

.content .mainbar .comment img.userpic {
	border: 1px solid #dedede;
	margin: 10px 16px 0 0;
	padding: 0;
	float: left;
}

/* footer */
#footer {
	width: 100%;
	margin: 0 auto;
	background: #677684 url(images/templatemo_footer_bg.jpg) repeat-x top;
}

#footer_content {
	width: 960px;
	margin: 0 auto;
	padding: 60px 10px 20px 10px;
	color: #ffffff;
}

#footer_content  a {
	color: #ffffff;
}

/*#footer_content .section_w240 {float: left;width: 200px;padding-right: 40px;}
#footer_content .section_w240 {float: left;width: 200px; padding-right: 120px;}
#footer_content .section_w240 {float: left;width: 120px; padding-right: 200px;}*/
#footer_content .section_w240 {
	float: left;
	width: 160px;
	padding-right: 30px;
}

#footer_content .section_w240 h3 {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}

#footer_content .footer_list {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#footer_content .footer_list li {
	margin: 0px;
	padding: 3px 0;
}

#footer_content .footer_list li a {
	color: #ffffff;
}

#footer_content .footer_list li a:hover {
	color: #36c4d1;
	text-decoration: none;
}

/* end of footer */
/* form */
ol {
	list-style: none;
}

ol li {
	display: block;
	clear: both;
}

ol li label {
	display: block;
	margin: 0;
	padding: 10px 0 0 0;
}

ol li input.text {
	width: 480px;
	border: 1px solid #c0c0c0;
	margin: 2px 0;
	padding: 5px 2px;
	height: 16px;
	background: #fff;
}

ol li textarea {
	width: 480px;
	border: 1px solid #c0c0c0;
	margin: 2px 0;
	padding: 2px;
	background: #fff;
}

ol li .send {
	margin: 16px 0 0 0;
}

/* Autres */
img {
	border: none;
}

.lblForm {
	display: block;
	width: 120px;
	float: left;
	margin-top: 2px;
}

.txtForm {
	margin-bottom: 1px;
	width: 280px;
}

textarea {
	height: 180px;
	width: 400px;
}

/* BIG BOX */
.box_top {
	width: 640px;
	height: 9px;
	background: url(images/box_top.gif) no-repeat center bottom;
	margin: 0;
	padding: 0;
}

.box_center {
	width: 640px;
	height: auto;
	background: url(images/box_center.gif) repeat-y center;
	margin: 0;
}

.box_center div,h3 {
	padding: 0;
	margin: 0;
}

.box_bottom {
	width: 640px;
	height: 9px;
	background: url(images/box_bottom.gif) no-repeat center top;
	margin-bottom: 20px;
}

/*.box_center p {
	text-align: right;
	margin-top: 10px;
	margin-bottom: -5px;
}
*/

.box_center h2 {
	margin-bottom: -5px;
}

/* SMALL BOX */
.small_box_top {
	width: 180px;
	height: 9px;
	background: url(images/small_box_top.gif) no-repeat center bottom;
	margin: 0;
	padding: 0;
}

.small_box_center {
	width: 175px;
	height: auto;
	background: url(images/small_box_center.gif) repeat-y center;
	margin: 0;
	padding-left: 5px;
}

.small_box_center div,h3,.box_center h2,.small_box_center p {
	padding: 0;
	margin: 0;
}

.small_box_center p {
	text-align: right;
	margin-top: 10px;
	margin-bottom: -5px;
}

.small_box_center h2 {
	margin-bottom: -5px;
}

.small_box_bottom {
	width: 180px;
	height: 9px;
	background: url(images/small_box_bottom.gif) no-repeat center top;
	margin-bottom: 20px;
}

/** 3 COLONNES **/
#colonneGauche {
	float: left;
	width: 180px;
	margin-right: 10px;
	margin-top: 20px;
	word-wrap: break-word;
}

#colonneCentre {
	overflow: hidden;
	text-align: left;
}

#colonneDroite {
	float: right;
	width: 180px;
	margin-left: 10px;
	margin-top: 20px;
}

#colonneDroite img {
	border: none;
}

.categorie_accueil {
	background: url(images/bg_news.gif) repeat-x;
	background-color: #F0F0F0;
	min-height: 83px;
	width: 176px;
	border: 1px solid #dedede;
	margin-bottom: 10px;
	padding: 2px;
	line-height: 13px;
}

.categorie_accueil .left {
	height: 75px;
	float: left;
	margin-right: 6px;
	margin-top: 15px;
	margin-left: 6px;
}

.categorie_accueil .right {
	height: 75px;
	float: right;
	margin-right: 6px;
	margin-top: 15px;
	margin-left: 6px;
}

.categorie_accueil img {
	width: 75px;
	height: 55px;
}

.categorie_accueil h4 {
	cursor: pointer;
	margin-right: 6px;
	margin-left: 6px;
}

.categorie_accueil .sansImage {
	text-align: center;
}

/** Style quand le sous lien est select **/
a.activeSousLien {
	color: #36c4d1;
	border-right: 2px solid #36c4d1;
}

/** SLIDE HAUT **/
/*.slide img{margin-right:34px; padding:0px 0 0 5px; float:left;margin-top:0;width:330px;height:180px;}
.slide a img{float:right;margin-top:20px;;width:100px;height:46px;border:0;}*/
.slide h2 {
	margin-top: -25px;
}

.slide img {
	margin-right: 34px;
	padding: 0px 0 0 5px;
	float: left;
	margin-top: 0;
	width: 330px;
	height: 180px;
}

.slide a img {
	margin-top: 150px;
	width: 100px;
	height: 46px;
	border: 0;
}

.slide p {
	line-height: 15px;
	font-size: 13px;
}

.slide .espace_text {
	width: 375px;
	float: left;
}

.slide .espace_rm {
	float: right;
}

/** TOP LINK **/
#top_link {
	height: 25px;
	width: 100%;
	margin: 0 auto;
	background: url(images/bg_menu_top.gif) repeat-x;
	position: fixed;
	z-index: 2;
	border-bottom: 1px solid #dedede;
	color: #FFFFFF;
}

#top_link_div {
	width: 900px;
	font-size: 12px;
	font-weight: bold;
	margin: 0 auto;
}

#top_link a {
	padding-top: 2px;
	margin-left: 1.5em;
	float: left;
	color: white;
	text-decoration: none;
}

#top_link a:hover {
	text-decoration: underline;
}

#top_link a.top_link_first {;
	float: left;
}

#top_link #chpRecherche {
	margin-left: 2em;
	width: 180px;
	height: 15px;
	font-size: 11px;
	font-weight: normal;
	color: #3d3d3d;
}

/*#top_link #btnRecherche {
	margin-top: -25px;
	font-size: 11px;
	font-weight: normal;
}*/

#top_link img{
	height: 19px;
	vertical-align: text-bottom;
	margin-right: 5px;
}

/** LIENS ACTUALITES**/
a:link.lienActu {
	text-decoration: none;
	color: #5f5f5f;
	font-weight: bold;
}

a:visited.lienActu {
	text-decoration: none;
	color: #5f5f5f;
	font-weight: bold;
}

a:hover.lienActu {
	text-decoration: none;
	color: #36c4d1;
	font-weight: bold;
}

/** ZONE CONNECTION **/
.fd_connec {
	width: 650px;
	height: 250px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

.fd_connec #cle_connec {
	float: left;
	margin-left: 10px;
	margin-right: 10px;
	width: 100px;
	height: 200px;
	margin-top: 10px;
}

.fd_connec #cle_connec img {
	width: 100px;
}

.fd_connec .form_connect {
	float: left;
}

/** RECHERCHE **/
.titreRecherche {
	color: #36c4d1;
	font-weight: bold;
	font-size: 14px;
}

.article .txtColonneGauche .chapeau {
	font-weight: bold;
	font-size: large;
}

.article .txtColonneGauche .encart {
	font-weight: bold;
	color: #3DC5C0;
}

.chapeau {
	font-weight: bold;
	font-size: large;
}

.encart {
	font-weight: bold;
	color: #3DC5C0;
}

.small_box_center div center h3 {
	color: #e95f40;
}

.small_box_center #divSondage {
	margin-left: 28px;
}

.small_box_center #divSondage input[type=radio] {
	margin-left: 20px;
}

#zone_impression ul li {
	margin-left: 20px; /*font-size: 12px;*/
}

div.partnerLink {
	padding-left:55px;
}

.partnerLink div.sheet {
	float: left;
	width: 35px;
	height: 80px;
	margin-left: -35px;
}

