/* Оформление Array */
pre.p
{
	font-size: 13px;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
	border-radius: 2px;
	line-height: 20px;
	background-color: #f8f8f8;
	padding: 3px;
	overflow: hidden;
}
pre.p .label
{
	color: #555555;
	background: #cff5ca;
}
pre.p .folder
{
	display: inline-block;
	width: 15px;
	height: 13px;
	text-align: center;
	line-height: 12px;
	vertical-align: middle;
	border: solid 1px #00b8cc;
	color: gray;
	cursor: pointer;
	border-radius: 2px;
}
pre.p .array,
pre.p .object {
	display: none;
	padding: 0 0 0 30px;
}
pre.p .placeholder {
	border: solid 1px #ddd;
	font-size: 11px;
	padding: 0 3px;
	border-radius: 3px;
	background-color: #fbf5f2;
	color: gray;
}
pre.p .resource {
	color: #ff8000;
}
pre.p .null,
pre.p .boolean {
	color: #00f;
}
pre.p .integer,
pre.p .float {
	color: #ff3452;
}
pre.p .string {
	color: #0b292f;
}
/* Оформление Array */