﻿/* Panel */
.panel
{
	border: 1px solid #C3D9FF;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	margin: 0 5px 10px;
}

/* Panel header */
.panel-header
{
	cursor: pointer;
	background-color: #C3D9FF;
	position: relative;
	padding: 3px;
	white-space: no-wrap;
	overflow: hidden;
	height: 1em;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}
.panel-header:before
{
	display: inline-block;
	content: "";
	width: 10px; height: 10px;
	background: url(../images/sprites.png) no-repeat;
	background-position: -60px -20px;
	margin: 0 5px;
	zoom: 1; /* обычный layout fix для ИЕ6 */
	*display: inline; /* для ИЕ 6, 7 */
}
.opened .panel-header:before {background-position: -70px -30px;}

/* Panel content */
.panel-content {display: none;}
.opened .panel-content {display: block;}
.panel-content:after
{
	display: block;
	content: "";
	clear: both;
}
