﻿/* ====================================================================

CHROMEMASTER
Grupa Pff
http://pff.pl/

Michał Krupa
michal@procommerce.lodz.pl

September 2008


TABLE OF CONTENT:

	1.	GLOBAL
		1.1 CSS Reset
		1.2 General styles
	2. BASE
	3. BASIC LAYOUT
		3.1 Header
			3.1.1 Logo
			3.1.2 Contact
			3.1.3 Suppliers
			3.1.4. Other languages
			3.1.5 Main navigation
		3.2 Content
			3.2.1 Navigation
				3.2.1.1 Main search
				3.1.1.2 Submenu
			3.2.2 Main content
				3.2.2.1 Headers
				3.2.2.2 Buttons
		3.3 Sidebar
			3.3.1 Shopping cart
			3.3.2 Login
			3.3.3 Recommend to a friend
			3.3.4 Delivery info
		3.4 Footer
			3.4.1 Copyright
			3.4.2 Help navigation
			3.4.3 Suppliers
	4. MAIN CONTENT LAYOUTS
		4.1 News overview
		4.2 Items overview
		4.3 Categories list
		4.4 Items list
		4.5 Item details
		4.6 Text block
		4.7 Bread crumbs
		4.8 Category navigation
		4.9 Sorting criteria
		4.10 Pageing
		4.11 Order plan
		4.12 Order details
		4.13 Customer type
		4.14 Customer details
		4.15 Buttons
	5. DYNAMIC ACTIONS
		5.1 Submenu

==================================================================== */




/* --------------------------
1. GLOBAL
---------------------------*/

	/* --------------------------
	1.1 CSS Reset
	---------------------------*/

		html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-weight: inherit;
		font-style: inherit;
		font-size: 100%;
		font-family: inherit;
		vertical-align: baseline;
		}
		
		:focus {
		outline: 0;
		}
		
		body {
		line-height: 1;
		color: black;
		background: white;
		}
		
		ol, ul {
		list-style: none;
		}
		
		table {
		border-collapse: separate;
		border-spacing: 0;
		}
		
		caption, th, td {
		text-align: left;
		font-weight: normal;
		}
		
		blockquote:before, blockquote:after,
		q:before, q:after {
		content: "";
		}
		
		blockquote, q {
		quotes: "" "";
		}
		
		b, strong {
		font-weight: bold;
		}
		
		i, em {
		font-style: italic;
		}
		
		a:link, a:visited{
			color: #333;
		}
		a:hover{
			color: #000;
		}

	/* --------------------------
	1.2 General styles
	---------------------------*/	
	
		body {
		font: 62.5%/1.6 Tahoma, Arial, Helvetica, Verdana, sans-serif;
		}
		
		img {
		display: block;
		border: 0;
		}
		
		label[for] {
		cursor: pointer;
		}
		
		input, select, option, textarea {
		vertical-align: middle;
		}
			input.img, select.img {
			width: auto !important;
			height: auto !important;
			border: 0 !important;
			}
		
		/* hidden elements */	
		.h, div.hr hr {
		position: absolute;
		top: -9900px;
		left: 0;
		display: block;
		width: 1px;
		height: 1px;
		overflow: hidden;
		text-indent: -9990px;
		font-size: 1px;
		}
		
		/* floats clear */
		.clear {
		clear: both;
		font-size: 1px;
		visibility: hidden;
		}
	
/* --------------------------
2. BASE
---------------------------*/

	body {
	background: #22211f;
	color: #fff;
	}

