/*
	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,body{
	height:100%;
	padding:0;
	margin:0;
	}
body, .popup_container {
	height: 100%;
	margin: 0px;
	padding: 0px;
	background:#da95ae url(../images/marabu/bg.png) repeat-x 0 0;
	color: #000;
	font-size: 12px;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}
div.main_wrapper{
 background:transparent url(../images/marabu/bg_transparent.png);
   height:auto !important;
   min-height:100%;
   height:100%;
   position:relative
 }
   

.popup_container {
}
body * {
	margin: 0;
	padding: 0;
}

img {
	border: 0px;
}
a, a:visited {
	color: #814a5d; text-decoration: none;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}
input, select, textarea, option {
	font: normal 11px Tahoma, Arial, Helvetica, sans-serif;
}
option {
	padding-right: 6px;
}
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;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1em;
}
h2 { /* For Page Titles */
	margin: 10px 0px;
	padding: 0 0 0;
	background-color: transparent;
	background-repeat: repeat-x;
	border: 0;
	font: bold 13px Tahoma, Arial, Helvetica, sans-serif;
}
	h2.success {
		color: #000;
	}
	h2 span {
		display: inline-block;
		min-height: 23px;
		padding: 9px 0 0 18px;
		background-repeat: no-repeat;
	}
	h2 span p { margin-bottom: 0 !important;}
