/* ---------------------------------- */

/*
 * HTML5 TEMPLATE
 * 2011
 *
 * reset.css
 *
 * 
 */

/* ---------------------------------- */

/* css reset */

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, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define visible focus styles! 
:focus {
	outline: ?????;
} */

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* grid */

.grid_1 { width:60px; }
.grid_2 { width:140px; }
.grid_3 { width:220px; }
.grid_4 { width:300px; }
.grid_5 { width:380px; }
.grid_6 { width:460px; }
.grid_7 { width:540px; }
.grid_8 { width:620px; }
.grid_9 { width:700px; }
.grid_10 { width:780px; }
.grid_11 { width:860px; }
.grid_12 { width:940px; }

.column {
	margin: 0 10px;
	overflow: hidden;
	float: left;
	display: inline;
}
.row {
	width: 960px;
	margin: 0 auto;
	overflow: hidden;
}
.row .row {
	margin: 0 -10px;
	width: auto;
	display: inline-block;
}

/* quick and dirty starter style */

html {
  -webkit-font-smoothing: antialiased;
  /* force scrollbar in browser */ 
  height: 100%; 
  margin-bottom: 1px;
  /* end scrollbar force */
  background-color: #fff;
}

body {  
  font-family: Helvetica, Arial, san-serif; 
  font-size: 18px; 
  line-height: 20px; 
  color: #434343; 
  margin: 50px 0 0 0;
  height: 100%;
}
  
h1, h2, h3, h4, ul, ol, blockquote, p { 
  margin-bottom: 10px; 
}

/* links */

a:link {
  color: #148DA9;
  text-decoration: underline;
}

a:visited {
  color: #888;
  text-decoration: underline;
}

a:hover {
  color: #148DA9;
  text-decoration: underline;     
}

a:active {
  color: #888;
  text-decoration: underline; 
}

strong {
	font-weight: bold;
}

.center {
	text-align: center;
}

h1 {
	font-size:48px;
	line-height:48px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #148DA9;
}

img {
	margin-bottom: 24px;
}

