@charset "UTF-8";

.AccordionBLOG {
	
	overflow: hidden;
}


.AccordionPanelBLOG {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTabBLOG {
	background-color: #EEE;
	border: 1px solid #000;
	border-bottom:none;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	font-family: Arial;
	font-size:12px;
	font-weight: normal;
	color:#3587D6;
	-moz-user-select: none;
	-khtml-user-select: none;
	vertical-align:middle;
}

.AccordionPanelContentBLOG {
	overflow: auto;
	background-color:#FFF;
	margin: 0px;
	padding-top:0px;
	padding-left:10px;
	padding-right:10px;
	border-top:1px solid #000;
	border-bottom:12px solid #FFF;
	border-left:0px solid #333;
	border-right:0px solid #333;
	font:Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:18px;
}

/* 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.
 */
.AccordionPanelOpenBLOG .AccordionPanelTabBLOG {
	background-color:#CECECE;
	
}

/* 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.
 */
.AccordionPanelTabHoverBLOG {
	color: #3587D6;
	background-color:#3587D6;
}
.AccordionPanelOpenBLOG .AccordionPanelTabHoverBLOG {
	color: #3587D6;
}

/* 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.
 */
.AccordionFocusedBLOG .AccordionPanelTabBLOG {
	
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocusedBLOG .AccordionPanelOpenBLOG .AccordionPanelTabBLOG {
	
}

