
/* 
Basic Color Definitions
<darkest>
	001177	- dark shading on scroll bars, buttons
	003366	- text in <input> elements (textboxes, dropdown menus, etc)
	336699  - main color - background of header, footer, border
	5588ee  - light shading on scroll bars, buttons
	6699cc  - light color for borders around objects
	eeeeff  - lightest color, bg of menu, bg of of forms
    ffdd55  - highlight (mouseover) color for icons, datagrid rows, etc...
	ff9900  - orange border on icons
	ffbb33	- orage text for datagrid pager (page 1 2 3 ...)
<lightest>
*/

/* ********************************************************************* */
/*  ::: Standard HTML Elements                                           */
/* ********************************************************************* */
body
{
	font-size: 11px;
	color: black;
	font-family: verdana,tahoma,arial;
	background-color: #336699;
}


A
{
	color: white;
	text-decoration: none;
}

A:active
{
	text-decoration: none;
}

A:hover
{
	background-color: #336699;
}

SELECT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

INPUT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

TEXTAREA
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

HR
{
	color: #336699;
}
 
.button
{
	border-right: #001177 1px solid;
	border-top: #5588ee 1px solid;
	font-weight: bold;
	font-size: 10px;
	background: #336699;
	border-left: #5588ee 1px solid;
	cursor: hand;
	color: #eeeeee;
	border-bottom: #001177 1px solid;
	font-family: verdana,tahoma,sans-serif;
	height: 19px;
	text-decoration: none;
}

.icon
{
	cursor: hand;
	border: solid 1px #f5f5f5;
}

.iconActivated
{
	cursor: hand;
	background: #ffdd55;
	border: solid 1px #ff9900;
}


/* ********************************************************************* */
/*  ::: Text Styles                                                      */
/* ********************************************************************* */
.tinyText
{
    color: #454545;
    font-family: verdana,tahoma,arial;
    font-size: 9px;
}
.tinyWhiteText
{
	font-size: 9px;
	color: white;
	font-family: verdana,tahoma,arial;
}

.tinyBoldText
{
	font-weight: bold;
	font-size: 9px;
	color: #454545;
	font-family: verdana,tahoma,arial;
}

.userInfoText
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 12px;
    padding: 2px 2px 2px 2px;
}

.plainText
{
	font-size: 11px;
	color: white;
	font-family: verdana,tahoma,arial;
}

.plainWhiteText
{
	font-size: 11px;
	color: white;
	font-family: verdana,tahoma,arial;
}

.boldPlainText
{
    color: white;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    font-weight: bold;
}

.boldWhiteText
{
	font-weight: bold;
	font-size: 11px;
	color: white;
	font-family: verdana,tahoma,arial;
}

.boldBlueSlateText
{
	font-weight: bold;
	font-size: 11px;
	color: #336699;
	font-family: verdana,tahoma,arial;
}

.header-Enterprise
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 24px;
    font-weight: bold;
	padding-right: 10px; 
	padding-left: 13px; 
	letter-spacing: 2px;
}

.footer-branding A
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 10px;
    font-weight: normal;
	padding-right: 10px; 
	padding-left: 5px; 
	letter-spacing: 2px;
}

.featureHeadlineText
{
    color: #eeeeff;
    font-family: verdana,tahoma,arial;
    font-size: 13px;
    font-weight: bold;
    background-color: #336699;
    padding: 2px 5px 2px 5px;
    letter-spacing: 2px;
    
}

.headlineText
{
	font-weight: bold;
	font-size: 13px;
	color: #336699;
	font-family: verdana,tahoma,arial;
	background-color: white;
	text-align: center;
}

.loginMessageText
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 13px;
    font-weight: bold;
    line-height: 400%;
}

.bannerText
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 13px;
    font-weight: bold;
}

.menuText
{
    color: #eeeeee;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
}

.alertText
{
    color: #ff0000;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    font-weight: normal;
}

.smallAlertText
{
    color: #ff0000;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    font-weight: normal;
}

.errorText
{
	border-right: #ee3333 2px dashed;
	border-top: #ee3333 2px dashed;
	font-size: 11px;
	border-left: #ee3333 2px dashed;
	color: #ee3333;
	border-bottom: #ee3333 2px dashed;
	font-family: verdana, tahoma, arial;
}


/* ********************************************************************* */
/*  ::: Application Appearance                                           */
/* ********************************************************************* */
.header-background
{
    background-image: none; /*url(http://localhost/totaltrac2003/images/header-gel-blue.gif); */
    background-color: #336699;
}

.footer-background
{
    background-color: #336699; 
}

