/*
	Gaggle's Theme
*/

@import url("form/Button.css");
@import url("Menu.css");
/* @import url("Editor.css"); */
@import url("../../icons/editorIcons.css"); /* sprite for editor icons to be used by all themes */

.gaggle .dojoButton {
	margin: 0px;
	padding: 0px;
}

.dj_safari .gaggle .dijitPopup {
	/* -webkit-border-radius: 5px; */
	-webkit-box-shadow: 0px 3px 7px #adadad;
}

/*
 * Control opacity of popups
 */
.gaggle .dijitPopup div,
.gaggle .dijitPopup table {
	opacity: 0.95;
}

.gaggle .dijitToolbar {
/*	border-bottom: 1px solid #9b9b9b; */
	background:#e9e9e9 url("images/buttonEnabled.png") repeat-x top;
/*	background: #eeeafe url("/gaggle/images/beta/tbBack.gif") repeat-x top; */
}

.gaggle .dijitToolbar * {
	padding: 0px;
	margin: 0px;
	#margin-top: -1px; /*IE*/
}

.dj_ie .gaggle .dijitToolbar {
	padding-bottom: 1px;
}

.gaggle .dijitToolbar .dijitButtonNode {
	padding: 0px;
	margin: 0px;
	text-align: left;
	word-wrap: none;
	border: 1px solid transparent;
	background: none;
}
.gaggle .dijitToolbar .dijitToggleButtonChecked .dijitButtonNode {
	background-color:#C1D2EE;
	border:1px solid #316AC5;
}
.gaggle .dijitToolbar .dijitToggleButtonCheckedHover .dijitButtonContents {
	border-color: #366dba;
	background-color:transparent;
}
.dj_ie6 .gaggle .dijitToolbar .dijitButtonNode {
	/* workaround no transparent border support in IE6*/
	border-color: #e9e9e9;
}

.gaggle .dijitToolbar .dijitButtonHover .dijitButtonNode,
.gaggle .dijitToolbar .dijitToggleButtonHover .dijitButtonNode,
.gaggle .dijitToolbar .dijitDropDownButtonHover .dijitButtonNode {
	/* TODO: change this from Hover to Selected so that button is still highlighted while drop down is being used */
	border-color: #366dba;
}
.dijitToolbarSeparator {
	background: url('images/editor.gif');
	height: 18px;
	width: 5px;
	padding: 0px 1px 0px 1px;
	margin: 0px;
}

.gaggle .dijitToolbar .dijitToolbarSeparator {
	background: url('images/editor.gif');
}

/* ComboBox-icon-specific */
.gaggle .dijitComboBox .dijitDownArrowButtonChar {
	/* visibility:hidden;  */
	display:none; 
}

/*****
		dijit.form.NumberSpinner
		override for the shorter stacked buttons
 *****/

.gaggle .dijitSpinner .dijitButtonNode {
	padding: 0 .4em 0 .4em;
}


/****
		dijit.form.TextBox
		dijit.form.ValidationTextBox
		dijit.form.SerializableTextBox
		dijit.form.RangeBoundTextBox
		dijit.form.NumberTextBox
		dijit.form.CurrencyTextBox
		dijit.form.NumberSpinner
		dijit.form.ComboBox (partial)
 ****/

.gaggle .dijitComboBox {
	/* put margin on the outer element of the autocompleter rather than the input */
	margin:.0em .1em .2em .1em;
}

.gaggle .dijitComboBoxFocused .dijitComboBoxInput {
	/* input field when focused (eg: typing affects it) */
	border-color:#366dba;
	border-style:inset;
}

.gaggle .dijitComboBoxDisabled .dijitComboBoxInput {
	/* input field when disabled (also set above) */
}

.gaggle .dijitComboBoxHover .dijitComboBoxInput  {
	/* input field when hovered over */
	border-color:#366dba;
}

.gaggle .dijitComboBoxActive .dijitComboBoxInput {
	/* input field when mouse is down (?) */
}

.gaggle .dijitComboBox {
	background-color: white;
}

/* Dojo Input Field */

.gaggle .dijitInputFieldValidationNormal {
	
}

.gaggle .dijitInputFieldValidationError {
	border:1px solid #f3d118;
	background-color::#f9f7ba;
	background-image:none; 
}

.gaggle .dijitInputFieldFocused { 
	border:1px solid #666; 
}

.gaggle .dijitErrorFocused {
	background-color:#ff6;
	background-image:none;
}

.dj_ie6 .gaggle .dijitErrorFocused INPUT {
	
	background-color:#ff6 !important;
}

.gaggle .dijitInputFieldValidationError:hover,
.gaggle .dijitInputFieldValidationError:focus {
	background-color:#ff6;
	background-image:none;	
}

.gaggle .dijitComboBoxError {
	border-color:#f3d118;
	background-color:#f9f7ba;
}

.dj_ie6 .gaggle .dijitComboBoxError {
	border-color:#f3d118;
	background-color:#f9f7ba;
}
/*
 *  CheckBox and Radio Widgets,
 *	and the CSS to embed a checkbox or radio icon inside a ToggleButton.
 *
 *	Order of images in the default sprite (from L to R, checkbox and radio in same image):
 *		checkbox	normal 	 - checked
 *							 - unchecked
 *					disabled - checked
 *							 - unchecked
 *					hover 	 - checked
 *							 - unchecked
 *
 *		radio		normal 	 - checked
 *							 - unchecked
 *					disabled - checked
 *							 - unchecked
 *					hover 	 - checked
 *							 - unchecked
*/

.gaggle .dijitToggleButton .dijitCheckBox,
.gaggle .dijitToggleButton .dijitRadio,
.gaggle .dijitToggleButton .dijitCheckBoxIcon,
.gaggle .dijitToggleButton .dijitRadioIcon {
	background-image: url('images/checkmarkNoBorder.gif');
}

.gaggle .dijitCheckBox,
.gaggle .dijitRadio,
.gaggle .dijitCheckBoxIcon,		/* inside a toggle button */
.gaggle .dijitRadioIcon	{		/* inside a toggle button */
	background-image: url('images/checkmark.gif'); /* checkbox sprite image */
	background-repeat: no-repeat; 
	width: 16px;
	height: 16px;
	overflow:hidden; 
	margin:0; padding:0; 
}


