﻿BODY
{
	background-color: buttonface;
}

BUTTON
{
	font-size: 10pt;
	font-family: 'Segoe UI' , Tahoma;
	width: 100px;
}

DIV
{
	font-size: 10pt;
	font-family: 'Segoe UI' , Tahoma;
}

/* id specified for table that positions controls */
#idTblPosition
{
	border-right: 1px solid;
	padding-right: 5px;
	border-top: 1px solid;
	padding-left: 5px;
	font-size: 10pt;
	padding-bottom: 5px;
	margin: 5px;
	border-left: 1px solid;
	padding-top: 5px;
	border-bottom: 1px solid;
	font-family: 'Segoe UI' , Tahoma;
}

/* used for <TD> with graphic in it */
.TblCellIcon
{
	width: 60px;
	vertical-align: top;
	text-align: center;
}
/* ---------------------------------- */

/* used for <TD> with text in it */
.TblCellText
{
	vertical-align: top;
	text-align: left;
}

.TblCellTextLayer
{
	overflow: hidden;
	height: 90px;
	width: 350px;
}

.TblCellTextLayerForHelp
{
	overflow: hidden;
	height: 440px;
	width: 400px;
}

/* ---------------------------------- */


/* used for <TD> with button in it */
.TblCellBtn			/* used for <TD> with button in it */
{
	text-align: right;
}
/* ---------------------------------- */



/*	Progress Bar(s)	************************************************
*
*	-	Progress bars are made of 2 containers
*			- 1 .ProgressOuter	- for the outer boarder
*			- 2 .ProgressInner	- for the inner solid part (the progress)
*
*	-	Specify the look of the progress bar here, the style 
*		in the html markup should position the bar on the page
*
*	Example:
*	<div id="idProgressOuter" class="ProgressOuter" style="top: 75px; width: 630px;">
*		<div id="idProgressInner" class="ProgressInner"></div>
*	</div>
********************************************************************/
.ProgressOuter
{
	height: 22px;
	position: absolute;
	border-right: dimgray 1px solid;
	border-top: dimgray 1px solid;
	border-left: dimgray 1px solid;
	border-bottom: dimgray 1px solid;
	background-color: whitesmoke;
}

.ProgressOuter .ProgressInner
{
	top: 1px;
	height: 18px;
	position: absolute;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	border-bottom-style: none;
	filter: progid:DXImageTransform.Microsoft.Light()
			progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#91be44,endColorStr=#456901);
}


.ProgressText
{
	font-family: 'Segoe UI' , Tahoma;
	height: 43px;
	text-align: left;
	font-weight: normal;
	font-size: 9pt;
	overflow: hidden;
}

