/* stylesheet yardstick.css */

body{
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 10pt;
  font-weight: 400;
  color: black;
  background: white;
  /* top, right, bottom, left */
  margin: 0 0 0 0;
}

h1{
  font-weight: 800;
  font-size: 32pt;
  color: #1E3E93;
  padding-left: 32px;
  padding-top: 32px;}
}

h2{
  font-weight: 600;
  font-size: 11pt;
  color: #1E3E93;
}
table.main{
  width: 780px;
  margin: 0 0 0 0;
}

table.menu{
  width: 140px;
  margin: 0 0 0 0;
  background: #1E3E93;
}

table.win{
  margin: 6 0 6 6;
}

table.grid{
  border: 0;
}

table.zero{
  margin: 0 0 0 0;
  border: 0;
	cellpadding: 0;
	cellspacing: 0;
}

th{
  font-family: verdana,arial,helvetica;
  font-size: 12pt;
  font-weight: 600;
  vertical-align: top;
  color: white;
  background: #666699;
}

th.colhead{
  font-size:10pt;
  font-weight: 600;
  color: white;
  //background: #666699;
  //background: #1E3E93;
  background: #2BACE2;
  text-align: left;
}

th.colheadl{
  font-size:10pt;
  font-weight: 600;
  color: white;
  //background: #666699;
  background: #274EBB;
  text-align: left;
}

th.colheadsmall{
  font-size:8pt;
  font-weight: 600;
  color: white;
  background: #666699;
  text-align: left;
}

td{
  font-family: verdana,arial,helvetica;
  font-size:10pt;
  font-weight: normal;
  background: white;
}

td.cell{
  font-weight: normal;
  background: #EEEEEE;
}

td.menu{
  font-size: 8pt;
  color: white;
  font-weight: 600;
  background: #1E3E93;
  padding-left: 4;
}

td.majorhdg{
  font-weight: 600;
  font-size: 20pt;
  text-align: left;
  color: black;
}

td.minorhdg{
  font-weight: 600;
  font-size: 16pt;
  color: black;
}

td.hdg{
  font-weight: 600;
  font-size: 14pt;
  text-align: left;
  color:#1E3E93;
}

td.subhdg{
  font-weight: 600;
  font-size: 11pt;
  color:#1E3E93;
  }

td.subhdg2{
  font-weight: 600;
  font-size: 10pt;
  color:#1E3E93;
  }

td.boldright{
  background: #eeeeee;
  text-align:right;
  font-weight: 600;
  font-size: 8pt;
  white-space: nowrap;
}

td.boldleft{
  background: #eeeeee;
  font-weight: 600;
  font-size: 8pt;
}

td.mandatory{
  background: #eeeeee;
  color: #FF0000;
  text-align:right;
  font-weight: 600;
  font-size: 8pt;
}

td.notes{
  font-size:9pt;
  font-style:italic;
}

td.Small{
  font-family: verdana,arial,helvetica;
  font-size:8pt;
  font-weight: normal;
  background: white;
}

td.Top{
	 vertical-align:top;
}

td.TopRight{
	 vertical-align:top;
	 text-align:right;
}
.LabelBoldRight{
  background: #eeeeee;
  text-align:right;
  font-weight: 600;
  font-size: 8pt;
  white-space: nowrap;
}

.LabelMandatory{
  background: #eeeeee;
  color: #FF0000;
  text-align:right;
  font-weight: 600;
  font-size: 8pt;
}

.MyStyle1{
  font-size:10pt;
  font-weight: 600;
	color: #666666;
  text-align: left;
}

.MyStyle2{
  font-size:8pt;
  font-weight: 500;
}

.submit{
  font-size: 8pt;
  font-weight: bold;
  //color: #1E3E93;
  //background-color: #CCCC00;
  color: #000000;
  background-color: #C3CF2F; 
}

.input{
  font-size:8pt;
}

a:link{
  //color: #330066;
  color: #1E3E93;
}

a:visited{
  color: #1E3E93;
}

a:hover{
  background:#C3CF2F;
}

a.menu:link{
  font-weight: 600;
  color: #C3CF2F;
  text-decoration: none;
  padding-left: 4;
}

a.menu:visited{
  font-weight: 600;
  color: #C3CF2F;
  text-decoration: none;
}

a.menu:hover{
  color: #1E3E93;
}

a.sort:link{
  color: white;
  text-decoration: none;
}

a.sort:visited{
  color: white;
  text-decoration: none;
}

a.tab:link{
  font-weight: 600;
  font-size: 12pt;
  color:#666699;
  text-decoration: underline;
}

a.tab:visited{
  font-weight: 600;
  font-size: 12pt;
  color:#666699;
  text-decoration: underline;
}

a.tab:hover{
  color:#1E3E93;
}

.error{
  background: red;
  margin-left: 20pt;
  font-size: 14pt;
  color: white;
  font-weight: 600;
  text-align: left;
}

.status{
  background: #C3CF2F;
  margin-left: 20pt;
  font-size: 14pt;
  color: white;
  font-weight: 600;
  text-align: left;
  }

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 12em;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	background-color: #FFFFCC;
	padding: 3px;
}

#content {
	clear: left;
}

tr.bgwhite td {background-color: #FFFFFF}
tr.bglightgrey td {background-color: #EEEEEE}
tr.bgwhite td input {background-color: #FFFFFF}
tr.bglightgrey td input {background-color: #EEEEEE}
tr.bgwhite td select {background-color: #FFFFFF}
tr.bglightgrey td select {background-color: #EEEEEE}

.redtxt {background: red}
.yellowtxt {background: yellow}

.LINKCSS {
	BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; Z-INDEX: 100; VISIBILITY: hidden; FONT: 10pt/16pt Verdana, Tahoma, Arial, sans-serif; BORDER-LEFT: #808080 1px solid; WIDTH: 120px; BORDER-BOTTOM: #808080 1px solid; POSITION: absolute; BACKGROUND-COLOR: #d3d3d3; TEXT-DECORATION: none
}
.LINKCSS A {
	PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px; FONT-WEIGHT: normal; PADDING-BOTTOM: 0px; WIDTH: 100%; TEXT-INDENT: 2px; PADDING-TOP: 0px; TEXT-DECORATION: none
}
.LINKCSS A:hover {
	COLOR: white; BACKGROUND-COLOR: #C3CF2F
}
DIV.LINKCSS {
	FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif
}
DIV.LINKCSS A {
	FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif
}
DIV.LINKCSS A:visited {
	FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif
}
DIV.LINKCSS A:hover {
	FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif; TEXT-DECORATION: none
}
DIV.MENU {
	FONT-WEIGHT: bold; TEXT-ALIGN: center; FONT-SIZE: 10pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif; TEXT-DECORATION: none
}
DIV.MENU A {
	FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif; TEXT-DECORATION: none
}
DIV.MENU A:visited {
	FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif; TEXT-DECORATION: none
}
DIV.MENU A:hover {
	FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #2f4f4f; FONT-FAMILY: Verdana, Tahoma, Arial, sans-serif; TEXT-DECORATION: underline; BACKGROUND-COLOR: #C3CF2F
}