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

body {
	background:#fff;
    color: #41474c;
    font-family: Arial,sans-serif;
    font-size: 16px;
    line-height: 1.375;
	-webkit-font-smoothing: antialiased;
}

a {
	color: #108fb9;
	text-decoration: underline;
}
a:visited {
	color:#4d6f8c;
}
a:hover,
a:focus {
	color: #ff4612;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "myriad-pro",sans-serif;
	font-weight: 600;
  	line-height: 1.2;
  	color: #000;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a
{
	text-decoration:none!important;
}

h1,
h2,
h3
{
  margin-top: 0;
  margin-bottom: 20px;
}

h4,
h5,
h6
{
	font-family:Arial, Helvetica, sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
}
h2 {
  font-size: 24px;
  border-bottom:1px solid #808080;
  padding:0 0 6px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
  line-height:1.222em;
}
h5 {
  font-size: 16px;
  line-height:1.375em;
  margin-top:0;
  margin-bottom:6px;
}
h6 {
  font-size: 14px;
  line-height:1.429em;
  margin-bottom:4px;
}

p {
  margin: 0 0 20px;
}

hr {
	border-color:#ccc;
	border-style:dotted;
}

blockquote p {

}

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

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

.inner {}

.lead {}

.list-inline {}

.btn-rounded {
	background-color:#108fb8;
	color:#fff!important;
	line-height:1;
	text-decoration:none!important;
	padding:7px 14px;
	display:block;
	border-radius:25px;
	margin-bottom:-5px;
}
.btn-rounded:hover {
	background-color:#ff4612;
}