* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
html {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000;
	overflow-y: scroll;
	background: #171717 url(images/design/bg.png);
}

/* #############################
#            GENERAL           #
############################# */

a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;	
}
a img {
	border: none;
}
acronym {
	border-bottom: 1px dotted #fff;
	cursor: help;
}
li, ol {
	margin-left: 30px;
}
.cursorPointer {
	cursor: pointer; 
}
.noFloat {
	clear: both;
	height: 0px;
	border: 0px solid #000000;
	width: 0px;
	visibility: hidden;
	outside: none; 
}
#noscript {
	position: absolute;
	left: 300px;
	top: 40px;
	text-align: center;
	font-weight: bold;
	color: #000000;
	background: #FFCC66;
	border: 1px solid #FF6600;
	padding: 5px;
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px;
	border-radius: 10px; 
}
#noscript a {
	color: #000000;
	text-decoration: underline;
	font-variant: normal;
}
.notificationBadge {
	position: absolute;
	font-size: 11px;
	line-height: 12px;
	font-family:"Courier New", Courier, monospace;
	padding: 0px 2px;
	margin: 0px;
	background: #000;
	background: -moz-linear-gradient(top, #494949 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#494949), color-stop(100%,#000000)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949', endColorstr='#000000',GradientType=0 );
	border:#999 1px solid;
	border-radius:40px;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	border:#999 1px solid;
	opacity: 0.9; 
	filter: alpha(opacity=90); 
}

/* #############################
#            HEADER            #
############################# */

#header {
	position: absolute;
	width: 100%;
	min-width: 750px;
	color: #fff;
	top: 0px;
}
#headerContent {
	height: 85px;
}
#title {
	float: left;
	width: 300px;
	background: url(images/design/headerBg.png) left top no-repeat;
	height: 100%;
}
#title img {
	margin-top: 10px;
	margin-left: 10px;
}
#menu {
	background: url(images/design/headerBg.png) left bottom;
	font-size: 18px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	margin-left: 300px;
	height: 100%;	
}
#menu li, #menu ol {
	position: relative;
	display: inline;
	height: 30px;
	line-height: 28px;
	margin: 0px;
}
#menu a {
	color: #ffffff;
	text-decoration: none;
	outline: none;
	text-shadow: 0px 0px 3px #222;
}
#menu a:hover {
	border-bottom: 3px solid #3f3f3f;
}
#menu a:active, #menu a:focus,  #menu .linkFocused {
	border-bottom: 3px solid #646464;
}
#menu .share {
	float: right;
	height: 30px;
	line-height: 34px;	
	margin-right: 20px;
}
#menu .share a:hover {
	border: none;
}
#menu .share .shareLink {
	position: relative;
	padding: 0px 8px;
}
#menu .share .shareLink .shareImg32 {
	position: absolute;
	left: 0px;
	top: -32px;
	transition: top linear 0.2s;
	-webkit-transition: top linear 0.2s;
}
#menu .share .shareLink:hover .shareImg32 {
	display: block;
	top: -10px;
}


/* #############################
#          FORMULAIRES		   #
############################# */

