@charset "UTF-8";
/* CSS Document */


.printonly {
	display: none;
}


/******************************* Main Layout *******************************/

body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666;
}

h1, h2, h3, h4, p, ul, li, dl, dd, dt {
	margin: 0;
	padding: 0;
}

#container { 
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
} 
#header { 
	background-image: url(../images/headerbknd.jpg); 
	margin: 0;
	padding: 0;
	width: 850px;
	height: 166px;
	display: block;
	position: relative;
	overflow: visible;
	z-index: 30;
} 

#promobox { 
	background: #FFF url(../images/dividerline.gif) no-repeat 0 0;
	margin: 0;
	padding: 0;
	width: 850px;
	min-height: 1px;
	display: block;
	position: relative;
	overflow: visible;
	z-index: 1;
}

#promobox img {
	margin: 0;
}


#header .phonenumber {
	float: left;
	position: relative;
	top: 10px;
	left: -115px;
	font-size: 90%;
}

#header .slogan {
	float: right;
	position: relative;
	top: 10px;
	right: 42px;
	font-size: 90%;
}

#centerArea {
	margin: 3px 0 0 0;
	padding: 0;
	width: 850px;
	background-image:url(../images/centerbknd.jpg);
	background-position:top;
	background-repeat: repeat-y;
	overflow:auto;
}

#centerArea2 {
	margin: 0;
	padding: 0;
	width: 850px;
	background-image:url(../images/centerbkndtop.jpg);
	background-position:top;
	background-repeat: no-repeat;
	overflow:auto;
}

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin: 0;
	padding: 0;
}

#main {
	float: left; /* since this element is floated, a width must be given */
	position: relative;
	width: 480px;
	min-height: 350px;
	margin: 35px 25px 15px 35px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #main div's text to fill the #sidebar space when the content in #sidebar ends. */
	padding: 0 35px 35px 0;
	border-right: 1px solid rgb(205,205,205);
}

#main.onecolumn {
	float: left; /* since this element is floated, a width must be given */
	width: 745px;
	min-height: 350px;
	margin: 35px 0 15px 35px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #main div's text to fill the #sidebar space when the content in #sidebar ends. */
	padding: 0 35px 35px 0;
	border: none;
}

#footer { 
	margin: 0;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(../images/footerbknd.jpg);
	background-position:top;
	background-repeat:no-repeat;
	width: 850px;
	height: 90px;
} 

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}





/******************************* Styles for Main Area *******************************/

#main img {
	border: none;
}

#main h1, #main h2, #main h3, #main h4, #main h5, #main h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#main a {
	color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid #666;
}

#main a:visited {
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid #666;
}

#main a:hover, #main a:visited:hover {
	color: #FFF;
	background-color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
	cursor:pointer;
}


#main h1 {
	font: 170% Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: rgb(37,170,225);
	line-height: 1.35em;
	margin-top: .75em;
	margin-bottom: .5em;
}

#main h2 {
	font: 130% Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #333;
	line-height: 1.35em;
	margin-top: 1em;
}

#main h3 {
	font: 120% Verdana, Arial, Helvetica, sans-serif;
	color: rgb(37,170,225);
	line-height: 1.25em;
	margin-top: 1.5em;
	width: 100%;
	display: block;
}

#main h4 {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #333;
	font-weight: strong;
	line-height: 1.25em;
	margin-top: 0;
}

#main p {
	margin-top: .5em;
	margin-bottom: .5em;
	line-height: 1.5em;
}

#main ul {
	margin-left: 2.5em;
	line-height: 1.5em;
}

#main li {
	margin-top: .75em;
}

#main dl {
	line-height: 1.35em;
}

#main .divider {
	width: 100%;
	height: 1px;
	display: block;
	clear: both;
}

.floatright {
	float: right;
	margin: 5px 0 10px 15px;
}

.floatleft {
	float: left;
	margin: 5px 15px 10px 0;
}

.floatright img, .floatleft img, .caption img {
	margin: 0;
	padding: 0;
	border: 0;
}



#main .sidebarboxbottom {
	width: 250px;
	background-image: url(../images/sidecol-bottom.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 15px 0; 
	margin: 0;
	text-align:center;
}

#main .sidebarbox1 {
	float: right;
	position: relative;
	top: -10px;
	right: -46px;
	width: 250px;
	min-height: 220px;
	margin: 0 0 25px 0;
/*	margin: -10px -46px 25px 40px; */
	padding: 15px 0 0 0;
	background-image: url(../images/sidecol-first-top.jpg);
	background-position:top;
	background-repeat: no-repeat;
	font-weight: normal;
	color: #000000;
}

#main .sidebarboxbottom1 {
	width: 250px;
	min-height: 220px;
	background-image: url(../images/sidecol-bottom.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 15px 0; 
	margin: 0;
}

#main .sidebarbox1 .testimonyquote {
	font-size: 120%;
	color: rgb(37,170,225);
	margin: .5em 10px .75em 15px;
}

#main .sidebarbox1 .testimonyname {
	font-size: 85%;
	text-align: right;
	text-transform: uppercase;
	color: #666;
	margin: .75em 15px .5em 5px;
}

#main .postdate {
	text-transform: uppercase;
	color: #333;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