/* --------------------------
3. BASIC LAYOUT
---------------------------*/

	body {
	}

	/* --------------------------
	3.1 Header
	---------------------------*/
	
		#header {
		background: url(img/header/bg.jpg) repeat-x #22211f;
		}
			#header-inner {
			position: relative;
			min-height: 247px;
			width: 1000px;
			margin: 0 auto;
			}

		/* --------------------------
		3.1.1 Logo
		---------------------------*/
		
			#logo {
			float: left;
			display: inline;
			width: 554px;
			height: 247px;
			overflow: hidden;
			font-size: 1em;
			font-weight: bolder;
			}
				#logo a {
				position: relative;
				display: block;
				width: 554px;
				height: 247px;
				overflow: hidden;
				padding: 70px 0 0;
				color: #eee;
				font-size: 3em;
				}
				
				#logo .r {
				position: absolute;
				top: 0;
				left: 0;
				display: block;
				width: 554px;
				height: 247px;
				background: url(img/logo.jpg) no-repeat;
				}

		/* --------------------------
		3.1.2 Contact
		---------------------------*/
		
			#header .contact {
			position: absolute;
			top: 117px;
			left: 232px;
			padding: 15px;
			background: url(img/header/bg.jpg) 0 -117px repeat-x;
			color: #c1c1c1;
			}				
				#header .contact p {
				margin: 0 0 0.3em;
				}
					#header .contact p.phone {
					font-size: 120%;
					font-weight: bolder;
					}
					
				#header .contact strong {
				color: #fff;
				}
								
				#header .contact a:link,
				#header .contact a:visited {
				color: #fff;
				text-decoration: none;
				}				
				#header .contact a:hover,
				#header .contact a:active {
				color: #c1c1c1;
				text-decoration: underline;
				}

		/* --------------------------
		3.1.3 Suppliers
		---------------------------*/
		
			#header .suppliers {
			position: absolute;
			top: 100px;
			left: 490px;
			}
				#header .suppliers ul {
				}
					#header .suppliers li {
					display: inline;
					margin: 0 0 0 23px;
					vertical-align: middle;
					}
						#header .suppliers img {
						display: inline;
						vertical-align: middle;
						}

		/* --------------------------
		3.1.4. Other languages
		---------------------------*/
		
			#otherLanguages {
			float: right;
			display: inline;
			margin: 29px 0 0 0;
			color: #c1c1c1;
			font-size: 90%;
			}								
				#otherLanguages a:link,
				#otherLanguages a:visited {
				color: #c1c1c1;
				text-decoration: none;
				}				
				#otherLanguages a:hover,
				#otherLanguages a:active {
				color: #fff;
				text-decoration: underline;
				}
				
				#otherLanguages p {
				float: left;
				display: inline;
				font-weight: bolder;
				}
				
				#otherLanguages ul {
				float: left;
				display: inline;
				margin: -5px 0 0 7px;
				font-weight: bolder;
				}
					#otherLanguages ul li {
					float: left;
					display: inline;
					margin: 0 0 0 7px;
					text-align: center;
					}
						#otherLanguages ul img {
						width: 22px;
						height: 22px;
						margin: 0 0 3px -1px;
						}

		/* --------------------------
		3.1.5 Main navigation
		---------------------------*/
		
			#mainNav {
			position: relative;
			clear: both;
			float: right;
			display: inline;
			width: 790px;
			height: 52px;
			margin: -57px 0 0;
			background: url(img/header/mainnav/bg.png) no-repeat #000;
			}
				#mainNav ul {
				height: 52px;
				margin: 0 0 0 15px;
				font-size: 110%;
				}
					#mainNav ul li {
					float: left;
					display: inline;
					height: 52px;
					padding: 0 0 0 1px;
					background: url(img/header/mainnav/item-border.png) 0 100% no-repeat;
					}
						#mainNav ul li.first-item {
						background: none;
						}
					
						#mainNav ul a {
						display: block;
						height: 52px;
						padding: 0 25px;
						font-weight: bolder;
						line-height: 52px;
						}
							#mainNav ul a:link,
							#mainNav ul a:visited {
							background: url(img/header/mainnav/item-bg-hover.png) 0 -52px repeat-x;
							color: #fff;
							text-decoration: none;
							}
							#mainNav ul a:hover,
							#mainNav ul a:active {
							background: url(img/header/mainnav/item-bg-hover.png) 0 0 repeat-x #222;
							color: #f60;
							text-decoration: none;
							}
							
							
	/* --------------------------
	3.2 Content
	---------------------------*/
	
		#content {
		background: #fff;
		}
			#content-inner {
			width: 1000px;
			height: auto;
			overflow: hidden;
			margin: 0 auto;
			padding: 6px 0;
			}
			
			#content input,
			#content select {
			padding: 4px 0 4px 10px;
			border: 1px solid #ddddd4;
			color: #000;
			}
				#content input.img {
				padding: 0 !important;
				}
			
				#content input:focus, 
				#content select:focus {
				border: 1px solid;
				border-color: #888 #aaa #aaa #888;
				color: #000;
				}

		/* --------------------------
		3.2.1 Navigation
		---------------------------*/
		
			#navigation {
			float: left;
			display: inline;
			width: 210px;
			color: #fff;
			font-size: 110%;
			}
				#navigation h3 {
				margin: 0 0 0.64em;
				font-size: 110%;
				font-weight: bolder;
				}
						
				#navigation input {
				font-size: 100%;
				}

			/* --------------------------
			3.2.1.1 Main search
			---------------------------*/
			
				#mainSearch {
				margin: 0 0 7px;
				background: url(img/navigation/search/bg-top.png) no-repeat #8F8F78;
				}
					#mainSearch fieldset {
					padding: 1.18em 22px;
					background: url(img/navigation/search/bg-bot.png) 0 100% no-repeat;
					}
					
					#mainSearch h3 {
					margin-bottom: 1em;
					}
						
					#mainSearch p {
					margin: 0 0 0.5em;
					}
					
					#mainSearch .advanced {
					margin: 1em 0 0;
					}
			
					#mainSearch a {
					padding: 0 14px 0 0;
					background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
					}
						#mainSearch a:link,
						#mainSearch a:visited {
						color: #dfdca4;
						text-decoration: underline;
						}
						#mainSearch a:hover,
						#mainSearch a:active {
						color: #fff;
						text-decoration: underline;			
						}
						
					#mainSearch #f_s_query {
					width: 112px;
					}
					
					#mainSearch input.img {
					margin: 1px 0 0 1px;
					}

			/* --------------------------
			3.1.1.2 Submenu
			---------------------------*/
			
				#navigation .submenu {
				margin: 0 0 7px;
				background: url(img/navigation/submenu/bg-top.png) no-repeat #323232;
				}
					#navigation .submenu-inner {
					padding: 1.27em 22px 1.18em;
					background: url(img/navigation/submenu/bg-bot.png) 0 100% no-repeat;
					}
			
					#navigation .submenu a:link,
					#navigation .submenu a:visited {
					color: #fff;
					text-decoration: none;
					}
					#navigation .submenu a:hover,
					#navigation .submenu a:active {
					color: #ddd;
					text-decoration: underline;			
					}
					
					#navigation .submenu ul {
					width: 162px;
					margin: 0 0 1.5em;
					font-weight: bold;
					}
						#navigation .submenu li {
						border-bottom: 1px solid #585858;
						background: url(img/embellishments/arrow-gray.gif) 1px 0.6em no-repeat;
						}
							#navigation .submenu li.collapsed {
							background: url(img/navigation/submenu/tree-controls.gif) 1px 0.6em no-repeat;
							}
							#navigation .submenu li.expanded {
							background: url(img/navigation/submenu/tree-controls.gif) -161px 0.6em no-repeat;
							}
								
							#navigation .submenu li.expanded {
							border-bottom: 0;
							}
							
							#navigation .submenu li a {
							padding: 0.1em 0 0.1em 17px;
							}
							
							#navigation .submenu li a.moo2 {
							padding-left: 17px;
							}
							
							#navigation .submenu li a.moo3 {
							padding-left: 0px;
							}
								
								#navigation .submenu li.expanded li a {
								}
							
							#navigation .submenu li ul {
							width: auto;
							border-top: 1px solid #585858;
							margin: 0 0 0 17px;
							font-weight: normal;
							}

		/* --------------------------
		3.2.2 Main content
		---------------------------*/
		
			#mainContent {
			float: left;
			display: inline;
			width: 600px;
			margin: 0 0 7px 20px;
			color: #333;
			font-size: 110%;
			}	
				#content .wideMainContent {
				float: right;
				width: 770px;
				margin: 0 0 7px;
				}
				
				#mainContent .price {
				font-size: 110%;
				}
					#mainContent .price del {
					color: #939393;
					}
				#mainContent .stock-full {
				color: #639600;
				}
				#mainContent .stock-medium {
				color: #f90;
				}
				#mainContent .stock-few {
				color: #c00;
				}
				#mainContent .stock-empty {
				color: #999;
				}

			/* --------------------------
			3.2.2.1 Headers
			---------------------------*/
			
				#mainContent h2 {
				margin: 0.4em 0 0;
				padding: 0.78em 10px 1.18em 21px;
				background: url(img/maincontent/header-bg.png) 0 100% repeat-x #fcfcfc;
				color: #333;
				font-size: 110%;
				font-weight: bolder;
				}
					#mainContent h2 a:link {
					color: #333;
					text-decoration: none;
					}
					#mainContent h2 a:visited {
					color: #555;
					text-decoration: none;
					}
					#mainContent h2 a:hover,
					#mainContent h2 a:active {
					color: #000;
					text-decoration: underline;
					}
				
				#mainContent div.header {
				height: auto;
				overflow: hidden;
				margin: 0.4em 0 0;
				padding: 0.78em 10px 1.18em 21px;
				background: url(img/maincontent/header-bg.png) 0 100% repeat-x #fcfcfc;
				}
					#mainContent div.header h2 {
					float: left;
					display: inline;
					min-width: 57px;
					margin: 0;
					padding: 0;
					background: none;
					}
					
					#mainContent div.header .more {
					float: left;
					display: inline;
					margin: 0 0 0 17px;
					padding: 0 0 0 17px;
					border-left: 1px solid #bdbda2;
					}
						#mainContent div.header .more a {
						padding: 0 14px 0 0;
						background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
						}
							#mainContent div.header .more a:link,
							#mainContent div.header .more a:visited {
							color: #a9a67f;
							text-decoration: underline;
							}
							#mainContent div.header .more a:hover,
							#mainContent div.header .more a:active {
							color: #660;
							text-decoration: underline;			
							}
			
				#mainContent h3 {
				margin: 0 0 1.1em;
				color: #333;
				font-size: 110%;
				font-weight: bolder;
				}
					#mainContent h3 a:link {
					color: #333;
					text-decoration: none;
					}
					#mainContent h3 a:visited {
					color: #666;
					text-decoration: none;
					}
					#mainContent h3 a:hover,
					#mainContent h3 a:active {
					color: #000;
					text-decoration: underline;
					}
			
				#mainContent h4 {
				color: #333;
				font-size: 100%;
				font-weight: bolder;
				}
					#mainContent h3 a:link {
					color: #333;
					text-decoration: none;
					}
					#mainContent h3 a:visited {
					color: #666;
					text-decoration: none;
					}
					#mainContent h3 a:hover,
					#mainContent h3 a:active {
					color: #000;
					text-decoration: underline;
					}

			/* --------------------------
			3.2.2.2 Buttons
			---------------------------*/
			
				#mainContent .button {
				display: block;
				height: 26px;
				background: url(img/buttons/bg.png) no-repeat #c3b212;
				font-size: 0.8em;
				font-weight: bolder;
				line-height: 25px;
				text-align: center;
				}
				
				#mainContent a.button {
				}
					#mainContent a.button:link,
					#mainContent a.button:visited {
					color: #fff;
					text-decoration: none;
					}
					#mainContent a.button:hover,
					#mainContent a.button:active {
					color: #fff;
					text-decoration: none;
					}
					
					#mainContent .button span {
					display: block;
					height: 26px;
					padding: 0 10px;
					background: url(img/buttons/bg-right.png) 100% 0 no-repeat;
					}
					
					#mainContent .button-cart span {
					padding-right: 27px;
					background: url(img/buttons/bg-cart-right.png) 100% 0 no-repeat;
					}
			
				#mainContent .button-arrUp,
				#mainContent .button-arrDown,
				#mainContent .button-arrLeft,
				#mainContent .button-arrRight {
				position: relative;
				display: block;
				width: 17px;
				height: 17px;
				overflow: hidden;
				background: #c3b212;
				color: #fff;
				line-height: 17px;
				text-align: center;
				}
					#mainContent .button-arrUp .r,
					#mainContent .button-arrDown .r,
					#mainContent .button-arrLeft .r,
					#mainContent .button-arrRight .r {
					position: absolute;
					top: 0;
					left: 0;
					display: block;
					width: 17px;
					height: 17px;
					overflow: hidden;
					}
					#mainContent .button-arrUp .r {
					background: url(img/buttons/arrup.png) no-repeat;
					}
					#mainContent .button-arrDown .r {
					background: url(img/buttons/arrdown.png) no-repeat;
					}
					#mainContent .button-arrLeft .r {
					background: url(img/buttons/arrleft.png) no-repeat;
					}
					#mainContent .button-arrRight .r {
					background: url(img/buttons/arrright.png) no-repeat;
					}

		/* --------------------------
		3.3 Sidebar
		---------------------------*/
		
			#sidebar {
			float: right;
			display: inline;
			width: 149px;
			color: #333;
			font-size: 110%;
			}
				#sidebar h3 {
				margin: 0 0 0.5em;
				background: url(img/sidebar/header-bg-top.png) no-repeat #92927a;
				color: #fff;
				font-size: 110%;
				font-weight: bolder;
				}
					#sidebar h3 span {
					display: block;
					padding: 0.9em 10px 0.9em 21px;
					background: url(img/sidebar/header-bg-bot.png) 0 100% no-repeat;
					}
				
				#sidebar .box {
				margin: 0 0 2em;
				}
					#sidebar .box p {
					margin: 0.8em 0 0;
					}
						
				#sidebar input {
				font-size: 100%;
				}

			/* --------------------------
			3.3.1 Shopping cart
			---------------------------*/
			
				#cart {
				margin: 0 0 0.52em;
				background: url(img/sidebar/cart/bg-top.png) no-repeat #7c6331;
				color: #fff;
				}
					#koszyk {
					padding: 1.17em 10px 1.4em 21px;
					background: url(img/sidebar/cart/bg-bot.png) 0 100% no-repeat;
					}
					
					#cart h3 {
					background: none;
					}
						#cart span {
						display: inline;
						padding: 0;
						background: none;
						}
						
					#cart ul {
					margin: 0.3em 0 0;
					}
						#cart ul li {
						margin: 0.1em 0;
						}
							#cart ul a {
							padding: 0 14px 0 0;
							background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
							}
								#cart ul a:link,
								#cart ul a:visited {
								color: #dfdca4;
								text-decoration: underline;
								}
								#cart ul a:hover,
								#cart ul a:active {
								color: #fff;
								text-decoration: underline;			
								}

			/* --------------------------
			3.3.2 Login
			---------------------------*/
			
				#login {
				}
					#login p {
					height: auto;
					overflow: hidden;
					}
						#login input {
						float: left;
						display: inline;
						width: 93px;
						margin: 0 0 0.6em;
						}
											
						#login input.img {
						float: right;
						display: inline;
						margin-top: -16px;
						}
						
					#login .register {
					font-size: 90%;
					}
						#login .register a {
						padding: 0 14px 0 0;
						background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
						}
							#login .register a:link,
							#login .register a:visited {
							color: #a9a67f;
							text-decoration: underline;
							}
							#login .register a:hover,
							#login .register a:active {
							color: #660;
							text-decoration: underline;			
							}

			/* --------------------------
			3.3.3 Recommend to a friend
			---------------------------*/
			
				#recommend {
				}
					#recommend p.description {
					text-align: center;
					}
					
					#recommend #f_r_mail {
					width: 99px;
					}

			/* --------------------------
			3.3.4 Delivery info
			---------------------------*/
			
				#delivery {
				}
					#delivery p.ups {
					margin: 0.92em 0 0;
					padding: 88px 0 0;
					background: url(img/sidebar/delivery/ups-logo.jpg) 50% 0 no-repeat;
					font-size: 90%;
					}
							
							
	/* --------------------------
	3.4 Footer
	---------------------------*/
	
		#footer {
		width: 1000px;
		padding: 2.1em 0 4.2em;
		margin: 0 auto;
		}
			#footer a:link,
			#footer a:visited {
			color: #dfdca4;
			text-decoration: underline;
			}
			#footer a:hover,
			#footer a:active {
			color: #fa7;
			text-decoration: underline;			
			}

		/* --------------------------
		3.4.1 Copyright
		---------------------------*/
		
			#copyright {
			float: left;
			display: inline;
			width: 500px;
			color: #fff;
			font-size: 1.2em;
			}
				#copyright small {
				font-size: 80%;
				}

		/* --------------------------
		3.4.2 Help navigation
		---------------------------*/
		
			#footer .helpNav {
			float: right;
			display: inline;
			width: 500px;
			font-size: 1.1em;
			}
				#footer .helpNav ul {
				margin: 0.1em 0 0;
				text-align: right;
				}
					#footer .helpNav li {
					display: inline;
					padding: 0 15px 0 13px;
					border-right: 1px solid #5B5B5B;
					}
						#footer .helpNav li.last-item {
						padding-right: 0;
						border-right: 0;
						}

		/* --------------------------
		3.4.3 Suppliers
		---------------------------*/
		
			#footer .suppliers {
			position: relative;
			top: 16px;
			clear: both;
			padding: 0.62em 0 0;
			border-top: 1px solid #4d4d4d;
			}
				#footer .suppliers ul {
				text-align: center;
				}
					#footer .suppliers li {
					display: inline;
					margin: 0 5px 0 1px;
					}
						#footer .suppliers img {
						display: inline;
						vertical-align: middle;
						}