.gaggle .dijitCheckBox,
.gaggle .dijitToggleButton .dijitCheckBoxIcon {
	/* unchecked */
	background-position: -16px 0px; 
}
 
.gaggle .dijitCheckBoxChecked,
.gaggle .dijitToggleButtonChecked .dijitCheckBoxIcon {
	/* checked */
	background-position: 0px 0px;
}

.gaggle .dijitCheckBoxDisabled {
	/* disabled */
	background-position: -48px 0px;
}

.gaggle .dijitCheckBoxCheckedDisabled {
	/* disabled but checked */
	background-position: -32px 0px;
}

.gaggle .dijitCheckBoxHover,
.gaggle .dijitCheckBoxFocused {
	/* hovering over an unchecked enabled checkbox */
	background-position: -80px 0px;
}

.gaggle .dijitCheckBoxCheckedHover,
		.gaggle .dijitCheckBoxCheckedFocused {
	/* hovering over a checked enabled checkbox */
	background-position: -64px 0px;
}

.gaggle .dijitRadio,
.gaggle .dijitToggleButton .dijitRadioIcon {
	/* unselected */
	background-position: -112px -1px;
}

.gaggle .dijitRadioChecked,
.gaggle .dijitToggleButtonChecked .dijitRadioIcon {
	/* selected */
	background-position: -96px -1px;
}

.gaggle .dijitRadioCheckedDisabled {
	/* selected but disabled */
	background-position: -128px -1px;
}

.gaggle .dijitRadioDisabled {
	/* unselected and disabled */
	background-position: -144px -1px;
}

.gaggle .dijitRadioHover,
.gaggle .dijitRadioFocused {
	/* hovering over an unselected enabled radio button */
	background-position: -176px -1px;
}

.gaggle .dijitRadioCheckedHover,
.gaggle .dijitRadioCheckedFocused {
	/* hovering over a selected enabled radio button */
	background-position: -160px -1px;
}

/* TitlePane */

.gaggle .dijitTitlePane .dijitTitlePaneTitle {
	background: #cccccc;
	background:#fafafa url("images/titleBarBg.gif") repeat-x bottom left;
	border:1px solid #bfbfbf;
	padding:4px 4px 2px 4px;
	cursor: pointer;
}

/* TODO: merge these, and all other icons to a series of background-image:() and background-position: -16*n px styles */
.gaggle .dijitTitlePane .dijitArrowNode {
	width:16px;
	height:16px;
}
.gaggle .dijitTitlePane .dijitClosed .dijitArrowNode {
	background:url('images/arrowRight.png') no-repeat center center; 
}
.dj_ie6 .gaggle .dijitTitlePane .dijitClosed .dijitArrowNode {
	background-image:url('images/arrowRight.gif');
}
.gaggle .dijitTitlePane .dijitOpen .dijitArrowNode {
	background:url('images/arrowDown.png') no-repeat center center; 
}
.dj_ie6 .gaggle .dijitTitlePane .dijitOpen .dijitArrowNode {
	background-image:url('images/arrowDown.gif'); 
}
.gaggle .dijitTitlePane .dijitArrowNodeInner { 
	visibility:hidden;
}

.gaggle .dijitTitlePaneTitle .dijitOpenCloseArrowOuter {
	margin-right:5px;
}

.gaggle .dijitOpen .dijitTitlePaneTitle .dijitOpenCloseArrowOuter {
	position:relative;
	top:2px;
}

.gaggle .dijitTitlePaneContentOuter {
	background: #ffffff;
	border:1px solid #bfbfbf;
	border-top: 1px solid #cddde9;	/* w/out this, an <h1> on the top line causes a gap between the .content and .label */
}
.gaggle .dijitTitlePaneContentInner {
	padding:10px;
}
/* force hasLayout to ensure borders etc, show up */
.dj_ie6 .gaggle .dijitTitlePaneContentOuter, 
.dj_ie6 .gaggle .dijitTitlePane .dijitTitlePaneTitle {
	zoom: 1; 
}
.gaggle .dijitClickableRegion {
	background-color : #ffc !important;
}

/* Tabs */

.gaggle .dijitTabPaneWrapper {
	/*
	overflow: hidden;
	*/
	background:#fff; 
	/* border:1px solid #ccc; This is causing a line across the active tab in dojo 1.3.1 */
}

.gaggle .dijitTab {
	line-height:normal;
	margin-right:5px;	/* space between one tab and the next in top/bottom mode */
	padding:0px;
	border:1px solid #ccc;
	background:#e2e2e2 url("images/tabEnabled.png") repeat-x;
}

.gaggle .dijitAlignLeft .dijitTab,
.gaggle .dijitAlignRight .dijitTab {
	margin-right:0px;
	margin-bottom:5px;	/* space between one tab and the next in left/right mode */
}

.gaggle .dijitTabInnerDiv {
	padding:6px 10px 4px 10px;
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
}

.gaggle .dijitTabHover,
.gaggle .dijitTabCloseButtonHover {
	color: #243C5F;
	border-top-color:#92a0b3;
	border-left-color:#92a0b3;
	border-right-color:#92a0b3;
}

.dj_ie6 .gaggle .dijitTabHover,
.dj_ie6 .gaggle .dijitTabCloseButtonHover {
	background-image: url("images/tabHover.gif"); 
}

.gaggle .dijitTabChecked,
.gaggle .dijitTabCloseButtonChecked
{
	/* the selected tab (with or without hover) */
	background-color:#fff;
	border-color: #ccc;
	background-image:none; 
}

/* make the active tab white on the side next to the content pane */
.gaggle .dijitAlignTop .dijitTabChecked,
.gaggle .dijitAlignTop .dijitTabCloseButtonChecked
{
	border-bottom-color:white;
	vertical-align:bottom;
}

.gaggle .dijitAlignBottom .dijitTabChecked,
.gaggle .dijitAlignBottom .dijitTabCloseButtonChecked
{
	border-top-color:white;
	-moz-border-radius:2px 2px 0px 0px;	/* eliminate some border detritrus on moz */
}

.gaggle .dijitAlignLeft .dijitTabChecked,
.gaggle .dijitAlignLeft .dijitTabCloseButtonChecked
{
	border-right-color:white;
}

.gaggle .dijitAlignRight .dijitTabChecked,
.gaggle .dijitAlignRight .dijitTabCloseButtonChecked
{
	border-left-color:white;
}


