/*******************************
 *
 *		   Config.css
 *			Authors: 
 * 	  Tom Knowles /Paul Lewis
 *		 The Roundhouse
 *
 *	This CSS resets all the padding
 *	and margin of the different tags.
 *	This should mean that the browsers 
 *	don't render the same tags
 *	differently
 */
 
html, body, ul, ol, li, p, blockquote, q,
h1, h2, h3, h4, h5, h6,
form, fieldset, a, div, img
{
	margin: 0;
	padding: 0;
	border: 0;
}

html
{
	height: 100%;
}

body
{
	text-align: center;
	height: 100%;
}

/* Some other useful classes
 * we can apply to any tag
 */

.clear
{
	font-size: 0;
	clear: both;
	height: 1px;
}

.hidden
{
	display: none;
}

.right
{
	text-align: right;
	position: relative;
}

.left
{
	text-align: left;
	position: relative;
}

.center
{
	text-align: center;
	position: relative;
}

.noborder
{
	border: 0;
}

.floatright
{
	float:right;
}

.clear
{
	font-size: 		0;
	clear: 			both;
	height: 		0px;
	line-height: 	0%;
}

.clearafter:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearafter {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearafter {height: 1%;}
.clearafter {display: block;}
/* End hide from IE-mac */