/* "w" prefix stands for widget */



/* panel headers, javascript should implement panel opening / closing and class swapping */

div.w_headerOpen, .w_headerClosed, .w_headerOver, .w_headerLocked
{
	font-weight: bold;
	padding: 4px 4px 4px 15px;
	/* color: #194e84; */
	border-bottom: 1px solid #c3c8cb;
	border-top: 1px solid #fefefe;
	cursor: pointer;
}
div.w_headerOpen
{
	background:  url(../../i-p/close2.gif) no-repeat 4px center;
	/* color: #ffffff; */
	border-bottom: 1px solid #a1b4cd;
	/* border-top: 1px solid #5e83a9; */
}
div.w_headerOver
{
	background: url(../../i-p/open2.gif) no-repeat 4px center;
	/* color: #5e83a9; */
}
div.w_headerLocked
{
	background-color: #eaeeee;
	/* color: #5e83a9; */
	cursor: default;
}
div.w_headerClosed
{
	background: #eaeeee url(../../i-p/open2.gif) no-repeat 4px center;
}

/* panel content, simple */

.w_content
{
	border-bottom: 1px solid #a1b4cd;
}


/* different ways to hide things */

/* rendered offscreen */
.posHide
{
	position: absolute;
	top: -5000px;
	left: -5000px;
}

/* ignored completely */
.disHide
{
	display: none;
}

/* takes up canvas space but invisible */
.visHide
{
	visibility: hidden;
}



/* every css file needs a clearer */

.clear
{
	clear: both;
}


/* for replacing via dhtml */

div.dhtml
{
	display: inline;
}
