

/* This is a CSS-comment */

/* What do you think of this idea for the Mobile Care pages?*/


/* This is a font-family property */

	P { font-family: "New Century Schoolbook", Times, serif }

/* These are font-style properties */

	H1 { font-style: oblique }
	P  { font-style: normal }

/* These are font-weight properties */

	H1 { font-weight: 800 }
	P  { font-weight: normal }

/* These are font-size properties */

	H1     { font-size: large }
	P      { font-size: 12pt }
	LI     { font-size: 90% }
	OL     { font-size: 90% }
	STRONG { font-size: larger }


/* These are color properties */

	H1 { color: darkblue }
	H2 { color: darkblue }
	H3 { color: darkblue }
	H4 { color: darkblue }
	H5 { color: darkblue }
	H6 { color: darkblue }

/* These are background-color properties */

	BODY  { background-color: #D3D3D3 }
	TABLE { background-color: #FFFFFF }

/* This is a text-decoration property */

	A:hover { text-decoration:  underline;
		  color: red;
		  font-weight: bold}










