/** General Page Styles **/

body {
  margin: 0;
  padding: 0;
  font-family: 'Average Sans', sans-serif;
  font-weight: normal;
  font-size: 0.95em; 
  color: #ffffff;
  background: #f9f9f9; /* Old browsers */
  background: -moz-linear-gradient(top,  #f9f9f9 0%, #b7b7b7 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #f9f9f9 0%,#b7b7b7 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #f9f9f9 0%,#b7b7b7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000;

}
h1 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  display: inline;
}
hr {
  border: 0;
  height: 1px;
  margin: 25px 0px 10px 0px;
  background: #cccccc;
}
a {
	text-decoration: none;
	color: #ffffff;
  font-weight: 600;
  transition: all 0.3s;
}
a:hover,
a:focus {
  background: #061821;
	color: #e21838;
}

/** General Image Styles **/
img {
  max-width: 100%;
  height: auto;
}
.align-left {
  float: left;
  margin: 0 25px 25px 0;
}
.outline-left {
  border: 2px solid #ffffff;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}
.align-right {
  float: right;
  margin: 0 0 25px 25px;
}
.outline-right {
  border: 2px solid #ffffff;
  box-shadow: -1px 1px 6px rgba(0,0,0,0.4);
}
.clear-fl {
	clear: both;
  font-size: 0.00000001em;
  height: 1px;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .align-left, .align-right {
    max-width: 50%;
  }
}
@media screen and (max-width: 468px) {
  .align-left, .align-right {
    float: none;
    max-width: 100%;
    margin: 0 auto 15px auto;
  }
}

/** Table Styles **/
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cccccc;
}
thead tr th {
  padding: 5px 15px 5px 15px;
  background-color: #484848;
  text-align: left;
  font-weight: 500;
  color: #ffffff;
}
thead tr th a {
  color: #ffffcf;
}
thead tr th a:hover, thead tr th a:focus {
  color: #ffffff;
}
thead tr td, tbody tr td {
  padding: 5px 15px 5px 15px;
  border: 1px solid #cccccc;
}
tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/** File Attachment Icons **/
.file--application-pdf {
  padding-left: 25px;
  background-image: url(img/pdf-icon.png);
  background-repeat:no-repeat;
}