@charset "UTF-8";
.Accordion {
	/*border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;*/
	overflow: hidden;
	margin-bottom: 2em;
}
.Accordion:focus {
	outline: 0;
}
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}
.AccordionPanelTab {
	background-color: #FFF;
	color: #000;
	font-size: 1.4rem;
	border-bottom: dotted 1px gray;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-left: 2em;
}
.AccordionPanelTab::before {
	content: "\25BC";
	font-size: 1rem;
	color: rgba(37,157,92,0.7);
	display: inline-block;
	width: 1.4em;
	margin-left: -0.5em;
}
.AccordionPanelTabHover::before {
	content: "\25Bc";
	color: #FFF;
 *color: rgba(37,157,92,0.7);
	display: inline-block;
	width: 1.4em;
	margin-left: -0.5em;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 1em;
	padding: 0;
	border-bottom: solid 4px rgba(46,84,150,0.7);
}
.AccordionPanelContent img {
	box-sizing: border-box;
	width: 90%;
	float: right;
	padding:5%;
	margin: 0;
	background-color:rgba(46,84,150,0.7);
}
/* 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 {
	color: #008BC4;
	background-color: #ededed;
}
/* 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: #FFF;
	background-color: rgba(37,157,92,0.7);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFF;
	background-color: rgba(37,157,92,0.7);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab::before {
	content: "\25B2";
	color: #008BC4;
	display: inline-block;
	width: 1.4em;
	margin-left: -0.5em;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	vertical-align: middle;
}
/* 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: #FFF;
}
/* 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: #ededed;
 *background-color: rgba(37,157,92,0.7);
}
.AccordionPanelTab:not(:focus) {
	background-color: #ededed;
}
.AccordionPanelTab:not(:focus):hover {
	background-color: rgba(37,157,92,0.7);
}
/* Rules for Printing */

@media print {
.Accordion {
	overflow: visible !important;
}
.AccordionPanelContent {
	display: block !important;
	overflow: visible !important;
	height: auto !important;
}
}
