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