@charset "UTF-8";

.Accordion{
	border: none 0px;
	overflow: hidden;
	width:720px;
}

.AccordionFocused {
	border:  none;
	overflow: hidden;
	width:720px;
}

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

.AccordionPanelTab {
	position:relative;
	height:60px;
	border-top: dotted 1px grey;
	border-bottom: none;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.Accordion .firstTab {
	border:none!important;
}

.AccordionPanelTab .box1{ 
	height:60px; 
	width:50px;
	background-image:url(../pic/list/arrow.gif);
	background-repeat:no-repeat;
	background-position:25px 25px;
	}

.AccordionPanelOpen .AccordionPanelTab .box1{ 
	background-image:url(../pic/list/arrow_down.gif);
	background-repeat:no-repeat;
	background-position:25px 25px;
	}
	
.AccordionPanelTab .box2{ 
	height:60px; 
	width:200px;
	text-align:left;
	vertical-align:middle;
	}
	
	
.AccordionPanelTab .box3{ 
	height:60px; 
	width:470px;
	text-align:left;
	vertical-align:middle;
	}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px 0px 0px 250px;
	padding: 0;
	height: 200px;
	border:none;
	text-align:left;
	
}

.AccordionPanelContent_Presse {
	overflow: auto;
	margin: 0px 0px 0px 200px;
	padding: 0;
	height: 200px;
	border:none;
	text-align:left;
	
}


.AccordionPanelOpen .AccordionPanelTab {
	
}

/* 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 {
	background-color: #97c000;
	color:#FFF;
}

.AccordionPanelTabHover .hl_body {
	color:#FFF;
}


.AccordionPanelOpen .AccordionPanelTabHover {
	
}



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

