@charset "UTF-8";
/*GCOMMERCE*/
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #333;
	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: #000000;
}
form {
	margin: 0px;
}

h1 {
	font: normal 22px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin-top: 0px;
	margin-bottom: 10px;
}

h2 {
	font: normal 20px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
}
h3 {
	font: normal 18px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin: 0;
}
h4 {
	font: normal 16px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin: 0;
}
h5 {
	font: normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin: 0;
}
h6 {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	display: block;
	margin: 0;
}
#outside {
	padding: 5px 10px 5px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: right; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #2c3987;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0px;
} 

#nav {
	margin: 5px 20px 5px 20px;
	padding: 0;
}
#content {
	background-color: white;
	background-image: url(../images/page_bg.gif);
	background-repeat: repeat;
	background-position: left top;
	margin: 0;
	padding: 0;
	border-top: 1px solid white;
	border-bottom: 1px solid #dddddd;
}

#container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #DDDDDD; 
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 0px 20px;
	margin-right: 15px;
}
#mainContent {
	margin: 0 0 15px 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 680px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #222222;
} 
.product-list {
	border-top: 1px solid #c2d7d4;
	border-bottom: 1px solid #c2d7d4;
	margin-top: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #222222;
}
.product-list td {
	padding-left: 20px;
	text-align: left;
}
.product-list th {
	text-align: right;
	font-weight: normal;
}
.product-list td.heading {
	padding-left: 3px;
	font-weight: bold;
	vertical-align: bottom;
}

.pagination {
	background: #c2d7d4;
	text-align: right;
	padding: 3px;
	margin-top: 10px;
}
#mainContent a:link {
	color: blue;
	text-decoration: none;
}
#mainContent a:visited {
	color: purple;
	text-decoration: none;
}
#mainContent a:hover {
	text-decoration: underline;
}
#height500 {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 500px;
	width: 1px;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #dddddd; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: 60% Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}
#footer a:link {
	color: #555555;
	text-decoration: none;
}
#footer a:visited {
	color: #555555;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
	margin: 0px;
	padding: 0px;
}
#login-box {
	color: white;
	background: #636466;
	text-align: left;
	margin: 0px 0px 15px;
	padding: 7px;
	width: 186px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
