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