
/* ===============================================================*/
/* Filename: common.inc.css 									  */
/* Date: 22. June 2004 											  */
/* ===============================================================*/
/* Description: 												  */
/* Contains stylesheets, that are common used. 					  */
/* ===============================================================*/
/* History: 													  */
/* 2004/06/22 M. Mueller (namics): merged the existing CSS-files. */
/* ===============================================================*/

/* ===============================================================*/
/* START COMMON STYLES											  */
/* ===============================================================*/

/* styles for "loading, please wait..." messages */
#message_reports {
    visibility: visible;
}

#content_reports {
    visibility: hidden;
}

.superscript {
    vertical-align: super;
    font-size: smaller;
}

.imageButton {
    background-color: transparent;
    border-style: none;
}

.disabledbutton {
    cursor: default;
}

.loadMessage {
    color: lightblue;
    background-color: Blue;
}

.listboxlabel {
    font-weight: 500;
}

.listboxheader {
    font-weight: 500;
}

.listbox,
    .textinput {
}

.validDate {
}

.invalidDate {
    border: solid 2px red;
}

.listboxExport {
    vertical-align: top;

}

.highhelp {
    vertical-align: top;
}

.noscriptButton {
    background-color: #F2F8FB;
    color: #25517D;
    margin: 5px;
    font-weight: bold;
    font-size: 11px;
}

.placeholder
{
  color: lightgray;
  font-weight: bold;
}

input.sdwaction {
    color: #2B52B5;
    background-color: transparent;
    border-style: none;
    padding: 0;
    margin: 0;
    height: 15px;
}

input.showInChart {
    /*
      GH: 24 Feb 2006
      small check-boxes on the opening page
     */
    height: 11px;
    width: 11px;
    margin: 0;
}

.boxgray {
/* TF 21.02.2006 */
/* Errors are shown inside this box, while warnings have the box defined in the 'warning' style...*/
/* Therefore width must be specified here (instead of/as well as the sdwerrorwidth style). */
    padding: 10px;
    border: thin gray solid;
    width: 100%;
}

.warning {
    color: red;
    font-weight: bold;
    padding: 10px;
   /* border: thin gray solid;
    text-align: center;*/
}

.message_framed {
    color: blue;
    font-weight: bold;
    padding: 20px;
    border: thin gray solid;
    margin: 40px;
    text-align: center;
}

.report_message_framed {
    color: blue;
    font-weight: bold;
    padding: 20px;
    border: thin gray solid;
    margin-left: 40px;
    margin-bottom: 10px;
    text-align: left;
}

.message {
    color: #0031ad;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

body {
    font-size: 90%;
    color: #000000;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    background-image: none;
    background-repeat: repeat-y;
    background-position: left;
}

body.nobackground {
    font-size: 90%;
        color: #000000;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    background-image: none;
}

h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    h7,
    div,
    p,
    td,
    th,
    a,
    li,
    form,
    select,
    input,
    textarea {
    font-family: droid_sans,Verdana,Helvetica,sans-serif;
}

h2 {
    font-size: 150%;
    font-weight: normal;
}

td,
    th,
    caption {
    text-align: left;
    vertical-align: top;
}

th {
    padding: 3px 5px 3px 4px;
}

tfoot {
    width: 80%;
}

td.tdindentleft1 {
    text-indent: 25px;
}

td.tdindentleft2 {
    text-indent: 35px;
}

img {
    border: none;
}

ul {
    padding-left: 0;
    margin-top: 0.3em;
    margin-bottom: 0.6em;
    margin-left: 1.5em;
}

ul {
    list-style-type: square;
}

ol {
    padding-left: 0;
    margin-top: 0.3em;
    margin-bottom: 0.6em;
    margin-left: 1.9em;
}

/* ===============================================================*/
/* END COMMON STYLES											*/
/* ===============================================================*/

/* ===============================================================*/
/* START STRUCTURE RELEVANT STYLES								*/
/* ===============================================================*/

/* START OPTICAL AIDS */

.invisibleitem {
/* instead of 'display:none;' because of some screenreaders */
    position: absolute;
    left: -2000px;
}

IMG.imgBordered {
    border: 1px solid #CCCCCC;
}

/* END OPTICAL AIDS */

/* START PAGEAREA   */

div#pagearea {
    position: absolute;
   /* top: 10px; */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    
}


#contentareanoleftnav {
/* TF 25.02.2006 */
/* reduce width from 100% to 99% to suppress horizontal scrolling in Firefox and Netscape */
/* (100% is o.k. in IE) */
    left: 0;
    width: 99%;

    position: absolute;
    padding-top: 20px;
    padding-bottom: 3.8em;
}
#buildNumber
{
  font-size: 8pt;
  font-familly: courier;
  color: white;
  text-align: right;
  width: 100%;
  margin: 10px auto;
}


#contentarea {
/* Do not change the left-displacement to 180px and the margin-left to 0px. */
/* The fixed/percentage calculation  is then handled VERY differently by IE, Firefox and Opera */
    left: 0; /* push the content area to the right, beyond the left navigation */
   margin-left: 180px; /* TF 21.02.2006 */
/* We assume here a 17-inch screen with 1280 pixels total width */
/* 180px are taken up with the SDW-logo/left navigation bar, */
/* leaving: (1 - 180/1280) * 100 = 85.9% for the content area. */
/* We want to express this as a percentage, because the data in the content area */
/* may need to scroll beyond the screen width. */
/* However, it should be noted, that there are two disadvantages to this: */
/* 1) IE, Firefox and Opera all handle the fixed/percentage calculation slightly differently */
/* 2) Sideways scrolling is highly user-unfriendly, and should normally be avoided. */
    width: 85%;

    position: absolute;
    padding-top: 20px;
    padding-bottom: 3.8em;
}

#reportcontentarea {
/* Do not change the left-displacement to 180px and the margin-left to 0px. */
/* The fixed/percentage calculation  is then handled VERY differently by IE, Firefox and Opera */
    top: 0;
    left: 0; /* push the content area to the right, beyond the left navigation */
    margin-top: 100px;
    margin-left: 180px; /* TF 21.02.2006 */
/* We assume here a 17-inch screen with 1280 pixels total width */
/* 180px are taken up with the SDW-logo/left navigation bar, */
/* leaving: (1 - 180/1280) * 100 = 85.9% for the content area. */
/* We want to express this as a percentage, because the data in the content area */
/* may need to scroll beyond the screen width. */
/* However, it should be noted, that there are two disadvantages to this: */
/* 1) IE, Firefox and Opera all handle the fixed/percentage calculation slightly differently */
/* 2) Sideways scrolling is highly user-unfriendly, and should normally be avoided. */
    width: 85%;
    height: 87%;
	margin-top:20px;
    position: absolute;
}

div#contentlimiter,
    div#contentlimiter1,
    div#contentlimiter4 {
    padding-left: 25px;
    padding-right: 20px;
}

div#contentlimiter2 {
    padding-left: 22px;
}

div#contentlimiter3 {
    padding-left: 32px;
    padding-right: 19px;
  /*  width: 520px;*/
}

/* END PAGEAREA   */