#client-menu {
	background: #636466;
	color: white;
	width: 186px;
	padding: 7px;
	margin: 0 0 15px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: normal;
}
#client-menu a:link {
	color: white;
	text-decoration: none;
}
#client-menu a:visited {
	color: white;
	text-decoration: none;
}
#client-menu a:hover {
	color: yellow;
	text-decoration: none;
}
#client-menu h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #cccccc;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
	border-bottom: solid 1px #cccccc;
}
#indent-menu {
	background: #636466;
	color: white;
	width: 186px;
	padding: 7px;
	margin: 0 0 15px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: normal;
}
#indent-menu a:link {
	color: white;
	text-decoration: none;
}
#indent-menu a:visited {
	color: white;
	text-decoration: none;
}
#indent-menu a:hover {
	color: yellow;
	text-decoration: none;
}
#indent-menu h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: yellow;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
	border-bottom: solid 1px #cccccc;
}
#client-manager {
	background: #063f86;
	color: white;
	width: 186px;
	padding: 7px;
	margin: 0 0 15px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: normal;
}
#client-manager a:link {
	color: yellow;
	text-decoration: none;
}
#client-manager a:visited {
	color: yellow;
	text-decoration: none;
}
#client-manager a:hover {
	text-decoration: underline;
}
#client-manager h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #cccccc;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
	border-bottom: solid 1px #cccccc;
}
#cartUpdated {
	background: #063f86;
	color: white;
	width: 186px;
	padding: 7px;
	margin: 0 0 15px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: normal;
	display: none;
}
#cartUpdated h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: yellow;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
	border-bottom: solid 1px #cccccc;
}
#cartUpdated img {
	margin-top: 5px;
	float: right;
}
#login-box h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: white;
	display: block;
	margin-top: 0px;
	margin-bottom: 10px;
}
#login-box #username {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
	text-align: left;
	display: block;
	width: 180px;
	margin-bottom: 10px;
}
#login-box #password {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
	text-align: left;
	display: block;
	width: 180px;
	margin-bottom: 10px;
}
#login-box #LoginBtn {
	float: right;
}
#login-box #lostpassword {
	font-size: 11px;
	text-align: left;
	padding-top: 7px;
}
#login-box #lostpassword a {
	color: white;
	text-decoration: none;
}
#login-box #lostpassword a:hover {
	text-decoration: underline;
}
#searchtext {
	margin: 0px 0px 0px 10px;
	height: 18px;
	width: 140px;
	padding-top: 2px;
	padding-left: 25px;
	border-style: none;
	background: url(../images/search_box_bg.gif) no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: black;
}
.clearer {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.bodytext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
.bodytext th {
	text-align: right;
	color: #000066;
	font-weight: normal;
}
.bodytext td {
	text-align: left;
}
.error-box {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 350px;
	margin: 10px auto 15px auto;
	padding: 7px;
	background-color: #ffffe5;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	color: red;
	font-weight: bold;
	text-align: left;
}
#product-parent {
	margin: 10px 0 5px 0;
	border-bottom: solid 1px #c3d1e2;
	font: normal 14px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
}
#product-detail {
	background-color: #c3d1e2;
	margin: 0px 0px 10px 10px;
	padding: 10px;
	float: right;
	width: 230px;
}
#product-detail-image img {
	border: 2px solid #00564b;
}
#product-detail-image {
	text-align: center;
	margin-bottom: 10px;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
}
#product-detail-image a:link {
	color: #333333;
	text-decoration: none;
}
.price {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;
	color: #063f86;
}
.supplier {
	text-align: center;
	border-top: 1px solid white;
	padding-top: 10px;
}
.supplier h5 {
	text-align: left;
}
.supplier img {
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #00564b;
}
.supplier img:hover {
	border-color: blue;
}
.price-label {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: normal;
}
h3.product-name {
	margin-bottom: 10px;
}
#product-detail-image a:visited {
	color: #333333;
	text-decoration: none;
}
#product-detail-image a:hover {
	color: blue;
	text-decoration: none;
}
#product-detail-image img:hover {
	border-color: blue;
}
.product-detail-table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.product-detail-table th {
	font-weight: normal;
	color: #063f86;
	text-align: right;
}
.product-order {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 0px;
	padding-top: 10px;
	border-top: 1px solid white;
}
#mainContent .product-group {
	float: left;
	margin-right: 5px;
	margin-bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #063f86;
}
#mainContent .product-group a {
	display: block;
	padding: 3px;
	height: 18px;
	width: 322px;
	overflow: hidden;
}
#mainContent .product-group a:link {
	color: #063f86;
	text-decoration: none;
}
#mainContent .product-group a:visited {
	color: #063f86;
	text-decoration: none;
}
#mainContent .product-group a:hover {
	background-color: #c3d1e2;
	text-decoration: none;
}
.product-class {
	float: left;
	width: 310px;
	margin-right: 10px;
	padding-left: 8px;
	background: url(../images/arrowhead.gif) no-repeat 0px 3px;
}
#productClassOuter {
	border: 1px solid #cccccc;
	display: block;
	padding: 10px;
}
#productClassOuterHide {
	border: 1px solid #cccccc;
	display: none;
	padding: 10px;
}
#product-class-toggle {
	text-align: right;
	background: #cccccc;
	margin: 10px 0px 0px;
	padding: 3px;
}
.clearer {
	clear: both;
	margin: 0;
	padding: 0;
}
#suppliers_box_outer {
	background: white url(../images/suppliers_box_bg.gif) repeat-y;
	margin: 20px 0 10px 0;
	padding: 0px;
	width: 680px;
}
#suppliers_box_top {
	background: url(../images/suppliers_box_top.gif) no-repeat top;
}
#suppliers_box_bottom {
	background: url(../images/suppliers_box_bottom.gif) no-repeat bottom;
	margin: 0px;
	padding: 20px 25px 25px 20px;
	text-align: center;
}
#suppliers_box_bottom h5 {
	text-align: left;
}
#suppliers_box_bottom img {
	margin-top: 5px;
	margin-right: 10px;
	vertical-align: middle;
}
#AdvancedSearch {
	width: 480px;
	background: #cccccc;
	margin: 10px auto;
	padding: 5px;
	text-align: center;
}
#AdvancedSearch form {
	margin: 0;
	display: inline;
}
.previous-orders {
	border-top: 1px solid #c2d7d4;
	border-bottom: 1px solid #c2d7d4;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #222222;
	margin-top: 10px;
}
.previous-orders th {
	text-align: left;
	font-weight: bold;
	background-color: #636466;
	color: white;
}
.previous-orders td {
	text-align: left;
	vertical-align: top;
}
.previous-orders tr.altbg {
	background-color: #e3eceb;
}
.right {
	text-align: right;
}
#contact-left {
	float: left;
	width: 430px;
	margin: 20px 10px 20px 0;
}
#contact-right {
	background-color: #c3d1e2;
	margin: 20px 0px;
	float: left;
	width: 216px;
	padding: 7px;
	text-align: left;
}
#contact-right .manager {
	margin-top: 5px;
	border-bottom: 1px solid white;
	padding-bottom: 5px;
}
#contact-right .manager span {
	float: right;
	display: block;
}
#contact-right .manager p {
	margin: 0;
	color: #000066;
}
.order-header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
	text-align: left;
	margin-bottom: 10px;
}
.order-header td span {
	display: block;
	padding-left: 20px;
}
table.order-item {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
	text-align: right;
	margin-bottom: 10px;
}
table.order-item th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: white;
	background: #636466;
}
table.order-item td {
	vertical-align: top;
}
.left {
	text-align: left;
}
table.order-item tr.altbg {
	background-color: #e3eceb;
}
.noscreen {
	display: none;
}
#view-order-controls {
	background: #c2d7d4;
	text-align: right;
	padding: 3px;
	margin: 10px 0;
}
table.cart-header {
	text-align: right;
	margin: 10px 0 0 0;
}
table.cart-header th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: white;
	background: #636466;
}
#cartiframe {
	background: white;
	margin: 0 0 10px 0;;
	padding: 0px;
	height: 450px;
	width: 680px;
	border-bottom: solid 1px #636466;
}
table.customer-list {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
	text-align: left;
	margin-top: 10px;
	border-bottom: solid 1px #636466;
}
table.customer-list th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: white;
	background: #636466;
}
table.customer-list td {
	vertical-align: top;
}
table.customer-list tr.altbg {
	background-color: #e3eceb;
}
#indent-highlght {
	background: #FFFFCC;
	text-align: left;
	padding: 7px;
	margin-top: 20px;
}
.indent-order-btn {
	text-align: right;
	margin-top: 10px;
	margin-bottom: 0px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cccccc;
}
.indent-list {
	margin-top: 10px;
	margin-bottom: 10px;
}

