/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */


/* Screen ------------------------------------------------------------------- */


@media projection, screen {


	/* Toggler - default style */
	.toggler {
		color:white;
	    margin:0px 0 0px 0;
		cursor:pointer;
		text-decoration: none;
		font-size: 10px;
		font-weight:bold;
		line-height:20px;
		display: block;
	}
	.toggler-closed {
		color:#white;
		height:20px;
		background: #000000 url('/images/toggler/togglerc.gif') center right no-repeat;
		border: none;
	}
	.toggler-closed:hover {
		color: #white;
		height:20px;
		background: #000000 url('/images/toggler/togglerch.gif') center right no-repeat;
		border: none;
	}
	.toggler-opened {
		color:#white;
		height:20px;
		background: #000000 url('/images/toggler/togglero.gif') center right no-repeat;
		border: none;
	}
	.toggler-opened:hover {
		color: #white;
		height:20px;
		background: #000000 url('/images/toggler/toggleroh.gif') center right no-repeat;
		border: none;
	}


	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   border:none;
		margin:0px 0px 10px 0px;
	   padding:0px;
	}
	.toggler-c-opened {
		margin:0px 0px 0px 0px;
	   padding:0px;
	   background:transparent;
	   border:none;
	}


}


/* Print -------------------------------------------------------------------- */
@media print {


	.toggler-c { margin-bottom:5px; }
	.toggler { display: none; }


}