#main .backto {
	margin-top: 15px;
}

#main .backto p {
	line-height: 1em;
	padding-top: 15px;
}

#main .backto a {
	color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid #666;
}

#main .backto a:hover {
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
	cursor:pointer;
}

#main .backto a span{
	display: block;
	float: left;
	vertical-align:baseline;
	margin-top: 4px;
	margin-right: 2px;
	width: 9px;
	height: 9px;
	background-image: url(../images/backarrow-gray.gif);
	background-repeat: no-repeat;
	background-position: top;
	overflow: hidden;
	padding-right: 5px;
}

#main .backto a:hover span{
	display: block;
	float: left;
	vertical-align:baseline;
	width: 9px;
	height: 9px;
	background-image: url(../images/backarrow-blue.gif);
	background-repeat: no-repeat;
	background-position: top;
	overflow: hidden;
	padding-right: 5px;
}

#main dl.productlist {
	display: block;
	margin-top: 20px;
}

#main dl.productlist dt {
	display: block;
	width: 250px;
	float: left;
	margin: 0;
	padding: 0;
	font: 130% Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #333;
	border-top: 1px solid rgb(205,205,205);
}


#main dl.productlist dd {
	display: block;
	width: 485px;
	float: left;
	margin: 0 0 20px 0;
	text-align: left;
	padding:0 10px 0 0;
	border-top: 1px solid rgb(205,205,205);
}

#main dl.productlist dt a {
	display: block; 
	text-indent: -9009px;
	width: 210px;
	height: 49px;
	text-decoration: none;
	border: none;
	overflow: hidden;
	margin: 25px 0 0 0 ;
	padding: 0;
	cursor: pointer;
}

#main dl.productlist dt a.activefax { background: transparent url(../images/product-activefax.gif) no-repeat 0 0; }
#main dl.productlist dt a.ultimateid { background: transparent url(../images/product-ultimateid.gif) no-repeat 0 0; }
#main dl.productlist dt a.activereg { background: transparent url(../images/product-activereg.gif) no-repeat 0 0; }
#main dl.productlist dt a.activeforms { background: transparent url(../images/product-activeforms.gif) no-repeat 0 0; }
#main dl.productlist dt a.activescan { background: transparent url(../images/product-activescan.gif) no-repeat 0 0; }
#main dl.productlist dt a.activepfs { background: transparent url(../images/product-activepfs.gif) no-repeat 0 0; }
#main dl.productlist dt a.activeaudit { background: transparent url(../images/product-activeaudit.gif) no-repeat 0 0; }
#main dl.productlist dt a.activearchive { background: transparent url(../images/product-activearchive.gif) no-repeat 0 0; }
#main dl.productlist dt a.activeq { background: transparent url(../images/product-activeq.gif) no-repeat 0 0; }
#main dl.productlist dt a.activehim { background: transparent url(../images/product-activehim.gif) no-repeat 0 0; }
#main dl.productlist dt a.activetrack { background: transparent url(../images/product-activetrack.gif) no-repeat 0 0; }
#main dl.productlist dt a.activecheck { background: transparent url(../images/product-activecheck.gif) no-repeat 0 0; }

#main dl.productlist dt a.activefax,
#main dl.productlist dt a.ultimateid,
#main dl.productlist dt a.activereg,
#main dl.productlist dt a.activeforms,
#main dl.productlist dt a.activescan,
#main dl.productlist dt a.activepfs,
#main dl.productlist dt a.activeaudit,
#main dl.productlist dt a.activearchive,
#main dl.productlist dt a.activeq,
#main dl.productlist dt a.activehim,
#main dl.productlist dt a.activetrack,
#main dl.productlist dt a.activecheck
{ border: none; text-decoration:none; }

#main dl.productlist dt a.activefax:hover,
#main dl.productlist dt a.ultimateid:hover,
#main dl.productlist dt a.activereg:hover,
#main dl.productlist dt a.activeforms:hover,
#main dl.productlist dt a.activescan:hover,
#main dl.productlist dt a.activepfs:hover,
#main dl.productlist dt a.activeaudit:hover,
#main dl.productlist dt a.activearchive:hover,
#main dl.productlist dt a.activeq:hover,
#main dl.productlist dt a.activehim:hover,
#main dl.productlist dt a.activetrack:hover,
#main dl.productlist dt a.activecheck:hover,
#main dl.productlist dt a.activefax:visited:hover,
#main dl.productlist dt a.ultimateid:visited:hover,
#main dl.productlist dt a.activereg:visited:hover,
#main dl.productlist dt a.activeforms:visited:hover,
#main dl.productlist dt a.activescan:visited:hover,
#main dl.productlist dt a.activepfs:visited:hover,
#main dl.productlist dt a.activeaudit:visited:hover,
#main dl.productlist dt a.activearchive:visited:hover,
#main dl.productlist dt a.activeq:visited:hover,
#main dl.productlist dt a.activehim:visited:hover,
#main dl.productlist dt a.activetrack:visited:hover,
#main dl.productlist dt a.activecheck:visited:hover
{ background-position: 0 -49px; border: none; text-decoration: none; }




#main dl.latestnews {
	display: block;
}

