/*
	Summer Cart Customer Area CSS file
	
	The convention for CSS class / id selectors is C style ( div#header or div.header)
	convenient for pairing with the relevant image file name ( header_bg.jpg ).
	
	All icons / buttons file names should be prefixed with icon or btn for readability.
	For example icon_manufacturer.png, btn_submit.png.
	
	If there are many icons / buttons from particular type, these should be positioned
	in their respective folder - icon_boxes, icon_titles, buttons.

	In this case the prefix for the file name should be avoided as it is evident from the folder name.
	

	The image files should be named after what they represent and NOT after what is their current particular function.
	For example box_title_green.jpg is for CMS Boxes with Green Title backgrounds.
	NOT categories_bg.jpg - in future this color may be used for the Shopping Cart Box Title as well.
	

	The CSS Selectors should lead from the abstract to the specific and should be fully qualified

	For example:
	ul#fast_menu li.fast_menu_sep
	And DEFINETELY NOT
	.fast_menu_sep
*/

/* General Selectors */

html {
	height: 100%;
}

body, .popup_container {
	height: 100%;
	margin: 0px;
	padding: 0px;
	background: url(../images/bg.png);
	color: #000;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
.popup_container {
	padding: 15px;
	background: none;
}
body * {
	margin: 0;
	padding: 0;
}

img {
	border: 0px;
}
a, a:visited {
	color: #0287D4; text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}
input, select, textarea {
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
}
table {
	border-collapse: collapse;
	border-spacing: 0px;
}
td {
	vertical-align: top;
}
hr {
	margin: 10px 0px;
	height: 1px;
	border: none;
	border-top: 1px dotted silver;
}
img.button, input.button {
	margin: 0px 5px 5px 0px;
	outline: none;
}


/* Wrapers */

#container { width: 962px; margin: 0 auto;  }
#content-wrap { padding: 8px 0 0 0; }
#body-container { background: url(../images/header_bg.jpg) 50% 0 repeat-x; }

#main { background: #fff; width: 100%; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1em;
}
h2 { /* For Page Titles */
	clear: both;
	margin: 10px 0px 0px;
	padding: 0 0 0;
/*	color: white; */
	background-color: transparent;
	background-repeat: repeat-x;
	border: 0;
	font: bold 13px Arial, Helvetica, sans-serif;
}
	h2.success {
		color: #000;
	}
	h2 span {
		display: inline-block;
		height: 23px;
		padding: 9px 0 0 30px;
		background-repeat: no-repeat;
	}
	h2 a,
	h2 a:visited {
		color: white;	
	}
/* Paragraphs and Regular Blocks */
p, div {
	margin: 0px;
	padding: 0px;
}
/* Clear styles */
p {
	clear:both;
}
	#content p {
		margin-bottom: 1em;
	}
hr {
	clear:both;
}
/* Lists */
ul, ol {
	padding: 0;
}
.column ul {
	list-style: none none;
}
/* Layout Selectors */
.fleft {
	float: left;
}
.fright {
	float: right;
}
.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: block;
}
* html .clearfix {zoom: 1;}

.message {
	margin: 0 0 10px;
	padding: 5px;
}

div#line {
	border-top: 1px solid white;
}

	/* Header */
	div#header_wrapper {
		height: 145px;
		background: url('../images/header_bg.jpg') center;
		clear: both;
	}
		div#header {
			width: 962px;
			height: 145px;
			margin: 0 auto;
			position: relative;
		}
			#logo {
				float: left;
				width: 384px;
				height: 105px;
				margin: 0;
			}
			td#guest_name {
				height: 43px;
				vertical-align: middle;
				color: white;
				font: normal 9px Verdana, Geneva, sans-serif;
			}
			td.guest_name_en {
				padding-left: 35px;
				width: 238px;
				background: url('../images/guest_name_en.gif') left no-repeat;
			}
			td.guest_name_bg {
				padding-left: 35px;
				width: 238px;
				background: url('../images/guest_name_bg.gif') left no-repeat;
			}

