/* CSS Document */
/* universal style sheet ustylesheet */

/* for absolutely everything */
* {
	margin:0;
	padding:0;
	font-family: verdana;
}

/* for all bodies*/
body{
	background-image: url(images/repeaty.gif);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: 0px;
	background-color: #FCFCF7;
}

/* for the bodies of pages specially made for printing */
body.forPrint{
	background-image: none;
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: 0px;
	background-color: #FCFCF7;
}

/* for all paragraphs (text) */
p{
	font-family: verdana;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	text-indent: 20px;
	letter-spacing: normal;
	word-spacing: normal;
	line-height: 2em;
	text-transform: none;
	color: #000000;
	padding: 0px;
	margin-top: 4px;
	margin-bottom:14px;
}

/* for the div box with the content that varies from page to page */
div#contentBox{
margin-top: 12px;
margin-left: 12px;
position:absolute; 
left:152px; 
top:152px; 
width:548px; 
height:448px;
}

/* for the div box containing the top bar */
div#topBar{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:152px;
	background-repeat: no-repeat;
	background-image: url(images/bgX.gif);
}

p.noIndent{
text-indent: 0px;
}

p.longQuote{
	font-family: verdana;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	text-indent: 20px;
	letter-spacing: normal;
	word-spacing: normal;
	line-height: 1.5em;
	text-transform: none;
	color: #000000;
	padding: 0px;
	margin: 0 0px 0 50px;
	width: 80%;
}

p.biblio{
	font-family: verdana;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	text-indent: -40px;
	letter-spacing: normal;
	word-spacing: normal;
	line-height: 2em;
	text-transform: none;
	color: #000000;
	padding: 0px;
	margin-top: 4px;
	margin-left: 40px;
	margin-bottom:14px;
}

/* for all images not part of the layout and design */
img.contentPic{
	border: double;
}

/* for all "heading one"s, the biggest heading */
h1{
	font-size: 24px;
	margin-bottom: 10px;
}

/* for all "heading two"s, the second biggest heading */
h2{
	font-size: 16px;
	font-weight: bold;
	margin-top: 12px;
	margin-bottom: 24px;
}

/* for horizontal rules */
hr{
	height: 1px;
	background-color: #ddd;
	color: #ddd;
	border: none;
	padding: 0;
	margin: 1em 0;
	margin-bottom: 20;
}

/* for the div boxes acting as tables of contents (on the tops of some pages) */
div#tableOfContents{
	background-color: #eeeeee;
	border: 1px solid #000000;
	margin-bottom: 2em;
}

/* paragraphs for captions*/
p.caption{
	font-family: verdana;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	text-indent: 0px;
	letter-spacing: normal;
	word-spacing: normal;
	line-height: 1.5em;
	text-transform: none;
	color: #6666CC;
}
	

/* visited link color */
a:visited {
color: #996666; 
text-decoration: underline; }

/*copyright class*/
p.copyright{
	font-size: 55%;
	color: #AAAAAA;
	text-indent: 0pt;
	line-height: normal;
}