/* START HEADAREA   */

#headarea {
    width: 100%;
    height: 145px;
    overflow: hidden;
    position: relative;
    background-color: white;
}

#headareaExt {
    width: 100%;
    height: 145px;
    overflow: hidden;
    position: relative;
    background-color: white;
}

#headarealogo {
/* position of the ecb logo (header) */
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 85px;
    z-index: 115;
    padding-bottom: 10px;
 
}

div#headarealogo a img {
    z-index: 116;
}

div#printheadarealogo,
    div#printheadarealogo img {

    width: 0;
    height: 0;
    display: none;
}

div#headfiller {
    position: absolute;
    top: 0;
    left: 0;
    height: 85px;
    width: 100%;
    background-color: #EBEEEF;
    z-index: 105;
    border-top-width:1px;
}
}

#headteaser,
    #headteaserhome {
    height: 5px;
    background-color: #EBEEEF;
    border: solid orange 1px;
}

/* END HEADAREA   */

/* START BREADCRUMB   */

div#bcsdw {
    position: absolute;
    top: 60px;
    left: 0;
    height: 22px;
/*    width: 50%;*/
    clear: both;
    color: #000000;
    white-space: nowrap;
    z-index: 110;
}

.bcsdwtext {
/* TF 17.02.2006 - n.b. use text-indent, not left padding here (to move the text 206px right) */
/* - since Firefox 1.5 seems to pads more than expected, */
/* while IE 6.0 and Opera 8.5.1 seem to get it right */
/* color: #000000; */
    color: none;
    text-align: middle;
    vertical-align: middle;
    text-indent: 5px;
    height :14px;
    border-bottom: #DEE2E5 1px solid;
    padding-top: 10px;
 
    
}

div#bcsdw p {
    margin: 0;
    padding: 0;
}

div#bcsdw a {
    color: #000000;
    text-decoration: none;
    padding-top: 5px;
}

div#bcsdw a:hover {
    color: #000000;
    text-decoration: underline;
    padding-top: 3px;
}

/* END BREADCRUMB   */

/* ===============================================================*/
/* END STRUCTURE RELEVANT STYLES								*/
/* ===============================================================*/

/* ===============================================================*/
/* START CONTENT RELEVANT STYLES								*/
/* ===============================================================*/

/* START HEADINGS */

h1,
    caption,
    td#heading,
    h2,
    h3 {
    text-align: left;
    font-weight: bold;
}

h1 {
    margin-bottom: 1.6em;
}

h2 {
    margin-bottom: 1.2em;
    margin-top: 2em;
}

h3 {
    margin-bottom: 0.1em;
    margin-top: 1.2em;
}

td#heading {
}

/* END HEADINGS */

/* START TEXT-SPECIFIC STYLES  */

div.linklist ul {
    margin: 0 0 0 0;
    list-style: none;
}

div#contentarea a {
    color: #007fff;
    text-decoration: none;
}

div#contentarea a:hover {
    color: #0031ad;
    text-decoration: underline;
}

/*
 * GH - 27.02.06
 * used for data which are in <a> tags, and have a link to the quick view of the series
 * the data comes from...
 */
div#contentarea a.dataWithQvBehindIt,
    div#contentarea a.dataWithQvBehindIt:visited {
    color: #333C8C; /* Steve McLeod, 16/Aug/2006, changed this from black to blue;  */
    text-decoration: none;
}

div#contentarea a.dataWithQvBehindIt:hover {
    color: #333C8C;
    text-decoration: underline;
}

address {
    font-style: normal;
}

address strong {
    border-top: 1px dashed gray;
    padding-top: 0.8em;
}

p.footnotes {
    margin: 1.4em 0 1.4em 0;
    color: #747474;
}

span.spansmall {
    margin: 1.4em 0 1.4em 0;
}

span.label {
}

/* END TEXT-SPECIFIC STYLES  */

/* START ICON-LINKS */

a.arrow {
    background-image: url( ../img/ico_arrow_right.gif );
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 2em;
}

input.arrow {
    background-image: url( img/ico_arrow_right.gif );
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 1em;
    background-color: transparent;
    border-style: none;
}

span.arrow,
    span.previouspage {
    background-image: url( ../img/ico_arrow_right.gif );
    background-repeat: no-repeat;
    width: 1em;
}

span.previouspage {
    background-image: url( ../img/ico_arrow_left.gif );
}

a.pdf,
    span.pdf {
    background-image: url( ../img/ico_pdf.gif );
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 14px;
}

span.pdf {
    width: 14px;
}

a.jpeg,
    span.jpeg {
    background-image: url( img/ico_jpeg.gif );
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 14px;
}

span.jpeg {
    width: 14px;
}

a.top,
    span.top {
    color: #0033FF;
    background-image: url( img/ico_arrow_top.gif );
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 1em;

}

span.top {
    width: 1em;
}

a.csv,
    span.csv {
    background-image: url( img/ico_csv.gif );
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 24px;
}

span.csv {
    width: 24px;
}

a.external,
    span.external {     
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 24px;
}

span.external {
    width: 24px;
}

span.arrowsitemap,
    span.folderopen,
    span.folderclosed {
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 1em;
    width: 15px;
}

span.arrowsitemap {
    background-image: url( img/ico_arrow_sitemap.gif );
    height: 7px;
}

span.folderopen {
    background-image: url( img/folder_opened.gif );
    height: 8px;
}

span.folderclosed {
    background-image: url( img/folder_closed.gif );
    height: 8px;
}

ul.arrowlinks {
    list-style: none;
    margin: 0;
    margin-top: 0.6em;
}

ul.arrowlinks li {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.6em;
}

/* END ICON-LINKS */

/* START TABLE-SPECIFIC STYLES */

td.tdleftborder {
    border-style: solid;
    border-width: 0 0 1px 1px;
    border-collapse: collapse;
}

td.tdrightborder {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-collapse: collapse;
}

td.tdbottomborder {
    border-style: solid;
    border-width: 0 0 1px 0;
    border-collapse: collapse;
}

td.labelMCV1 {
   font-size: 10pt;
   font-family: droid_sans, Verdana, Helvetica, sans-serif;
}

td.labelMCV2 {
   font-size: 9pt;
   font-family: droid_sans, Verdana, Helvetica, sans-serif;
   display: inline-table;
}

td.labelMCV3 {
    font-size: 9pt;
  font-family: droid_sans, Verdana, Helvetica, sans-serif;
}

td.labelMCV4 {
  font-size: 9pt;
 font-family: droid_sans, Verdana, Helvetica, sans-serif;
}


td.paddingMCVsmall {
  padding-left:10pt;
  background-color:white;
}

td.paddingMCVlarge {
  padding-left:20pt;
  background-color:white;
}


td.nobr {
    white-space:nowrap;
}


hr.md_datasetSeprator {
    color: #dee2e5;
    height: 1px;
}

caption {
    width: 80%;
}

caption.small {
    padding-left: 2px;
    padding-bottom: 0.3em;
    width: 80%;
}

td#heading {
    padding-top: 1.2em;
    vertical-align: bottom;
}

td.tdform {
    padding: 5px 2px 5px 2px;
    vertical-align: middle;
}