/* --------------------------
4. MAIN CONTENT LAYOUTS
---------------------------*/

	/* --------------------------
	4.1 News overview
	---------------------------*/
	
		.newsOverview {
		height: auto;
		overflow: hidden;
		margin: 1.63em 0 0.8em;
		padding: 0 0 1.1em;
		border-bottom: 1px solid #edede0;
		background: url(img/maincontent/fauxcolumns-300-300.png) repeat-y;
		}
			.newsOverview .news {
			float: right;
			display: inline;
			width: 282px;
			margin: 0 0 1.1em;
			text-align: justify;
			}
				.newsOverview .oddItem {
				clear: left;
				float: left;
				}
				
				.newsOverview .news .date {
				float: right;
				display: inline;
				padding: 0.1em 0 0 5px;
				color: #939393;
				}

	/* --------------------------
	4.2 Items overview
	---------------------------*/
	
		.itemsOverview {
		height: auto;
		overflow: hidden;
		margin: 0 0 0.4em;
		padding: 1.63em 0 0.8em;
		border-bottom: 1px solid #edede0;
		background: url(img/maincontent/fauxcolumns-300-300.png) repeat-y;
		}
			.itemsOverview .item {
			float: right;
			display: inline;
			width: 282px;
			margin: 0 0 1.1em;
			}
				.itemsOverview .oddItem {
				clear: left;
				float: left;
				}
			
				.itemsOverview .item .pic {
				float: left;
				display: inline;
				}
					.itemsOverview .item .pic img {
					border: 1px solid #e2e2e2;
					}
				
				.itemsOverview .item .description {
				float: right;
				display: inline;
				width: 179px;
				text-align: justify;
				}
					.itemsOverview .item .description .details {
					height: auto;
					overflow: hidden;
					margin: 0.5em 0 0;
					}
						.itemsOverview .item .description .details .price {
						float: left;
						display: inline;
						padding: 0.27em 0 0;
						}
							
						.itemsOverview .item .description .details .more {
						float: right;
						display: inline;
						font-size: 110%;
						}

	/* --------------------------
	4.3 Categories list
	---------------------------*/
	
		.categoriesList {
		height: auto;
		overflow: hidden;
		padding: 1.1em 0;
		border-bottom: 1px solid #edede0;
		}
			.categoriesList ul {
			float: left;
			display: inline;
			width: 130px;
			margin: 0 9px 0 0;
			}
				.categoriesList li a {
				padding: 0 14px 0 0;
				background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
				font-weight: bolder;
				}
					.categoriesList li a:link {
					color: #333;
					text-decoration: underline;
					}
					.categoriesList li a:visited {
					color: #666;
					text-decoration: underline;
					}
					.categoriesList li a:hover,
					.categoriesList li a:active {
					color: #000;
					text-decoration: underline;
					}

	/* --------------------------
	4.4 Items list
	---------------------------*/
	
		.itemsList {
		margin: 0 0 0.4em;
		}
			.itemsList .item {
			height: auto;
			overflow: hidden;
			padding: 1.8em 0;
			border-bottom: 1px solid #edede0;
			}			
				.itemsList .item .pic {
				float: left;
				display: inline;
				}
					.itemsList .item .pic img {
					border: 1px solid #e2e2e2;
					}
				
				.itemsList .item .description {
				float: right;
				display: inline;
				width: 500px;
				text-align: justify;
				}
					.itemsList .item .description .details {
					height: auto;
					overflow: hidden;
					margin: 1.1em 0 0;
					}
						.itemsList .item .description .details .price {
						float: left;
						display: inline;
						width: 425px;
						padding: 3px 0 0;
						text-align: right;
						}
							
						.itemsList .item .description .details .more {
						float: right;
						display: inline;
						font-size: 110%;
						}

	/* --------------------------
	4.5 Item details
	---------------------------*/
	
		.itemDetails {
		height: auto;
		overflow: hidden;
		margin: 1.9em 0 0.4em;
		padding: 0 0 1.5em;
		border-bottom: 1px solid #edede0;
		background: url(img/maincontent/fauxcolumns-185-415.png) repeat-y;
		}
			.itemDetails .description {
			float: right;
			display: inline;
			width: 400px;
			text-align: justify;
			}
				.itemDetails .description .attributes {
				margin: -0.6em 0 1.2em;
				}
					.itemDetails .description .attributes li {
					padding: 0.6em 0;
					border-bottom: 1px solid #edede0;
					}
					
			.itemDetails .prod-info {
			float: left;
			display: inline;
			width: 184px;
			text-align: justify;
			}
				.itemDetails .prod-info .pic {
				position: relative;
				width: 165px;
				padding: 0 0 25px;
				margin: 0 0 1em;
				}
					.itemDetails .prod-info .pic img {
					border: 1px solid #e2e2e2;
					}
					
					.itemDetails .prod-info .pic p {
					margin: 0;
					}
						.itemDetails .prod-info .pic p a {
						position: absolute !important;
						left: 50%;
						bottom: 0;
						}
							.itemDetails .prod-info .pic a.previous {
							margin-left: -11px;
							}
							.itemDetails .prod-info .pic a.next {
							margin-left: 11px;
							}
						
				.itemDetails .prod-info p {
				margin: 0.6em 0;
				}
				
				.itemDetails .prod-info .putInCart {
				margin: 0.6em 0 1.5em;
				}
					.itemDetails .prod-info .putInCart select {
					width: 110px;
					margin: 0 0 0.9em;
					}
					
					.itemDetails .prod-info .putInCart .button {
					float: left;
					display: inline;
					}
					
				.itemDetails .prod-info .compare {
				padding: 0.9em 0;
				border: solid #edede0;
				border-width: 1px 0;
				}
					.itemDetails .prod-info .compare a {
					padding: 0 14px 0 0;
					background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
					font-weight: bolder;
					}
						.itemDetails .prod-info .compare a:link {
						color: #333;
						text-decoration: underline;
						}
						.itemDetails .prod-info .compare a:visited {
						color: #666;
						text-decoration: underline;
						}
						.itemDetails .prod-info .compare a:hover,
						.itemDetails .prod-info .compare a:active {
						color: #000;
						text-decoration: underline;
						}
					
				.itemDetails .prod-info .action {
				padding: 1.3em 0;
				}
					.itemDetails .prod-info .action a {
					font-size: 110%;
					font-weight: bolder;
					}
						.itemDetails .prod-info .action a:link {
						color: #333;
						text-decoration: none;
						}
						.itemDetails .prod-info .action a:visited {
						color: #666;
						text-decoration: none;
						}
						.itemDetails .prod-info .action a:hover,
						.itemDetails .prod-info .action a:active {
						color: #000;
						text-decoration: underline;
						}
						
					.itemDetails .prod-info .action .print a {
					padding-left: 25px;
					background: url(img/icos/printer.gif) 0 50% no-repeat;
					}

	/* --------------------------
	4.6 Text block
	---------------------------*/
	
		.textBlock {
		line-height: 1.7em;
		}
			#mainContent .textBlock h3 {
			margin: 1.5em 0 0.5em;
			}
			
			.textBlock p {
			margin: 0 0 1em;
			text-align: justify;
			}

	/* --------------------------
	4.7 Bread crumbs
	---------------------------*/
	
		.breadCrumbs {
		padding: 1.1em 0;
		font-weight: bolder;
		letter-spacing: 4px;
		}
			.breadCrumbs a {
			letter-spacing: normal;
			}
				.breadCrumbs a:link {
				color: #333;
				text-decoration: underline;
				}
				.breadCrumbs a:visited {
				color: #666;
				text-decoration: underline;
				}
				.breadCrumbs a:hover,
				.breadCrumbs a:active {
				color: #000;
				text-decoration: underline;
				}

	/* --------------------------
	4.8 Category navigation
	---------------------------*/
	
		.categoryNavigation {
		border-bottom: 1px solid #edede0;
		}

	/* --------------------------
	4.9 Sorting criteria
	---------------------------*/
	
		.sortCriteria {
		height: auto;
		overflow: hidden;
		padding: 1.2em 0;
		border-bottom: 1px solid #edede0;
		}
			.sortCriteria h4 {
			float: left;
			display: inline;
			padding: 0 10px 0 0;
			}
			
			.sortCriteria ul {
			float: left;
			display: inline;
			}
				.sortCriteria li {
				float: left;
				display: inline;
				padding: 0 15px 0 0;
				color: #939393;
				font-weight: bolder;
				}
					.sortCriteria li span,
					.sortCriteria li a {
					float: left;
					display: inline;
					margin: 0 0 0 3px;
					}
					
					.sortCriteria li span.r {
					float: none;
					display: block;
					margin: 0;
					}

	/* --------------------------
	4.10 Pageing
	---------------------------*/
	
		.pager {
		height: auto;
		overflow: hidden;
		padding: 1.2em 0;
		}
			.pager h4 {
			float: left;
			display: inline;
			padding: 0 10px 0 0;
			}
			
			.pager p {
			float: left;
			display: inline;
			}
			.pager ul {
			float: left;
			display: inline;
			padding: 0 4px 0 8px;
			margin: 0 8px 0 0;
			border-right: 1px solid #939393;
			}
				.pager li {
				display: inline;
				padding: 0 4px 0 8px;
				border-left: 1px solid #939393;
				}
					.pager li a {
					font-weight: bolder;
					}
						.pager li a:link {
						color: #333;
						text-decoration: underline;
						}
						.pager li a:visited {
						color: #666;
						text-decoration: underline;
						}
						.pager li a:hover,
						.pager li a:active {
						color: #000;
						text-decoration: underline;
						}

	/* --------------------------
	4.11 Order plan
	---------------------------*/
	
		#orderPlan {
		height: 100px;
		padding: 0 55px;
		background: url(img/maincontent/order/plan/bg.png) no-repeat;
		}
			#orderPlan li {
			float: left;
			display: inline;
			width: 100px;
			margin: 24px 15px 0 16px;
			padding: 45px 0 0;
			background: 50% 0 no-repeat;
			text-align: center;
			}
				#orderPlan li.activeStep {
				background: 50% -200px no-repeat;
				}
				#orderPlan #step1 {
				background-image: url(img/maincontent/order/plan/step1.png);
				}
				#orderPlan #step2 {
				background-image: url(img/maincontent/order/plan/step2.png);
				}
				#orderPlan #step3 {
				background-image: url(img/maincontent/order/plan/step3.png);
				}
				#orderPlan #step4 {
				background-image: url(img/maincontent/order/plan/step4.png);
				}
				#orderPlan #step5 {
				background-image: url(img/maincontent/order/plan/step5.png);
				}

	/* --------------------------
	4.12 Order details
	---------------------------*/
	
		.orderDetails {
		height: auto;
		overflow: hidden;
		background: url(img/maincontent/fauxcolumns-255-260-255.png) repeat-y;
		margin: 0 0 0.1em;
		padding: 0.5em 0 1.5em;
		border-bottom: 1px solid #edede0;
		}
			#mainContent .orderDetails h3 {
			margin: 1em 0 0.5em;
			font-size: 100%;
			}
			
			#mainContent .orderDetails p {
			margin: 1em 0 1.5em;
			}
			
			.orderDetails label {
			vertical-align: middle;
			}
			
			.orderDetails ul {
			margin: 0 0 2em;
			}
				.orderDetails li {
				position: relative;
				margin: 0 0 0.4em;
				}
					.orderDetails li .note {
					position: absolute;
					top: 0.1em;
					right: 0;
					color: #939393;
					}
			
			.orderDetails .payment {
			float: left;
			width: 255px;
			}
			.orderDetails .delivery {
			float: left;
			width: 170px;
			margin: 0 0 0 27px;
			}
			.orderDetails .coupon {
			float: right;
			width: 227px;
			}
			
			.orderDetails .proof li {
			float: left;
			width: 50%;
			}
			
			#f_order_coupon {
			width: 90px;
			}

	/* --------------------------
	4.13 Customer type
	---------------------------*/
	
		.customerType {
		margin: 2em 0 0;
		}
			.customerType label {
			padding: 0 30px 0 5px;
			}

	/* --------------------------
	4.14 Customer details
	---------------------------*/
	
		.customerDetails {
		height: auto;
		overflow: hidden;
		margin: 0 0 0.1em;
		padding: 2em 0;
		border-bottom: 1px solid #edede0;
		}
			.customerDetails p {
			height: auto;
			overflow: hidden;
			padding: 0.3em 0;
			}
		
			.customerDetails label {
			float: left;
			display: inline;
			width: 80px;
			padding: 6px 0 0;
			}			
			.customerDetails input {
			float: left;
			display: inline;
			width: 135px;
			margin: 0 30px 0 0;
			}
			
			.customerDetails span {
			float: left;
			display: inline;
			
			padding: 0 15px 0 0;
			}
			
			.customerDetails .personal {
			float: left;
			width: 300px;
			}	
					
			.customerDetails #f_order_info_building,
			.customerDetails #f_order_info_apartment {
			width: 40px;
			}
			
			.customerDetails #f_order_info_postalcode1{
			width: 49px;
			}			
			.customerDetails #f_order_info_postalcode2 {
			width: 40px;
			}			
			.customerDetails #f_order_info_town {
			width: 110px;
			}
			.customerDetails #f_order_info_state {
			margin: 4px 0 0;
			padding: 0;
			}

	/* --------------------------
	4.15 Buttons
	---------------------------*/
	
		.buttons {
		clear: both;
		padding: 1em 0;
		text-align: right;
		}
		.buttons .button {
			float: right;
			display: inline;
			}
			
		.button {
					float: left;
					display: inline !important;
					}
			
