/* HOMEPAGE - Hero Background Image & Gradient Overlay
 
- How to Change Image: Upload Image through SiteBuilder Image Assets either w/ the same filename as existing, or a different filename and update background-image URL with new file name
 
- How to Change Color Gradient Overlay (note: this is optional; can be deleted from CSS): use HEX to RGBA converter for the appropriate format, first rgba() value is top color, second value is bottom color, use last digit in each for opacity (.75 = 75%).
 
*/
.pg_Index .header-row {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)), url('/data/SiteBuilderAssetsOriginals/Live/Images/anesthesia-progress/ADSA_AS13203019_background_1440x426.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

/* Supress ALL table/cell borders with 0px. */

table, th, td {
  border: 0px solid black !important;
}