/* Global rules for all elements */ 
  body { 
    font-size:80%; 
    font-family:'Lucida Grande',Verdana,sans-serif; 
	margin:10px;
    } 

/* Header div style rules*/ 
  #header { 
    margin:0 0 1px 0; 
    padding:10px; 
    border:1px solid #000; 
    background-color:#CCC; 
	
	height: 60px;
    } 

/* Sidebar div style rules */ 
  #sidebar { 
	width:150px; 
	
	position:fixed; 
	left:10px;	/*coordinates of the top-left corner of sidebar div*/
	top:65px;   
	 
	margin-bottom:10px;
	padding:10px; 
	border:1px solid #000; 
	} 

	
/* Content div style rules*/ 
  #content { 
  	width: 70%;
  
	margin-left: 180px;
	margin-bottom:10px;
	padding:10px; 
	border:1px solid #000; 
	} 
	
	
/* Footer div style rules*/ 
  #footer { 
	clear:both; 
	margin:10px 0 0 0;
	padding:10px; 
	border:1px solid #000; 
	background-color:#CCC; 
	} 
