@charset "UTF-8";

/* Custom CSS for SpryCollapsible Panel on OnDemand section - overriding default styles */

/* This is the selector for the main CollapsiblePanel container. */


.OnDemandCP {
	margin: 0px;
	padding: 0;
	font-size: 11px;
	line-height: 17px;
}

/* 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.*/


.CollapsiblePanelTab {
	background-image:url(../images/ondemand/panel-ctrl-up.png);
	background-position: top right;
	background-repeat:no-repeat;
	background-color: #96bf3d;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: capitalize;
	border: none;
	margin: 0px;
	padding: 2px 2px 2px 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 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.*/

.OnDemandCP div.CollapsiblePanelContent {
	margin: 0px;
	padding: 5px 10px 0 10px;
	border-left: none;
	border-right: none;
	border-bottom: none;
}

div.OnDemandCP div.CollapsiblePanelContent ul {
	list-style-image:url(../images/ondemand/wmp.png);
	list-style-position: outside;
	margin: 0 0 0 10px;
	padding: 0;
}

div.OnDemandCP div.CollapsiblePanelContent p.name {
	color: #5482ab;
	font-size: 14px;
	line-height: 18px;
	padding: 0 0 0 20px;
	margin: 10px 0 5px 0;
	background-image:url(../images/ondemand/wmp.png);
	background-position: 0 -1px;
	background-repeat: no-repeat;
	border-bottom: none;
	font-weight: bold;
}

div.OnDemandCP div.CollapsiblePanelContent p {
	padding: 0 7px 7px 20px;
	margin: 5px 0 15px 0;
	border-bottom: 1px dashed #b8d0e5
}
div.OnDemandCP div.CollapsiblePanelContent p i {
	color: #5482ab;
}

div.OnDemandCP div.CollapsiblePanelContent p.close {
	border-bottom: none;
	padding: 0 7px 0 20px;
	margin: 5px 0 10px 0;
}

div.OnDemandCP div.CollapsiblePanelContent p img {
	margin-left: 10px;
}


/* 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-image:url(../images/ondemand/panel-ctrl-dn.png);
	background-position: top right;
	background-repeat:no-repeat;
	background-color: #96bf3d;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: capitalize;
	border: none;
	margin: 0px;
	padding: 2px 2px 2px 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.CollapsiblePanelClosed div.CollapsiblePanelTab {
	/*background-color: #A8B400;*/
}

/* 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.
 */
.CollapsiblePanelTabHover { 
	background-color: #96bf3d;
} 
.CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #96bf3d;

}

/* 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.
 */
.OnDemandCP .CollapsiblePanelFocused div.CollapsiblePanelTab {
	background-color: #96bf3d;
}
