/* CSS Document */
/* set the color of the text */

/*<style type="text/css"> */

/* h1 {color: #001100} */
/* color of a text link */

a.one:link {color: #320407}
a.one:visited {color: #320407}
a.one:hover {color: #b7070a}
a.one:active {color: #320407}

a.two:link {color: #ffffff}
a.two:visited {color: #ffffff}
a.two:hover {color: #b7070a}
a.two:active {color: #320407}

html, body {
	margin: 0 0 0 0;
	padding: 0;
	text-align: center;
	background: #b6070c url(/Common/subpage_bg_body.jpg) repeat-y top center;

}


a {font-size: 8pt}
a {font-style: normal}
a {font-family: arial}
a {text-decoration: none}
a {letter-spacing: 1px}
a {line-height: 9pt}



p.margin {margin-left: .25cm}

div {font-size: 10pt}
div.margin {margin: 1cm 2cm 2cm 2cm}
/*a.uppercase {text-transform: uppercase}
a.capitalize {text-transform: capitalize}
a.indent {text-indent: 5cm}
*/


p {font-size: 8pt}
p {font-style: normal}
p {font-family: arial}
p {text-decoration: none}
p {letter-spacing: 0px} 



</style>

/*
<p><b><a href="default.asp" target="_blank">This is a link</a></b></p>
<p><b>Note:</b> a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!</p>
<p><b>Note:</b> a:active MUST come after a:hover in the CSS definition in order to be effective!!</p>
*/

/* set the spacing of the text	*/
/* <style type="text/css">		*/
/* h1 {letter-spacing: -3px}	*/
/* h4 {letter-spacing: 1cm}		*/
/* </style>
/*
<h1>This is header 1</h1>
<h4>This is header 4</h4>
*/

/* text decoration (overline, line-through, underline, none) */
/* <style type="text/css">				*/
/* h1 {text-decoration: overline} 		*/ 
/* h2 {text-decoration: line-through}	*/
/* h3 {text-decoration: underline}		*/
/* a {text-decoration: none}			*/
/* </style> */
/*
<h1>This is header 1</h1>
<h2>This is header 2</h2>
<h3>This is header 3</h3>
<a href="http://www.w3schools.com/default.asp">
This is a link</a>
*/

/* index text 
/* <style type="text/css">
/* p {text-indent: 50cm} 
/* </style>
/*
<p>
This is some text in a paragraph
This is some text in a paragraph
This is some text in a paragraph
This is some text in a paragraph
This is some text in a paragraph
This is some text in a paragraph
</p>
*/

/* capaitalize (upercase, lowercase */
/*<style type="text/css"> ·/
/* p.uppercase {text-transform: uppercase} 		*/
/* p.lowercase {text-transform: lowercase} 		*/
/* p.capitalize {text-transform: capitalize}	·/
</style>
/* <p class="uppercase">
This is some text in a paragraph
</p>

<p class="lowercase">
This is some text in a paragraph
</p>

<p class="capitalize">
This is some text in a paragraph
</p>
*/

/* set the font 
<style type="text/css">
h3 {font-family: times}
p {font-family: courier}
p.sansserif {font-family: sans-serif}
</style>
*/
/*
<h3>This is header 3</h3>
<p>This is a paragraph</p>
<p class="sansserif">
This is a paragraph</p>
*/


/* set the size of the font  */
/*
<style type="text/css">
h1 {font-size: 150%}
h2 {font-size: 130%}
p {font-size: 100%}
</style>

<h1>This is header 1</h1>
<h2>This is header 2</h2>
<p>This is a paragraph</p>
*/

/* set the style ofthe font  */
/*
<style type="text/css">
h1 {font-style: italic}
h2 {font-style: normal}
p {font-style: oblique}
</style>


<h1>This is header 1</h1>
<h2>This is header 2</h2>
<p>This is a paragraph</p>
*/


/* set the boldness of font  */
/*
<style type="text/css">
p.normal {font-weight: normal}
p.thick {font-weight: bold}
p.thicker {font-weight: 900}
</style>


<p class="normal">
This is a paragraph</p>

<p class="thick">
This is a paragraph</p>

<p class="thicker">
This is a paragraph</p>
*/

/* set the space between lines of text  */
/* <style type="text/css">				
p.increase {line-height: 50cm}
</style>
/*
<p>
This is a paragraph This is a paragraph
This is a paragraph This is a paragraph
This is a paragraph This is a paragraph
This is a paragraph
</p>

<p class="increase">
This is a paragraph This is a paragraph
This is a paragraph This is a paragraph
This is a paragraph This is a paragraph
This is a paragraph</p>
*/
















