/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */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, img, ins, kbd, q, s, samp,tt, var, 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;}/* 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;}table {	border-collapse: collapse;	border-spacing: 0;}

html, body, div, p, td {
	font-family: 'Open Sans', Arial;
	line-height:150%;
	font-size:0.95rem;	
	color: #333;
}
p {
	margin-bottom:10px;
}
a, a.link {
	color: #111;
	text-decoration:none;
}
a:hover {
	border-bottom:1px dotted #aaa;
}
h1 {
	font-family: 'Lato', Arial;
	font-size:120%;
	line-height: 130%;
}
h2 {
	font-family: 'Lato', Arial;
	font-size:110%;
}
small {
	font-size: 80%;
}

.bold {
	font-weight: 700;
}
.ultra-bold {
	font-weight: 900;
}
.right {
	float:right;
}
.left {
	float:left;
}
.hidden {
	display:none;
}
.show {
	display:block;
}

.white {
	color: #ffffff;
}

input[type=text], input[type=password],  select {
	min-width:200px;	
	border-radius: 6px;
	font-size: 0.95em;
	border: 2px solid #ccc;
	padding: 5px;	
}