#main dl.latestnews dt {
	display: block;
	width: 75px;
	float: left;
	clear: left;
	margin: 0;
	font-weight: bold;
	padding:0;
}

#main dl.latestnews dd {
	display: block;
	width: 400px;
	margin: 10px 0 15px 75px;
	text-align: left;
	padding:0;
}

#main dl.latestnews dd span {
	font-size: 80%;
	text-transform: uppercase;
}

#main dl.eventlist {
	display: block;
	width: 250px;
}

#main dl.eventlist dt {
	display: block;
	width: 75px;
	height: 59px;
	float: left;
	clear: left;
	margin: 0;
	background: transparent url(../images/dateboxbknd-main.gif) no-repeat 0 0;
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	padding-top: 9px;
	text-align: center;
}

#main dl.eventlist dt span {
	font-size: 16px;
	text-transform: uppercase;
}

#main dl.eventlist dd {
	display: block;
	width: 160px;
	margin: 25px 2px 25px 75px;
	text-align: left;
}

#main dl.eventlist dd p {
	font-size: 10px;
	line-height: 14px;
	color: #666;
	margin: 0;
	padding: 0;
}

#main dl.eventlist dd p strong {
	color: #333;
}

#main .divline {
	display: block;
	overflow:hidden;
	height: 1px;
	background-color: rgb(205,205,205);
	margin: 20px 0 20px 0;
	clear: both;
}

#main .features h2 {
	text-indent: 20px;
}

#main .features p {
	margin-left: 20px;
}

#main .purple {	background: transparent url(../images/check-purple.gif) no-repeat 0 0; }

#main .orange {	background: transparent url(../images/check-orange.gif) no-repeat 0 0; }

#main .blue { background: transparent url(../images/check-blue.gif) no-repeat 0 0; }

#main .green { background: transparent url(../images/check-green.gif) no-repeat 0 0; }

#main .yellow {	background: transparent url(../images/check-yellow.gif) no-repeat 0 0; }

#main .pink { background: transparent url(../images/check-pink.gif) no-repeat 0 0; }

#main .red { background: transparent url(../images/check-red.gif) no-repeat 0 0; }

#main .teal { background: transparent url(../images/check-teal.gif) no-repeat 0 0; }

#main .brown { background: transparent url(../images/check-brown.gif) no-repeat 0 0; }

#main .ltblue { background: transparent url(../images/check-ltblue.gif) no-repeat 0 0; }

#main .peach { background: transparent url(../images/check-peach.gif) no-repeat 0 0; }

#main .gray { background: transparent url(../images/check-gray.gif) no-repeat 0 0; }

#main .lime { background: transparent url(../images/check-lime.gif) no-repeat 0 0; }



/******************************* Styles for Sidebar *******************************/

#sidebar h1, #sidebar h2, #sidebar h3, #sidebar h4, #sidebar p, #sidebar ul {
 margin-left: 15px;
 color: #666;
}

#sidebar .indent h1, #sidebar .indent h2, #sidebar .indent h3, #sidebar .indent h4, #sidebar .indent p, #sidebar .indent ul {
 margin-left: 8px;
}


#sidebar .divline {
	display: block;
	overflow:hidden;
	height: 1px;
	background-color: rgb(205,205,205);
	margin: 20px 0 20px 0;
	clear: both;
}


#sidebar h2.upcomingevents {
	text-indent: -9009px;
	background: url(../images/text-upcomingevents.gif);
	display: block;
	overflow: hidden;
	width: 250px;
	height: 15px;
	margin:0;
	padding:0;
}

#sidebar h2.officelocations {
	text-indent: -9009px;
	background: url(../images/text-officelocations.gif);
	display: block;
	overflow: hidden;
	width: 250px;
	height: 15px;
	margin:0;
	padding:0;
}

#sidebar h2.tradeshowcalendar {
	text-indent: -9009px;
	background: url(../images/text-tradeshowcalendar.gif);
	display: block;
	overflow: hidden;
	width: 250px;
	height: 15px;
	margin:0;
	padding:0;
}

#sidebar h2.latestnews {
	text-indent: -9009px;
	background: url(../images/text-latestnews.gif);
	display: block;
	overflow: hidden;
	width: 250px;
	height: 15px;
	margin:0;
	padding:0;
}

#sidebar img {
	border: none;
}

#sidebar h1, #sidebar h2, #sidebar h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#sidebar a {
	color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid #666;
}

#sidebar a:visited {
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid #666;
}

#sidebar a:hover, #sidebar a:visited:hover {
	color: #FFF;
	background-color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
	cursor:pointer;
}


#sidebar h1 {
	font: 140% Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: rgb(37,170,225);
	line-height: 1.35em;
	margin-top: .75em;
	margin-bottom: .5em;
}

#sidebar h2 {
	font: 120% Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: rgb(37,170,225);
	line-height: 1.35em;
	margin: 3.5em 0 0 0;
}

#sidebar h3 {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: rgb(37,170,225);
	line-height: 1.25em;
	margin-top: 1.5em;
}

#sidebar p {
	font: 85% Verdana, Arial, Helvetica, sans-serif;
	margin: .5em 0 1em 0;
	line-height: 1.5em;
}

#sidebar ul {
	margin-left: 2.5em;
	line-height: 1em;
}

