/*
'Status  	* Freeware
'Author  	* Tobias Hinnerup (hinnerup@hinnerup.net)
'Web     	* http://hinnerup.adsl.dk/sources/Panel.asp
'Dependencies	* js/panels.js + asp/panels.asp
'Version 	* 1.0
'Date    	* 2001-03-25
'Version 	* 2.0
'Date		* 2001-03-27 	PanelLabelSpace background set to transparent
'
'			     	Split class LabelContainer in -Top, -Left & -Right
'
'				Added selectors for PanelLabelSpace, PanelLabel
'				and PanelActiveLabel inside LabelContainerTop, -Left & -Right
'
'			     	Split class PanelContainer in -Top, -Left & -Right
'				Added selectors for Panel inside
'				PanelContainerTop, -Left & -Right
'
'Version 	* 2.01
'Date		* 2001-04-08 	PanelLabelSpace cursor set to default

*/

.PanelActiveLabel a
{
	text-decoration:  none;
	color:		black;
}

.PanelLabel a
{
	text-decoration:  none;
	color:		black;
}

/* Labels in one container, panels in another */
.PanelContainer
{
	margin: 0px;
	padding: 0px;
	border: none;
}

.PanelContainerTop
{
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

.PanelContainerLeft
{
	text-align: left;
	vertical-align: top;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

.PanelContainerRight
{
	text-align: right;
	vertical-align: top;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

.LabelContainerTop
{
	width: 100%;
	border: none;
	margin: 0px;
	padding: 0px;
}

.LabelContainerLeft
{
	height: 100%;
	vertical-align: top;
	border: none;
	margin: 0px;
	padding: 0px;
}
.LabelContainerRight
{
	height: 100%;
	vertical-align: top;
	border: none;
	margin: 0px;
	padding: 0px;
}

/* Panels and labels are by default not selected/background-style */
.PanelLabel
{
	border-style: inset;
	border-width: 2px;
	cursor: hand;
	color: black;
	background-color: #BDD7F7;
	padding: 0.3em;
}

/* Highlight and bring the active label to the front */
.PanelActiveLabel
{
	cursor: default;
	color: white;
	background-color: #5A9CC6;
	border-style: outset;
	border-width: 2px;
	padding: 0.3em;
}

.LabelContainerTop .PanelLabel
{
	border-bottom: none;
	margin-bottom: 0px;
}

.LabelContainerLeft .PanelLabel
{
	border-right: none;
	margin-right: 0px;
}

.LabelContainerRight .PanelLabel
{
	border-left: none;
	margin-left: 0px;
}

.LabelContainerTop .PanelActiveLabel
{
	border-bottom: none;
	margin-bottom: 0px;
}

.LabelContainerLeft .PanelActiveLabel
{
	border-right: none;
	margin-right: 0px;
}

.LabelContainerRight .PanelActiveLabel
{
	border-left: none;
	margin-left: 0px;
}

/* Seperate labels and add upper/left/right border to panel */
.PanelLabelSpace
{
	color: black;
	background-color: transparent;
	border: none;
	margin: 0px;
	padding: 0px;
	cursor: auto;
}

.LabelContainerTop .PanelLabelSpace
{
	border-bottom-style: inset;
	border-bottom-width: 2px;
}

.LabelContainerLeft .PanelLabelSpace
{
	font-size: xx-small;
	border-right-style: inset;
	border-right-width: 2px;
}

.LabelContainerRight .PanelLabelSpace
{
	font-size: xx-small;
	border-left-style: inset;
	border-left-width: 2px;
}

/* Panels and labels are by default not selected/background-style */
.Panel
{
	border-style: outset;
	border-width: 2px;
	height: 100%;
	width: 100%;
	text-align: left;
	color: black;
	background-color: #5A9CC6;
	margin: 0px;
	padding: 0.5cm;
	vertical-align: top;
}

.PanelContainerTop .Panel
{
	border-top: none;
}

.PanelContainerLeft .Panel
{
	border-top-style: outset;
	border-top-width: 2px;
	border-left: none;
}

.PanelContainerRight .Panel
{
	border-top-style: outset;
	border-top-width: 2px;
	border-right: none;
}