table.tablestats,
    table.tablepress,
    table.tablecalendar,
    table.tablecalendarevents,
    table.tablebop,
    table.tableopenpage {
    empty-cells: show;
    margin: 0 0 5px 0;
    border-collapse: collapse;
}

table.tablestats th,
    table.tablepress th,
    table.tablebop th,
    table.tableopenpage th {
    border: 1px solid #FFFFFF;
    padding: 3px 5px 3px 5px;

}

table.tablestats td,
    table.tablepress td,
    table.tablebop td,
    table.tableopenpage td {
    border: 1px solid #FFFFFF;
    padding: 3px 5px 3px 5px;
    /*background-color: #f7f7f7;*/
     background-color: #EBF5FF;
    border-collapse: collapse;
}

table.tableopenpage td.number {
    white-space: nowrap;
}

table.tableopenpage tr td.title {
    font-weight: bold;
}

table.tableopenpage tr td.label {
    width: 22em;
}

table.tablestats tfoot tr td th,
    table.tablepress tfoot tr td,
    table.tablebop tfoot tr td {
    border: 1px solid #FFFFFF;
    padding: 5px 5px 0 5px;
    background-color: #ffffff;
    border-collapse: collapse;
}

table.tableopenpage,
    table.tablecalendar th.month,
    td.month {
    background-color: #fcf4dc;
    padding-left: 10px;
}

table.tablecalendar th.day {
    background-color: #fdfaf1;
    text-align: center;
    border: 1px solid #cbd1d5;
    font-weight: normal;
}

table.tablecalendar th.weekend,
    td.weekend {
    color: #FF0000;
}

table.tablecalendar td {
    border: 1px solid #cbd1d5;
    width: 40px;
    height: 21px;
    vertical-align: middle;
    text-align: center;
    border-collapse: collapse;
}

table.tablecalendarevents th.month,
    td.month {
    background-color: #f1eae9;
    padding-left: 10px;
}

table.tablecalendarevents th.day {
    background-color: #f7f6f5;
    text-align: center;
    border: 1px solid #cbd1d5;
    font-weight: normal;
}

table.tablecalendarevents th.weekend,
    td.weekend {
    color: #FF0000;
}

table.tablecalendarevents td {
    border: 1px solid #cbd1d5;
    width: 40px;
    height: 21px;
    vertical-align: middle;
    text-align: center;
    border-collapse: collapse;
}

table.tableimage td {
    border: 1px solid #cbd1d5;
}

div.qvPrintOnly,
    span.qvPrintOnly {
    display: none;
}

tr.light {
    background-color: #FFFFFF;
}

tr.dark {
    background-color: #f5f6f7;
}

table.tableopenpage tr.light,
    table.tablestats tr.light {
    background-color: #FCFEFD;
}

tabke.tableopenpage tr.dark,
    table.tablestats tr.dark {
    background-color: #f5f6f7;
        padding-top: 15px;
    padding-bottom: 15px
}

table.tableopenpage tr.light td.light,
    table.tablestats td.light {
    background-color: #FCFEFD;
    padding-top: 15px;
    padding-bottom: 15px
}

td.status {
    font-weight: bold;
}

table.tableopenpage tr.dark td.dark,
    table.tablestats td.dark {
   /* background-color: #f5f6f7;*/
   background-color: #EBF5FF
}

table.tableopenpage td.header {
    text-align: center;
}



table.tablestats td.reference,
    table.tablestats tr.reference {
   /* background-color: #b0ebb0;*/
   background-color: #99CCFF;
}

table.tablestats td.published,
    table.tablestats tr.published {
   /* background-color: #d6f5d6;*/
    background-color: #CCE6FF;
    
}

table.tablestats td.confidential,th.confidential,
    table.tablestats tr.confidential,th.header_restricted_confidential
    table.tablestats td.header_restricted_confidential {
    color: #F49300; /* darker orange */
}

.qvHeader {
  word-break: break-all;
}
.qvHeaderSpan {
  word-break: break-all;
  display: block;
}

table.tablestats td.restricted,
    table.tablestats tr.restricted {
    color: rgb( 153, 0, 0 ); /*maroon*/
}

table.tablestats td.header_units {
    text-align: right;
    font-size: smaller;
}

table.tablestats td.header_restricted {
    background-color: rgb( 153, 0, 0 ); /*maroon*/
}

table.tablestats td.header_restricted_confidential {
    background-color: rgb( 153, 0, 0 ); /*maroon*/
}

table.tablestats td.light_restricted {
    background-color: #FFEAF0; /* rgb( 255, 244, 244 ); *//*maroon*/ 
}

table.tablestats td.dark_restricted {
    background-color: #FFE2EB ; /* rgb( 255, 226, 226 ); *//*maroon*/
}

/* END TABLE-SPECIFIC STYLES  */

/* START STYLES FOR PUBLICATION-/PRESS-LISTS */

ul.datalist,
    ul.schedulelist {
    list-style: none;
    margin: 0;
    padding: 0;
    clear: none;
}

ul.datalist li,
    ul.schedulelist li {
    border-top: Silver 1px solid;
}

ul.schedulelist li {
    border: none;
    clear: both;
}

