/*******************************************************************************
 * SKINS                                                                       *
 *******************************************************************************/

* /*Set's padding and margin to 0 for all values*/
{
	padding: 0;
	margin: 0;
}

body, html
{
	color: #000;
	background-color: #868686;
	text-align: center; /*** Centers the design in old IE versions ***/
	height: 100%;
}

img 
{
	border: none;
}

#skinMainContainer
{
	width: 1003px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 100%;
	background: #FFFFFF url(background.png) repeat-y; /*** This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #skinMainContainer
{
	height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/* re-add margins and padding */
ol, ul
{
	margin: 3px 0 5px 35px;
}

h1, h2, h3, h4, h5, h6, p, blockquote, form, label, ul, ol, dl, fieldset, address
{
    margin-bottom: 1em;
}

/**************************
HEADER
**************************/

.skinHeaderGap
{
	height:1px;
	width:100%;
	background-color:#868686;
	overflow:hidden;
}

#skinHeader
{
	background: #FFFFFF;
}

.skinHeaderTopPane
{
	height: 82px;
	overflow: hidden;
	border-top-color: #393939;
	border-top-style: solid;
	border-top-width: 1px;
	border-left-color: #393939;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: #393939;
	border-right-style: solid;
	border-right-width: 1px;
}

.skinHeaderLogoPane
{
	float: left;
}

.skinHeaderLoginPane
{
	float: right;
	width: 638px;  /* width needed for firefox. Make sure enough room for login error text, but not run into logo */
	padding: 5px 10px 0px 0px;
}

.skinHeaderSwirly
{
	height:50px;
	width: 1001px;
	border-left-color:#393939;
	border-left-style:solid;
	border-left-width:1px;
	border-right-color:#393939;
	border-right-style:solid;
	border-right-width:1px;
	background-color:#202020;
	background-image:url(swirlyBg.jpg);
	background-repeat:no-repeat;
}

.skinHeaderSwirlyItemLeftEdge
{
	padding-left: 14px;
	height: 100%;
	white-space: nowrap;
}

.skinHeaderSwirlyItemLeft
{
	padding-left: 42px;
	height: 100%;
	white-space: nowrap;
}

.skinHeaderSwirlyItemMiddleGap
{
	height: 100%;
	width: 100%;
}

.skinHeaderSwirlyItemRightEdge
{
	padding-right: 14px;
	height: 100%;
	white-space: nowrap;
}

.skinHeaderSwirlyItemRight
{
	padding-right: 42px;
	height: 100%;
	white-space: nowrap;
}

/**************************
CONTENT AND COLUMNS
**************************/

/* This layout is based on the example here: http://www.strictlycss.com/examples/three-column-layout-6.asp */

.skinOuter
{
	padding-left: 180px;
	min-height: 100%;
}
* html .skinOuter
{
}

.skinInner
{
	width: 523px; /* I don't think this value is used/needed in our setup. */ /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
	padding-bottom: 50px;	/* Set to same as footer height */
}
* html .skinInner
{
	width: 100%;
}

.skinFloatWrapper
{
	float: left;
	width: 1003px;
	margin-left: -180px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .skinFloatWrapper
{
	/*** No need for hacking IE on this layout ***/
}

#skinContent
{
	float: right;
	width: 821px;
}
* html #skinContent
{
	/* Task 2243. AjaxControlLibrary ModalPopupExtender has trouble when embedded in a div with position: relative.
		removing this css setting fixed the modalpopup problem, and did not seem to change anything... */
	/* position: relative; */  /*** IE needs this  ***/
}


.skinContentRow
{
	clear: both;
}

.skinContentWhiteBorder
{
	background-color: #FFFFFF;
	float: left;
	overflow: hidden;
}

.skinContentThickGreyBorder
{
	background-color: #8A8A8A;
	float: left;
	overflow: hidden;
}

.skinContentPadding
{
	float: left;
	overflow: hidden;
}

.contentPaneArea
{
	background-color: #FFFFFF;
	float: left;
}

.skinDarkGreyBorder
{
	background-color: #202020;
	float: left;
	overflow: hidden;
}

.skinThinOuterBorder
{
	background-color: #393939;
	float: left;
	overflow: hidden;
}

.skinPageHeaderPane
{
	width: 777px;
	height: 25px;
	float: left;
	overflow: hidden;
}

.skinPageHeaderTabL
{
	float: left;
	overflow: hidden;
	width: 10px;
	height: 25px;
	background-color: #4A4A4A;
}

.skinPageHeaderTabR
{
	width: 12px;
	height: 25px;
	background-image: url(tabRightBg.jpg);
	background-repeat: no-repeat;
	overflow: hidden;
	float: left;
}

/**************************
LEFT MENU COLUMN
**************************/

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/

#skinLeftMenu
{
	float: left;
	width: 180px;
	padding-left: 1px;
	padding-top: 0px;
}
* html #skinLeftMenu
{
	position: relative;  /*** IE needs this  ***/
}

/**************************
FOOTER
**************************/
#skinFooter
{
	width: 1003px;
	height: 50px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 50px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: 0 auto;
	margin-top: -50px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	overflow: hidden;
}

.skinFooterLinksPane
{
	width: 1003px;
	height: 20px;
	background-color:#868686;
}

.Footer
{
	color: #282828;
	font-family: Verdana;
	font-size: 12px;
	letter-spacing: 1px;
	padding-left: 12px;
	text-transform: none;
}

A.Footer:hover, A.Footer:link, A.Footer:visited
{
	background-image: url(whitearrow.jpg);
	background-repeat: no-repeat;
	color: #282828;
	text-decoration: none;
}

.skinBL
{
	width: 10px;
	height: 15px;
	background-image: url(IDBottLeft.PNG);
	background-repeat: no-repeat;
	overflow: hidden;
	float: left;
}

.skinBC
{
	height: 15px;
	background-image: url(IDBottCentre.PNG);
	background-repeat: repeat-x;
	overflow: hidden;
	float: left;
}

.skinBR
{
	height: 15px;
	width: 12px;
	background-image: url(IDBottRight.PNG);
	background-repeat: no-repeat;
	overflow: hidden;
	float: left;
}

/*******************************************************************************
 * PAGEHEADER                                                                  *
 *******************************************************************************/
.PageHeader
{
	background-image: url(tabBg.jpg);
	background-repeat: repeat-x;
	color: White;
	font-family: Verdana;
	font-size: 12px;
	height: 25px;
	letter-spacing: 1px;
	padding-bottom: 3px;
	text-transform: lowercase;
	vertical-align: middle;
}

.PageHeaderTab
{
	background-image: url(tabMainBg.jpg);
	background-repeat: repeat-x;
	padding-right: 6px;
}

.PageHeaderIcon
{
	background-image: url(tabMainBg.jpg);
	background-repeat: repeat-x;
}

.PageHeaderCorner
{
	width: 15px;
	background-image: url(tabCorner.jpg);
	background-repeat: no-repeat;
}

/*******************************************************************************
 * MAXSECLOGIN                                                                 *
 *******************************************************************************/
.LoginPane
{
	height: 58px;
	width: 253px;
	background-image: url(signInBg.jpg);
	background-repeat: no-repeat;
}

/*******************************************************************************
 * SEARCH                                                                      *
 *******************************************************************************/
.Search
{
	font: bold 11px arial;
	text-transform: lowercase;
}

.skinHeaderSwirly a,
.skinHeaderSwirly a:link,
.skinHeaderSwirly a:visited,
.skinHeaderSwirly a:hover,
.skinHeaderSwirly a:active
{
	color: white;
}

.Search label,
.Search input
{
	display: none;
	visibility: hidden;
}

.StateText
{
	font-family: 'Courier New';
	font-size: large;
	font-weight: normal;
	color: #CC0033;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
	text-decoration: underline;
	table-layout: fixed;
	border-collapse: collapse;
	empty-cells: show;
	caption-side: top;

	margin-left: 2px;
}

.StateTable
{
	
	table-layout: fixed;
	border-collapse: collapse;
	empty-cells: show;
	caption-side: top;
	width: 280px;
	height: 297px;
	
}

