/*** CLASS STYLES ************************************************************************/

.wrapper {
    margin: 0 auto;
    padding: 0 5%;
    width:90%;
    max-width:1024px;
}

.error {
    color: #ff0045;
}

.background-0 {
    background-attachment:fixed;
    background: rgb(100,22,114);
    background: -moz-linear-gradient(top,  rgba(100,22,114,1) 0%, rgba(70,16,84,1) 35%, rgba(53,13,66,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(100,22,114,1)), color-stop(35%,rgba(70,16,84,1)), color-stop(100%,rgba(53,13,66,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(100,22,114,1) 0%,rgba(70,16,84,1) 35%,rgba(53,13,66,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(100,22,114,1) 0%,rgba(70,16,84,1) 35%,rgba(53,13,66,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(100,22,114,1) 0%,rgba(70,16,84,1) 35%,rgba(53,13,66,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(100,22,114,1) 0%,rgba(70,16,84,1) 35%,rgba(53,13,66,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#641672', endColorstr='#350d42',GradientType=0 ); /* IE6-9 */
}   

.background-2 {
    background: rgb(70,16,84);
    background: -moz-linear-gradient(top,  rgba(70,16,84,1) 0%, rgba(53,13,66,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70,16,84,1)), color-stop(100%,rgba(53,13,66,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(70,16,84,1) 0%,rgba(53,13,66,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(70,16,84,1) 0%,rgba(53,13,66,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(70,16,84,1) 0%,rgba(53,13,66,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(70,16,84,1) 0%,rgba(53,13,66,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#461054', endColorstr='#350d42',GradientType=0 ); /* IE6-9 */
}

.background-light {
    background-color: #ffffff;
}

.center {
    text-align: center;
}
/****************************************************************************/

body {
    background-image: url("../images/paper-tile-white.jpg");
}

html,
button,
input,
select,
textarea {
    color: #756f75;
}

img {
    vertical-align: middle;
}

body {
    font-family:"lemonde-courrier", serif;
    font-size:1em;
    line-height:2.5em;
    color: #756f75;
}

ul {
    list-style: none;
}













/****************************************************************************/

form {
    text-align:center;
}

form fieldset {
    margin-bottom:2em;
    width:100%;
    text-align:center;
}

form legend {
    display:block;
    padding-bottom:1em;
    font-size:1.5em;
    text-align:center;
}

form label {
    display:inline-block;
    margin:0;
    padding:0;
    margin-right:5%;
    width:100%;
    text-align:center;
    vertical-align:top;
    font-size:1.2em;
    color:#6f6f6f;
}

form label .required-field {
    color:#bca1c4;
}

form label .booking-form-descriptions {
    margin-bottom:1em;
    line-height:1.4em;
    font-size:0.8em;
    word-wrap:normal;
}

form input, textarea, select {
    display:inline-block;
    margin-bottom:10px;
    padding:5px;
    
    width:90%;
    
    text-align:left;
	
    font-size:1em;
    background-color:transparent;
    border-color:#f5f5f5;
    border-color:#e3e3e3;
    border-style:solid;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
}

form input {
    border-width:3px;
}

form textarea {
    resize:vertical;
	height:100px;
    border-width:3px;
}

form .button {
	padding:8px 15px 10px 15px;
    min-width:200px;
    
    text-align:center;
    line-height:2em;
	color:#ffffff;
    background-color:#8F3E97;
	border:none;
	-webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    
    -webkit-box-shadow:1px 1px 5px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:1px 1px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow:1px 1px 1px 1px rgba(0, 0, 0, 0.1);
}

form .button:hover {
	background-color:#58116d;
	cursor:pointer;
}

form .button:active {
	background-color:#8F3E97;
    -webkit-box-shadow:inset 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:inset 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow:inset 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
}

span.jquery_form_error_message {
    display:block;
    padding-top:10px;
    text-align:center;
    color:#ff0045;
    font-size:1.0em;
}





