/* CSS Document */

/*If the style is an inline style, then a = 1.
b = the total number of ID selectors.
c = the number of class, pseudo-class, and attribute selectors.
d = the number of type selectors and pseudo-element selectors.


Style="" 1,0,0,0 							1000
#wrapper #content {} 0,2,0,0 				200
#content .datePosted {} 0,1,1,0 			110
div#content {} 0,1,0,1 						101
#content {} 0,1,0,0 						100
p.comment .dateposted {} 0,0,2,1 			21
p.comment{} 0,0,1,1 						11
div p {} 0,0,0,2 							2
p {} 0,0,0,1 								1

*/

div#content { background-color:#000000;} 
#content { background-color:#FF0000;} 
div#content p { background-color: #00FF66;} 

form {width: 30em;}
form#search {width: 15em;}