.menu-background
{
    background-color: #eeeeff;
}

.main-window-background
{
    background-color: #ffffff;
}

.banner
{
    background-color: #336699;
    border: solid 2px #6699cc;
}

.app-border
{
    background-color: #336699;
}

.app-background
{
    background-color: #336699;
}


/* ********************************************************************* */
/*  ::: Color Defaults                                                   */
/* ********************************************************************* */
#blueColor
{
    color: #336699;
}

#redColor
{
    color: #ff0000;
}

#greenColor
{
    color: #00ff00;
}

#orangeColor
{
    color: #ff9900;
}

#grayColor
{
    color: #666666;
}

#whiteColor
{
    color: #ffffff;
}

#blackColor
{
    color: #000000;
}

/* ********************************************************************* */
/*  ::: TotalTrac Wizard Properties                                      */
/* ********************************************************************* */
.tblWizardStepTable
{
	border: solid 1px #336699; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.wizardStepNumber
{
	color: #336699;
	font-size: 18px; 
	font-family: verdana,tahoma,arial;
	background: #eeeeff;
	border: solid 1px #33699;
	width: 30px;
	height: 25px;
	text-align: center;
	padding: 4px 4px 4px 4px;
}

.wizardStepText
{
	color: #336699;
	font-size: 14px; 
	font-family: verdana,tahoma,arial;
	font-weight: bold;
}


/* ********************************************************************* */
/*  ::: Navigation Tree Properties                                       */
/* ********************************************************************* */
.treeText 
{
	color: #336699;
	font-size: 11px; 
	line-height: 150%; 
	font-family: verdana,tahoma,arial;
}

.treeActivated 
{
	color: #003366;
	font-size: 10px; 	
	line-height: 150%; 
    font-weight: bold;
	font-family: verdana,tahoma,arial;
}

.treeItemHide 
{
	display: none;
}

.treeItemShow 
{
	display: inline;
}

.treeExpander 
{
	border-right: #454545 1px solid; 
	padding-right: 1px; 
	border-top: #454545 1px solid; 
	padding-left: 1px; 
	font-size: 8px; 
	background: #eeeeee; 
	padding-bottom: 0px; 
	vertical-align: baseline; 
	border-left: #454545 1px solid; 
	cursor: hand; 
	color: #000000; 
	padding-top: 0px; 
	border-bottom: #454545 1px solid; 
	font-family: verdana,tahoma,arial; 
	text-align: center;
}

.small_button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 9px;
    font-weight: normal;
    height: 16px;
    text-decoration: none;
	margin-bottom: 2px;
}

.menu_button
{
    color: #ffffff;
    background: #336699;
    border-right: #003366 1px solid;
    border-bottom: #003366 1px solid;
    border-left: #3366cc 1px solid;
    border-top: #3366cc 1px solid;
    font-family: verdana,tahoma,sans-serif;
    font-size: 11px;
    cursor: hand;
    text-decoration: none;
}

.clickable
{
    cursor: hand;
}

.navTreeIconBar
{
	padding: 1px 1px 1px 1px;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.navTreeIcon
{
	cursor: hand;
	background: #ffffff;
	border: solid 1px #6699cc;
}

.navTreeIconActivated
{
	cursor: hand;
	background: #ffdd55;
	border: solid 1px #ff9900;
}

/* Section List (main page, not nav tree, like under preferences) */
.sectionMenuList
{
	color: #336699;
	font-size: 10px; 
	font-family: verdana,tahoma,arial;
	list-style-type: circle;
	list-style-position: inside; 	
}

.sectionMenuList A
{
	color: #336699;
	font-size: 10px;
	font-weight: bold;
	font-family: verdana,tahoma,arial;
}

/* ********************************************************************* */
/*  ::: Login/Logout Properties                                          */
/* ********************************************************************* */
.LoginForm
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#336699; 
    color:#336699; 
    border: solid 2px #6699cc;
}

.LoginFormHeader
{
	background-color: 6699cc;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: ffffff;
}

.LoginBox
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#eeeeff; 
    color:#eeeeff;
    border: dashed 2px #6699cc;
}


/* ********************************************************************* */
/*  ::: IFRAME Properties                                                */
/* ********************************************************************* */
.IFrameBody
{
    background-color: #eeeeff;
    color: #454545;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
	scrollbar-3dlight-color: #6699cc;
    scrollbar-arrow-color: #336699;
    scrollbar-base-color: #eeeeff;
    scrollbar-darkshadow-color: #001177;
    scrollbar-face-color: #cccccc;
    scrollbar-highlight-color: #6699cc;
    scrollbar-shadow-color: #001177;
}

