@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	font-size: 12pt;
	--primary-color: #923dc5;
	margin-bottom: 30px;
}
a {
	text-decoration: none;
	color: #00f;
}
a:hover { 
	color: #f00;
	font-weight: bold;
}
.Page {
	width: 19cm;
	height: 27.7cm;
	margin: auto;
	font-size: 15px;
	line-height: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#Tampon {
	font-size: 9pt; 
	margin-top: 10px; 
	width: 200px; 
	line-height: 15px;
}
button { 
	display: inline-block;
	font-size: 10pt; 
	padding: 5px 10px;
	cursor: pointer;
}
button:hover { 
	background: #FFEEEE;  
	background: -webkit-linear-gradient(to top, #DDEFBB, #FFEEEE);  
	background: linear-gradient(to top, #DDEFBB, #FFEEEE); 
}
.header {
	padding: 10px 20px;
	background: #eee;
	border-bottom: 3px ridge lightgrey;
	text-align: center;
}
.flash_error {
	z-index: 850;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
	box-shadow: 1px 1px 3px #000;
	text-shadow : 1px 1px 1px #fff;
	margin: 5px;
}
.success {
	border: 3px ridge green;
	background: #e2f4e6;
	color: green;	
}
.info {
	border: 3px ridge orange;
	background: #f9f6cd;
	color: #f67810;
}
.error {
	border: 3px ridge #eb5a55;
	background: #fce5e4;
	color: red;
}
.alert {
	border: 3px ridge #175a88;
	background: #cae4f6;
	color: blue;
}
#sidebar {
	z-index: 999;
	position: fixed;
	top: 5px;
	left: 5px;
	width: 210px;
	padding: 5px;
	background: url('../img/paille.jpg');
	transform-origin: left;
	transform: perspective(1200px) rotateY(90deg);
	transition: all 400ms ease;
	text-align: left;
	border: 1px solid grey;
	-webkit-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.75);
	box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.75);
}
#sidebar.active { transform: perspective(1200px); }
.Btn { height: 40px; }
.Btn_Menu {
	color: #fff;
	background: #303030;
	text-shadow: 1px 1px 0px #000;
	font-size: 17px;
	width: 100%;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid #ddd;
	letter-spacing: 1px;
}
.Btn_Menu:hover {
	background: #777;
	color: #ff0;
	text-shadow: 1px 1px 3px #f00;
	cursor: pointer;
}
.Btn_Menu img {
	height: 35px;
	vertical-align: middle;
	margin: 0px 10px;
}
#toggle-btn {
	z-index: 999;
	position: fixed;
	left: 10px;
	top: 60px;
	transition: left 200ms linear 0ms, transform 300ms ease 100ms;
}
#toggle-btn.active {
	left: 230px;
	transform: rotate(360deg);
}
#toggle-btn span {
	position: relative;
	top: 0px;
	display: block;
	background: #000;
	width: 30px;
	height: 5px;
	margin: 5px 0px;
	cursor: pointer;
	transition: transform 300ms ease 200ms;
	box-shadow: 1px 1px 0px #fff;
}
#toggle-btn.active span:nth-child(1) {
	top: 10px;
	transform: rotate(45deg);
}
#toggle-btn.active span:nth-child(2) { opacity: 0; }
#toggle-btn.active span:nth-child(3) {
	top: -10px;
	transform: rotate(-45deg);
}
.Content {
	border: 3px ridge grey;
	width: 900px;
	margin: 10px auto 50px;
	padding: 10px 20px;
	background-color: #ffffe0;
}
.footer {
	text-align: center; 
	font-style: italic; 
	font-size: 9pt; 
	font-weight: bold; 
	background: #eee; 
	border: 1px dotted grey; 
	padding: 5px;
}
.Menu_BO {
	visibility: hidden;
	border: 5px ridge orange;
	position: absolute;
	top: 50px;
	left: 5px;
	width: 250px;
	background: #9796f0;
	background: -webkit-linear-gradient(to bottom, #fbc7d4, #9796f0);
	background: linear-gradient(to bottom, #fbc7d4, #9796f0);
}
.Btn_Menu_BO {
	padding: 11px 15px;
	color: #fff;
	border-bottom: 2px ridge lightgrey;
	background: rgba( 0 ,0 ,0 ,0.5 );
	text-shadow: 1px 1px 0px #000;
	text-transform: capitalize;
}
.Btn_Menu_BO:hover {
	color: #ff0;
	background: #000;
	border-bottom: 2px ridge #ff0;
	cursor: pointer;
	background: rgba( 100 ,100 ,100 ,0.5 );
}
.Btn_Open_Menu {
	position: absolute;
	top: 4px;
	left: 20px;
	cursor: pointer;
}
.Btn_Close {
	float: right;
	cursor: pointer;
	height: 27px;
	margin: 3px 3px 0px 0px;
}
.form {
	width: 250px;
	padding: 5px;
	font-size: 12pt;
	font-family: 'Open Sans', sans-serif;
	border: 0px;
	display: block;
	border-bottom: 1px solid #aaa;
	background: #fefefe;
}
.f_select { width: 260px; }
.f_checkbox, .f_radio { 
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.f_textarea { 
	resize: none; 
	font-size: 10pt;
}
.f_field {
	border: 1px dotted grey;
	padding: 20px 10px;
	background: #efefef; 
	-webkit-box-shadow: 4px 4px 5px 0px #333;
	-moz-box-shadow: 4px 4px 5px 0px #333;
	box-shadow: 4px 4px 5px 0px #333;
}
.f_div { margin-bottom: 7px; }
.f_field_sub { 
	border: 1px dotted grey;
	background: #eaeaea;	
}
.f_label, .f_legend {
	font-size: 8pt;
	font-style: italic;
	color: grey;
	margin-top: 3px;
}
.f_error {
	font-size: 8pt;
	font-style: italic;
	color: red;
	margin-top: 2px;
}
.f_select2 {
	width: 110px;
	padding: 5px;
	font-size: 11pt;
	font-family: 'Open Sans', sans-serif;
	border: 0px;
	display: block;
	border-bottom: 1px solid #aaa;
	margin-left: 7px;
}
.f_files {
	padding: 5px; 
	margin-bottom: 10px; 
	padding-bottom: 10px; 
	background: #ddd;
}
.range_value {
	display: inline-block; 
	background: #ddd; 
	border: 1px dotted grey; 
	padding: 5px 0px; 
	width: 30px; 
	text-align: center; 
	vertical-align: middle;
}
.Btn_Menu_Index {
	padding: 15px 10px;
	font-size: 10pt;
	width: 110px;
	vertical-align: top;
	color: #555;
	text-shadow: 1px 1px 1px #fff; 
}
.Btn_Menu_Index:hover {
	color: #fff;
	background: #a0adb8;
	background: -webkit-linear-gradient(to bottom, #eef2f3, #a0adb8);  
	background: linear-gradient(to bottom, #eef2f3, #a0adb8);
	text-shadow: 2px 2px 0px var(--primary-color); 
}
.Btn_Menu_Index img { height: 40px; }
.Titre_Page {
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	font-size: 17pt;
	color: var(--primary-color);
	letter-spacing: 2px;
}
.Titre_Page img {
	height: 60px;
	vertical-align: middle;
	margin-right: 10px;
}
.Btn_Users { width: 50px; }
.Btn_Users img { height: 30px; }
.Bubble, .Bubble2 {
	color: #fff;
	letter-spacing: 1px;
	border: 3px ridge royalblue;
	padding: 7px 20px;
	border-radius: 7px 7px 7px 7px;
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	background: #7f7fd5;  
	background: -webkit-linear-gradient(to bottom, #91eae4, #86a8e7, #7f7fd5);  
	background: linear-gradient(to bottom, #91eae4, #86a8e7, #7f7fd5);
}
.Bubble2:hover { cursor: pointer; }
.Tablo { border-color: lightgrey; }
.Tablo th {
	color: #fff;
	text-shadow: 2px 2px 2px #000;
	height: 30px;
	font-weight: normal;
	background: #ffe259;
	background: -webkit-linear-gradient(to top, #ffa751, #ffe259);
	background: linear-gradient(to top, #ffa751, #ffe259);
}
.Tablo tr { background: #eeeeee; }
.Tablo tr:hover, .Tablo tr:nth-child(odd):hover { background: #dddddd; }
.Tablo tr:nth-child(odd) { background: #ffffff; }
.noDepassText {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.Icone_Action {
	height: 25px;
	cursor: pointer;
	vertical-align: bottom;
}
.Btn_Small { 
	padding: 3px; 
	vertical-align: top;
}
.Btn_Small img { height: 20px; }
.Div_Tablo {
	border: 3px ridge #eee;
	overflow-y: scroll;
	height: 700px;
	background: #ffffd7;
	padding: 3px;
}
.Img_Ferme {
	border: 3px outset lightgrey;
}
.Img_Ferme:hover {
	cursor: pointer;
	border: 3px inset lightgrey;	
}
.Btn_Gite {
	width: 276px;
	height: 60px;
	margin: 2px;
	text-align: left;
	font-size: 12pt;
}
.Btn_Gite img {
	height: 35px; 
	vertical-align: middle; 
	margin-right: 10px;
}
.Btn_Gite_Square {
	width: 52px;
	height: 45px;
	margin: 2px;
}
.Btn_Gite_Square img {
	height: 25px;
}
.Div_Equip {
	display: inline-block;
	border: 1px dotted grey;
	width: 250px;
	height: 300px;
	overflow-y: scroll;
	background: #fff;
}
.Div_Equip_Titre {
	text-align: center; 
	width: 100%; 
	padding: 10px 0px; 
	margin-bottom: 5px;
	color: #fff;
	text-shadow: 1px 1px 0px #000;
	border-bottom: 1px dotted grey;
	background: #56ccf2;  
	background: -webkit-linear-gradient(to bottom, #2f80ed, #56ccf2);  
	background: linear-gradient(to bottom, #2f80ed, #56ccf2); 
}
.Div_Miniature {
	display: inline-block;
	width: 150px; 
	height: 120px; 
	border: 2px outset lightgrey;
	margin: 1px 0px;
	opacity: 1;
}
.Div_Miniature:hover {
	opacity: .7;
	cursor: pointer; 
	border: 2px outset #000;
}
.f_label_gite {
	display: inline-block;	
	font-size: 8pt;
	font-style: italic;
	color: grey;
	width: 130px;
	text-align: right;
	margin-right: 5px;
}
.Cube {
	display: inline-block;
	border: 1px solid grey;
	width: 30px;
	height: 20px;
	vertical-align: middle;
}
.Div_entete {
	border-bottom: 1px solid lightgrey;
	padding: 5px;
	list-style: square;
	margin: 10px 0px;
	color: grey;
	font-size: 11pt;
	font-style: italic;
}
.Div_entete:before { 
	content:"• ";
	margin-left: 10px;
}
.Btn_Options {
	border: 3px ridge lightgrey;
	position: fixed;
	top: 7px;
	right: 7px;
	padding: 5px;
	background: rgba( 0, 0, 0, 0.5);
}
.Message_Post {
	background: #fff;
	border: 1px dotted grey;
	padding: 10px;
	margin: 10px 0px;
}
.Message_Post_Note {
	border: 3px ridge lightgrey;
	padding: 7px 0px;
	width: 100px;
	background: #d9a7c7;
	background: -webkit-linear-gradient(to bottom, #fffcdc, #d9a7c7);
	background: linear-gradient(to bottom, #fffcdc, #d9a7c7);
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
}
.Btn_Reserver {
	float: right; 
	margin-top: -8px;
	color: #fff;
	padding: 7px 10px;
	background: #e52d27;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #b31217, #e52d27);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #b31217, #e52d27); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.Btn_Reserver:hover { color: #000; }
#Popup_Tarifications {
	visibility: hidden;
	border: 5px ridge orange;
	position: absolute;
	top: 10px;
	left: 10px;
	width: 400px;
	padding-bottom: 10px;
	background: #9796f0;
	background: -webkit-linear-gradient(to bottom, #fbc7d4, #9796f0);
	background: linear-gradient(to bottom, #fbc7d4, #9796f0);
}
/*-----------------------------------------------
  	POPUP MODALE
-----------------------------------------------*/
	.oModal {
		position: fixed;
		z-index: 99999;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.8);
		opacity: 0;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		pointer-events: none;
		overflow-y: scroll; 
	}
	.oModal:target {
		opacity: 1;
		pointer-events: auto;
	}
	.oModal:target > div {
		margin: 2% auto;
		transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
	}
	.oModal > div {
		position: relative;
		margin: 1% auto;
		padding: 5px;
		border-radius:5px;
		background: #eee;
		transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
	}
	.oModal_titre {
		border: 1px solid grey;
		color: #fff;
		text-shadow: 2px 2px 1px #000;	
		padding: 10px;
		letter-spacing: 1px;
		font-size: 13pt;
		margin : 10px 5px;
		text-align: center;
		text-transform: uppercase;
		background: #fceabb; /* Old browsers */
		background: -moz-linear-gradient(top,  #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top,  #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom,  #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 ); /* IE6-9 */
	}
	.oModal iframe {
		border: 1px dotted grey;
		width: 98%;
		height: 600px;
		background: #fff;
		margin-left: 1%;
	}
	.oModal_Btn_Close {
		float: right;
		height: 30px;
	}
/*-----------------------------------------------
	FLIPSWITCH
-----------------------------------------------*/
	.flipswitch {
		position: relative;
		-webkit-user-select:none;
		-moz-user-select:none;
		-ms-user-select: none;
		display: inline-block;
	}
	.flipswitch input[type=checkbox] { display: none; }
	.flipswitch-label {
		display: block;
		overflow: hidden;
		cursor: pointer;
		border: 1px solid #888;
		border-radius: 3px;
	}
	.flipswitch-inner {
		width: 200%;
		margin-left: -100%;
		-webkit-transition: margin 0.3s ease-in 0s;
		-moz-transition: margin 0.3s ease-in 0s;
		-ms-transition: margin 0.3s ease-in 0s;
		-o-transition: margin 0.3s ease-in 0s;
		transition: margin 0.3s ease-in 0s;
	}
	.flipswitch-inner:before, .flipswitch-inner:after {
		float: left;
		width: 50%;
		height: 25px;
		line-height: 25px;
		padding: 0;
		font-size: 12px;
		color: white;
		font-weight: bold;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.flipswitch-inner:before {
		background-color: #b8deff;
		color: #333333;
	}
	.flipswitch-inner:after {
		background-color: #4275ff;
		color: #fff;
		text-align: right;
	}
	.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner { margin-left: 0; }
	.fs_bool:before { content: "Oui"; }
	.fs_bool:after { content: "Non"; padding-right: 11px; }
/*-----------------------------------------------
	DIAPORAMA
-----------------------------------------------*/
	.gallery {
		border: 1px dotted grey;
		width: 172px;
		height: 600px;
		overflow-y: scroll;
		background: #fff;
	}
	.img-c {
		width: 150px;
		height: 150px;
		float: left;
		position: relative;
		overflow: hidden;
		border: 1px solid #777;
		margin: 1px 1px 3px 1px;
	}
	.img-w {
		position: absolute;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		cursor: pointer;
		transition: transform ease-in-out 300ms;
	}
	.img-w img { display: none; }
	.img-c { transition: width ease 400ms, height ease 350ms, left cubic-bezier(0.4, 0, 0.2, 1) 420ms, top cubic-bezier(0.4, 0, 0.2, 1) 420ms; }
	.img-c:hover .img-w {
		transform: scale(1.08);
		transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
	}
	.img-c.active {
		width: 800px !important;
		height: 600px !important;
		position: absolute;
		z-index: 2;
	}
	.img-c.postactive {
		position: absolute;
		z-index: 2;
		pointer-events: none;
	}
	.img-c.active.positioned {
		margin: auto;
		left: 50px !important;
		top: 50px !important;
		transition-delay: 50ms;
		border: 2px solid #fff;
	}
	.gallery_libelle {
		color: #000; 
		font-size: 9pt; 
		text-align: center; 
		margin: 7px 0px;
		text-shadow: 1px 1px 3px #555;
	}
/*-----------------------------------------------
	AGENDA
-----------------------------------------------*/
	.year {
		padding: 7px;
		font-size: 25pt;
		color : grey;
		text-shadow: 1px 1px 1px #000;
		font-weight: bold;
		cursor: pointer;
		display: inline-block;
	}
	.activeYear { color: #f00; }
	.months {
		font-size: 11pt;
		color: #fff;
		text-shadow: 1px 1px 2px #000;
		text-transform: uppercase;
		display: inline-block;
		border: 1px solid grey;
		width: 40px;
		text-align: center;
		padding: 9px 0px;
		margin-bottom: 2px;
		background: #e7f3fd; /* Old browsers */
		background: -moz-radial-gradient(center, ellipse cover, #e7f3fd 0%, #489de2 100%); /* FF3.6-15 */
		background: -webkit-radial-gradient(center, ellipse cover, #e7f3fd 0%,#489de2 100%); /* Chrome10-25,Safari5.1-6 */
		background: radial-gradient(ellipse at center, #e7f3fd 0%,#489de2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7f3fd', endColorstr='#489de2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	}
	.months:hover {
		color: #fff;
		text-shadow: 1px 1px 1px orange;
		background: #555;
		border: 1px solid #26d6e6;
		cursor: pointer;
	}
	.day {
		border: 1px solid lightgrey;
		padding: 3px 13px 13px 3px;
	}
	.day:hover {
		background: #ddd;
		border: 1px solid #555;
		cursor: pointer;
	}
	.selectDay {
		color : #fff;
		background: #dfc9ad;
		text-shadow: 1px 1px 1px #000;
		border:1px solid #bf724d;
	}
	.colsp {
		background: #eee;
		border: 1px solid lightgrey;
	}
	.monthTh {
		background: royalblue;
		color: #fff;
		padding: 5px 0px;
		font-weight: normal;
	}
	.active {
		color : #f00;
		border:1px solid #f2751a;
		text-shadow: 1px 1px 1px #fff;
		background: rgb(241,231,103); /* Old browsers */
		background: -moz-radial-gradient(center, ellipse cover,  rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); /* FF3.6-15 */
		background: -webkit-radial-gradient(center, ellipse cover,  rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
		background: radial-gradient(ellipse at center,  rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	}
/*-----------------------------------------------
	SWITCH
-----------------------------------------------*/
	.switch {
		position: relative;
		height: 35px;
		width: 240px;
		margin: auto;
		background: rgba(0, 0, 0, 0.25);
		border-radius: 3px;
		-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
		box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.7), 0 1px rgba(255, 255, 255, 0.1);
	}
	.switch-label {
		position: relative;
		z-index: 2;
		float: left;
		width: 116px;
		line-height: 35px;
		font-size: 13px;
		color: rgba(255, 255, 255, .8);
		text-align: center;
		text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
		cursor: pointer;
	}
	.switch-label:active { 
		color: #ff0;
	}
	.switch-label-off { padding-left: 2px; }
	.switch-label-on { padding-right: 2px; }
	.switch-input { display: none; }
	.switch-input:checked + .switch-label {
		color: #fff;
		text-shadow: 1px 1px 2px #000;
		-webkit-transition: 0.15s ease-out;
		-moz-transition: 0.15s ease-out;
		-ms-transition: 0.15s ease-out;
		-o-transition: 0.15s ease-out;
		transition: 0.15s ease-out;
		-webkit-transition-property: color, text-shadow;
		-moz-transition-property: color, text-shadow;
		-ms-transition-property: color, text-shadow;
		-o-transition-property: color, text-shadow;
		transition-property: color, text-shadow;
	}
	.switch-input:checked + .switch-label-on ~ .switch-selection {
		left: 120px;
		/* Note: left: 50%; doesn't transition in WebKit */
	}
	.switch-selection {
		position: absolute;
		z-index: 1;
		top: 2px;
		left: 2px;
		display: block;
		width: 116px;
		height: 31px;
		border-radius: 3px;
		background-color: #65bd63;
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dd993), color-stop(100%, #65bd63));
		background-image: -webkit-linear-gradient(top, #9dd993, #65bd63);
		background-image: -moz-linear-gradient(top, #9dd993, #65bd63);
		background-image: -ms-linear-gradient(top, #9dd993, #65bd63);
		background-image: -o-linear-gradient(top, #9dd993, #65bd63);
		background-image: linear-gradient(top, #9dd993, #65bd63);
		-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
		-webkit-transition: left 0.15s ease-out;
		-moz-transition: left 0.15s ease-out;
		-ms-transition: left 0.15s ease-out;
		-o-transition: left 0.15s ease-out;
		transition: left 0.15s ease-out;
	}
