/* background: hex code for page background color */
/* color: hex code for text color */

BODY {background:#000000;color:#ffffff;}

/* font-size: percentage of normal text size (<100%=smaller 100%=normal >100%=larger) */

STRONG {font-size: 110%;}

/* text-indent: indents the first line a certain number of size units. */
/* size units: 1em = font letter height, 1px= 1 pixel */
/* text-align: aligns text. Possible attributes: left, right, center, or justify */
/* margin: sets margin to a certain number of size units. Order of numbers: top right bottom left */

P {text-indent: 2em;text-align:justify;margin: 5px 25px 5px 25px;}

P.img {text-align:center;}

/* A:link: unvisited link, A:visited: visited link, A:hover: when a link is hovered over */

A:link {color:#3366ff;}
A:visited {color:#cc00cc;}
A:hover {color:#ff0000;}