@charset "utf-8";
/* CSS Document */

.flexbox {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}

/* In flexbox, a bug in Safari makes invisible all child elements with floats. Floats are not necessary with flexbox. */
.flexbox > *{
	float: none !important;
}

.flex-wrap {
	-webkit-flex-wrap: wrap;
   -webkit-box-wrap: wrap;
	-moz-flex-wrap: wrap;
   -moz-box-wrap: wrap;
	-ms-flex-wrap: wrap;
   -ms-flexbox-wrap: wrap;
   flex-wrap: wrap;
}
.flex-nowrap {
	-webkit-flex-wrap: nowrap;
   -webkit-box-wrap: nowrap;
	-moz-flex-wrap: nowrap;
   -moz-box-wrap: nowrap;
	-ms-flex-wrap: nowrap;
   -ms-flexbox-wrap: nowrap;
   flex-wrap: nowrap;
}
.flex-wrap-reverse {
	-webkit-flex-wrap: wrap-reverse;
   -webkit-box-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
   -moz-box-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
   -ms-flexbox-wrap: wrap-reverse;
   flex-wrap: wrap-reverse;
}
.flex-column {
	-webkit-flex-direction: column;
	-webkit-box-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex-column-reverse {
	-webkit-flex-direction: column-reverse;
	-webkit-box-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.flex-row {
	-webkit-flex-direction: row;
	-webkit-box-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
.flex-row-reverse {
	-webkit-flex-direction: row-reverse;
	-webkit-box-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flexing {
	-webkit-flex: 1 1 0px;
	-webkit-box-flex: 1 1 0px;
	-moz-box-flex: 1 1 0px;
	-ms-flex: 1 1 0px;
	flex: 1 1 0px;
}
.flexing-auto {
	-webkit-flex: 1 1 auto;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.flexing-none {
	-webkit-flex:  0 0 auto;
	-webkit-box-flex:  0 0 auto;
	-moz-box-flex:  0 0 auto;
	-ms-flex:  0 0 auto;
	flex: 0 0 auto;
}
.flex-order-one {
	-webkit-box-ordinal-group: 1;
	-webkit-order: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	order: 1;
}
.flex-order-two {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	order: 2;
}
.flex-order-three {
	-webkit-box-ordinal-group: 3;
	-webkit-order: 3;
	-moz-box-ordinal-group: 3;
	-ms-flex-order: 3;
	order: 3;
}
.flex-order-four {
	-webkit-box-ordinal-group: 4;
	-webkit-order: 4;
	-moz-box-ordinal-group: 4;
	-ms-flex-order: 4;
	order: 4;
}
.flex-space-between {
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	-moz-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-space-around {
	-webkit-justify-content: space-around;
	-webkit-box-pack: justify;
	-moz-justify-content: space-around;
	-moz-box-pack: justify;
	-ms-justify-content: space-around;
	-ms-flex-pack: justify;
	justify-content: space-around;
}
.flex-both-axis-center {
	-webkit-align-items: center;
	-webkit-flex-align: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	-ms-align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-justify-content: center;
	-moz-box-pack: center;
	-ms-justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	justify-content: center;
}
.flex-main-axis-start {
	-webkit-justify-content: flex-start;
	-webkit-box-pack: start;
	-moz-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.flex-main-axis-center {
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-justify-content: center;
	-moz-box-pack: center;
	-ms-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-main-axis-end {
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	-moz-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex-cross-axis-start {
	-webkit-align-items: flex-start;
	-webkit-flex-align: start;
	-moz-align-items: flex-start;
	-ms-flex-align: start;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.flex-cross-axis-center {
	-webkit-align-items: center;
	-webkit-flex-align: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	-ms-align-items: center;
	align-items: center;
}
.flex-cross-axis-end {
	-webkit-align-items: flex-end;
	-webkit-flex-align: end;
	-moz-align-items: flex-end;
	-ms-flex-align: end;
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.flex-cross-axis-baseline {
	-webkit-align-items: baseline;
	-webkit-flex-align: baseline;
	-moz-align-items: baseline;
	-ms-flex-align: baseline;
	-ms-align-items: baseline;
	align-items: baseline;
}
.flex-cross-axis-stretch {
	-webkit-align-items: stretch;
	-webkit-flex-align: stretch;
	-moz-align-items: stretch;
	-ms-flex-align: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
}
.flex-cross-axis-stack-start {
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	align-content: flex-start;
}
.flex-cross-axis-stack-center {
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	align-content: center;
}
.flex-cross-axis-stack-end {
	-webkit-align-content: flex-end;
	-moz-align-content: flex-end;
	-ms-align-content: flex-end;
	align-content: flex-end;
}
.flex-cross-axis-stack-space-between {
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	align-content: space-between;
}
.flex-cross-axis-stack-space-around {
	-webkit-align-content: space-around;
	-moz-align-content: space-around;
	-ms-align-content: space-around;
	align-content: space-around;
}
.flex-cross-axis-stack-stretch {
	-webkit-align-content: stretch;
	-moz-align-content: stretch;
	-ms-align-content: stretch;
	align-content: stretch;
}
.flex-align-self-start {
	-webkit-align-self: flex-start;
	-moz-align-self: flex-start;
	-ms-align-self: flex-start;
	align-self: flex-start;
}
.flex-align-self-center {
	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
	align-self: center;
}
.flex-align-self-end {
	-webkit-align-self: flex-end;
	-moz-align-self: flex-end;
	-ms-align-self: flex-end;
	align-self: flex-end;
}
.flex-align-self-stretch {
	-webkit-align-self: stretch;
	-moz-align-self: stretch;
	-ms-align-self: stretch;
	align-self: stretch;
}