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