
/* Tables and Headers */

html,body {
	margin: 0;
	padding: 0;
}

table {
	width: 100%;
}

td {
	vertical-align: middle;
}



div.page {
	position: relative;
	margin: 0 auto;
	width: 999px;
	height: 432px;
	text-align: left;
}

H1
{
	font-family: Cybertron Metals;
	font-size: 20pt;
	font-weight: bolder;
	color: #FF381E; 	
}

H2
{
	text-decoration: none;
	font-style:normal;
	font-family: Trebuchet MS;
	font-size: 16pt;
	color: Black; 		
}

H3
{
	text-decoration: none;
	font-style:normal;
	font-family: Trebuchet MS;
	font-size: 12pt;
	color: Black; 		
}

H4
{
	text-decoration: none;
	font-style:normal;
	font-family: Trebuchet MS;
	font-size: 12pt;
	font-weight:bold;
	color: Black; 		
}

Label
{
	font-size:18pt;
	padding-bottom: 20px;
}


A 
{
	font-family: Tahoma;
	color: Black;
}
A:active 
{
	color: black;
}
A:hover
{
	color: red;
}
A:visited
{
	color: black;
}

#header{
	border: 1px inset Black;
	position: absolute;
	top: .1em;
	left: .1em;
	width: 999px;
	height: 157px;
	overflow:hidden;
}

#sideBar
{
	border: 1px inset Black;
	position: absolute;
	top: 20.2em;
	left: .1em;
	width: 9.2em;
	height: 16em;
	overflow: visible;	
}

#sideBar img {
	border:solid 1px black;
	margin-top: 10px;
	margin-bottom: 10px;
}

#dateDisplay
{
	margin-top: 5px;
	margin-bottom: 5px;	
}

#mainContent
{
	border: 1px inset Black;
	position: absolute;
	top: 9.8em;
	left: 9.8em;
	width: 49em;
	height: 26.4em;	
	overflow: hidden;
}


#navigation {
	border: 0px inset Black;
	border-bottom: 0px; 
	position: absolute;
	top: 9.8em;
	left: .1em;
	width: 9.2em;
	overflow: visible;
	z-index: 2;
}

#navigation ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
}

/* MENU STYLE */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 156px;
 list-style: none;
 background: #F0F0F8 url(listmenu_o.gif) left repeat-y;
 border: 1px solid #654;
 cursor: hand;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 left: 150px;
 top: 0px;
 width: 250px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 border: 1px solid transparent;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px 4px 3px 30px;
 color: #000;
 text-decoration: none;
 border: 1px solid transparent;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist a {
 border: none;
 margin: 1px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #46A;
 padding: 2px 5px 4px 29px;
 border: 1px solid #ADF;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #68C;
 border: 1px solid #CDE;
 margin: 0;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */

/* Non-IE menu enhancements...
html>body #menuroot ul {
 top: 1.55em;
 border-top: 3px solid #E8F0FF;
}
html>body #menuroot a.highlighted {
 width: 28em !important;
 text-align: center;
}
*/

/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	background-color: #fdfcc4;
	border: 1px solid #AAAAAA;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	}


/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 1px solid #ece9d8;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
	}


/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer;
	color: red;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: White;
	border: 1px solid #AAAAAA;
	color: black;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	color: gray;
	font-weight: bold;
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: #4060ff;
	font-weight: bold;
	}


/* the forward/backward buttons at the top */
.dpButton {
   color:black;
   font-family:'Tahoma';
   font-size:100%;
   background-color:#fed;
   border:1px solid;
   border-top-color:#696;
   border-left-color:#696;
   border-right-color:#363;
   border-bottom-color:#363;
   filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='yellow');
	}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
   color:black;
   font-family:'Tahoma';
   font-size:100%;
   background-color:#fed;
   border:1px solid;
   border-top-color:#696;
   border-left-color:#696;
   border-right-color:#363;
   border-bottom-color:#363;
   filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='yellow');
	}

input.btn{
   color:black;
   font-family:'Tahoma';
   font-size:80%;
   background-color:#fed;
   border:1px solid;
   border-top-color:#696;
   border-left-color:#696;
   border-right-color:#363;
   border-bottom-color:#363;
   height: 1.6em;
   filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='yellow');
}

input.


