/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

.calendar table {
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

/*.calendar .nav {
  background: transparent url(img/menuarrow.gif) no-repeat 100% 100%;
}*/

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #000;
  padding: 2px;
  text-align: center;
  background: #f4f0e8;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when 
hover */
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  padding: 0px;
  background-color: #e4e0d8;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
  background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  padding: 2px 2px 0px 2px;
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) 
*/
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 
rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) 
*/
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in 
footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) 
*/

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
  font-size: 90%;
  padding: 1px;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #c4c0b8;
  padding: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #048;
  color: #fea;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #766;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
} 
/* Redefined HTML Tags ****************************************** */
a {
	color: #0066CC;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	}
a:visited {
	color: 0066CC;
	border-bottom: 1px solid #0066CC;
	}
a:hover {
	color: #FF9933;
	border-bottom: 1px solid #FF9933;
	}
a:focus {
	color: #FF9933;
	border-bottom: 1px solid #FF9933;
	}
.ImgBod {
	border-bottom: none;
	}
body {
	padding: 0px 10px 5px 15px;
	margin: 0px;
	background-image: url(img/viewbg.gif);
	background-repeat: repeat-y;
	background-position: left top;
	color: #000000;
	text-align: center;	
	}
input, textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #663300;
	border-right-color: #663300;
	border-bottom-color: #CC9999;
	border-left-color: #CC9999;
	background-color: #FFFFFF;
	padding: 1px 5px 3px;
	}

select, option {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #663300;
	border-right-color: #663300;
	border-bottom-color: #CC9999;
	border-left-color: #CC9999;
	background-color: #FFFFFF;
	}
	
td {
word-spacing: 1px
}



/* Custom ID Selector Styles ****************************************** */

#Box {
	border-top: 1px solid #8C7C77;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	border-left: 1px solid #8C7C77;
	background-color: #FFFFFF;

}
#Brheight {
	line-height: 10px;
}
#Dot /* Use this ID on the Instruction/Quick Links/Dotted/Dashed Table */{
	border: 1px dashed #D9BCB1;
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 2px;
	background-color: #FFFFFF;
	}

#Header /* Use this ID for the Page or Main Header Table */ {
	margin-top: 5px;
	}

#LabelinTab /* Use this ID for the table used to display from & to data inside a report table */ {
	padding-left: 4px;
	padding-right: 4px;	
	padding-top: 3px;
	padding-bottom: 3px;		
	color: #333333;
	margin-bottom: 2px;
	border-bottom: 1px solid #8C7C77;
	background-color: #EDECE7;		
	}
#LabelinTab td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	}
	
#Navigator /* Use this ID for the BreadCrumb table and the Page Navigator table */ {
	padding-left: 10px;
	color: #40554F;
	padding-top: 2px;
	padding-bottom: 5px;

	}
#Navigator td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	}
#Navigator a:link {
	color: #0066CC;
	margin-bottom: 2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	}
#Navigator a:hover {
	color: #DD6600;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DD6600;
	}
#Navigator a:visited {
	color: #0066CC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	}
#Navigator input, #Navigator textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border-width: 1px;
	border-style: solid;
	border-top-color: #A4B5C0;
	border-right-color: #BCD9B1;
	border-bottom-color: #E0E2E3;
	border-left-color: #BCD9B1;
	background-color: #F7F8F9;
	vertical-align: middle;
	}
#Navigator select1, #Navigator option1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border: none;
	vertical-align: middle;
	padding: 0px;
	margin: 0px;
	}

#Sub {
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #D9D7CD;
	border-bottom: 1px solid #8E8C77;
	border-left: 1px solid #FFFFFF;
	background-color: #D9D7CD;
	padding: 2px;
	}
#ViewLayout /* Use this ID for the View Layout table to controls the width of the table*/ {
	width:580px;
	margin-bottom: 10px;
	margin-top: 7px;
	margin-right: auto;
	margin-left: auto;


	}


/* Custom Class Selector Styles ****************************************** */

.Asterisk {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FF0000;
	}
