/*===========================================================================*/
/* reporting.css                                                                 */
/*                                                                           */
/* style settings for login page on REMAS site                               */
/*   note that all styles are defined as classes, never as IDs               */
/*                                                                           */
/*                                       */
/*===========================================================================*/

/*FOR LOGS*/
.selectionBox {
    width:100%;
}

.selectionTitle {
    width:100px;
    font-size:1.1em;
}

.selectiondd {
    width:250px;
}

.selectionOptions {

}

.cback_red {background-color: #ff9999;}
.cback_green {background-color: #99ff99;}
.cback_yellow {background-color: yellow;}
.cback_orange {background-color: orange;}
.cback_blue {background-color: #9999ff;}

.ctext_red {color: red;}
.ctext_green {color: green;}
.ctext_yellow {color: yellow;}
.ctext_orange {color: orange;}
.ctext_blue {color: blue;}

/*FOR MONTHLY REPORTING*/

/*Main Display Container. Was:box_alarm_config_overview */
.box_overview_container
{
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  overflow: auto;

  /* try to accommodate rounded borders in the majority of common browsers   */
  /* this avoids using border graphics, which often don't match the expected */
  /*   bg color very well, and have to be regenerated everytime the box      */
  /*   size is adjusted                                                      */

  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
}

/*Header. Was: box_alarm_config_header*/
.box_overview_header
{
  /* used for both box_alarm_config_overview and box_alarm_config_advanced */

  padding: 3px;
  background-color: #003366;
  color: #ffffff;
  font-family: Verdana;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;

  /* border radii should match those in parent container */
  /*  (box_alarm_config_overview)                        */

  border-radius-top-left: 10px;
  border-radius-top-right: 10px;
  -moz-border-radius-top-left: 10px;
  -moz-border-radius-top-right: 10px;
  -webkit-border-radius-top-left: 10px;
  -webkit-border-radius-top-right: 10px;
  -khtml-border-radius-top-left: 10px;
  -khtml-border-radius-top-right: 10px;
}

/*Content. Was: .box_alarm_config_content*/
.box_overview_content
{

}

/*Interior sub box group. Was: box_alarm_config_group*/
.box_group_container
{
  background: #ffffff;
  margin: 8px 5px 3px 5px;
  padding: 3px;
}

/*Header for sub box group. Was: box_alarm_config_group_header*/
.box_group_header
{
  padding: 3px;
  color: #000000;
  background: #cccccc;
  font-family: Verdana;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
}

/*Content. */
.box_group_content
{

}

/*override Yii gridView*/
.grid-view
{
    padding-top:0 !important;
    padding-bottom:0 !important;
}

/*Log Event CSS*/
#error
{
    font-size:1.3em;
    color:red;
    padding-top:6px;
    padding-left:12px;
}
#logUpdate
{
    display:none;
    color:yellow;
    font-size:0.8em;
    cursor:pointer;
}

.logEntryTable_c1
{
    width:150px;
}
.logEventHeader
{
    padding-top:4px;
    padding-bottom:4px;
    background: #cdd7da;
}

/*for datalogger based logs*/
.logEventEntry
{
    background: #F8F8F8;
}

.logAlertTreeEntry
{
    border-bottom: 1px solid #c7c7c7;
}

/*for web based logs*/
.logTree {font-weight:bold;}
.logTreeDate {font-weight:normal;}
.logTreeRow2 {}
.logTriggerLabel, .logOutcallLabel, .logActionLabel {margin-left:15px;}
.logTrigger, .logOutcall, .logAction
{
    margin-left:30px;
}

.titleDate
{
    padding-top:3px;
    font-size:12pt;
    text-align:center;
}