@charset "UTF-8";

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-bottom: solid 1px #CCC;
}

.serviceGroupHolder .CollapsiblePanel {
	margin: 0px 0px 0px 100px;
	padding: 0px;
	width: 400px;
}
/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	border-bottom: 1px solid #e1e1e0;
	margin: 0px;
	padding: 4px 4px 4px 8px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 13px;
	font-weight: normal;
	color: #333;
	font-style: oblique;
}

.serviceGroupHolder .CollapsiblePanelTab {
	padding: 3px 8px;


	
}


#sidebar_C2A_holder .CollapsiblePanelTab {
	border-bottom: solid 1px #CCC;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	margin: 0px;
	font-size: 14px;
	font-weight: bold;
	padding: 5px;
	color: #FFF;
	background-color: #666;
	display: block;
	text-align: center;
	background-image: none;
	font-style: oblique;
	font-family: Cambria, "Times New Roman", Times, serif;

}



/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
 
 
 
.CollapsiblePanelContent {
	margin: 0px;
	padding: 8px 8px 3px;
	background-color: #FFF;
}

.serviceGroupHolder .CollapsiblePanelContent {
	margin: 0px;
	padding: 8px 8px 0px;
}

.CollapsiblePanelContent p {
	font-size: 12px;
	margin: 0px 0px 3px;
	font-family: Helvetica, Arial, sans-serif;
	font-style: normal;
}




/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: #333;
	text-decoration: none;
	display: block;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EBEBEB;
	background-image: url(../img/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% center;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */


.CollapsiblePanelClosed .CollapsiblePanelTab,
.serviceGroupHolder .CollapsiblePanelClosed .CollapsiblePanelTab {
	background-image: url(../img/gradient_back25.gif);
	background-repeat: repeat-x;
	background-color: #FAFAFA;
	border-bottom: 1px solid #e1e1e0;
	background-position: bottom;
}


#sidebar_C2A_holder .CollapsiblePanelClosed .CollapsiblePanelTab {
	border-bottom: solid 1px #CCC;
	background-color: #F1AC1C;
	background-image: none;

}


/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */

/* OPENED HOVER*/
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #F5C765;
	background-image: url(../img/SpryMenuBarUpHover.gif);
	background-position: 95% center;
}

#sidebar_C2A_holder .CollapsiblePanelTabHover, 
#sidebar_C2A_holder .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #666;
	background-image: url(../img/sidebar_hover_up.png);
	background-repeat: no-repeat;
	background-position: center center;

}



/* CLOSED HOVER*/
.CollapsiblePanelClosed .CollapsiblePanelTabHover,
.serviceGroupHolder .CollapsiblePanelClosed .CollapsiblePanelTabHover{
	background-color: #F1AC1C;
	background-image:url(../img/SpryMenuBarDownHover.gif);
	color: #FFF;
	background-repeat: no-repeat;
	background-position: 95% center;
}


#sidebar_C2A_holder .CollapsiblePanelClosed .CollapsiblePanelTabHover {
	background-color: #666;
	color: #FFF;
	background-image: url(../img/sidebar_hover.png);
	background-repeat: no-repeat;
	background-position: center center;

}


/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
 
 /* CURRENT */
.CollapsiblePanelFocused .CollapsiblePanelTab {

}
.serviceSummaryHolder {
	margin: 5px 0px 10px;
	padding: 0px;

}
.SummaryPanel {
	background-color: #FDFDFD;
	background-image: url(../img/RC_bot_500_gradient.gif);
	background-repeat: repeat-x;
	background-position: center bottom;
	margin-bottom: 5px;
	padding-bottom: 2px;
}

.SummaryPanelTab {
	margin: 0px;
	padding: 3px 10px;
	border-bottom: 1px solid #E8E8E8;
}
.SummaryPanelTab:hover{
	background-color: #FFF9EF;
	color: #FFF;
	cursor: pointer;
}
.SummaryPanelTab a:hover {
	text-decoration: none;
	color: #FFF;
}

.SummaryPanelTab h3 {
	margin: 0px;
	padding: 0px;
	font-family: Cambria, "Times New Roman", Times, serif;
	font-style: oblique;
	font-weight: bold;
	color: #666;
}
.SummaryPanelContent {
	margin: 0px;
	padding: 2px 10px 5px;
}


.SummaryPanelContent p {
	font-size: 12px;
	margin: 0px 0px 3px;
	line-height: 1.5em;
	font-family: Helvetica, Arial, sans-serif;
	font-style: normal;
	color: #666;
}



.serviceGroupHolder {
	margin: 0px 0px 4px;
	background-color: #FEFEFE;
	background-image: url(../img/RC_bot_500_gradient.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 0px 0px 14px;
	position: relative;
}
.serviceGroupTitle {
	display: block;
	margin: 5px 0px 0px 10px;
	padding: 0px;
	width: 85px;
	position: absolute;
	left: 0px;
	top: 0px;
	text-align: center;
}

.serviceGroupTitle h3 {
	margin: 0px;
	padding: 0px;
	font-family: Cambria, "Times New Roman", Times, serif;
	font-style: oblique;
	font-weight: normal;
	color: #333;

}

.CollapsiblePanelContent .callToAction a {
	padding: 0px 0px 0px 27px;
	margin: 4px 0px 4px;
	line-height: normal;
	font-weight: normal;
}


.CollapsiblePanelContent  a img {
	border: 1px solid #FFF;
}


.CollapsiblePanelContent  a:hover  img{
	border: 1px solid #F1AC1C;
}
.forWhoContent {
	font-size: 12px;
	margin: 0px;
}
.locationManagerVid {
	text-align: center;
	display: block;
	width: auto;
	position: relative;
	margin-bottom: 10px;
}

.locationManagerVid .lm_pic,
.locationManagerVid a img {
	border: 5px solid #CCC;
}

.locationManagerVid a:hover img {
	border: 5px solid #850E23;
}

.locationManagerVid a span {
	background-image: url(../img/play_btn_sprite.png);
	background-position: 0px 0px;
	display: block;
	position: absolute;
	height: 40px;
	width: 40px;
	left: 80px;
	top: 86px;
}

.locationManagerVid a:hover span {
	background-position: 0px -40px;
}