#sidebar li {
	margin-top: .5em;
}

#sidebar .divider {
	width: 100%;
	height: 1px;
	display: block;
	clear: both;
}

#sidebar .indent {
	margin-left: 17px;
	border-left: 1px solid rgb(37,170,225);
}


#sidebar p.caption {
	margin: 0;
	line-height: 1.25em;
	font-size: 85%;
	font-style: italic;
	text-align: center;
	color: #666;
}


#sidebar dl.latestnews {
	display: block;
}

#sidebar dl.latestnews dt {
	display: block;
	width: 60px;
	float: left;
	clear: left;
	margin: 2px 0 15px 15px;
	font-weight: bold;
	font-size: 85%;
}

#sidebar dl.latestnews dd {
	display: block;
	width: 160px;
	margin: 15px 2px 15px 83px;
	text-align: left;
}

#sidebar dl.latestnews dd span {
	line-height: 14px;
	font-size: 90%;
	text-transform: uppercase;
}

#sidebar dl.latestnews dd p {
	font-size: 10px;
	line-height: 14px;
	color: #666666;
	margin: 0;
	padding: 0;
}

#sidebar dl.eventlist {
	display: block;
	width: 250px;
}

#sidebar dl.eventlist dt {
	display: block;
	width: 60px;
	height: 59px;
	float: left;
	clear: left;
	text-align: center;
	margin: 0 0 0 15px;
	background: transparent url(../images/dateboxbknd.gif) no-repeat 0 0;
	color: rgb(37,170,225);
	font-size: 14px;
	line-height: 20px;
	padding-top: 9px;
}

#sidebar dl.eventlist dt span {
	display:block;
	font-size: 16px;
	text-transform: uppercase;
}

#sidebar dl.eventlist dt span.twomonth {
	font-size: 13px;
	letter-spacing: -1px; 
}

#sidebar dl.eventlist dd {
	display: block;
	width: 160px;
	min-height: 57px;
	margin: 15px 2px 15px 83px;
	text-align: left;
}

#sidebar dl.eventlist dd p {
	font-size: 10px;
	line-height: 14px;
	color: #666666;
	margin: 0;
	padding: 0;
}

#sidebar .sidebarboxbottom {
	width: 250px;
	background-image: url(../images/sidecol-bottom.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 15px 0; 
	margin: 0;
	text-align:center;
}

#sidebar .sidebarbox1 {
	width: 250px;
	min-height: 220px;
	margin: 25px 0;
	padding: 15px 0 0 0;
	background-image: url(../images/sidecol-first-top.jpg);
	background-position:top;
	background-repeat: no-repeat;
	font-weight: normal;
	color: #000000;
}

#sidebar .sidebarboxbottom1 {
	width: 250px;
	min-height: 220px;
	background-image: url(../images/sidecol-bottom.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 15px 0; 
	margin: 0;
}

#sidebar .testimonyquote {
	font-size: 120%;
	color: rgb(37,170,225);
	margin: .5em 10px .75em 15px;
}

#sidebar .testimonyname {
	text-align: right;
	text-transform: uppercase;
	margin: .75em 15px .5em 5px;
}

#sidebar .screens {
	display: block;
	width: 250px;
	margin: 35px 0 0 0;
}


#sidebar a.purple span { border: 1px solid rgb(175,75,254); }

#sidebar a.orange span { border: 1px solid rgb(254,175,75); }

#sidebar a.blue span { border: 1px solid rgb(75,95,254); }

#sidebar a.green span { border: 1px solid rgb(58,201,40); }

#sidebar a.yellow span { border: 1px solid rgb(254,225,2); }

#sidebar a.pink span { border: 1px solid rgb(254,75,213); }

#sidebar a.red span { border: 1px solid rgb(229,15,2); }

#sidebar a.teal span { border: 1px solid rgb(40,201,196); }

#sidebar a.brown span { border: 1px solid rgb(165,125,75); }

#sidebar a.ltblue span { border: 1px solid rgb(0,196,254); }

#sidebar a.peach span { border: 1px solid rgb(230,205,155); }

#sidebar a.gray span { border: 1px solid rgb(100,100,95); }







/******************************* Styles for Footer *******************************/

#footer p {
	text-align: center;
}

#footer .copyright {
	margin: 0;
	padding: 0;
	float: right;
	color: #999;
}

#footer .footernav { 
	width: 850px;
	display: block;
	float: left;
	margin: 35px 0 0 0;
	color: #FFF;
	font-size: 100%;
}

#footer .footernav a {
	color: #FFF;
	text-decoration: none;
	border: none;
}

#footer .footernav a:hover {
	text-decoration: none;
	color: #FFF;
	border-bottom: 1px solid #FFF;
}

#footer .sitecredit {
	width: 850px;
	display: block;
	text-align: center;
	position: relative;
	top: 50px;
}

#footer .siteby {
	text-align: center;
	border: none;
}


/******************************* Styles for Site Map *******************************/


#main #sitemap ul {
	list-style: none;
	margin: 0;
}

#main #sitemap ul li.category {
	margin: 25px 0;
}

#main #sitemap ul li.category ul {
	margin: 0;
}

