﻿/*
AjaxControlToolkit:
Tabs Css classes

    * .ajax__tab_header: A container element that wraps all of the tabs at the top of the TabContainer. Child CSS classes:.ajax__tab_outer.
    * .ajax__tab_outer: An outer element of a tab, often used to set the left-side background image of the tab.Child CSS classes: .ajax__tab_inner.
    * .ajax__tab_inner: An inner element of a tab, often used to set the right-side image of the tab. Child CSS classes:.ajax__tab_tab.
    * .ajax__tab_tab: An element of the tab that contains the text content. Child CSS classes:none.
    * .ajax__tab_body: A container element that wraps the area where a TabPanel is displayed. Child CSS classes: none.
    * .ajax__tab_hover . This is applied to a tab when the mouse is hovering over. Child CSS classes:.ajax__tab_outer.
    * .ajax__tab_active: This is applied to a tab when it is the currently selected tab. Child CSS classes:.ajax__tab_outer.
*/

.WizardPane /* Also .ajax__tab_container */
{
	position: relative; /* Create an offset container for .ajax__tab_header */
	height:100%;
}

.WizardPane .ajax__tab_header
{
	border-right: solid 2px #6692CD;
	padding-right: 4px;
	left: 0;
	position:absolute;
	height:100%;
	width:145px;
}

.WizardPane .ajax__tab_header span
{
	display:block;
	text-align:left;
}

.WizardPane .ajax__tab_outer
{
}

.WizardPane .ajax__tab_inner
{
}

.WizardPane .ajax__tab_tab
{
	display:block;

	/* Copied from .PopupLeftNav (CSS inheritence would be cool, eh?) */
	padding-left: 8px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.WizardPane .ajax__tab_tab:hover
{
	/* Copied from .PopupLeftNav:hover (CSS inheritence would be cool, eh?) */
	cursor:pointer;
	color: Blue;
}

.WizardPane .ajax__tab_hover
{
}

.WizardPane .ajax__tab_active
{
}

.WizardPane .ajax__tab_active .ajax__tab_tab
{
	/* Copied from .PopupLeftNavSelected (CSS inheritence would be cool, eh?) */
	padding-left: 8px;
	background-color: #E6E6DF;
	cursor:default;
	padding-top: 2px;
	padding-bottom: 2px;
}

.WizardPane .ajax__tab_body
{
	text-align:left;
	margin-left:161px;
	height:100%;
}

.WizardPane .ajax__tab_panel
{
	height:100%;
}

.WizardStepSection {
    width:135px;
    margin-left:-8px;
    margin-top:-3px;
    margin-bottom: 5px;
    padding:4px;
    background-color:lightgrey;
    cursor: default;
    border: 1px solid grey;
    font-weight: bold;
    color: black;
}

.WizardStepBlank {
    width:135px;
    background-color:white;
    cursor: default;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: -1px;
    margin-left: -8px;
    margin-top: 3px;
    height: 3px;
}