﻿/* class set for list rounded box, may also containcontrol a list control */
.p						/* applied to the table of the box */
{
	color:#5B2710;
	background-color: #FFFEF4;
	margin: 0px 0px 5px 0px;
}
table.p
{
	width:100%;
}
.p .list
{ 
 width:100%;			/* applied to table of listctrl */
}
.p .item				/* applied to row of listctrl, but does not work in firefox! */
{
 vertical-align:top;
 padding: 5px 2px 5px 2px;
}
.p .over				/* when active over the row */
{
 vertical-align:top;
 padding: 5px 2px 5px 2px;
 background-color:#99CCFF;
 cursor:pointer;
}
.p .archived			/* applied to archived cells */
{
	background-color:#eeeeee;
}
.p .header
{
 font-weight:bold;
 padding-bottom:5px;
}
.p .separator
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-x;
	background-position:center center;
	height:1px;
}
.p .vseparator
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-y;
	background-position:center center;
	width:11px;
}
.p .tl
{
	background-image:url(../images/ptl.gif);
	background-repeat:no-repeat;
	background-position:top left; 
}
.p .tr
{
	background-image:url(../images/ptr.gif);
	background-repeat:no-repeat;
	background-position:top right; 
}
.p .bl
{
	background-image:url(../images/pbl.gif);
	background-repeat:no-repeat;
	background-position:bottom left; 
}
.p .br
{
	background-image:url(../images/pbr.gif);
	background-repeat:no-repeat;
	background-position:bottom right; 
}
.p .t
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-x;
	background-position:top;
	height:10px;
	width:100%
}
.p .b
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-x;
	background-position:bottom;
	height:10px;
	width:100%
}
.p .l
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-y;
	background-position:left;
	padding-left:10px;
}
.p .r
{
	background-image:url(../images/p.gif);
	background-repeat:repeat-y;
	background-position:right;
	padding-right:10px;
}
