/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;font-size:14px;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff;}
#colorbox{}
    #cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 0;}
    #cboxTopCenter{height:25px; background:url(images/border1.png) repeat-x 0 -50px;}
    #cboxTopRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px 0;}
    #cboxBottomLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 -25px;}
    #cboxBottomCenter{height:25px; background:url(images/border1.png) repeat-x 0 -75px;}
    #cboxBottomRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px -25px;}
    #cboxMiddleLeft{width:25px; background:url(images/border2.png) repeat-y 0 0;}
    #cboxMiddleRight{width:25px; background:url(images/border2.png) repeat-y -25px 0;}
    #cboxContent{background:#fff; overflow:hidden;min-height: 410px;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:5px;}
        #cboxTitle{visibility: hidden;position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;padding-top: 5px;background: white;}
        #cboxTitle em {color:#444;font-weight:bold;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxLoadingOverlay{background:#fff url(images/loading.gif) center center no-repeat 5px 5px;}
        #cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/*
  The following provides PNG transparency support for IE6
  Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
*/
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}

.cboxIE6 #cboxTopLeft,
.cboxIE6 #cboxTopCenter,
.cboxIE6 #cboxTopRight,
.cboxIE6 #cboxBottomLeft,
.cboxIE6 #cboxBottomCenter,
.cboxIE6 #cboxBottomRight,
.cboxIE6 #cboxMiddleLeft,
.cboxIE6 #cboxMiddleRight {
    _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
}

/*
  CSS inside Colorbox
*/

#cboxClose {
	text-decoration: underline;
}

#cboxContainer {
min-height: 410px;
}

#cboxContainer * {
	text-shadow: none;
	color: black;
	margin:0;
	padding:0;
	border:0;
}

#cboxContainer h1 {
	color: black;
}

#cboxContainer .rounded-corners {
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius:12px;
	border-radius:12px;	
}
#cboxContainer .shadowed {
	-moz-box-shadow:0 0 10px rgba(0, 0, 0, .5);
	-webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5);
	box-shadow:0 0 10px rgba(0, 0, 0, .5);
}

#cboxContainer .bigbutton {
	-webkit-appearance: none;
}

#cboxContainer a.bigbutton, #cboxContainer input.bigbutton {
	color: white;
	display: inline-block;
	box-shadow: 0 1px 1px black, inset 0 2px 0 -1px #bfefff;
	text-align: center;
	font-size:20px;
	font-weight: bold;
	border:0;	
	padding:5px 15px;
	margin: 0 0 15px 0;
	border-radius: 5px;
	background: rgb(51,204,255); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzY2NmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyNDhmYjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(51,204,255,1) 0%, rgba(36,143,178,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(51,204,255,1)), color-stop(100%,rgba(36,143,178,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(51,204,255,1) 0%,rgba(36,143,178,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(51,204,255,1) 0%,rgba(36,143,178,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(51,204,255,1) 0%,rgba(36,143,178,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(51,204,255,1) 0%,rgba(36,143,178,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ccff', endColorstr='#248fb2',GradientType=0 ); /* IE6-8 */
	cursor:pointer;
}
#cboxContainer a.bigbutton:active, #cboxContainer input.bigbutton:active {
	box-shadow: 0 0 4px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -15px 10px -7px rgba(255,255,255,0.2), inset 0px 30px 20px -25px rgba(0,0,0,0.3);
}
#cboxNav {
	display:block;	
	width:198px;
	min-height:100%;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#fafafa;
	-moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, .5);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .5);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, .5);
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius:12px;
	border-radius:12px;	
}
#cboxNav p {
	margin:0;
	padding:6px 10px 6px 10px;
}
#cboxNav a {
	display:block;	
	width:178px;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	background-color:#aaa;
	color:#FFF;
	text-decoration:none;
	padding:3px 0;
	border-radius:5px;	
	box-shadow: 0 0 5px rgba(0,0,0,1), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 15px 10px -7px rgba(255,255,255,0.2), inset 0px -30px 20px -25px rgba(0,0,0,0.5);
	text-shadow: 0px -1px 1px rgba(0,0,0,0.7);
}
#cboxNav a.active {
	background-color:green;
	text-shadow: 0px -1px 1px #730041;
}
#cboxNav a:hover {
	background-color:green;
	text-shadow: 0px -1px 1px #730041;
}
#cboxNav a:active {
	box-shadow: 0 0 4px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -15px 10px -7px rgba(255,255,255,0.2), inset 0px 30px 20px -25px rgba(0,0,0,0.3);
}
#cboxNav .logout {
	position:absolute;
	bottom: 15px;
}
#cboxNav .logout a {
	background: red;
	margin: 0 0 5px 0;
}
#cboxNav .menu {
	text-align: center;
	color: #aaa;
	font-weight: bold;
	text-shadow: 0 1px 0 #fff;
}
#cboxContainer form label.label4forfait {
	width:394px;
	display:block;
	cursor:pointer;
	margin-top:5px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius:12px;
	border-radius:12px;	
	border: 1px solid #33cbfe;
}
#cboxContainer form label.label4forfait img {
	display:block;
	width:394px;
	height:78px;
	background-color:white;
	-webkit-transition: background-color 0.2s ease-in-out, margin 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out, margin 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out, margin 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, margin 0.2s ease-in-out;	
	transition: background-color 0.2s ease-in-out, margin 0.2s ease-in-out;
}
#cboxContainer form label.label4forfait.active img {
	background-color:#33cbfe;
}
#cboxContainer form label.label4forfait img:hover {
	background-color:#33cbfe;
}
#cboxContainer form label.label4forfait input {
	display:none;
}


#cboxContainer .label4forfait {
	display:block;
	cursor:pointer;
	margin-top:5px;
}
#cboxContainer .label4forfait img {
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius:12px;
	border-radius:12px;	
	-webkit-transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;	
	transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
}
#cboxContainer .label4forfait.active img {
}
#cboxContainer .label4forfait img:hover {
}

#cboxContainer img.bg9482C6 {
	background-color:#CCCCCC;
}
#cboxContainer img.bg9482C6:hover {
	background-color:#9482C6;
}
span.checkbox_on {
	display:inline-block;
	width:19px;
	height:19px;
	vertical-align:middle;
	background:url(../../img/checkbox.png) 0px 0px no-repeat;
}
span.checkbox_off {
	display:inline-block;
	width:19px;
	height:19px;
	vertical-align:middle;
	background:url(../../img/checkbox.png) 0px -19px no-repeat;
}

#cboxBackButton {
	display:block;	
	position:absolute;
	top:0px;
	left:0px;
	width:20px;
	height:20px;
	background:url(images/back_off.png) no-repeat 0px 0px;
}
#cboxBackButton:hover {
	background-image:url(images/back_on.png);
}

#cboxContainer .allopass {
	color: #1e2d83;
	font-weight: bold;
	text-decoration: underline;
	font-size: x-large;
}