/* --------------------------
5. DYNAMIC ACTIONS
---------------------------*/

	/* --------------------------
	5.1 Submenu
	---------------------------*/
		
		body.mooTools #navigation .submenu li.expanded ul {
		display: block;
		}
		body.mooTools #navigation .submenu li.collapsed ul {
		display: none;
		}
		
		body.mooTools #content input.button-change {
		display: none;
		}
		
		
						
/* ---------------------------------------------
 * 6. Integration
 */				
				
.info h1,.info p,.info ul {
	margin-left: 140px !important;
	font-size: 12px;
}

.info p {
	margin-bottom: 10px;
}

.info ul li {
	float: left;
	margin: 0 30px 0 0;
}

.info ul a {
	font-weight: bolder;
}

.poz {
	background: url(img/info_poz.jpg) no-repeat;
	height: 200px;
	padding-top: 15px;
}

.neg {
	background: url(img/info_neg.jpg) no-repeat;
	height: 200px;
	padding-top: 30px;
}

.ost {
	background: url(img/info_ost.jpg) 20px 180px no-repeat;
}

#panel_linki a:Link,#panel_linki  a:Visited {
	color: #499A00;
	font-weight: bold;
	font-size: 11px;
}

#panel_linki a:Hover {
	color: #3F8103;
}