/* make space for a positioned close button */
.gaggle .dijitTab .dijitClosable {
	position: relative; 
	padding:6px 10px 4px 10px;
}

.gaggle .dijitTab .dijitClosable .closeImage {
	position:absolute;
	top: 7px;
	right: 3px;
	height: 12px;
	width: 12px;
	padding: 0;
	margin: 0;
	background: url("images/tabClose.png") no-repeat right top;
}
.dj_ie6 .dijitTab .dijitClosable .closeImage {
	background-image:url("images/tabClose.gif"); 
}

.gaggle .dijitTabCloseButton .dijitClosable .closeImage {
	background-image : url("images/tabClose.png");
}
.dj_ie6 .gaggle .dijitTabCloseButton .dijitClosable .closeImage {
	background-image : url("images/tabClose.gif");
}

.gaggle .dijitTabCloseButtonHover .dijitClosable .closeImage {
	background-image : url("images/tabCloseHover.png");
}
.dj_ie6 .gaggle .dijitTabCloseButtonHover .dijitClosable .closeImage {
	background-image : url("images/tabCloseHover.gif");
}

.gaggle .dijitAlignLeft .dijitTab .dijitClosable {
	padding:6px 10px 4px 10px;
}

/* correct for IE6. 
    We cant force hasLayout as that blows out the shrink wrapped tabs
    ..so we shim in the closeImage position properties instead
*/
.dj_ie6 .gaggle .dijitAlignLeft .dijitTab .dijitClosable .closeImage {
	left:-20px;
}

.gaggle .dijitAlignBottom .dijitTab .dijitClosable .closeImage {
	top: auto;
	bottom: 7px;
	right: 3px;
}

.gaggle .dijitAlignLeft .dijitTab .dijitClosable .closeImage {
	top: 7px;
	left: 3px;
}

/* Close button */

.gaggle .dijitTabCloseButton {
	background: url("images/tabClose.png") no-repeat right top;
	width: 12px;
	height: 12px;
}
.dj_ie6 .gaggle .dijitTabCloseButton {
	background-image : url("images/tabClose.gif");
}

.gaggle .dijitTabCloseButtonHover {
	background-image : url("images/tabCloseHover.png");
}
.dj_ie6 .gaggle .dijitTabCloseButtonHover {
	background-image : url("images/tabCloseHover.gif");
}

/* SplitContainer and BorderContainer with splitter="true" */

.gaggle .dijitSplitterV {
	background:url("images/splitContainerSizerH.png") repeat-y #fff;
	border:0;
	border-left:1px solid #bfbfbf;
	border-right:1px solid #bfbfbf;
	width:7px;
}
.gaggle .dijitSplitterV .dijitSplitterThumb{
	background:url("images/splitContainerSizerH-thumb.png") no-repeat #ccc;
	left:1px;
	width:3px;
	height:19px;
}

.gaggle .dijitSplitterH .dijitSplitterThumb{
	background:url("images/splitContainerSizerV-thumb.png") no-repeat #ccc;
	top:1px;
	width:19px;
	height:3px;
}

.gaggle .dijitSplitContainerSizerH {
	background:url("images/splitContainerSizerH.png") repeat-y #fff;
	border:0;
	border-left:1px solid #bfbfbf;
	border-right:1px solid #bfbfbf;
	width:7px;
}

.gaggle .dijitSplitContainerSizerH .thumb {
	background:url("images/splitContainerSizerH-thumb.png") no-repeat #ccc;
	left:1px;
	width:3px;
	height:19px;
}

.gaggle .dijitSplitContainerSizerV {
	background:url("images/splitContainerSizerV.png") repeat-x #fff;
	border:0;
	border-top:1px solid #bfbfbf;
	border-bottom:1px solid #bfbfbf;
	height:7px;
}

.gaggle .dijitSplitContainerSizerV .thumb {
	background:url("images/splitContainerSizerV-thumb.png") no-repeat #ccc;
	top:1px;
	width:19px;
	height:3px;
}


/* Dialog */

.gaggle .dijitDialog {
	background: #eee;
	border: 1px solid #999;
	-webkit-box-shadow: 0px 3px 7px #adadad;
	max-height: 90%;
	overflow: auto;
}

.gaggle .dijitDialog .dijitDialogTitle {
	border-top: none;
	border-left: none;
	border-right: none;
}

.gaggle .dijitDialog .dijitDialogPaneContent {
	background: #ffffff;
	border:none;
	border-top: 1px solid #ccc; /* #cddde9;	/* w/out this, an <h1> on the top line causes a gap between the .content and .label */
	padding:10px;

}

.gaggle .dijitDialogTitleBar {
	/* outer container for the titlebar of the dialog */
	background: #fafafa url("images/titleBarBg.gif") repeat-x bottom left;
	/* border: 1px solid #bfbfbf; */
	padding: 4px 8px 2px 4px;
	cursor: move;
	outline:0; /* remove this line if keyboard focus on dialog startup is an issue. tab still takes you to first focusable element */
}

.gaggle .dijitDialogTitle {
	/* typography and styling of the dialog title */
	font-weight: bold;
	padding: 8px 12px 8px 12px;
	outline:0;
}

.gaggle .dijitDialogCloseIcon {
	/* the default close icon for the dialog */
	background : url("images/tabClose.png") no-repeat right top;
	float: right;
	position: absolute;
	vertical-align: middle;
	right: 5px;
	top: 5px;
	height: 22px;
	width: 22px;
	cursor: pointer;
}
.dj_ie6 .gaggle .dijitDialogCloseIcon {
	background-image: url("images/tabClose.gif"); 
}

.gaggle .dijitDialogContent {
	/* the body of the dialog */
	padding: 8px;
}

/*Tooltip*/

.gaggle .dijitTooltip,
.gaggle .dijitTooltipDialog {
	/* the outermost dom node, holding the connector and container */
	opacity: 0.95;
	background: transparent;	/* make the area on the sides of the arrow transparent */
}

.dijitTooltipBelow {
	/* leave room for arrow above content */
	padding-top: 13px;
}

.dijitTooltipAbove {
	/* leave room for arrow below content */
	padding-bottom: 13px;
}

