/*
 * WinReportStyle.css
 * NOTE TO RON: Used to style the selection portion of a report
 *              CSS for report is defined in core/artifact/ArtifactBuilder
 * Business Intelligence Systems Inc (c) 2003 - 2005
 *
 * author Jeffrey Blake
 * version 1.0
 * since JDK 1.5
 * Last Edit:   - 
 *              - 10/07/06 - Added .break
 * Open Issues: -
 * Future:      -
*/

@media print { #report, .noprint { display: none; } }

body { height: 100%; margin: 0px; padding: 0px; } /* keeps navigation bar flush */
.background, #frame { background-color: White;  }

#frame { width: auto; border: 0px; margin: 0px; padding: 12px; }
#frame th { border: 0px; }

#report .header, #report .trailer { border: 0px; background-color: White; }
#report .nowrap { white-space: nowrap; }

#report .button, #report .buttonspecial, #report .buttonsubmit, #report .buttondelete { background-color: #7FFFD4 ; }
#report .buttontable {
   width: auto;
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 4px;
   margin-bottom: 4px;
   border: 0px; 
   background-color: transparent;
}
#report .button, #report .buttonspecial { border-style: ridge ;}
#report .buttonspecial { color: blue ; background-color: #7FFFD4 ; }
#report .buttontitle { padding-left: 4px; padding-right: 4px;  width: 100%; }

#report BODY, #report TD, #report TR {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif; 
  color: black; 
}

#report FORM {
  margin: 0px; /* fixes extra line below form in IE */
  margin-bottom: 0px; /* fixes extra line below form in IE */
}

#report BODY { margin: 0px; padding: 0px; }
#report TR { background-color: transparent; }
#report TH { font-weight: 600; text-align: center; }
#report TD {
  white-space: normal; /* normal | nowrap */
  margin: 0px;
  padding: 0px;
  vertical-align: top; 
  text-align: left; 
  border: 0px;
}
#report TABLE {   
  margin: 0px;
  padding: 0px;
  border-collapse: collapse;
  background-color: white;
  text-align: left; 
  vertical-align: middle;
}

/* 
 this probably could go into artifact builder to be included directly into report 
*/
#reportcontent .code {
   font-family: Courier New, monospace; 
}
#reportcontent .indent {
   padding-left: 25px;
}
#reportcontent .quote {
   padding-left: 60px;
   padding-right: 60px;
   font-style: italic;
}
#reportcontent .bold {
   font-weight: 600;
}
#reportcontent .bullets {
   display: block; 
}

A.external {
background: url(../images/system/icons/external_link.gif) no-repeat right 0; /* relative to css file */
padding: 0 12px 0 0 ;
}
A.winarticle {
background: url(../images/system/icons/report_small.gif) no-repeat left 0; /* relative to css file */
padding: 0 0 0 12px ;
}
A { text-decoration: none; }
A:link, A:visited { color: blue; } 
A:hover, span.link:hover { text-decoration: underline; }

.break {
   border-bottom-width: 0px; 
   border-left-width: 0px;
   border-right-width: 0px;
   width: 100%; 
   height: 0px;
}

/* TABLE, TD, TR, TH, DIV, SPAN { border: 1px solid blue;  border-collapse: separate; } /* use for debug */


