/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	.toggler {
	   	cursor:pointer;
		text-decoration: none;
		text-align:left;
		color:#000000;
		font-size: 11px;
        font:bold;
		line-height:23px;
		width:155px;
		display: block;
	}
	.toggler-closed {
    	background-color:#000000;

		width:155px;
		background:url('img/bgt02.jpg') left no-repeat;

	}
	.toggler-closed:hover {

		color:#000000;
		background: url('img/bgt02.jpg')  left no-repeat;
		width:155px;

	}
	.toggler-opened {
		width:155px;

		color:#000000;
		background:url('img/bgt01.jpg') left no-repeat;
		border: solid 1px white;
	}
	.toggler-opened:hover {

		color:#000000;
		background:url('img/bgt01.jpg') left no-repeat;
		width:155px;
	}

	/* Container - default style */
	.toggler-c {
	color:#000000;
	}
	.toggler-c-closed {
    	color:#000000;
		width:155px;
	  /* border-left:solid 1px #E70304; */
	}
	.toggler-c-opened {
      /*border-left:solid 1px #E70304; */
    	color:#000000;
  		width:155px;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }

}
