
/*	===============================================================
	© ANA Aviation
	http://www.ana-aviation.com

	Type:				Base Styles
	Build by:			TDG Digital
	Original Author:	James Bates - james@exit7.co.uk
	Creation Date:		24 April 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. 
	and global whitespace reset. */
*	{	 
	font-family: "Lucida Grande", Verdana, Arial, Geneva, Helvetica, sans-serif;
	margin: 0; 
	padding: 0;
	}
	
body {
	font-size: 11px;
	background-color: #fff;
	text-align: center;
	}

body, div, p, table, th, tr, td, ul, ol, li, dl, dd {
	font-family: "Lucida Grande", Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 11px;
	}
		
/*	Removes space after form elements. */ 
form { 
	display: inline;	
	font-size: 11px;
	}
	
table, th, tr, td {
	vertical-align: top; /*Makes sure all table cells are aligned top*/
}	

/*	Removes margin/padding around form elements. */ 
input, select, textarea { font-size: 11px; }

/*	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; }

/*	Miscellaneous rules used for clearing/floating and items. */
.clear			{ clear:both; height:0px; overflow:hidden; }
.clear-left		{ clear:left; height:0px; overflow:hidden; }
.clear-right	{ clear:right; height:0px; overflow:hidden; }
.hide			{ display:none; }
.float-left		{ float: left; }
.float-right	{ float: right; }