/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

body {
	font-family: chaparral-pro, serif;  font-weight: 600;  font-style: italic;
	background-color:#fff;
	color: #333;
	font-size: 18px;
    line-height: 1.5;
	-webkit-font-smoothing: subpixel-antialiased;
}

a {
	text-decoration: none;
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	/* customize_link */color: #3b4a60;/* customize_link */
}
a:hover, li.filter:hover {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	/* customize_link_hover */color: #5089a2;/* customize_link_hover */
}
b {font-weight: bold;}

p {
	margin: 0 0 10px;
	font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	margin-top: 0px;
    margin-bottom: 10px;
}

h1 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.6em;
	text-decoration: none;
	font-size: 32px;
	color: #3b4a60;
}
h2 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.6em;
	text-decoration: none;
	font-size: 24px;
	color: #3b4a60;
}
h3 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.6em;
	text-decoration: none;
	font-size: 22px;
    color: #3b4a60;
}
h4 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.5em;
	text-decoration: none;
	font-size: 20px;
    color: #5089a2;
}
h5 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.4em;
	text-decoration: none;
	font-size: 14px;
}
h6 {
	font-family: proxima-nova, sans-serif;  font-weight: 800;  font-style: normal;
	line-height: 1.4em;
	text-decoration: none;
	font-size: 12px;
}
.hidden {
	display: none;
}
.block {
	display: block;
}
.clear {
	clear: both;
}

ul ul, ol ul, ul ol, ol ol {
    list-style: none;
	padding-left: 0;
	}

/******************************************************************
	Colors
******************************************************************/
.white {
	color: #FFF;
}
.light-blue {
	color: #69bbd2;
}
.blue {
	color: #5089a2;
}
.dark-blue {
	color: #3b4a60;
}
.purple{
	color: #846374;
}
.dark-gray {
	color: #333;
}
.mid-gray {
	color: #666;
}
.light-gray {
	color: #999;
}
.grey{
	background-color: #f9f9f9;
	padding: 20px 0;
    margin: 0;
}

/* Images -------------------- */
img.pull-left {
	margin:4px 25px 25px 0;
}
img.pull-right {
	margin:4px 0 25px 25px;
}

.center{text-align: center}

/* Misc ---------------------- */
.pull-left { float: left; }
.pull-right { float: right; }
.img-responsive {}
.img-rounded {}
.img-thumbnail {}
.img-circle {}
.thumbnail {}

.inner {}

.lead {}

.section-title {color:#FFF;padding:10px 20px;display:block;background-color: #19AEF5}

.pad-top{padding-top: 20px}

.btn {}

.btn-primary, .btn-secondary, .btn-purple, .btn-submit {
	padding: 10px 20px;
    border-radius: 4px;
	border-style: none;
	-webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    transition: all 400ms ease;
	display: inline-block;
}
hr{border-top: 1px solid #ccc;}