/* Language */
#language { float: right; margin: 0 10px;  padding: 0; position: absolute; z-index: 100; top: 77px; right: 8px; height: 20px; }
#language .language-container {   background: #F4F4F4; border: solid 1px #95BB66; padding: 1px 8px; display: block; line-height: 16px; color: #333;   }
#header #language .language-has-selection { background: url(../images/language-arrow.png) 100% 50% no-repeat; padding-right: 18px;  }
#header #language .selected-language span { vertical-align: middle; padding: 0 4px 0 0;  position: relative; top: -1px; }
.selected-language img { vertical-align: middle; }
#language ul { display: none; margin: 0; z-index: 100; position: relative;  background: #F4F4F4; width: 100%;}
#language ul li { list-style: none; padding: 0; list-style-image: none; }
#language:hover ul { display: block; z-index: 100; padding: 0; margin: 0; }
#header #language a { color: #333; text-decoration: none;}
#header #language ul a { color: #333; display: block; padding: 4px; }
#header #language ul a:hover {  background: #d3d3d3; }

		/* Fast Menu */
		#fast_menu_en {
			font: normal 12px "Courier New", Courier, monospace;
			background: url('../images/fast_menu_en.gif') left no-repeat;
		}
			#fast_menu_en .dynamic {
				width: 128px;
			}
				#fast_menu_en .dynamic div {
					margin-top: 8px;
				}
				#fast_menu_en .dynamic a {
					color: white;
					text-decoration: none;
				}
				#fast_menu_en .dynamic img {
					margin: 0px 10px 0px 5px;
				}
		#fast_menu_bg {
			font: normal 12px "Courier New", Courier, monospace;
			background: url('../images/fast_menu_bg.gif') left no-repeat;
		}
			#fast_menu_bg .dynamic {
				width: 167px;
			}
				#fast_menu_bg .dynamic div {
					margin-top: 8px;
				}
				#fast_menu_bg .dynamic a {
					color: white;
					text-decoration: none;
				}
				#fast_menu_bg .dynamic img {
					margin: 0px 10px 0px 5px;
				}

		/* Top Menu - Links */
		div#menu-search {
			margin-left: 180px;
			width: 780px;
			height: 41px;
			color: #9c008b;
			font: normal 14px/41px "Courier New", Courier, monospace;
			background: url('../images/top_menu_bg.jpg') center;
		}
			img#icon_search {
				float: left;	
			}
			div#search {
				float: left;
				width: 260px;
				height: 34px;
			}
				div#search input#phrase_top {
					vertical-align: middle;
					height: 18px;
					font: bold 12px Arial, Helvetica, sans-serif;
					border-top: 1px solid #85676d;
					border-left: 1px solid #85676d;
					border-bottom: 1px solid white;
					border-right: 1px solid white;
					background: #c9a4c8;
				}
				div#search input#btn_search {
					vertical-align: middle;
				}
		div#top_menu a {
			color: #9c008b;
			text-decoration: none;
		}
			div#top_menu a:hover {
				text-decoration: underline;
			}


		div#fast_login {
			font: bold 12px/20px Arial, Helvetica, sans-serif;
			float: right;
			height: 24px;
			padding-top: 20px;
			padding-right: 30px;
			background: url('../images/subheader_right.png') 100% 1px no-repeat;
		}
			div#fast_login span {
				color: black;
			}
			div#fast_login a {
				color: #1d739f;
				text-decoration: none;
			}
			div.customer_name {
				font-family: Arial, Helvetica, sans-serif;
				font-size: 12px;
				border-bottom: #b0b0b0 1px solid;
				width: 163px;
				padding-bottom: 3px;
			}

		/* Body and Content and Columns */
		table#body {
			width: 962px;
			margin: 0 auto;
		}
			td#content {
				vertical-align: top;
				padding-bottom: 20px;
				color: #000;
				background-color: #fff;
				width: 100%;
			}
				td#content div.prev_next a {
					color: #0287d4;
					background-color: transparent;
				}
				#content ul {
					margin-left: 20px;
					list-style: disc;
					list-style-image: url(../images/arrow.gif);
					list-style-position: outside;
				}
				#content li {
					padding: 0 0 0.5em;
					}
				
				/* Columns */
				#left_column,
				#right_column {
					vertical-align: top;
					width: 180px;
					padding-bottom: 15px;
					background: white;
				}

		/* CMS Boxes */
		div.box {
			margin: 0 auto;
			width: 160px;
			font: normal 11px Arial, Helvetica, sans-serif;
			margin-bottom: 3px;
			line-height: 150%;
			padding: 8px;
		}
			div.box a { border-bottom: 1px solid #D7D7D7; color: #343434; display: block; padding: 0 4px; text-decoration: none; }
			div.box a:hover {
				text-decoration: none;
			}
			table.menu_box_table {
				width: 100%;
			}
				table.menu_box_table tr td {
					padding: 15px 0px 0px 5px;
					vertical-align: top;
			}

		#news-box .box-content, 
		#recently-viewed .box-content, 
		#new-products .box-content, 
		#currency-box .box-content 
		 {
			background: url(../images/box_gray_bg.gif) top left repeat-x;	
		}
		div.cart {
			border-left: 1px solid #ddbad5;
			border-right: 1px solid #ddbad5;
			background: #edb5e0;			
		}
			/* Lists for Categories and Manufacturers */
			.subcategory {
				margin: 0 0 5px 0;
				padding: 5px;
				background: #f3f3f3;
			}
			.categoryImage {
				float: left;
				margin-right: 10px;
			}
			div.box ul {
				font: normal 14px/26px "Courier New", Courier, monospace;
			}
				div.box ul.list a {
					display: block;
					padding: 0px 4px 0px;
					color: #343434;
					text-decoration: none;
					border-bottom: 1px solid #d7d7d7;
				}
			* html div.box ul.list a {
				height: 1%;
			}
				div.box ul.list a:hover {
					text-decoration: none;
					background: url(../images/categories_bullet_over.jpg) no-repeat 175px center #cecece;
				}
					div.box ul.list a.highlight {
						color: #ff00ff;
						background-color: transparent;
					}
					div.box ul.list a.highlight:hover {
						color: white;
						background-color: #ff00ff;		
						background: url(../images/categories_bullet_all.jpg) no-repeat 175px center #a3a;			
					}
		
			/* Search */
			.search_box form {
				padding: 5px 10px;
			}
			.search_box #phrase {
				width: 100px;
				margin-right: 5px;
			}
			div.box div#advanced_search {
				border-top: 1px solid #d7d7d7;
				margin-top: 10px;
				padding-top: 10px;
			}

			/* View Cart */
			div.box div.view_cart {
				width: 160px;
				border-bottom: 1px solid #d7d7d7;
				padding: 10px 0px;
				line-height: 150%;
				text-align: center;
			}
				div.box div.view_cart span.items_total {
					font-weight: normal;
					color: #4c4949;
					font-size: 11px;
				}
			div.box div.checkout_links {
				padding: 0px 10px 0px 25px;
			}
			/* News */
			ul#categories_news {
				margin-bottom: 10px;
				padding-top: 10px;
				border-bottom: 1px solid #d7d7d7;
			}
				ul#categories_news li {
					margin-bottom: 10px;
				}
			
			/* Recently Viewed, New products, Bestsellers */
			div.recently_viewed, div.bestsellers, div.new_products {
				font: normal 11px Arial, Helvetica, sans-serif;
				padding: 10px 5px 5px 7px;
			}
				.column .small_product_thumb {
					display: block;
					border-right: 1px dotted silver;
					padding-right: 8px;
					margin-right: 8px;
				}
					.column .small_product_thumb img {
						border: 1px solid silver;
					}
					
			/* login */
			div.login {
				font: normal 12px/20px Arial, Helvetica, sans-serif;
				height: 24px;
				text-align: left;
				padding: 5px 10px 15px 23px;
			}
				div.login span {
					color: black;
				}


/* Common Text and Layout Selectors */
			/* Page Title Colors */
			h2.green, h2.orange, h2.blue {
				width: 566px;
				height: 39px;
				margin: 0;
				padding: 0 20px;
				color: #786c6e;
				font: normal 20px/39px "Courier New", Courier, monospace;
				background: url(../images/featured_products_bg.gif) 0 0 no-repeat;
			}
			
			h2.green img,
			h2.orange img,
			h2.blue img {
				display: none;
			}

			h2.green span,
			h2.orange  span,
			h2.blue span {
				padding: 0px;				
			}

			h2.green a,
			h2.orange a,
			h2.blue a {
				color: #786c6e;				
			}
