/**
 * ----------------------------------------------------------------------------
 * 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: 1.4em;
		font-weight:bold;
		line-height:30px;
		display: block;
	}
	.toggler-closed {
		color:#333;
		padding-left:20px;
		height:30px;
		background: transparent url('images/togglerc.gif') center right no-repeat;
		border: solid 1px #2E9CB5;
		-moz-border-radius: 5px; /* with mozilla prefix */
        -webkit-border-radius: 5px; /* with safari prefix */

	}
	.toggler-closed:hover {
		color: #000;
		padding-left:20px;
		height:30px;
		background: #0a6065 url('images/togglerch.gif') center right no-repeat;
		border: solid 1px #2E9CB5;
		-moz-border-radius: 5px; /* with mozilla prefix */
        -webkit-border-radius: 5px; /* with safari prefix */
	}
	.toggler-opened {
		color:#333;
		padding-left:20px;
		height:30px;
		background: #0b6075 url('images/togglero.gif') center right no-repeat;
		border: solid 1px #2E9CB5;
		-moz-border-radius: 5px; /* with mozilla prefix */
        -webkit-border-radius: 5px; /* with safari prefix */
	}
	.toggler-opened:hover {
		color: #000;
		padding-left:20px;
		height:30px;
		background: #fff url('images/toggleroh.gif') center right no-repeat;
		border: solid 1px #0a6065;
		-moz-border-radius: 5px; /* with mozilla prefix */
        -webkit-border-radius: 5px; /* with safari prefix */
	}

	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   border:solid 1px #2E9CB5;
		margin:-25px 0px 25px 0px;
	   padding:20px;
	   -moz-border-radius: 5px; /* with mozilla prefix */
       -webkit-border-radius: 5px; /* with safari prefix */
	}
	.toggler-c-opened {
		margin:-25px 0px 25px 0px;
	   padding:20px;
	   background:#0b6075;
	   border:solid 1px #2E9CB5;
	   -moz-border-radius: 5px; /* with mozilla prefix */
       -webkit-border-radius: 5px; /* with safari prefix */
	}

}

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

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

}

