Css Help Information

(Taken from: http://htmlhelp.com/reference/css/properties.html)
font:
	example: P { font: italic bold 12pt Times, serif }
font-family:
	arial | times | cursive | fantasy | monospace
font-size:
	xx-small | x-small | small | medium | large | x-large | xx-large
	larger | smaller
	{length} = em | ex | px | in | cm | mm | pt | pc
	{percentage} = 5% | 7% | 25% ...
font-style:
	normal | italic | oblique
font-variant:
	normal | small-caps
font-weight:
	normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900


color:
	blue | red | green | yellow, ...
	#669966, #333333, ...

background-color:
	blue | red | green | yellow, ...
	#669966, #333333, ...
background-image:
	none | {url}	ex. P{ background-image: url(/images/foo.gif) }
background-repeat:
	repeat | repeat-x | repeat-y | no-repeat
background-attachment:
	scroll | fixed
background-position:
	{percentage} | {length} | top | center | bottom | left |right

vertical-align:
	baseline | sub | super | top | text-top | middle | bottom | text-bottom | {percentage}
text-align:
	left | right | center | justify





a:
	link | active | visited

p:
	first-line | first-letter



h1		= heading 1
h2		= heading 2
h3		= heading 3
a		= anchor
p		= paragraph
blockquote	= blockquote
strong		= strong
li
body		= body
em		= emphasis
td		= table column


body { color: black; background: white; }

body { margin-left: 10%; margin-right: 10%; }

body { margin-left: 10%; margin-right: 10%; }
h1 { margin-left: -8%;}
h2,h3,h4,h5,h6 { margin-left: -4%; }

:link { color: rgb(0, 0, 153) }  /* for unvisited links */
:visited { color: rgb(153, 0, 153) } /* for visited links */
:active { color: rgb(255, 0, 102) } /* when link is clicked */
:hover { color: rgb(0, 96, 255) } /* when mouse is over link */