﻿/*-------------------------------------------------
    Text Input
-------------------------------------------------*/
.TextBoxA
{
	border: solid 1px #e9e9e9;
	color: #333333; 
	font-family: Verdana; 
	font-size: 11px;
	height: 16px;
}

.TextBoxSilver
{
	border: solid 1px #e9e9e9;
	color: Silver; 
	font-family: Verdana; 
	font-size: 11px;
	height: 16px;
}

.TextBoxLarge
{
	border: solid 1px #e9e9e9;
	color: #333333; 
	font-family: Verdana; 
	font-size: 14px;
	height: 20px;
}
.TextBoxSilverLarge
{
	border: solid 1px #e9e9e9;
	color: Silver; 
	font-family: Verdana; 
	font-size: 14px;
	height: 20px;
}

.DropDownListA
{
	border: solid 1px #e9e9e9;
	color: #333333;
	font-family: Verdana; 
	font-size: 11px;
}

/*-------------------------------------------------
    Buttons
-------------------------------------------------*/
.ButtonBlue
{
	border: solid 1px White;
	background-color: #3b5998;
	color: White; 
	font-family: Verdana; 
	font-size: 11px;
}
.ButtonBlueBold
{
	border: solid 1px White;
	background-color: #3b5998;
	font-weight:bold;
	color: White; 
	font-family: Verdana; 
	font-size: 11px;
	width: 20px;
}

.ButtonBlueLink
{
	border: solid 1px White;
	background-color: #3b5998;
	color: White; 
	font-family: Verdana; 
	font-size: 11px;
	padding: 2px 5px 2px 5px;
	height: 15px;
	text-decoration: none;
    cursor: default;
}
.ButtonBlueLink:Hover
{
    cursor: default;
    text-decoration: none;
}

.ButtonGreen
{
	border: solid 1px #68824c;
	background-color: #a7cb81;
	color: White; 
	font-family: Verdana; 
	font-size: 11px;
}

.TransparentButton
{
    border: 0;
    background-color: Transparent;
    color: #333333;
	font-family: Verdana; 
	font-size: 11px;
}

/*-------------------------------------------------
    PopUps
-------------------------------------------------*/
.PopupPanel
{
    position: absolute;
    visibility: hidden;
	width: 200px;
	background-color: #96b7db;
	padding: 10px 10px 10px 10px;
	border: solid 1px black;
}

/*-------------------------------------------------
    Tutorial - Accordion panes
-------------------------------------------------*/
.Accordion
{
    padding-left: 15px;
    background-image: url('../Images/Icons/ArrowRight.gif');
    background-repeat: no-repeat;
}
.SelectedAccordion
{
    padding-left: 15px;
    background-image: url('../Images/Icons/ArrowDown.gif');
    background-repeat: no-repeat;
}

.AccordionRight
{
    padding-right: 15px;
    background-image: url('../Images/Icons/ExpandMore.gif');
    background-repeat: no-repeat;
    background-position: right;
}
.SelectedAccordionRight
{
    padding-right: 15px;
    background-image: url('../Images/Icons/ExpandLess.gif');
    background-repeat: no-repeat;
    background-position: right;
}