/* 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.5em 0;
}
.column ul {
	list-style: none none;
}
#container {
	margin:0 auto;
	width:978px;
	/*padding:0 1px;*/
	padding:0;
	background:#fff;
	position:relative;
}

	/* Header */
	div#header {
		margin: 0px;
		height: 164px;
		background: url('../images/header_bg.jpg');
		clear: both;
	}
		h1#logo {
			float: left;
			width: 320px;
			height: 112px;
			margin: 30px 0 0 0;
		}
		h1#logo  a {
			display:block;
			height:0;
			padding-top:112px;
			overflow:hidden;
		}
		
		/* Fast Menu - Links */
		div#fast_menu {
			position: relative;
			float: right;
			top: 0px;
			right: 30px;
			width: 56%;
		}
			div#fast_menu ul {
				margin: 0px;
				height: 27px;
				padding: 0px;
				list-style: none;
				float: right;
			}
				div#fast_menu ul li {
					margin: 0px 10px;
					font: normal 12px/27px Tahoma, Arial, Helvetica, sans-serif;
					display: block;
					float: left;
					color: white;
					background-color: transparent;
			}
				div#fast_menu ul li.fast_menu_sep {
					width: 1px;
					height: 27px;
					background: url('../images/fast_menu_sep.png') no-repeat;
				}
					div#fast_menu ul li a, div#fast_menu ul li a:visited {
						color: white;
						text-decoration: underline;
						background-color: transparent;
					}
					div#fast_menu ul li a:hover, div#fast_menu ul li a:active {
						text-decoration: none;
					}
					div#fast_menu select {
						margin-top: 5px;
					}
		
		/* Top Menu - Tabs */
		div#top_menu {
			position: absolute;
			top: 140px;
			right: 0px;
		}
		
		/* Tab */

		a.tab {
			/* float: left; */
			display: inline-block;
			background: transparent url('../images/marabu/tab_left.gif') no-repeat top left;
			padding-left: 20px; 
			margin-right:3px;
			/* margin-top:5px; */
		}
			.tab span {
				background: transparent url('../images/marabu/tab_right.gif') no-repeat top right;
				display: inline-block;
				/* display: block;
				float: left; */
				font: bold 12px Tahoma, Arial, sans-serif;
				line-height: 24px;
				height: 24px; 
				text-decoration: none;
				margin: 0;
				padding-right: 25px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}

	/* Sub Header */

		div#search {
			background:url(../images/marabu/search.gif) no-repeat;
			height:26px;
			width:155px;
		}
		div#search input.phrase {
			position: relative;
			top: 5px;
			left:5px;
			width:120px;
			border:none;
			background:transparent;
		}
		div#search input.submit_btn {
			position: relative;
			top: 0px;
			cursor:pointer;
			width:26px;
			height:0px;
			padding-top:26px;
			overflow:hidden;
			border:none;
			background:transparent;
		}
		input.search_btn {
			position: relative;
			}
		div#fast_login {
			font: bold 11px/normal Tahoma, Arial, Helvetica, sans-serif;
			float: right;
			height: 24px;
			padding-right: 24px;
			padding-top:2px;
		}
		div#fast_login a.login {
			margin-right:14px;
		}
			div#fast_login span {
				white-space:nowrap;
			}
			div#fast_login a, div#fast_login a:visited {
				color: #fff;
				text-decoration: none;
			}
			div.customer_name {
				font-family: Tahoma, Arial, Helvetica, sans-serif;
				font-size: 12px;
				border-bottom: #b0b0b0 1px solid;
				width: 163px;
				padding-bottom: 3px;
				
			}
		/* Body and Content and Columns */
		div.wrapper {
			padding: 16px 7px;
			background:#e8e8e8;
		}
		table#body {
			width: 100%;
		}
			td#content {
				vertical-align: top;
				padding: 0px 6px;
				color: #000;
				width:100%;
			}
			td#content div#inner_content {
				display: block;
				background:#fff;
			}
			.prev_next {
				margin-top:20px;
			}
				td#content div#inner_content div.prev_next a, td#content div#inner_content div.prev_next a:visited {
					color: #814a5d;
					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 {
					vertical-align: top;
					width: 190px;
					padding-bottom: 15px;
				}
				#right_column {
					vertical-align: top;
					width: 190px;
					padding-bottom: 15px;
				}
				#product_comparison th, #product_comparison td {
					border: 1px dotted silver;
					/* vertical-align: middle; */
					padding: 5px;
				}
				#product_comparison .div_button {
					margin: 5px;
				}
				#product_comparison th.product_compared {
					width: 50%;
					height: 100%;
					padding: 5px 5px 15px;
					text-align: center;
				}
				.product_compared .wrapper {
					width: 100%;
					height: 100%;
				}
				#product_comparison .wrapper td {
					border: 0;
				}
				.product_compared .product_image {
					height: 100%;
				}
				.product_compared .product_details {
					vertical-align: bottom;
				}
				#product_comparison th.attribute_title {
					text-align: left;
				}
				#product_comparison .product_thumb {
					display: block;
					float: none;
					margin: 0 auto 10px;
				}
				#product_comparison .remove_button {
					display: inline-block;
					margin: 0 0 20px;
					padding: 0 0 0 25px;
					line-height: 20px;
					font-weight: normal;
					background: url(../images/icon_remove_item.gif) 0 50% no-repeat;
				}
				#product_comparison .div_button_blue {
					margin: 0 0 20px;
				}
				#product_comparison .quantity {
					display: inline-block;
				}
				#product_comparison td {
					text-align: center;
				}
				#product_comparison .div_button_add {
					margin: 0 auto;
					float: none;
				}
		/* CMS Boxes */
		div.box {
			width: 170px;
			font: normal 11px Tahoma, Arial, Helvetica, sans-serif;
			background:#fff url(../images/marabu/box_bg.jpg) no-repeat 0 -27px;
			margin-bottom: 6px;
			line-height: 150%;
		}
		div.box_bottom {
			background:url(../images/marabu/box_bottom.jpg) no-repeat 0 100%;
		}
			div.box a, div.box a:visited {
			}
			div.box a:hover, div.box a:active {
				text-decoration: none;
			}
			.box .div_button {
				margin: 5px 0 0;
			}
			#product_comparison_box.box {
				padding-bottom: 5px;
			}
			#comparison_available {
				margin: 5px;
			}
			table.menu_box_table {
				width: 100%;
			}
				table.menu_box_table tr td {
					padding: 15px 0px 0px 5px;
					vertical-align: top;
				}
			/* Lists for Categories and Manufacturers */
			.subcategory {
				margin: 0 0 5px 0;
				padding: 5px 10px;
				text-align:center;
				background: #fff;
				width:160px;
				height:120px;
				font-weight:bold;
				float:left;
				font-size:12px;
			}
			.categoryImage {
				margin:0 auto;
				display:block;
			}
			div.box ul.list {
				line-height: 20px;
			}
			div.box ul.list a, div.box ul.list a:visited {
				display: block;
				padding: 4px 20px 3px 7px;
				color: #814a5d;
				font-weight:bold;
				text-decoration: none;
				background:url(../images/marabu/cats_bg.gif) repeat-x 0 100%;
			}
				div.box ul.list a span {	
					color:#c59caa;
				}
				div.box ul.list a:hover, div.box ul.list a:active {
					text-decoration: none;
					background:#F0F0F0 ;
				}
					div.box ul.list a.highlight, div.box ul.list a.highlight:visited {
						color: #814a5d;
						background-color: transparent;
					}
					div.box ul.list a.highlight:hover, div.box ul.list a.highlight:active {
						color: white;
						background-color: #814a5d;		
						background: url(../images/categories_bullet_all.jpg) no-repeat 175px center #814a5d;			
					}
		
			/* Search */
			.search_box form {
				padding: 5px 10px;
			}
			.search_box #phrase {
				width: 120px;
				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 {
			
				padding: 0px 0px 10px 25px;
				margin-bottom: 10px;
				line-height: 150%;
			}
				div.box div.view_cart span.items_total {
					font-weight: bold;
					color: #737373;
					font-size: 11px;
				}
			div.box div.checkout_links {
				padding: 0px 10px 0px 25px;
			}
			/* News */
			ul#categories_news {
				margin-bottom: 10px;
				width: 170px;
				padding-top: 10px;
				border-bottom: 1px solid #d7d7d7;
			}
				ul#categories_news li {
					margin-bottom: 10px;
				}
				.view_all {
					display: inline-block;
					line-height: 16px;
				}
				.icon-rss {
					padding: 0 0 0 18px;
					background: url(../images/icon-rss.gif) 0 50% no-repeat;
				}
			
			/* Recently Viewed, New products, Bestsellers */
			div.recently_viewed, div.bestsellers, div.new_products, .box_content {
				font: normal 11px Tahoma, Arial, Helvetica, sans-serif;
				padding: 10px 5px 5px 7px;
			}
			div.recently_viewed,  div.new_products{
				font-size:12px;
				color:#435e6a;
				padding: 10px 11px 5px 11px;
			}
			.price_color {
				color:#e7387c;
			}
				.column .small_product_thumb {
					display: block;
					margin:0 auto;
				}
			.p_title {
				font-weight:bold;
			}
			
			/* Attributes filter box */
			#ProductAttributesFilterBox fieldset, #ProductAttributesFilterBox .item-wrapper {
				padding: 5px;
				border: 0;
				border-bottom: 1px solid #D7D7D7;
			}
			#ProductAttributesFilterBox legend {
				margin: 0;
				padding: 0;
				color: #000;
				font-weight: bold;
			}
			#ProductAttributesFilterBox select {
				max-width: 180px;
			}
			#ProductAttributesFilterBox input.valueFrom,
			#ProductAttributesFilterBox input.valueTo {
				width: 40px;
			}
			#ProductAttributesFilterBox .div_button {
				margin: 5px 5px 0 5px;
			}
					
			/* login */
			div.login {
				font: normal 12px/20px Tahoma, 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 {
				margin: 10px 0 0;
				color: #7c7c7c;
				font-size:21px;
				font-weight:normal;
			}
			
			
			/* Page Title Icon */
			h2 img {
				display:none;
				/* margin-top: -32px; */
				/* margin-right: 0px; */
			}
			h2 a, h2 a:visited {
				color: white;
				background-color:transparent;
			}
				h2 a:hover, h2 a:active {
					text-decoration: none;
				}
			
			/* Simple Page Title in Gray - No Backgrounds and Effects */
			h2.simple_title {
				font: bold 15px;
			}
			h2.simple_title img {
				float: left;
			}
			/* Product Details Title */
			h2.product_title {
				margin: 0 0 10px;
				padding: 0px;
				color: #555;
				font: bold 15px/20px Verdana, Tahoma, 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;
			}

		h3 {
			margin: 0 0 1em;
			font: bold 12px Tahoma, Arial, Helvetica, sans-serif;
		}
		#left_column h3, #right_column h3 { /* For CMS Box Titles */
			margin: 0px;
			width: 170px;
			height: 28px;
			color: #666666;
			background-color: transparent;
			font: bold 12px/30px Tahoma, Arial, Helvetica, sans-serif;
			background:url(../images/box_title.jpg) no-repeat;
			text-transform:uppercase;
		}
			h3 span {
				display: block;
				height: 30px;
				font: normal 11px Tahoma, Helvetica, sans-serif;
				padding: 0px 0px 0px 8px;
				line-height:28px;
		} 
			/* CMS Box Colors */
		
				
				
			/* CMS Box Icon */
			h3 img {
				display:none;
			}

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

		h6 {
			color: gray;
			font: bold 1em Tahoma, Arial, Helvetica, sans-serif;
		}
		
	/* Gray Content Boxes */
	div.content_box {
		width: 100%;
		height: 100%;
		margin: 0px;
		padding: 0px;
	}
		div.content_box_inner {
			height: 100%;
			margin: 0px;
			padding: 17px;
			background:#fff url(../images/conetnt_bottom.gif) no-repeat 0 100%;
		}
	/* Breadcrumbs */
	div.breadcrumb {
		margin: 0 0 1em;
		padding: 0 0 0 10px;
		height:22px;
		font: normal 11px/22px Tahoma, Arial, Helvetica, sans-serif;
		background:url(../images/breadcrumb.gif) no-repeat;
	}
		div.breadcrumb div {
		}
		div.breadcrumb a, div.breadcrumb a:visited {
		
		}
		div.breadcrumb a:hover, div.breadcrumb a:active {
			text-decoration: none;		
		}
		div.breadcrumb span {
			float: right;
			font-size:11px;
			color:#666666;
			padding:0px 5px 2px 0;
		}
	/* Grid view */
	div.grid_view a, div.grid_view a:visited {
		color: #316396;
	}

	/* Warning/Error Boxes */
	.error-note, span.asterisk {
color:#FF0000;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
}
	.error {
		margin: 10px 0px;
		border: 1px dotted #900;
		color: #b40101;
		font: bold 13px/18px Tahoma, 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 Tahoma, 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 {
			margin: 0 0 10px;
			padding: 0 0 0 120px;
			height: 130px;
			color:#814A5D;
			background: url(../images/featured_planet.png) 0 0 no-repeat;
		}
			h2#featured_products span {
				margin: 0px;
				padding: 50px 0 0 0;
				display: block;
				height: 130px;
				text-align: right;
				padding-right: 60px;
				font: normal 25px Tahoma, Arial, Helvetica, sans-serif;
				background: url(../images/featured_right.gif) 100% 0 no-repeat;
				color:#814A5D;
			}
	/* 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-bottom: 1px solid #dbd8d8;
		}
		.product_image {
			background:url(../images/marabu/p_image_bg.gif) repeat-y 100% 0;
			width:333px;
			vertical-align:middle;
			text-align:center;
		}
		.product_details, .category_product_details, .home_product_details, .search_product_details {
			padding: 0px 20px 10px;
			border-bottom: 1px dotted silver;
			color:#49463d;
		}
		.product_details h4 {
			margin-bottom: 0.5em;
		}
		.product_details .button_container .div_button, .product_details .ProductComparisonDetailsBox {
			/* float: right; */
			clear: left;
		}
		/* 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: normal;
			vertical-align: top;
		}
		/* Product Thumbs */
		.product_thumb {
			float: left;
			display: block;
			padding: 0;
			margin-right: 0;
		}
			.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;
				text-align: left;
			}
			.product_options_table th {
				padding-left: 10px;
				background: url(../images/bullet_blue.gif) 0 50% no-repeat;
			}
			.product_options_table select {
				max-width: 200px;
			}
		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 {
				font: bold 13px Verdana, Tahoma, Arial, Helvetica, sans-serif;
			}
				div.product h4 a, div.product h4 a:visited {
					color: #814a5d;
				}
				div.product h4 a:hover {
					text-decoration: none;				
				}
	
			div.product h6 {
				margin: 5px 0px;
				color: #333;
				font: bold 12px Verdana, Tahoma, Arial, Helvetica, sans-serif;
			}
				
				/* Product Price Table */
				
				table.display_price {
					margin: 0 0px 5px;
				}
				table.display_price td.price_description {
					padding: 3px 5px 0px 0px;
				}
				
				td.product_title_image{ padding-bottom: 0 !important;}
				td.product-details { padding-top: 0 !important;}
				.product-price { padding: 3px 5px 2px 0px; color: #49463D;}
				div.quantity { padding: 3px 5px 8px 0px; color: #49463D;}
				
				table.display_price td.price_value {
					padding: 3px 0px 0px 0px;
					font-weight: normal;
					color: #000000;
				}
				table.display_price td.price_value span {
					color: #e7387c;
					font-weight:bold;
				}
				span.price_value, span.price-value  {
					color: #e7387c;
					font-weight:bold;
				}
				table.display_price td.prmodified {
					color: #e7387c;
					font-weight: normal;
					padding: 3px 5px 0px 0px;
				}
				table.display_price td.price_value del {
					color: #990000;
				}
			div.product .product_description {
				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;
	}
	.productRating {
		margin: 20px 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;
	}
	.small_product_images {
		clear: both;
		margin-top: 15px;
	}

	/* Tabs */
	.tabs {
		padding: 0;
	}
	#content .tabs-menu {
		margin: 0;
		padding: 0;
		list-style: none;
		border-bottom: 1px solid #d6d6d6;
	}
	#content .tabs-menu li {
		float: left;
		margin: 0 2px 0 0;
		padding: 0 0 0 5px;
		background: #181818 url(../images/tab-product.png) 0 0 no-repeat;
	}
	#content .tabs-menu li.active {
		background-position: 0 100%;
	}
	.tabs-menu a, .tabs-menu a:visited, .tabs-menu span {
		display: block;
		padding: 0 10px 0 5px;
		line-height: 26px;
		color: #000;
		text-decoration: none;
		outline: none;
		background: #181818 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-position: 100% 100%;
	}
	.tab-content {
		display: none;
		padding: 10px 0;
	}
	div.product_description {
		position: relative;
		padding: 1em 0;
	}
	.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;
	}
	.product_details .tabs {
		padding: 20px 0 0;
	}
	.quantity {
		margin: 0 0 5px;
	}
	
		div.product_details h6 { /* Product Details Price */
			margin: 5px 0px;
			color: #333;
			font: bold 12px Verdana, Tahoma, 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; */
			margin: 0 0 5px 0;
		}
		.product_details .div_button_add {
			margin: 0 5px 5px 0;
		}

		h5.product_details_title { /* Product Description Title */
			margin: 0 0px 10px;
			font: bold 12px/38px Verdana, Tahoma, Arial, Helvetica, sans-serif;
			border-bottom: 1px dotted silver;
		}
		#content ul.product_features {
			font: normal 12px Verdana, Tahoma, Arial, Helvetica, sans-serif;
			list-style:none;
			padding:0;
			margin:0;
		}
		
		div.product_features img {
			margin: 0px 8px;
		}
		div.product_features a, div.product_features a:visited {
			color: #814a5d;
			background-color: transparent;
		}
	
	#product-attributes th, #product-attributes td {
		padding: 2px 5px;
		text-align: left;
		border-bottom: 1px dotted silver;
	}
	.review {
		margin: 0 0 1em;
		border-bottom: 1px dotted silver;
	}
		
	/* Switch Wiew */
	
	div.swtch_view {
		position: relative;
		float: right;
		text-align: right;
		display: block;
		color: #814a5d;
		background-color: transparent;
		margin: 0;
	}
		div.swtch_view a, div.swtch_view a:visited {
			color: #814a5d;
			background-color: transparent;
			padding: 0px 7px 0px 7px;
		}
		div.swtch_view select {
			padding: 0px 0px 0px 3px;
		}
	/* Grid View */
	
	table.grid {
		width: 100%;
		empty-cells: show;
		margin: 16px 0 0 0;
	}
		table.grid td {
			/*border-bottom: 1px solid #dbd8d8;*/
		}
			table.grid td td {
				border: 0;
			}
		td.grid_full {
			padding: 10px 10px 19px 10px;
			vertical-align: top;
			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 .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-top: 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:#333333;
			font: normal 11px/30px Verdana, Tahoma, Arial, Helvetica, sans-serif;
			font-weight: bold;
			background:#d1d1d1;
		}
			table.cart_data th.first {
				background:#d1d1d1;
				height: 30px;
			}
				table.cart_data th.coupon {
					text-align: left;
					width: 100%;
				}
					table.cart_data th.coupon a, table.cart_data th.coupon a:visited {
						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: #336598;
						padding: 0px 15px 0px 0px;
						margin:0;
						text-decoration:underline;
						height: 22px;
						cursor: pointer;
					}
			table.cart_data th.price {
				color: #333333;
				background:#d1d1d1;
				font-weight: bold;
			}
			table.cart_data th.last {
				background:#d1d1d1;
			}
		table.cart_data input#couponBox {
		border: #336598 1px solid;
		}

	table.cart_data td {
		padding: 7px;
		vertical-align: middle;
		font: normal 11px Verdana, Tahoma, Arial, Helvetica, sans-serif;
		border-bottom: #dbd8d8 1px solid;
		background: transparent url(../images/marabu/box_bg.jpg) no-repeat scroll 0 -27px;
		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, table.cart_data td a:visited {
				color: #5f5f5f;
			}
				table.cart_data td a:hover, table.cart_data td a:active {
					text-decoration: none;
				}
					table.cart_data td img.product_thumb {
						border: 1px solid silver;
					}

	div.step_back {
		float: left;
	}

	/* Register Page */
	table#setup td {
		color: #777;
		font: normal 12px Tahoma, 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 Tahoma, 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 Tahoma, 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;
			}
			.wrap_tbl tr td {
				padding: 15px 15px 15px 0px;
				vertical-align: top;
			}
			table.order_box {
				margin-bottom: 20px;
				padding: 0px;
				border-left: 1px solid #c7e1f9;
				border-top: 1px solid #c7e1f9;
			}
			table.order_box td div.sep {
				width: 75px;
			}
			table.order_box td {
				padding: 5px 10px;
				vertical-align: middle;
				font: normal 11px Verdana, Tahoma, Arial, Helvetica, sans-serif;
				border-bottom: 1px solid #E9E9E9 ;
				border-right: 1px solid #E9E9E9 ;
				background-color: #fff;
			}
			table.order_box td.title_ord {
			}
			table.order_box th {
				font: normal 11px Tahoma, Arial, Helvetica, sans-serif;
				border-bottom: #E9E9E9 1px solid;
				border-top: #E9E9E9 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 Tahoma, Arial, Helvetica, sans-serif;
				background-color: #E9E9E9;
				width:auto;
			}
			.order_product_egoods {
				border-left: 1px solid #c7e1f9;
				border-top: 1px solid #c7e1f9;
			}
			a.details {
				color: #814a5d;
				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: #d7eafc;
		}
		table.blue td {
			padding: 0;
			margin: 0;
		}
		table td.select-address {
			padding-bottom: 10px;
		}
		table td.select-address select, table td.select-address option {
			width: 200px;
		}
		table td.select-address option {
			padding-right: 10px;
		}
		table.silver {
			background: #eaeaea;
			padding: 0;
			margin: 0;
		}
		table.gray {
			background: #e9e9e9;
			padding: 0;
			margin: 0;
		}

	/* Checkout Page */
	div#checkout_page {
		padding:18px;
		margin: 0 auto;
	}
	
	
	/* Checkout Steps */
	table#checkout_steps {
		width: 100%;
		margin-bottom: 10px;
		background-color: #d3d3d3;
		color: #222;
		font: normal 9px Tahoma, 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: #656565;		
			}
			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.advanced_search {
		display:block;
		position:relative;
		height:20px;
		line-height:17px;
		font-weight:bold;
		color:#fff;
		padding:5px 10px 0 20px;
		}
	a.login_links {
		display:block;
		position:relative;
		height:20px;
		line-height:17px;
		padding:0 10px 0 20px;
		}
		
	#fast_login a.login {
		background:url(../images/marabu/padlock.gif) no-repeat 0 0;
		float:left;
	}
	#fast_login a.logout {
		background: url(../images/marabu/padlock.gif) no-repeat 0 0;
		line-height:17px;
		float:left;
	}

	#fast_login a.register {
		background:url(../images/marabu/register.gif) no-repeat 0 0;
		float:left;
	}
	
	
	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;
	}
	.guest_name {
		position:relative;
		float:left;
		display:block;
		padding-right:15px;
		padding-top:1px;
		color:#fff;
		width:140px;
		}
	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;
	}
	#header a.profile {
		background:url(../images/marabu/customer_icn.gif) no-repeat 2px 1px;
		}
	#header a.orders  {
		background:url(../images/marabu/weshlist_icn.gif) no-repeat 0 0;
	}
	/* Profile */
