/* General */

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

html, body{
    height:100%;
    min-height:100%;
	
	position : relative;
}

body{
	background-image : url(../imgs/background.jpg);
	background-position : center center;
	background-attachment : fixed;
	background-size : cover;
    background-color: #365e5e;
	
	padding : 0px;
	margin : 0px;
	
	font-family : Arial;
	font-size : 14px;
}

/* Elements style */

a{
	outline-style : none;
}

img{
	border : 0px;
	vertical-align : bottom;
}

input{
	border : 3px solid #cccccc;
	border-radius : 5px;
	padding : 5px;
	width : 200px;
	margin : 3px;

    -webkit-box-sizing : border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing : border-box;    /* Firefox, other Gecko */
    box-sizing : border-box;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

input:hover {
	border : 3px solid #bbbbbb;
}

textarea{
	border : 3px solid #cccccc;
	border-radius : 5px;
	padding : 5px;
	width : 100%;
	height : 200px;
	margin : 3px;

    -webkit-box-sizing : border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing : border-box;    /* Firefox, other Gecko */
    box-sizing : border-box;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

textarea:hover {
	border : 3px solid #bbbbbb;
}

input[type="submit"]{
	width : auto;
	padding : 5px 15px;
	cursor : pointer;
}

input[type="checkbox"]{
	border : 0px;
	border-radius : 0px;
	padding : 0px;
	width : auto;
	margin : 3px 3px 0px 0px;
}

.alert{
    text-align: center;
	position: absolute;
    width: 400px;
    top: 10px;
    left:50%;
    margin-left:-200px;
    padding: 10px;
    background-color: #ebebeb;
    border: 3px solid #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 99;
}

.button{
	position : relative;
	display : inline-block;
	border : 3px solid #ffffff;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
	padding : 4px 10px 3px 10px;
	margin-left : -5px;
	background : #3498db;
	border-radius : 5px;
	text-align : center;
	font-weight : bold;
	min-width : 140px;
	cursor : pointer;
	color : #ffffff;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

.button:hover{
	background : #44a8eb;
	border : 3px solid #44a8eb;
}

.button-gray{
	position: relative;
	display : inline-block;
	border : 3px solid #ffffff;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
	padding : 4px 10px 3px 10px;
	margin-left : -5px;
	background : #999999;
	border-radius : 5px;
	text-align : center;
	font-weight : bold;
	min-width : 130px;
	cursor : default;
	color : #ffffff;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

/*.button-gray:hover{
	background : #a9a9a9;
	border : 1px solid #a9a9a9;
	border-bottom : 3px solid #999999;
}*/

.button-orange{
	position: relative;
	display : inline-block;
	border : 3px solid #ffffff;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
	padding : 4px 10px 3px 10px;
	margin-left : -5px;
	background : #e67e22;
	border-radius : 5px;
	text-align : center;
	font-weight : bold;
	min-width : 130px;
	cursor : pointer;
	color : #ffffff;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

.button-orange:hover{
	background : #f68e32;
	border : 3px solid #f68e32;
}

.button-red{
	position: relative;
	display : inline-block;
	border : 3px solid #ffffff;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
	padding : 4px 10px 3px 10px;
	margin-left : -5px;
	background : #e74c3c;
	border-radius : 5px;
	text-align : center;
	font-weight : bold;
	min-width : 130px;
	cursor : pointer;
	color : #ffffff;
	
	-webkit-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-moz-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-ms-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	-o-transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
	transition : border-color ease-in-out .15s, background-color ease-in-out .15s;
}

.button-red:hover{
	background : #f75c4c;
	border : 3px solid #f75c4c;
}

.title{
	font-size : 15px;
	font-weight : bold;
}

/* Alignments */

.align-right{
	text-align : right;
}

/* Separators */

.separateur-h-dotted{
	margin : 10px 0px;
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-dotted-white{
	margin : 10px 0px;
	border-bottom : 1px dotted #ffffff;
}

.separateur-h-dotted-small-margin{
	margin : 5px 0px;
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-dotted-margin-bottom{
	margin-bottom : 10px;
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-dotted-small-margin-bottom{
	margin-bottom : 5px;
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-dotted-margin-top{
	margin-top : 10px;
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-dotted-no-margin{
	border-bottom : 1px dotted #aaaaaa;
}

.separateur-h-solid{
	border-bottom : 3px solid #aaaaaa;
}

.separateur-h-solid-custom-margin{
	margin : 5px -5px;
	border-bottom : 3px solid #888888;
}

.separateur-h-dotted-fade-small-margin{
	margin : 5px 0px;
	border-bottom : 1px dotted #dddddd;
}

.separateur-h-solid-white-small-margin{
	margin : 5px 0px;
	border-bottom : 1px solid #ffffff;
}

.separateur-h-invisible{
	margin : 10px 0px;
}

.separateur-h-invisible-small-margin{
	margin : 5px 0px;
}

/* Paddings */

.padding{
	padding : 10px;
}

.padding-large{
	padding : 25px;
}

.padding-h{
	padding : 0px 10px;
}

.padding-h-large{
	padding : 0px 25px;
}

.padding-v{
	padding : 10px 0px;
}

.padding-v-large{
	padding : 25px 0px;
}

/* Info bubble */

#info-bubble{
	position : absolute;
	border-radius : 5px;
	background-color : #ffffff;
	box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.5);
	padding : 5px;
	text-align : center;
	top : 0px;
	left : 0px;
	z-index : 1050;
	
	opacity : 0;
	-webkit-transform : translate(0px,30px);
	transform : translate(0px,30px);
	
	-webkit-transition : opacity ease-in-out .15s, transform ease-in-out .15s;
	transition : opacity ease-in-out .15s, transform ease-in-out .15s;
}

#info-bubble::before{
	content :"\A";
    border-style : solid;
    border-width : 0px 10px 10px 10px;
    border-color : transparent transparent #ffffff transparent;
    position : absolute;
    top : -10px;
}