.gaggle .dijitTooltipContainer {
	/*
		The part with the text.

		NOTE: 
			FF doesn't clip images used as CSS bgs if you specify a border
			radius. If you use a solid color, it does. Webkit gets it right.
			Sigh.
		background: #ffffff url("images/popupMenuBg.gif") repeat-x bottom left;
	*/
	background-color: #fafafa;
	border:1px solid #b6c7d5;
	padding:0.45em;
	border-radius: 6px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 6px;
}

.gaggle .dijitTooltipConnector {
	/* the arrow piece */
	border:0px;
	z-index: 2;
}

.gaggle .dijitTooltipABRight .dijitTooltipConnector {
	left: auto !important;
	right: 3px;
}

.gaggle .dijitTooltipBelow .dijitTooltipConnector {
	/* the arrow piece for tooltips below an element */
	top: 0px;
	left: 3px;
	background:url("images/tooltipConnectorUp.png") no-repeat top left;
	width:16px;
	height:14px;
}

.dj_ie6 .gaggle .dijitTooltipBelow .dijitTooltipConnector {
	background-image: url("images/tooltipConnectorUp.gif");
}

.gaggle .dijitTooltipAbove .dijitTooltipConnector {
	/* the arrow piece for tooltips above an element */
	bottom: 0px;
	left: 3px;
	background:url("images/tooltipConnectorDown.png") no-repeat top left;
	width:16px;
	height:14px;
}
.dj_ie6 .gaggle .dijitTooltipAbove .dijitTooltipConnector {
	background-image: url("images/tooltipConnectorDown.gif");
}

.gaggle .dijitTooltipLeft {
	padding-right: 13px;
}
.dj_ie6 .gaggle .dijitTooltipLeft {
	padding-right: 15px;
}
.gaggle .dijitTooltipLeft .dijitTooltipConnector {
	/* the arrow piece for tooltips to the left of an element, bottom borders aligned */
	right: 0px;
	bottom: 7px;
	background:url("images/tooltipConnectorRight.png") no-repeat top left;
	width:16px;
	height:14px;
}
.dj_ie6 .gaggle .dijitTooltipLeft .dijitTooltipConnector {
	background-image: url("images/tooltipConnectorRight.gif");
}

.gaggle .dijitTooltipRight {
	padding-left: 13px;
}
.gaggle .dijitTooltipRight .dijitTooltipConnector {
	/* the arrow piece for tooltips to the right of an element, bottom borders aligned */
	left: 0px;
	bottom: 7px;
	background:url("images/tooltipConnectorLeft.png") no-repeat top left;
	width:16px;
	height:14px;
}
.dj_ie6 .gaggle .dijitTooltipRight .dijitTooltipConnector {
	background-image: url("images/tooltipConnectorLeft.gif");
}

/* Accordion */

.gaggle .dijitAccordionPane-selected {
	/* background-color:#85aeec; */
	background-color: #e7e7e7;
}

.gaggle .dijitAccordionPane .dijitAccordionTitle {
	background:#fafafa url("images/titleBar.png") repeat-x bottom left;
	border: 1px solid #bfbfbf;
	padding:4px 4px 2px 4px;
}

.gaggle .dijitAccordionPane-selected .dijitAccordionTitle {
	background: #ededed url("images/buttonActive.png") bottom repeat-x;
	font-weight: bold;
	/* border:1px solid #84a3d1; */
	border: 1px solid #aaaaaa;
	padding: 4px 4px 2px 4px;
}

.gaggle .dijitAccordionPane .dijitAccordionArrow {
	background:url("images/arrowUp.png") no-repeat;
	width:15px;
	height:15px;
	margin-top:2px;
}
.dj_ie6 .gaggle .dijitAccordionPane .dijitAccordionArrow {
	background-image: url("images/arrowUp.gif"); 
}

.gaggle .dijitAccordionPane-selected .dijitAccordionArrow {
	background:url("images/arrowDown.png") no-repeat;
	margin-top:2px;
}
.dj_ie6 .gaggle .dijitAccordionPane-selected .dijitAccordionArrow {
	background-image: url("images/arrowDown.gif"); 
}

.gaggle .dijitAccordionPane .dijitAccordionBody {
	background: #fff;
	border:1px solid #bfbfbf;
}

/* Tree */

.gaggle .dijitTreeNode {
    background-image : url('images/i.gif');
    background-position : top left;
    background-repeat : repeat-y;
    margin-left: 19px;
    zoom: 1;	/* MOW: what the heck is this doing in here? */
}
.gaggle .dijitTreeIsRoot {
    margin-left: 0;
}
 
/* left vertical line (grid) for all nodes */
.gaggle .dijitTreeIsLast {
    background: url('images/i_half.gif') no-repeat;
}

.gaggle .dijitTreeExpando {
    width: 18px;
    height: 18px;
}

.gaggle .dijitTreeContent {
    min-height: 18px;
    min-width: 18px;
    margin-left:18px;
    padding-top:3px;
    padding-left:1px;
}


.gaggle .dijitTreeExpand {
    width: 18px;
    height: 18px;
    background-repeat : no-repeat;
}

.gaggle .standartTreeRow {
	text-shadow: 0 0 5px #FFFFFF;
}
 
/* same style as IE selection */
.gaggle .dijitTreeNodeEmphasized {
    background-color: Highlight;
    color: HighlightText;
}

/* don't use :focus due to opera and IE's lack of support on div's */
.gaggle .dijitTreeLabelFocused {
	outline: 1px invert dotted;
}

.gaggle .dijitTreeExpandoOpened {
	background-image: url('images/treeExpand_minus.gif');
}
 
.gaggle .dijitTreeExpandoClosed {
	background-image: url('images/treeExpand_plus.gif');
}
 
.gaggle .dijitTreeExpandoLeaf {
	background-image: url('images/treeExpand_leaf.gif');
}

.gaggle .dijitTreeExpandoLoading {
	background-image: url('images/treeExpand_loading.gif');
}


/* Calendar*/

.gaggle .dijitCalendarIncrementControl {
	/* next/prev month buttons */
	width:16px;
	height:16px;
}
.dj_ie6 .gaggle .dijitCalendarIncrementControl {
	padding:.1em; 
}

.gaggle .dijitCalendarIncreaseInner,
.gaggle .dijitCalendarDecreaseInner {
	visibility:hidden; 
}

.gaggle .dijitCalendarDecrease {
	background:url("images/arrowLeft.png") no-repeat center center; 
}
.dj_ie6 .gaggle .dijitCalendarDecrease {
	background-image:url("images/arrowLeft.gif"); 
}

