/******************************************************************************
 * Name: base.css
 * Description: Base styles for standard elements used in any website.
 */

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	ol, 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; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
		font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 14px;
		color: #333;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
 }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #333333;
		font-family: "Palatino Linotype", "Book Antiqua", Palatino, Times, serif;
		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 36px; line-height: 40px;}
	h2 { font-size: 24px; line-height: 28px;}
	h3 { font-size: 20px; line-height: 24px;}
	h3 span a {
		font-size: 12px;
		font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #666666;
		float: right;
	}
	
	h3 span a:hover {
		color: #666666;
	}
	h4 {
		font-size: 13px;
		line-height: 15px
	}
	
	h4 a {
	color: #828282;
	}
	
	h4 a:hover {
		text-decoration: none;
		color: #0a2a51;
	}
	h5 {
		font-size: 15px;
		line-height: 19px;
		font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-weight: bold;
	}
	h6 { }

	p { font-size: 14px; line-height: 20px;}
	p img { margin: 0; }
	p.lead { }

	em { font-style: italic; }
	small { font-size: 80%; }
	
	b { font-weight: bold; }


/* #Links
================================================== */
	a { color: #0a2a51; text-decoration: none;}
	a:hover { text-decoration: underline; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }
		
		
/* #Form Fields
================================================== */

input[type="text"],
input[type="password"],
select,
textarea {
	border: 1px solid #C6C6C6;
	margin-bottom: 7px;
}