#main #sitemap ul li.category ul li {
	list-style: none;
	margin-left: 15px;
	padding-left: 15px;
	font-size: 85%;
	background: transparent url(../images/nav/navarrow.gif) no-repeat 0 5px;
	z-index: 500;
}

#main #sitemap ul li.category a.category, #main #sitemap ul li.category a.category:visited {
	color: rgb(37,170,225);
}

#main #sitemap ul li.category a.category:hover, #main #sitemap ul li.category a.category:visited:hover {
	background-color: rgb(37,170,225);
	color: #FFF;
}



/******************************* Styles for Navigation *******************************/



	#mainnav {
	  position: absolute;
	  top:118px;
	  left:0px;
      width:895px;
	  height:44px;
	  display:block;
	  background: #FFF url(../images/nav/bar-end.gif) no-repeat 750px 0;
      margin:2px 0;
	  padding: 0;
	  overflow: hidden;
	  z-index: 100;
      }


	#mainnav ul, #mainnav li {
		list-style: none;
		margin: 0;
		padding: 0;
		display:block;
		float:left;
	}
	
	#mainnav li a {
		display: block;
		position: relative;
		top: 0;
		outline: none;
		border: none;
		text-decoration: none;
		text-indent: -9009px;
		margin: 0;
		padding: 0;
		height: 44px;
	}

	#mainnav li#nav-home a {
		width:66px;
		background:transparent url(../images/nav/home.gif) no-repeat 0 0;
	}		

	#mainnav li#nav-about a {
		width:129px;
		background:transparent url(../images/nav/about.gif) no-repeat 0 0;
		left: -18px; 
	}
	#mainnav li#nav-about a:hover, #mainnav li#nav-about.selected a, #mainnav li#nav-about.default a {
		background-position: 0 -44px;
	}
		
	#mainnav li#nav-products a {
		width:134px;
		background:transparent url(../images/nav/products.gif) no-repeat 0 0;
		left: -39px; 
	}
	#mainnav li#nav-products a:hover, #mainnav li#nav-products.selected a, #mainnav li#nav-products.default a {
		background-position: 0 -44px;
	}
	
	#mainnav li#nav-services a {
		width:126px;
		background:transparent url(../images/nav/services.gif) no-repeat 0 0;
		left: -60px;
	}
	#mainnav li#nav-services a:hover, #mainnav li#nav-services.selected a, #mainnav li#nav-services.default a {
		background-position: 0 -44px;
	}
	
	#mainnav li#nav-newsevents a {
		width:172px;
		background:transparent url(../images/nav/newsevents.gif) no-repeat 0 0;
		left: -81px;
	}
	#mainnav li#nav-newsevents a:hover, #mainnav li#nav-newsevents.selected a, #mainnav li#nav-newsevents.default a {
		background-position: 0 -44px;
	}
	
	#mainnav li#nav-support a {
		width:121px;
		background:transparent url(../images/nav/support.gif) no-repeat 0 0;
		left: -102px;
	}
	#mainnav li#nav-support a:hover, #mainnav li#nav-support.selected a, #mainnav li#nav-support.default a {
		background-position: 0 -44px;
	}
	
	#mainnav li#nav-contact a {
		width:146px;
		background:transparent url(../images/nav/contact.gif) no-repeat 0 0;
		left: -123px;
	}	
	#mainnav li#nav-contact a:hover, #mainnav li#nav-contact.selected a, #mainnav li#nav-contact.default a {
		background-position: 0 -44px;
	}
	
	


  /* ######### Style for Drop Down Menu ######### */
	
	.dropmenu{
	position:absolute;
	border: 1px solid rgb(180,180,180); /*THEME CHANGE HERE*/
	border-width: 0 1px 0 1px;
	font-weight: normal;
	font-size: 85%;
	line-height: 1em;
	z-index:1000;
	width: 173px;
	display: none;
	background-color: #FFF;
	}
	
	
	.dropmenu a{
	width: auto;
	display: block;
/*	text-indent: 9px; */
	border: 0 solid rgb(180,180,180); /*THEME CHANGE HERE*/
	border-bottom-width: 1px;
	padding: 6px 0 6px 27px;
	text-decoration: none;
    color: #666;
	}
	
	* html .dropmenu a{ /*IE only hack*/
	width: 100%; 
	}
	
	.dropmenu a:hover { /*THEME CHANGE HERE*/
    color: rgb(37,170,225);
	border-color: rgb(180,180,180); /*THEME CHANGE HERE*/
	background: #FFF url(../images/nav/navarrow.gif) no-repeat 12px 6px;
	}
	
	.dropmenu a.current, .dropmenu a.current:hover { /*THEME CHANGE HERE*/
    color: rgb(37,170,225);
	border-color: rgb(180,180,180); /*THEME CHANGE HERE*/
	background-image: none;
	}




 /************************** Style for Promo Box Links **************************/


#promobox h1 {
	text-indent: -9009px;
	display: block;
	overflow: hidden;
	width: 850px;
	height: 168px;
	margin:0;
	padding:0;
}

#promobox .news { background: #FFF url(../images/top-news.jpg) no-repeat 0 0; }

#promobox .events { background: #FFF url(../images/top-events.jpg) no-repeat 0 0; }

