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

body { 
	background: white;
	/* customize_body */ font:normal normal 16px 'Raleway', sans-serif; /* customize_body */
	/* customize_body */ color:#656E72; /* customize_body */
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

p.lead {
	font-size: 1.21875em;
	line-height: 1.6;
}

.subheader {
	line-height: 1.4;
	color: #6f6f6f;
	font-weight: 300;
	margin-top: 0.2em;
	margin-bottom: 0.5em;
}

/* Default Link Styles */
a {
	/* customize_link */ color:#2ba6cb; /* customize_link */
	text-decoration: none;
	line-height: inherit; 
	-moz-transition: color .25s linear;
	-webkit-transition: color .25s linear;
	-o-transition: color .25s linear;
	-ms-transition: color .25s linear;
	transition: color .25s linear;
}
a:hover, a:focus {
    /* customize_link_hover */ color:#10718e; /* customize_link_hover */
}
a img {
    border: none;
}

/* Default paragraph styles */
p {
	font-family: inherit;
	font-weight: normal;
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 1.25em;
}
p aside {
    font-size: 0.875em;
    line-height: 1.35;
    font-style: italic;
}

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
	/* customize_headings */ font:normal normal 16px 'Raleway', sans-serif; /* customize_headings */
	font-weight:500;
	/* customize_headings */ color:#469db8; /* customize_headings */
	text-rendering: optimizeLegibility;
	margin-top: 0.2em;
	margin-bottom: 0.5em;
	line-height: 1.2125em;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-size: 60%;
    color: #6f6f6f;
    line-height: 0;
}
h1 {
	font-size: 2.125em;
}
h2 {
	font-size: 1.6875em;
}
h3 {
	font-size: 1.375em;
}
h4 {
	font-size: 1.125em;
}
h5 {
	font-size: 1.125em;
}
h6 {
	font-size: 1em;
}

hr {
	border: solid #dddddd;
	border-width: 1px 0 0;
	clear: both;
	margin: 1.25em 0 1.1875em;
	height: 0;
}

/* Helpful Typography Defaults */
em,
i {
	font-style: italic;
	line-height: inherit;
}

strong,
b {
	font-weight: bold;
	line-height: inherit;
}

small {
	font-size: 60%;
	line-height: inherit;
}

code {
	font-family: Consolas, "Liberation Mono", Courier, monospace;
	font-weight: bold;
	color: #7f0a0c;
}

/* Lists */
ul,
ol,
dl {
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 1.25em;
	list-style-position: outside;
	font-family: inherit;
}

/* Unordered Lists */
ul li ul,
ul li ol {
	margin-left: 1.125em;
	margin-bottom: 0;
	font-size: 1em;
	/* Override nested font-size change */
}
ul.square, ul.circle, ul.disc {
	margin-left: 1.125em;
}
ul.square li ul, ul.circle li ul, ul.disc li ul {
    list-style: inherit;
}
ul.square {
	list-style-type: square;
}
ul.circle {
	list-style-type: circle;
}
ul.disc {
	list-style-type: disc;
}
ul.no-bullet {
	list-style: none;
}

/* Ordered Lists */
ol {
	margin-left: 1.125em;
}
ol li ul,
ol li ol {
    margin-left: 1.125em;
    margin-bottom: 0;
}

/* Definition Lists */
dl dt {
	margin-bottom: 0.3em;
	font-weight: bold;
}
dl dd {
	margin-bottom: 0.75em;
}

/* Abbreviations */
abbr,
acronym {
	text-transform: uppercase;
	font-size: 90%;
	color: #222222;
	border-bottom: 1px dotted #dddddd;
	cursor: help;
}

abbr {
	text-transform: none;
}

/* Blockquotes */
blockquote {
	margin: 0 0 1.25em;
	padding: 0.5625em 1.25em 0 1.1875em;
	border-left: 1px solid #dddddd;
}
blockquote cite {
    display: block;
    font-size: 0.8125em;
    color: #555555;
}
blockquote cite:before {
	content: "\2014 \0020";
}
blockquote cite a,
blockquote cite a:visited {
	color: #555555;
}

blockquote,
blockquote p {
	line-height: 1.6;
	color: #6f6f6f;
}
  
/* Images -------------------- */
img.left {
	margin:3px 20px 20px 0;
}
img.right {
	margin:3px 0 20px 20px;
}

/* Misc ---------------------- */
.left { float: left; }
.right { float: right; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.hide { display: none; }
.hide-override { display: none !important; }
.highlight { background: #ffff99; }
.button {}
.label {}
.alert-box {}
.panel {}
.callout {}
.th {}
.has-tip {}