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