/* CSS Document */



a:link{ text-decoration: none;
	color: #FFCC00;;
}
	
a:visited{ text-decoration: none;
	color: grey;
}

a:hover{ text-decoration: none;
	color: blue;
	font-weight: bolder;
	letter-spacing: 2px;
}


p.uppercase {text-transform: uppercase}
p.lowercase {text-transform: lowercase}
p.capitalize {text-transform: capitalize}



ul.disc {list-style-type: disc}
ul.circle {list-style-type: circle}
ul.square {list-style-type: square}
ul.none {list-style-type: none}