/*
			h2.green {
				background-image: url('../images/green_bgr.png');
			}
			h2.green span {
				background-image: url('../images/title_green.png');
			}
			
			h2.orange {
				background-image: url(../images/orange_bgr.png);
			}
			h2.orange span {
				background-image: url(../images/title_orange.png);
			}
			
			h2.blue {
				background-image: url('../images/blue_bgr.png');
			}
			h2.blue span {
				background-image: url('../images/title_blue.png');
			}
*/
			/* Page Title Icon */

				h2 a:hover {
					text-decoration: none;
				}
			
			/* Simple Page Title in Gray - No Backgrounds and Effects */
			h2.simple_title {
				font: bold 15px;
			}
			/* Product Details Title */
			h2.product_title {
				margin: 0 0 10px;
				padding: 0px;
				color: #555;
				font: bold 15px/20px Verdana, Arial, Helvetica, sans-serif;
			}
			
			/* Product Details Small Icon */
			div.small_product_images a img {
				padding: 5px;
				border: #bcbcbc 1px solid;
				margin-right: 5px;
				margin-bottom: 5px;
			}

		h2.box-title {
			width: 142px;
			height: 27px;
			margin: 0;
			padding: 0px 9px;
			color: white;
			text-transform: uppercase;
			font: normal 14px/27px "Courier New", Courier, monospace;
			background: url('../images/h3.gif');
		}

				
			/* CMS Box Icon */
			h4 {
				margin: 0px;
				padding: 0px;
				font: bold 13px Verdana, Geneva, sans-serif;
			}
			
		h5 { /* Checkout Process */
				margin: 0px;
				padding: 0px;
				font: bold 10px Arial, Helvetica, sans-serif;
			}
		h5#setup_account { /* Registration Page */
				width: 100%;
				text-align: center;
				color: #666;
				font: normal 15px Arial, Helvetica, sans-serif;
			}

		h6 {
			color: gray;
			font: bold 1em Arial, Helvetica, sans-serif;
		}
		
	/* Gray Content Boxes */
	.content_box_bgr {
		background: #eaeaea url(../images/content_box_bgr.png) left bottom repeat-x;
	}
	div.content_box {
		width: 100%;
		height: 100%;
		margin: 0px;
		padding: 0px;
		background: url(../images/content_box_left.png) left bottom no-repeat;
	}
		div.content_box_inner {
			height: 100%;
			margin: 0px;
			padding: 10px 10px 20px;
			background: url(../images/content_box_right.png) no-repeat right bottom;
		}
			div.content_box_inner a {
				color: #a3a;
			}
			div.content_box_inner a:hover {
				text-decoration: none;			
			}
	/* Breadcrumbs */
	#breadcrumb {
		margin: 0 0 1em;
		padding: 0 0 0 10px;
		font: normal 11px/18px Arial, Helvetica, sans-serif;
		background: #eaeaea url(../images/hist_start.jpg) 0 0 no-repeat;
	}
		#breadcrumb .breadcrumb-bg {
			padding: 7px 160px 7px 0;
			font: normal 11px/18px Arial, Helvetica, sans-serif;
			background: url(../images/hist_end.jpg) 100% 0 no-repeat;
		}
		#breadcrumb a {
			color: #316396;
		}
		#breadcrumb a:hover {
			text-decoration: none;		
		}
		#breadcrumb span.category-product-count {
			float: right;
			padding:7px 5px 7px 0;
		}
	/* Grid view */
	div.grid_view a {
		color: #316396;
	}

	/* Warning/Error Boxes */
	.error {
		margin: 10px 0px;
		border: 1px dotted #900;
		color: #b40101;
		font: bold 13px/18px Arial, Helvetica, sans-serif;
		background: #ffb50a  url(../images/warning_bg.gif) repeat-x;
		clear:both;
	}
		.error img {
			width: 64px;
			height: 46px;
			float: left;
		}
		.failure {
			font-size: 23px;
			position: relative;
			top: 15px;
		}
		.pending {
			font-size: 18px;
			position: relative;
			top: 15px;
		}
		.error table tr td {
			vertical-align: top;
		}
		.errorText {
			padding: 15px;
			font-weight: bold;
			font-size: 13px;
		}
		.error_text {
			color: red;
			line-height: 15px;
			padding: 5px 10px 5px 10px;
			color: red;
			line-height: 160%;
			border: 1px solid red;
			background-color: #e7f2fd;
			margin: 0px;
		}
	.hidden {
		display: none;
	}
	.fieldError {
		color: red;
	}
	/* Warning/Info Boxes */
	div.info {
		margin: 10px 0px;
		width: 100%;
		border: 1px dotted #900;
		color: #b40101;
		font: bold 13px/18px Arial, Helvetica, sans-serif;
		background: #ffb50a  url(../images/warning_bg.gif) repeat-x;
	}
		div.info img {
			width: 64px;
			height: 46px;
			float: left;
		}
		.error table tr td {
			vertical-align: top;
		}

/* Page Selectors */
	/* Home Page */
		/* Featured Products */
		h2#featured_products {
			width: 566px;
			height: 39px;
			margin: 0;
			padding: 0 20px;
			color: #786c6e;
			font: normal 20px/39px "Courier New", Courier, monospace;
			background: url(../images/featured_products_bg.gif) 0 0 no-repeat;
		}
	/* Product Listing Information */
		/* Product Wrapper Table */
		.product_table, .category_product_table, .home_product_table, .search_product_table {
			width: 100%;
			margin-bottom: 10px;
		}
		.product_table .div_button_blue, .product_table .div_button_gray {
			margin-top: 5px;
		}
		.product_image, .category_product_image, .home_product_image, .search_product_image {
			width: 1%;
			padding: 20px 20px 0 0;
			border-right: 1px dotted #d7d7d7;
			border-bottom: 1px dotted silver;
		}
		.product_details, .category_product_details, .home_product_details, .search_product_details {
			padding: 20px 20px 10px;
			border-bottom: 1px dotted silver;
		}
		.product_details h4 {
			margin-bottom: 0.5em;
		}
		/* Product rating */
		.rating_page .message {
			text-align: center;
			font-weight: bold;
		}
		.rating_page th, .rating_page td, .send_to_friend th, .send_to_friend td {
			padding: 5px;
			border-bottom: 1px dotted #ccc;
		}
		.rating_page th {
			font-weight: bold;
			text-align: right;
			vertical-align: top;
		}
		/* Product Thumbs */
		a.product_thumb {
			display: block;
			max-width: 120px;
			max-height: 120px;
			padding: 0px;
			margin-right: 0;
		}
			a.product_thumb img {
				border: 1px solid silver;
			}
	/* Manufacturer Listing Information */
		/* Manufacturer Thumbs */
			div.manufacturer_thumb {
				margin-right: 20px;
				margin-bottom: 20px;
				padding: 0px 20px;
				border-right: 1px solid silver;
			}
				div.manufacturer_thumb a {
					display: block;
					border: none;
				}
				div.manufacturer_thumb img {
					border: 1px solid silver;
				}
		/* Product options */
		table.product_options_table {
			border-bottom: 1px solid #e5e5e5;
			margin-bottom: 18px;
			margin-top: 5px;
			padding-top: 5px;
			}
			.product_options_table th, .product_options_table td {
				padding: 2px;
			}
		td.product_options {
			padding: 8px 5px;
			border-top: 1px solid #e5e5e5;
			}
		/* Out of stock */
		div.out_of_stock {
			width: 77px;
			height: 63px;
			}
		/* Product Description */
		td.product {
			padding-bottom: 23px;
			background: url(../images/product_bg.jpg) no-repeat bottom right;
		}
			div.product h4 { /* Product Name */
				font: bold 13px Verdana, Arial, Helvetica, sans-serif;
			}
				h4 a,
				h4 a:visited {
					color: #333;
				}
				h4 a:hover {
					text-decoration: none;				
				}
			h7 { /* Manufacturer Name */
				color: #8c678b;
				font: bold 13px Verdana, Arial, Helvetica, sans-serif;
			}

			div.product h6 {
				margin: 5px 0px;
				color: #333;
				font: bold 12px Verdana, Arial, Helvetica, sans-serif;
			}

			div.product_home {
				margin-left: 5px;
				width: 190px;
				float: left;
				margin-bottom: 20px;
			}
				
				/* Product Price Table */
				
				table.display_price {
					margin: 2px 0px 13px 0px;
				}
				table.display_price td.price_description {
					padding: 3px 5px 0px 0px;
				}
				table.display_price td.price_value {
					padding: 3px 0px 0px 0px;
					font-weight: normal;
					color: #000000;
				}
				table.display_price td.price_value span {
					color: #ce0ace;
					font-weight: bold;
				}
				table.display_price td.prmodified {
					color: #990000;
					font-weight: normal;
					padding: 3px 5px 0px 0px;
				}
				table.display_price td.price_value del {
					color: #990000;
				}
			div.product p {
				padding: 20px 20px 0px 0px;
				margin: 5px 0px 5px;
			}
	
		div.product_sep {
			clear: both;
			width: 100%;
			height: 10px;
		}

	/* Product Details Page */
	.product_image {
		padding-top: 0;
	}
	.product_details {
		padding-top: 0;
	}
	div#product_images {
		position: relative;
		float: left;
		width: 300px;
		min-height: 140px;
		margin: 30px 0px 15px 5px;
		padding-right: 20px;
		border-right: 1px solid #d7d7d7;
		text-align: left;
		margin-bottom: 15px;
	}
	div.product_description {
		position: relative;
		padding: 1em 0;
		font-family: Courier New, Courier, monospace;
		font-size: 10pt;
		color: purple;
	}
	.product_detailed_description table {
		border-left: 1px dotted #ccc;
		border-top: 1px dotted #ccc;
	}
	.product_detailed_description td, .product_detailed_description th {
		padding: 3px;
		text-align: left;
		border-right: 1px dotted #ccc;
		border-bottom: 1px dotted #ccc;
	}
	div.product_details {
		position: relative;
		float: left;
		padding: 0px 0px 20px 0px;
		margin-left: 20px;
		margin-right: 15px;
		width: auto;
		width:250px;
	}

	.small_product_images {
		clear: both;
		margin-top: 15px;
	}
	
		div.product_details h6 { /* Product Details Price */
			margin: 5px 0px;
			color: #333;
			font: bold 12px Verdana, Arial, Helvetica, sans-serif;
		}
			div.product_details h6 span {
				color: #316396;
			}
			div.product_details h6 del {
				color: red;
			}
		.product_details .div_button_blue {
			clear: both;
		}

		h5.product_details_title { /* Product Description Title */
			margin: 0 0px 10px;
			font: bold 12px/38px Verdana, Arial, Helvetica, sans-serif;
			border-bottom: 1px dotted silver;
		}
		.product_features {
			font: normal 12px Verdana, Arial, Helvetica, sans-serif;
		}
		.product_features li {
			list-style-image: url(../images/bullet_blue2.gif);
		}
		div.product_features img {
			margin: 0px 8px;
		}
		div.product_features a {
		color: #0287d4;
		background-color: transparent;
		}
	.review {
		margin-bottom: 0.5em;
		padding-left: 20px;
	}
		
	/* Switch Wiew */
	
	div.swtch_view {
		position: relative;
		float:right;
		text-align: right;
		display: block;
		color: #0287d4;
		background-color: transparent;
		padding-top: 5px;
		margin: 0;
	}
		div.swtch_view a {
			color: #0287d4;
			background-color: transparent;
			padding: 0px 7px 0px 7px;
		}
		div.swtch_view select {
			padding: 0px 0px 0px 3px;
		}
	/* Grid View */
	
	table.grid {
		width: 100%;
/*		border-top: 1px dotted silver;
		border-right: 1px dotted silver;*/
		empty-cells: show;
	}
		table.grid td {
		}
			table.grid td td {
				border: 0;
			}
		td.grid_full {
			padding: 10px;
			vertical-align: bottom;
			height: 30%;
			}
		td.grid_full .product_details, td.grid_full .category_product_details, td.grid_full .home_product_details, td.grid_full .search_product_details {
			padding: 10px 0 0;
			vertical-align: bottom;
			}
		table.product_wrapper {
			height: 100%;
		}
		table.product_wrapper .product_title_image {
			vertical-align: top;
		}
		table.grid a.grid_product_thumb {
			display: block;
			padding: 0px;
			margin: 0;
			float: none;
			text-align: center;
		}
			table.grid a.product_thumb img {
			}
			table.grid .product {
				padding: 0px 10px 23px 0px;
				background-image: none;
			}
			.grid h4 {
				margin-bottom: 1em;
				text-align: center;
			}
					
