/*
##-------------------------------------------------------------------
##
## FILE: base.css for use on Common/MAKE websites
## CREATED: 09/07/08 by Ben Childs, Common Agency Ltd.
##
## NOTES: The styles herein are used to reset the default browser
## css properties and act as a common starting point for all layouts.
##
## These resets should hardly ever be altered.
##
## Pay attention to the default html element styling section at the
## start of the relevant site-specific css stylehseet too.
##
##-------------------------------------------------------------------
*/

/*-------------------------------------------------------------------
## CSS RESETS AND DEFAULTS START HERE */

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,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	line-height: 1.2em;	
	font-family: inherit;
	text-align: left;
	vertical-align: baseline;
}

html, body {
	height: 100%;
	min-height: 100%;
}

/* NOTE: After this, specify everything in em's where possible, where 1.0em = 10px
For the most part though, it's fine to specify fonts in em's and layout/blocks in px
REMEMBER: Inheritance is more tricky to manage with em's though */
body {
	font: normal normal normal 62.5% Geneva, Helvetica, Arial, sans-serif;
}

a img, a:link img, a:visited img {
	border: 0;
}

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

ol, ul {
	margin-bottom: 5px;
}

q:before, q:after,
blockquote:before, blockquote:after {
	content: "";
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

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