/*==========================
General html element styles
============================*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	font-size: 18px;
	font-family: UniversLTStd, sans-serif;
	color: #333333;
	background: #ffffff;
	background: #DEDEDE;
}

body.menu-active,
body.overlay {
	overflow: hidden;
}

/*-- Paragraphs --*/
p {
	font-family: UniversLTStd;
	color: #585858;
	font-size: 16px;
	line-height: 25px;
}

.smalltext {
	font-size: 12px;
	line-height: 1.5em;
}

/*-- Links --*/
a {
	color: #0070BA;
	text-decoration: underline;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-ms-transition: color 0.3s;
	transition: color 0.3s;
}

a:hover {
	color: #60ADE4;
	text-decoration: none;
}

/* Accessiblilty Hide Text */
.access-hide {
	color: transparent;
	font-size: 0;
}

/*-- Headers --*/
h1, h2, h3, h4, h5, h6, th {
	text-transform: uppercase;
	font-family: UniversLTStd-Black;
	font-weight: normal;
	font-style: normal;
}

h1 {
	color: #2E2E2E;
	font-size: 50px;
	margin-bottom: 15px;
}

h2 {
	color: #2E2E2E;
	font-size: 26px;
}

h3 {
	color: #737373;
	font-size: 20px;
}

h4 {
	color: #BDBDBD;
	font-size: 18px;
}

h5 {
	color: #909090;
	font-size: 14px;
}

h6 {
	color: #909090;
	font-size: 12px;
}

/* Product pages */
.product h1 {
	font-size: 38px;
}

.product h2 {
	color: #737373;
	font-size: 28px;
}

.product h3 {
	color: #2E2E2E;
	font-size: 21px;
}

.product h4 {
	color: #0070BA;
	font-family: UniversLTStd-Bold;
	font-size: 22px;
}


/*-- Lists --*/
ol {
	display: inline-block;
}

ul {
	list-style: none;
	list-style-type: none;
	padding-left: 20px;
	display: inline-block;
}

ul > li ul,
ol > li ol {
	display: block;
}

li {
	font-family: UniversLTStd;
	font-size: 15px;
	line-height: 30px;
}

li a {}

ol li {}

ol > li > ol > li {
	list-style-type: lower-alpha;
}

ul li {
	background-image: url('/assets/img/icons/li-circle-icon.svg');
	background-position: 0 12px;
	background-repeat: no-repeat;
	padding-left: 20px;
}

/*-- Tables --*/
table {
	margin: 20px 0;
	width: 100%;
	font-size: .89em;
	text-align: left;
	border-collapse: separate;
}

table .responsiveText-wrapper {
	display: table;
	width: 100%;
}

tbody tr:nth-child(even) {background: #EEE;}
tbody tr:nth-child(odd) {background: #F6F6F6;}
tbody td[rowspan] {background: #DDD; border-top: 1px solid #F2F2F2; border-bottom: 1px solid #F2F2F2;}
tbody tr:first-child td {border-top: none !important;}
tbody tr:last-child td {border-bottom: 1px solid #F2F2F2;}

td {
	font-family: UniversLTStd;
	color: #585858;
}

th {
	font-size: 1em;
	color: #F6F6F6;
	background: #2E2E2E;
}

td, th {
	border: none;
	padding: .5em;
	line-height: 1.2;
}

table p, table h1, table h2, table h3, table h4, table h5, table h6, table ul, table li {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 1em !important;
	line-height: 1.2;
}

table li {
	margin: 0 !important;
	padding-left: 1em !important;
	background-position: left .45em;
	background-size: .4em;
}


/*-- Horizontal Rule --*/
hr {
	border: none;
	outline: none;
	height: 1px;
	background: #E8E8E8;
	margin: 10px 0;
}

/*-- i used for icons --*/
i {
	font-style: normal;
}

/*-- Blockquotes --*/
blockquote {
	border-left: 6px solid #2E2E2E;
	padding: 17px 25px;
	font-size: 22px;
	font-family: UniversLTStd-LightObl;
    font-weight: normal;
    font-style: normal;
	color: #2273AD;
	font-style: italic;
}

blockquote p {
	margin: 0;
	font-family: UniversLTStd-LightObl;
    font-weight: normal;
    font-style: normal;
	font-size: 22px;
	font-style: italic;
	color: #2273AD;
	line-height: 40px;
}

blockquote cite {
	font-family: UniversLTStd;
    font-weight: normal;
    font-style: normal;
	font-size: 16px;
	color: #333333;
}


/*-- Iframes --*/
iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
}


/*-- Forms --*/

label {
	font-family: UniversLTStd;
	color: #585858;
	font-size: 16px;
	line-height: 25px;
}

input,
textarea {

}

input[type="file"] {
    max-width: 350px;
    width: 100%;
    font-size: 13px;
}

textarea {
	width: 90%;
	max-width: 500px;
}


@media (max-width: 1000px) {
	h1 { font-size: 45px; }
}

@media (max-width: 767px) {
	h1 { font-size: 40px; }
	.product h1 { font-size: 32px; }
	textarea { width: 100%; }
	/*h2 { font-size: 36px; }
	h3 { font-size: 32px; }
	h4 { font-size: 28px; }
	h5 { font-size: 24px; }
	h6 { font-size: 20px; }*/
}

@media (max-width: 640px) {
	h1 {
		font-size: 32px;
    	word-wrap: break-word;
	}
}