/*
Title: CSS Styles for Prime Media Management
Author: Megan Coleman Design | www.megancoleman.com
*/

/* Table of Contents
==================================================
	# Reset
	# General
	# Media Queries
*/

/* @group Reset
================================================== */
/* 
Modified from html5doctor.com Reset Stylesheet v1.6.1
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, 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; font-size: 100%; border:0; outline:0; vertical-align:baseline; background:transparent;}
html {font-size:62.5%;}
body {line-height:1;}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
table {border-collapse:collapse; border-spacing:0;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
input, select {vertical-align:middle;}
img {max-width: 100%; height: auto; display: block;}
/* @end */

/* @group General
================================================== */

body {
	background: #fff;
	text-align: center;	
	color: #013d7b;
	font-family: 'Lato', Arial, sans-serif;
	margin-top: 20px;
}

img { 
	margin: 0 auto;
	max-width: 80%;
}

h2 {
	font-size: 1.6rem; font-size: 16px;
	line-height: 2.5rem;
	margin-bottom: 10px;
	font-weight: normal;
	letter-spacing: 1px;
}

a {color: #013d7b;}

ul {
	font-size: 1.3rem; font-size: 13px;
	line-height: 2.25rem;
	list-style: none;
	color: #9f9f9f;
}

div#services {
	border-top: 1px solid #eee;
	margin: 30px auto;
	padding: 30px;
	width: 80%;
}

div#services h2 {
	font-size: 1.3rem; font-size: 13px;
	font-weight: bold;
	color: #9f9f9f;
	text-transform: uppercase;
	margin-bottom: 15px;
}


/* @end */

/* @group Media Queries
================================================== */

	/* ------------------- Less than 500 ------------------*/
	@media all and (max-width: 31.25em) {
		body {margin: 5px 40px;}
	}
	/* ------------------- More than 500 ------------------*/
	@media all and (min-width: 43.75em) {
		div#services {width: 30%;}
	}

/* @end */