@charset "UTF-8";


.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-left: solid 1px #950000 ;
	border-right: solid 1px #950000 ;
	border-top: solid 1px #950000 ;
	border-bottom: solid 1px #950000 ;
}


.CollapsiblePanelTab {
	/*font: bold 1em:"Times New Roman", Times, serif;
	background-color:#DDD  /*#E04949 */
font: Georgia;
font-size:20px;
color:#FFFFFF;
text-align:center;
background-color:#950000;
border-bottom: solid 1px #950000;
margin: 0px;
padding: 2px;
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.
 *
 * 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: 0px;
}


.CollapsiblePanelTab a {
font: Georgia;
font-size:20px;
color:#950000;
text-align:center;
background-color:#FFFFFF;
		
	
	/*color: white;
	text-decoration: none;*/
}

/* This is to change the appearance of the panel tab that is
 * currently open. 
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
font: Georgia;
font-size:20px;
color:#950000;
/*font-weight:bold;*/
text-align:center;
background-color:#FFFFFF;
	
	
	/*background-color: #EEE;*/
}

/* This is how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. .
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
 font: Georgia;
font-size:20px;
color:#FFFFFF;
text-align:center;
background-color:#950000;
 
 /* background-color: #EFEFEF */
}

/* This is how to change the appearance of the panel tab as the
 * mouse hovers over it. .
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	
font: Georgia;
font-size:20px;
color:#FFFFFF;
text-align:center;
background-color:#950000;

	
	/*background-color: white*/
	/*#CCC*/;
}

/* This is  how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. 
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {

font: Georgia;
font-size:20px;
color:#FFFFFF;
text-align:center;
background-color: #950000;


	/*background-color: #FFCB91*/ /*#3399FF;*/
}
