@charset "utf-8";
/**************************************************

--- Naming Convention & writing style ---

	- IDs & class names = all_lower_case_with_underscores
	- ID and class names should relate to what they contain - not element type, position or appearance
	- Cascade ID related class names by tabbing. eg:
		#element_id{}
		  	#element_id .class_name{}
	- Use single line declarations for all but the very long	
	- Preferred order: position ; dimensions ; float ; margin ; padding ; everything else
	
--- File structure ---

	- Import
	- Global styles
	- Global classes
	- Global IDs (IDs common to all/most pages)
		- #id .classes
	- Local IDs
		- #id .classes

--- Colours ---
	List colours here for easy find & replace 

	

***************************************************/

/* *** IMPORT *** */ 

@import url("reset.css");
/* 
	Note: reset.css sets body text size @ 62.5%
	For text sizes use:
	1em 	instead of	10px 
	1.6em	instead of	16px, etc
*/
body{font-family:Helvetica,Arial,"sans serif";}
#mount{width:860px;margin:20px auto;background:#e6e7e8;}
#nav{background:#FFF;font-size:1.4em;border-bottom:1px solid #ddd;text-align:center;}
  #nav a{text-decoration:none;display:inline-block;display:-moz-inline-block;padding:10px;margin:0px 2px;background-color:#EEE;border:1px solid #DDD; border-bottom:0px;}
#header{height:72px;background:url(../images/eco/header.gif) center bottom no-repeat;}
#footer{height:110px;background:url(../images/eco/footer.gif) center top no-repeat;}
p.footer{text-align:center;color:#999;line-height:1.3em;}
p.footer a{color:#900}