/* 	#content #profileTabs {
		margin: 0 0 20px;
		padding: 0;
	}
	#profileTabs li {
		padding: 0 5px 0 0;
		list-style: none;
		display: inline;
	} */
	#content #profileTabs.tabs-menu {
		margin: 0 0 20px;
	}
	#profile_form td {
		padding: 3px 5px;
	}
	#profile_form td.corner {
		padding: 0;
	}
	/* Billing / Shipping Methods */
	table.billing_shipping_methods td {
		font: normal 11px Tahoma, 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;
	}
	td.shippig_method input {
		margin: 0px 5px 0 0;
	}
	
	/* Billing and shipping adress */
	
	td.shippig_method label { float: left; clear: both;}
	
	td.modify {
			height: 29px;
			border-bottom: 1px solid #a5acb2;
		}
		td.modify h4 {
			font: bold 12px Tahoma, Arial, Helvetica, sans-serif;
			padding: 0;
			margin: 0;
		}
		div.prev_page {
				position: relative;
				float: right;
				top:7px;
			}
			div.prev_page a, div.prev_page a:visited {
				color: #814a5d;
				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: Tahoma, 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, Tahoma, Arial, Helvetica, sans-serif;
			background: #e0e0e0;
		}
			
			table.orders_data th.first {
				background: #e0e0e0;
			}
			table.orders_data th.last {
				background:#e0e0e0;
			}

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

