﻿/* AccordionView Styles */
.AccordionHeader
{
    border: 1px solid #2F4F4F;
    color: white;
    background-color: #2E4d7B;
	font-family: Arial, Sans-Serif;
	font-size: 12px;
	font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.AccordionContent
{
	font-family: Arial, Sans-Serif;
	font-size: 12px;
    background-color: #D3DEEF;
    border: 1px dashed #2F4F4F;
    border-top: none;
    padding: 5px;
    padding-top: 10px;
}

.AccordionLink
{
	background-color: #D3DEEF;
    color: white;
}

/* AdminView Styles */
.TreeViewParentNodeStyle
{
	font-style: normal;
}

.TreeViewHoverNodeStyle
{
	text-decoration: underline;
	color: #6666AA;	
}

.TreeViewSelectedNodeStyle
{
	background-color: #B5B5B5;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}

.TreeViewNodeStyle
{
	font-family: Tahoma;
	font-size: 8pt;
	color: Black;
}

