@charset "iso-8859-1";
/*
 * Style sheet for the Parthia.com web site
 * NOTE: If you are looking for good CSS to follow as an example, this is not it!
 *  I am learning CSS, constantly changing and improving this page, and you should not copy my mistakes.
 * 
 * 28 Dec 2002 - Initial file by Chris Hopkins www.parthia.com for Microsoft FrontPage
 * 11 Jan 2007 - conversion to Microsoft Expression Web
 * 29 Feb 2008 - current version
 *
 * Use "javascript:alert(document.compatMode);" in URL address bar for a quick check of CSS rendering mode
 * ------------------------------------------ */
/* I never use layers with forms, but I do use 
 * other CSS methods to put them where I want them:
 *  
 * label { clear:left; float:left; text-align:right; width:200px; }
 * 
 * and my input rule is like this -
 * 
 * input[type="text"] { float:left;display:block; }
 * 
 * That makes the labels all align to an invisible margin at 200px in from the 
 * left, with the input fields just to the right of that margin.
 * 
 * <label for="textfield1">Name:</label><input type="text" id="textfield1">
 */
/* That makes the labels all align to an invisible margin at 200px in from the 
 * left, with the input fields just to the right of that margin.
 * 
 * <label for="textfield1">Name:</label><input type="text" id="textfield1">
 */
/* IE adds proprietary padding & margins, to everything. Use the "universal selector" to remove 
   margin & padding from everything. This should be your FIRST css statement. It will remove 
   margin/padding from html, body, div, table, form, p, img, etc etc etc. and you will probably 
   have to re-state the defaults implicitly (because they will now be "zero"), but this DOES make 
   all browsers view these elements in the same way. 
* {
	margin:0;
	padding:0;
} 
*/
a:link {
	color: #336600; /* Dark-Greenish */;
	text-decoration: underline;
	background-color: inherit;
}
a:active {
	color: #FF0000; /* Red */;
	text-decoration: underline;
	background-color: inherit;
}
a:visited {
	color: #AA0000;
	text-decoration: underline;
	background-color: inherit;
}
a:hover {
	/*	color: #FF0000;  Red */
	text-decoration: underline;
	color: red;
	background-color: inherit;
}
body {
	font-weight: normal;
	font-style: normal;
	font-family: Constantia,"Book Antiqua",Georgia,"Palatino Linotype",Palatino,"Times New Roman",Times,serif;
	background-image: url("images/papyrus.gif");
	background-repeat: repeat;
	background-color: inherit;  /* #EEDBB6 is very close, but still not perfect match to background image
  * Use white during testing to show where bgcolor leaks through 
	* Value of background-color MUST BE inherit (or not used) for actual use or else Foxfire will show it around many HTML
	* elements */
}
br.nextpage {
	clear: left;
	page-break-before: always;
}
button {
	background-color: #333333;
	color: #FFFFFF; /* white */;
	border-top-style: solid;
	font-style: normal;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	border-left-width: 1pt;
	border-bottom-width: 1pt;
	border-left-style: solid;
	border-bottom-style: solid;
	border-top-width: 1pt;
	border-right-width: 1pt;
	border-right-style: solid;
}
caption {
	color: #333333;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-style: normal;
	background-color: inherit;
}
/* main use is centering tables */
div.centered {
	margin: 0 auto;
	text-align: center;
}
/* ------------------------------------------ 
 * hr replacement with a graphic image 
 *    (see: http://www.sovavsiti.cz/css/hr.html and http://www.saila.com/usage/tips/defn.shtml?hr)
 * Use this syntax for horizontal line on web page:
 *     <div class="hr"><hr /></div> 
 * Background images are not printed by default in most current browsers. So if you use a background image 
 *    for your rules for screen, don't forget to define different style in the print style sheet.
 * While the simple <hr /> element has some initial top and bottom margins in most browsers, it may lose them 
 *    if you wrap it in a <div>. Thus setting the top and/or bottom margin for the outer <div> may be a good idea.
 * ------------------------------------------ */
