@charset "UTF-8";

/* SprySlidingPanels.css - version 0.1 - Spry Pre-Release 1.5 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main SlidingPanels container. This selector
 * defines the width and height of the view port for the widget. Note that
 * this selector does not set the overflow property since that is done programatically
 * by the widget. Setting the overflow property programatically ensures that
 * the contens of the widget will be fully visible should JavaScript be disabled
 * in the browser.
 *
 * If you want to constrain the width of the SlidingPanels widget, set a width on
 * the SlidingPanels container. By default, our sliding panels widget expands
 * horizontally to fill up available space.
 *
 * The SlidingPanels container is positioned relative so that content inside it
 * can be positioned relative to its upper left corner.
 *
 * Avoid placing any CSS border or padding properties on the SlidingPanels container
 * as they can affect the proper positioning and sliding animations of the contents
 * inside the container.
 *
 * The name of the class ("SlidingPanels") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * SlidingPanels container.
 */
.SlidingPanels {
	position: relative;
	width: 576px;
	height: 300px;
	padding: 0px;
	border: none;
	overflow: hidden;
}

.LocationsNav {
	float: left;
	width: 143px;
	height: 150px;
	text-align: left;
	padding-left: 20px;

}

.LocationsNav a {
	font-weight: bold;
}



#ourlocationswrap {
	text-align: center;
	margin: 0 auto;
	width: 678px;
	height: 235px;
	background-image: url(/custom/images/pages/home/ourlocations-back.gif);
	background-repeat: no-repeat;
	padding: 45px 0 0 0px;
	border: 1px solid #ffffff;
}

.Locationswrap {
	text-align: left;
	position: relative;
	top: -5px;
	padding: 0px 3px 3px 15px;
	float: left;
	width: 475px;
	height: 170px;
	overflow: hidden;
	
}

.locations-contentarea {
	text-align: left;
	position: relative;
	width: 100%;
	padding: 0px;
	overflow: hidden;
	
}

.locations { 
	position: relative;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	
	
}

.location {
	width: 100%;
	height: 200px;
	margin: 0px;
	padding: 0px 0px 0px 5px;
	overflow: hidden;
}

#title {
	color: #000099;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	font-weight: normal;
}

#title2 {
	color: #ffe62a;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	font-weight: normal;
}

#desc{
	text-align: left;
	padding: 0px 3px 3px 0px;
}

#location li{
	margin: 2px 0px 0px 5px;
	padding-left: -5px;
 }
 



.SlidingPanelsContent {
	width: 100%;
	height: 275px;
	overflow: auto;
	margin: 0px;
	padding: 0px;
	border: none;
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime we are animating between panels. This rule makes sure that *all* content inside
 * the widget is overflow:none to avoid a rendering glitch that occurs in FireFox 1.5 whenever
 * there is an element inside the widget that displays a scrollbar.
 *
 * The class is automatically removed once the animation has stopped so that the overflow
 * properties of the content inside the widget should be restored.
 */
.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

/* The class used in this selector is programatically added to the SlindingPanelsContent
 * container that is currently visible in the view port. The class is automatically removed
 * when the widget switches to a different panel.
 */
.SlidingPanelsCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime the SlidingPanels container is given focus. The class is automatically removed
 * once the SlidingPanels container loses focus.
 */
.SlidingPanelsFocused {
}