ul.datalist li div,
    ul.schedulelist li div {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

ul.datalist li div.rightcol,
    ul.schedulelist li div.rightcol {
    float: right;
}

ul.datalist li div.rightcol1,
    ul.schedulelist li div.rightcol1 {
    display: inline;
}

ul.datalist li div.releaseyear {
    width: 14%;
    font-weight: bold;
}

ul.datalist li div.pressrelease {
    width: 85%;
}

ul.datalist li div.datecol,
    ul.schedulelist li div.datecol {
    width: 21%;
}

ul.datalist li div.textcol,
    ul.schedulelist li div.textcol {
    width: 75%;
}

/* END STYLES FOR PUBLICATION-/PRESS-LISTS */

/* START STYLES FOR MONTHLY BULLETIN */

div.bulletin {
    clear: both;
}

div.bulletin div.leftcol,
    div.bulletin div.rightcol {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    margin-bottom: 0.25em;
    float: left;
}

div.bulletin div.rightcol {
    float: right;
    text-align: left;
}

/* END STYLES FOR MONTHLY BULLETIN */

/* START PAGE-SPECIFIC OR SPECIAL STYLES */

div.hr {
    border-top: 1px solid Silver;
    background-color: transparent;
    margin-top: 10px;
    margin-bottom: 14px;
    padding: 0;
}

div.divGloss {
    background-color: #CBD1D5;
    color: #2E55FF;
    padding: 2px 5px 2px 5px;
}

div.gallery {
    margin-bottom: 30px;
    margin-right: 10px;
    float: left;
}

div.homepage_ecb,
    div.homepage_press,
    div.homepage_events,
    div.homepage_pub,
    div.homepage_stats,
    div.homepage_bc,
    div.homepage_mopo,
    div.homepage_paym,
    div.homepage_nocol {
    width: 4.5em;
    line-height: 0.2em;
    margin-left: 0;
    position: absolute;
    padding-bottom: 0;
}

div.homepage_ecb {
    background-color: #00019B;
}

div.homepage_press {
    background-color: #A8791E;
}

div.homepage_events {
    background-color: #A83B32;
}

div.homepage_pub {
    background-color: #FF6600;
}

div.homepage_stats {
    background-color: #FFC421;
}

div.homepage_bc {
    background-color: #C2C291;
}

div.homepage_mopo {
    background-color: #92A652;
}

div.homepage_paym {
    background-color: #557A55;
}

ul.cv {
    margin-top: 0.7em;
}

div.sitemapfirst {
    padding-left: 23px;
}

div.sitemapsecond {
    padding-left: 16px;
}

div.sitemapthird {
    padding-left: 16px;
}

/* END PAGE-SPECIFIC OR SPECIAL STYLES */

/* START STYLES FOR BOXES  */

div.head h2,
    div.head h3,
    div.row h2,
    div.row h3,
    h2.boxhead,
    h3.boxhead {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.boxborder {
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 0;
    border-bottom-width: 1px;
    border-style: solid;
}

.head,
    .row,
    .line {
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    clear: both;
    display: block;
}

.line {
    padding-left: 0;
}

.row {
    padding-top: 4px;
    padding-bottom: 4px;
}

.boxleft,
    .boxcenter {
    margin-right: 1.9%;
}

.boxleft,
    .boxcenter,
    .boxright,
    .large {
    float: left;
}

.small {
    width: 32%;
}

.line {
    padding-top: 0;
    padding-bottom: 0;
}

.large {
    width: 100%;
    margin-bottom: 10px;
}

.topmargin {
    margin-top: 28px;
}

div.row div.leftcol {
    float: left;
    width: 27%;
    min-height: 1.4em;
}

div.row div.rightcol {
    display: inline;
    width: 70%;
}

div.row div.contact {
    width: 48%;
}

/* END STYLES FOR BOXES */

/* START COMMON GLOBAL STYLES FOR positionING */

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.clear {
    clear: both;
    border-top: 0.1px solid transparent;
}

.alignleft {
    float: left;
    padding-right: 10px;
}

/* END COMMON GLOBAL STYLES FOR positionING  */

/* ===============================================================*/
/* END CONTENT RELEVANT STYLES	*/
/* ===============================================================*/

/* ===============================================================*/
/* START SERVICEMENU                                			*/
/* ===============================================================*/

div#headerareanonlogo {
   /* margin-left: 180px;*/
}

div#servicemenuregion {
    text-align: right;
    padding-top: 3px;
    padding-bottom: 3px;
    width: 97%;
    color: #000000;
    background-color: white;
}

div#servicemenu {
    padding-right: 20px;
}

div#apptitleregion {
    height: 2em;
    background-color: white;
    background-image: url( "../img/rounded_corner.gif" );
    background-repeat: no-repeat;
}

div#apptitle {
    padding-left: 26px;
    height: 2em;
    position: absolute;
    top: 20px;
    color: #003173;
    background-color: white;
    padding-top: 5px;
    padding-bottom:3px;
    font-size: 20px;
    font-weight: bold;
}

#quicksearch {
    position: static;
    float: right;
    padding-right: 20px;
    padding-top: 5px;
    vertical-align: middle;
}

#quicksearchbox {
    font-size: 12px;
    height: 13px;
    margin-top: 2px;
    vertical-align: middle;
    width: 200px;
}

div#servicemenu a {
    color: #666666;
    text-decoration: none;
}

div#servicemenu a:hover {
    color: #000000;
    text-decoration: none;
}

div#servicemenu .spacebetweenpoint {
    padding-left: 0.2em;
    padding-right: 0.2em;
}

/* ===============================================================*/
/* END SERVICEMENU                                  			*/
/* ===============================================================*/

/* ===============================================================*/
/* START SECTIONMENU										*/
/* ===============================================================*/

div#sectionmenu {
    position: absolute;
    top: 150px;
    left: 0;
    width: 180px;
    overflow: hidden;
     background-color: white;
}

div#sectionmenu ul,
    div#sectionmenu li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div#sectionmenu ul.secondlevel,
    div#sectionmenu ul.borderbottom {
    border-bottom: 1px solid #CCCCCC;
}

div#sectionmenu ul li a,
    div#sectionmenu ul li div {
    display: block;
    color: #000000;
    text-decoration: none;
}

/* second level */
div#sectionmenu ul li a,
    div#sectionmenu ul li div {
    padding: 2px 1px 2px 1em;
    border-top: none;
}

/* third level */
div#sectionmenu ul li ul li a,
    div#sectionmenu ul li ul li div {
    border-top: none;
    border-left-style: solid;
    border-left-width: 2em;
}

/* fourth level */
div#sectionmenu ul li ul li ul li a,
    div#sectionmenu ul li ul li ul li div {
    border-top: none;
    border-left-style: solid;
    border-left-width: 3em;
}

/* fifth level */
div#sectionmenu ul li ul li ul li ul li a,
    div#sectionmenu ul li ul li ul li ul li div {
    border-top: none;
    border-left-style: solid;
    border-left-width: 4em;
}

/* sixth level */
div#sectionmenu ul li ul li ul li ul li ul li a,
    div#sectionmenu ul li ul li ul li ul li ul li div {
    border-top: none;
    border-left-style: solid;
    border-left-width: 5em;
}

/* seventh level */
div#sectionmenu ul li ul li ul li ul li ul li ul li a,
    div#sectionmenu ul li ul li ul li ul li ul li ul li div {
    border-top: none;
    border-left-style: solid;
    border-left-width: 6em;
}

div#sectionmenu .minus {
    background-image: url( ../img/ico_minus.gif );
    background-repeat: no-repeat;
    left: -8px;
    margin-left: -12px;
    display:none;
}

div#sectionmenu .plus {
    background-image: url( ../img/ico_plus.gif );
    background-repeat: no-repeat;
    left: -8px;
    margin-left: -12px;
    display: block;
}

div#sectionmenu .noplusminus {
    background-image: url( ../img/spacer.gif );
    background-repeat: no-repeat;
    left: -8px;
    margin-left: -12px;
}

div#sectionmenu li a.back {
    color: #0033FF;
    font-weight: bold;
    background-image: url( ../img/ico_arrow_left.gif );
    background-repeat: no-repeat;
    background-position: left;
    display: block;
}

div#sectionmenu,
    .home {
    border-bottom: 0;
}

div#sectionmenu h1 {
    margin: 0 0 5px 16px;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

div#sectionmenu ul.home {
    padding: 0 0 1.5em 0;
}

div#sectionmenu ul.home li {
    margin: 0;
    list-style-type: none;
    padding-top: 0.4em;
}

div#sectionmenu a.home {
    color: #000000;
    text-decoration: none;
    border-top: 0;
}

div#sectionmenu .separatorNode {
    background-color: white;
    border-top: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0;
    width: 10px;
}
div#sectionmenu .subseparatorNode {
    background-color: #eee;
    border-top: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0;
    width: 230px;
}

div#sectionmenu li strong.da {
    padding-left: 1.1em;
}

div#sectionmenu li a.directaccess {
    border: none;
    background-image: url( img/ico_arrow_right.gif );
    background-repeat: no-repeat;
    background-position: left;
}