#promobox .pressrelease { background: #FFF url(../images/top-pressrelease.jpg) no-repeat 0 0; }

#promobox .sitemap { background: #FFF url(../images/top-sitemap.jpg) no-repeat 0 0; }

#promobox .aboutus { background: #FFF url(../images/top-aboutus.jpg) no-repeat 0 0; }

#promobox .partners { background: #FFF url(../images/top-partners.jpg) no-repeat 0 0; }

#promobox .services { background: #FFF url(../images/top-services.jpg) no-repeat 0 0; }

#promobox .newsevents { background: #FFF url(../images/top-newsevents.jpg) no-repeat 0 0; }

#promobox .contactus { background: #FFF url(../images/top-contact.jpg) no-repeat 0 0; }

#promobox .jobs { background: #FFF url(../images/top-jobs.jpg) no-repeat 0 0; }

#promobox .onlineapp { background: #FFF url(../images/top-onlineapp.jpg) no-repeat 0 0; }

#promobox .activeware { background: #FFF url(../images/top-activeware.jpg) no-repeat 0 0; }

#promobox .activearchive { background: #FFF url(../images/top-activearchive.jpg) no-repeat 0 0; }

#promobox .activeaudit { background: #FFF url(../images/top-activeaudit.jpg) no-repeat 0 0; }

#promobox .activefax { background: #FFF url(../images/top-activefax.jpg) no-repeat 0 0; }

#promobox .activeforms { background: #FFF url(../images/top-activeforms.jpg) no-repeat 0 0; }

#promobox .activehim { background: #FFF url(../images/top-activehim.jpg) no-repeat 0 0; }

#promobox .activepfs { background: #FFF url(../images/top-activepfs.jpg) no-repeat 0 0; }

#promobox .activeq { background: #FFF url(../images/top-activeq.jpg) no-repeat 0 0; }

#promobox .activereg { background: #FFF url(../images/top-activereg.jpg) no-repeat 0 0; }

#promobox .activescan { background: #FFF url(../images/top-activescan.jpg) no-repeat 0 0; }

#promobox .ultimateid { background: #FFF url(../images/top-ultimateid.jpg) no-repeat 0 0; }

#promobox .activetrack { background: #FFF url(../images/top-activetrack.jpg) no-repeat 0 0; }

#promobox .activecheck { background: #FFF url(../images/top-activecheck.jpg) no-repeat 0 0; }

	 
#promobox a.ultimateid {
	display: block;
	background: transparent url(../images/promoboxbknd.jpg) no-repeat 0 0;
	position: absolute;
	width: 850px;
	height: 268px;
	z-index: 400;
	cursor: pointer;
	border: 0;
}

#promobox a.viewallproducts {
	display: block;
	background: transparent url(../images/viewallproducts.gif) no-repeat 0 0;
	position: absolute;
	width: 210px;
	height: 49px;
 	left: 595px;
 	top: 190px;
	z-index: 500;
	cursor: pointer;
	border: 0;
}

#promobox a.viewallproducts2 {
	display: block;
	background: transparent url(../images/viewallproducts.gif) no-repeat 0 0;
	position: absolute;
	width: 210px;
	height: 49px;
 	left: 595px;
 	top: 90px;
	z-index: 500;
	cursor: pointer;
	border: 0;
}

#promobox a.viewallproducts:Hover, #promobox a.viewallproducts2:Hover {
	background-position: 0 -49px;
}	 

 /************************** Style for Contact Forms **************************/


#contact-area {
	width: 490px;
	margin-top: 25px;
	color: #666;
	display: block;
}

#contact-area input, #contact-area textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 378px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(180,180,180);
	/* I added the following */
	display: block;
	float: left;
}

#contact-area select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 430px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(180,180,180);
	/* I added the following */
	display: block;
	float: left;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 1px solid rgb(37,170,225);
}

#contact-area input#submit-button {
	width: 100px;
	float: right;
	text-transform: uppercase;
	background: rgb(100,100,100) url(../images/buttonbknd.jpg) repeat-x 0 0;
	color: #FFF;
}

#contact-area input#submit-button:focus, #contact-area input#submit-button:hover {
	border: 1px solid rgb(37,170,225);
	background-position: 0 -44px;
	cursor: pointer;
}

#contact-area label {
	float: left;
	text-align: right;
	margin-right: 10px;
	width: 90px;
	padding-top: 5px;
	/* I added the following */
	font-size: 12px;
	display: block;
}
#contact-area label.state {
	width: 55px;
}

#contact-area label.zip {
	width: 30px;
}

#contact-area input#name, #contact-area input#email, #contact-area input#company, #contact-area input#city {
	width: 151px;
}

#contact-area input#phone, #contact-area input#fax {
	width: 115px;
}

#contact-area input#state {
	width: 25px;
}

#contact-area input#zip {
	width: 73px;
}

#contact-area input#checkbox {
	width: 15px;
	height: 15px;
}

#contact-area input#required, #contact-area input#event {
	display:none;
}

#contact-area .divider {
	width: 490px;
	height: 1px;
	display: block;
	clear: both;
}

#contact-area #footnote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 2.5em;
	display: block;
	float: left;
	margin-left: 110px;
}

#contact-area .indented {
	margin-left: 100px;
}

