/* CSS Document */
/* 
The Following code defines what the text will look like. I am using CSS for fonts and sizes
because it is relatively straightforward. I didn't want to show you more complex CSS. 
*/

/* These three lines determine how all h1, h2 and h3 headers will look */
/* If you want to change all of the Headers from Arial to Georgia, simply
change which lines are commented out, and which ones aren't.  */
#sales {
	font-family: Arial, Helvetica, sans-serif;
	/* font-family: Georgia, "Times New Roman", Times, serif; */
}

#sales h1{
	font-family: Tahoma; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 16pt;
	letter-spacing: -1;
	font-weight: bold;
	text-align: center;
	line-height: 1.3em;
}

#sales h2{
	font-family: Tahoma; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 14pt;
	text-align: center;
	color: #000000;
}

#sales h3{
	font-family: Tahoma; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 14pt;
	color: #000080;
	text-align: center;
}

#sales h4 {
	font-family: Tahoma;
	/*font-family: Georgia, "Times New Roman", Times, serif;*/
	font-size: 14pt;
	color: #00080;
	background-position: center;

}

/* This is the P tag definition, and determines how most of the text will look. */
#sales p {
	/* font-family: arial; */
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 12pt;
	text-align: left; 
	font-style: normal;
	font-weight: normal;
	color: #000000;
	/* text-indent: 20px; */

}

/* LI tags surround the List Items -- the bulleted stuff. */
#sales li {
	/* font-family: arial; */
	/* font-family: Georgia, "Times New Roman", Times, serif; */
	font-size: 12pt;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 1.5;
}

/* This is what color links will be. */
#sales a {
	color: #0000FF;
	/* text-decoration: none; */
}

#sales div.photo {
	float: right;
	width: 23%;
	border: thin silver solid;
	/*margin: 0.5 em;
	padding: 0.5 em;*/
}

#sales div.photo p { 
	text-align: center;
	font-style: italic;
	font-size: smaller;
	text-indent: 0;
}