div#sectionmenu li a.directaccess:hover {
    color: #0000FF;
    text-decoration: underline;
}

div#sectionmenu li a.current,
    div#sectionmenu li div.current {
    color: #328dd2;
    font-weight: bold;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    display: block;
  
}

.fat {
    font-weight: bold;
}

div#sectionNav {
    background-color: #eee;
    padding: 20px 15px 20px 20px;
}

/* ===============================================================*/
/* END SECTIONNAVIGATION										  */
/* ===============================================================*/

/* ===============================================================*/
/* START ACTION MENU		    					              */
/* ===============================================================*/

div#actionmenu {
    height: 1.9em;
    padding-left: 0;
}

div#actionmenu ul {
    list-style: none;
    height: 1.9em;
}

div#actionmenu li {
    display: inline;
    margin-left: 5px;
    margin-right: 5px;
}

div#actionmenu li a {
    color: #000000;
    text-decoration: none;
}

div#actionmenu ul li a:hover {
    color: #000000;
    text-decoration: none;
}

/* ===============================================================*/
/* END ACTION MENU		    					                  */
/* ===============================================================*/

/* ===============================================================*/
/* START COLOR SETTINGS											  */
/* ===============================================================*/

/* order: first level, second level, third level, fourth level */
.sdwbg,
    .bcsdw {
    background-color: white;
}

.sdwbgboxhead {
    background-color: #003299; /*#328dd2;*/
    color: white;
}

.sdwbg0 {
    background-color: #C3D9E4;
}

.sdwbg1 {
    background-color: #eee;
}

.sdwbg2 {
    background-color: #eee;
}

.sdwbg3 {
    background-color: #eee;
}

.sdwbg4 {
    background-color: #eee;
}

.sdwbg5 {
    background-color: #eee;
}

.sdwbg6 {
    background-color: #eee;
}

.sdwbg7 {
    background-color: #eee;
}

.sdwbg8 {
    background-color: #eee;
}

.sdw1border {
     border-color: #eee;
}

.highlight0 {
    background-color: #7BF5F5;
}

.highlight1 {
    background-color: #CFF875;
}

.highlight2 {
    background-color: #FFF7F9;
}

.highlight3 {
    background-color: #FFCC66;
}

.highlight4 {
    background-color: #FFCCFF;
}

.highlight5 {
    background-color: #CCCCFF;
}

.ecb0 {
    color: #0080c5;
}

h1.ecb0 {
    color: #666666;
}

.ecb0border {
    border-color: #0080c5;
}

.ecb {
    color: #A6C4D7;
}

.ecbborder {
    border-color: #A6C4D7;
}

.ecb1 {
    color: #e6edf5;
}

.ecb1border {
    border-color: #e6edf5;
}

.ecb2 {
    color: #f3f8fb;
}

.ecb2border {
    border-color: #f3f8fb;
}

.ecb3,
    .press3,
    .events3,
    .pub3,
    .stats3,
    .bc3,
    .mopo3,
    .paym3 {
    color: #ffffff;
}

.ecb3border,
    .press3border,
    .events3border,
    .pub3border,
    .stats3border,
    .bc3border,
    .mopo3border,
    .paym3border {
    border-color: #ffffff;
}

.ecbbg0 {
    background-color: #0080c5;
}

.ecbbg,
    .bcecb {
    background-color: #A6C4D7;
}

.ecbbg1,
    .ecbbg {
    background-color: #e6edf5;
}

.ecbbg2 {
    background-color: #f3f8fb;
}

.ecbbg3,
    .pressbg3,
    .eventsbg3,
    .pubbg3,
    .statsbg3,
    .bcbg3,
    .mopobg3,
    .paymbg3 {
    background-color: #ffffff;
}

.press0 {
    color: #a8791e;
}

h1.press0 {
    color: #666666;
}

.press0border {
    border-color: #a8791e;
}

.press {
    color: #D2C4AA;
}

.pressborder {
    border-color: #D2C4AA;
}

.press1 {
    color: #f0e8d8;
}

.press1border {
    border-color: #f0e8d8;
}

.press2 {
    color: #fbf8f3;
}

.press2border {
    border-color: #fbf8f3;
}

.pressbg0 {
    background-color: #a8791e;
}

.pressbg,
    .bcpress {
    background-color: #D2C4AA;
}

.pressbg1,
    .pressbg {
    background-color: #f0e8d8;
}

.pressbg2 {
    background-color: #fbf8f3;
}

.events0 {
    color: #a83b32;
}

h1.events0 {
    color: #666666;
}

.events0border {
    border-color: #a83b32;
}

.events {
    color: #D2B8B5;
}

.eventsborder {
    border-color: #D2B8B5;
}

.events1 {
    color: #f1eae9;
}

.events1border {
    border-color: #f1eae9;
}

.events2 {
    color: #f7f6f5;
}

.events2border {
    border-color: #f7f6f5;
}

.eventsbg0 {
    background-color: #a83b32;
}

.eventsbg,
    .bcevents {
    background-color: #D2B8B5;
}

.eventsbg1,
    .eventsbg {
    background-color: #f1eae9;
}

.eventsbg2 {
    background-color: #f7f6f5;
}

.pub0 {
    color: #ff6600;
}

h1.pub0 {
    color: #666666;
}

.pub0border {
    border-color: #ff6600;
}

.pub {
    color: #E6C1A9;
    border-color: #E6C1A9;
}

.pubborder {
    border-color: #E6C1A9;
}

.pub1 {
    color: #faebe1;
}

.pub1border {
    border-color: #faebe1;
}

.pub2 {
    color: #fff8f4;
}

.pub2border {
    border-color: #fff8f4;
}

.pubbg0 {
    background-color: #ff6600;
}

.pubbg,
    .bcpub {
    background-color: #E6C1A9;
}

.pubbg1,
    .pubbg {
    background-color: #faebe1;
}

.pubbg2 {
    background-color: #fff8f4;
}

.stats0 {
    color: #ffc421;
}

h1.stats0 {
    color: #666666;
}

.stats0border {
    border-color: #ffc421;
}

.stats {
    color: #E8D9AD;
}

.statsborder {
    border-color: #E8D9AD;
}

.stats1 {
    color: #fcf4dc;
}

.stats1border {
    border-color: #fcf4dc;
}

.stats2 {
    color: #fdfaf1;
}

.stats2border {
    border-color: #fdfaf1;
}

.statsbg0 {
    background-color: #fcf4dc;
}

.statsbg,
    .bcstats {
    background-color: #E8D9AD;
}

.statsbg1,
    .statsbg {
    background-color: #fcf4dc;
}

.statsbg2 {
    background-color: #fdfaf1;
}

.bc0 {
    color: #c2c291;
}

h1.bc0 {
    color: #666666;
}

.bc0border {
    border-color: #c2c291;
}

.bc {
    color: #D5D5C2;
}

.bcborder,
    .bcrow {
    border-color: #D5D5C2;
}

.bc1 {
    color: #ebebd7;
}

.bc1border {
    border-color: #ebebd7;
}

