﻿/***************************************** tabbed ******************************/
@charset "UTF-8";
/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */
/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}
/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}
/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 2px 0px 0px;
	font: bold 10pt Arial, Helvetica, sans-serif;
	background-color: #DDD;
	list-style: none;
	border-left: solid 1px #999;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	color: #ff7e00;
}
/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background-color: #CCC;
}
/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}
/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-top: solid 1px #999;
	background-color: #ffffff;
}
/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 4px;
}
/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}
/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */
/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}
/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}
/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}
/*********************************************************************************/
body {
	/*height: 100%;*/
}
html {
	height: 100%;
}
body {
	background-color: #ffffff;
	margin: 0px;
	padding: 0px;
	background-image: url('../images/main-temp/bg.gif');
	background-repeat: repeat-x;
}
table {
	border-collapse: collapse;
	margin: 0;
	border-width: 0px;
}
td {
	padding: 0;
}
img {
	border-width: 0px;
}
.w-h-100-p {
	width: 100%;
	height: 100%;
	vertical-align: top;
}
.w-100-p {
	width: 100%;
	vertical-align: top;
}
.v-a-t {
	vertical-align: top;
}
.v-a-m {
	vertical-align: middle;
}
.t-a-c {
	text-align: center;
}
h1, h2 {
	text-indent: -9000px;
	padding: 0px;
	margin: 0px;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	text-decoration: none;
	font-weight: bold;
	color: #8a8a8a;
	line-height: 20px;
	text-align: left;
	padding: 3px;
	margin: 0px;
}
h4 {
	font-family: Verdana, Tahoma, Arial;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #ff7e00;
	padding: 3px;
	margin: 0px;
	line-height: 20px;
}
h4 a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #ff7e00;
	line-height: 20px;
}
h4 a:hover {
	text-decoration: none;
	color: #165f9e;
	line-height: 20px;
}
h5 {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: bold;
	color: #165f9e;
	padding: 3px;
	margin: 0px;
	line-height: 20px;
}
h5 a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: bold;
	color: #165f9e;
	line-height: 20px;
}
h5 a:hover {
	text-decoration: none;
	color: #ff7e00;
	line-height: 20px;
}
h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #ff7e00;
	padding: 3px;
	margin: 0px;
	line-height: 20px;
}
h6 a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #ff7e00;
	line-height: 20px;
}
h6 a:hover {
	text-decoration: none;
	color: #165f9e;
	line-height: 20px;
}
p {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	color: #000000;
	line-height: 20px;
	text-align: justify;
	padding: 3px;
	margin: 0px;
}
p a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	color: #165f9e;
	line-height: 20px;
}
p a:hover {
	text-decoration: underline;
	color: #165f9e;
	line-height: 20px;
}
.footer-bg {
	width: 100%;
	height: 130px;
	background-image: url('../images/main-temp/footer-bg.gif');
	background-repeat: repeat-x;
	text-align: center;
}
.main-container {
	width: 950px;
	height: 100%;
	margin: 0px auto 0px auto;
	vertical-align: top;
}
.header-m-c {
	width: 950px;
	height: 146px;
}
.logo-m-c {
	width: 338px;
	height: 146px;
}
.logo-c {
	width: 322px;
	height: 110px;
	margin: 33px 0px 3px 16px;
}
.logo {
	width: 80px;
	height: 110px;
	background-image: url('../images/main-temp/logo.gif');
	background-repeat: no-repeat;
	float: left;
	display: block;
}
.logo-right {
	width: 242px;
	height: 110px;
	background-image: url('../images/main-temp/right-logo.gif');
	background-repeat: no-repeat;
}
.menu-m-c {
	width: 612px;
	height: 146px;
	vertical-align: top;
}
.menu-c {
	width: 416px;
	height: 60px;
	margin: 9px;
	float: right;
}
.hd-m-c {
	width: 950px;
	height: 204px;
}
.slog-m-c {
	width: 263px;
	height: 204px;
}
.slog-empty-1 {
	width: 16px;
}
.slog-empty-2 {
	width: 11px;
}
.slog-c {
	width: 247px;
	height: 77px;
	background-image: url('../images/main-temp/slog.gif');
	background-repeat: no-repeat;
}
.slog-txt {
	width: 247px;
	height: 127px;
	background-image: url('../images/main-temp/slog-txt.gif');
	background-repeat: no-repeat;
}
.slog-txt p {
	font-family: Verdana, Tahoma, Helvetica;
	font-size: 9pt;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
}
.hd-c {
	width: 676px;
	height: 204px;
}
.hd-1 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-1.jpg');
	background-repeat: no-repeat;
}
.hd-2 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-2.jpg');
	background-repeat: no-repeat;
}
.hd-3 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-3.jpg');
	background-repeat: no-repeat;
}
.hd-4 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-4.jpg');
	background-repeat: no-repeat;
}
.hd-5 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-5.jpg');
	background-repeat: no-repeat;
}
.hd-6 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-6.jpg');
	background-repeat: no-repeat;
}
.hd-7 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-7.jpg');
	background-repeat: no-repeat;
}
.hd-8 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-8.jpg');
	background-repeat: no-repeat;
}
.hd-9 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-9.jpg');
	background-repeat: no-repeat;
}
.hd-10 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-10.jpg');
	background-repeat: no-repeat;
}
.hd-11 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-11.jpg');
	background-repeat: no-repeat;
}
.hd-12 {
	width: 169px;
	height: 204px;
	background-image: url('../images/main-temp/hd-12.jpg');
	background-repeat: no-repeat;
}
.menu-txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #636363;
	line-height: 20px;
	text-align: center;
	padding: 3px;
	margin: 0px;
}
.menu-txt a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	color: #636363;
	line-height: 20px;
	text-align: center;
}
.menu-txt a:hover {
	text-decoration: none;
	color: #636363;
	line-height: 20px;
}
.content-m-c {
	width: 950px;
	height: 100%;
	vertical-align: top;
}
.content-l-c {
	width: 263px;
	height: 100%;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-bg.gif');
	background-repeat: repeat-y;
}
.left-menu-c {
	width: 224px;
	height: 279px;
	vertical-align: top;
	margin: 15px 23px 15px 16px;
}
.left-menu-hd {
	background-position: center center;
	width: 224px;
	height: 10px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-hd.gif');
	background-repeat: no-repeat;
}
.left-menu-about {
	background-position: center center;
	width: 224px;
	height: 40px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-about.gif');
	background-repeat: no-repeat;
}
.left-menu-products {
	background-position: center center;
	width: 224px;
	height: 40px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-products.gif');
	background-repeat: no-repeat;
}
.left-menu-careers {
	background-position: center center;
	width: 224px;
	height: 40px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-careers.gif');
	background-repeat: no-repeat;
}

