﻿/* Structural styles */

.main_body {
    border: 0 none;
    float: left;
    height: auto;
    min-height: 100%;
    overflow: auto;
    position: relative;
    width: 100%;
}

.footer {
    clear: both;
    position: absolute;
    bottom: 0;
    width: 100%;
	color: Black;
	font-size:8pt; 
	text-align:center;
}

.left {
    float: left;
}

.right {
    float: right;
}

.txt_left {
    text-align: left;
}

.txt_right {
    text-align: right;
}

.top {
    vertical-align: top;
}

.bottom {
    vertical-align: bottom;
}

.hcentre {
    text-align: center;
}

.vcentre {
    vertical-align: middle;
}

.fill_width {
    width: 100%;
}

.fill_height {
    height: 100%;
}

.fill_relative {
    width: 100%;
    height: 100%;
    position: relative;
}

.clear_both {
    clear: both;
}
/* End Structural styles ----------------------------------------------------------------------*/

/* Table sorter */
table.tablesorter {
    color: White;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    /*white-space: nowrap;*/
    width: auto;
}

table.tablesorter thead tr th, table.tablesorter tfoot tr th {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #006FC0;
    border-color: #000000 #000000 #000000 #FFFFFF;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    font-size: 10pt;
    padding: 4px;
}

table.tablesorter thead tr .header, table.tablesorter thead tr .tablesorter-header {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    /*background-color: #006FC0;*/
    background-image: url(/images/buttons/unsorted_btn.png);
    background-repeat: no-repeat;
    border-color: #000000 #000000 #000000 #FFFFFF;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: White;
    cursor: pointer;
    height: auto;
    padding-left: 30px;
    padding-top: 8px;
}

table.tablesorter tbody tr td {
    background-color: #F0F0F0;
    border-left: 1px solid #FFFFFF;
    color: #000000;
    font-weight: normal;
    padding: 4px;
    text-align: left;
    vertical-align: middle;
}

table.tablesorter tbody tr.odd td {
    background-color: #D1D2D4;
}

table.tablesorter tbody tr.even td {
    background-color: #F0F0F0;
}


table.tablesorter tbody tr.error {
	background: #fcd1d1;
	border: 1px solid #C00;
}

table.tablesorter tbody tr.error td {
	background: #fcd1d1;
}

table.tablesorter thead tr .headerSortUp, table.tablesorter thead tr .sorter-false {
    background-image: none;
}

table.tablesorter thead tr .headerSortUp, table.tablesorter thead tr .tablesorter-headerAsc {
    background-image: url(/images/buttons/ascending_btn.png);
}

table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .tablesorter-headerDesc {
    background-image: url(/images/buttons/descending_btn.png);
}

table.tablesorter tr.title td a:hover {
    text-decoration: underline;
}

/* End Table sorter ---------------------------------------------------------------------*/

/* Form table */

table.table_fieldset {
    width: 100%;
}

table.table_fieldset td 
{
    vertical-align: top;
    text-align: left;
}

table.table_fieldset td.label {
    white-space: nowrap;
    width: 20%;
   /* padding-left: 1em;*/
}

table.table_fieldset td.field_adj {
    padding-left: 5px;
}

table.table_fieldset td.value {
    font-weight: normal;
    padding-right: 3em;
}

table.table_fieldset td.readonlylabel {
    white-space: nowrap;
    color: gray;
}

table.table_fieldset td.mandatorylabel {
    white-space: nowrap;
}

table.table_fieldset input:not([type=radio]):not([type=checkbox]):not(.dateinput), textarea
{
    width: 20em;
    resize: none;
}

table.table_fieldset input.dateinput
{
    width: 7em;
}

table.table_fieldset input.radiobutton
{
    width: 2em;
}

table.table_fieldset td.editvalue
{
    text-align: left;
}

select
{
    height: 1.6em;
    min-width: 5em;
}

/* End Form table --------------------------------------------------------------------------*/
 .underlinelabel
 {
    text-decoration: underline;
    font-weight: bold;
 }
 
 /* text container styles*/
 .text_col2{
    padding-left: 12px;
 }
 
/* Added button styles */
a.abutton .abutton-pdf{
	background: url(../images/pdf_btn.png) no-repeat 3px 3px;
}
a.abutton .abutton-excel{
	background: url(../images/excel_btn.png) no-repeat 3px 3px;
}
a.abutton .abutton-csv{
	background: url(../images/csv_btn.png) no-repeat 3px 3px;
}
a.abutton .abutton-word {
    background: url(../images/word_btn.png) no-repeat 3px 3px;
}

/* Disabled buttons */
a.abutton-disabled .abutton-csv{
	background: url(../images/csv_btn_disabled.png) no-repeat 3px 3px;
}
a.abutton-disabled .abutton-pdf{
	background: url(../images/pdf_btn_disabled.png) no-repeat 3px 3px;
}

/* Tab Menu */
.tab_menu{
	width:auto;	
}

.tab_menu div{
	background-color: #043B73;
	display:inline-block;
	font-weight:bold;
	width:auto;
	padding:5px 10px 5px 10px;
}

.tab_menu div a{
	color: #fff;
	text-decoration:none;
}

.tab_menu div a:hover{
	color: #f28200;
	text-decoration:underline;
}

.tab_menu div.active_tab{
	background-color:#CCC;
}

.tab_menu div.active_tab a{
	color: #043B73;
	text-decoration:none;
}

.tab_menu div.active_tab a:hover{
	color: #FFF;
	text-decoration:none;
}


/* End Tab Menu */