@charset "UTF-8";
/* 
CSS Style Sheet 
RealiseTheVision.com
JSG May 2007
*/
/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
.CollapsiblePanel {
	border: solid 1px #d6d6d6;
	margin: 20px 0;
}
.CollapsiblePanelTab {
	margin: 0px;
	padding: 4px 0;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
/* The following code prevents the fuzzy outline in FireFox around the Tab */
.CollapsiblePanelTab:focus {
	outline: none;	
}
/* CollapsiblePanel's Content area. 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.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 10px;
}
/* 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: black;
	text-decoration: none;
}
/* Currently open panel tab. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EEE;
	background-image: url(../images/homepage/minus-20x11.gif);
	background-position: left center;
	background-repeat: no-repeat;
	border-bottom: 1px solid #d6d6d6;
}
/* Closed panel tab. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */
.CollapsiblePanelClosed .CollapsiblePanelTab {
	background-color: #EFEFEF;
	background-image: url(../images/homepage/plus-20x11.gif);
	background-position: left center;
	background-repeat: no-repeat;
	/* Keep 1px border on bottom to preven bkg image from moving */
	border-bottom: 1px solid #efefef;
}
/* 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.
 */
.CollapsiblePanelClosed .CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #cccccc;
}
/* 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.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
/* Not yet used */	
}
.CollapsiblePanelTab  h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #333333;
	margin: 0 0 0 22px;
	padding: 0px;
	background-color: transparent;
	font-weight: bold;
}