.left-menu-footer {
	background-position: center center;
	width: 224px;
	height: 10px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-footer.gif');
	background-repeat: no-repeat;
}
.left-menu-content {
	width: 224px;
	height: 219px;
	vertical-align: top;
	background-image: url('../images/main-temp/left-menu-bg-co.gif');
	background-repeat: no-repeat;
	text-align: left;
	float: right;
}
.left-menu-txt {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	color: #6d6d6d;
	line-height: 20px;
	text-align: left;
	padding: 3px;
	margin: 3px 0 3px 20px;
}
.left-menu-txt a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	color: #6d6d6d;
	line-height: 20px;
}
.left-menu-txt a:hover {
	text-decoration: none;
	color: #ff7e00;
	line-height: 20px;
}
.content-r-c {
	width: 687px;
/*	height: 100%;*/
	vertical-align: top;
}
.content-empty {
	height: 15px;
}
.content {
	width: 687px;
/*	height: 100%;*/
	vertical-align: top;
	padding: 15px;
}
.title-c {
	width: 687px;
	height: 40px;
	padding-right: 15px;
	padding-left: 15px;
}
.tree {
	font-family: Verdana, Tahoma, Arial;
	font-size: 7pt;
	text-decoration: none;
	font-weight: normal;
	color: #6d6d6d;
	line-height: 20px;
	text-align: left;
	padding: 3px;
	margin: 0;
}
.tree a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 7pt;
	text-decoration: none;
	font-weight: normal;
	color: #6d6d6d;
	line-height: 20px;
}
.tree a:hover {
	text-decoration: none;
	color: #ff7e00;
	line-height: 20px;
}
.footer-txt {
	font-family: Verdana, Tahoma, Helvetica;
	font-size: 8pt;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	line-height: 20px;
	text-align: center;
	margin: 0;
	padding: 3px;
}
.footer-txt a {
	font-family: Verdana, Tahoma, Helvetica;
	font-size: 8pt;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
}
.footer-txt a:hover {
	color: #ff7e00;
	text-decoration: none;
}
.products-menu-txt {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	color: #6d6d6d;
	line-height: 20px;
	text-align: left;
	padding: 3px;
	margin: 3px 0 3px 0;
}
.products-menu-txt a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	/*color: #6d6d6d;*/
	color: #000000;
	line-height: 20px;
}
.products-menu-txt a:hover {
	text-decoration: none;
	color: #ff7e00;
	line-height: 20px;
}
.products-table-1 {
	width: 100%;
	margin: 15px auto;
}
.products-table-1-td {
	width: 50%;
	padding: 15px;
	vertical-align: top;
}
.products-alpha-table {
	width: 657px;
	margin-top: 15px;
}
.products-alpha-tr1 {
	background-color: #ccc;
	border: 1px #fff solid;
	height: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	line-height: 25px;
	text-align: center;
	padding: 0 4px;
}
.products-alpha-tr3 {
	border-bottom: 1px #EEE solid;
	padding: 0 4px;
}
.print {
	width: 60px;
	height: 90px;
	float: right;
}
.print-txt {
	font-family: Verdana, Tahoma, Helvetica;
	font-size: 8pt;
	color: #ff7e00;
	text-decoration: none;
	font-weight: normal;
	line-height: 20px;
	text-align: center;
	margin: 0;
	padding: 3px;
}
.print-txt a {
	font-family: Verdana, Tahoma, Helvetica;
	font-size: 8pt;
	color: #ff7e00;
	text-decoration: none;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
}
.print-txt a:hover {
	color: #ff7e00;
	text-decoration: underline;
}
.products-temp-table {
	width: 100%;
	margin: 15px auto;
}
.products-temp-table-left {
	width: 180px;
	vertical-align: top;
}
.products-temp-table-right {
	padding-bottom: 10px;
	vertical-align: top;
}
.prod-pic {
	margin: 15px auto;
	border: 1px solid #C0C0C0;
	padding: 1px;
}
.contact-mid-td {
	width: 3px;
}
.contact-left-td {
	width: 200px;
	text-align: right;
	vertical-align:top;
}
.contact-top-table {
	width: 100%;
}
.form {
	font-family: verdana;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	height: 18px;
	width: 250px;
	border: 1px #ff9731 solid;
	margin: 3px 0px 3px 0px;
}
.form_big {
	font-family: verdana;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	height: 200px;
	width: 250px;
	border: 1px #ff9731 solid;
	margin: 3px 0px 3px 0px;
}
.button {
	font-family: verdana;
	font-size: 11px;
	font-weight: normal;
	color: #3A3A3D;
	text-decoration: none;
	border: 1px #ff9731 solid;
	background-color: #ffffff;
	margin: 3px 3px 3px 3px;
}
/**************************************** New styles for index ****************************/
.contactinfo-c {
	width: 224px;
	height: 169px;
	vertical-align: top;
	margin: 15px 23px 30px 16px;
}
.contactinfo-hd {
	background-position: center center;
	width: 224px;
	height: 47px;
	vertical-align: top;
	background-image: url('../images/home/contactinfo-hd.gif');
	background-repeat: no-repeat;
}
.contactinfo-bg {
	width: 224px;
	height: 122px;
	vertical-align: top;
	background-image: url('../images/home/contactinfo-bg.gif');
	background-repeat: no-repeat;
	text-align: left;
	float: right;
}
.index-left-txt {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	/*color: #606060;*/
	color: #000000;
	line-height: 20px;
	text-align: left;
	padding: 3px;
	margin: 3px 0 3px 7px;
	padding:0;
}
.index-left-txt a {
	font-family: Verdana, Tahoma, Arial;
	font-size: 9pt;
	text-decoration: none;
	font-weight: normal;
	/*color: #606060;*/
	color: #000000;
	line-height: 20px;
}
.index-left-txt a:hover {
	text-decoration: none;
	color: #ff7e00;
	line-height: 20px;
}
.mailinglist-c {
	width: 224px;
	height: 189px;
	vertical-align: top;
	margin: 0px 23px 15px 16px;
}
.mailinglist-hd {
	background-position: center center;
	width: 224px;
	height: 34px;
	vertical-align: top;
	background-image: url('../images/home/mailinglist-hd.gif');
	background-repeat: no-repeat;
	padding-left:50px;
	padding-right:50px;
}
.mailinglist-bg {
	width: 224px;
	height: 155px;
	vertical-align: top;
	background-image: url('../images/home/mailinglist-bg.gif');
	background-repeat: no-repeat;
	text-align: left;
	float: right;
}
form {
	margin:0;
	padding:0;
}
.form-mailing {
	font-family: verdana;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	height: 18px;
	width: 200px;
	border: 1px #b1b1b1 solid;
	margin: 3px 12px 3px 12px;
}
.index-content-m-tab {
	width: 657px;
	/*height: 100%;*/
	vertical-align: top;
}
.lastprod-m-c {
	width: 300px;
	height: 265px;
	vertical-align:top;
}
.lastprod-c {
	width: 300px;
	height: 265px;
	vertical-align:top;
	border: 1px #9f9f9f solid;
}