/* View Cart Page - Selectors */

	table.cart_data {
		margin: 0px 0px 10px;
		width: 100%;
		clear:both;
	}
		table.cart_data tr th {
			padding: 0px 10px;
			text-align: left;
			color: #fff;
			font: normal 11px/30px Verdana, Arial, Helvetica, sans-serif;
			font-weight: bold;
			background: #635f61;
			border-bottom: #635f61 1px solid;
		}
			table.cart_data th.first {
				background: url(../images/th_first_darkBlue.gif) left no-repeat #635f61;
				border-bottom: #635f61 1px solid;
				height: 30px;
			}
				table.cart_data th.coupon {
					text-align: left;
					width: 100%;
				}
					table.cart_data th.coupon a {
						color: #c8dbef;
						text-decoration:none;
						top: 2px;
						position: relative;
					}
					table.cart_data th.coupon span#couponField input.apply_coupon {
						color: #c8dbef;
						font-weight: bold;
						position: relative;
						border-bottom:none;
						border-top: none;
						border-right: none;
						border-left: none;
						background-color: #c905cb;
						padding: 0px 15px 0px 0px;
						margin:0;
						text-decoration:underline;
						height: 22px;
						cursor: pointer;
					}
			table.cart_data th.price {
				color: #fff;
				background-color: #635f61;
				font-weight: bold;
			}
			table.cart_data th.last {
				background: url(../images/th_last_darkBlue.gif) right no-repeat #635f61;
				border-bottom: #635f61 1px solid;
			}
		table.cart_data input#couponBox {
		border: #336598 1px solid;
		}

	table.cart_data td {
		padding: 7px;
		vertical-align: middle;
		font: normal 11px Verdana, Arial, Helvetica, sans-serif;
		border-bottom: #635f61 1px solid;
		background-image: url(../images/cart_bg.jpg);
		background-repeat: repeat-x; 
	}
		table.cart_data .price {
			text-align: right;
			color: #5f5f5f;
		}
		table.cart_data tr td.total {
			text-align: right;
			color: #646464;
			font-weight: bold;
		}
		table.cart_data td img.remove_item {
			margin-left: 12px;
		}
			table.cart_data td a {
				color: #5f5f5f;
			}
				table.cart_data td a:hover {
					text-decoration: none;
				}
					table.cart_data td img.product_thumb {
						width: 50px;
						height: 50px;
						border: 1px solid silver;
					}

	div.step_back {
		float: left;
	}

	/* Register Page */
	table#setup td {
		color: #777;
		font: normal 12px Arial, Helvetica, sans-serif;
	}
	table#setup img {
		margin: 0px 10px;
	}
	span.asterisk {
		color: red;
		display: inline;
	}
		/* Address Information */
		div.box_address {
			width: 495px;
			height: 220px;
			background: url(../images/box_address.gif) no-repeat;
			
		}
			div.box_address table {
				width: 480px;
				margin-left: 10px;
			}
				div.box_address table td {
					padding: 0px 5px;
				}
				
		/* Rounded Boxes - For Register and Checkout Forms */
		table.round_box {
			margin-bottom: 10px;
		}
			table.round_box td div.sep {
				width: 20px;
			}
			table.round_box td {
				font: normal 11px Arial, Helvetica, sans-serif;
			}
			table.round_box td label {
				white-space: nowrap;
				padding-right: 3px;
			}
			table.round_box h5 { /* Title */
				margin: 0px;
				padding: 0px;
				height: 29px;
				border-bottom: 1px solid #a5acb2;
				font: bold 12px/29px Arial, Helvetica, sans-serif;
			}
			table.round_box td label {
				margin-right: 5px;
			}
			form#anonymus_checkout_form input {
				width: 170px;
			}
			/*Order details */
			div.order_details_wrapper {
				padding: 15px 0px 25px 0px;
				text-align: left;
				margin-left:auto;
				margin-right:auto;
				width:80%;
			}
			.wrap_tbl tr td {
				padding: 15px 15px 15px 0px;
				vertical-align: top;
			}
			table.order_box {
				margin-bottom: 20px;
				padding: 0px;
				border-left: 1px solid #ffc1ff;
				border-top: 1px solid #ffc1ff;
			}
			table.order_box td div.sep {
				width: 75px;
			}
			table.order_box td {
				padding: 5px 10px;
				vertical-align: middle;
				font: normal 11px Verdana, Arial, Helvetica, sans-serif;
				border-bottom: 1px solid #ffc1ff;
				border-right: 1px solid #ffc1ff;
				background-color: #fff5ff;
			}
			table.order_box td.title_ord {
				background-color: #ffe5ff;
			}
			table.order_box th {
				font: normal 11px Arial, Helvetica, sans-serif;
				border-bottom: #ffc1ff 1px solid;
				border-top: #ffc1ff 1px solid;
			}
			table.order_box td label {
				display: block;
				width: 125px;
			}
			table.order_box h5 { /* Title */
				margin: 0px;
				padding: 0px 10px 0px 10px;
				height: 29px;
				font: bold 12px/29px Arial, Helvetica, sans-serif;
				background-color: #ffcdff;
				width:auto;
			}
			.order_product_egoods {
				border-left: 1px solid #c7e1f9;
				border-top: 1px solid #c7e1f9;
			}
			a.details {
				color: #a3a;
				background-color: transparent;
			}
			div.order_product_option {
				font-size: 11px;
				padding-top: 5px;
				padding-left: 5px;
				color: #497095;
			}
			div.order_product_sku {
				padding-top: 8px;
				font-size: 9px;
				padding-left: 5px;
				color: #6d6d6d;
				font-family: 'Trebuchet MS';
				font-weight: bold;
			}
			span.product_option_bullet {
				position: relative;
				top: -2px;
				}
		/* Short Description for Rounded boxes */
		table#account_information td#decription p {
			margin: 0px 10px;
			width: 200px;
		}
		/* Rounded Boxes - Colors */
		table.blue {
			background: #f6d1f5;
		}
		table.blue td {
			padding: 0;
			margin: 0;
		}
		table.silver {
			background: #eaeaea;
			padding: 0;
			margin: 0;
		}
		table.gray {
			background: #ddd;
			padding: 0;
			margin: 0;
		}

	/* Checkout Page */
	div#checkout_page {
		width: 100%;
		margin: 0 auto;
	}

	/* Checkout Steps */
	table#checkout_steps {
		width: 100%;
		margin-bottom: 10px;
		background-color: #e6b4e6;
		color: #222;
		font: normal 9px Arial, Helvetica, sans-serif;
		border: none;
		padding: 0;
	}
		table#checkout_steps td {
			text-align: center;
			vertical-align: middle;
			border: none;
			padding: 0;
		}
			table#checkout_steps td#selected {
				color: white;
				background: #752775;
			}
			h4 label {
				white-space: nowrap;
			}
			.instructions {
				padding: 10px 0px 10px 0px;
				text-align: center;
				}
			textarea.instructions_textarea {
				width: 95%;
				height: 110px;
				padding: 5px;
				}
				.note {
					color: #666666;
					padding-left: 20px;
					padding-right: 10px;
					font-size: 12px;
				}
	/* Authorize or Register */
	table#authorize_or_register td div.sep {
		width: 15px;
	}
		div.err {
			padding: 5px 10px 5px 10px;
			color: red;
			line-height: 160%;
			border: 1px solid red;
			background-color: #e7f2fd;
			margin: 10px 20px 10px 20px;
		}
	/* Customer login links */
	a.login_links {
		display:block;
		position:relative;
		height:20px;
		line-height:17px;
		padding:0 10px 0 20px;
		}
	a.login {
		background: url(../images/account_icons.gif) no-repeat 0px 0px transparent;
		float:left;
	}
	a.logout {
		background: url(../images/account_icons.gif) no-repeat 0px -40px transparent;
		line-height:20px;
		float:left;
	}
	a.register {
		background: url(../images/account_icons.gif)  no-repeat 0px -20px  transparent;
		float:left;
	}
	a.profile {
		background: url(../images/account_icons.gif)  no-repeat 0px -85px  transparent;
	}
	a.orders {
		background: url(../images/account_icons.gif)  no-repeat 0px -64px  transparent;
	}
	a.login_box {	
		background: url(../images/account_icons.gif)  no-repeat 0px 0px  transparent;
	}
	a.register_box {	
		background: url(../images/account_icons.gif)  no-repeat 0px -20px  transparent;
	}
	
	/* Billing / Shipping Methods */
	table.billing_shipping_methods td {
		font: normal 11px Arial, Helvetica, sans-serif;
		vertical-align: top;
	}
	table.billing_shipping_methods td h4 {
		padding-top:8px;
	}
		table.billing_shipping_methods td div.sep {
			width: 20px;
		}
	td.shippig_method {
		padding-top: 15px;
	}
	td.shippig_method label {
		cursor: pointer;
		display:block;
	}
	td.shippig_method input {
		float: left;
		margin: 0px 5px 5px 0px;
	}
	
	/* Billing and shipping adress */
	td.modify {
			height: 29px;
			border-bottom: 1px solid #a5acb2;
		}
		td.modify h4 {
			font: bold 12px Arial, Helvetica, sans-serif;
			padding: 0;
			margin: 0;
		}
		div.prev_page {
				position: relative;
				float: right;
				top:7px;
			}
			div.prev_page a {
				color: #0287d4;
				background-color: transparent;
				font-size: 13px;
			}
			
	/* Checkout confirmation */
	table.prev_and_next tr td {
		vertical-align: bottom;
	}
	
	/* Checkout success */
	div.success {
		color: #390;
		font-size: 18px;
		font-weight: bold;
		font-family: Arial, Helvetica, sans-serif;
		padding: 10px 0px 0px 0px;
		/* width: 90%; */
		margin-left: auto;
		margin-right: auto;
	}
		
	/* Order List / Order Details */
	
	table.orders_data {
		margin: 0px 0px 10px;
		width: 100%;
		clear:both;
	}
		table.orders_data tr th {
			padding: 0px 10px;
			text-align: left;
			color: #666;
			font: normal 11px/30px Verdana, Arial, Helvetica, sans-serif;
			background: #ffd3ff;
		}
			
			table.orders_data th.first {
				background: url(../images/th_first_blue.gif) no-repeat #ffd3ff;
			}
			table.orders_data th.last {
				background: url(../images/th_last_blue.gif) right no-repeat #ffd3ff;
			}

	table.orders_data td {
		padding: 5px 10px;
		vertical-align: middle;
		font: normal 11px Verdana, Arial, Helvetica, sans-serif;
		border-bottom: 1px solid #ffd3ff;
		line-height: 26px;
		background-color: #fff5ff;
	}
		table.orders_data .price {
			text-align: right;
			color: #5f5f5f;
			width: 70px;
		}
		
