/* 
 Super-basic reset style sheet
  
 by Peter Hoelter for Web Design 1/2/3
    ...with sources from the Web including Eric Meyer's reset.css
 Chemeketa Community College
 18 April 2017
 Rev 4.3

*/

html, body, div, span, 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, 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;
	font-size: 100%;
	font-weight: normal;
	line-height: 1em;
	font: inherit;
	vertical-align: baseline;
	}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

img {
	border: 0;
	}

ul, ol, li {
	list-style-type: none;
	}
	
table {
	border-spacing: 0;
	border-collapse: collapse;
	}

table tr th, table tr td {
	padding: 0;
	}
	
input {
	outline: 0;
	}
	
/* Optional Form field reset */
/*

fieldset, form, label, legend, input {
	border: 0;
}
	
*/

	
/*
Changes the default box sizing method to include PADDING and BORDER widths in addition to CONTENT width.
 (browser default is to set the width of only the content area)
 https://css-tricks.com/snippets/css/clear-fix/
*/

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	 box-sizing: border-box;
	}
	

/*
Modern replacement for clearfix; when applied forces a parent container whose children are all floated
 to have a height equal to the tallest child.	
*/	
.group:after {
  content: "";
  display: table;
  clear: both;
}

img, embed, object, video {
	max-width: 100%;
}

	