/* CSS Document */




body {     /* establish leading of 150% */
	font-size: 12px;
	line-height: 18px;   
	}

p { 
  margin-bottom: 18px; 
}

h1 { 
  font-size: 24px; 
  line-height: 36px;
  margin-bottom: 18px; 
}
h2 { 
  font-size: 18px; 
  line-height: 18px; 
  margin-bottom: 18px;
}
h3 { 
  font-size: 12px; 
  line-height: 18px; 
}


/*  time you add vertical space with a margin or padding, you need to add it in units of 18 pixels to maintain the baseline grid. */


ul, 
ol { 
  margin-bottom: 18px; 
}


.left { 
  float: left; 
  margin: 0 18px 18px 0; 
}
.right { 
  float: right; 
  margin: 0 0 18px 18px; 
}