#contact-area input.error, textarea.error {
	background-color: rgb(251,247,192); /* was rgb(255,240,215) */
}

#contact-area #errormsg  {
	margin-left: 100px;
}

#contact-area #errormsg li {
	text-align: left;
	list-style-type: none;
}


 /************************** Style for Employment App **************************/


#employmentapp {
	width: 490px;
	margin-top: 25px;
	color: #666;
	display: block;
}

#employmentapp fieldset {
	border: none;
	width: 490px;
}

#employmentapp fieldset legend {
	font: 120% Verdana, Arial, Helvetica, sans-serif;
	color: rgb(37,170,225);
	line-height: 1.25em;
	margin: 1em 0;
}

#employmentapp input, #employmentapp textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 348px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(180,180,180);
	/* I added the following */
	display: block;
	float: left;
}


#employmentapp select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 430px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(180,180,180);
	/* I added the following */
	display: block;
	float: left;
}

#employmentapp textarea {
	height: 55px;
	width: 348px;
}

#employmentapp textarea:focus, #employmentapp input:focus {
	border: 1px solid rgb(37,170,225);
}

#employmentapp input#submit-button {
	width: 100px;
	float: right;
	text-transform: uppercase;
	background: rgb(100,100,100) url(../images/buttonbknd.jpg) repeat-x 0 0;
	color: #FFF;
}

#employmentapp input#submit-button:focus, #employmentapp input#submit-button:hover {
	border: 1px solid rgb(37,170,225);
	background-position: 0 -44px;
	cursor: pointer;
}

#employmentapp label {
	float: left;
	text-align: right;
	margin-right: 10px;
	width: 90px;
	padding-top: 5px;
	/* I added the following */
	font-size: 12px;
	display: block;
}

#employmentapp .question {
	float: left;
	text-align: right;
	margin-right: 20px;
	width: 340px;
	padding-top: 5px;
	/* I added the following */
	font-size: 12px;
	display: block;
}

#employmentapp .answers {
	float: left;
	text-align: right;
	margin-right: 0;
	width: auto;
	padding-top: 5px;
	/* I added the following */
	font-size: 12px;
	display: block;
}


#employmentapp .answers label {
	float: left;
	text-align: left;
	margin-right: 15px;
	padding-top: 0px;
	/* I added the following */
	font-size: 12px;
	display: block;
	width: auto;
}

#employmentapp .answers input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	width: auto;
	color: #333333;
	border: none;
	/* I added the following */
	display: block;
	float: left;
	margin-right:5px;
}

#employmentapp .asquestion {
	float: left;
	text-align: left;
	margin-left: 30px;
	margin-bottom: 10px;
	width: 300px;
	/* I added the following */
	font-size: 12px;
	display: block;
}

#employmentapp .answerstack {
	float: left;
	margin-left: 40px;
	margin-bottom: 5px;
	width: 160px;
	/* I added the following */
	font-size: 12px;
	display: block;
}


#employmentapp .answerstack label {
	float: none;
	text-align: left;
	margin-right: 0;
	padding: 0;
	/* I added the following */
	font-size: 12px;
	display: block;
	width: auto;
	height: 25px;
}

#employmentapp .answerstack input {
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	width: auto;
	height: 15px;
	padding: 0;
	color: #333333;
	border: none;
	/* I added the following */
	display: block;
	margin-right:5px;
}

#employmentapp textarea#coverletter {
	height: 90px;
}

#employmentapp label.position, #employmentapp label.startdate, #employmentapp label.degrees, #employmentapp label.skills, #employmentapp label.interests, #employmentapp label.coverletter, #employmentapp label.activities, #employmentapp label.employername, #employmentapp label.employeraddress, #employmentapp label.dates, #employmentapp label.salary, #employmentapp label.reference, #employmentapp label.referencephone {
	width: 120px;
}

#employmentapp label.desiredsalary {
	width: 116px;
}

#employmentapp label.prevposition, #employmentapp label.reason, #employmentapp label.relationship {
	width: 96px;
}

#employmentapp label.state {
	width: 55px;
}

#employmentapp label.zip {
	width: 30px;
}

#employmentapp label.disclaimer {
	width: 420px;
	text-align: left;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	display: block;
}

#employmentapp input#name, #employmentapp input#company, #employmentapp input#city {
	width: 151px;
}

#employmentapp input#email, #employmentapp input#address, #employmentapp input#referredby {
	width: 378px;
}

#employmentapp input#startdate, #employmentapp input#desiredsalary, #employmentapp input#dates1, #employmentapp input#salary1, #employmentapp input#referencephone1, #employmentapp input#dates2, #employmentapp input#salary2, #employmentapp input#referencephone2, #employmentapp input#dates3, #employmentapp input#salary3, #employmentapp input#referencephone3, #employmentapp input#dates4, #employmentapp input#salary4, #employmentapp input#referencephone4 {
	width: 105px;
}

#employmentapp input#position1, #employmentapp input#reason1, #employmentapp input#relationship1, #employmentapp input#position2, #employmentapp input#reason2, #employmentapp input#relationship2, #employmentapp input#position3, #employmentapp input#reason3, #employmentapp input#relationship3, #employmentapp input#position4, #employmentapp input#reason4, #employmentapp input#relationship4 {
	width: 125px;
}

