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