/* Footer */

div#footer {
	margin: 0 auto;
	width: 962px;
	color: #9c008b;
	text-align: center;
	font: normal 11px/39px "Courier New", Courier, monospace;
	background: #5f2960;
	padding: 0 0 52px;	
}
	div#footer a {
		color: #9c008b;
	}
	
#footerbg {
	width: 962px;
	margin: 0 auto;
	background: #fff url(../images/footer_bg.gif) 50% 0 no-repeat;
}
	
div#line_footer {
	margin: 10px auto;
	width: 940px;
	border-top: 1px solid #9c008b;
}
div#copyright {
	margin: 10px auto;
	width: 920px;
	color: #4f4526;
	text-align: right;
	font: normal 10px Verdana, Geneva, sans-serif;	
	padding: 8px 10px;
	border-top: 1px solid #9C008B; 
}
	div#copyright a {
		color: #ce0ace;
		font-weight: bold;
		text-decoration: none;
	}
		div#copyright a:hover {
			text-decoration: underline;			
		}
	/* Input Button Styles */

	/* Blue Btn Input */

		.button {
			float: left;
			background: transparent url('../images/buttons/btn_blue_left.gif') no-repeat top left;
			padding-left: 4px; 
			/* margin-top:5px; */
		}
			.button, input.button_blue {
				background: transparent url('../images/buttons/btn_blue_right.gif') no-repeat top right;
				display: block;
				float: left;
				font: bold 13px Arial;
				line-height: 23px;
				height: 23px; 
				text-decoration: none;
				margin: 0;
				padding-right: 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			a.button_blue, a.button_blue:visited {
				color: #fff;
				text-decoration: none;
			}
			* html input.button_blue {
				overflow: visible;
			}
		
		/* Empty Cart Btn Input */

		.button-empty {
			float: left;
			background: transparent url(../images/buttons/btn_red_left.gif) no-repeat top left !important;
			padding-left: 6px;
		}
		.button-empty input.input-submit {
				background: transparent url('../images/buttons/btn_red_right.gif') no-repeat top right;
				font: bold 13px Arial;
				line-height: 23px;
				height: 23px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 0;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
				left: 0;
			}
			* html input.button_empty {
				overflow: visible;
			}
			
		/* Continue Btn Input */

		
			* html input.button_continue {
				overflow: visible;
			}
		
		
		/* Next Step Btn Input */
		
		div.div_button_next_step {
			float: right;
			display: inline;
			padding: 0 0 0 6px;
			background: transparent url('../images/buttons/btn_blue_left.gif') no-repeat top left;
		}
			input.button_next_step {
				background: transparent url('../images/buttons/btn_next_right.gif') no-repeat top right;
				font: bold 13px Arial;
				line-height: 23px;
				height: 23px;
				text-decoration: none;
				margin: 0;
				padding: 0 17px 0 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			* html input.button_next_step {
				overflow: visible;
			}
		
		/*  Prev Step Btn Input */
		
		div.div_button_prev_step {
			float: left;
			padding-left: 14px;
			background: transparent url('../images/buttons/btn_prev_left.gif') no-repeat top left;
		}
			input.button_prev_step {
				background: transparent url('../images/buttons/btn_blue_right.gif') no-repeat top right;
/* 				display: inline;
				float: left; */
				font: bold 13px Arial;
				line-height: 23px;
				height: 23px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			* html input.button_prev_step {
				overflow: visible;
			}
			
		
		/* Gray Btn Input */
		
		.button-update {
			float: left;
			background: transparent url('../images/buttons/btn_gray_left.gif') no-repeat top left !important;
			padding: 0 0 0 6px; 
		}
		.button-update	input.input-submit {
				background: transparent url('../images/buttons/btn_gray_right.gif') no-repeat top right !important;
				display: block;
				float: left;
				font: normal 13px Arial;
				line-height: 23px;
				height: 23px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 0;
				border: none;
				color: black;
				cursor: pointer;
				outline: none;
				left: 0 !important;
			}
		* html input.button_gray {
				overflow: visible;
			}
		/* Add to cart btn */
		.grid form .button,
		.button-cart { 
			float: left;
			clear: both;
			display: inline-block;
			background: transparent url(../images/buttons/btn_gray_left.gif) no-repeat top left !important;
			padding: 0 0 0 5px;
			overflow: hidden;
			margin-top:9px;
		}
		.grid form .quantity .button input.button-cart,
		.button-cart input.input-submit {
				display: inline;
				float: left;
				width: auto;
				height: 23px; 
				margin: 0;
				padding: 2px 32px 2px 0;
				text-decoration: none;
				border: 0;
				color: black;
				cursor: pointer;
				outline: none;
				font: normal 11px Arial, Helvetica, sans-serif;
				background: transparent url('../images/buttons/btn_add_to.gif') no-repeat top right !important;
				left: 0;
			}
			* html input.button_add {
				overflow: visible;
			}
		
			
	/* Cart buttons */
	.cart_buttons div.div_button_gray {
		float: left;
	}
	.cart_buttons div.div_button_gray, .cart_buttons div.div_button_empty {
		display: inline;
		margin: 0 5px 10px 0;
	}
	.cart_buttons div.div_button_checkout {
		display: inline;
		margin: 0 0 10px 5px;
	}
	.cart_buttons div input {
		margin: 0;
		outline: none;
	}
	
	/* IE7 hack */
	*:first-child+html input.button_checkout,
	*:first-child+html input.button_add,
	*:first-child+html input.button_gray,
	*:first-child+html input.button_prev_step,
	*:first-child+html input.button_next_step,
	*:first-child+html input.button_continue,
	*:first-child+html input.button_empty,
	*:first-child+html input.button_blue {
		width: 1%;
	}

	/* Login Details */
	table.login_details {
		margin-top: 10px;
	}
	table.login_details td {
		padding: 2px 5px 2px 0;
		vertical-align: middle;
		text-align: left;
	}
	table.login_details a {
		color: #0287d4;
		background-color: transparent;
	}

	/* Contact Form */
	
	table.contact_form tr td {
		padding: 5px 5px 8px 5px;
	}
		table.contact_form tr td input {
			width: 230px;
		}
		table.contact_form tr td label input {
			width: auto;
			height: auto;
			border: none;
		}
		table.contact_form tr td input.button_blue {
			width: auto;
			height: 23px;
			border: none;
		}
		table.contact_form tr td textarea {
			width: 230px;
			height: 110px;
		}
		table.contact_form tr td select {
			width: auto;
		}

		table.contact_form input.error { /* Contact Form Error Class*/
			width: 180px;
			border: #f60303 1px solid;
		}
		
	/* Send To Friends */
	
	div.send_to_friend {
		padding: 15px;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
	}
		div.send_to_friend td {
			font-size: 12px;
			padding-right: 7px;
		}
			div.send_to_friend p.err {
			color: #CC0000;
			}
			div.send_to_friend  table.inputs tr td input {
/* 				width: 170px;
				height: 17px; */
			}
			div.send_to_friend td textarea {
				width: 180px;
				height: 80px;
			}
			
	/* Advanced Search */
	table#advancedSearch tr td {
		padding: 5px 15px 5px 5px;
	}
	table#advancedSearch tr td select {
		font-family: Arial, Helvetica, sans-serif;
		font-size:12px;
	}
	table#advancedSearch tr td input {
		font-family: Arial, Helvetica, sans-serif;
		font-size:12px;
	}
	table#advancedSearch tr td.large_input input {
		width: 190px;
	}
	table#advancedSearch tr td.price_input input {
		width: 60px;
	}
