/*
 * These classes style the PcmsControlPanel.
 *
 */

HTML
{
	/* force placing of the vertical scrollbar in firefox */
	overflow-y: scroll;
}


/* These styles float the control panel to the right but positioned absolutely so that the height of the panel does not affect clearing elements on the page. */
#EditControlPanelPositioningDivOuter {
	float: right; 
	position: relative;
	z-index: 999;
}
#EditControlPanelPositioningDivInner {
	position: absolute;
	right: 0px;
}


.PcmsControlPanel
{
	float: right;
	width: 240px;
	font-family: Verdana, Arial, sans-serif;
	font-style: normal;
	font-size: 11px;
	padding: 5px;
	border: solid 1px #000000;
	background-color: #EEEEEE;
	text-align: left;
	color: #000;
}
.PcmsControlPanel A
{
	font-weight: normal;
	text-decoration: none;
	color: #0000FF;
}
.PcmsControlPanel A:hover
{
	color: #FF0000;
}
.PcmsControlPanel P
{
	margin-top: 8px;
	margin-bottom: 8px;
}
.PcmsControlPanelLive
{
	border-top: dashed 1px #999999;
	text-align: center;
	font-weight: normal;
	padding-bottom: 10px;
}
.PcmsControlPanelEdit
{
	border-top: solid 6px #FF0000;
}
.PcmsControlPanelActions
{
	margin-top: 10px;
	border-top: solid 1px black;
	border-bottom: solid 1px black;
	margin-bottom: 10px;
}
.PcmsControlPanel .EditNavigation
{
	margin: 10px 0px 0px 0px;
	border: solid 1px #CCCCCC;
	background-color: white;
	padding: 4px;
	height: 120px;
	overflow: scroll;
}
.PcmsControlPanel .EditNavigation A
{
	font-weight: normal;
	display: block;
	padding: 2px;
}
.PcmsControlPanel .EditNavigation A:hover
{
	background-color: #EEEEEE;
}

.PcmsControlPanel .advancedproperty
{
	display: none;
}


/*
 * Styles for the new PcmsEditSitemap component.
 * This provides a full tree view of the site with insert slots for creating new pages or moving the current page.
 */

div#PcmsEditSitemapRadios {
	padding-bottom: 4px;
}
div#PcmsEditSitemapSpaceholder {
	height: 100px;
}
div#PcmsEditSitemap {
	border: solid 1px black; 
	background-color: #eee;
	height: 100px; 
	overflow: auto;
	position: absolute;
	width: 238px;
}
div#PcmsEditSitemap:hover {
	/* height: 440px; */
	background-color: #fff;
}
div#PcmsEditSitemap ul {
	border: dotted 1px #999;
	border-right: 0;
	margin: 0 0 0 20px;
	padding: 0;
}
div#PcmsEditSitemap ul.home {
	border: 0; 
	margin: 0; 
	padding: 0;
}
div#PcmsEditSitemap li {
	list-style: none;
	font-size: 11px;
	line-height: 1.3em;
	padding: 0;
	margin: 0;
}
div#PcmsEditSitemap li a {
	display: inline-block;
}
div#PcmsEditSitemap li a {
	color: #000;
	text-decoration: none;
	display: block;
	padding-left: 6px;
}
div#PcmsEditSitemap li a.currentnode
{
	background-color: #333;
	color: #fff;
}
div#PcmsEditSitemap li a:hover {
	background-color: #666;
	color: #fff;
}
div#PcmsEditSitemap li.ins {
	list-style: none;
	font-size: 6px;
	line-height: 1.2em;
}
div#PcmsEditSitemap.browse .ins {
	display: none;
}
div#PcmsEditSitemap li.ins a {
	background-color: #eee;
	color: #eee;
	text-decoration: none;
}
div#PcmsEditSitemap.move li.ins a:hover {
	background-color: #c00;
}
div#PcmsEditSitemap.new li.ins a:hover {
	background-color: #0c0;
}