.IFrame
{
	border: solid 2px #336699; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.IFramePictureTable
{
	border: none; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.IFramePictureTable IMG
{
	border: solid 1px #454545;
	background-color: #ffffff;
}

/* ********************************************************************* */
/*  ::: Add/Edit Forms Properties                                        */
/* ********************************************************************* */
.addEditForm
{
	border: solid 1px #336699; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.addEditForm SELECT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
    border: solid 1px #336699;
}

.addEditForm INPUT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.addEditForm TEXTAREA
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.addEditForm .small_button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 9px;
    font-weight: normal;
    height: 16px;
    text-decoration: none;
}

.addEditForm .button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 10px;
    font-weight: bold;
    height: 19px;
    text-decoration: none;
}


.addEditForm .checkBox
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;	
	border: solid 1px #336699;
	background-color: #eeeeff;
	color: #eeeeff;
}

.addEditFormHeader
{
	background-color: #336699;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

.addEditFormButtonBar
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

.addEditForm .notes
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#eeeeff; 
    border: none;
    font-weight: normal;
    color: #454545;
}

.addEditForm .workLog
{
	border: solid 2px #336699;
	background-color: #eeeeee;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
}

.addEditForm .workLogAlt
{
	border: solid 2px #336699;
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
}

.addEditForm .workLogHeader
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

/* ********************************************************************* */
/*  ::: Details Form Properties                                          */
/* ********************************************************************* */
.detailsForm
{
	border: solid 2px #336699; 
  	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.detailsForm .rowOdd
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.detailsForm .rowEven
{
	background-color: #eeeeee;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.detailsForm SELECT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.detailsForm INPUT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.detailsForm TEXTAREA
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.detailsForm .assetNotes
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#eeeeee; 
    border: none;
    font-weight: normal;
    color: #222222;
}

.detailsForm .notes
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#eeeeee; 
    border: none;
    font-weight: normal;
    color: #222222;
}

.detailsForm .small_button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 9px;
    font-weight: normal;
    height: 16px;
    text-decoration: none;
}

.detailsForm .button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 10px;
    font-weight: bold;
    height: 19px;
    text-decoration: none;
}


.detailsForm .checkBox
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;	
	border: solid 1px #336699;
	background-color: #eeeeff;
	color: #eeeeff;
}

.detailsFormHeader
{
	background-color: #336699;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

.detailsFormButtonBar
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

.detailsForm .workLog
{
	border: solid 2px #336699;
	background-color: #eeeeee;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
}

.detailsForm .workLogAlt
{
	border: solid 2px #336699;
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
}

.detailsForm .workLogHeader
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

/* ********************************************************************* */
/*  ::: DataGrid Appearance Properties                                   */
/* ********************************************************************* */
.dataGridHeadline
{
    color: #eeeeff;
    font-family: verdana,tahoma,arial;
    font-size: 13px;
    font-weight: bold;
    background-color: #336699;
    padding: 2px 5px 2px 5px;
    letter-spacing: 2px;
    
}

.dataGridIconBar
{
    border: solid 1px #336699;
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    color: #336699;
    font-weight:bold;
    background-color: #eeeeff;
    padding: 2px 5px 2px 5px;
}

.dataGridIcon
{
	cursor: hand;
	background: #eeeeff;
	border: solid 1px #eeeeff;
}

.dataGridIconActivated
{
	cursor: hand;
	background: #ffdd55;
	border: solid 1px #ff9900;
}

.dataGridAlt
{
	border: solid 2px #336699;
	background-color: #eeeeee;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
	padding: 3px 3px 3px 3px;
}

.dataGrid
{
	border: solid 2px #336699;
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
	padding: 3px 3px 3px 3px;
}

.dataGridHighlighted
{
	border: solid 2px #336699;
	background-color: #ffdd55;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #000000;
	padding: 3px 3px 3px 3px;
	cursor: hand;
}

.dataGridHeader
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

tr.dataGridHeader A
{
	color: #336699;
}

tr.dataGridHeader A:active
{
    text-decoration: none;
}

tr.dataGridHeader A:hover
{
    text-decoration: underline;
}

.dataGridFooter
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #336699;
}

.dataGridPager
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ff9900;
}

tr.dataGridPager A
{
	color: #336699;
}

tr.dataGridPager A:active
{
    text-decoration: none;
}

tr.dataGridPager A:hover
{
    text-decoration: underline;
}

.dataGridPageInfo
{
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	color: #454545;
}