.bc2 {
    color: #f9f9f1;
}

.bc2border {
    border-color: #f9f9f1;
}

.bcbg0 {
    background-color: #c2c291;
}

.bcbg,
    .bcbc {
    background-color: #D5D5C2;
}

.bcbg1,
    .bcbg {
    background-color: #ebebd7;
}

.bcbg2 {
    background-color: #f9f9f1;
}

.mopo0 {
    color: #92a652;
}

h1.mopo0 {
    color: #666666;
}

.mopo0border {
    border-color: #92a652;
}

.mopo {
    color: #C6CCB2;
}

.mopoborder {
    border-color: #C6CCB2;
}

.mopo1 {
    color: #edf0e4;
}

.mopo1border {
    border-color: #edf0e4;
}

.mopo2 {
    color: #fafbf7;
}

.mopo2border {
    border-color: #fafbf7;
}

.mopobg0 {
    background-color: #92a652;
}

.mopobg,
    .bcmopo {
    background-color: #C6CCB2;
}

.mopobg1,
    .mopobg {
    background-color: #edf0e4;
}

.mopobg2 {
    background-color: #fafbf7;
}

.paym0 {
    color: #557a55;
}

h1.paym0 {
    color: #666666;
}

.paym0border {
    border-color: #557a55;
}

.paym {
    color: #B4C0B4;
}

.paymborder {
    border-color: #B4C0B4;
}

.paym1 {
    color: #e3e9e3;
}

.paym1border {
    border-color: #e3e9e3;
}

.paym2 {
    color: #f1f4f1;
}

.paym2border {
    border-color: #f1f4f1;
}

.paymbg0 {
    background-color: #557a55;
}

.paymbg,
    .bcpaym {
    background-color: #B4C0B4;
}

.paymbg1,
    .paymbg {
    background-color: #e3e9e3;
}

.paymbg2 {
    background-color: #f1f4f1;
}

.basic0 {
    color: #cbd1d5;
}

h1.basic0 {
    color: #666666;
}

.basic0border {
    border-color: #dee2e5;
}

.basic {
    color: #dee2e5;
}

.basicborder {
    border-color: #dee2e5;
    border-radius: 10px 10px 0 0;
}

.basic1 {
    color: #ebeeef;
}

.basic1border {
    border-color: #ebeeef;
}

.basic2 {
    color: #f5f6f7;
}

.basic2border {
    border-color: #f5f6f7;
}

.basicbg0 {
    background-color: #cbd1d5;
}

.basicbg {
    background-color: #dee2e5;
}

.basicbg1 {
    background-color: #ebeeef;
}

.basicbg2 {
    background-color: #f5f6f7;
}

.lightTables {
    padding-bottom :4px; 
    border-bottom: 4px solid #007fff;
}

.baseColor{
	color: #007fff;
}

/* ===============================================================*/
/* END COLOR SETTINGS											*/
/* ===============================================================*/

/* ===============================================================*/
/* START MDMAINTENANCE 											*/
/* ===============================================================*/

th.sort_button {
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-bottom: 1px solid #666666;
    border-right: 1px solid #666666;
    background-color: #CCCCCC;
    color: black;
    font-family: droid_sans,Verdana,Helvetica,sans-serif;
    font-weight: normal;
}

a.sort_button {
    text-decoration: none;
    color: black;
}

a.sort_button:hover {
    color: blue;
    text-decoration: none;
}

a.sort_button:visited {
    color: black;
}

span.sort_direction {
    color: blue;
    font-weight: 800;
    font-size: 1.6em;
}

/* ===============================================================*/
/* END MDMAINTENANCE											*/
/* ===============================================================*/

/* ============================================================================*/
/* START WIDTH SETTINGS											               */
/* ============================================================================*/
/* TF 21.02.2006 use styles here, as Firefox 1.5 appears to handle             */
/* relative (percentage) widths differently to IE 6.0 and Opera 8.5.           */
/* Firefox appears to apply percentages to the outer pixel-width-defined box,  */
/* while IE and Opera apply the percentage to the space left over.             */
/* In other words, IE and Opera support mixing of absolute (pixel-width) boxes */
/* and relative (percentage) boxes, while Firefox is 'purer' and               */
/* requires one approach or the other                                          */
/* The problem being here, that the left menu-bar is fixed width, while        */
/* the rest of the space is currently percentage-wise resizable.               */
/* But since there is no actual resizing requirement, we introduce absolute    */
/* widths - but leave it parameterized as a style, to keep it flexible         */

.sdwboxheadwidth {
  /*  width: 100%;  add padding to ensure same width as row and warning styles */
    padding-left: 10px;
    padding-right: 10px;
}

.sdwboxrowwidth {
 /*   width: 100%; */
}

.sdwwarningwidth {
    width: 100%;
}

.sdwerrorwidth {
/* TF 21.02.2006 */
/* Errors are shown inside the boxgray, while warnings have the box defined in the 'warning' style...*/
/* Therefore width must be specified must also be specified on the boxgray style */
    width: 100%;
}

/* ============================================================================*/
/* END WIDTH SETTINGS											               */
/* ============================================================================*/

/* ============================================================================*/
/* START TICKER SETTINGS											           */
/* ============================================================================*/

a.tickl {
    font-weight: bold;
    font-size: 11px;
    color: #000099;
    line-height: 12px;
    font-family: droid_sans,Verdana,Helvetica,sans-serif;;
    text-decoration: none;
    background-color: white;
}

a.tickl:hover {
    color: #6666cc;
    text-decoration: none;
}

.ticki {
    overflow: hidden; /*width: 629px;*/
    height: 13px;
    background-color: white;
    width: 75%;
}

.ticko {
    padding-right: 0;
    border-top: #ffffff 1px solid;
    display: block;
    padding-left: 0;
    padding-bottom: 4px;
    margin: 4px 0 0;
    width: 629px;
    padding-top: 1px;
    border-bottom: #990000 1px solid;
}

.tickls {
    color: #444444;
}

.tickh {
    display: none;
}

/* ============================================================================*/
/* END TICKER SETTINGS											               */
/* ============================================================================*/

/* ============================================================================*/
/* START SEARCH BOX SETTINGS											       */
/* ============================================================================*/

#searchBox {
    position: absolute;
    width: 150px;
    height: 20px;
    z-index: 200;
    left: 700px;
    top: 20px;
}

a.searchBox,
    a.searchBox:hover,
    a.searchBox:link,
    a.searchBox:visited {
    font-size: 11px;
    color: #666666;
    text-decoration: none; /* background-color: #dee2e5; */
}

/* ============================================================================*/
/* END SEARCH BOX SETTINGS											           */
/* ============================================================================*/

/* ============================================================================*/
/* NODE DESCRIPTION FOR NON LEAF NODES WHILE BROWSING                          */
/* ============================================================================*/

div#nodeDescription {   
    padding-left: 20px;
    padding-right: 50px;
    line-height: 180%;
}

div#nodeDescription span.nodeName {
    font-size: 1.2em;
    font-weight: bold;
}

/* ============================================================================*/
/* TOOLBAR FOR BUTTONS ON DATA SELECTION PAGE, ETC.                            */
/* ============================================================================*/

