
/*	===============================================================
	© Crown House Technology
	http://www.crownhouse.com/

	Type:				Base Styles
	Build by:			Design Culture
	Original Author:	James Bates
	Author Email:		james@exit7.co.uk
	Creation Date:		27 November 2006
	---------------------------------------------------------------
	Version number: 	1.0
	Last edited:		NA - Still in developement
	============================================================ */


/*	---------------------------------------------------------------
	These styles are basic formatting that older browsers can
	understand, most are overwritten in (structure.css) the 
	structural stylesheet.
	------------------------------------------------------------ */

/*	General rules to cover any font-family inheritance bugs. */
	* { font-family: "Trebuchet MS", Helvetica, Arial, Verdana, Geneva, sans-serif; }
	
	body {
	font-size: 11.5px;
	background-color: #fff;
	text-align: center;
	}

	div, table, th, tr, td, h1, h2, h3, h4, h5, h6, p, ul, ol, li, ul ul, ul ul li, dl, dt, dd, blockquote, cite, code, label {
	font-family: "Trebuchet MS", Helvetica, Arial, Verdana, Geneva, sans-serif;
	font-size: 11px;
	}
		
/*	Removes space after form elements. */ 
	form { 
	display: inline;	
	font-size: 11px;
	}

/*Makes sure all table cells are aligned top*/	
	table, th, tr, td { vertical-align: top; }	

/*	Removes margin/padding around form elements. */ 
	input, select, textarea { font-size: 11.5px; }

/*	Removes borders from images. */
	img { border: none; }

/*	Makes sure both are presented correctly */	
	strong, b { font-weight: bold; }

/*	no list-markers by default, since lists are used more often for semantics */
	ul, ol { list-style: none; }
	
