/* *****************************************************************************
 * Filename: site.css
 * Description: This file styles the webpage.
 * Owner: Alvin McGovern
 * Author: Alvin Orzechowski, MyFirstWebPage.net
 * Date: Sun May 10 2020
 * Revised: Sun Jan 10 2021
 * *****************************************************************************/

/* -----------------------------------------------------------------------------
 * HTML tags
 * ----------------------------------------------------------------------------- */

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13pt;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

/* -------------------------------------------------------------------------- 
 * anchors
 * -------------------------------------------------------------------------- */

a {
  color: #0000ff;
  text-decoration: none;
  }
a:link { 
  text-decoration: none;
  }
a:active { 
  text-decoration: none;
  }
a:visited { 
  text-decoration: none;
  }
a:hover { 
  text-decoration: none; /*
  background-color: #00a8d3;
  color: #ffffff; */
  }
  
a img {
  border: 0;
  }
  
div#textArea a:hover, div#footer a:hover  {
  text-decoration: underline;
  /*
  background-color: #ff0000;
  color: #ffffff;
  */
  }
  
a.external_link {
  background: url("images/offsite-link.png") no-repeat scroll right top transparent;
  padding-right: 10px;
  }

a.pdf_link {
    background-image: url(images/pdficon_small.png);
    background-repeat: no-repeat;
    padding-left: 22px;
  }

a.contact_link, a.email_link {
  background: url("images/email-icon.png") no-repeat scroll right top transparent;
  padding-right: 15px;
  }

a.map_link {
  background-image: url(images/map_location_icon-15x9.png);
  background-repeat: no-repeat;
  padding-left: 12px;
  text-decoration: none;
  }

a.map_link:link, a.map_link:active, a.map_link:visited { text-decoration: none; }

a.map_link:hover { text-decoration: underline; }

span.map_link  {
  font-size: 0.8em;
  }
  
div#textArea a:hover, div#footer a:hover  {
  text-decoration: underline;
  /*
  background-color: #ff0000;
  color: #ffffff;
  */
  }

/* -----------------------------------------------------------------------------
 * ids
 * ----------------------------------------------------------------------------- */
 
#container_div {
  width:95%; 
  text-align: center; 
  margin: 0 auto; 
}
#header_div, #footer_div, header, footer {
  background-color: #fce883; 
}
#header_div, header {
  border: 1px solid #000080; 
  border-bottom: 1px solid #000080; 
  padding-top: 1em; 
  padding-bottom: 1em;
}
#main_div, main {
  margin-top: 1em; 
  margin-right: 1em; 
  margin-bottom: 1em; 
  text-align: left; 
  font-size: 1em;
}
#footer_div, footer {
  border: 1px solid #000080; 
  padding: 0.75em; 
  font-size: 0.9em; 
  border-top: 1px solid #000080;
}


/* -----------------------------------------------------------------------------
 * classes
 * ----------------------------------------------------------------------------- */
 
.hideThis {
  display: none;
}
 
.height-min {
  height: 22em;
}

.nBR {
  white-space: nowrap;
}

.onlyPrint {
  display: none;
}

.accentuate {
  font-weight: bold;
  font-style: italic;
  font-size: 1.025em;
}

.txt-bold {
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.txt-italic {
  font-style: italic;
}
      
.chordShape {
  font-family: Courier New, monospace;
  font-size: 20px; 
  font-weight: 700;
}
      
.preStyle {
  font-family: monospace; 
  font-size: 22px; 
  font-style: normal; 
  font-variant: normal; 
  font-weight: 700; 
  // line-height: 20px;
}
      
.standoutText {
  border: 1px solid #999999;
  width: 90%;
  margin-right: auto;
  margin-bottom: 1.5em;
  margin-left: auto;
  padding: 10px;
  box-shadow: 5px 5px #a9a9a9;
}