.gaggle .dijitCalendarIncrease {
	background:url(images/arrowRight.png) no-repeat center center; 
}
.dj_ie6 .gaggle .dijitCalendarIncrease {
	background-image:url("images/arrowRight.gif"); 
}

.gaggle table.dijitCalendarContainer {
	font-size: 100%;
	border-collapse: collapse; 
	border-spacing: 0; 
	border: 1px solid #ccc; 
	margin: 0;
}

.gaggle .dijitCalendarMonthContainer th {
	/* month header cell */
	background:white url("images/calendarMonthLabel.png") repeat-x top;
	padding-top:.3em;
	padding-bottom:.1em; 
	text-align:center; 
}
.dj_ie6 .gaggle .dijitCalendarMonthContainer th {
	padding-top:.1em; 
	padding-bottom:0em; 
}

.gaggle .dijitCalendarDayLabelTemplate {
	/* day of week labels */
	background:white url("images/calendarDayLabel.png") repeat-x bottom;
	font-weight:normal;
	padding-top:.15em;
	padding-bottom:0em;
	border-top: 1px solid #eeeeee;
	color:#293a4b;
	text-align:center;
}

.gaggle .dijitCalendarMonthLabel {
	/* day of week labels */
	color:#293a4b;
	font-size: 0.75em;
	font-weight: bold;
	text-align:center;
}

.dj_ie7 .gaggle .dijitCalendarDateTemplate,
.dj_ie6 .gaggle .dijitCalendarDateTemplate {
	font-size: 0.8em;
}

.gaggle .dijitCalendarDateTemplate {
	/* style for each day cell */
	font-size: 0.9em;
	font-weight: bold;
	text-align: center;
	padding: 0.3em 0.3em 0.05em 0.3em;
	letter-spacing: 1px;
}


.gaggle .dijitCalendarPreviousMonth,
.gaggle .dijitCalendarNextMonth 		{
	/* days that are part of the previous or next month */
	color:#999999;
	background-color:#f8f8f8 !important;
}

.gaggle .dijitCalendarPreviousMonthDisabled,
.gaggle .dijitCalendarNextMonthDisabled	{
	/* days that are part of the previous or next month - disabled*/
	background-color:#a4a5a6 !important;
}

.gaggle .dijitCalendarCurrentMonth {
	/* days that are part of this month */
	background-color:white !important;
}

.gaggle .dijitCalendarCurrentMonthDisabled {
	/* days that are part of this month - disabled */	
	background-color:#bbbbbc !important; 
}

.gaggle .dijitCalendarDisabledDate {
	/* one or the other? */ 
	/* background: url(images/noX.gif) no-repeat center center !important; */
	text-decoration:line-through !important; 
	cursor:default !important;  
}

.gaggle .dijitCalendarCurrentDate {
	/* cell for today's date */
	text-decoration:underline;
	font-weight:bold;
}

.gaggle .dijitCalendarSelectedDate {
	/* cell for the selected date */
	background-color:#bbc4d0 !important;
	color:black !important;
}


.gaggle .dijitCalendarYearContainer {
	/* footer of the table that contains the year display/selector */
	background:white url("images/calendarYearLabel.png") repeat-x bottom;
	border-top:1px solid #ccc;
}

.gaggle .dijitCalendarYearLabel {
	/* container for all of 3 year labels */
	margin:0;
	padding:0.4em 0 0.25em 0;
	text-align:center;
}

.gaggle .dijitCalendarSelectedYear {
	/* label for selected year */
	color:black;
	padding:0.2em;
	padding-bottom:0.1em;
	background-color:#bbc4d0 !important;
}

.gaggle .dijitCalendarNextYear, 
.gaggle .dijitCalendarPreviousYear {
	/* label for next/prev years */
	color:black !important;
	font-weight:normal;
}



/* inline edit boxen */
.gaggle .dijitInlineValue {
	/* span around an inline-editable value when NOT in edit mode */
	padding:3px;
	margin:4px;
}


/* MOW: trying to get this to look like a mini-dialog.  Advised? */
.gaggle .dijitInlineEditor {
	/* fieldset surrounding an inlineEditor in edit mode */
	display: inline-block;
	display: -moz-inline-stack;
	#display:inline;
	/*
	border: solid;
	border-color: #7788a0 #344257 #344257 #7788a0;
	border-width:1px 2px 2px 1px;
	-moz-border-radius:0px 2px 0px 2px;	make BL and TR corners indent on Moz so it looks like we have a shadow
	background-color:white;
	*/
}

.dijitInlineEditor .saveButton,
.dijitInlineEditor .cancelButton {
	margin:3px 3px 3px 0px;
}


/* spinner */

.gaggle .dijitSpinner {}
.gaggle .dijitSpinner input {
}




/****
		dijit.ProgressBar
 ****/
 
.gaggle .dijitProgressBar {
	margin:2px 0px 2px 0px;
}

.gaggle .dijitProgressBarEmpty{
	/* outer container and background of the bar that's not finished yet*/
	background:#ececec url("images/progressBarEmpty.png") repeat-x bottom left;
	border-color: #84a3d1;
}

.gaggle .dijitProgressBarTile{
	/* inner container for finished portion when in 'tile' (image) mode */
	background:#cad2de url("images/progressBarFull.png") repeat-x top left;
}

.gaggle .dijitProgressBarLabel {
	/* Set to a color that contrasts with both the "Empty" and "Full" parts. */
	color:#293a4b;
}

.gaggle .dijitProgressBarIndeterminate .dijitProgressBarTile {
	/* use an animated gif for the progress bar in 'indeterminate' mode */
	background:#cad2de url("images/dijitProgressBarAnim.gif") repeat-x top left;
}

/****
 	SLIDER
****/

.gaggle .dijitHorizontalSliderProgressBar {
	border-color: #aab0bb;
	background: #c0c2c5 url("images/sliderFull.png") repeat-x top left;
}

.gaggle .dijitVerticalSliderProgressBar {
	border-color: #aab0bb;
	background: #c0c2c5 url("images/sliderFullVertical.png") repeat-y bottom left;
}

.gaggle .dijitVerticalSliderRemainingBar {
	border-color: #b4b4b4;
	background: #dcdcdc url("images/sliderEmptyVertical.png") repeat-y bottom left;
}