div.dynamic_area {
	clear:both;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	}
	#DropdownCategories {
		margin: 0 auto;
		width: 160px;
	}
	#DropdownCategories ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
		font: normal 13px/28px "Courier New", Courier, monospace;
	}
		#DropdownCategories ul li {
			background: url(../images/category_bg.gif);
		}
	#DropdownCategories ul ul {
		display: none;
		z-index: 5;
	}
	#DropdownCategories ul li ul {
		border: 1px solid #d7d7d7;
	}
		#DropdownCategories ul ul li {
			background: url(../images/subcategory_bg.gif);
		}
	#DropdownCategories a, #DropdownCategories a:visited {
		padding: 0px 5px;
		display: block;
		margin-bottom: 1px;
		color: #3a0e39;
		text-decoration: none;
	}
	#DropdownCategories a.isParent {
		background: url(../images/bullet_blue3.gif) no-repeat 148px center;
	}
	* html #DropdownCategories a {
		height: 1%;
	}
	* html #DropdownCategories li {
		float: left; width: 100%; margin: 0;
	}
	#DropdownCategories a:hover, #DropdownCategories a:active {
		background: url(../images/category_hover.gif);
	}
		#DropdownCategories ul ul li a:hover, #DropdownCategories ul ul li a:active {
			background: url(../images/subcategory_hover.gif);
		}
		