div.hr {
	height: 10px;
	background: url('images/hr.gif') no-repeat scroll center;
}
div.hr hr {
	display: none;
}
/* ------------------------------------------ */
fieldset {
	color: #000000; /* black */;
	border-top-width: 1pt;
	border-right-style: solid;
	border-top-style: solid;
	border-left-width: 1pt;
	border-left-style: solid;
	border-bottom-width: 1pt;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	border-right-width: 1pt;
	font-style: normal;
	border-bottom-style: solid;
	background-color: inherit;
}
h1 {
	font-weight: bold;
	font-style: normal;
	color: #660000;
	text-align: center;
	vertical-align: middle;
	background-color: inherit;
}
h2 {
	font-weight: bold;
	font-style: normal;
	color: #666600;
	text-align: center;
	vertical-align: middle;
	background-color: inherit;
}
h3 {
	font-weight: bold;
	font-style: normal;
	color: #CC3300;
	text-align: left;
	vertical-align: middle;
	background-color: inherit;
}
h4 {
	font-weight: bold;
	font-style: normal;
	color: #996600;
	text-align: left;
	vertical-align: middle;
	background-color: inherit;
}
h5 {
	font-weight: bold;
	font-style: normal;
	color: #CC3333;
	text-align: left;
	vertical-align: middle;
	background-color: inherit;
}
h6 {
	font-weight: bold;
	font-style: normal;
	color: #660066;
	text-align: left;
	vertical-align: middle;
	background-color: inherit;
}
/* horizontal rule for optional use when graphic version is not desired */
hr {
	border: 1px solid #000000;
	height: 2px;
	width: 300px;
	color: #000000;
	background-color: black;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
il {
	list-style-image: url('images/bull2_papyrus.gif');
}
img {
	border: 0px;
}
img.mainbanner {
	margin-bottom: 4px;
	width: 600px;
	height: 60px;
}
img.navbutton {
	margin-bottom: 2px;
	width: 100px;
	height: 20px;
}
/* coin image thumbnail for both tables and in text */
img.thumbnail-left {
	margin-left: 0px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 5px;
	float: left;
}
img.thumbnail-right {
	margin-left: 10px;
	margin-right: 0px;
	margin-top: 10px;
	margin-bottom: 5px;
	float: right;
}
label {
	color: black;
	background-color: inherit;
}
li {
	text-indent: 0px;
}
legend {
	color: #333333;
	font-style: normal;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	background-color: inherit;
}
/* non-standard MS-only. Do not use.
marquee {
	font-family: Verdana,Arial,Helvetica,sans-serif;
} */
select {
	color: black;
	border-style: solid;
	font-style: normal;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	background-color: white;
	font-size: x-small;
}
/* 
 * ---------------------------------------------------------------------
 * ---------------------------------------------------------------------
 *                     BEGIN TABLE DEFINITIONS                           
 * ---------------------------------------------------------------------
 * ---------------------------------------------------------------------
*/
/* --------------------------------------------------------------------- 
 *
 *   BIBLIO TABLE DEFINITION
 *
 * the biblio table assumes center alignment and 100% width 
 *  --------------------------------------------------------------------- */
table.biblio {
	border-width: 0px;
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border-spacing: 5px;
}
/* specifiy margin for H4 tags used in biblio index Include pages */
table.biblio td h4 {
	margin: 0 0 15px 0;
	color: black;
}
/* A 5% spacer cell */
table.biblio td.biblio-5-spacer {
	width: 5%;
	text-align: left;
	vertical-align: top;
}
/* A 15% spacer cell */
table.biblio td.biblio-15-spacer {
	width: 15%;
	text-align: left;
	vertical-align: top;
}
/* A 80% text cell for index Include page*/
table.biblio td.biblio-index-text {
	width: 80%;
	text-align: left;
	vertical-align: top;
}
table.biblio td.biblio-abstract {
	width: 90%;
	text-align: left;
	font-size: smaller;
	vertical-align: top;
}
/* --------------------------------------------------------------------- 
 *
 * CATALOG TABLE DEFINITION
 *
 * the catalog table assumes center alignment and 80% width
 * --------------------------------------------------------------------- */
table.catalog {
	border-width: 0px;
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
	border-spacing: 5px;
}
table.catalog td.catalog-text {
	width: 70%;
	text-align: left;
	vertical-align: top;
	padding-bottom: 10px;
}
table.catalog td.catalog-photo {
	width: 30%;
	text-align: center;
	vertical-align: top;
	padding-bottom: 10px;
}
/* --------------------------------------------------------------------- 
 *
 * COIN EXEMPLAR TABLE DEFINITION
 *
 * the coin exemplar table assumes center alignment and 90% width 
 * --------------------------------------------------------------------- */
table.coinexemplar {
	border-width: 0px;
	width: 90%;
	margin: 0 auto;
	border-collapse: collapse;
	border-spacing: 5px;
}
table.coinexemplar td.text {
	width: 90%;
	text-align: left;
	vertical-align: top;
	padding-bottom: 10px;
	padding-left:10px
}
table.coinexemplar td.photo {
	width: 10%;
	text-align: right;
	vertical-align: top;
	padding-top: 10px;
	padding-bottom: 10px;
}
/* ---------------------------------------------------------------------
 * DATA TABLE DEFINITION
 * Standard data table for Parthia.com
 * Three nested tables with sans serif font for tabular data
 * --------------------------------------------------------------------- */
table.dataoutside {
	/* outside table for nesting */
	/* set width in html */
	margin: 0 auto;
	border-collapse: collapse;
	padding: 0px;
	background-color: inherit;
}
table.dataoutside td {
	width: 100%;
	padding: 5px;
	vertical-align: top;
}
table.dataoutside td.border {
	width: 100%;
	padding: 5px;
	vertical-align: top;
}
/* -------------- */
table.datamiddle {
	/* middle table for nesting and including text */
                    /* use p.data-p for text associated outside the data table */
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	padding: 5px;
	background-color: inherit; /* or change to white or #FFFFE0 (LightYellow) */
/*	font-family: Verdana,Arial,Helvetica,sans-serif; 
	font-size: .82em; 
	vertical-align: top; */
}
/* -------------- */
table.datatable {
	/* this is the primary data table */
	/* set width in html if not constrained by outer tables */
	margin: 0 auto;
	border-collapse: collapse;
	border-top: 1px maroon solid;
	border-left: 1px silver solid;
	border-right: 2px black solid;
	border-bottom: 1.5pt solid black;
	background-color: #FFFFE0; /* LightYellow */;
	color: black;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: .82em;
	vertical-align: top;
}
table.datatable th.horiz {
	/* set width in html */
	border-left: 1px silver solid;
	border-right: 1px silver solid;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
	padding: 3px;
	background-color: maroon;
	color: #FFFFE0; /* text is LightYellow */;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
table.datatable th.horiz a:link {
	color: #FFFFE0; /* Dark-Greenish */;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz a:active {
	color: #FFFFE0; /* Red */;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz a:visited {
	color: #FFFFE0;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz a:hover {
	color: #FFFFE0;  
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz-overall {
	/* set width in html */
	border-left: 1px silver solid;
	border-right: 1px silver solid;
	border-top-style: none;
	border-bottom: 1px silver solid;
	padding: 3px;
	background-color: maroon;
	color: #FFFFE0; /* text is LightYellow */;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
table.datatable th.horiz-topline {
	/* set width in html */
	border-left: 1px silver solid;
	border-right: 1px silver solid;
	border-top-style: none;
	border-bottom: none;
	padding: 3px;
	background-color: maroon;
	color: #FFFFE0; /* text is LightYellow */;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
table.datatable th.horiz-overall a:link {
	color: #FFFFE0; /* Dark-Greenish */;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz-overall a:active {
	color: #FFFFE0; /* Red */;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz-overall a:visited {
	color: #FFFFE0;
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.horiz-overall a:hover {
	color: #FFFFE0;  
	text-decoration: underline;
	background-color: inherit;
}
table.datatable th.vert {
	/* set width in html */
	border: 1px silver solid;
	text-align: center;
	vertical-align: middle;
	padding: 3px;
	font-weight: bold;
}
table.datatable td {
	/* set width in html */
	border: 1px silver solid;
	padding: 3px;
	vertical-align: top;
}
table.datatable td.centered {
	/* set width in html */
	border: 1px silver solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
}
table.datatable td.clear {
	/* set width in html */
	border: 1px silver solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-image: url("images/papyrus.gif");
}
table.datatable td.GreekLegend {
	border: 1px silver solid;
	padding: 3px;
	vertical-align: top;
	font-family: "Segoe UI","Microsoft Sans Serif","Arial Unicode MS",Arial,Helvetica,sans-serif;
	font-weight: normal;
}
table.datatable td.numismatica {
	font-size: 1.2em;
	text-align: center;
}
/* --------------------------------------------------------------------- 
 *
 * FONTCHART TABLE DEFINITION
 *
 * --------------------------------------------------------------------- */
table.fontchart {
	/* set width in html */
	font-family: Arial,sans-serif;
	margin: 0 auto;
	padding: 3px;
	background-color: inherit;
	color: black;
	border: 2px solid maroon;
	border-collapse: collapse;
	font-size: 1em; /* .82em; */;
}
table.fontchart th.horiz {
	/* set width in html */
	/*	height: 32px; */
	border-left: 1px maroon solid;
	border-right: 1px maroon solid;
	border-top-style: none;
	border-bottom: 2px solid maroon;
	padding: 3px;
	background-color: inherit;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
}
table.fontchart th.vert {
	/* set width in html */
	/* height: 32px; */
	border-top: 1px maroon solid;
	border-left: 2px maroon solid;
	border-right: 2px maroon solid;
	border-bottom: 1px maroon solid;
	vertical-align: middle;
	padding: 3px;
	font-weight: normal;
	text-align: left;
}
table.fontchart td {
	/* height: 10px; */
	border: 1px maroon solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-color: inherit;
}
table.fontchart td.white {
	/*	height: 32px; */
	border: 1px maroon solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-color: white;
}
table.fontchart td.white-n8 {
	font-family: Numismatica,fantasy; /*	height: 32px; */;
	border: 1px maroon solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-color: white;
}
table.fontchart td.white-n8retro {
	font-family: NumismaticaRetro,fantasy; /*	height: 32px; */;
	border: 1px maroon solid;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-color: white;
}
table.fontchart td.nopad {
	/*	height: 32px; */
	border: 1px maroon solid;
	padding: 0px;
	vertical-align: middle;
	text-align: center;
	background-color: inherit;
}
/* --------------------------------------------------------------------- 
 *
 * GLYPH TABLE DEFINITIONS
 *
 * --------------------------------------------------------------------- */
table.glyphchart {
	font-family: "Arial Narrow",Verdana,Helvetica,sans-serif;
	width: 650px;
	margin: 0 auto;
	border-collapse: collapse;
	padding: 5px;
	background-color: #FFFFFF; /* or change to #FFFFE0 (LightYellow) */;
	border: 1px black solid;
	color: black;
}
table.glyphchart tr {
	height: 42px;
}
table.glyphchart th {
	height: 42px;
	border: 1px black solid;
	padding: 5px;
	height: inherit;
	text-align: center;
	vertical-align: middle;
	color: black;
}
table.glyphchart td {
	height: 32px;
	border: 1px black solid;
	padding: 5px;
	height: inherit;
	text-align: center;
	vertical-align: middle;
	color: black;
}
table.glyphchart td.leftalign {
	height: 32px;
	border: 1px black solid;
	padding: 5px;
	height: inherit;
	text-align: left;
	vertical-align: middle;
	color: black;
}
/* --------------------------------------------------------------------- 
 *
 * INDEX TABLE DEFINITION
 *
 * the Index table assumes center alignment and 80% width
 * Primary purpose is for include pages used to index coin or auction pages
 * --------------------------------------------------------------------- */
table.index {
	border-width: 0px;
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
	border-spacing: 5px;
}
table.index tr.alt {
	background-color:#FFFFE0;
}
table.index td.index-text {
	width: 45%;
	margin: 0 0 10px 0;
	text-align: left;
	vertical-align: top;
}
/* specifiy margin for H4 tags used in index pages */
table.index td h4 {
	margin: 0 0 10px 0;
	color: black;
}
table.index td.index-page {
	width: 10%;
	margin: 0 0 10px 0;
	text-align: center;
	vertical-align: top;
}
/* --------------------------------------------------------------------- 
 *
 * KEYCHART TABLE DEFINITION
 *
 * --------------------------------------------------------------------- */
table.keychart {
	margin: 0 auto;
	border-collapse: collapse;
	padding: 5px;
	border: 1px black solid;
	color: black;
}
table.keychart tr {
	height: 42px;
}
table.keychart th {
	font-family: "Arial Narrow",Verdana,Helvetica,sans-serif;
	font-size: 8pt;
	width: 42pt;
	border: 1px black solid;
	padding: inherit;
	height: inherit;
	text-align: center;
	vertical-align: middle;
	background-color: #FFFFFF; /* or change to #FFFFE0 (LightYellow) */;
}
.keychart th.clear {
	font-family: "Arial Narrow",Verdana,Helvetica,sans-serif;
	width: 24pt;
	border: 0px;
	padding: inherit;
	height: inherit;
	text-align: center;
	vertical-align: middle;
	background-color: inherit; /* or change to #FFFFE0 (LightYellow) */;
}
table.keychart td {
	font-family: "Arial Narrow",Verdana,Helvetica,sans-serif;
	font-size: 14pt;
	width: 42pt;
	height: 42px;
	border: 1px black solid;
	padding: inherit;
	text-align: center;
	vertical-align: middle;
	background-color: #FFFFFF; /* or change to #FFFFE0 (LightYellow) */;
}
.keychart td.transcription {
	font-family: Code2000,"Doulos SIL",Gentium,"TITUS Cyberbit Basic","Arial Unicode MS","Georgia Ref",serif;
	font-weight: normal;
	width: 42pt;
	border: 1px black solid;
	padding: inherit;
	height: 42px;
	text-align: center;
	vertical-align: middle;
	background-color: #FFFFFF; /* or change to #FFFFE0 (LightYellow) */;
}
table.keychart td.clear {
	/*	height: 32px; */
	width: 24pt;
	height: 42px;
	border: 0px;
	padding: 3px;
	vertical-align: middle;
	text-align: center;
	background-color: inherit;
}
/* --------------------------------------------------------------------- 
 *
 * PHOTO TABLE DEFINITION
 *
 * --------------------------------------------------------------------- */
table.phototable {
	/* set width in html */
	margin: 0 auto;
	color: black;
	border: 1px solid maroon;
	border-collapse: collapse;
	font-family: Arial,Helvetica,sans-serif;
	font-size:x-small;
}
table.phototable th {
	/* set width in html */
	border-left: 1px silver solid;
	border-right: 1px silver solid;
	border-top:1px maroon solid;
	border-bottom:1px maroon solid;
	padding: 3px;
	background-color: maroon;
	color: #FFFFE0; /* text is LightYellow */;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
table.phototable td {
	text-align: center;
	vertical-align: middle;
	border: 1px maroon solid;
	padding: 2px;
}
table.phototable td.portrait {
	text-align: center;
	vertical-align: top;
	border: 0;
	padding: 2px;
}
table.phototable td.landscape {
	text-align: center;
	vertical-align: top;
	border: 0;
	padding: 40px 2px 2px 2px;
}
/* --------------------------------------------------------------------- 
 *
 *   THEME TABLE DEFINITION
 *
 * The theme table assumes centered alignment, colorless border, no padding,
 * used mostly for containing and centering images, or containing blockquotes
 *  --------------------------------------------------------------------- */
table.theme {
	/* Set width in HTML */
	border-collapse: collapse; 
	vertical-align: 0;
	margin: 0 auto;
	font-weight: normal;
	font-style: normal;
	text-align: left;
/*	border-spacing:0px;
	border:0px;
	padding:0px;   */
}
/* --------------------------------------------------------------------- 
 *
 * TRICOLOR TABLE DEFINITIONS
 *
 * --------------------------------------------------------------------- */
table.tricolor {
	/* Set width in HTML */
	margin: 0 auto;
	border-collapse: collapse;
	padding: 5px;
	background-color: #FFFFFF; /* or change to #FFFFE0 (LightYellow) */;
	border: 1px black solid;
	color: black;
	height: 20px;
	line-height:20px;
}
table.tricolor th {
	border: 1px black solid;
	padding: 5px;
	height: inherit;
	line-height:inherit;
	text-align: center;
	vertical-align: middle;
	color: black;
	white-space: nowrap;
}
table.tricolor th.color1 {
	/* white */
	background-color: #FFFFFF;
}
table.tricolor th.color2 {
	/* yellow */
	background-color: #FFFF00;
}
table.tricolor th.color3 {
	/* bluish */
	background-color: #00FFFF;
}
table.tricolor th.color4 {
	/* greenish */
	background-color: #66FF33;
}
table.tricolor td {
	border: 1px black solid;
	padding: 5px;
	height: inherit;
	line-height:inherit;
	text-align: left;
	vertical-align: middle;
	color: black;
	white-space: nowrap;
}
table.tricolor td.color1 {
	/* white */
	background-color: #FFFFFF;
}
table.tricolor td.color2 {
	/* yellow */
	background-color: #FFFF00;
}
table.tricolor td.color3 {
	/* bluish */
	background-color: #00FFFF;
}
table.tricolor td.color4 {
	/* greenish */
	background-color: #66FF33;
}
/* 
 * --------------------------------------------------------------------- 
 * --------------------------------------------------------------------- 
 * END TABLE DEFINITIONS
 * --------------------------------------------------------------------- 
 * --------------------------------------------------------------------- 
*/
td {
	/*	force td margin to default left - do not remove text-align:left statement */
	text-align: left;
}
td.centered {
	text-align: center;
	border-color: #660000;
}
td.right {
	text-align: right;
	border-color: #660000;
}
th {
	font-style: normal;
	border-color: #660000;
}
textarea {
	background-color: white;
	color: black;
	font-style: normal;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	background-color: inherit;
	border-right-width: 1pt;
	border-bottom-width: 1pt;
	border-left-width: 1pt;
	border-top-width: 1pt;
}
ul {
	list-style-image: url('images/papbul1a.gif');
	font-style: normal;
	margin-bottom: 6px;
}
ul ul {
	list-style-image: url('images/papbul2a.gif');
}
ul ul ul {
	list-style-image: url('images/papbul3a.gif');
}
ul ul ul ul {
	list-style-image:none;
}
ul li h3 {
	margin: 16px 0px 4px 0px;
	vertical-align: baseline;
}
ol li ol li {
	list-style-type:lower-alpha;
}
ol li ol li ol li {
	list-style-type:none;
}
.alternatetext {
	color: #996600;
	font-style: normal;
	font-weight: bold;
	background-color: inherit;
}
.blueboldtext {
	color: blue;
	font-style: normal;
	font-weight: bold;
	background-color: inherit;
}
.coingreek1 {
	font-family: CoinGreekI,fantasy;
}
.crossfont {
	font-family: Cross,fantasy;
}
.graytext {
	color: #2F4F4F;
	font-style: normal;
	font-weight: normal;
	background-color: inherit;
}
.graytext-strikethru {
	color: #2F4F4F;
	font-style: normal;
	font-weight: normal;
	background-color: inherit;
	text-decoration: line-through;
}
.textcentered {
	text-align: center;
	font-style: normal;
	background-color: inherit;
}
.textcentered-it {
	text-align: center;
	font-style:italic;
	background-color: inherit;
}.textright {
	text-align: right;
	font-style: normal;
	background-color: inherit;
}
/* ------------------------------------------ 
 * Use Unicode san-serif font for displaying Greek legends 
 * Currently, these supposrt all required Greek characters:
 * Sans serif: "Microsoft Sans Serif" (but not Line 4 characters) Tahoma? 
 * ------------------------------------------ */
.GreekLegend {
	font-family: "Segoe UI","Microsoft Sans Serif","Arial Unicode MS",Arial,Helvetica,sans-serif;
	font-weight: normal;
}
.GreekLegendRetro {
	unicode-bidi: bidi-override;
	direction: rtl;
	color: red;
	font-family: "Segoe UI","Microsoft Sans Serif","Arial Unicode MS",Arial,Helvetica,sans-serif;
}
.GreekMonogram {
	font-family: "Segoe UI","Microsoft Sans Serif","Arial Unicode MS",Arial,Helvetica,sans-serif;
	font-weight: normal;
	text-decoration: overline;
}
.GreekText {
	font-family: Code2000,Cardo,"TITUS Cyberbit Basic","Palatino Linotype",serif;
	font-weight: normal;
}
/* Use the Numismatica 8-bit test font, see http://parthia.com/fonts/font_standard.htm */
.n8 {
	font-family: Numismatica,fantasy;
}
/* for testing Unicode PUA */
.numismatica {
	font-family: Cardo;
}
.numismatica-retro {
	font-family: Cardo;
	unicode-bidi: bidi-override;
	direction: rtl;
	color: red;
	background-color: inherit;
}
.n8-overln {
	font-family: Numismatica,fantasy;
	text-decoration: overline;
	color: inherit;
	background-color: inherit;
}
.n8retro {
	font-family: NumismaticaRetro,fantasy;
	unicode-bidi: bidi-override;
	direction: rtl;
	color: red;
	background-color: inherit;
}
.n8retro-overln {
	font-family: NumismaticaRetro,fantasy;
	text-decoration: overline;
	color: inherit;
	background-color: inherit;
}
/* Overline text.  We render in red as a warning that things aren't quite right yet.  */
.overln {
	text-decoration: overline;
	color: inherit;
	background-color: inherit;
}
.photo-credit-right {
	margin-top: 0px;
	text-align: right;
	font-size: x-small;
}
.lightbrowntext {
	color: #CC9900;
	font-style: normal;
	background-color: inherit;
}
.reddishbrowntext {
	color: #CC3300;
	font-style: normal;
	background-color: inherit;
}
/* Retrograde text rendered mirror in H.N.  Unfortunately, we don't have
 * a retrograde font.  We also depend on bidi-override, an obscure property.
 * We render in red as a warning that things aren't quite right yet.  */
.retrog {
	unicode-bidi: bidi-override;
	direction: rtl;
	color: red;
	background-color: inherit;
}
.extra-extra-largetext {
	font-size: xx-large;
}
.extra-largetext {
	font-size: x-large;
}
.largetext {
	font-size: large;
}
.smalltext {
	font-size: small;
}
.extra-smalltext {
	font-size: x-small;
}
.transcription {
	font-family: Code2000,"Doulos SIL",Gentium,"TITUS Cyberbit Basic","Arial Unicode MS","Georgia Ref",serif;
	font-weight: normal;
}
.underlining {
	text-decoration: underline;
}
.warningtext {
	color: red;
	font-style: normal;
	font-weight: bold;
	background-color: inherit;
}
/* --------------- 
  All */
#centermenu {
	width: 500px;
	margin: 0 auto;
}
/* The style below sets the page banner 
 * The banner image is 600 x 60 pixels */
#pageBanner {
	background: url('images/theme/papbanna.gif') no-repeat;
	width: 600px;
	height: 60px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: -30px;
	margin-left: auto;
	text-align: center;
	font-family: "Book Antiqua", "Times New Roman", Times, serif;
	font-size: 32px;
	font-weight: normal;
	color: #FFFFCC;
	text-transform: uppercase;
	padding: 12px 0px 20px 0px;
}
#bannerContainer {
}
#topNavContainer {
}
#bottomNavContainer {
}
#titleContainer {
}
#footerContainer {	
}
#validationContainer {	
}
#content {
}
#content h1 {
}
#content h2 {
}
#content h3 {
}
#content h4 {
}
#content p {
}
#centermenu {
}