/*
 Table Of Contents

 1.) Eric Meyer Global CSS Reset
 2.) Basic Stracture
 3.) Global Typography
 ---------------------------------------*/


/*
1.) Eric Meyer Global CSS Reset
---------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
img {
	max-width:100%;

}


/*
 2.) Global TypoGraphy
 ---------------------------------------*/
*,*:after,*:before{box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;}
body {
	font-family: 'Poppins', sans-serif; 
	font-size:87.5%;
	line-height: 1;
	color:#010101;
}
html {
	-webkit-text-size-adjust: 100%;
	font-size-adjust: none;
}
input, textarea{
	font-family: 'Poppins', sans-serif; 
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	margin-bottom: 10px;
}
h1 {
	font-size: 3.286em;
	line-height: 135%;
	color: #fff;
}
h2 {
	font-size: 2.143em;
	line-height: 140%;
	margin-bottom: 20px;
	text-transform:uppercase;
	color:#303030;
}
h3 {
	font-size: 1.571em;
	line-height: 150%;
}
h4 {
	font-size: 0.929em;
	line-height: 120%;
	margin-bottom: 15px
}
h5 {
	font-size: 1em;
	line-height: 110%;
	color:#fff;
}
h6 {
	font-size: 1em;
	line-height: 110%;
}
a {
	color: #000;
}
a:hover {
	color: #4b68c5
}
p {
	font-size: 1em;
	line-height: 140%;
	color: #38302e;
	margin-bottom: 15px;
}
p  a {
	text-decoration: underline;
	color: #3fa9f5;
}
p span {
	color: #5b912a;
}
strong {
	font-weight: bold;
}


blockquote {
	margin: 10px;
	font-style: italic;
	font-family: 'Archer SSm A', 'Archer SSm B';
	font-size: 30px;
}
li {
	font-size: 1em;
	line-height: 16px;
}

ul {
	list-style: disc;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}

dl {
	margin: 0 0 10px;
}
dt {
	font-weight: bold;
}
dd {
	margin-left: 30px;
	margin-bottom: 10px;
}
strong {
	font-weight: bold;
}
cite, em, i {
	font-style: italic;
}

blockquote em, blockquote i, blockquote cite {
	font-style: normal;
}
blockquote cite {
	color: #666;
	font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
pre {
	background: #f4f4f4;
	font: 13px "Courier 10 Pitch", Courier, monospace;
	line-height: 1.5;
	margin-bottom: 1.625em;
	overflow: auto;
	padding: 0.75em 1.625em;
}

code, kbd, samp, var {
	font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym, dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}

address {
	display: block;
	margin: 0 0 1.625em;
	font-style: normal;
	font-size:1.4em;
	line-height:1.6
}

sup, sub {
	font-size: 10px;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: smaller;
}

table {
	border: 1px solid #d2d2d2;
	color: #000000;
	width: 100%;
	margin: 10px 0;
}
th {
	background: #ccc;
	font-weight: bold;
}
td, th {
	border: 1px solid #AAAAAA;
	padding: 5px;
	font-size: 12px;
	line-height: 20px;
	color: #000;
}

/*
 4.) Global Form Elements
 ---------------------------------------*/

form {
	margin: 10px 0;
}
label {
	font-size: 1.071em;
	line-height: 18px;
	margin-bottom: 8px;
	display: inline;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
	border: 1px solid #c3c3c3;
	padding: 6px 12px;
	width: 100%;
	font-size: 1em;
	line-height: 1;
	background: #fff;
	color: #666;
	margin-bottom: 10px;
	border-radius: 6px;
	font-family: 'Poppins', sans-serif; 
	box-shadow:1px 1px 3px #dcdcdc inset;
	line-height:20px
}
textarea, select{padding:7px; border-radius: 6px;
	width: 100%;
	font-size: 1em; border: 1px solid #c3c3c3; box-shadow:1px 1px 3px #dcdcdc inset;
	color: #666; font-family: 'Poppins', sans-serif;  margin-bottom: 10px; }
	
input[type="submit"], button {
	background: #1d3a7c;
	cursor: pointer;
	border-radius: 5px;
	padding: 4px 11px;
	color: #fff;
	font-size: 1em;
	border: none;
	color:#fff;
}
input[type="submit"]:hover, .newsletter input[type="submit"], button:hover {
	background: #4a4747
}
select {
	font-family: 'Poppins', sans-serif; 
}


.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display:block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.625em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.625em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

ul li, ol li{list-style:none;}


