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