#manufacturers-box {}		
#manufacturers-box a { padding: 4px 4px 5px; font-size: 14px; font-family: 	"Courier New",Courier,monospace; }		
#manufacturers-box a:hover { background: url(../images/categories_bullet_over.jpg) no-repeat 175px center #cecece;  }		
#manufacturers-box {}		
#manufacturers-box {}		



#menu-search { position: absolute; bottom: 0; right: 0;  }
#header-search { padding: 0 0 0 46px; background: url(../images/magnifying_glass.gif) 0 50% no-repeat; float: left; }
#header-search .input-text { background: #C9A4C8; border-color: #85676D white white #85676D;   border-style: solid;
    border-width: 1px; height: 14px; vertical-align: middle; padding: 3px 4px; font-weight: bold; color: #333;}
#header-search .headerSearchButton { background: url(../images/buttons/btn_search_bg.png) 0 0 no-repeat; padding: 0 0 0 8px; height: 24px; display: inline-block; position: relative; top: 1px; }
#header-search .headerSearchButton input { background: url(../images/buttons/btn_search_bg.png) 100% 0 no-repeat; padding: 2px 8px 2px 0px; border: none; height: 23px; color: #fff; text-transform: uppercase; font-size: 12px; }
#header-search {  }


.h1-title { background: url(../images/featured_products_bg.gif) no-repeat scroll 0 0 transparent; padding: 0 0 0 8px; }
.h1-title h1{ background: url(../images/featured_products_bg.gif) no-repeat scroll 100% 0 transparent; padding: 0 8px 0 0; font: 20px/39px "Courier New",Courier,monospace; margin: 0; color: #786C6E; }
.products-title { background: url(../images/featured_products_bg.gif) no-repeat scroll 100% 0 transparent; padding: 0 0 0 8px; font: 20px/39px "Courier New",Courier,monospace; color: #786C6E; margin: 0;}

.sort-view { text-align: right; padding: 4px 8px;  }

#manufacturer-info { background: #EAEAEA url(../images/content_box_bgr.png) repeat-x 0 100%; width: 100%;  }
#manufacturer-info td { padding: 8px;  }
#manufacturer-info {   }
#manufacturer-info {   }

.product-table td { padding: 8px; }
.product-table {}
.product-table {}

.price-value { color: #CE0ACE; font-weight: bold;}

#main-menu { float: left; padding: 0 0 0 24px; }
#main-menu li { float: left; list-style: none; }
#main-menu li a { border-right: solid 1px #e7879d; border-left: solid 1px #ab86e4; padding: 0 8px; font: 14px "Courier New",Courier,monospace; color: #9C008B; text-decoration: none;}
#main-menu li:first-child a { border-left: 0; }
#main-menu li:last-child a { border-right: 0; }
#main-menu li a:hover { text-decoration: underline; }
#main-menu {}
#main-menu {}

#categories-box li { list-style: none;}

.product-table .product-details h3 a { color: #333; }


/* Buttons */
.button-container {padding: 1em 0;}
.button {display: inline-block; margin: 0 10px 0 0; padding: 0 0 0 5px; background: url(../images/button.png) 0 0 no-repeat;  }
.button a {display: inline-block; position: relative; left: 5px; margin: 0; padding: 0 10px 0 0; line-height: 23px; font-weight: bold; border: 0; background: url(../images/button.png) 100% 0 no-repeat; color: #fff;}
.button input {cursor: pointer; height: 23px; position: relative; left: 5px; margin: 0; padding: 0 10px 0 0; font-weight: bold; border: 0; background: url(../images/button.png) 100% 0 no-repeat; color: #fff;}

.button a {font-weight: bold; text-decoration: none;}
.button a:hover, .button a:active {}

#search-box { padding: 8px 8px 0; }
#search-box .box-content { padding: 8px 0 0 0; }
#search-box .button { background: none; float: left; }
#search-box .input-text { width: 120px; float: left;}
#search-box a { display: block; border-bottom: 0; border-top: 1px solid #D7D7D7; clear: both;  }
#search-box .button input { background: url(../images/icon_magnifying_glass.gif) 0 0 no-repeat; font-size: 0; text-indent: -1000px; }

#cart-box .box-content{   background: none repeat scroll 0 0 #EDB5E0;  border-left: 1px solid #DDBAD5; border-right: 1px solid #DDBAD5;  padding: 8px; }
	
#news-box { text-align: center; font-size: 11px;  }	
#news-box h3 { font-size: 11px; font-weight: normal; margin: 0; border-bottom: 0; }	
#news-box h3 a { border-bottom: 0; }	
#news-box .item { padding: 8px 0;  }	
#news-box .links a { display: inline;}


.products-box {}	
.products-box .product-image-link { padding: 4px 0; text-align: center; border-bottom: 0;  }	
.products-box h3 a { border-bottom: 0; font-size: 11px;  }	
.products-box h3 { margin: 0;  }	
.products-box .product-prices td { padding: 1px 4px;  }	
.products-box .product { border-bottom: 1px solid #D7D7D7; padding-bottom: 4px; margin-bottom: 4px;  }

#currency-box .box-content { padding: 8px; }

.list-page .product-prices,
.list-page .quantity { padding: 0 0 4px 0;  }

/* pager */
.pager { padding: 4px;}
.pager:after
{
	 content: ""; display: block; height: 0; font-size: 0; line-height:0; clear: both; visibility: hidden;
}
.pager .prev-page, .pager .selected-page, .pager .next-page, .pager a  { display: inline-block; padding: 3px 6px; border: solid 1px #d3d3d3; border-radius: 4px; -moz-border-radius: 4px;  }
.pager .prev-page { margin: 0 3px 0 0; }
.pager .selected-page { margin: 0px 0 0 3px; background: #ECECEC; color: #333; }
.pager .next-page { margin: 0 0 0 3px; }
.pager a { text-decoration: none; margin: 0 0px;}
.pager a:hover { background: #ECECEC; color: #333; }


.dynamic-page-product {  }
.dynamic-page-product #product-images  { float: left; width: 50%;  }
.dynamic-page-product .button-actions .button { clear: both; margin: 2px 0;  }
.dynamic-page-product .product-features { clear: both; }
.dynamic-page-product .product-description { font-size: 11px; font-weight: normal; color: #333; height: auto !important; }
.dynamic-page-product .product-description span { font-size: 11px; font-weight: normal; color: #333; height: auto !important; padding: 0; }
.dynamic-page-product td.product_image { width: 40%; }
.dynamic-page-product .h1-title { background: none; padding: 0;  }
.dynamic-page-product .h1-title h1 { background: none; padding: 0; font-size: 15px; line-height: 17px; color: #555; font-family: 	Verdana,Arial,Helvetica,sans-serif; font-weight: bold;  }
.dynamic-page-product .h1-title {  }
.dynamic-page-product .h1-title {  }
.dynamic-page-product .button-cart { float: none; display: block; margin: 8px 0 2px; }
.dynamic-page-product #ProductPricesHolder { padding: 8px 0; }


/* Tabs */
.tabs {padding: 10px 0 0;}
#content .tabs-menu {margin: 0 0 10px;padding: 0;border-bottom: 1px solid #dbdbdb;}
#content .tabs-menu li {float: left; position: relative; top: 1px; margin: 0 2px 0 0;padding: 0 0 0 5px;list-style: none; background: #d8d8d8 url(../images/tab-product.png) 0 0 no-repeat;}
#content .tabs-menu li.active { background-image: url(../images/tab-product-active.png); background-color: #fff;}
.tabs-menu a, .tabs-menu a:visited, .tabs-menu span {display: block; padding: 0 10px 0 5px; line-height: 26px; font-weight: bold; color: #606060; text-decoration: none; outline: none; background: url(../images/tab-product.png) 100% 0 no-repeat;}
.tabs-menu li.active a, .tabs-menu li.active a:visited, .tabs-menu li.active span {color: #000; background-image:url(../images/tab-product-active.png); background-color: #fff;}

.tabs-menu li.active a, .tabs-menu li.active a:visited {text-decoration:underline;}
.tabs-menu li.active a:hover, .tabs-menu li.active a:active {text-decoration: none;}

/* Popup */
.popup, #rating-page {background: #fff none;}
.popup label, #rating-page label  { display: block; margin: 8px 0 0 0;}
.popup textarea, #rating-page textarea { width: 400px;   }
.popup {}

/* Cart page */
.cart-content { width: 100%; clear: both; }
.cart-content th { background: #635F61; color: #fff; padding: 4px;}
.cart-content td { color: #5F5F5F; padding: 4px;}
#main .cart-content td {vertical-align: middle;  background: url(../images/cart_bg.jpg) 0 0 repeat-x;}
#main .cart-content td a {  color: #5F5F5F ;}
#cart-content { width: 100%; clear: both; }
#cart-content th { background: #635F61; color: #fff; padding: 4px;}
#cart-content td { color: #5F5F5F; padding: 4px;}
#main #cart-content td {vertical-align: middle;  background: url(../images/cart_bg.jpg) 0 0 repeat-x;}
#main #cart-content td a {  color: #5F5F5F ;}

#cart-content th.coltitle-product 		{	text-align: left;	}
#cart-content th.coltitle-quantity 		{	text-align: center;	}
#cart-content th.coltitle-price 			{	text-align: right;	}
#cart-content th.coltitle-total 			{	text-align: right;	}

#cart-coupon {padding: 0 10px; color: #fff; background: #336598; border-bottom: 1px solid #c7e1f9;}
#cart-coupon label, #cart-coupon span {display: inline-block; margin: 0;}
#cart-coupon label {height: 2.3em; line-height: 2.3em;}

#main .cart-content td.center { text-align: center; }

.table-total th, .table-total td {line-height: 24px; padding: 0 5px; text-align: right; border-bottom:1px solid #635F61;}
.table-total td {width: 1%; white-space: nowrap;}
#grand-total {background: #635F61;}
#grand-total th, #grand-total td {color: #fff;}

#cart-page .checkout-buttons {float: right;}
#cart-page .checkout-buttons .button, #cart-page .checkout-buttons .fright {clear: both; margin-bottom: 5px; cursor: pointer;}

.cart-bundeled-items { padding: 4px 0 4px 12px; border-left: solid 1px #d3d3d3; margin: 4px 0; 	 }
#main .cart-bundeled-items td { background: none; border: none; }

#cart .button-container .button { 
	background: transparent url('../images/buttons/btn_continue_shopping_left.gif') no-repeat top left;
	height: 33px; 
	float: right;
}
#cart .button-container .button	input.input-submit {
	background: transparent url('../images/buttons/btn_continue_shopping_right.gif') no-repeat top right;
	font: bold 13px Arial;
	line-height: 25px;
	height: 33px;
	text-decoration: none;
	margin: 0;
	padding: 0 28px 0 0px;
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	outline: none;
	left: 0;
}
/* Checkout btn */
		
		div.div_button_checkout {
			float: right;
			background: transparent url('../images/buttons/btn_checkoutLeft.gif') no-repeat top left;
			padding: 0 0 0 6px;
		}
			input.button_checkout {
				background: transparent url('../images/buttons/btn_checkout.gif') no-repeat top right;
				font: bold 13px Arial;
				line-height: 23px;
				height: 23px; 
				text-decoration: none;
				margin: 0;
				padding: 0 21px 0 0;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			* html input.button_checkout {
				overflow: visible;
			}
			
.checkout-modules-buttons .button { float: right; }
.dynamic-page-cart table.wide { width: 100%; margin: 16px 0 0; }


.checkout-page { padding: 0 16px;  }
.checkout-page label { display: block; }
.checkout-page .button-next { float: right; }
.checkout-page .billing-information-table th,
.checkout-page .billing-information-table td { padding: 4px; background: #F6D1F5; border: solid 2px #fff; ;  }
.checkout-page .billing-information-table table { width: 100%; }
.checkout-page .billing-information-table .confirm-order-address-separator { background: #ffffff; }
.checkout-page .button-container .fright { float: right !important; }

.checkout-table td { padding: 16px; border: solid 8px #fff; background: #F6D1F5; }
.checkout-table td td { padding: 4px; border: 0; border-bottom: dotted 1px #fff;  }

/* Checkout pages */
#checkout-steps {margin: 0 0 1em; padding: 0 16px; text-align: center; }
#checkout-steps div {float: left; width: 25%; display: inline-block; margin: 0; padding: 5px 0; text-align: center;background: #E6B4E6 url(../images/checkout_steps/arrow.gif) no-repeat 100% 50%;}
#checkout-steps .active {color: #fff; font-weight: bold; background: #752775 url(../images/checkout_steps/arrow_left_selected.gif) no-repeat 100% 50%;}
#checkout-steps .prev-active {background: #E6B4E6 url(../images/checkout_steps/arrow_right_selected.gif) no-repeat 100% 50%;}
#checkout-steps .last {background: #E6B4E6 none;}
#checkout-steps .active-last {background: #752775 none;}

arrow_left_selected.gif

