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

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

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	   margin:25px 0 25px 0;
	   width:475px;
		text-decoration: none;
		font-weight:bold;
		line-height:15px;
		display: block;
		text-align:right;
	}
	.toggler-closed {
		color:#2d8ad1;
		padding:0 20px 0 20px;
		height:15px;
		background: url('togglerc.gif') center right no-repeat;
		border: solid 1px white;
	}
	.toggler-closed:hover {
		color: #443b3b;
		padding:0 20px 0 20px;
		height:15px;
		background: url('togglerch.gif') center right no-repeat;
		border: solid 1px #e3e3e3;
	}
	.toggler-opened {
		color:#2d8ad1;
		padding:0 20px 0 20px;
		height:15px;
		background: url('togglero.gif') center right no-repeat;
		border: solid 1px white;
	}
	.toggler-opened:hover {
		color: #443b3b;
		padding:0 20px 0 20px;
		height:15px;
		background: url('toggleroh.gif') center right no-repeat;
		border: solid 1px #e3e3e3;
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
		display:block;
		width:475px;
	   background:transparent;
	   border:solid 1px #e3e3e3;
		margin:-25px 0px 25px 0px;
	}
	.toggler-c-opened {
		display:block;
		width:475px;
   		margin:-25px 0px 25px 0px;
	   background:transparent;
	   border:solid 1px #fff;
	}

}

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

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

}