#newsletters label {
	display: block;
	margin: 0 0 1em;
}
#newsletters input {
	vertical-align: middle;
}

/* Footer */
table#footer {
	width: 100%;
	height: 122px;
	background: #fff url(../images/marabu/footer.gif) repeat-x;
	color:#666;
}
	td#footer_icons {
		width: 372px;
		height: 184px;
	}
	td#footer_icons .showFooterIcons0 {
		display: none;
	}
	
	td#footer_text {
		padding: 10px;
		/* width: 100%; */
		font: normal 12px Tahoma, Arial, Helvetica, sans-serif;
	}
		div#footer_links {
			margin-top: 10px;
			margin-left:30px;
			width: 418px;
		}
			div#footer_links div {
				float: left;
				width: 130px;
				padding:5px 0;
			}
			#footer_links a {
				color:#5e3f62;
			}
				
	
	#footer_map {
		width: 170px;
		height: 159px;
		padding-top: 18px;
		padding-left: 15px;
		color: #666;
		font: normal 11px Tahoma, Arial, Helvetica, sans-serif;
	}
	#footer_map a, #footer_map a:visited {
		color: #814a5d;
		background-color: transparent;
	}
	.contact_info_title {
		display:block;
		padding-bottom:5px;
	}

	/* Input Button Styles */
