/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	    margin:10px 0;
		text-decoration:none;
		font-size:11px;
		font-weight:bold;
		line-height:30px;
		display:block;
	}
	.toggler-closed {
		padding-left:20px;
		height:30px;
		background:#f5f5f5 url(../images/bg_faqq.png) bottom right no-repeat;
		border-top:1px solid #ddd;
	}
	.toggler-closed:hover {
		color:#000;
		background:#f5f5f5 url(../images/bg_faqq.png) bottom right no-repeat;
		border-top:1px solid #c33;
	}
	.toggler-opened {
		padding-left:20px;
		height:30px;
		background:#f5f5f5 center right no-repeat;
		border-top:1px solid #ddd;
	}
	.toggler-opened:hover {
		color:#000;
		background:#f5f5f5 center right no-repeat;
		border-top:1px solid #c33;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   margin:-10px 0 10px;
	   padding:0 20px 20px;
	}
	.toggler-c-opened {
	   margin:-10px 0 10px;
	   padding:0 20px 20px;
	   background:#f5f5f5 url(../images/bg_faqa.png) bottom right no-repeat;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:20px; }
	.toggler { display:none; }

}