.arcTL {
	background-image: url(img/arc_tl.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 6px;
	height: 6px;
	background-color: #F6FFF3;

}
.arcTR {
	background-image: url(img/arc_tr.gif);
	background-position: right top;
	width: 6px;
	background-repeat: no-repeat;
	background-color: #F6FFF3;
}
.arcBL {
	background-image: url(img/arc_bl.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 6px;
	height: 6px;
	background-color: #F6FFF3;

}
.arcBR {
	background-image: url(img/arc_br.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 6px;
	height: 6px;
	background-color: #F6FFF3;
}
.BlackBox {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: justify;
	vertical-align: baseline;
	font-weight: bold;
	height: 16px;
	width: 18px;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	background-color: #063061;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.BorCurveTL {
	background-image: url(img/curve_tl.gif);
	background-position: left top;
	background-repeat: no-repeat;
	font-size: 1px;
	height: 8px;
	width: 8px;
}
.BorCurveTR {
	background-image: url(img/curve_tr.gif);
	background-position: right top;
	font-size: 1px;
	background-repeat: no-repeat;
	height: 8px;
	width: 8px;
}
.BorCurveBL {
	background-image: url(img/curve_bl.gif);
	background-position: left bottom;
	font-size: 1px;
	background-repeat: no-repeat;
	height: 8px;
	width: 8px;
}
.BorCurveBR {
	background-image: url(img/curve_br.gif);
	background-position: right bottom;
	font-size: 1px;
	background-repeat: no-repeat;
	height: 8px;
	width: 8px;
}
.BorTop {
	background-color: #FCFAF9;
	height: 8px;
	background-image: url(img/curve_t.gif);
	background-repeat: repeat-x;
	background-position: center top;
	text-align: center;
	vertical-align: middle;
}
.BorBottom {
	background-color: #FCFAF9;
	height: 8px;
	background-image: url(img/curve_b.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	text-align: center;
	vertical-align: middle;

	}
.BorLeft {
	background-color: #FCFAF9;
	width: 8px;
	background-image: url(img/curve_l.gif);
	background-repeat: repeat-y;
	background-position: left;
}
.BorRight {
	background-color: #FCFAF9;
	width: 8px;
	background-image: url(img/curve_r.gif);
	background-repeat: repeat-y;
	background-position: right;
}
.BorInCurveBL {
	background-image: url(img/curvei_bl.gif);
	background-position: left bottom;
	width: 8px;
	height: 8px;
	background-repeat: no-repeat;
}
.BorInCurveTR {
	background-image: url(img/curvei_tr.gif);
	background-position: right top;
	background-repeat: no-repeat;
	width: 8px;
}
.BorInCurveBR {
	background-image: url(img/curvei_br.gif);
	background-position: right bottom;
	width: 8px;
	height: 8px;
	background-repeat: no-repeat;
}
.BorInCurveTL {
	background-image: url(img/curvei_tl.gif);
	background-position: right top;
	background-repeat: no-repeat;
	width: 8px;
}
.Box {
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #8C7C77;
	border-bottom: 2px solid #8C7C77;
	border-left: 2px solid #FFFFFF;
}
.Button {
	background-image: url(img/button_b.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #AAAAAA;
	border-right-color: #AAAAAA;
	border-bottom-color: #777777;
	border-left-color: #777777;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #42493F;
	margin: 0px;
	cursor: pointer;
	padding: 1px;
	background-color: #F8ECE9;
	}
.Confirm {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:10pt;
	padding: 8px 20px 8px 38px;
	background-image: url(img/confirm.gif);
	background-repeat: no-repeat;
	background-position: 4px 5px;
	vertical-align: text-top;
	line-height: 17pt;

}
.Data {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 10px 4px 16px;
	vertical-align: top;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E6E6;
}
.DataNumeric {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 20px 4px 16px;
	vertical-align: top;
	background-color: #FBFBFB;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E9E3;
	text-align: right;
}
.Disclaimer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: #FDFCF3;
	border: 1px solid #DED4B2;
	padding: 4px;
	}
.Error {
	font-family:Arial, Helvetica, sans-serif;
	color:#84000D;
	font-size:10pt;
	padding: 8px 5px 8px 38px;
	background-image: url(img/error.gif);
	background-repeat: no-repeat;
	background-position: 4px 5px;
	vertical-align: text-top;
	line-height: 17pt;

}
.ErrorRow {
	font-family:Arial, Helvetica, sans-serif;
	color:#84000D;
	font-size:11px;
	padding: 5px 5px 5px 28px;
	background-color: #FFF2EF;
	background-image: url(img/inerror.gif);
	background-repeat: no-repeat;
	background-position: 8px 8px;
	letter-spacing: 1px;
	vertical-align: text-top;
}
.ErrorField {
	font-family:Arial, Helvetica, sans-serif;
	color:red;
	font-size:8pt;
	letter-spacing: 1px;
	vertical-align: text-top;
	line-height: 14pt;

}
.Field {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E6E6;
	margin: 0px;

}
.GreenBG {
	background-color: #FCFAF9;
	}
.Hints {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #660000;
	padding: 1px;
	font-weight: normal;
	line-height: 13pt;
	}
.Instruction {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 5px 30px;
	background-image: url(img/instruct.gif);
	background-repeat: no-repeat;
	background-position: 6px 4px;
	vertical-align: text-top;
	line-height: 15pt;
	}
.Input1 {
	width:100%;
	text-align: right;
	background-color: #FFFFFF;
	height: 100%;

}
.InputHi {
	width:100%;
	background-color: #FFFFFB;
	text-align: right;
	height: 100%;
	position: static;

}
.InputNumeric {
	text-align: right;
}
.Label {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 16px 4px 10px;
	vertical-align: top;
	background-color: #F7F5F5;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E6E6;
	text-align: right;
	word-spacing: 0.1em;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E9E6E6;


}
.LabelComp {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 16px 4px 10px;
	vertical-align: top;
	background-color: #F7F5F5;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E6E6;
	text-align: right;
	word-spacing: 0.1em;
	background-image: url(img/complusary.gif);
	background-repeat: no-repeat;
	background-position: right top;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E9E6E6;

}

.LabelSm {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px 5px 10px 10px;
	vertical-align: middle;
	line-height: 15pt;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F4F2F2;
}
.LabelSmCopy {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	vertical-align: middle;
	line-height: 15pt;

}
.LabelSmDwn {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/DwnBt.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.LabelSmUp {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/UpBt.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.LabelSmSts {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/StsBt.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.LabelSmSrch {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/find.gif);
	background-repeat: no-repeat;
	background-position: left 9px;
}
.MainHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #993300;
	background-image: url(img/bullet.gif);
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 20px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: left center;
	vertical-align: middle;
	background-color: #FCFAF9;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #D9BCB1;
	white-space: nowrap;

	}
.Prev {
	padding: 2px 2px 5px 20px;
	background-image: url(img/pageprev.gif);
	background-repeat: no-repeat;
	background-position: left center;
	color: #AAAAAA;

	}
.Next {
	padding: 2px 20px 5px 2px;
	background-image: url(img/pagenext.gif);
	background-repeat: no-repeat;
	background-position: right center;
	text-align: right;
	color: #AAAAAA;

	}
.ButtonIn {
	background-color: #fefefe;
	background-image: url(img/button1.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C1C1C1;
	border-right-color: #C1C1C1;
	border-bottom-color: #555555;
	border-left-color: #555555;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	color: #000000;
	text-decoration: none;
	padding: 0px 3px;
	cursor: pointer;
	white-space: nowrap;
	font-weight: normal;


}
.SubHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #000000;
	background-image: url(img/bullet1.gif);
	padding-top: 12px;
	padding-right: 4px;
	padding-bottom: 12px;
	padding-left: 30px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: 10px 12px;
	vertical-align: middle;
}

.TableColHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 3px 4px;
	color: #23302D;
	background-color: #F4F2ED;
	font-weight: bold;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #DBD9B1;
	border-bottom: 1px solid #8E8C77;
	border-left: 1px solid #FFFFFF;
	vertical-align: middle;

}
.TabActive {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #993300;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #D9BCB1;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 16px;
	background-image: url(img/pagego.gif);
	background-repeat: no-repeat;
	background-position: left center;
	background-color: #FCFAF9;
	font-weight: bold;
	vertical-align: middle;
}
.TabInActive {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #95B3D0;
	cursor: pointer;
	padding-right: 3px;
	padding-left: 16px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-top: 1px solid #BCD9B1;
	border-right: 0px solid #B4BABE;
	border-bottom: 1px solid #BCD9B1;
	border-left: 0px solid #B4BABE;
	background-color: #FFFFFF;
	background-image: url(img/pagenext.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-weight: bold;


}

.TabL {
	width: 6px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #BCD9B1;
	border-right-color: #BCD9B1;
	border-bottom-color: #BCD9B1;
	border-left-color: #BCD9B1;
	background-color: #F6FFF3;

}
.TabR {
	width: 6px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #BCD9B1;
	border-right-color: #BCD9B1;
	border-bottom-color: #BCD9B1;
	border-left-color: #BCD9B1;
	height: 3px;
	background-color: #F6FFF3;

}

.TableCell {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 4px 0px;
	vertical-align: top;
	color: #000000;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #EBE9E3;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EBE9E3;
	margin: 0px;
}
.TableField {
	padding: 0px;
	vertical-align: top;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E0E9E3;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E9E3;
	margin: 0px;
}
.TableRow1 {
	background-color: #FFFFFF;
}
.TableRow2 {
	background-color: #FDFCF9;
}
.TableRow3 {
	background-color: #E1F9FF;
}
.TableRowError {
	background-color: #FFF2EF;
}
.TableSlNo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 3px 5px 3px 1px;
	vertical-align: top;
	color: #23302D;
	font-weight: bold;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #DBD9B1;
	border-bottom: 1px solid #8E8C77;
	border-left: 1px solid #FFFFFF;
	text-align: right;
	white-space: nowrap;
	background-color: #F4F2ED;


}
.TableSlNo input {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background-color: #EEF2ED;

}
.Text11px {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:11px;
	padding: 3px 3px 3px 10px;
}
.Text12px {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:12px;
	padding: 3px 3px 3px 10px;
}
.Text12Comp {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:12px;
	background-image: url(img/complusary.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding: 3px 18px 3px 10px;
	text-align: right;
}
.TipText {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 5px 5px 5px 28px;
	background-image: url(img/tip.gif);
	background-repeat: no-repeat;
	background-position: 4px 4px;
	vertical-align: text-top;
	line-height: 15pt;

	}
.TrainAct {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #FF6600;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dashed;
	border-right-style: dashed;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #BCD9B1;
	border-right-color: #BCD9B1;
	border-bottom-color: #BCD9B1;
	border-left-color: #BCD9B1;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 20px;
	background-image: url(img/pagego.gif);
	background-repeat: no-repeat;
	background-position: 6px 4px;
	background-color: #F6FFF3;
	font-weight: bold;
	vertical-align: middle;
}
.TrainNex {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #5095B6;
	padding-right: 3px;
	padding-left: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-top: 1px dashed #BCD9B1;
	border-right: 1px dashed #BCD9B1;
	border-bottom: 1px dashed #BCD9B1;
	border-left: 1px none #BCD9B1;
	background-color: #FFFFFF;
	background-image: url(img/pagenext.gif);
	background-repeat: no-repeat;
	background-position: 6px 4px;
	font-weight: normal;
}
.Train {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #000000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dashed;
	border-right-style: dashed;
	border-bottom-style: dashed;
	border-left-style: solid;
	border-top-color: #BCD9B1;
	border-right-color: #BCD9B1;
	border-bottom-color: #BCD9B1;
	border-left-color: #BCD9B1;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 10px;
	background-color: #DCECD7;
	vertical-align: middle;
	font-weight: bold;
}
.TrainPrv {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #666666;
	padding-right: 3px;
	padding-left: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-top: 1px dashed #BCD9B1;
	border-right: 1px dashed #BCD9B1;
	border-bottom: 1px dashed #BCD9B1;
	border-left: 1px none #BCD9B1;
	background-color: #F3F7F2;
	background-image: url(img/pageprev.gif);
	background-repeat: no-repeat;
	background-position: 2px 4px;
	font-weight: normal;
}
.Warning {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 8px 5px 8px 38px;
	background-image: url(img/warn.gif);
	background-repeat: no-repeat;
	background-position: 4px 4px;
	vertical-align: text-top;
	line-height: 17pt;

}

.Note {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px 20px 10px 30px;
	vertical-align: text-top;
	line-height: 15pt;
}
#BroadLayout {
	width:720px;
	margin-bottom: 10px;
	margin-top: 7px;
	margin-right: auto;
	margin-left: auto;

}
.Information {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:10pt;
	padding: 8px 20px 8px 38px;
	background-image: url(img/inform.gif);
	background-repeat: no-repeat;
	background-position: 4px 5px;
	vertical-align: text-top;
	line-height: 17pt;
}
.InlineConfirm {
	font-family:Arial, Helvetica, Geneva, sans-serif;
	font-size:12px;
	background-image: url(img/confirmsm.gif);
	background-repeat: no-repeat;
	background-position: 2px 1px;
	padding: 8px 5px 8px 30px;
	}
.InlineInformation {
	font-family:Arial, Helvetica, Geneva, sans-serif;
	font-size:12px;
	background-image: url(img/informationsm.gif);
	background-repeat: no-repeat;
	background-position: 3px 1px;
	padding: 8px 5px 8px 30px;
	}
.InlineError {
	font-family:Arial, Helvetica, Geneva, sans-serif;
	font-size:12px;
	background-image: url(img/errorsm.gif);
	background-repeat: no-repeat;
	background-position: 2px 1px;
	padding: 8px 5px 8px 30px;
	}
.InlineWarning {
	font-family:Arial, Helvetica, Geneva, sans-serif;
	font-size:12px;
	background-image: url(img/warningsm.gif);
	background-repeat: no-repeat;
	background-position: 2px 2px;
	padding: 8px 5px 8px 30px;
	}
.Highlighter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 4px 4px 0px;
	vertical-align: top;
	color: #000000;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #DFE9EA;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D0DEDF;
	margin: 0px;
	font-weight: bold;
	background-color: #FCFFE1;


}
#SubLg {

	border-top: 2px solid #FFFFFF;
	border-right: 1px solid #BCD9B1;
	border-bottom: 1px solid #8C7C77;
	border-left: 1px solid #FFFFFF;
	background-color:  #F9FEF9;
	padding: 2px;
}
.ButtonLink {
	background-image: url(img/button2.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C1C1C1;
	border-right-color: #C1C1C1;
	border-bottom-color: #999999;
	border-left-color: #999999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	margin-top: 8pt;
	padding: 0pt;
	background-position: 0 -2;



}
.ButtonHi {

	background-image: url(img/button_a.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #8D8D8D;
	border-right-color: #8D8D8D;
	border-bottom-color: #636363;
	border-left-color: #636363;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #622F01;
	margin: 0px;
	cursor: pointer;
	padding: 1px;
	background-color: #FFE391;
}
.SubHeader1 {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #003300;
	background-image: url(img/bullet1.gif);
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 20px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: 3px 5px;
	vertical-align: middle;
	background-color: #FCFAF9;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #D9BCB1;
}
.TableColHeadGr {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 3px 4px;
	color: #23302D;
	background-color: #CFF3DB;
	font-weight: bold;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #BCD9B1;
	border-bottom: 1px solid #8C7C77;
	border-left: 1px solid #FFFFFF;
	vertical-align: middle;
}
.TableColHeadPi {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 3px 4px;
	color: #491619;
	background-color: #FFE1E3;
	font-weight: bold;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #F99FA6;
	border-bottom: 1px solid #A7767F;
	border-left: 1px solid #FFFFFF;
	vertical-align: middle;
}
.WhatNextHdng {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:8pt;
	padding: 5px 5px 1px 14px;
	vertical-align: text-top;
	letter-spacing: 1px;
	font-weight: bold;
	background-image: url(img/redarrow.gif);
	background-repeat: no-repeat;
	background-position: left 8px;


}
.WhatNext {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:8.5pt;
	font-weight: normal;
	line-height: 14pt;
	vertical-align: top;
	background-image: url(img/dot.gif);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top: 3px;
	text-align: justify;




}
.TableSubHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	padding: 6px 4px 4px 6px;
	color: #000000;
	font-weight: bold;
	border-top: 1px solid #8C7C77;
	background-image: url(img/Tablesubg.gif);
	background-repeat: repeat-x;
	background-position: left center;
	letter-spacing: 1px;


}
.TableSubHeaderL {
	background-image: url(img/TablesubL.gif);
	background-repeat: no-repeat;
	background-position: left center;
	width: 14px;
	padding: 0px;


}
.TableSubHeaderR {
	background-image: url(img/TablesubR.gif);
	background-repeat: no-repeat;
	background-position: left center;
	width: 10px;
	padding: 0px;

}
.ButtonInBold {
	background-color: #fefefe;
	background-image: url(img/button1.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C1C1C1;
	border-right-color: #C1C1C1;
	border-bottom-color: #555555;
	border-left-color: #555555;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	color: #002000;
	text-decoration: none;
	padding: 0px 3px;
	cursor: pointer;
	white-space: nowrap;
	font-weight: bold;
	letter-spacing: 0.1em;

}

/* Menu Items CSS */

.topMenu {
}

.submenu {
	padding: 0px;
}

.topItemNormal {
	background-image: url(img/bg_gr.gif);
	background-repeat: repeat;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	cursor: pointer;
	height: 24px;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C5D6C2;
	border-right-color: #87AB8B;
	border-bottom-color: #313D29;
	border-left-color: #547A52;
	margin-right: 8px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 8px;
}

.topItemOver {
	background-image: url(img/bg_or.gif);
	background-repeat: repeat;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000022;
	cursor: pointer;
	height: 24px;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FCCFD2;
	border-right-color: #A4484F;
	border-bottom-color: #602B2F;
	border-left-color: #CD8F94;
	margin-right: 8px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 8px;
}

.itemNormal {
	cursor: pointer;
	background-color: #FDF5F7;
	padding: 3px 3px 3px 8px;
	width: 250px;
	height: 24px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #F7D5DE;
	border-right-color: #E58588;
	border-bottom-color: #E58588;
	border-left-color: #E58588;
}

.itemOver {
  	cursor: pointer;
  	background-color: #FCCFD2;
	padding: 3px 3px 3px 8px;
  	width: 250px;
	height: 24px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #602B2F;
	border-right-color: #A4484F;
	border-bottom-color: #A4484F;
	border-left-color: #CD8F94;
	}

.itemTextNormal {
  font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #000000;
}

.itemTextOver {
  font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #000000;
}

.topItemTextNormal2 {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
}

.topItemTextOver2 {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
}

/* Download Buttons */

TD.butonActive {
	padding: 10px 20px;
	text-align: center;
	border: 2px solid #666666;
	color: #CC0000;
}
TD.butonClicked {
	text-align: center;
	padding: 10px 20px;
	border: 2px solid #666666;
}
TD.buton {
	text-align: center;
	padding: 10px 20px;
	border: 1px solid #993300;
}

.buttonbar {
	FONT-WEIGHT: bold;
	FONT-SIZE: 10pt;
	COLOR: #000000;
	FONT-FAMILY: Arial, Helvetica, sans-serif;
	TEXT-DECORATION: none;
	border: 0px;
	line-height: 16px;
}
.buttonbar:visited {
	FONT-WEIGHT: bold;
	FONT-SIZE: 10pt;
	COLOR: #000000;
	FONT-FAMILY: Arial, Helvetica, sans-serif;
	TEXT-DECORATION: none;
	border: 0px;
	line-height: 16px;
}
.buttonbar:hover {
	FONT-WEIGHT: bold;
	FONT-SIZE: 10pt;
	COLOR: #000000;
	FONT-FAMILY: Arial, Helvetica, sans-serif;
	TEXT-DECORATION: none;
	border: 0px;
	line-height: 16px;
}

/* Style for Top Menu Background in HomeHeader.jsp */
.TopMenuBg {
	background-color: #FCFAF9;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D9BCB1;
}

/* end Menu Items CSS */
.DnTLcurv {
	background-image: url(img/DnTLcurv.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 8px;
	width: 8px;
}
.DnTRcurv {
	background-image: url(img/DnTRcurv.gif);
	background-repeat: no-repeat;
	background-position: right top;
	height: 8px;
	width: 8px;
}
.DnBLcurv {
	background-image: url(img/DnBLcurv.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 8px;
	width: 8px;
}
.DnBRcurv {
	background-image: url(img/DnBRcurv.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 8px;
	width: 8px;
}
.DnTBor {
	background-image: url(img/DnTBor.gif);
	background-repeat: repeat-x;
	background-position: left top;
	height: 8px;
}
.DnRBor {
	background-image: url(img/DnRBor.gif);
	background-repeat: repeat-y;
	background-position: right top;
	width: 8px;
}
.DnLBor {
	background-image: url(img/DnLBor.gif);
	background-repeat: repeat-y;
	background-position: left top;
	width: 8px;
}
.DnBBor {
	background-image: url(img/DnBBor.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
	height: 8px;
}
#Down  {
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	border: 0px;
	}
#Down a:link {
	color: #990000;
	text-decoration: none;
	border: 0px;
	}
#Down a:hover {
	color: #CC6600;
	text-decoration: none;
	border: 0px;
	}
#Down a:visited {
	color: #990000;
	text-decoration: none;
	border: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #663300;
	border-right-color: #663300;
	border-bottom-color: #CC9999;
	border-left-color: #CC9999;
	background-color: #FFFFFF;
	padding: 1px 5px 3px;
}
.LabelSmEfil {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/EfilBt.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelEFilSts {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/EfilSts.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmViewDown {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/viewdown.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmBCast {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/broadcast.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.DwnManual {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/dwnMan.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.Copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999; }

#search	{
	z-index: 1000;
	height: 20px;
	width: auto;
	float: right;
	top: 2px;
	position: absolute;
	left: 55%;
	bottom: auto;
	white-space: nowrap;
	vertical-align: middle;
	right: auto;
	}
	
#search1	{
	z-index: 1000;
	height: 20px;
	width: auto;
	float: right;
	top: 2px;
	position: absolute;
	left: 45%;
	bottom: auto;
	white-space: nowrap;
	vertical-align: top;
	right: auto;
	padding-top: 8px;
	padding-bottom: 8px;
	}

#search input, #search select, #search1 input, #search1 select{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border-top-color: #000000;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #000000;
	background-color: #F7FDF7;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	vertical-align: middle;
	}
.LabelSmBlkPrint {


	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 12px 10px 12px 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/printblk.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmDwnxml {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/DwnBtXML.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmUpxml {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/UpBtxml.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmArr {

	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px;
	padding-left: 30px;
	vertical-align: middle;
	line-height: 15pt;
	background-image: url(img/smallArrowRight.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.LabelSmNopad {


	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px 30px 10px 0px;
	vertical-align: top;
	line-height: 15pt;
}
.LabelSmNopadCopy {



	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 14px 8px 10px 12px;
	vertical-align: top;
	line-height: 15pt;
}
.ButtonRej {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #8D8D8D;
	border-right-color: #8D8D8D;
	border-bottom-color: #636363;
	border-left-color: #636363;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #000000;
	margin: 0px;
	cursor: pointer;
	padding: 3px;
	background-color: #FFCCCC;
}
.ButtonAprov {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #000000;
	margin: 0px;
	cursor: pointer;
	padding: 3px;
	background-color: #CCFFCC;
	border: 1px solid #567856;
}
.LabelSmComp {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px 16px 10px 0px;
	vertical-align: top;
	line-height: 15pt;
	background-image: url(img/complusary.gif);
	background-repeat: no-repeat;
	background-position: right 6px;
	text-align: right;
}
.LabelSmNC {
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	font-size:9pt;
	padding: 10px 16px 10px 0px;
	vertical-align: top;
	line-height: 15pt;
	text-align: right;
}
.ButtonPi {
	background-image: url(img/button_pi.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FEDFEF;
	border-right-color: #FEDFEF;
	border-bottom-color: #E7BCD9;
	border-left-color: #E7BCD9;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #666666;
	margin: 0px;
	cursor: pointer;
	padding: 1px;
	background-color: #FFEDFA;
}
.ButtonBl {
	background-image: url(img/button_bl.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #DFE9FE;
	border-right-color: #DFE9FE;
	border-bottom-color: #BCCAE7;
	border-left-color: #BCCAE7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	font-weight: bold;
	color: #666666;
	margin: 0px;
	cursor: pointer;
	padding: 1px;
	background-color: #ECF2FF;
}