.div_button {
	float: left;
}
	/* Blue Btn Input */

		.div_button_blue {
			/* float: left; */
			display: inline-block;
			background: transparent url('../images/buttons/btn_blue_left.gif') no-repeat top left;
			padding-left: 4px; 
			/* margin-top:5px; */
		}
		div.div_button_blue {
			float: left;
		}
			.button_blue, input.button_blue {
				background: transparent url('../images/buttons/btn_blue_right.gif') no-repeat top right;
				display: inline-block;
				/* display: block;
				float: left; */
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 24px;
				height: 24px; 
				text-decoration: none;
				margin: 0;
				padding-right: 6px;
				border: none;
				color: #603242;
				cursor: pointer;
				outline: none;
			}

			.rate_btn {
				background: transparent url('../images/buttons/vote_btn.gif') no-repeat top right;
				display: inline-block;
				/* display: block;
				float: left; */
				font: bold 11px Tahoma, Arial, sans-serif;
				white-space:nowrap;
				line-height: 24px;
				height: 24px; 
				text-decoration: none;
				margin: 0;
				padding-right: 30px;
				border: none;
				color: #603242;
				cursor: pointer;
				outline: none;
				padding-left:1px;
			}
			.send_to {
				background: transparent url('../images/buttons/stf_btn.gif') no-repeat top right;
				/* display: block;
				float: left; */
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 24px;
				height: 24px; 
				text-decoration: none;
				margin: 0;
				padding-right: 30px;
				border: none;
				color: #603242 !important;
				cursor: pointer;
				outline: none;
				padding-left:1px;
				display: block;
			}
		
		/* Empty Cart Btn Input */

		div.div_button_empty {
			float: left;
			background: transparent url('../images/buttons/btn_red_left.gif') no-repeat top left;
			padding-left: 6px;
		}
			input.button_empty {
				background: transparent url('../images/buttons/btn_red_right.gif') no-repeat top right;
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 22px;
				height: 24px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 0;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			
		/* Continue Btn Input */

		div.div_button_continue { 
			background: transparent url('../images/buttons/btn_continue_shopping_left.gif') no-repeat top left;
			padding-left: 6px;
		}
			input.button_continue {
				background: transparent url('../images/buttons/btn_continue_shopping_right.gif') no-repeat top right;
				font: bold 12px Tahoma, Arial, sans-serif;
				line-height: 25px;
				height: 33px;
				text-decoration: none;
				margin: 0;
				padding: 0 28px 0 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
		
		/* Next Step Btn Input */
		
		div.div_button_next_step {
			float: right;
			display: inline;
			padding: 0 0 0 6px;
			background: transparent url('../images/buttons/btn_gray_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 11px Tahoma, Arial, sans-serif;
				line-height: 22px;
				height: 24px;
				text-decoration: none;
				margin: 0;
				padding: 0 17px 0 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
		
		/*  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_gray_right.gif') no-repeat top right;
/* 				display: inline;
				float: left; */
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 22px;
				height: 24px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 6px;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
		
		/* Gray Btn Input */
		.div_button_gray {
			float: left;
			background: transparent url('../images/buttons/btn_gray_left.gif') no-repeat top left;
			padding: 0 0 0 6px;
		}
			.button_gray {
				background: transparent url('../images/buttons/btn_gray_right.gif') no-repeat top right;
				display: block;
				float: left;
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 24px;
				height: 24px;
				text-decoration: none;
				margin: 0;
				padding: 0 6px 0 0;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}

		/* Add to cart btn */
		.div_button_add { 
			float: left;
			display: inline-block;
			background: transparent url('../images/buttons/btn_gray_left.gif') no-repeat top left;
			padding: 0 0 0 5px;
			/* overflow: hidden; */
		}
			.button_add {
				background: transparent url('../images/buttons/btn_add_to.gif') no-repeat top right;
				/* display: inline; */
				/* float: left; */
				font: bold 11px Tahoma, Arial, sans-serif;
				line-height: 23px;
				height: 23px; 
				margin: 0;
				padding: 0 25px 0 0;
				text-decoration: none;
				border: 0;
				color: #FFFFFF;
				cursor: pointer;
				width:auto;
				outline: none;
			}

		/* 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 11px Tahoma, Arial, sans-serif;
				line-height: 22px;
				height: 24px; 
				text-decoration: none;
				margin: 0;
				padding: 0 21px 0 0;
				border: none;
				color: #FFFFFF;
				cursor: pointer;
				outline: none;
			}
			
	/* 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;
	}
	
	/* 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, table.login_details a:visited {
		color: #814a5d;
		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: Tahoma, 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.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 ul {
		margin: 0 0 0 5px;
		padding: 0;
		list-style-type: none;
		width: 161px;
	}
	#DropdownCategories ul ul {
		display: none;
		z-index: 5;
		background:#fff;
		z-index:999;
	}
	#subcategories-box {
		padding-bottom:15px;
	}
	#DropdownCategories ul li ul {
		border: 1px solid #d7d7d7;
		border-bottom-width: 0;
	}
	#DropdownCategories a, #DropdownCategories a:visited {
		display: block;
		padding: 4px 20px 3px 7px;
		color: #814a5d;
		font-weight:bold;
		text-decoration: none;
		background:url(../images/marabu/cats_bg.gif) repeat-x 0 100%;
	}
	#DropdownCategories a.isParent {
	}
	#DropdownCategories a:hover, #DropdownCategories a:active {
		background: #f0f0f0;
	}
	
	/* Layout Selectors */
.fleft {
	float: left;
}
.fright, div.fright {
	float: right;
}
.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: block;
}
.message {
	margin: 0 0 10px;
	padding: 5px;
}
.label-new {
	float: right;
	
}

.new-product-div { position: relative; }
.new-product-div .label-new { position: absolute; left: 0; top: 0; float: none;}

.product-prices {}
.product-prices .final-price { line-height: 18px; }
.product-prices .list-price { line-height: 18px; }
.product-prices .price-modifiers{ line-height: 18px;}

.center, table.orders_data tr th.center {
	text-align: center;
}
#payment_metods {
	float:right;
	width:510px;
	font-size:11px;
	padding: 5px 0 0 0;
	color:#666;
}
#payment_metods img {
	margin-top:7px;
}
.cart_box {
	position:absolute;
	top:4px;
	right:70px;
	color:#666666;
}
.header_content {
	position: relative;
	top: 100px;
	font-size:11px;
}
.header_content tr td {
	vertical-align:top;
}
.phone {
	background:url(../images/marabu/phone.gif) no-repeat 0 0;
	display:block;
	height:20px;
	line-height:17px;
	margin-top:5px;
	margin-right:10px;
	padding:0 10px 0 24px;
	position:relative;
	font-weight:bold;
	color:#fff;
}
.padding {
	padding:0 18px 10px 18px;
}
.clear {
	clear:both;
}
.inputFocus {
	padding:3px 4px;
}
.fp_txt {
	background:url(../images/marabu/fp_txt_bg.gif) no-repeat;
	font-size:12px;
	font-weight:bold;
	color:#7c7c7c;
	padding:15px 10px 10px 10px;
}
.fp_items {
	background:url(../images/marabu/fp_separator.gif) no-repeat 0 0;
	padding-top:20px;
}
.fp_item {
	position:relative;
	width:134px;
	height:172px;
}
.fp_image {
	position:absolute;
	top:0;
	left:0;
	width:134px;
	height:133px;
	z-index:1;
	overflow:hidden;
}
.fp_frame {
	position:absolute;
	width:134px;
	height:133px;
	top:0;
	left:0;
	z-index:50;
	background:url(../images/marabu/frame.png) no-repeat 0 0;
}
.fp_title {
	position:absolute;
	left:0;
	bottom:0;
	height:33px;
	width:124px;
	z-index:10;
	background:url(../images/marabu/frame.png) no-repeat 0 100%;
	color:#fff;
	font-weight:bold;
	text-align:center;
	padding:3px 5px;
}
.fp_title a:link, .fp_title a:visited, .fp_title a:hover, .fp_title a:active  {
	color:#fff;
}
#billing_adress {
	margin-top:15px;
}