.dijitHorizontalSliderRemainingBar {
	border-color: #b4b4b4;
	background: #dcdcdc url("images/sliderEmpty.png") repeat-x top left;
}

.gaggle .dijitSliderBar {
	border-style: solid;
	outline:1px; 
	/* border-color: #b4b4b4; */
}

.gaggle .dijitHorizontalSliderImageHandle {
	border:0px;
	width:16px;
	height:16px;
	background:url("images/preciseSliderThumb.png") no-repeat center center; 
	cursor:pointer; 
}
.dj_ie6 .dijitHorizontalSliderImageHandle {
	background-image:url("images/preciseSliderThumb.gif"); 
}

.gaggle .dijitHorizontalSliderLeftBumper {
	border-left-width: 1px;
	border-color: #aab0bb;
	background: #c0c2c5 url("images/sliderFull.png") repeat-x top left;
}

.gaggle .dijitHorizontalSliderRightBumper {
	background: #dcdcdc url("images/sliderEmpty.png") repeat-x top left;
	border-color: #b4b4b4;
	border-right-width: 1px;
}

.gaggle .dijitVerticalSliderImageHandle {
	border:0px;
	width:16px;
	height:16px;
	background:url("images/sliderThumb.png") no-repeat center center; 
	cursor:pointer;
}

.gaggle .dijitVerticalSliderBottomBumper {
	border-bottom-width: 1px;
	border-color: #aab0bb;
	background: #c0c2c5 url("images/sliderFullVertical.png") repeat-y bottom left;
}

.gaggle .dijitVerticalSliderTopBumper {
	background: #dcdcdc url("images/sliderEmptyVertical.png") repeat-y top left;
	border-color: #b4b4b4;
	border-top-width: 1px;
}

/**** ICONS *****/

.gaggle .dijitEditorIconPasteHtml { background-position: -90px; } /* Just using the normal paste icon since that one isn't in use */

/*
 * IE6: can't display PNG images with gradient transparency.
 * Want to use filter property for those images, but then need to specify a path relative
 * to the main page, rather than relative to this file... using gifs for now
 */

.dj_ie6 .gaggle .dijitInputField,
.dj_ie6 .gaggle .dijitComboBoxInput, 
.dj_ie6 .gaggle .dijitSpinnerInput
 {
	background:transparent;  
	/* FIXME: un-comment when a pretty version of .gif is made */
	/* background-image: url("images/dojoTundraGradientBg.gif"); */
}


/** TODO: add all other PNGs here that need this */
/**** Disabled cursor *****/
.gaggle .dijitDisabledClickableRegion,	/* a region the user would be able to click on, but it's disabled */
.gaggle .dijitSpinnerDisabled *,
.gaggle .dijitButtonDisabled *,
.gaggle .dijitDropDownButtonDisabled *,
.gaggle .dijitComboButtonDisabled *,
.gaggle .dijitComboBoxDisabled *
{
	cursor: not-allowed !important;
	cursor: url("no.gif"), not-allowed, default;
}