.toolbar {
    border-right: #666666 1px solid;
    border-top: #ffffff 2px solid;
    border-left: #ffffff 1px solid;
    border-bottom: #666666 1px solid;
    padding-top: 2px;
    height: 48px;
    background-color: #FFFFEA;
}

.toolbar1row {
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: white;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
}

/* ============================================================================*/
/* SITE DIRECTORY                                                              */
/* ============================================================================*/

span.arrow {
    background-image: url( img/ico_arrow_right.gif );
    width: 1em;
    background-repeat: no-repeat;
}

ul.arrow {
    list-style-type: none;
}

span.highlight,
    span.highlightSResults {
    color: black;
    font-weight: bold;
}

span.highlight {
    background-color: #ffff99;
}

/* ============================================================================*/
/* LOGIN PAGES                                                                 */
/* ============================================================================*/

.loginh1 {
    font-size: 200%;
    font-weight: normal;
}

.loginh3 {
    font-size: 125%;
    font-weight: normal;
}

/* ============================================================================*/
/* Print Settings page (print.jsp)
/* ============================================================================*/

body.printSettings {
    background-image: none;
}

table.printSettingsTable {
    border-collapse: collapse;
}

table.printSettingsTable th {
    background-color: #D5E4EC;
}

table.printSettingsTable th, table.printSettingsTable td {
    padding: 10px;
}

/* ============================================================================*/
/* My Settings dialog
/* ============================================================================*/

div#settingsdialog {
    padding: 10px;
}

div#settingsdialog .rightalignbuttonrow {
    text-align: right;
}

div#settingsdialog .boxgray {
    padding: 10px;
    border: thin gray solid;
    width: auto;
}

body.settingsdialogbody {
    background-image: none;
   
}

input.button {
    background-color: #f2f8fb;
    font-size: 90%;
}

input.buttonSelected {
    background-color: #f2f8fb;
    font-size: 90%;
    font-weight: bold;
}

/* ============================================================================*/
/* Dialog table
/* ============================================================================*/

table.dialog {
}

table.dialog td {
    padding-bottom: 10px;
}

table.dialog td.buttonrow {
    text-align: right;
}

table.dialog td.fieldname {
    text-align: right;
}

.filter-border {
	border:4px solid #E6EDF5;
}

button.resizeButton {
	height: 16px;
	width: 16px;
	font-size: 10px;
	font-weight: 900;
	font-family: sans-serif;
	margin-right: 3px;
}

/* ============================================================================*/
/* Publication Icons
/* ============================================================================*/
.publicationDiv{
  margin: 5px 0px 0px 0px;
}
.publicationTitleDiv{
  font-size: 0.8em;
  color: navy;
  background-color: #EBEEEF;
  border: 1px solid white;
  border-bottom: 0px;
  display: inline;
  /* T R B L */
  margin: 0px 0px 0px 0px;
  padding: 0px 4px;
  cursor: pointer;
}
.publicationIconDiv{
  border: 1px solid white;
  background-color: #EBEEEF;
  font-size: 0.8em;
  padding: 0px;
  margin: 0px 0px 0px 0px;
  padding-left: 15px;
  padding-top: 5px;
  display: none;
}


/* ============================================================================*/
/* Select2 Filters
/* ============================================================================*/
#resetSettingsButton
{
  margin-top: -14px;
}

.deleteFilter
{
  cursor: pointer;
  display: inline-block;
  margin: 5px 0 0 5px;
}

table.tablestats tr th, table.tablestats th{		
    /*border: 1px solid #ebeeef;*/
    border: 1px solid #FFFFFF;		
    padding: 5px 5px 0 5px;		
    background-color: #ffffff;		
    border-collapse: collapse;		
}	
.quickView{
	background-color: #FFFFFF;
	border: 1px solid #007fff;
	padding: 3px 5px 3px 5px;
	border-collapse: collapse;
}

.tablestats thead tr .headerSortUp { 		
    background-image: url(../img/arrow_down_3.png); 		
   		
} 		
.tablestats thead tr .headerSortDown { 		
    background-image: url(../img/arrow_up_3.png); 		
   		
}		
.tablestats thead  .header {  	 
    background-image: url(../img/arrow_off_3.png); 	
    cursor: pointer; 		
    font-weight: none; 		
    background-repeat: no-repeat; 		
    background-position: center left; 		
    padding-left: 20px; 		
    border-right: none; 		
    margin-left: -5px; 	
    vertical-align: middle;	
} 

/* ============================================== */
/* for auto complete text * /
/* ============================================== */
.ui-autocomplete { 
    position: absolute; 
    cursor: default; 
    height: 200px; 
    overflow-y: scroll; 
    overflow-x: hidden;
     background: white!important;
     z-index:100000; 
     top: 0;
	left: 0;
     
}
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
	z-index: 10000 !important;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff url("../img/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x; 
	color: #222222;
	font-size : 10px;
	font-size: 80%;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url("../img/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;	
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	/*background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;*/
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	/*background-image: url("img/ui-icons_222222_256x240.png"); */
}
.ui-widget-header .ui-icon {
	/*background-image: url("img/ui-icons_222222_256x240.png"); */
}
.ui-state-default .ui-icon {
	background-image: url("img/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
/*	background-image: url("../img/ui-icons_454545_256x240.png"); */
}
.ui-state-active .ui-icon {
/*	background-image: url("images/ui-icons_454545_256x240.png"); */
}
.ui-state-highlight .ui-icon {
	/*background-image: url("images/ui-icons_2e83ff_256x240.png");*/
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	/*background-image: url("images/ui-icons_cd0a0a_256x240.png");*/
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	/*background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x; */
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	/*background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x; */
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
	border-radius: 8px;
}

/* incorprate last minute css */

<style>
div#sectionmenu {
font-size:90%;
background-color: #eee;
width: 230px;
}
div#sectionmenu a:hover{
background-color:white;
}
#contentarea {
margin-left:230px;
    width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
