/* CSS Reset */
*,*::before,*::after {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
html {
	line-height:1.15;
	-webkit-text-size-adjust:100%;
}
body {
	font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size:16px;
	font-weight:400;
	line-height:1.5;
	color:#212529;
	text-align:left;
	background-color:#fff;
}
header,nav,main,article,section,aside,footer,figcaption,figure,hgroup {
	display:block;
}
hr {
	box-sizing:content-box;
	height:0;
	overflow:visible;
}
abbr[title],abbr[data-original-title] {
	text-decoration:underline;
	-webkit-text-decoration:underline dotted;
	text-decoration:underline dotted;
	cursor:help;
	border-bottom:0;
	-webkit-text-decoration-skip-ink:none;
	text-decoration-skip-ink:none;
}
address {
	margin-bottom:1rem;
	font-style:normal;
	line-height:inherit;
}
ol,ul,li {
	list-style:none
}
blockquote {
	background-color:#eae6f3;
	border-left:1em solid #5236a0;
	margin:1em 0 1em;
	padding:1em;
	position:relative;
	color:#888;
}
blockquote:before {
	color:#392570;
	content:"\201C";
	font-size:5em;
	line-height:0em;
	margin-right:0em;
	vertical-align:-0.4em;
}
blockquote:after {
	color:#392570;
	content:"\201D";
	font-size:5em;
	position:absolute;
	right:3px;
	bottom:0em;
	line-height:0.1em;
}
b,strong {
	font-weight:bolder;
}
small {
	font-size:80%;
}
sub,sup {
	position:relative;
	font-size:75%;
	line-height:0;
	vertical-align:baseline;
}
sub {
	bottom:-.25em;
}
sup {
	top:-.5em;
}
pre,code,kbd,samp {
	font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
	font-size:1em;
}
pre {
	margin-top:0;
	margin-bottom:1rem;
	overflow:auto;
	-ms-overflow-style:scrollbar;
}
figure {
	margin:0 0 1rem;
}
svg {
	overflow:hidden;
	vertical-align:middle;
}
table {
	border-collapse:collapse;
}
caption {
	padding-top:0.75rem;
	padding-bottom:0.75rem;
	color:#6c757d;
	text-align:left;
	caption-side:bottom;
}
th {
	text-align:inherit;
	text-align:-webkit-match-parent;
}
label {
	display:inline-block;
	margin-bottom:0.5rem;
}
button {
	border-radius:0;
}
button:focus {
	outline:1px dotted;
	outline:5px auto -webkit-focus-ring-color;
}
input,button,select,optgroup,textarea {
	margin:0;
	font-family:inherit;
	font-size:inherit;
	line-height:inherit;
}
button,input {
	overflow:visible;
}
button,select {
	text-transform:none;
}
[role="button"] {
	cursor:pointer;
}
select {
	word-wrap:normal;
}
button,[type="button"],[type="reset"],[type="submit"] {
	-webkit-appearance:button;
}
button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled) {
	cursor:pointer;
}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
	padding:0;
	border-style:none;
}
input[type="radio"],input[type="checkbox"] {
	box-sizing:border-box;
	padding:0;
}
textarea {
	overflow:auto;
	resize:vertical;
}
fieldset {
	min-width:0;
	padding:0;
	margin:0;
	border:0;
}
legend {
	display:block;
	width:100%;
	max-width:100%;
	padding:0;
	margin-bottom:.5rem;
	line-height:inherit;
	color:inherit;
	white-space:normal;
}
progress {
	vertical-align:baseline;
}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
	height:auto;
}
[type="search"] {
	outline-offset:-2px;
	-webkit-appearance:none;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance:none;
}
::-webkit-file-upload-button {
	font:inherit;
	-webkit-appearance:button;
}
output {
	display:inline-block;
}
summary {
	display:list-item;
	cursor:pointer;
}
[hidden] {
	display:none !important;
}
h1,h2,h3,h4,h5,h6 {
	margin-top:0;
	margin-bottom:0.5rem;
	font-weight:500;
	line-height:1.2;
}
h1 {
	font-size:2.5rem;
}
h2 {
	font-size:2rem;
}
h3 {
	font-size:1.75rem;
}
h4 {
	font-size:1.5rem;
}
h5 {
	font-size:1.25rem;
}
h6 {
	font-size:1rem;
}
a {
	color:#333;
	text-decoration:none;
	background-color:transparent;
	cursor:pointer;
}
p {
	margin-top:0;
	margin-bottom:1rem;
}
img {
	border:0;
	vertical-align:middle;
	border-style:none;
}
.text-lines {
	display:block;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
}
.text-2lines {
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.text-3lines {
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.container {
	width:100%;
	padding-left:15px;
	padding-right:15px;
	margin-right:auto;
	margin-left:auto;
}
.container:after {
	content:"";
	display:table;
	clear:both;
}
@media (min-width:576px) {
	.container {
	max-width:540px;
}
}@media (min-width:768px) {
	.container {
	max-width:750px;
}
}@media (min-width:992px) {
	.container {
	max-width:970px;
}
}@media (min-width:1200px) {
	.container {
	max-width:1170px;
}
}.module {
	clear:both;
	overflow:hidden;
	position:relative;
	display:block;
	padding:20px;
	margin-top:20px;
	margin-bottom:20px;
	background:#f1f1f1;
	border-radius:4px;
	box-shadow:0 1px 2px 0 rgba(0,0,0,0.15);
}
.row {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin-right:-15px;
	margin-left:-15px;
}
.col-16,.col-15,.col-14,.col-13,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1,.col-xl-16,.col-xl-15,.col-xl-14,.col-xl-13,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg-16,.col-lg-15,.col-lg-14,.col-lg-13,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md-16,.col-md-15,.col-md-14,.col-md-13,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm-16,.col-sm-15,.col-sm-14,.col-sm-13,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1 {
	position:relative;
	width:100%;
	padding-right:15px;
	padding-left:15px;
}
.col-16 {
	width:100%;
}
.col-15 {
	width:91.66666667%
}
.col-14 {
	width:90%;
}
.col-13 {
	width:83.33333333%;
}
.col-12 {
	width:80%;
}
.col-11 {
	width:75%;
}
.col-10 {
	width:66.66666667%;
}
.col-9 {
	width:58.333333%;
}
.col-8 {
	width:50%;
}
.col-7 {
	width:41.666667%;
}
.col-6 {
	width:33.33333333%;
}
.col-5 {
	width:25%;
}
.col-4 {
	width:20%;
}
.col-3 {
	width:16.66666667%;
}
.col-2 {
	width:10%;
}
.col-1 {
	width:8.33333333%;
}
@media(max-width:1024px) {
	.col-xl-16 {
	width:100%;
}
.col-xl-15 {
	width:91.66666667%
}
.col-xl-14 {
	width:90%;
}
.col-xl-13 {
	width:83.33333333%;
}
.col-xl-12 {
	width:80%;
}
.col-xl-11 {
	width:75%;
}
.col-xl-10 {
	width:66.66666667%;
}
.col-xl-9 {
	width:58.333333%;
}
.col-xl-8 {
	width:50%;
}
.col-xl-7 {
	width:41.666667%;
}
.col-xl-6 {
	width:33.33333333%;
}
.col-xl-5 {
	width:25%;
}
.col-xl-4 {
	width:20%;
}
.col-xl-3 {
	width:16.66666667%;
}
.col-xl-2 {
	width:10%;
}
.col-xl-1 {
	width:8.33333333%;
}
.col-xl-0 {
	display:none!important;
}
}@media(max-width:992px) {
	.col-lg-16 {
	width:100%;
}
.col-lg-15 {
	width:91.66666667%
}
.col-lg-14 {
	width:90%;
}
.col-lg-13 {
	width:83.33333333%;
}
.col-lg-12 {
	width:80%;
}
.col-lg-11 {
	width:75%;
}
.col-lg-10 {
	width:66.66666667%;
}
.col-lg-9 {
	width:58.333333%;
}
.col-lg-8 {
	width:50%;
}
.col-lg-7 {
	width:41.666667%;
}
.col-lg-6 {
	width:33.33333333%;
}
.col-lg-5 {
	width:25%;
}
.col-lg-4 {
	width:20%;
}
.col-lg-3 {
	width:16.66666667%;
}
.col-lg-2 {
	width:10%;
}
.col-lg-1 {
	width:8.33333333%;
}
.col-lg-0 {
	display:none!important;
}
}@media(max-width:768px) {
	.col-md-16 {
	width:100%;
}
.col-md-15 {
	width:91.66666667%
}
.col-md-14 {
	width:90%;
}
.col-md-13 {
	width:83.33333333%;
}
.col-md-12 {
	width:80%;
}
.col-md-11 {
	width:75%;
}
.col-md-10 {
	width:66.66666667%;
}
.col-md-9 {
	width:58.333333%;
}
.col-md-8 {
	width:50%;
}
.col-md-7 {
	width:41.666667%;
}
.col-md-6 {
	width:33.33333333%;
}
.col-md-5 {
	width:25%;
}
.col-md-4 {
	width:20%;
}
.col-md-3 {
	width:16.66666667%;
}
.col-md-2 {
	width:10%;
}
.col-md-1 {
	width:8.33333333%;
}
.col-md-0 {
	display:none!important;
}
}@media(max-width:576px) {
	.col-sm-16 {
	width:100%;
}
.col-sm-15 {
	width:91.66666667%
}
.col-sm-14 {
	width:90%;
}
.col-sm-13 {
	width:83.33333333%;
}
.col-sm-12 {
	width:80%;
}
.col-sm-11 {
	width:75%;
}
.col-sm-10 {
	width:66.66666667%;
}
.col-sm-9 {
	width:58.333333%;
}
.col-sm-8 {
	width:50%;
}
.col-sm-7 {
	width:41.666667%;
}
.col-sm-6 {
	width:33.33333333%;
}
.col-sm-5 {
	width:25%;
}
.col-sm-4 {
	width:20%;
}
.col-sm-3 {
	width:16.66666667%;
}
.col-sm-2 {
	width:10%;
}
.col-sm-1 {
	width:8.33333333%;
}
.col-sm-0 {
	display:none!important;
}
}.offset-16 {
	margin-left:100%;
}
.offset-15 {
	margin-left:91.66666667%
}
.offset-14 {
	margin-left:90%;
}
.offset-13 {
	margin-left:83.33333333%;
}
.offset-12 {
	margin-left:80%;
}
.offset-11 {
	margin-left:75%;
}
.offset-10 {
	margin-left:66.66666667%;
}
.offset-9 {
	margin-left:58.333333%;
}
.offset-8 {
	margin-left:50%;
}
.offset-7 {
	margin-left:41.666667%;
}
.offset-6 {
	margin-left:33.33333333%;
}
.offset-5 {
	margin-left:25%;
}
.offset-4 {
	margin-left:20%;
}
.offset-3 {
	margin-left:16.66666667%;
}
.offset-2 {
	margin-left:10%;
}
.offset-1 {
	margin-left:8.33333333%;
}
