/* Config.css
 * ----------
 * Designed to remove any padding and/or margins automatically
 * assigned by the browser (IE in particular)
 *
 * This essentially reduces all browsers to the same basic state
 * so that rendering is consistent
 *
 * Author: Paul Lewis
 * (based on previous work by Tom Knowles and Paul Lewis)
 */
 
html, body, blockquote, p, form, q, dt,
dl, input, div, h1, h2, h3, h4, h5, h6,
br, a, table, tr, td, ul, ol, li, img
{
	padding: 0;
	margin: 0;
	border: 0;
}

html, body
{
	height: 100%
}

.clear
{
	clear: both;
}

.hidden
{
	display: none;
}

.floatleft
{
	float: left;
}

.floatright
{
	float: right
}

.clearleft
{
	clear: left;
}

.clearright
{
	clear: right;
}