/* ********************************************************************* */
/*  ::: DataGrid Filter Properties                                       */
/* ********************************************************************* */
.dataGridFilter
{
	border: solid 1px #336699; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.dataGridFilter SELECT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.dataGridFilter INPUT
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.dataGridFilter TEXTAREA
{
    font-family: verdana,tahoma,arial;
    font-size: 11px;
    background-color:#ffffff; 
    color:#003366;
    font-weight: normal;
}

.dataGridFilter .small_button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 9px;
    font-weight: normal;
    height: 16px;
    text-decoration: none;
}

.dataGridFilter .button
{
    background: #336699;
    border-bottom: #001177 1px solid;
    border-left: #5588ee 1px solid;
    border-right: #001177 1px solid;
    border-top: #5588ee 1px solid;
    color: #eeeeee;
    cursor: hand;
    font-family: verdana,tahoma,sans-serif;
    font-size: 10px;
    font-weight: bold;
    height: 19px;
    text-decoration: none;
}


.dataGridFilter .checkBox
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;	
	border: solid 1px #336699;
	background-color: #eeeeff;
	color: #eeeeff;
}

.dataGridFilterHeader
{
	background-color: #336699;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

.dataGridFilterButtonBar
{
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
}

/* ********************************************************************* */
/*  ::: Error Log Properties                                             */
/* ********************************************************************* */
.errorLog
{
	border: none; 
   	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.errorLog .elDivider
{
	background-color: #336699;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
}

.errorLog .elName
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #222222;
}

.errorLog .elValue
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

/* ********************************************************************* */
/*  ::: Report Properties                                                */
/* ********************************************************************* */
.report
{
	border: none; 
   	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.report .rDivider
{
	border: dashed 1px #336699;
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

.report .rName
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: bold;
	color: #222222;
}

.report .rValue
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.report .rowOdd
{
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.report .rowEven
{
	background-color: #eeeeee;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.report .header
{
	background-color: #336699;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
}

/* ********************************************************************* */
/*  ::: Dashboard Properties                                             */
/* ********************************************************************* */
.dashboard
{
	border-top: solid 1px #336699; 
	border-bottom: none;
	border-left: solid 1px #336699; 
	border-right: solid 1px #336699; 
	background-color: #ffffff;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}

.dashboard .header
{
	border-bottom: solid 1px #336699; 
	background-color: #eeeeff;
	font-family: Verdana,tahoma,arial;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

.dashboard TD
{
	border-top: none; 
	border-bottom: solid 1px #336699; 
	border-left: none;
	border-right: none;
	background-color: #f5f5f5;
	font-family: Verdana,tahoma,arial;
	font-size: 10px;
	font-weight: normal;
	color: #222222;
}
.inputerrorText
{
	font-size: 11px;
	color: red;
	font-family: verdana,tahoma,arial;
}
.radiobutton
{
	background-color: #99cc99;
}
.buttonSelected
{
	border-right: #001177 1px solid;
	border-top: #5588ee 1px solid;
	font-weight: bold;
	font-size: 10px;
	background: #336699;
	border-left: #5588ee 1px solid;
	cursor: hand;
	color: yellow;
	border-bottom: #001177 1px solid;
	font-family: verdana,tahoma,sans-serif;
	height: 19px;
	text-decoration: none;
}
.buttonUnSelected
{
	border-right: #001177 1px solid;
	border-top: #5588ee 1px solid;
	font-weight: bold;
	font-size: 10px;
	background: #666666;
	border-left: #5588ee 1px solid;
	cursor: hand;
	color: silver;
	border-bottom: #001177 1px solid;
	font-family: verdana,tahoma,sans-serif;
	height: 19px;
	text-decoration: none;
}
.tableHeader
{
	font-weight: bold;
	font-size: 12pt;
	color: white;
	font-family: Verdana,tahoma,arial;
	background-color: #336699;
	text-decoration: none;
}
.listBox
{
	border-right: silver 1px solid;
	border-top: silver 1px solid;
	font-weight: normal;
	font-size: 8pt;
	border-left: silver 1px solid;
	color: navy;
	line-height: 11px;
	border-bottom: silver 1px solid;
	font-family: verdana,tahoma,arial;
	letter-spacing: normal;
	background-color: transparent;
	text-decoration: none;
}
.boldSilverText
{
	font-weight: bold;
	font-size: 11px;
	color: silver;
	font-family: verdana,tahoma,arial;
}
.boldYellowText
{
	font-weight: bold;
	font-size: 11px;
	color: yellow;
	font-family: verdana,tahoma,arial;
}