textarea {
	background: #000;
	color: #fff;
	font-size: 15px;
	font-family: "Courier New", Courier, monospace;
	padding: 5px;
	margin: 2px;
	background: -moz-linear-gradient(top, #000000 0%, #191919 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#191919)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#191919',GradientType=0 );
	border:#999 1px solid;
	-moz-border-radius:10px;
	-khtml-border-radius:10px;
	-webkit-border-radius:10px;
	outline: none;
}
input, button, .button {
	background: #000;
	color: #fff;
	font-size: 15px;
	font-family: "Courier New", Courier, monospace;
	font-weight: none;
	padding: 3px 5px;
	margin: 2px;
	background: -moz-linear-gradient(top, #000000 0%, #191919 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#191919)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#191919',GradientType=0 );
	border:#999 1px solid;
	border-radius:40px;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	outline: none;
	/*height: 18px;*/
}
input:hover {
	border:#ddd 1px solid;
}
input[type='submit'], button, .button {
	background: -moz-linear-gradient(top, #191919 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#191919), color-stop(100%,#000000)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#000000',GradientType=0 );
	cursor: pointer;
	/*height: 30px;*/
}
.button.disabled {
	color: #000;
	cursor: not-allowed;
}
input[type='submit']:hover, button:hover, .button:hover {
	background: -moz-linear-gradient(top, #292929 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#000000)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#000000',GradientType=0 );
	border:#999 1px solid;
}
input[type='checkbox'], input[type='radio'] {
	background: none; 
	filter: none;
	border: none;
}
select, option {
	background: #000;
	color: #fff;
	font-size: 15px;
	font-family: "Courier New", Courier, monospace;
	padding: 3px 5px;
	margin: 2px;
	border:#999 1px solid;
	border-radius:40px;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	outline: none;
}

/* #############################
#           CUERPO             #
############################# */

/* Organisation générale de la page */

#cuerpo {
	width: 750px;
	margin: 100px auto;
	padding: 45px;
	background: #fff;
	border-radius:5px;
	-moz-border-radius:5px;
	-khtml-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow: 5px 5px 5px #050505;
	-webkit-box-shadow: 5px 5px 5px #050505;
	box-shadow: 5px 5px 5px #050505;
	background: #e8e8e8 url(images/design/bg_library.png);
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
h1 {
	font-size: 160%;
	margin: 30px 0px 5px;
}
h1:first-child {
	margin-top: 0px;
}
h2 {
	font-size: 140%;
	margin: 25px 0px 5px;
}
h3 {
	font-size: 120%;
	margin: 20px 0px 5px;
}
h4 {
	font-size: 100%;
	margin: 15px 0px 5px;
}
h5 {
	font-size: 100%;
	font-style: italic;
	margin: 10px 0px 5px;
}
h6 {
	font-size: 100%;
	font-style: italic;
	margin: 5px 0px 0px;
}
p {
	padding: 0px;
	text-align: justify;	
}
#cuerpo textarea {
	color: #000;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 0%, #f6f6f6 53%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(53%,#f6f6f6), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	border:#bbb 1px solid;
}
#cuerpo input, #cuerpo .button, #cuerpo button {
	color: #000;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 0%, #f6f6f6 53%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(53%,#f6f6f6), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	border:#bbb 1px solid;
}
#cuerpo input:hover {
	border:#888 1px solid;
}
#cuerpo input[type='submit'], #cuerpo .button, #cuerpo button {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
}
#cuerpo .button.disabled, #cuerpo button:disabled {
	color: #ededed;
	cursor: not-allowed;
}
#cuerpo input[type='submit']:hover, #cuerpo .button:hover, #cuerpo button:hover {
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 0%, #f6f6f6 53%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(53%,#f6f6f6), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 0%,#f6f6f6 53%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	border:#888 1px solid;
}
#cuerpo select, #cuerpo option {
	background: #ededed;
	color: #000;
}


/* #############################
#            FOOTER            #
############################# */

#footer {
	color: #444;
	padding: 5px;
	margin: 50px;
	font-size: 16px;
}
#footerContent {
	margin: auto;
}
#footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-style: italic;
	text-align: center;
	text-shadow: 1px 1px 1px #000;
	margin: 0px;
	padding: 0px;
}
#footer p#footerTitle {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: bold;
	font-size: 85%;
	margin-bottom: 5px;
	text-align: center;
	font-style: normal;
	margin: 0px;
	text-shadow: 2px 2px 2px #000;
}

/* #############################
#         PAGE CONTACT         #
############################# */

#pageContact label {
	width: 150px;
	line-height: 29px;
	display: block;
	float: left;
	text-align: left;
}
#pageContact #recaptcha_widget_div {
	float: left;
}
#pageContact #submitButtonParagraph {
	text-align: right;
	height: 110px;
	line-height: 70px;