/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
		cursor:pointer;
		text-decoration: none;
		font-weight:bold;
		line-height:30px;
		display: block;
	}
	.toggler-closed {
		color:#333;
		height:30px;
		background: transparent url('../images/togglerc.gif') center right no-repeat;
	}
	.toggler-closed:hover {
		color: #000;
		height:30px;
		background: transparent url('../images/togglerch.gif') center right no-repeat;
	}
	.toggler-opened {
		color:#333;
		height:30px;
		background: transparent url('../images/togglero.gif') center right no-repeat;
	}
	.toggler-opened:hover {
		color: #000;
		height:30px;
		background: transparent url('../images/toggleroh.gif') center right no-repeat;
	}

	/* Container - default style */
	.toggler-c-closed {
	   	background:transparent;
		margin:-25px 0px 25px 0px;
	   	padding:20px 0;
	}
	.toggler-c-opened {
		margin:-25px 0px 25px 0px;
	    padding:20px 0;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {
	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }
}
