@charset "utf-8";
/* CSS Document */

body{
	margin:0;
	padding:0;
	font-family:Tahoma, Geneva, sans-serif;
	font-weight:normal;
}

#bodyWrapper{
	height:100%;
	width:1000px;
	text-align:left;
}

#header{
	height:135px;
	width:100%;
}

#headerLogo{
	margin-top:10px;
	margin-left:10px;
	width:100%;
	height:100px;
	background-image:url('/images/logo.png');
	background-repeat:no-repeat;
}

#headerNav{
	padding-left:20px;
	height:25px;
	width:100%;
	background-color:#666;
}

#body{
	background-color:#FFF;
	padding:10px;
	height:100%;
}


/* ---------DROP DOWN NAVIGATION START ---------*/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 120%;
}

#nav a {
	display: block;
	width: 10em;
	color:#FFF;
	text-decoration:none;
}

#nav a:hover {
	color:#39C;
	text-decoration:underline;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	padding-top:2px;
	padding-bottom:2px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #CCC;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/* ---------DROP DOWN NAVIGATION END ---------*/


/* ---------ORDER LIST TABLE START ---------*/
.orderlistTable tr td{
	border:solid 1px #CCC;
}

.orderListHeader{
	font-size:14px;
	font-weight:bold;
	background-color:#87B9D3;
}

.orderListRow{
	font-size:12px;
}

/* ---------ORDER LIST TABLE END ---------*/



/* ---------ORDER TEMPLATE TABLE START ---------*/
#orderTemplateTable tr td{
	border:solid 1px #CCC;
	font-size:12px;
}

.pmsTDSwatch{
	width:20px;
}
/* ---------ORDER TEMPLATE TABLE END ---------*/


.clr{
	clear:both;
}