/* Author: Joe Cardella
   Revision: 1.0
   Date:

   Acknowledgements:
   Reset adapted from Eric Meyer: http://meyerweb.com/eric/toos/css/reset/
   Device media queries adapted from Andy Clarke: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries
*/
/*----- :: 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, 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;
}
/*----- :: END RESET :: -----*/

/*----- :: BASE STYLES :: -----*/
html{
	-webkit-font-smoothing: antialiased; /*for nice fonts on apple devices*/
	overflow-y: scroll;
}
body {
	height: 100%;
	color: #212121;
	font: 13px/1.22 Arial, Helvetica, sans-serif;
	*font-size:small;
	*font:x-small;
}
table {
	font-size: inherit;
	font: 100%;
}
select, input, textarea {
	font: 99% Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
a:hover, a:active {
	outline: none;
}
nav ul, nav ol, nav li{
	margin: 0;
}
/*label alignment for checkboxes, radios, text*/
input[type="radio"]{
	vertical-align: text-bottom;
}
input[type=checkbox]{
	vertical-align: bottom; 
	*vertical-align: baseline;
}
/*cursor consistency for clickable input elements*/
input[type="button"], input[type="submit"], button{
	cursor: pointer;
}
strong{font-weight: bold;}
/*----- :: END BASE STYLES :: -----*/
h1,h2, h3, p, legend, #top_submit, #bottom_submit {
	text-align: center;
}
h1{
	font-size: 26px;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 16px;
}
p {
	font-size: 14px;
}
form {
	font-size: 14px;
}
legend{
	font-weight: bold;
}
label{
	display: inline-block;
	width: 350px;
	text-align: right;
	margin: 5px 0;
}
input{
	margin: 5px 0;
}
#container{
	width: 800px;
	margin: 0 auto;
}
#main_set{
	margin: 10px 0;
	background-color: #fff;
}
#main_set fieldset.subgroup{
	margin: 10px 0;
	background-color: #C0D8D0;
}
#refinements_set{
	margin: 10px 0;
	background-color: #D9DCE8;
}
#refinements_set h2, #refinements_set p{
	padding: 5px;
	color: #982828;
}
#refinements_set fieldset.subgroup{
	margin: 15px 0;
}
.smaller{
	font-size: 11px;
}
