/* HTML or Element selectors : Standard HTML Tags  for the entire site */

html {margin: 0;	padding: 0;}
	
body {
	margin: 0;
	padding: 0;
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: black;
}

h1 {font-size: 135%;
	text-align: left;
	font-weight: bold;}

h2 {font-size: 120%;
	text-align: left;
	font-weight: bold;}

h3 {font-size: 110%;
	text-align: left;
	font-weight: bold;}

h4 {	font-size: 100%;
	text-align: left;
	font-weight: bold;}
	
td {
	margin-right: 10px; 
}

ul {list-style-position: outside;}
ol {list-style-position: outside;}
li {text-align: left; margin-top: 6px;}
img {border: none;}

a:link 	 {color: blue; text-decoration: underline;}
a:visited {color: blue; text-decoration: underline;}        
a:hover   {color: blue; text-decoration: underline;}
a:active  {color: blue; text-decoration: underline;}

/* Solitary class selectors */

.justify {text-align: justify;}
.italics {font-style: italic;}
.bold {font-weight: bold;}
.center {text-align: center;}
.emphasis {color: #ff0000;}
.header {margin:0; padding:10px;font-weight: bold;font-size: 275%;}
.quote {font-weight: bold; font-size: 90%;}

.imageFormat td {padding: 5px}
.imageName {font-weight:bold}
.imagePrice {color:red}
.imagePriceNote {font-size:90%}
.acq {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}

.typeFormat {
	margin: 0px;
	width: 155px;
	height: 180px;
	border: thin black solid;
	background: #FFFFFF;
	padding: 5px;
	text-align: center;
	float: left;
	font-weight: bold;
	font-size: 90%;
}

.pageAll {
	margin: 0 auto 0 auto;
	width:792px;
}

.pageTitle {color:#180980;text-align:center;font-weight:bold;font-size:140%;}
.newTitle {color:#180980;text-align:center;font-weight:bold;font-size:150%;padding-bottom:20px;}
.usedTitle {color:#DE4005;text-align:center;font-weight:bold;font-size:140%;padding-bottom:20px;}
.specialTitle {color:#64BE94;text-align:center;font-weight:bold;font-size:140%;padding-bottom:20px;}

/* *****************************************************
Top of Each Page : Logo and Title
**************************************************** */
div#topPage
{
	margin: 10px 0 0 0;
	padding: 0;
	height: 200px;
	background-position: center;
	background-repeat: no-repeat;
}
div#topPage img {margin:-3px 0 0 -4px}
/* *****************************************************
The body content 
**************************************************** */
div#bodyContent
{
	float: right;
	width: 100%;
	margin: 0;
	padding: 5px;
        min-height:400px;
}

.pageFooter {
    clear:both;
    color:#CCCCCC;
    font-size:90%;
    width:792px;
    text-align:center;
}


/* *****************************************************
Define how the page will look printed ... 
	idea is do a simpler format for print

	1) take out the background for print
	2) print type in black
**************************************************** */
@media print
{
body {background-color: white;
	width: 90%;
	font-size: 11pt;
	padding: 0;
	color: black;}
div#bodyContent {width: 100%;
	margin: 0;
	padding: 0;}
div#topPage {text-align: center;
	font-size: 16pt;
	color: black;} 
#navBar 	{display:none;}


}