@charset "UTF-8";

.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	text-decoration: none;
}



.CollapsiblePanelTab {
	background-color: #909195;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	text-transform: capitalize;
	color: #FFFFFF;
	border-top-width: 4px;
	border-bottom-width: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #003399;
	border-bottom-color: #CCC;
	list-style-position: inside;
	list-style-type: square;
	border-left-width: 16px;
	border-left-style: solid;
	border-left-color: #003399;
	border-right-width: 7px;
	border-right-style: solid;
	border-right-color: #37297B;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	text-decoration: none;
}

.CollapsiblePanelContent {
	margin: 0px;
	color: #003399;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #909195;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 15px;
	border-right-width: 7px;
	border-right-style: solid;
	border-right-color: #35297B;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #000000;
	list-style-type: none;
	text-decoration: none;
}

.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #909195;
	color: #FFFFFF;
}

/* 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,  .CollapsiblePanelOpen  {
	background-color: #909195;
	color: #FF0000;
	text-decoration: none;
}
.CollapsiblePanelTabHover {
	color: #FF0000;
	background-color: #909195;
}

/* 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 {
	background-color: #000099;
}