div.forum_box{
	background:url(../images/forum_box.jpg) no-repeat bottom right #fcfcfc;
}

div.forum_box ul.list li{
	padding:5px;
	background:none;
	color:#646464;
}

div.forum_box ul.list li a, div.forum_box ul.list li a:visited{
	background:none;
	background-image:none;
	padding:0;
	margin:0;
	display:inline;
}

div.forum_box ul.list li a:hover{
	background:none;
	padding:0;
	margin:0;
}

div.forum_box ul.list li span.forum_title{
	color:#824b5e;
	font-weight:bold;
}

div.forum_box ul.list li span.forum_poster{
	font-weight:bold;
}
.newsletter .SubscriberEmail {
	background:#e8e8e8;
	border-top:#6f6f6f 1px solid;
	border-left:#6f6f6f 1px solid;
	border-bottom:none;
	border-right:none;
	padding:2px 4px;
	margin-top:10px;
	width:136px;
}
.box .button_gray {
	padding-right:20px;
}
.box .div_button_gray {
	padding-left:20px;
}
#profile_form {
	clear:both;
}
.category_desc {
	padding:15px 0 0 0;
}
#product-detailed-description {
	clear:both;
}
ul.tabs-menu {
	height:26px;
}
#addToWishlistButton {
	line-height:24px;
	white-space:nowrap;
	padding:0 7px;
}