/* DnD avatar-specific settings */
/* For now it uses a default set of rules. Some other DnD classes can be modified as well. */
.gaggle .dojoDndAvatar			{font-size: 75%; color: black;}
.gaggle .dojoDndAvatarHeader td	{padding-left: 20px; padding-right: 4px;}
.gaggle .dojoDndAvatarHeader	{background: #ccc;}
.gaggle .dojoDndAvatarItem		{background: #eee;}
.gaggle.dojoDndMove .dojoDndAvatarHeader	{background-image: url(images/dndNoMove.png); background-repeat: no-repeat;}
.gaggle.dojoDndCopy .dojoDndAvatarHeader	{background-image: url(images/dndNoCopy.png); background-repeat: no-repeat;}
.gaggle.dojoDndMove .dojoDndAvatarCanDrop .dojoDndAvatarHeader	{background-image: url(images/dndMove.png); background-repeat: no-repeat;}
.gaggle.dojoDndCopy .dojoDndAvatarCanDrop .dojoDndAvatarHeader	{background-image: url(images/dndCopy.png); background-repeat: no-repeat;}


.gaggle .withBackground .dijitButtonNode  {
	padding: 5px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	border:1px solid #9b9b9b;
	color:#9b9b9b;
	background:url("images/buttonEnabled.png") repeat-x bottom;
}
.gaggle .withBackground .dijitButtonNode:hover {
	border:1px solid #36aaee;
	background:url("images/buttonHover.png") repeat-x bottom;
}

.gaggle .Wide200 .dijitButtonNode  {
	width: 172px; /* The width and height have been changed to layout the jump to menu correctly in dojo 1.3.1 */
	height: 17px;
	padding: 3px;
	font-weight: bold;
	text-align: center;
	border:1px solid #36aaee;
	color:#366dba;
	background:url("images/buttonHover.png") repeat-x bottom;
}

.gaggle .Wide100 .dijitButtonNode {
	width: 85px;
	height: 30px;
	margin-bottom: 3px;
}

.gaggle .composeToButton .dijitButtonNode {
	text-align: center;
	width: 50px;
	border:1px solid #9b9b9b;
	background:url("images/buttonEnabled.png") repeat-x bottom;
}
.gaggle .composeToButton .dijitButtonNode:hover {
	border:1px solid #36aaee;
	background:url("images/buttonHover.png") repeat-x bottom;
}

.dijitButton,
.dijitDropDownButton,
.dijitComboButton,
.dijitComboBox {
	/* outside of button */
	margin: 0;
}

.dijitComboBox {
	border:1px solid #9b9b9b;
}

.gaggle .dijitDropDownButton.shaded {
	border:1px solid #9b9b9b;
}
	
.gaggle .dojoxFloatingPaneTitle {
	background:#fafafa url("../../../dijit/themes/tundra/images/titleBarBg.gif") repeat-x bottom left;
	border:1px solid #bfbfbf;
	color:#000; 	
}

.gaggle .dojoxFloatingCloseIcon {
	background:url('../../../dijit/themes/tundra/images/tabClose.png') no-repeat center center; 	
}
/* Override dijit styling to preserve the way the menu buttons looked pre-dojo 1.3.1 */
.gaggle TABLE.dijitComboButton {
	/* In ComboButton, borders are on each cell rather than on <table> itself */
	 
	border-collapse: separate;
	/*
	border:0;
	padding:0;
	margin:0;
	*/
}
/* Force buttons to have no background */
.dijitButtonNode *{
	background-color: transparent; /* This forces the buttons in dojo 1.3.1 to have no background color */
}
/* force IE to use 11px fonts on our buttons */
.dj_ie .dijitButtonText{
	font-size: 11px;
}

/* makes the splitter on bordercontainer look like splittercontainer */
.gaggle .dijitSplitterH {
	position:absolute;
	font-size: 1px;
	cursor: move;
	cursor: n-resize;
	background-color: ThreeDFace;
	border: 1px solid;
	border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
	margin: 0;
	
	background:url("images/splitContainerSizerV.png") repeat-x #fff;
	border:0;
	border-top:1px solid #bfbfbf;
	border-bottom:1px solid #bfbfbf;
	height:7px;
}

.spellCheckBtn {
	background-image: url('../../../../images/spellcheck.gif'); /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.addLockerImageBtn {
	background-image: url('../../../../images/igaggle/icons/Locker-18x18.gif'); /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.addGoogleDriveImageBtn {
	background-image: url('../../../../images/igaggle/icons/GoogleDrive-18x18.gif'); /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.lockerFileUploaderBtn {
	background-image: url('../../../../images/beta/photo_scenery-18x18.png');
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.addGaggleTubeBtn {
	background-image: url('../../../../images/igaggle/icons/gaggleTube-18x18.gif'); /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.setDefaultFontBtn {
	background-image: url('../../../../images/igaggle/icons/defaultStyle-18x18.png');
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

.insertEditorObjectBtn {
	background-image: url('../../../../images/igaggle/icons/insertObject-16x16.png'); /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
}

td.checked {
	background-image: url('images/checkboxActive.png'); 
	background-repeat: no-repeat; 
	width: 15px;
	height: 15px;
	text-align: center;
	background-position:center center;
}
td.unchecked {
	background-image: url('images/checkboxEnabled.png'); 
	background-repeat: no-repeat; 
	width: 15px;
	height: 15px;
	text-align: center;
	background-position:center center;
}

/* Accordion */

.gaggle .dijitAccordionContainer {
	border-color: #ccc;
	background-color: #fff;
}

/* common */

.gaggle .dijitAccordionTitle {
	background:#fafafa url("images/titleBar.png") repeat-x bottom left;
	border-top: 1px solid #bfbfbf;
	padding: 4px 4px 4px 8px;
	cursor:pointer;
}

.gaggle .dijitAccordionTitle-hover  {
	background: #f8fafd url("images/accordionItemHover.gif") bottom repeat-x;
}

.gaggle .dijitAccordionTitle-selected  {
	background: #f9f9f9 url("images/accordionItemActive.gif") bottom repeat-x;
	font-weight: bold;
	border-top: 1px solid #aaaaaa;
	border-bottom: 1px solid #bfbfbf;
	padding: 4px 4px 4px 8px;
	cursor: default;
}

.dj_webkit .dijitTextBoxDisabled INPUT,
.gaggle .dijitTextBoxDisabled {
	color: #777777 !important;
	border-color: #888888 !important;	
}

.gaggle .portletToolbar {
	background: #C2D5DC;
	padding: 0;
}

.gaggle .portletToolbar a {
    color: #333333;
	text-decoration: none;
}

.gaggle .portletToolbar a:hover {
	text-decoration: underline;
}

/* editor */
.gaggle .RichTextEditable {
	background-color: #FFFFFF;
}

/* edit tabs dnd  */
.gaggle .dashboardConfig .container {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:#FFFFFF none repeat scroll 0 0;
	border:1px solid #AAAAAA;
	cursor:default;
	padding:1em;
}
.gaggle .dashboardConfig .tabListContainer {
	float:left;
	margin-right:20px;
	width:200px;
}
.gaggle .dashboardConfig .tabListContainer ol {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:transparent url(images/clipboard.jpg) no-repeat scroll -30px 0;
	height:300px;
	margin:0;
}
.gaggle #tabListNode {
	padding:1em 3em;
}	
.gaggle .dashboardConfig .dojoDndItem {
	padding:3px;
}
.gaggle .dashboardConfig .dojoDndItemOver {
	background-color:#EDEDED;
	cursor:pointer;
}
.gaggle .dashboardConfig .dojoDndItemSelected {
	background-color:#5BBDEA;
	color:#444444;
}
.gaggle .dashboardConfig .dojoDndItemAnchor {
	background-color:#5BBDEA;
	color:black;
}
.gaggle .dashboardConfig .dojoDndItemOver .dojoDndItemSelected {
	background-color:#EDEDED;
}
.gaggle .dashboardConfig .dojoDndItemOver .dojoDndItemAnchor {
	background-color:#EDEDED;
}
.gaggle .dashboardConfig .dojoDndItemBefore {
	border-top:2px solid #336699;
}
.gaggle .dashboardConfig .dojoDndItemAfter {
	border-bottom:2px solid #336699;
}
.gaggle .dashboardConfig .dojoDndAvatar {
	border:2px solid #CCCCCC;
}
.gaggle .dashboardConfig .dojoDndAvatarHeader {
	background-color:#AAAAAA;
}
.gaggle .dashboardConfig .dojoDndAvatarItem {
	background-color:#FFFFFF;
	border-bottom:1px solid #666666;
}
.gaggle .dashboardConfig .dojoDndAvatarItem .itemText {
	font-size:120%;
}

/* additional calendar styles */
.myDojocal { /*position: absolute;
			top: 5px;
			bottom: 8px;
			left: 10px;
			right: 8px;*/
	border: 1px solid #ccc;
}

.dj_ie8 .myDojocal {
	width: 100px;
}

.dojocalLink {
	font-size: 90%;
}

.viewPagerRightBtn {
	width: 20px;
	height: 20px;
	background: transparent
		url("/gaggle/images/beta/spriteRoundedIconsLarge.png") -40px 0px
		no-repeat;
}

.viewPagerLeftBtn {
	width: 20px;
	height: 20px;
	background: transparent
		url("/gaggle/images/beta/spriteRoundedIconsLarge.png") 0px 0px
		no-repeat;
}

.dojocalDayRow {
	z-index: 1;
}

/* The vertical resize bar from the main layout */
.gaggle #mainSplitContainer #mainPortalAccordion_splitter.dijitSplitter.dijitSplitterV{
	background: transparent;  /* override dijit default (let's mainDiv image show through */
	border-width: 0px;
}

/* Styles the background of the page header */
.gaggle #mainHeader {
	background-image:none;
    background-position:200px 0px;
	background-repeat: no-repeat;
    height: 100px;
}
/* folder tree */
.gaggle .containerTableStyle {
	background: transparent;
}

/* ck editor styles 
cke_off/cke_on.cke_button_gaggleSpellcheck
*/
.gaggle .cke_toolbar a.cke_button_gaggleSpellcheck span.cke_icon {
	background-image: url('../../../../images/spellcheck.gif') !IMPORTANT; /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
	filter: alpha(opacity=90); /* IE */
}

.gaggle .cke_toolbar a.cke_button_gaggleLockerAttach span.cke_icon {
	background-image: url('../../../../images/igaggle/icons/Locker-18x18.gif') !IMPORTANT; /* editor icons sprite image */
	background-repeat: no-repeat; 
	width: 18px;
	height: 18px;
	text-align: center;
	background-position:center center;
	filter: alpha(opacity=90); /* IE */
}

/* using the pastetext icon for pasteHtml for now */
.gaggle .cke_skin_kama .cke_button_pasteHtml .cke_icon
{
	background-position: 0 -144px;
}
.gaggle .cke_skin_office2003 .cke_button_pasteHtml .cke_icon
{
	background-position: 0 -144px !IMPORTANT;
}

/*
.dj_ie 
filter: alpha(opacity=30);
*/

.gaggle span.cke_skin_kama{
	padding:0;
	border-width: 0px;
}

.gaggle .cke_skin_kama .cke_wrapper {
	padding: 0;
}

.gaggle .cke_skin_kama .cke_top {
	padding-left: 10px;
	padding-top: 0px;
}

.gaggle .cke_skin_kama .cke_toolgroup{
	height: 17px;
	padding-top: 0px;
	border-style: solid;
	border-width: 1px;
	border-color: #777777;
}


.gaggle .cke_skin_kama .cke_button .cke_icon {
  margin-top: 0;
}

.gaggle .cke_skin_kama .cke_rcombo a, 
.gaggle .cke_skin_kama .cke_rcombo a:active, 
.gaggle .cke_skin_kama .cke_rcombo a:hover {
  height: 18px;
  padding: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #777777;
}

.gaggle .cke_skin_kama .cke_rcombo .cke_openbutton {
  margin: 0px 2px;
  height: 18px;
}

.dj_ie .gaggle .cke_skin_kama .cke_rcombo .cke_openbutton {
	top: -3px;
	position: relative;	
}

.gaggle .cke_skin_kama .cke_button a.cke_on {
  padding: 0 4px;
}

.gaggle .cke_skin_kama .cke_wrapper {
  background-image: none;
}

.gaggle .cke_skin_kama .cke_editor {
	display: table;
}

.gaggle .cke_skin_office2003 .cke_rcombo .cke_text {
	width: 30px;
}

/* left vertical line (grid) for all nodes */
.gaggle .lockedColumn {
    background: url('images/lock.gif') no-repeat;
}

.wizardDialog {
	padding-top: 15px; 
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	color: #003365;	
	font-size: 1.5em;
}
.wizardDialog h1 {
	font-weight: bold;	
	font-size: 1.5em;
}
.wizardDialog h2 {
	font-weight: bold;	
	font-size: 1.2em;
}
.wizardDialog h3 {
	font-weight: bold;	
	margin-top: 10px;
}
.wizardInput {
	font-size: 1.2em;
	margin-bottom: 20px;
}

.wizardButtons {
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
	text-align: center;
}

.wizardButtons .smallText {
	font-size: 0.75em;
	padding-top: 20px;
	padding-bottom: 10px;
	display: block;
}

.wizardButtons .smallText input {
	margin-right: 5px;
	vertical-align: top;
}

.wizardButtons button {
	margin: 0 20px;
	font-size: 1em;
	border-style: none;
	border-radius: 20px;
	padding: 0 10px;
	color: #FFFFFF;
	background-color: #003365;
}

.wizardButtons button:hover {
	background-color: #005AB2;
}

.wizardButtons button:active {
	background-color: #000C19;
}

#wizardDeleteButton {
	background-color: #b40002;
}

#wizardDeleteButton:hover {
	background-color: #ff0306;
}

#wizardDeleteButton:active {
	background-color: #170000;
}

#wallProfilePhotoUploadStatus {
	display: block;
	margin-left: auto;
	margin-right:auto;
	width: 140px;
}

#wizardClassCopyBtn {
	font-size: .7em;
}