.lastprod-hd {
	background-position: center center;
	width: 300px;
	height: 35px;
	border-bottom: 1px #9f9f9f solid;
	background-image: url('../images/home/latestprod-hd.gif');
	background-repeat: no-repeat;
}
.lastprod-pic {
	border: 1px solid #cccccc;
	margin: 1px;
}
.product-table {
	width: 640px;
	border: 1px solid #9f9f9f;
	margin:0 auto;
}
.product-table-hd {
	background-position: center center;
	width: 640px;
	background-image: url('../images/home/products-hd.gif');
	background-repeat: no-repeat;
	height: 33px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #9f9f9f;
}
.product-bg {
	width: 640px;
	padding:2px;
	vertical-align:top;
}
.product-table-hd-1 {
	width: 209px;
	height: 23px;
	background-image: url('../images/home/products-hd-1.gif');
	background-repeat: no-repeat;
}
.product-table-hd-2 {
	width: 208px;
	height: 23px;
	background-image: url('../images/home/products-hd-2.gif');
	background-repeat: no-repeat;
}
.product-table-hd-3 {
	width: 209px;
	height: 23px;
	background-image: url('../images/home/products-hd-3.gif');
	background-repeat: no-repeat;
}
.form-index-search {
	font-family: verdana;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	height: 18px;
	width: 185px;
	border: 1px #b1b1b1 solid;
	margin: 3px 7px 3px 7px;
}