margin-right:20px;
}
#reportcontentarea {
margin-left:230px;
margin-top:111px;
}
div#sectionmenu .separatorNode {
width:auto;
}
div#sectionmenu li a.current, div#sectionmenu li div.current {
background-color:white;
}
div#apptitle {
    padding-left:76px;
    font-family: arial;
    font-size: 30px;
}
#headarealogo {
    left: 5px;
    width: 230 px;
}
.bcsdwtext {
    text-indent: 5px;
    font-size: 80%;
}
.bcsdwtext a:hover {
    background-color: #ebeeef;   
    border-radius: 5px 5px 5px 5px;
}
.bcsdwtext a {
    padding: 253px;
}
table.tableopenpage td {
font-size:90%;
}
#seriesListTable {
   /* width:100%;*/
}
table.tablestats tr td:first-child {
    word-break: none; 
}
table.tablestats tr td:nth-child(2) {
    word-break: break-all
}
<!-- image -->
.coverpage {
  position: relative;
  border: 1px solid #333;
  margin: 2%;
  overflow: hidden;
  /*width: 540px;*/
}
.coverpage img {
  max-width: 100%;
  
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.coverpage:hover img {
  -moz-transform: scale(2.0);
  -webkit-transform: scale(2.0);
  transform: scale(2.0);
}
a.selectCube, a.selectCube_selected, a.moreFilters, a.moreFilters_selected, 
a.metadata, a.metadata_selected, a.dataTable, a.dataTable_selected, a.dataChart, 
a.dataChart_selected, a.addToFavorite, a.replaceGroup, a.addToGroup, a.newGroup, a.search, .download
{
 font-size:90%;
 white-space: nowrap;
}
.toolbar1row {
    background-color: #ecf2ff;
    border-radius: 9px;
    margin-bottom: 15px;
    box-shadow: 3px 3px lightgrey;
}
.toolbar1row {
    background-color: inherit;
    border-radius: 9px;
    margin-bottom: 15px;
    box-shadow: none;
}  
  </style>
  
  
/*----- Tabs -----*/
.tabs {
    width:100%;
    
}
 
    /*----- Tab Links -----*/
    /* Clearfix */
    .tab-links:after {
        display:block;
        clear:both;
        content:'';
    }
 
    .tab-links li {
        margin:0px 5px;
        float:left;
        list-style:none;
    }
 
        .tab-links a {
            padding:6px 15px;
            display:inline-block;
            border-radius:3px 3px 0px 0px;
            background:#e6ecff;
            font-size:90%;
            font-weight:600;
            color:#0031ad;
            transition:all linear 0.15s;
            text-decoration:none;
        }
 
        .tab-links a:hover {
           
            text-decoration:none;
        }
 
    li.active a, li.active a:hover {
       

    color: #0031ad;
    text-decoration:underline;
   
    }
 
    /*----- Content of Tabs -----*/
    .tab-content {
        padding:15px;
        border-radius:3px;
           
       }
 
        .tab {
            display:none;
        }
 
        .tab.active {
            display:block;
         
          
        }
        
        li.active{
        display: block;
       border-bottom: 5px solid #4285f4;
         }

.active{
        display: block;
       
         }
.google{
	border-bottom: 3px solid #4285f4;
    color: #4285f4;
     width:30px;
}

.gsc-input-box {
width:380px;  
}

.gsc-search-button {
    color:black;
	width:7px;
  }

/*********************/

/**
 * CSS related to this demo - resizable container
 */

.ui-resizable-helper {
 
}
.resizable {
  display: block;
  width: 100%;
  height: 380px; 
  
}
#controls { 
  min-height: 380px;
  max-width: 140px;
  position: absolute;
}
#controls input {
  margin: 2px 0;
}

#dims {
  background: #fff;
  color: #222;
  padding: 5px 8px;
   min-width: 120px;
}

/******************/

/*********************Amchart CSS******/
#chartcontainer {		/*********************/
  width: 100%;		
	height: 100%;		
  position: relative;		
}		
#curtain {		
  background: 'white';		
  color: 'blue';		
  font-size: 15px;
  padding-top: 150px;
    padding-left: 120px;		
}		
#curtain2 {		
  background: 'white';		
  color: 'blue';		
  font-size: 15px;
  padding-top: 150px;
    padding-left: 120px;		
}		
#curtain3 {		/**
  background: 'white';		 * CSS related to this demo - resizable container
  color: 'blue';		 */
  font-size: 15px;	
  padding-top: 250px;	
  padding-left: 320px;
}		
#curtain span {		.ui-resizable-helper {
  display: block;		 
  position: absolute;		
  top: 60%;		
  width: 100%;		
  text-align: center;		
}		
#curtain2 span {		
  display: block;		
  top: 50%;		
   position: absolute;		
  width: 100%;		
  text-align: center;		
}		}
#curtain3 span {		.resizable {
  display: block;		  display: block;
  top: 10%;		
   position: absolute;		
  width: 100%;		  width: 100%;
  text-align: center;		  height: 380px; 
  
}		}
#controls { 
#chartdiv2, #curtain2 {		  min-height: 380px;
	width: 100%;		  max-width: 140px;
	height: 100%;		
  position: absolute;		  position: absolute;
}		}
.amcharts-legend-balloon {		#controls input {
  position: fixed;		  margin: 2px 0;
  pointer-events: none;		
  opacity: 0;		
  -webkit-transition: opacity 0.3s 0.04s;		
  transition: opacity 0.3s 0.04s;		
  visibility: hidden;		
}		}
.amcharts-legend-balloon > div {		#dims {
  position: relative;		  background: #fff;
  background-color: #fff;		  color: #222;
  background-color: rgba(255, 255, 255, .9);		  padding: 5px 8px;
  border: 2px solid #000;		   min-width: 120px;
  padding: 4px 8px;		
  left: -50%;		
}		}
.amcharts-legend-balloon > div:after,		/******************/
.amcharts-legend-balloon > div:before {		
  top: 100%;		
  left: 50%;		
  border: solid transparent;		
  content: " ";		
  height: 0;		
  width: 0;		
  position: absolute;		
  pointer-events: none;		
}		
.amcharts-legend-balloon > div:after {		
  border-color: rgba(0, 0, 0, 0);		
  border-top-color: #fff;		
  border-width: 6px;		
  margin-left: -6px;		
}		
.amcharts-legend-balloon > div:before {		
  border-color: rgba(0, 0, 0, 0);		
  border-top-color: inherit;		
  border-width: 9px;		
  margin-left: -9px;		
}		
/* ACTIVE STATE */		
.amcharts-legend-balloon.active {		
  opacity: 1;		
  -webkit-transition: opacity 0s 0s;		
  transition: opacity 0s 0s;		
  visibility: visible;		
}		
.transform_sep{		
	border-right: 2px solid;		
	color: #007fff;		
}

/************New Archieve********/

	.newsArchive {		
	padding-bottom :4px; 		
	border-bottom: 4px solid #007fff;"		
}

table.newArchieve td     {		
    border: 1px solid #D3D3D3;		
    padding: 3px 5px 3px 5px;		
    /*background-color: #f7f7f7;		
     background-color: #EBF5FF;*/		
    border-collapse: collapse;		
}		
table.newArchieve th     {		
    border: 1px solid #D3D3D3;		
    padding: 3px 5px 3px 5px;		
    border-collapse:collapse;		
}

.amcharts-legend-balloon {
  position: fixed;
  pointer-events: none;
  width: 200px;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.04s;
  transition: opacity 0.3s 0.04s;
  visibility: hidden;
}

.amcharts-legend-balloon > div {
  position: relative;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .9);
  border: 2px solid #000;
  padding: 4px 8px;
  left: -50%;
}

.amcharts-legend-balloon > div:after,
.amcharts-legend-balloon > div:before {
  top: 100%;
  left: 50%;
  border: solid transparent; 
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.amcharts-legend-balloon > div:after {
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.amcharts-legend-balloon > div:before {
  border-color: rgba(0, 0, 0, 0);
  border-top-color: inherit;
  border-width: 9px;
  margin-left: -9px;
}
/* ACTIVE STATE */

.amcharts-legend-balloon.active {
  opacity: 1;
  -webkit-transition: opacity 0s 0s;
  transition: opacity 0s 0s;
  visibility: visible;
}