/* --------------------------------
* STYLES DEFAUT
* -------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:700);
* {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-size: .75em;
}

.debug-div {
    z-index: 100;
    position: absolute;
    top: 2px;
    left: 10px;
    padding: 3px;
    border: 1px solid #333;
    font-size: .75em;
    background: #FFF;
}

:focus {
    outline: 0;
}

a img {
    border: none;
    cursor: pointer;
}

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

canvas,
video {
    display: inline-block;
}

p {
    clear: both;
    padding: 8px 0;
    font-size: 1em;
    line-height: 1.5em;
    white-space: normal;
    word-wrap: break-word;
}

address {
    margin: 10px 0;
    padding: 5px;
}

ul,
ol,
dl {
    list-style: none outside none;
}

hr {
    width: 100%;
    height: 2px;
    margin: 3px 0 10px;
    padding: 0;
    border: 0;
    color: #e0e0e0;
    background: #e0e0e0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5 {
    clear: both;
    font-weight: 700;
}

h1 {
    margin-bottom: .6em;
    font-size: 2em;
    line-height: normal;
}

h2 {
    margin-bottom: .5em;
    font-size: 1.3em;
}

h3 {
    margin-bottom: .5em;
    font-size: 1.3em;
}

h4 {
    margin-bottom: .5em;
    font-size: .95em;
}

h5 {
    margin-bottom: .5em;
    font-size: .85em;
}

form {
    margin: 10px 0 0;
    padding: 8px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    background: #fafafa;
}

fieldset {
    clear: both;
    position: relative;
    margin: 0 0 10px;
    border: 0 none;
}

form,
label,
input,
textarea,
select {
    font-size: 12px;
    vertical-align: top;
    color: #666;
}

form p {
    padding: 0 0 5px;
    font-size: 13px;
}

label {
    display: inline-block;
    margin-right: 10px;
    text-shadow: 1px 1px 0 #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 31px;
    color: #313131;
    cursor: pointer;
}

label.textRight {
    text-align: right;
}

input,
textarea,
select {
    border: 2px solid #d0d0d0;
}

input:focus,
textarea:focus {
    border-color: #666;
}

input,
textarea {
    width: 96%;
    max-width: 673px;
}

input {
    padding: 6px 8px;
    vertical-align: middle;
}

select {
    padding: 3px;
    min-width: 100px;
    background: #fff;
    cursor: pointer;
}

option {
    padding: 2px;
}

option:hover {
    background: #f2f2f2;
}

textarea {
    padding: 8px;
    max-height: 300px;
    min-height: 150px;
    min-width: 340px;
    overflow: auto;
}

input[type=checkbox],
input[type=radio] {
    width: auto !important;
    margin: -8px 5px 0 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

input[type=submit],
input[type=button],
input[type=reset] {
    width: auto !important;
    padding: 5px 8px;
    border-color: #bdbdbd;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    color: #484848;
    background: #eaeaea;
    cursor: pointer;
}

input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
    border-color: #bdbdbd;
    color: #000;
    background: #eaeaea;
}

input[disabled] {
    background: #e0e0e0 !important;
    cursor: not-allowed;
}

input[type=submit] {
    -webkit-appearance: none;
}

span.required {
    color: #f00;
}

#page {
    font-size: 1.05em;
    line-height: 1.333em;
}

.bloc,
.menu {
    position: relative;
    margin: 0 0 10px;
}

.bloc-cont {
    overflow: hidden;
}

.bloc a,
.bloc a span {
    display: block;
}

.bloc p a {
    display: inline;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.clearfix {
    position: relative;
}

.clearfix:after {
    content: ".";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    font-size: 0;
}

/* --------------------------------
	* STRUCTURE
	* -------------------------------- */

/* Aucune colonne */

.col0 .col-princ {
    width: 100%;
}

/* Avec colonne gauche */

.col1 .col-princ {
    float: right;
    width: 74%;
}

.col1 .col-gauche {
    float: left;
    width: 24%;
}

/* Avec colonne droite */

.col2 .col-princ {
    float: left;
    width: 74%;
}

.col2 .col-gauche {
    float: right;
    width: 24%;
}

/* Avec 2 colonnes laterale */

.col3 .col-princ {
    float: left;
    width: 49%;
    margin-left: 1.5%;
}

.col3 .col-gauche {
    float: left;
    width: 24%;
}

.col3 .col-droite {
    float: right;
    width: 24%;
}

.contenu {
    clear: both;
    position: relative;
    height: 100%;
    margin: 0 auto;
}

/* --------------------------------
	* CSS3
	* -------------------------------- */

/* Border radius */

form,
input,
textarea {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

select {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Background gradient */

input,
textarea {
    background: -moz-linear-gradient(top,rgba(255,255,255,1) 60%,rgba(242,242,242,1) 90%);
    background: -ms-linear-gradient(top,rgba(255,255,255,1) 60%,rgba(242,242,242,1) 90%);
    background: -o-linear-gradient(top,rgba(255,255,255,1) 60%,rgba(242,242,242,1) 90%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(60%,rgba(255,255,255,1) ),color-stop(90%,rgba(242,242,242,1) ));
    background: -webkit-linear-gradient(top,rgba(255,255,255,1) 60%,rgba(242,242,242,1) 90%);
    background: linear-gradient(to bottom,rgba(255,255,255,1) 60%,rgba(242,242,242,1) 90%);
    background: rgb(255,255,255);
}

/* Box shadow */

input:focus,
textarea:focus,
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,0.4);
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
    -o-box-shadow: 0 0 2px rgba(0,0,0,0.4);
}

/* Autre */

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

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Formulaire */

/*input:required {border-color:#cea2a2; }
	input:invalid { border: none; box-shadow: 0 0 2px red; }
	input[type=hidden] { display: none; }
	::-webkit-input-placeholder { color: #9d9d9d; }
	:-moz-placeholder { color: #9d9d9d; }
	
	/* Selection */

::selection {
    color: #fff;
    background: #57b5e4;
}

::-moz-selection {
    color: #fff;
    background: #57b5e4;
}

::-webkit-selection {
    color: #fff;
    background: #57b5e4;
}