#employmentapp input#phone, #employmentapp input#fax {
	width: 115px;
}

#employmentapp input#state {
	width: 25px;
}

#employmentapp input#zip {
	width: 73px;
}

#employmentapp input#checkbox {
	width: 15px;
	height: 15px;
}

#employmentapp input#uploadedfile {
}

#employmentapp input#disclaimer {
	width: 15px;
	height: 15px;
	margin-left: 20px;
	margin-right:10px;
}

#employmentapp input#required, #employmentapp input#maxfilesize, #employmentapp input#event {
	display:none;
}

#employmentapp .divider {
	width: 490px;
	height: 1px;
	display: block;
	clear: both;
}

#employmentapp #footnote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 2.5em;
	display: block;
	float: left;
	margin-left: 110px;
}

#employmentapp .indented {
	margin-left: 100px;
}

#employmentapp input.error, textarea.error {
	background-color: rgb(251,247,192); /* was rgb(255,240,215) */
}

#employmentapp #errormsg  {
	margin-left: 100px;
}

#employmentapp #errormsg li {
	text-align: left;
	list-style-type: none;
}




     /****************** Style for tables *****************/
	 
table a,
table a:link,
table a:visited {
	border:none;
}							
	
img {
	border:0;
	margin-top:.25em;
}	
	
table {
	width:90%;
	border-top:1px solid rgb(208,228,245);
	border-right:1px solid rgb(208,228,245);
	margin:1em auto;
	border-collapse:collapse;
}

tr.odd td, th	{
	background: rgb(230,243,255);
}

tr.odd .column1	{

}	

.column1	{
	font-weight: bold;
}

td {
	color: #666;
	border-bottom:1px solid rgb(208,228,245);
	border-left:1px solid rgb(208,228,245);
	padding:.3em 1em;
	text-align:left;
	vertical-align: top;
}				

th {
	font-weight: normal;
	color: rgb(208,228,245);
	text-align:left;
	border-bottom: 1px solid rgb(208,228,245);
	border-left:1px solid rgb(208,228,245);
	padding:.3em 1em;
	font-size: 115%;
}						

table.plain {
	border: none;
	width:100%;
	margin:1em auto;
	border-collapse:collapse;
}

table.plain .boldcolumn {
	font-weight: bold;
}

table.plain td {
	color: #666;
	border: none;
	padding: 0;
	text-align:left;
	vertical-align: top;
}				

table.plain th {
	font-weight: normal;
	color: rgb(208,228,245);
	text-align:left;
	border-bottom: 1px solid rgb(208,228,245);
	padding: .5em 0;
	font-size: 115%;
}		

table.plain tr {
	background-color: #FFFFFF;
}

table a, table.plain a {
	color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
}

table a:hover, table.plain a:hover {
	color: #FFF;
	background-color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
}

table a:visited, table.plain a:visited {
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
}

table a:visited:hover, table.plain a visited:hover {
	color: #FFF;
	background-color: rgb(37,170,225);
	text-decoration: none;
	border-bottom: 1px solid rgb(37,170,225);
}









     /****************** Style for misc *****************/

.larger h1, .larger h2, .larger h3, .larger h4, .larger p {
	font-size: 110%;
}


.homelink {
	display: block;
	background: url(../images/healthwarelogo.jpg) no-repeat;
	position: absolute;
	width: 300px;
	height: 115px;
	top: 0;
	left: 0;
	z-index: 500;
	cursor: pointer;
}



a.homelink,
a.homelink:visited
{ 
	border: 0;
	text-decoration: none;
	cursor: pointer;
}


sup {
	font-size: 65%;
	line-height: 0;
}


.siteby a, .siteby a:visited {
	display: block;
	text-indent: -9009px;
	width: 850px;
	height: 25px;
	border: none;
	text-decoration: none;
	overflow: hidden;
	margin: -10px auto 10px auto;
	padding: 0;
	background: transparent url(../images/siteby.gif) no-repeat center top;
	z-index: 50;
}

.siteby a:hover, .siteby a:visited:hover {
	border: none;
	text-decoration: none;
	background: transparent url(../images/siteby.gif) no-repeat center bottom;
}






/* **** BEGIN THUMBNAIL POPUP CODE **** */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#sidebar a.thumbnail, #sidebar a.thumbnail:visited{
position: relative;
display: block;
z-index: 0;
border: 0;
width: 250px;
margin: 35px 0 0 0;
color: #666;

}

#sidebar a.thumbnail img {
border: 0;
display: block;
margin: 0 auto 5px auto;
}

#sidebar a.thumbnail:hover, #sidebar a.thumbnail:visited:hover{
background-color: transparent;
z-index: 1000;
border: 0;
color: rgb(37,170,225);
}

#sidebar a.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #666;
padding: 5px;
left: -1000px;
visibility: hidden;
color: #FFF;
text-decoration: none;
}

#sidebar a.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
border: 0;
padding: 2px;
width:600px;
margin: 0;
}

#sidebar a.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
position: absolute;
top: 35px;
left: -460px; /*position where enlarged image should offset horizontally */
}

/* **** END THUMBNAIL POPUP CODE **** */