/*
Syntax
p,h1
{
text-align: center;
color: black;
font-family: arial
} 

The class Selector
p.right {text-align: right}
<p class="right"> 
Note: To apply more than one class per given element, the syntax is:
<p class="center bold">
 
ALL HTML elements with class="center" will be center-aligned:
.center {text-align: center} 

Elements with Particular Attributes
input[type="text"] {background-color: blue}

Element with id attribute with a value of "green":
#green {color: green}
The p element that has an id with a value of "para1":
p#para1
{
text-align: center;
color: red
} 
*/
/* This is a comment */
 

body
{
  font: 9pt Arial,sans-serif;
  color: #000066;
  background: #ffffff;
  margin : 0px 0px 0px 0px;
}
hr { color: #000099; }


a:visited{ color: #000066; text-decoration: underline;}
a.link:hover{ color: #DE2113; text-decoration: underline;}
a.link:visited{ color: #000066; text-decoration: underline;}
a:link {color: #000066; text-decoration: underline;}
a.plink {  font-family: arial, verdana; color: #222; font-size: 8pt; text-decoration: none;}
a.plink:hover {  font-family: arial, verdana; color: #DE2113; font-size: 8pt; text-decoration: underline;}
a.wlink {  font-family: arial, verdana; color: #CDCDCD; font-size: 8pt; text-decoration: none;}
a.wlink:hover {  font-family: arial, verdana; color:#FFFFFF; font-size: 8pt; text-decoration: underline;}
a.tablink {  font-family: arial, verdana; color: #FFFFFF; font-size: 10pt; text-decoration: none;font-weight: bold;}
a.tablink:hover {  font-family: arial, verdana; color:#FF0000; font-size: 10pt; text-decoration: underline;font-weight: bold;}

.load{background:url('../load.gif') no-repeat center;}

#footer {color: #000000; }
.bigtitle { font-size: 18pt; font-weight: bold; }
.medtitle { font-size: 11pt; font-weight: bold; }
.redtitle { font-size: 12pt; color: #dd0000; font-style:italic; font-weight: bold; text-align: left}
td.cellheading { font-size: 8pt; font-weight: bold; text-align: center }
.smallblue { font-size: 7pt; font-weight: normal; text-align: center; color:#000066 }

input.buttonSmall { background-color:red; color:white; BORDER-RIGHT: #7f9db9 1px solid; BORDER-TOP: #7f9db9 1px solid; FONT-SIZE: 8pt; BORDER-LEFT: #7f9db9 1px solid; BORDER-BOTTOM: #7f9db9 1px solid }
inputSmall {BORDER-RIGHT: #7f9db9 1px solid; BORDER-TOP: #7f9db9 1px solid; FONT-SIZE: 8pt; BORDER-LEFT: #7f9db9 1px solid; BORDER-BOTTOM: #7f9db9 1px solid}

table.tight 
  {border-collapse:collapse;
  padding: 0px;
  }
td.bordercell 
  {border-collapse:collapse;border: 1px  solid #ddd;
  background-color:#fafafa;font-size:11px;font-family: verdana, sans-serif;
  line-height:17px;
  vertical-align:top;
  padding: 2px 2px 2px 2px;
  color: #0000000}
td.heading 
  {border-collapse:collapse;border: 1px  solid #ddd;
  background-color:#f1f1f1;
  font-weight: bold;font-size:11px;font-family: arial, verdana, sans-serif;
  line-height:17px;
  color:#101077;
  padding: 2px 2px 2px 2px;}

input.inputBlank {
  background-color: #EBEBEB; 
  BORDER-RIGHT: #000000 0px solid; 
  BORDER-TOP: #000000 0px solid; font-family: verdana; 
  FONT-SIZE: 9pt; color: #333399; font-weight: bold; 
  BORDER-LEFT: #000000 0px solid; 
  BORDER-BOTTOM: #000000 0px solid;
  text-align:right
  }

.black12 {
  color : Black;
  font-family : Arial, Helvetica, sans-serif;
  font-size : 12px;
  font-style : normal;
}

.black12bold {
  color : Black;
  font-family : Arial, Helvetica, sans-serif;
  font-size : 12px;
  font-style : normal;
  font-weight: bold;
}

.black16bold {
  color: Black;
  font-family: arial, helvetica, sans-serif;
  font-size: 16px;
  font-style : normal;
  font-weight: bold;
}

.black14bold {
  color: Black;
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  font-style : normal;
  font-weight: bold;
}

.blue14bold {
  color: #333399;
  font-family:arial, helvetica, sans-serif;
  font-size: 15px;
  font-style : normal;
  font-weight: bold;
}

.blue18bold {
  color: #333399;
  font-family:arial, helvetica, sans-serif;
  font-size: 18px;
  font-style : normal;
  font-weight: bold;
}

.red20bold {
  color: #DD0000;
  font-family:arial, helvetica, sans-serif;
  font-size: 20px;
  font-style : normal;
  font-weight: bold;
}

.black20bold {
  color: #000000;
  font-family:arial, helvetica, sans-serif;
  font-size: 20px;
  font-style : normal;
  font-weight: bold;
}

.field {  font-family: arial, sans-serif; text-align:left; padding: 0px 0px 6px 6px; vertical-align:top; color: #000000; font-size: 9pt; text-decoration: none}
.field2 {  font-family: arial, sans-serif; text-align:left; padding: 0px 24px 6px 6px; vertical-align:top; color: #000000; font-size: 12pt; text-decoration: none}

td.bgheading { font-family: arial; background-color: #DE2113; font-size: 12pt; color: #FFFFFF; text-decoration: none; font-weight: bold; padding: 4px 0px 2px 8px;}

