@charset "utf-8";

/*======================================

	Base CSS
	Copyright (c) 2019-, PROACTIVE Inc. All rights reserved.

=======================================*/

h1, h2, h3, h4, h5, h6, strong, b, em, th {
	font-weight: normal;
	font-style: normal;
}

ul, ol {
	list-style: none;
}

sup {
	vertical-align: super;
	font-size: .75em;
}

sub {
	vertical-align: bottom;
	position: relative;
	bottom: -0.1em;
	font-size: .75em;
}

table {
}

table tr th,
table tr td {
	padding: .25em .5em;
	text-align: left;
	vertical-align: top;
}

table tr th {
	white-space: nowrap;
}
dl {

}
dt {
	margin-bottom: .25em;
}

dd {
	margin: 0 0 1.5em 1em;
}

/*-- flexbox --*/
.flex--wrap,
.flex--start,
.flex--center,
.flex--space-between,
.flex--space-around {
	display: flex;
}
.flex--wrap {
	flex-wrap: wrap;
}
.flex--start {
	justify-content: flex-start;
}
.flex--center {
	justify-content: center;
}
.flex--space-between {
	justify-content: space-between;
}
.flex--space-around {
	justify-content: space-around
}
.flex--stretch--off {
	align-items: flex-start;
}
.flex-col-4 {
	width: 50%;
}
.flex-col-3,
.flex-col-2 {
	width: 100%;
	margin-bottom: 1rem;
}

@media screen and (min-width: 769px) {
	.flex-col-2 {
		width: 48%;
	}
	.flex-col-2:nth-of-type(odd) {
		margin-right: 1%;
	}
	.flex-col-2:nth-of-type(even) {
		margin-left: 1%;
	}
    .flex-col-3 {
		width: 30%;
	}
	.flex-col-4 {
		width: 25%;
		text-align: center
	}
}

/*-- Margin --*/
.m-btm--05 {
	margin-bottom: .5rem;
}

.m-btm--1 {
	margin-bottom: 1rem;
}

.m-btm--2 {
	margin-bottom: 2rem;
}

.m-btm--3 {
	margin-bottom: 3rem;
}

.m-btm--4 {
	margin-bottom: 4rem;
}

.m-btm--5 {
	margin-bottom: 5rem;
}

.m-top--05 {
	margin-top: .5rem;
}

.m-top--1 {
	margin-top: 1rem;
}

.m-top--2 {
	margin-top: 2rem;
}

.m-top--3 {
	margin-top: 3rem;
}

.m-top--4 {
	margin-top: 4rem;
}

.m-left--1 {
	margin-left: 1rem;
}

.m-left--2 {
	margin-left: 2rem;
}

.m-left--3 {
	margin-left: 3rem;
}

.m-left--4 {
	margin-left: 4rem;
}

.m-left--5 {
	margin-left: 5rem;
}

.m-right--1 {
    margin-right: 1rem;
}

.m-right--2 {
    margin-right: 2rem;
}

.m-right--3 {
    margin-right: 3rem;
}

.m-right--4 {
    margin-right: 4rem;
}

.m-right--5 {
    margin-right: 5rem;
}

/*-- List --*/
.list--disc,
.list--sq,
.list--num,
.list--notes,
.list--roman {
	/*line-height: 1.6;*/
}

.list--disc,
.list--sq,
.list--num,
.list--roman {
	margin-left: 2em;
}

.list--notes {
	margin-left: 1em;
}

.list--notes-2 {
	margin-left: 2em;
}

.list--disc > li,
.list--sq > li,
.list--num > li,
.list--notes > li,
.list--notes-2 > li,
.list--roman >li {
	margin-bottom: .5em;
}

.list--disc {
	list-style: disc;
}

.list--sq {
	list-style: square;
}

.list--num {
	list-style: decimal;
}

.list--roman {
    list-style: upper-roman;
}

.list--notes > li {
	text-indent: -1em;
}

.list--notes-2 > li {
	text-indent: -2em;
}

/*-- File Link --*/
.list--link {
	margin: 1.5rem 0rem 1.5rem 1rem;
}

.list--link > li {
	margin-bottom: 1.5em;
	padding-bottom: .5rem;
	padding-left: 2.5em;
	text-indent: -2.5em;
	border-bottom: dotted 1px #ccc;
}

.list--link > li a {
	padding: .5em 0 .5em 2.5em;
}

.list--link > li > a[href$=".pdf"] {
	background: url(../img/icon_pdf.svg) left center no-repeat;
	background-size: 2em 2em;
}

.list--link > li a[href$=".docx"],
.list--link > li a[href$=".doc"]{
	background: url(../img/icon_doc.svg) left center no-repeat;
	background-size: 2em 2em;
}

.list--link > li a[href$=".xlsx"],
.list--link > li a[href$=".xls"]{
	background: url(../img/icon_xls.svg) left center no-repeat;
	background-size: 2em 2em;
}

.list--link > li a[href$=".pptx"],
.list--link > li a[href$=".ppt"]{
	background: url(../img/icon_ppt.svg) left center no-repeat;
	background-size: 2em 2em;
}

.list--link > li a[href^="http://"],
.list--link > li a[href^="https://"] {
	background: url(../img/icon_link.svg) left center no-repeat;
	background-size: 1.5em 1.5em;
}
.list--link > li > .html-icon {
	background: url("../img/icon_html.svg") left center no-repeat;
	background-size: 2em 2em;
}

.list--link > li a[href$=".zip"] {
    background: url(../img/icon_zip.png) left center no-repeat;
    background-size: 1.5em 1.5em;
}

/*-- Text --*/
.ft-w--bold {
	font-weight: bold;
}

.ft--italic {
	font-style: italic;
}

.txt--center {
	text-align: center;
}

.txt--right {
	text-align: right;
}

.txt--under-line {
	text-decoration: underline;
}

.txt--strikethrough {
	text-decoration: line-through;
}

.txt--strikethrough--R {
	text-decoration: line-through;
    color: #D1495B;
}
.txt--strikethrough--R span {
    color: #333;
}

/*-- IMG Layout --*/
.img--left {
	float: left;
	margin: .25rem 3rem .5rem 0;
}

.img--right {
	float: right;
	margin: .25rem 0 .5rem 1rem;
}


/*---------------------------------------
	MODULES
---------------------------------------**/
.clearfix {zoom:1;}
.clearfix:after {
	content: ""; 
	display: block; 
	clear: both;
}
