.mapImageContainer
{
  text-align: center; /* cheap centering method, not same as margin-auto */
}

.directionsContainer h2, .directionsContainerTextOnly h2
{
  /* ALERT!  .directionsContainer h2 definition in location.css and .teamListingContainer h2 
  definition in captain.css are duplicates of each other */
  border-top: solid 1px #b5dcfd; /* #b5dcfd = original sful.org color scheme (2002) */ 
  border-bottom: dashed 1px #b5dcfd; /* #b5dcfd = original sful.org color scheme (2002) */ 
  padding-top: 3px;
  padding-bottom: 3px;
}

.directionsContainer h3, .directionsContainerTextOnly h3
{
  font-weight: normal;
  text-decoration: underline;
  font-size: 1.0em;
}


div.directionsContainer ul 
{ 
  /* list-style / margin / padding settings get rid of default bullet points */
  list-style: none;
  margin: 0px;
  padding: 0px;	
}

div.directionsContainer ul li 
{
	padding-left: 35px; 
	padding-top: 3px;
	padding-bottom: 7px;
}

li.turnRight
{
  background-repeat: no-repeat; 
	background-image: url('images/turnRight.gif'); 
}

li.turnLeft
{
  background-repeat: no-repeat; 
	background-image: url('images/turnLeft.gif'); 
}

li.goStraight
{
  background-repeat: no-repeat; 
	background-image: url('images/goStraight.gif'); 
}

li.end
{
  background-repeat: no-repeat; 
	background-image: url('images/end.gif'); 
}

li.drivingTip
{
  background-repeat: no-repeat; 
	background-image: url('images/drivingTip3.gif'); 
}

.printingInstructions
{
  font-style: italic;
}

/* DAMN!  slick hover button effect from alistapart.com */
#button {
	width: 12em;
	border-right: 1px solid #000;
	padding: 0 0 1em 0;
	margin-bottom: 1em;
	font-family: 'Trebuchet MS', 'Lucida Grande',
	  Verdana, Lucida, Geneva, Helvetica, 
	  Arial, sans-serif;
	background-color: #90bade;
	color: #333;
	}
	
	#button ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
	#button li {
		border-bottom: 1px solid #90bade;
		margin: 0;
		}
		
		#button li a {
		display: block;
		padding: 5px 5px 5px 0.5em;
		border-left: 10px solid #1958b7;
		border-right: 10px solid #508fc4;
		background-color: #2175bc;
		color: #fff;
		text-decoration: none;
		width: 100%;
		}

	html>body #button li a {
		width: auto;
		}

	#button li a:hover {
		border-left: 10px solid #1c64d1;
		border-right: 10px solid #5ba3e0;
		background-color: #2586d7;
		color: #fff;
		}
/*		
<div id="button">
<ul>
	<li><a href="#">Home</a></li>
	<li><a href="#">Hidden Cameras</a></li>
	<li><a href="#">CCTV Cameras</a></li>
	<li><a href="#">Employee Theft</a></li>
	<li><a href="#">Helpful Hints</a></li>
	<li><a href="#">F.A.Q</a></li>
	<li><a href="#">About Us</a></li>
	<li><a href="#">Contact Us</a></li>
</ul>
</div>
*/		