@charset "utf-8";
/* CSS Document */

/* *************** basics *************** */
body {
  margin: 0;
  padding: 0;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #f7f7f7;
  /*
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -100px;
  */
  overflow-y: scroll;
}

/* widths */
#header, #content_area, #footer_content, #inner_header {
  width: 1100px;
  margin: auto;
}

#inner_header {
  position: relative;
}

#content_area { margin-top: 66px; min-height: 400px; }

@media all and (max-width: 1120px) {
  #header, #content_area, #footer, #footer_content, #inner_header {
    width:  100%;
  }
  
  #content_area, #footer {
    padding: 0 5px 0 5px;
    box-sizing: border-box;
  }
}

a,
a:visited,
a:link { 
  color: blue;
  text-decoration: none;
}

a:hover {
  color: purple;
  text-decoration: underline;
}

p { }

.ital { font-style: italic; }
.bold { font-weight: bold; }
.no_ital .ital { font-style: normal; }

.page_header {
  font-size: 22px;
  font-weight: 550;
  margin-bottom: 4px;
  text-align: left;
}

.page_subheader {
  font-weight: bold;
  font-size: 18px;
}

.page_description {
  text-align: left;
  line-height:  1.6;
}

.add_space {
  margin-top: 18px;
}

.after_desc {
  width: 100%;
  height: 1px;
  margin: 8px 0 8px 0;
  border-bottom: 1px solid gray;
}

.stat {
  width: 90%;
  padding: 3px;
  font-weight: bold;
  margin: 12px auto 4px 20px;
  color: black;
  background: #f7f7f7;
  font-size: 110%;
  margin-top: 2px;
}

.section_header_top {
  margin: 0 auto 0 auto;
}

@media all and (max-width:460px) {
  .section_header, .section_header_top {
    width: 100%;
    box-sizing: border-box;
  }
}

.full_list a {
  display: block;
  width: 450px;
  padding: 3px;
  margin: auto;
}

.search_box {
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
}

.search_box label {
  width: 100px;
  text-align: right;
}

.search_box #search_input {
  padding: 5px;
  width: 330px;
}

.clear_both {
  clear: both;
}

.inactive_record {
  width: 100%;
  text-align: center;
  background: yellow;
  font-weight: bold;
  padding: 4px;
}