/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	margin:25px 0 25px 0;
	cursor:pointer;
	text-decoration: none;
	font-size: 15px;
	font-weight:normal;
	line-height:30px;
	display: block;
	}
	.toggler-closed {
	color:#333;
	padding-left:20px;
	border: solid 1px white;
	background-image: url(togglerc.gif);
	background-repeat: no-repeat;
	background-position: 5px 11px;
	}
	.toggler-closed:hover {
	color: #FF6600;
	padding-left:20px;
	border: solid 1px #e3e3e3;
	background-color: #fff;
	background-image: url(togglerch.gif);
	background-repeat: no-repeat;
	background-position: 5px 11px;
	text-decoration: none;
	}
	.toggler-opened {
	color:#333;
	padding-left:20px;
	border: solid 1px white;
	background-image: url(togglero.gif);
	background-repeat: no-repeat;
	background-position: 5px 11px;
	background-color: #cbe88b;
	}
	.toggler-opened:hover {
	color: #FFFFFF;
	padding-left:20px;
	border: solid 1px #e3e3e3;
	text-decoration: none;
	background-color: #FF6600;
	background-image: url(toggleroh.gif);
	background-repeat: no-repeat;
	background-position: 5px 11px;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	background:transparent;
	margin:-10px 0px 10px 0px;
	padding:20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #e3e3e3;
	border-right-color: #e3e3e3;
	border-bottom-color: #e3e3e3;
	border-left-color: #e3e3e3;
	}
	.toggler-c-opened {
	margin:-10px 0px 10px 0px;
	padding:20px;
	border:1px none #fff;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c {
	margin-bottom:10px;
}
	.toggler { display: none; }

}