#panel_uzytkownika {
	width: 580px;
	margin: 20px auto;
}

.formularz_blad {
	color: red;
	font-weight: bold;
}

.koszyk_zamowien td {
	padding: 10px;
}
		
						
						
.hidden{
	display: none;
}						
						
						
						
						

/* Elementy zamówienia */
.zam_1 .left {
	float: left;
	width: 120px;
	padding: 0 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.zam_1 .right {
	float: left;
	width: 500px;
	padding-right: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.zam_1 .right .button {
	float: right;
}

.zam_1 li {
	list-style-type: none;
	padding-left: 20px;
	background: url(img/ikony/strzalka_form.gif) no-repeat;
	background-position: left;
	color: #499A00;
	font-weight: bold;
	line-height: 17px;
}

.zam_2 td {
	padding: 5px;
	padding-right: 20px;
}

.trojblok {
	width: 751px;
	background: url(img/podklad/trojblok.gif) repeat-y;
	background-position: 210px 0;
	border-bottom: 1px solid #E2E2E2;
}

.trojblok .left {
	width: 170px;
	padding: 20px;
	float: left;
}

.trojblok .center {
	width: 235px;
	padding: 20px;
	float: left;
}

.trojblok .right {
	width: 225px;
	padding: 20px;
	float: left;
}

.zam_2 li,.zam_2 .kropka {
	list-style-type: none;
	padding-left: 20px;
	background: url(img/ikony/kolko.gif) no-repeat;
	background-position: left;
	line-height: 20px;
	margin-right: 5px;
}

.zam_2 ul {
	padding-left: 0px;
}

.zam_2 li div,.zam_2 .trojblok .center div {
	float: right;
	margin-right: 20px;
}

.zam_2 .razem {
	width: 210px;
}

.zam_2 .razem div {
	width: 60px;
	padding-right: 10px;
	padding-bottom: 10px;
	float: left;
}

.zamowienie_form .text,.zamowienie_form select {
	width: 170px;
}

a.krzyzyk:Link,a.krzyzyk:Visited {
	float: left;
	background: url(img/ikony/krzyzyk.gif) no-repeat;
	background-position: 75px 2px;
	width: 85px;
	font-weight: bold;
}

.zam_3 .podsumowanie {
	width: 751px;
	background: url(img/tlo/big_products.gif) repeat-y;
	background-position: 417px 0px;
	border-bottom: 1px solid #E2E2E2;
}

.zam_3 .left {
	width: 415px;
	float: left;
}

.zam_3 .right {
	width: 290px;
	float: left;
	padding: 0px 20px;
}

.zam_3 .produkt {
	width: 370px;
	border-top: 1px solid #E2E2E2;
	padding: 5px 10px;
	clear: both;
}

.zam_3 .produkt .left {
	padding: 0;
	width: 240px;
	padding-right: 5px;
	float: left;
	padding-bottom: 5px;
}

.zam_3 .produkt .center {
	width: 40px;
	padding-right: 10px;
	float: left;
	padding-bottom: 5px;
}

.zam_3 .produkt .right {
	padding: 0;
	width: 70px;
	padding-right: 5px;
	float: left;
	font-weight: bold;
	padding-bottom: 5px;
}

.zam_3 .lacznie {
	background-color: #E2E2E2;
	font-weight: bold;
}

.forma_platnosci_up {
	width: 709px;
	height: 11px;
	background: url(img/podklad/forma_platnosci_up.gif) no-repeat;
	margin-top: 40px;
}

.forma_platnosci {
	width: 669px;
	background: #499A00;
	padding: 10px 20px;
	color: white;
}

.forma_platnosci_down {
	width: 709px;
	height: 15px;
	background: url(img/podklad/forma_platnosci_down.gif) no-repeat;
}

a.back:Link,a.back:Visited {
	background: url(img/ikony/back.gif) no-repeat;
	background-position: 0px 5px;
	font-weight: bold;
	padding-left: 20px;
	font-size: 13px;
}

.rachunek {
	width: 490px;
	padding: 0;
	margin: 0;
	padding-left: 20px;
}

.rachunek .left {
	width: 260px;
	padding-right: 5px;
	float: left;
	margin-bottom: 10px;
}

.rachunek .center {
	width: 80px;
	padding-right: 5px;
	float: left;
}

.rachunek .right {
	width: 124px;
	float: right;
}


#lista_zamowien li.f{
	list-style-type: none;
	border-bottom: 1px solid #F2F2F2;
	margin: 20px;
	padding: 10px;
}

#panel_linki {
	margin: 10px 0;
}
/**
.button {
	margin: 0;
	padding: 0 14px 0 0;
	border: 0 ;
padding: 0 14px 0 0 !important;
background: url(img/embellishments/arrow-orange.gif) 100% 70% no-repeat;
font-weight: bolder;
border: 0 !important;
color: #333;
display: inline;
text-decoration: underline;
}

.button:hover {
color: #000;
text-decoration: underline;
}
*/