@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4
 * Accordion container.
*/
.Accordion {
	overflow: hidden;
}

/* 
 * The name of the class ("AccordionPanel") 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 container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* 
 * The name of the class ("AccordionPanelTab") 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 tab container.
 */
.AccordionPanelTab {
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F3F3F3;
	font-size: 12px;
	text-align: left;
	background-image: url(../resim_genel/h_back_on.gif);
	background-repeat: repeat-x;
	background-position: left center;
	color: #6B6B6B;
}
.AccordionPanelTab span {
	background-image: url(../resim_genel/h_bullet_on.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left:13px;
}
/* 
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
*/
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 115px;
	border:0px;
	cursor:pointer;
}

/* 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 {
	font-weight: bold;
	text-decoration: none;
	color: #3A3A3A;
	background-image: url(../resim_genel/h_back_off.gif);
	background-repeat: repeat-x;
	background-position: left center;
	border-top:0px;
	border-bottom:1px solid #FFF;
}
.AccordionPanelOpen .AccordionPanelTab span{
	background-image: url(../resim_genel/h_bullet_off.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left:13px;
}
/* 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-image: url(../resim_genel/h_back_off.gif);
	background-repeat: repeat-x;
	background-position: left center;
}
.AccordionPanelTabHover span {
	background-image: url(../resim_genel/h_bullet_off.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left:13px;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	background-image: url(../resim_genel/h_back_on.gif);
	background-repeat: repeat-x;
	background-position: left center;
}
.AccordionPanelOpen .AccordionPanelTabHover span{
	background-image: url(../resim_genel/h_back_on.gif);
	background-repeat: repeat-x;
	background-position: left center;
}
/* 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;
	background-image: url(../resim_genel/h_back_on.gif);
	background-repeat: repeat-x;
	background-position: left center;
}
.AccordionFocused .AccordionPanelTab span {
	background-image: url(../resim_genel/h_bullet_on.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left:13px;
}
/* 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-image: url(../resim_genel/h_back_off.gif);
	background-repeat: repeat-x;
	background-position: left center;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab span {
	background-image: url(../resim_genel/h_bullet_off.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left:13px;
}
