/* altered from Google example to fit this website */
.storelocator-panel {
  /*border: 1px solid #ccc;*/
  overflow: auto;
}

.storelocator-panel form {  /*RC added to fit panel correctly*/
  height:auto;	
}

.storelocator-panel input[type="submit"] {  /*RC added to show Find Directions button correctly*/
/*	background-image: none;
	background-color: silver;
	width:auto;
	height:auto;
	font-size:12px;
	padding:0;*/
	display:none   /*RC: hidden since we aren't using title property of a store so that makes the directions input box useless */
}

.storelocator-panel .directions-to {   /*RC: hidden for since we aren't using title property of a store */
	display:none
}

.storelocator-panel input[type="checkbox"] {  /*RC added to add spacing to checkbox value */
	margin-right: 3px;
}

.storelocator-panel .store-list {
  margin: 0;
  padding: 0;
  line-height:16px;
}

.storelocator-panel .store-list li,
.storelocator-panel .directions-panel {
  padding: 5px;
  border-top: 2px solid #f2f2f2;
}
.storelocator-panel .directions-panel {
  /*font-size: 0.8em;*/
}

.storelocator-panel .store-list li.store:hover {
  cursor: pointer;
  background: #eee;
}

.storelocator-panel .store-list li.highlighted,
.storelocator-panel .store-list li.highlighted:hover {
  background: #ccf;
}

.storelocator-panel .directions {
  display: none;
}

.storelocator-panel .location-search {
  padding: 5px;
}

.storelocator-panel .location-search input {
  width: 95%;
}

.storelocator-panel .location-search h4 {
  /*font-size: 0.8em;*/
  margin: 0;
  padding: 0;
}

.storelocator-panel .store-list .no-stores {
  color: grey;
}

.storelocator-panel .store .features {
  display: none;
}

.storelocator-panel .feature-filter {
  overflow: hidden;
}


.storelocator-panel .feature-filter label {
  display: block;
  /*font-size: 0.8em;*/
  margin: 0 0.4em;
  float: left;
  padding: 
}

.store .title {
  font-weight: bold;
}

.store .address,
.store .phone,
.store .web,
.store .misc {
  /*font-size: 80%;*/
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  display: block;
  line-height:16px   /*RC added*/
}

.store .features {
  overflow: hidden;
  color: grey;
  margin: 0;
  padding: 0;
/*  font-size: 70%;*/
  max-width: 250px;
}

.store .features li {
  display: inline;
  float: left;
  padding-right: 0.8em;
}

.store .web a {
  color: green
}

.store .action {
  /*font-size: 0.8em;*/
  color: green;
  margin-right: 0.5em;
}
