@charset "UTF-8";

/* @override 
	http://abrandnewway.com/css/v1/core.css
	http://abnw.local/css/v1/core.css
*/

/* This core file is our reset file. We'll build the styles back up as needed */
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,font,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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
address,caption,cite,code,dfn,em,strong,th,var {
	/* @NOTE: Start by getting rid of all the render variations. We can go build back up from there */
	font-style: normal;
	font-weight: normal;
}
input,textarea,select {
	/* @NOTE: This is going to save us a lot of css headaches in the down the road */
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
	outline-style:none;
	outline-width:0;
}
body {
	/* 
		@NOTE: font-size set to 100% (16px) We set the size here so that we can use ems throughout the site. 
					These will all be based off the body font-size declaration. Refer to the em sizes below:		
		em sizes:
			20px - 1.25em
			18px - 1.125em;
			16px - 1.0em;
			14px - 0.875em
			13px - 0.8125em
			12px - 0.75em
			11px - 0.6875em;
			10px - 0.625em;
	 */
	line-height: 1;
	font-size: 100%;
	font-weight: normal;
	color: #000;
}
img {
	border: 0;
}
ol,ul {
	list-style: none;
}
legend {
	color:#000;
}
blockquote,q {
	quotes: none;
}
blockquote:before,blockquote:after,
q:before,q:after {
	content: '';
	content: none;
}
/* @NOTE: Build focus styles back in */
a:focus	{
	-moz-outline-style: none; 
	border:0px;
}
/* @NOTE: Build insert highlights back in */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* @NOTE: Tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
