/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */


/* Screen ------------------------------------------------------------------- */


@media projection, screen {


	/* Toggler - default style */
	.toggler {
		color:white;
	    margin:3px 0 0px 0;
		cursor:pointer;
		text-decoration: none;
		font-size: 11px;
		xfont-weight:bold;
		xline-height:20px;
		display: block;
		padding:2px;
	}
	.toggler-closed {
		color:#white;
		xheight:20px;
		background: #ffffff url('/images/toggler/togglerc.gif') center right no-repeat;
		border: none;
	}
	.toggler-closed:hover {
		color: #white;
		xheight:20px;
		background: #f8f4f5 url('/images/toggler/togglerch.gif') center right no-repeat;
		border: none;
	}
	.toggler-opened {
		color:#white;
		xheight:20px;
		background: #00325C url('/images/toggler/togglero.gif') center right no-repeat;
		border: none;
	}
	.toggler-opened:hover {
		color: #white;
		xheight:20px;
		background: #00325C url('/images/toggler/toggleroh.gif') center right no-repeat;
		border: none;
	}
	.toggler-opened:hover, 
	.toggler-opened:link, 
	.toggler-opened:active, 
	.toggler-opened:visited { color:#FFFFFF; font-size:13px}


	/* Container - default style */
	.toggler-c {
	}
	.toggler-c-closed {
	   background:transparent;
	   border:none;
		margin:0px 0px 10px 0px;
	   padding:0px;
	}
	.toggler-c-opened {
		margin:0px 0px 0px 0px;
	   padding:0px;
	   background:transparent;
	   border:none;
	}
	h2 { display:none; visibility:hidden;}
}


/* Print -------------------------------------------------------------------- */
@media print {


	.toggler-c { margin-bottom:5px; }
	.toggler { display: none; }
	h2 { margin:0px 0px 5px 0px; font-size:14px;}
}