/* gallery */
.gallery-table { width: 100%;}
.gallery-table td { padding: 4px 4px 0; text-align: center; vertical-align: bottom; width: 32% }
.gallery-table {}
.gallery-description {}
.gallery-description td { padding-bottom: 4px; padding-top: 0; color: #49463D; vertical-align: top;}
.gallery-description {}

/* popup warning */
#backgroundPopup
{ 
	display:none;  
	position:fixed;  
	_position:absolute; /* hack for internet explorer 6*/  
	height:100%;  
	width:100%;  
	top:0;  
	left:0;  
	background:#000000;  
	border:1px solid #cecece;  
	z-index:1;  
}

#popupWarning
{
	display:none;
	position:fixed;  
	_position:absolute; /* hack for internet explorer 6*/  
	height:170px;  
	width:408px;  
	background:#FFFFFF;  
	border:2px solid #cecece;  
	z-index:2;  
	padding:12px;  
	font-size:13px;  
}

#popupWarning h1
{  
	text-align:left;
	color:#B9748C;
	font-size:22px;
	font-weight:700;
	border-bottom:1px dotted #D3D3D3;
	padding-bottom:2px;
	margin-bottom:20px;
}  

#popupWarningClose
{  
	font-size:14px;  
	line-height:14px;  
	right:6px;  
	top:4px;  
	position:absolute;  
	color:#6fa5fd;  
	font-weight:700;  
	display:block;  
}

.ColorWheel
{
	text-align: center;
	margin: 10px 0px;
	width: 100%;
	font: bold 13px/18px Tahoma, Arial, Helvetica, sans-serif;
	clear:both;
}

.ColorBox
{
	float: left;
	margin-right: 12px;
	width: 75px;
	height: 45px;
	padding-top: 30px;
	-webkit-border-radius 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	box-shadow: 3px 3px 6px #000;
	-webkit-box-shadow: 3px 3px 6px #000;
	-moz-box-shadow: 3px 3px 6px #000;
	border: 1px solid black;
	font-size: 11px;
	line-height: normal;
}

.ColorBoxInverted
{
	float: left;
	margin-right: 12px;
	width: 75px;
	height: 45px;
	padding-top: 30px;
	-webkit-border-radius 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	box-shadow: 3px 3px 6px #000;
	-webkit-box-shadow: 3px 3px 6px #000;
	-moz-box-shadow: 3px 3px 6px #000;
	filter:DropShadow(Color=#000000, OffX=3, OffY=3);
	border: 1px solid black;
	font-size: 11px;
	line-height: normal;
	color: white;
}

.ColorWheelText
{
	text-align: left;
	margin-left: 50px;
	margin-right: 50px;
	font-weight: normal;
}
