.p_clear{
	width: 100%;
	height: 0;
	zoom: 1;
	clear: both;
}
.p_container{
	border: 1px solid #888;
	border-bottom: 1px solid #999;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;

	box-shadow: 0pt 0pt .25em #aaa;
	-moz-box-shadow: 0pt 0pt .25em #aaa;
	-webkit-box-shadow: 0pt 0pt .25em #aaa;
	position: relative;

	margin: .5em 0 35px;
}
* html .p_container, /* ie6 */
*+html .p_container { /* ie7 */
	height: 100%;
}
.p_itemContainer{
	overflow:hidden;
}
.p_title{
	font-size: 130%;
	padding: .5em;
	background: #f0f0f0;
	border-bottom: 1px solid #888;
}
.p_nav{
	text-align: center;
	border-bottom: 1px solid #ccc;
	position: relative;
	*position: static;

	min-height:1.45em;
	*min-height:1em;
	height:auto !important;
	height:1.45em;
	overflow: hidden;
}
.p_nav ul{
	list-style: none;
	display: inline;
	border-left: 1px solid #bbb;
	padding: 2px 0;
	*padding: 0;
}
.p_nav ul li{
	display:inline;
	list-style: none;
	margin: 0;
	padding: 2px 7px;
	border-right: 1px solid #bbb;
	cursor: pointer;
}
.p_nav ul li:hover{
	background: #ddd;
}
.p_nav ul li.p_active{
	background: #ccc;
}
.p_nav .p_numItems{
	position: absolute;
	padding-right: 1em;
	right: 0;
}
.p_showAll{
	zoom:1;
	position: absolute;
	font-size: 10px;
	font-weight: bold;
	padding: 1px 8px 0 15px;
	right: 5px;
	background: #ddd url(arrow-down_grey.gif) 4px center no-repeat;
	color: #000;

	border: 1px solid #888;
	border-top:none;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;

	border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;

	box-shadow: 0px 1px 3px #aaa;
	-moz-box-shadow: 0px 1px 3px #aaa;
	-webkit-box-shadow: 0px 1px 3px #aaa;

	cursor: pointer;
}
.p_showAll:hover{
	background-color: #ccc;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.p_showAll.collapse{
	background: #ddd url(arrow-up_grey.gif) 4px center no-repeat;
}
.p_prevBtn{
	zoom:1;
	width: 25px;
	height: 25px;
	zoom:1;
	background: url(icon-prev.gif) top left no-repeat;
	position: absolute;
	top: 50%;
	left: -5px;
	cursor: pointer;
	display: none; /* hidden by default since we start on page 1 */
}
.p_prevBtn:hover{
	left:-6px;

	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;

}
.p_nextBtn{
	zoom:1;
	width: 25px;
	height: 25px;
	zoom:1;
	background: url(icon-next.gif) top left no-repeat;
	position: absolute;
	top: 50%;
	right: -5px;
	cursor: pointer;
}
.p_nextBtn:hover{
	right: -6px;

	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
}