/* CSS Document */

input, textarea, select {
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.input {
    position: relative;
    margin-bottom: 10px;
}

input, select, textarea {
    position: relative;
    display: inline-block;
    padding: 5px;
    border: 1px solid #222;
    background: #fff;
}

select {
    padding: 4px;
}

input[type=file] {
    padding: 2px;
}

input[type=checkbox] {
    vertical-align: baseline;
    margin-right: 8px;
}

.submit input, .bouton, button {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 0 10px;
    margin-top: 10px;
    height: 30px;
    background: #0774a7;
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #0774a7), color-stop(1, #4597bd) );
    background-image: -moz-linear-gradient( center bottom, #0774a7 0%, #4597bd 100% );
    border: 1px solid #0774a7;
    text-decoration: none;
    cursor: pointer;
}

.submit input:hover, .bouton:hover, button:hover {
    background: #0774a7;
    text-decoration: none;
}

button {
    height: auto;
    line-height: 1.2em;
    padding: 5px 10px;
}

.bouton {
    height: 28px;
}

.form-error, .error .customfile, .error .chzn-container-single .chzn-single {
    border-color: #c34d34;
    -moz-box-shadow: 0px 0px 3px rgba(195,77,52,1);
    -webkit-box-shadow: 0px 0px 3px rgba(195,77,52,1);
    -o-box-shadow: 0px 0px 3px rgba(195,77,52,1);
    box-shadow: 0px 0px 3px rgba(195,77,52,1);
}

.error-message {
    position: relative;
    margin-top: 5px;
    color: #c34d34;
}

.form-horizontal .input, .form-horizontal .submit {
    margin-left: 110px;
    margin-bottom: 0;
    padding: 5px 0 5px 10px;
}

.form-horizontal .submit {
    text-align: right;
}

.form-horizontal .input label, .form-horizontal .input legend {
    width: 100px;
    position: absolute;
    top: 5px;
    left: -110px;
    line-height: 24px;
}

.large { width: 100%; }
.medium { width: 50%; }
.small { width: 25%; }