@charset "UTF-8";


.Accordion {
	overflow: hidden;
	border-bottom: solid 1px #CCCCCC;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}
.AccordionPanelTab {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-size: 12px;
	color:#333333;
	font-weight:bold;
	height:20px;
	padding-top:5px;
	padding-left:14px;
	background-color: #FFFFFF;
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #CCCCCC;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelContent {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-size: 10px;
	color:#333333;
	overflow: auto;
	border:thin;
	border-color:#666666
	padding: 0px;
	height: 300px;
	line-height: 20px;
	margin-left: 14px;
	padding-right: 14ps;

}


/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #555555;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}







.AccordionGreen {
	border-left: solid 1px #CCCCCC;
	border-right: solid 1px #CCCCCC;
	border-bottom: solid 1px #CCCCCC;
	overflow: hidden;
	width:100%;
}

.AccordionPanelGreen {
	margin: 0px;
	padding: 0px;
}
.AccordionPanelTabGreen {
	background-color: #ABCC77;
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #669900;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 14px;
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-weight:bolder;
}

.AccordionPanelContentGreen {
	overflow: auto;
	margin-left:10px;
	margin-right:10px;
	padding: 0px;
	height: 100px;
}

.AccordionPanelOpen .AccordionPanelTabGreen {
	background-color: #96BF55;
}

.AccordionPanelTabHover {
	color: #555555;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}

.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}

