/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	/* Toggler - default style */
	a.toggler {}
	a.toggler:hover {}
	a.toggler:active { outline:none; border:none;}
	
	.toggler {
		margin:0px 0px 25px 0px;
		padding: 0px;
		cursor:pointer;
		text-decoration: none;
		font-size: 12px;
		font-weight:bold;
		line-height:12px;
		font-family:Arial, Helvetica, sans-serif;
		color:#525759;
		display: block;
	}
	.toggler-closed {
		color:#525759;
		padding:0px;
		height:20px;
		margin: 0px 0px 0px 0px;
		background: transparent url('../images/togglerc.gif') top right no-repeat;
	}
	.toggler-closed:hover {
		color: #525759;
		padding:0px;
		height:20px;
		margin: 0px 0px 0px 0px;
		background: transparent url('../images/togglerch.gif') top right no-repeat;
	}
	.toggler-opened {
		color:#525759;
		padding:0px;
		height:20px;
		background: transparent url('../images/togglero.gif') top right no-repeat;
	}
	.toggler-opened:hover {
		color: #525759;
		padding:0px;
		height:20px;
		background: transparent url('../images/toggleroh.gif') top right no-repeat;
	}

	/* Container - default style */
	.toggler-c {
	   background:transparent;
	}
	.toggler-c-closed {
	   background:transparent;
		margin:0px 0px 0px 0px;
	   padding:0px;
	}
	.toggler-c-opened {
		margin:-25px 0px 0px 0px;
	   padding:0px;
	   background:transparent;
	   position: static;
	}
	
	div.toggler-c-opened table { position:static; }

}

/* Print -------------------------------------------------------------------- */
@media print {

	.toggler-c { margin-bottom:20px; }
	.toggler { display: none; }

}

