/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

	div#myContent ul.partner {
		margin-top:1em;
	}

	div#myContent ul.partner li {
		background-image:none;
		padding-left:20px;
	}	

	ul.partner li {
		list-style-type: none;
		list-style-image:none;
	}
	
	/* Toggler - default style */
	.toggler {
		cursor:pointer;
		text-decoration: none;
		display: block;
	}
	.toggler-closed {
		color:#333;
		padding-left:20px;
		height:30px;
		line-height:30px;
		font-weight:bold;
		background: #efefef url('../images/togglerc.gif') center right no-repeat;
	}
	a.toggler em, a.toggler:link em, a.toggler:visited em { color:black; font-weight:normal; }
	.toggler-closed:hover {
		color: #000;
		padding-left:20px;
		height:30px;
		background: #D5D5D5 url('../images/togglerch.gif') center right no-repeat;
	}
	.toggler-opened {
		color:#333;
		padding-left:20px;
		height:30px;
		line-height:30px;
		font-weight:bold;
		background: #D5D5D5 url('../images/togglero.gif') center right no-repeat;
	}
	.toggler-opened:hover {
		color: #000;
		padding-left:20px;
		height:30px;
		background: #D5D5D5 url('../images/toggleroh.gif') center right no-repeat;
	}

	/* Container - default style */
	.toggler-c-closed {
	   background:transparent;
	   border:solid 1px #e3e3e3;
	   margin:-25px 0px 25px 0px;
	   padding:20px;
	}
	.toggler-c-opened {
	   margin:0px 0px 25px 0px;
	   padding:20px;
	   background:#fff;
	}

}

/* Print -------------------------------------------------------------------- */
@media print {
	.toggler-c { margin-bottom:25px; }
	.toggler { display: none; }
}

