/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.container {
		background-image:url(/Utilty/img/cotan_2.png);
		background-repeat:repeat-x;
		border:1px solid #ccc;
		float:left;
		margin-top:10px;
		width:100%;
	}
	.toggler {
		cursor:pointer;
		text-decoration: none;
		font-weight:bold;
		line-height:23px;
		display: block;
		float:left;
		width:460px;
	}
	.toggler .w950{
		width:950px;
	}
	.toggler-closed {
		color:#006699;
		padding-left:10px;
		background:url('/Utilty/img/a+.gif') top right no-repeat ;
		float:left;
	}
	.toggler-closed:hover {
		color: #9D5AD6;
		padding-left:10px;
		background:url('/Utilty/img/a+.gif') bottom right no-repeat;
		text-decoration: none;
		float:left;
	}
	.toggler-opened {
		color:#333;
		padding-left:10px;
		background:url('/Utilty/img/a-.gif') top right no-repeat;
		float:left;
	}
	.toggler-opened:hover {
		color: #333;
		padding-left:10px;
		background:url('/Utilty/img/a-.gif') bottom right no-repeat;
		text-decoration: none;
		float:left;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}