/*
 * Topography styling 
 * Handles the visual styling of elements (fonts, colours, sizes etc)
 */


body {
	font-family: "proxima-nova",sans-serif;
	font-style: normal;
	font-weight: 300;
}

body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'Pathway Gothic One', sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	position: relative;
	color: #155fa4;
	margin: 10px 0px;
}

h1{
	font-size: 200%;
	margin-bottom: 18px;
}
h2{
	font-size: 160%;
	margin-bottom: 14px;
}
h3{
	font-size: 130%;
	margin-bottom: 10px;
}
h4{
	font-size: 110%;
	margin-bottom: 7px;
}
h5{
	
}
h6{
	
}

/*page and post tiles*/
h1.entry-title,
h1.archive-title{
	margin-bottom: 0px;
}

/*Fancy blue line under certain titles*/
.title-underline{
	overflow: hidden;
}

.title-underline:after{
	content: '';
	position: absolute;
	height: 1px;
	background: #155fa4;
	width: 50%;
	bottom: 0px;
	left: 0px;
	-webkit-transform: translate(-50%,0%);
	-webkit-transform: translate3d(-50%,0,0);
	-moz-transform: translate(-50%,0);
	-moz-transform: translate3d(-50%,0,0);
	transform: translate(-50%,0);
	transform: translate3d(-50%,0,0);
	-webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
/*hover over the title or other elements*/
.article-content:hover .title-underline:after,
.entry-content:active .title-underline:after,
.post-listing .post:hover .title-underline:after,
.post-listing .post:active .title-underline:after,
.widget:hover .title-underline:after,
.widget:active .title-underline:after,
.title-underline:hover:after,
.title-underline:active:after {
	-webkit-transform: translate(0%,0%);
	-webkit-transform: translate3d(0%,0,0);
	-moz-transform: translate(0%,0);
	-moz-transform: translate3d(0%,0,0);
	transform: translate(0%,0);
	transform: translate3d(0%,0,0);
}




p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}


/*
 * Link Styling
 * Default styling for anchor tags and their states
 */
a {
	color: inherit;
	text-decoration: none;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

