/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	    margin:15px 0 15px 0;
		cursor:pointer;
		text-decoration: none;
		font-family:"Lucida Sans Unicode", "Trebuchet MS", Arial, "Century Gothic";
		font-size: 16px;
		vertical-align:middle;
		height:35px;
		color: #f2c702;
		font-weight: bold;
		display: block;
	}
	.toggler-closed {
		color:#1B5A7C;
		padding-left:20px;
		height:23px;
		background: #FFF url('togglerc.gif') center right no-repeat;
		border: solid 1px white;
	}
	.toggler-closed:hover {
		color: #1B5A7C;
		padding-left:20px;
		height:23px;
		background: #F3C903 url('togglerch.gif') center right no-repeat;
		border: solid 1px #F3C903;
	}
	.toggler-opened {
		color:#1B5A7C;
		padding-left:20px;
		height:35px;
		background: #F3C903 url('togglero.gif') center right no-repeat;
		border: solid 1px #F3C903;
	}
	.toggler-opened:hover {
		color: #1B5A7C;
		padding-left:20px;
		height:35px;
		background: #F3C903 url('toggleroh.gif') center right no-repeat;
		border: solid 1px #F3C903;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   border:solid 1px #e3e3e3;
		margin:-25px 0px 25px 0px;
	   padding:20px;
	}
	.toggler-c-opened {
		margin:-25px 0px 25px 0px;
	   padding:20px;
	   background:#FFF;
	   border:solid 1px #fff;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}

