/* Styles for the Scout landing page */

/* An error message if an invalid station was selected */
.scout_invalid_station {
 display: block;
 text-align: left;
 color: #990000;
}
 .scout_invalid_station i {
  color: #FFCC00;
 }

/* Instructions for how to use Scout */
.scout_instructions {
 display: block;
 margin: 0px 0px 20px 0px;
 text-align: left;
 font-size: 16px;
 line-height: 140%;
}
 .scout_name {
  display: inline;
  color: #4156A1;
 }
  .scout_name i {
   color: #F28C0D;
  }

/* Styles for the search options */
.scout_search_option {
 display: block;
 margin: 5px 5px 15px 5px;
}
 .scout_search_option i {
  color: #F28C0D;
 }
 .scout_search_option_indent {
  display: block;
  margin: 4px 4px 4px 18px;
 }
  #scout_search_nearby_error {
   display: none;
   margin: 6px 0px;
   color: #990000;
   font-size: 14px;
  }
   #scout_search_nearby_error i {
    color: #FFCC00;
   }
  .detect_location, .network_toggle {
   color: #4156A1;
   text-decoration: underline;
   cursor: pointer;
  }
  .scout_search_nw_category {
   display: inline-block;
   width: 100px;
   margin: 2px 0px;
   font-weight: bold;
  }
   .scout_search_nw_category i {
    width: 20px;
    margin-right: 5px;
    color: #000000;
    text-align: center;
   }
  .scout_search_network {
   display: inline-block;
   width: 120px;
  }
   .network_search_icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0px 4px;
    border-radius: 12px;
    border: 1px solid #000000;
   }
  #search_nearby_location, #search_name {
   color: #555555;
   width: 80%;
  }
   .search_name_term {
    font-weight: bold;
   }
#search_submit {
 display: block;
 margin: auto;
 background-color: #003366;
 color: #FFFFFF;
}

/* A table to list station search results */
#search_results {
 height: 400px;
 overflow-y: scroll;
}
.scout_search_table_title {
 display: block;
 text-align: center;
 color: #003366;
}
 .scout_search_table_title img {
  height: 25px;
  vertical-align: top;
 }
.scout_search_table_error {
 display: block;
 text-align: center;
 color: #990000;
}
 .scout_search_table_error i {
  color: #FFCC00;
 }
.scout_search_table {
 display: table;
 width: 100%;
 font-size: 14px;
}
 .scout_search_table_header {
  display: table-row;
  background-color: #D0D0D0;
 }
 .scout_search_table_row_odd {
  display: table-row;
  background-color: #EFEFEF;
 }
 .scout_search_table_row_even {
  display: table-row;
  background-color: #E6E6E6;
 }
  .scout_search_table_header_cell, .scout_search_table_cell_center, .scout_search_table_cell_left {
   display: table-cell;
   padding: 4px;
   vertical-align: top;
  }
  .scout_search_table_header_cell {
   text-align: center;
   font-weight: bold;
  }
  .scout_search_table_cell_center {
   text-align: center;
  }
  .scout_search_table_cell_left {
   text-align: left;
  }
  .scout_search_table_cell_inactive {
   color: #990000;
  }
   .scout_search_inactive_icon {
    display: inline;
    margin-left: 5px;
    color: #E82929;
   }
  .scout_search_table_zoom_icon {
   color: #F28C0D;
   cursor: help;
  }

 /* Styles for the map of all stations. */
 #station_search_map {
  display: block;
  width: 100%;
  height: 500px;
  margin: 0px auto;
 }