.wizardCentered {
	width: 50%;
	font-weight: bold;
	display: inline;
	text-align: left;
	font-size: .9em;
	color: #000000;
	margin-left: auto;	
	margin-right: auto;	
}

.wizardLeftAlign {
	width: 65%;
	text-align: left;
	margin-left: auto;	
	margin-right: auto;	
}

.wizardClassList {
	height: 250px;
	text-align: center;
	overflow: auto;
	margin-left: auto;	
	margin-right: auto;
	margin-bottom: 10px;	
}

.wizardClass {
	padding: 10px 0px;
	display: block;
}

.wizardAppList {
	width: 75%;
	text-align: left;
	margin-left: auto;	
	margin-right: auto;	
}

.wizardAppName {
	font-size: .9em;
	vertical-align: top;
}

.wizardAppDesc {
	font-size: .8em;
	display: block;
	padding-left: 85px;
}

.wizardClassRoster {
	width: 400px;
	height: 175px;
	overflow: auto;
	text-align: left;
	margin-left: auto;	
	margin-right: auto;	
	border: 1px solid #003365;
	margin-bottom: 10px;
	margin-top: -15px;
	padding-left: 2px;
}

.studentName {
	font-size: .8em;
	display: block;
}

.wizardAssignment {
	width: 80%;
	text-align: center;
	margin-left: auto;	
	margin-right: auto;	
}

#libraryCategory {
	padding-right: 10px;
}

#wizardVideoPlayerPane {
	height: 400px;
	width: 680px;
	text-align: center;	
}

.hidden {
	display: none;
	visibility: hidden;
}

.errorMsg {
	color: red;
}

.formRow {
	padding-left: 7px;
	padding-right: 7px;
	padding-bottom: 7px;
}
