/**
 * @package Inline Spoilers
 */
 
div.spoiler-wrap {
	/*
       background-color: #F0F0F0;
	border-color: #C3CBD1;
	border-style: solid;
	border-width: 1px 1px 1px 2px;
        border-radius:5px;
    clear: both;
    display:block;
    margin: 6px auto;
    margin-bottom:15px;
    padding: 0;
    width: 95%;
    */
    position: relative;
    top: -12px;
}
	div.spoiler-head {
		/*background: url(../images/collapsed.gif) no-repeat right bottom;*/
		color: #600000;
		cursor: pointer;
		display: block;
		/*font-weight: bold;*/
		line-height: 1.1em;
		margin-left: 2px;
		padding: 0 6px 0 14px;
		text-align: center;
	}
		div.spoiler-head.expanded {
			/*background: url(../images/expanded.gif) no-repeat left center;*/
		}
	div.spoiler-body {
		background: #F5F5F5;
		border-top:1px solid #C3CBD1;
		padding: 2px 6px;
	}
