/****************************************************************************************
 * General Reset
 *
 * 1. Reset some styles
 * 2. Apply some cross-browsers rendering standards
 *
 * Shoud be included in every project
 *
 
 
 * Tips
 * a) Use em for fonts and other font-related dimensions
 *    (eg. line-height, some spacing around text etc)
 *
 * b) Use full length color HEX representations (useful for maintenance purposes)
 *    (eg. replace all in a project)
 ****************************************************************************************/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin: 0; padding: 0; }
fieldset, img { border: none; vertical-align: middle; }
hr { display: none; }


/****************************************************************************************
 * Standard base font-size is 16px
 * so 1em = 16px, do the math accordingly
 *
 * 1. Set the base font-size on the body (for 12px the base font-size is 0.75em (12/16)
 *    (as well as line height and font-family)
 * 2. Always set the general background color for the body
 * 3. Set the general font color on the body
 ****************************************************************************************/
body { font: 13px/180% Arial, Verdana, Helvetica, sans-serif; background: #fff; color: #003170; }


/****************************************************************************************
 * Forcing height 100% on body and form
****************************************************************************************/
html, body { height: 100%; }
body { margin: 0; padding: 0; }
#aspnetForm { min-height: 100%; _height: 100%; }


/****************************************************************************************
 * General Margins for Content Elements
 *
 * Especially for admin edited content (FCK)
 ****************************************************************************************/
p, ul, ol, dl, table { margin: 1em 0 1em 0; }

p { color: #003170; font-size: 13px; font-family: Arial, Verdana; }


/****************************************************************************************
 * List elements
 *
 * Ordered and Unorederd lists, bullets, spacing everything related to General Lists
 * should go here
 ****************************************************************************************/
ul { margin-left: 1em; }
ul li { background: url(/i/bullet.gif) no-repeat 0 8px; list-style: none; padding-left: 14px; }
li ul, li ol { margin-top: 0; margin-bottom: 0; }
li { margin: .3em 0; }
ol { margin-left: 2.2em; }
ol li { list-style-type: decimal; }
ol li ol li { list-style-type: lower-alpha; }
ol li ol li ol li { list-style-type: upper-roman; }


/****************************************************************************************
 * Headings
 *
 * Ordered and Unorederd lists, bullets, spacing everything related to General Lists
 * should go here
 ****************************************************************************************/
h1, h2, h3, h4, h5, h6 { font-size: 1em; margin: 0 0 .5em 0; }
h1 { font-size: 16px; line-height: 1em; f/ont-weight: bold; font-style: normal; color: #003170; m/argin: 0 0 30px 0; b/ackground: url(/i/prodH1Bottom.gif) repeat-x bottom; }
h2 { font-size: 15px; line-height: 1em; font-weight: bold; font-style: normal; color: #032F73; margin: 0 0 .5em 0; font-family: Arial, Verdana; }
h3 { font-size: 14px; line-height: 1em; font-weight: bold; font-style: normal; color: #032F73; margin: 0 0 .5em 0; }
h4 { font-size: 15px; line-height: 1em; font-weight: bold; font-style: normal; color: #416493; margin: .5em 0 .5em 0; font-family: Arial, Verdana; }


/****************************************************************************************
 * Hyperlinks
 *
 * Anchor tags styles should go here
 * as well as general functionality styles
 ****************************************************************************************/
a { color: #515151; text-decoration: none; overflow: hidden; outline: none; }
a:hover, a:focus { text-decoration: underline; }


/****************************************************************************************
 * Clearers & Alignments
 *
 * Some clearer classes if needed and
 * Easyclear for clearing floats
 ****************************************************************************************/
.clear { clear: both; }
.easyclear, #aboutNav li, #aboutNav li ul li, #productList li, #productList .text { display: inline-block; }
.easyclear, #aboutNav li, #aboutNav li ul li, #productList li, #productList .text { display: block; }
.easyclear:after, #aboutNav li:after, #aboutNav li ul li:after, #productList li:after, #productList .text:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }

.aLeft { text-align: left; }
.aRight { text-align: right; }
.aCenter { text-align: center; }
.fLeft { float: left; display: inline; }
.fRight { float: right; display: inline; }
.dN { display: none; }
/****************************************************************************************
 * Quotes
 *
 * General Quote and Blockquote reset for better cross-browser compatibility
 ****************************************************************************************/
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
.quote { padding: 15px; display: block; background: #F5F5F5; border: 1px solid #E0E0E0; overflow: hidden; }


/****************************************************************************************
 * Forms
 *
 * General Form elements styles
 * 
 * !!!!!!!!!!!!!!!!!!!
 * needs to be revised
 * !!!!!!!!!!!!!!!!!!!
 *
 ****************************************************************************************/
input, select, textarea { font-size: 12px; font-family: Arial, Verdana, Helvetica sans-serif; color: #3D4345; }

input[type=text], input[type=password], textarea { padding: .4em .6em; background: #fff; border: 1px solid #C8C8C8; }
textarea { height: auto; overflow: auto; }

legend { display: none; }
.txInput, textarea, select { border: 1px solid #d5d5dd; }
select { padding: .1em .2em; }
.txInput:focus, textarea:focus,
.txInput.focus, textarea.focus, select:focus { border-color: #a4a4b0; }
textarea { overflow: auto; }

.formItem { margin-bottom: .7em; clear: both; display: inline-block; }
.formItem { display: block; }
.formItem:after { display: block; clear: both; height: 0; visibility: hidden; content: '.'; }
.formItem label { float: left; width: 10em; padding: 4px 10px 0 0; }
.formItem label em { line-height: 1.4em; display: block; }
.formItem label.error { display: block; margin-left: 10.3em; color: red; width: auto; }
.formSubmit { margin-left: 11.2em; }
.txInput, textarea { padding: .4em .6em; }
.description { font-size: .9166em; background: #BCD8FF; line-height: 1.3em; display: block; clear: both; m/argin: 1em auto; width: 292px;; padding: .5em 1em; margin-top: 10px; }

/*For Checkboxes/radios */
.ckFormItem label { float: none; }


/****************************************************************************************
 * Tables
 *
 * General Table styles
 * 
 * !!!!!!!!!!!!!!!!!!!
 * needs to be revised
 * !!!!!!!!!!!!!!!!!!!
 *
 ****************************************************************************************/
table { text-align: left; border-collapse: separate; border-spacing: 0; border: 0; }
caption, th, td { text-align: left; font-weight: normal; }

thead td, thead th { border: 1px solid #BCD8FE; background: #BCD8FE; font-weight: bold; }
th, td { border: solid #BCD8FE; border-width: 0 1px 1px 1px; padding: 3px 13px; text-align: left; }

table tr.first-child td, table tr:first-child td { b/order: 1px solid #BCD8FE; b/ackground-color: #BCD8FE; }

table#carlige { width: 100%; _border-left: 1px solid #BCD8FE; }
table#carlige tr td { padding: 3px 4px; border-width: 0 1px 1px 0; } 
table#carlige thead tr.first-child td, table#carlige thead tr:first-child td { font-family: Arial, Verdana; font-size: 11px; color: #0566AD; font-weight: bold; } 
table#carlige tr td a { font-family: Arial, Verdana; font-size: 11px; color: #333; font-weight: normal; background: url(/i/bgTableA.jpg) no-repeat 0 2px; width: 37px; height: 20px; display: block; padding-left: 8px; } 
table#carlige tr td.first-child, table#carlige tr td:first-child { border-width: 0px 1px 1px 1px; }

/* Page dropshadow */

#w/rapOuter, .tr, .bl, .br { background: url(/i/background2.png) no-repeat left bottom; display: inline-block; }
#w/rapOuter, .tr, .bl, .br { display: block; }

#wrapOuter { p/adding-left: 8px; w/idth: 966px; m/argin: 0px auto; position: relative; overflow: hidden; margin-top: 93px; bottom: 93px; width: 100%; }
.tr { padding-bottom: 8px; background-position: right bottom; }
.bl { margin-left: -8px; padding-left: 8px; background-position: left top; position: relative; }
.br { padding-right: 8px; padding-top: 8px; background-position: right top; }
 
#wrap { b/ackground: #FFF; p/adding: 2px 20px 60px 20px; p/osition: relative; o/verflow: hidden; width: 990px; margin: 0px auto; margin-bottom: 30px; display: block; }



/****************************************************************************************
 * Flexible List
 *
 * Flexible List styles
 * 1. General List
 * 2. With a #column
 *
 * Tips
 * a) .listImage and .listText only appear for List Elements that HAVE an image
 *    ignore them for no-image elements
 * b) There is a bug in IE, called "Margin transreference bug" which transfers
 *    a margin value from a child to its parent under certain circumstances;
 *    fixed here by applying a padding instead of a margin to the listItem content elements
 ****************************************************************************************/
.listItem { overflow: hidden; width: 100%; margin: 2em 0 0 0; }
.listItem p { margin-bottom: .5em; margin-top: .5em; }

#list.column { margin-right: 190px; display: inline-block; }
#list.column { display: block; }
#listIntroduction { margin-bottom: 2em; }

.listItem h2 { margin-top: 0; font-weight: bold; font-size: 16px; }
.listItem h2 a { text-decoration: none; color: #013170; font-family: Arial, Verdana; font-size: 16px; }
.listItem h2 a:hover { text-decoration: underline; }
.subHeading { margin: -7px 0 -7px 0;; color: #013170; font-weight: bold; font-size: 12px; }
.listImage { display: inline; width: 170px; overflow: hidden; margin: 0; }
.listImage * { float: left; *float: none; }
.listImage img { w/idth: 114px; margin: 0px auto; *m/argin-top: -1px; *m/argin-bottom: 1px; }
.listImage a { border: 1px #D4D4D4 solid; p/adding: 2px; display: block; *float: left; }
.listImage a:hover { border: 1px #A50000 solid; b/ackground: #0091E8; }
.listImage span { border: 1px #D4D4D4 solid; padding: 2px; display: block; *float: left; }
.listImage a span { border: none; padding: 0; *float: none; }
.listText { margin-left: 180px; _zoom: 1; }
a.more { display: block; color: #A50000; w/idth: 124px; h/eight: 23px; b/ackground: url(/i/btnDetails.jpg) no-repeat 0 0; t/ext-indent: -9999em; m/argin-top: 5px; f/loat: right; text-decoration: underline; width: 61px; }
a.more:focus, a.more:hover { text-decoration: none; }

/*Fix for IE "Margin transreference bug */
.listItem p { *margin-bottom: 0; *padding-bottom: 1em; }

.galleryElement { width: 170px; display: inline; margin: 5px 0px 10px 17px; font-style: normal; text-align: center; overflow: hidden; float: left;  _margin-left: 16px;}	
.galleryElement.newLine { margin-left: 0; clear: left; }
.galleryElement p {	margin: 5px 0px 0px 0px; }
.galleryElement span { border: 1px #D4D4D4 solid; padding: 2px; width: 168px; overflow: hidden; display: block; }
.galleryElement a { font-size: 1px; border: 1px #D4D4D4 solid; p/adding: 2px; width: 168px; overflow: hidden; display: block; }
.galleryElement a:hover { border: 1px #A50000 solid; background: #386DB8; }
.galleryElement a span { border: none; padding: 0; cursor: pointer; }
.galleryElement img { w/idth: 114px; display: block; margin: 0px auto; }
.gallery { margin: 0 0 20px 0; overflow: hidden; }


/* Q&A */
#list.lista4 .listItem a, #list.lista4 .listItem div { display: none !important; }
#list.lista4 .listItem { margin-top: .5em; }
#list.lista4 .listItem h2 { cursor: pointer; text-decoration: underline; line-height: 1.2em; }


/****************************************************************************************
 * Layout
 *
 * The bricks that hold the site togheter
 * comes hand-in-hand with the skeleton markup of the site
 ****************************************************************************************/
.col { display: inline;	float: left; margin-right: 4%; _margin-right: 2%; width: 48%; *width: 45%; }
.small { width: 22%; *width: 21%; }
.last { margin-right: 0; }


#aspnetForm { w/idth: 974px; m/argin: 0 auto; position: relative; b/ackground: url(/i/bgContent.gif) repeat-y center; o/verflow-x: hidden; background-color: #ffffff; }
#tell-a-friend form { width: 450px; padding-top: 20px; }
#content { float: right; width: 735px; p/adding-bottom: 20px; font-size: 12px; _d/isplay: none; margin-top: 22px; }
#content h1 { height: 28px; }
#carligPage #content h1 { *margin-bottom: 0px; _margin-bottom: -20px; }


/****************************************************************************************
 * Header
 *
 * 1. Site logo
 * 2. Navigation probably
 * 3. Search 
 * etc
 ****************************************************************************************/
#header { background: url(/i/bgHeader.jpg) no-repeat center top; w/idth: 974px; m/argin-left: 7px; height: 200px; m/argin-top: 1px; p/osition: relative; z/-index: 9; m/argin: 0px auto; background-color: #ffffff; }
#header .inner { width: 990px; height: 200px; position: relative; z-index: 9; margin: 0px auto; b/ackground: url(/i/bannerHeader.png) no-repeat 0 32px; }
/* Logo */
#ctl00_logo { position: absolute; top: 0; left: 0; padding-top: 1px; p/adding-left: 1px; }
#ctl00_logo a { display: block; background: url(/i/Gamapel.jpg) no-repeat 0 0; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/Gamapel.jpg',sizingMethod='crop'); width: 277px; height: 198px; text-indent: -9999px; cursor: pointer; }

/* Lang */
#lang { position: absolute; top: 15px; right: 350px; w/idth: 215px; b/ackground: url(/i/lang.png) no-repeat 50% 0; p/adding-top: 20px; z-index: 50; }
.en-GB #lang { b/ackground: url(/i/lang-en.png) no-repeat 50% 0; }
.hu-HU #lang { b/ackground: url(/i/lang-hu.png) no-repeat 50% 0; }
#lang ul { margin: 0; b/ackground: #fff; b/order: 1px solid #1c5180; }
#lang ul.collapsed { b/ackground: #fff url(/i/lang-selector.png) no-repeat right center; cursor: pointer; }
#lang li { background: none; padding: 0; margin: 0; float: left; padding-right: 7px; }
#lang a { display: inline-block; p/adding: 2px 2px 2px 23px; background: url(/i/flags.png) no-repeat 0 0; text-decoration: none; width: 16px; height: 11px; }
#lang a { display: block; }

#lang .en-GB { background-position: 0 -50px; }
#lang .hu-HU { background-position: 0 -100px; }

.lang-overlay { position: absolute; top: 0; left:0; width: 100%; height: 100%; background: #fff; opacity: .01; filter: Alpha(opacity=01); }

/* General Navigation */
#infoNav {  }
#infoNav ul { margin: 0; }
#infoNav li { background: none; padding: 0; margin: 0; }
#infoNav a { text-decoration: none; display: block; position: absolute; height: 32px; outline: none !important; }


#tabs { float: left; width: 408px; position: absolute; bottom: -7px; *bottom: -6px; left: 0; }
#tabs ul { list-style-type: none; margin: 0; padding: 0; display: inline-block; }
#tabs ul { display: block; }
#tabs ul li { float: left; width: 136px; height: 29px; display: inline; background: none; padding: 0; margin: 0; position: relative; }
#tabs ul li a { display: block; width: 135px; height: 17px; background-color: #669933; text-transform: uppercase; color: #FFFFFF; font-size: 16px; font-weight: bold; text-align: center; padding-top: 6px; padding-bottom: 6px; }
#tabs ul li.children a { background: #669933 url(/i/arrowDownTabs.gif) no-repeat 110px center; padding-right: 15px; width: 120px; }
#tabs ul li ul { display: none; position: absolute; left: -9999px; background: #669933; width: 135px; }
#tabs li:hover ul, #tabs li.hover ul { display: block; left: 0; top: 29px; }
#tabs li ul li { position: relative; display: block; b/ackground-color: #7EBE3F; width: 122px; height: auto !important; padding: 0 9px 0 4px; }
#tabs li ul li a { background-image: none !important; font-family: Verdana, Arial, sans-serif; font-size: 12px; font-weight: normal; text-transform: none; text-align: left; p/adding: 0 9px 0 4px; padding-right: 0 !important; height: auto !important; width: 122px !important; border-bottom: 1px #7EBE3F solid; }
#tabs li ul li a:hover { background-color: #74AE39 !important; }
#tabs li ul li.children { background-image: url(/i/arrowRightTabs.gif) !important; background-repeat: no-repeat; background-position: right center; p/adding-right: 10px !important; w/idth: 117px !important; m/argin-right: -5px; }
#tabs li ul li:last-child a, #tabs li ul li.last-child a { border: none; }
#tabs li ul ul { display: none !important; position: absolute; left: -9999px; }
#tabs li ul li:hover ul, #tabs li ul li.hover ul { display: block !important; left: 135px; top: 0; }
#tabs li ul li ul li a { background-position: -1000px !important; }

#tabs .hide { display: none !important; position: absolute; left: -9999px; }


#contextual { width: 960px; height: 120px; margin: -21px 0 0 -21px; *margin-top: -22px; _margin-right: -21px; position: relative; margin-bottom: 20px; }


/*
 * Producers
 */
#producers { display: inline-block; background: #F4F4FD; margin-bottom: 23px; }
#producers { display: block; }
#producers:after { content: '.'; clear: both; height: 0; visibility: hidden; display: block; }
#producers * { f/loat: left; }


.introText { margin-bottom: 2em; }


/*
 * About Nav
 */
#aboutNav { margin: 0; position: absolute; right: 0; top: 85px; te/xt-transform: uppercase; font-size: 13px; color: #31393D; font-weight: bold; z-index: 5; m/argin-right: -20px; }
#aboutNav ul { margin: 0; h/eight: 32px; }
#aboutNav li { display: inline; float: left; padding: 0; margin: 0; background: url(/i/bulletAboutNav.jpg) no-repeat right center; h/eight: 24px; p/adding-top: 8px; position: relative; b/order: 1px #FFFFFF solid; width: auto; _w/idth: 100%; _zoom: 1; _overflow-x: hidden; padding-right: 15px; padding-left: 10px; }
#a/boutNav li.active { background: url(/i/aboutNavSelected.png) repeat-x 0 0; color: #FFFFFF; }
#a/boutNav li.active a { color: #FFFFFF; }
#aboutNav li.children { background: url(/i/arrowDownAboutNav.gif) no-repeat right center; }
#aboutNav li.children a { padding-right: 30px; _background: url(/i/arrowDownAboutNav.gif) no-repeat right center; }
#a/boutNav li:before { content: ' | '; }
#a/boutNav li:first-child:before { content: ''; }
#a/boutNav li.children:before { content: ''; }
#aboutNav li ul { display: none; position: absolute; left: -9999px; _f/loat: left; _b/order: 1px red solid !important; _wi/dth: auto; }
#aboutNav li.children:hover, #aboutNav li.hover { border: 1px #B4B4B4 solid; border-bottom: 0; background-color: #FFFFFF; *top: -1px; z/-index: 999; }
#aboutNav li:hover ul, #aboutNav li.hover ul { display: block; left: -1px; _l/eft: 0; margin: 0; top: 15px; border: 1px #B4B4B4 solid; border-top: 0; background-color: #FFFFFF; width: 100%; _d/isplay: inline; _z/oom: 1; overflow: hidden; z/-index: 999; }
#aboutNav a { text-decoration: none; color: #333333; padding: 0 7px; font-family: Arial, Verdana; font-size: 14px; font-weight: normal; }
#aboutNav a:hover, #aboutNav a:focus { text-decoration: underline; c/olor: #20A3A7; }
#aboutNav li:last-child, #aboutNav li.last-child { background: none; padding-right: 0; }

#a/boutNav li ul { background: #fff; border: 1px solid #B4B4B4; border-top: 0; margin: 0; line-height: 1.3em; }
#aboutNav li ul li { float: none; _f/loat: left; display: block; margin: 0; font-weight: normal; width: auto; _width: 100%; border: none; padding: 0 7px; _d/isplay: inline; _z/oom: 1; _o/verflow-x: hidden; _position: relative; _margin-right: -100%; _r/ight: -100%; }
#aboutNav li ul li a { display: block; width: auto; border-bottom: 1px #CCCCCC solid; padding: 3px 0; }
#aboutNav li ul li:last-child a, #aboutNav li ul li.last-child a { border: none; }



#a/boutNav li ul { po/sition: absolute; t/op: 2.33em; l/eft: -9999px; background: #fff; border: 1px solid #005ca1; border-top: 0; margin: 0; p/adding: .5em 1em; line-height: 1.3em; w/idth: 23em; }
#a/boutNav li ul li { float: none; display: block; p/adding: 3px 0; margin: 0; font-weight: normal; w/idth: 100%; }
#a/boutNav li ul li a { display: block; width: auto; p/adding: 3px 0; }
#a/boutNav li ul li a:hover { text-decoration: none; background: #B1CDE2; }
#a/boutNav li:hover ul, #aboutNav li.hover ul { l/eft: -1em; }


#breadcrumbs { padding: 15px 0; margin-top: -20px; font-family: Verdana, Arial, sans-serif; }
#breadcrumbs a { padding-right: 12px; margin-right: 6px; color: #669933; background: url(/i/breadcrumbsArrowRight.gif) no-repeat right center; }
#breadcrumbs a.active { color: #999999; text-decoration: none; cursor: default; background: none; }


/****************************************************************************************
 * Inline Cart
 *
 * appears on hovering the Show Cart link or when adding a product to the cart
 * 
 * !!!!
 * should need some revision
 ****************************************************************************************/

#inlineCartBar { background: url(/i/bgShoppingCart.jpg) no-repeat right top; width: 709px; padding-left: 5px; height: 46px; padding-top: 14px; padding-bottom: 22px; c/olor: #386CB8; position: absolute; bottom: -21px; right: 0; z-index: 90; p/adding-bottom: 5px; f/ont-size: 12px; t/ext-align: right; f/loat: right; display: block; }
.en-GB #inlineCartBar { b/ackground: url(/i/shoppingCart-en.gif) no-repeat 100% 0; }
.hu-HU #inlineCartBar { b/ackground: url(/i/shoppingCart-hu.gif) no-repeat 100% 0; }
#inlineCartBar h4 { p/osition: absolute; t/op: 0; left: -300px; w/idth: 200px; t/ext-indent: -9999em; margin: 0; text-align: left; float: left; display: none; p/adding-left: 13px; font-size: 10px; font-weight: normal; color: #033170; line-height: 180%; }
#inlineCartBar h4.noProducts { display: block; }
#inlineCartBar a { color: #386CB8; }

#inlineCartBar .produseInCos { f/ont-weight: bold; font-size: 10px; color: #033170; display: block; p/adding: 0 250px 0 0; p/osition: absolute; right: 300px; w/idth: 230px; float: left; p/adding-left: 13px; line-height: 160%; }
#inlineCartBar .finalizeOrderDiv { text-align: left; float: right; display: none; }
#inlineCartBar .finalizeOrder { p/osition: absolute; top: 0; right: 0; display: block; h/eight: 36px; w/idth: 175px; t/ext-indent: -9999em; text-align: left; background: url(/i/arrowRight.gif) no-repeat right; padding-right: 22px; }

#inlineCartWrapper { position: relative; t/op: 131px; r/ight: 0; w/idth: 155px; p/adding-left: 13px; display: block; h/eight: 20px; z-index: 100; t/ext-align: right; float: left; height: 46px; p/adding-top: 14px; m/argin-top: 8px; b/ackground: url(/i/bgShoppingCart.jpg) no-repeat 0 -28px; p/adding-top: 7px; m/argin-top: -60px; }
.en-GB #inlineCartWrapper { r/ight: 100px; }
#inlineCartWrapper #showInlineCart { d/isplay: block; h/eight: 20px; w/idth: 100%; t/ext-indent: -9999em; *b/ackground: #fff; *f/ilter:Alpha(opacity=0.01); b/ackground: url(/i/bgCos.jpg) no-repeat right 8px; p/adding-left: 19px; color: #386CB8; font-size: 1px; f/ont-weight: bold; float: left; m/argin-right: 25px; m/argin-left: 13px; cursor: pointer; }
#inlineCartWrapper h1:hover, #inlineCartWrapper h1:focus { cursor: pointer !important; }

#inlineCart { position: absolute; left: 0px; top: 34px; b/ackground: #fff; border: 1px solid #84A6D3; width: 211px; padding: 10px; color: #033170; line-height: 1.2em; text-align: center; d/isplay: none; font-family: Arial, Verdana; font-size: 10px; background-color: #BCD8FF; border-top: none; }
#inlineCart ul { text-align: left; display: inline-block; margin: 0; }
#inlineCart ul { display: block; }
#inlineCart li { display: inline-block; border-bottom: 1px solid #d4d4dd; padding: 4px 0; margin: 0; background: none; }
#inlineCart li { display: block; }
#inlineCart li:after { display: block; content: '.'; clear: both; height: 0; visibility: hidden; }
#inlineCart a { color: #1FA3A7; }
#inlineCart .text { float: left; width: 130px; }
#inlineCart .text a { font-weight: bold; text-decoration: none; display: block; }
#inlineCart .text a:hover, #inlineCart a:focus { text-decoration: underline; }
#inlineCart .cant { float: right; width: 6.5em; text-align: center; position: relative; }
#inlineCart .cant input { width: 16px; padding: .2em .3em; text-align: center; background-color: #BCD8FF; border: 1px solid #033170; height: 14px; }
#inlineCart .cant a { text-transform: uppercase; font-size: .7272em; }
#inlineCart .cant .minus, #inlineCart .cant .plus { background: url(/i/cartOptions.png) no-repeat 0 0; width: 17px; height: 17px; display: block; position: absolute; left: 0; top: 0; text-indent: -9999em; }
#inlineCart .cant .plus { background-position: 0 -17px;  right: 0; left: auto; }
#inlineCart #noProducts { display: block; position: static; f/loat: left; m/argin-top: -17px; m/argin-left: 4px; }

#inlineCart .total { text-align: left; background: #12328E; color: #fff; font-weight: bold; padding: 4px 8px; display: inline-block; margin-bottom: 10px;  }
#inlineCart .total { display: block; }
#inlineCartBar #inlineCart .finalizeOrder { position: static; background: url(/i/buttons.png) no-repeat -400px -300px; width: 108px; height: 28px; display: block; text-indent: -9999px; margin: 0 auto 5px auto; padding: 0; }

.en-GB  #inlineCartBar #inlineCart .finalizeOrder{ background: url(/i/buttons-en.png) no-repeat -400px -300px;}
.hu-HU  #inlineCartBar #inlineCart .finalizeOrder{ background: url(/i/buttons-hu.png) no-repeat -400px -300px;}
/****************************************************************************************
 * Product Navigation
 *
 * Accordion type navigation
 ****************************************************************************************/
#nav { float: left; width: 242px; display: inline; padding: 0; font-weight: normal; _d/isplay: none; p/adding-top: 13px; b/ackground: url(/i/navTop.png) no-repeat top; m/argin-top: -22px; }
#nav ul { margin: 0; display: inline-block; b/order: 1px #CCCCCC solid; p/adding: 10px; padding-bottom: 15px; font-weight: bold; b/ackground: url(/i/navBottom.png) no-repeat bottom; b/order-left: 1px #FFFFFF solid; b/order-right: 1px #FFFFFF solid; }
#nav ul { display: block; }
#nav li { margin: 0; padding: 0; display: inline-block; background: none; b/order-top: 1px #203F99 solid; b/order-bottom: 1px #112F82 solid; w/idth: 240px; }
#nav li { display: block; }
#nav li a.active { b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; c/olor: #FFFFFF; width: 240px; height: 72px; t/ext-indent: -99999px; }
#nav li:last-child, #nav li.last-child { border-bottom: none; }
#nav li:first-child, #nav li.first-child { border-top: none; }

#nav a { p/adding: 8px 5px 8px 15px; text-decoration: none; display: inline-block; b/ackground: url(/i/navArrow1.gif) no-repeat 9px center; font-size: 13px; color: #12328E; height: 72px; }
#nav a.active { b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; c/olor: #183052; }
#nav a { display: block; }

#nav a:hover, #nav a:focus { text-decoration: none; b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; c/olor: #1FA3A7; }
#nav ul li { m/argin-bottom: 4px; margin-bottom: 10px; height: auto; }

#nav ul li#Carlige-remorcare a { background: url(/Images/Produse_categorie_miniatura/00000006/00000278_large.jpg); height: 70px; width: 240px; }

/* Level 2 */
#nav ul ul { border: 0; b/order-top: 1px #203F99 solid; b/order-bottom: 1px #112F82 solid; padding: 0; m/argin-top: 10px; }
#nav ul ul ul { m/argin-top: 0px; }
#nav ul ul li { border: 0; background: #fff; border-bottom: 1px #FFFFFF solid; margin-bottom: -1px; padding-bottom: 1px; }
#nav ul ul label { padding: 3px 5px 3px 33px; color: #495155; }
#nav ul ul a { b/ackground: url(/i/navArrow1.gif) no-repeat 27px center; padding: 3px 5px 3px 23px; text-decoration: none; f/ont-weight: normal; color: #495155; }
#nav ul ul a:hover { text-decoration: underline; color: #002C72; }
#nav ul ul li p { color: #002C72; background: url(/i/navSquare.gif) no-repeat 11px center; text-transform: lowercase; border-bottom: 1px solid #E3E3E3; padding-left: 30px; font-weight: normal; }
#nav ul li ul li.active p { font-weight: bold; }
#nav ul ul li.active a { color: #002C72; font-weight: bold; }
#nav ul ul a.active { b/ackground: url(/i/navArrow1Active.gif) no-repeat 27px center; }
#nav li.active ul li a { b/ackground: url(/i/navArrow1.gif) no-repeat 27px center; }
#nav li.active ul li a.active { b/ackground: url(/i/navArrow1Active.gif) no-repeat 27px center; }
#nav li.active ul a:hover, #nav li.active ul a:focus { b/ackground: url(/i/navArrow1Active.gif) no-repeat 27px center; }

/* Level 3 */
#nav ul ul ul { border: 0; padding-bottom: 1px; }
#nav ul ul ul li { border: 0; margin-left: 25px; }
#nav ul ul ul a { padding: 3px 5px 3px 33px; font-weight: normal; font-size: 12px; background: url(/i/navSquare.gif) no-repeat 11px center; color: #495155; }
#nav ul ul ul a:hover { text-decoration: underline; c/olor: #1FA3A7; }
#nav ul ul ul a.active { color: #002C72; font-weight: bold; }
#nav ul ul li.active ul a { color: #002C72; }
#nav ul ul li.active ul a:hover { c/olor: #1FA3A7; }
#nav ul ul li.active ul a.active { c/olor: #1FA3A7; font-weight: bold !important; }

#nav ul ul ul ul a { padding: 3px 0 3px 30px; }

#nav ul li ul li a { color: #002C72; text-indent: 0px !important; font-family: Arial, Verdana; font-size: 12px; height: auto !important; text-transform: lowercase; border-bottom: 1px solid #E3E3E3; width: 188px !important; font-weight: normal; background: url(/i/navSquare.gif) no-repeat 11px 10px; padding-left: 30px; line-height: 20px; }

#nav ul li a img { margin-top: -23px; *margin-top: -23px; }

#nav ul ul ul li.active a { font-weight: bold !important; }
#nav ul ul ul.full li a { font-weight: normal !important; border-bottom: 1px solid #E3E3E3 !important; width: 162px !important; line-height: 20px; }
#nav ul ul ul li:first-child, #nav ul ul ul li.first-child { b/order-bottom: 1px solid #E3E3E3 !important;  }

/*
 * User Nav
 */
#userNav { p/osition: absolute; l/eft: 0; t/op: 85px; b/order-top: 1px #CEE0E0 solid; b/order-bottom: 1px #CEE0E0 solid; m/argin-top: 25px; font-size: 11px; color: #8F999D; p/adding: 20px 5px 20px 10px; width: 460px; float: left; border-left: 1px solid #84A6D3; margin-left: 86px; padding-left: 13px; height: 34px; overflow: hidden; }
#u/serNav h1 { c/olor: #5F7979; f/ont-size: 20px; f/ont-weight: bold; d/isplay: block; margin-bottom: 0; b/ackground: transparent url(/i/bgCos.jpg) no-repeat right 8px; p/adding-right: 25px; height: 20px; width: 106px; }
#userNav p { p/adding-left: 14px; margin: 0; display: block; font-size: 20px; color: #5F7979; font-weight: bold; margin-bottom: 10px; }
#userNav p span { color: #1FA3A7; }
#userNav ul { margin: 0; background: none; border: 0; padding: 0; font-weight: normal; }
#userNav li { padding-left: 0; m/argin-right: 15px; background: none; border: 0; display: inline; f/loat: left; margin-right: 5px; }
#userNav * { background: none; display: inline; }
#userNav a { t/ext-decoration: none; color: #033170; font-size: 10px; f/ont-weight: bold; display: inline; padding: 0; text-decoration: underline; font-family: Arial, Verdana, sans-serif; f/loat: left; }
#userNav label { padding: 0 5px; }
#userNav a:hover, #userNav a:focus { text-decoration: none; }
#userNav .logged { text-align: left; float: left; margin-top: -9px; _margin-top: -47px; _position: relative; }
#userNav .logged li { display: block; float: left; }
#userNav .logged li a { font-size: 11px; font-weight: normal; }
#userNav h1 { background: url(/i/bgInregistrare.jpg) no-repeat 0 0; text-indent: -99999px; margin-bottom: 0; width: 106px; height: 23px; display: block; cursor: pointer;}
#userNav h2 { height: 19px; float: left; width: 500px; margin-left: 0px; margin-top: -5px; te/xt-indent: -99999px; ba/ckground: url(/i/bgBineAiVenit.gif) no-repeat 0 0; }
#userNav span { float: left; }


/****************************************************************************************
 * Product List
 *
 * List of products
 ****************************************************************************************/
#subcategories { m/argin: 1em 0;  width: 558px; float: left; margin-top: 5px; position: relative; z-index: 99999; }
#subcategories ul { margin: 0; }
#subcategories ul li { background: #FFFFFF; b/order: 1px #E8EBE9 solid; margin: 0; padding: 0; p/adding: 6px 20px; float: left; width: 242px; m/argin-bottom: 23px; m/argin-left: 25px; margin-right: 37px; margin-bottom: 20px; _margin-right: 27px; }
#subcategories ul ul { p/adding: 15px 0; m/argin-left: 25px; width: 242px; background-color: #EDF3FE; *margin-top: -4px; }
#subcategories ul ul li { border: none; width: auto; float: none; margin: 0; background: url(/i/navSquare.gif) no-repeat 9px 6px; font-weight: bold; padding-left: 30px; _z/oom: 1; _d/isplay: inline-block; _b/order: 1px solid #FFF; border-bottom: 1px solid #E3E3E3; }
#subcategories li.newLine { margin-left: 0; clear: left; }
#subcategories li.separator { width: 100%; float: none; height: 0; padding: 0; margin: 0; min-height: 0; border: none; background: none; }
#subcategories a { text-decoration: none; display: block;color: #002C72; text-transform: lowercase; b/ackground: transparent url(/i/navSquare.gif) no-repeat scroll 11px center; pa/dding-left: 30px !important; bo/rder-bottom: 1px solid #E3E3E3; font-size: 15px; font-family: Arial, Verdana; color: #033170; }
#subcategories a:hover, #subcategories a:focus { text-decoration: none; color: #13676B; }
#subcategories li a { text-decoration: none; display: block; color: #002C72; text-transform: lowercase; transparent url(/i/navSquare.gif) no-repeat scroll 11px center; padding-left: 0px; b/order-bottom: 1px solid #E3E3E3; font-weight: bold; }
#subcategories li a:hover, #subcategories li a:focus { text-decoration: underline; color: #002C72; }
#subcategories span { display: block; b/order: 1px #CFE3E3 solid; padding: 5px 10px; width: 222px; background-color: #C7DAFC; cursor: pointer; }
#subcategories label { display: block; p/adding-left: 10px; color: #002C72; text-transform: lowercase; background: transparent url(/i/navSquare.gif) no-repeat scroll 11px center; padding-left: 30px; border-bottom: 1px solid #E3E3E3; }
#subcategories label:focus, #subcategories label:hover { cursor: pointer; }
#subcategories img { display: block; border: 1px solid #E3E3E3; width: 240px; }
#subcategories img:focus, #subcategories img:hover { border-color: #A60000; }
#subcategories h2 { margin-top: 10px; }
#subcategories ul li ul li a { background: none; border-bottom: 0px; padding-left: 0px !important; color: #003170; font-weight: normal; font-size: 12px; }

#searchResult #subcategories ul li { b/ackground: transparent url(/i/navSquare.gif) no-repeat scroll 11px center; p/adding-left: 30px; margin-bottom: 10px; }
#searchResult #productList { margin-top: 10px; }

/*
#productList { margin: 0 0 18px -18px; display: inline-block; position: relative; padding-top: 25px; *padding-top: 50px;} 
#productList li { border: 1px solid #cecef0; float: left; width: 169px; height: 260px; padding: 0; margin: 0 0 18px 18px; display: inline; background: #fff; overflow: hidden; position: relative; }
#productList .image { height: 167px; width: 167px; margin: 0; float: none; display: block; cursor: pointer; }
#productList .image td { text-align: center; border: 0; padding: 0; height: 167px; width: 167px; }
#productList .image img { display: inline; }
#productList .text { position: absolute; top: 167px; left: 0; width: 145px; height: 50px; padding: 5px 12px; background: #f5f5fc; line-height: 1.4em; }
#productList a { text-decoration: none; display:}
#productList a:hover, #productList a:focus { text-decoration: underline; }
#productList h2 { font-size: 1em; line-height: 1.4em; font-weight: bold; height: 30px; overflow: hidden; }
#productList fieldset { margin-top: 60px; padding: 5px 8px; }
#productList input { border: 1px solid #cecef0; width: 2.5em; padding: .2em 0; text-align: center; }

#productList .button { float: right; width: 87px; height: 16px; background-position: -200px -300px; }

#productList .info { position: absolute; top: 0; right: 0; display: block; width: 99px; height: 98px; background: url(/i/info-reducere.png) no-repeat 0 0; _background: none; _.filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/info-reducere.png',sizingMethod='crop'); }
.hu-HU  #productList .info{ background: url(/i/info-reducere-hu.png) no-repeat 0 0; }
.en-GB  #productList .info{ background: url(/i/info-reducere-en.png) no-repeat 0 0; }
#productList .nou { background: url(/i/info-oferta.png) no-repeat 0 0; _background: none; __filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/info-oferta.png',sizingMethod='crop'); }
.hu-HU  #productList .nou {background: url(/i/info-oferta-hu.png) no-repeat 0 0;}
.en-GB  #productList .nou {background: url(/i/info-oferta-en.png) no-repeat 0 0;}
*/

/* de pe corturi */

#productList { margin: 0; t/ext-align: center; clear: both; width: 561px; float: left; }
#productList li { width: 170px; z-index: 1; o/verflow: hidden; fl/oat: left; d/isplay: inline; m/argin: 0 0 0 30px; m/argin-top: 13px; w/idth: 160px; w/idth: 100%; p/adding: 13px 10px 20px 16px; p/adding: 10px; background: #FFFFFF; c/lear: left; m/in-height: 160px; _h/eight: 160px; position: relative; b/order: 1px #E8EBE9 solid; _zoom: 1; padding-left: 0px; float: left; margin-right: 17px; height: 200px; _margin-right: 13px; }
#productList li.newLine { m/argin: 0; clear: left; }
#productList li.notInStock { b/ackground: #F5F7F6; }
#productList .image { display: inline; overflow: hidden; float: left; width: 170px; }
#productList .image a { padding: 2px; width: 164px; h/eight: 110px; height: 106px; overflow: hidden; background: #fff; text-align: center; position: relative; border: 1px #C4C4C4 solid; }
#productList .image a:hover { border: 1px #A60000 solid; p/adding: 1px; }
#pr/oductList .image a img { width: 130px; }
#productList .image a .info { position: absolute; top: 0; right: 0; width: 66px; height: 66px; background: url(/i/infoReducere.png) no-repeat 0 0; cursor: pointer; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/infoReducere.png',sizingMethod='crop'); _bottom: -1px; _right: -1px; padding: 0; }
#productList .image a .nou { background: url(/i/infoNou.png) no-repeat 0 0; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/infoNou.png',sizingMethod='crop'); width: 66px; height: 66px; }
#productList a { text-decoration: none; display: block; f/loat: left; background-position: -600px 0; w/idth: 84px; font-family: Arial, Verdana; font-size: 12px; font-weight: bold; color: #032F73; }
#productList a:hover { color: #A60000; }
#productList a.button { c/lear: right; f/loat: right; width: 112px; height: 20px; padding-top: 2px; position: absolute; bottom: -7px; right: -5px; background: #1E3B94; text-indent: 0; text-align: center; color: #FFFFFF; font-weight: bold; }
#productList a.button:hover, #productList a.button:focus { background: #FF0000; text-decoration: none; }
#productList a.add { width: 132px; height: 20px; padding-top: 2px; position: absolute; bottom: -7px; right: 112px; }
#productList a.delete { width: 122px; height: 20px; padding-top: 2px; position: absolute; bottom: -7px; right: 249px; }
#productList a.btnContact { display: inline; }
#productList p { m/argin: 0 130px 0 0; c/olor: #666666; m/in-height: 128px; _h/eight: 128px; margin: 0.5em 0; }
#productList b, #productList em, #productList span  { display: block; p/adding: 3px 0; }
#productList b { color: #3B4347; f/ont-weight: normal; f/ont-size: 1.09em; p/adding-top: 0; padding-bottom: 0; }
#productList div.buy { padding: 0; float: right; d/isplay: inline; text-align: right; margin-top: -80px; }
#productList div.buy a.addToCart { float: right; display: block; text-align: right; margin: 5px -10px 0 0;  background: url(/i/buttons.png) no-repeat -600px -300px; text-indent: 9999em; width: 86px; height: 24px; _p/osition:relative; _margin-right: 0; }
#productList span { color: #3B4347; text-align: center; }
#productList em { color: #A50000; font-style: normal; f/ont-size: 1.27em; f/ont-weight: bold; f/loat: right; t/ext-align: right !important; d/isplay: block; _p/adding-right: 10px; float: left; font-family: Arial, Verdana; font-size: 12px; }
#productList small { color: #1FA3A7; font-size: 13px; font-weight: bold; display: block; text-align: center; f/loat: right; m/argin: 3px 0; _p/adding-right: 10px; c/lear: left; f/loat: left; }
#productList del { color: #A50000; font-size: 12px; f/ont-weight: bold; text-decoration: line-through; }
#productList a:hover, #productList a:focus { text-decoration: underline; }

#productList .overlayLink { float: right; margin-right: -10px; _margin-right: -5px; margin-top: -29px; width: 86px; height: 24px; display: block; text-indent: 9999em; }


#productList .text { m/argin: 0; m/argin-left: 155px; _m/argin-left: 152px; p/adding: 0 0 0 15px; m/in-height: 65px; _h/eight: 65px; f/loat: left; overflow: hidden; t/ext-align: left; w/idth: 443px; c/ursor: pointer; _m/argin-right: -10px; _w/idth: 453px; float: left; width: 170px; margin-top: 5px; }
#productList .text h2 { font-weight: bold; font-size: 16px; margin-top: 0; m/argin-bottom: 0.5em; margin-bottom: 0; }
#productList .text h2 a { display: inline; }
#productList h1 { height: 30px; }



/****************************************************************************************
 * Product Filters
 *
 * Select
 ****************************************************************************************/
#filter { ma/rgin-bottom: 30px; b/ackground: url(/i/bgFilter.png) repeat-x 0 0; h/eight: 125px; padding: 10px; background-color: #F2F8FF; margin-bottom: 15px; }
#filter #innerFilterLeft { b/ackground: url(/i/bgFilterLeft.png) no-repeat left; h/eight: 125px; p/adding-left: 19px; }
#filter #innerFilterRight { b/ackground: url(/i/bgFilterRight.png) no-repeat right; h/eight: 125px; p/adding-right: 19px; }
#filter #innerFilter { h/eight: 35px; p/adding-top: 15px; p/adding-bottom: 10px; }
#filter h2 { display: block; border-bottom: 1px #B8DCE6 solid; padding-bottom: 8px; color: #0C89B1; font-size: 14px; margin-bottom: 15px; }
#innerFilter h2 { display: none; }
#filter select { border: 1px solid #023170; margin-right: 6px; }
#filter input { border: 1px solid #023170; margin-right: 6px; height: 18px; padding-top: 2px; padding-bottom: 0px; }

#filterCarlig { padding: 10px; background-color: #F2F8FF; margin-bottom: 15px; }
#filterCarlig select { border: 1px solid #023170; margin-right: 6px; }
#filterCarlig input { border: 1px solid #023170; margin-right: 6px; height: 18px; padding-top: 2px; padding-bottom: 0px; _padding-left: 5px; }

select#dd67 { width: 132px; }
select#dd64 { width: 185px; }
select#dd65 { width: 185px; }
select#dd66 { width: 178px; }


/****************************************************************************************
 * Product Detail Page
 *
 * Product description, images, price etc
 ****************************************************************************************/
.single { b/order: 1px #E8EBE9 solid; background: #fff; p/adding: 15px; margin-top: 20px; float: left; width: 100%; }
.single .single-image { float: left; width: 282px; overflow: hidden; margin-right: 0px; }
.single .single-image div { clear: both; m/in-height: 240px; margin-bottom: 10px; }
.single .single-image a { border: 1px solid #C4C4C4; display: block; width: 258px; p/adding: 2px; overflow: hidden; background: #fff; cursor: pointer; }
.single .single-image a:hover, .single .image a:focus { border-color: #A60000; b/ackground: #3FBDBF; }
.single .single-image img { display: block; margin: 0 auto; width: 67px; }
.single .single-image a#bigImage img { display: block; margin: 0 auto; width: 258PX; }
.single .single-image ul, .single .image li { margin: 0; list-style: none; display: inline-block; }
.single .single-image ul { margin: 0 0 0 -7px; display: inline-block; }
.single .single-image ul { display: block; }
.single .single-image ul:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }
.single .single-image li { float: left; width: 73px; h/eight: 55px; display: inline; padding: 0 0 7px 7px; background: none; margin: 0; margin-right: 15px; }
.single .single-image li.newLine { clear: left; }
.single .single-image li a { display: block; width: 67px; h/eight: 49px; b/order-color: #d4d4dd; }

.single .single-image #videoPlayer { width: 234px; height: 191px; overflow: hidden; }

.single .single-text { margin-left: 246px; display: inline-block; overflow: hidden; _margin-left: 270px; _display: inline; }
.single .single-text { display: block; }
.single .single-text:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }
.single .single-text.large { margin-left: 0px; }

.single h2 { margin: 0; font-size: 16px; font-weight: bold; color: #013170; margin-bottom: 5px; font-family: Arial, Verdana; *margin-top: 4px; _margin-left: 8px; }
.single label { color: #1FA3A7; }
.single label a { color: #13676B; font-weight: bold; display: inline !important; border: none !important; background: none !important; }

#buy { font-size: 12px; font-weight: bold; line-height: 1.3em; float: left; width: 100px; color: #A50000; font-family: Arial, Verdana; }
#buy.variants { float: none; width: auto; }
#buy del { font-size: 12px; f/ont-weight: bold; font-style: normal; display: block; color: #023170; margin-bottom: -8px; *margin-bottom: 6px; }
#buy del sup { font-size: 22px; font-weight: bold;  font-style: normal; *margin-top: -8px; *position: relative; *top: -4px; *font-size: 32px; }
.single .single-text small { font-size: 12px; color: #5D6567; font-weight: bold; }
.single .single-text small b { color: #3B4347; }
#buy em { font-size: 36px; font-weight: bold; font-style: normal; display: block; color: #575D61; margin-bottom: -8px; *margin-bottom: 6px; }
#buy em sup { font-size: 22px; font-weight: bold;  font-style: normal; *margin-top: -8px; *position: relative; *top: -4px; *font-size: 32px; }


.productListDetail { margin: 0; t/ext-align: center; clear: both; }
.productListDetail li { background: none; width: 144px; z-index: 999; o/verflow: hidden; float: left; d/isplay: inline; margin: 0 0 0 34px; padding: 0; margin-top: 13px; w/idth: 160px; w/idth: 100%; p/adding: 13px 10px 20px 16px; p/adding: 10px; b/ackground: #FFFFFF; c/lear: left; m/in-height: 160px; _h/eight: 160px; position: relative; b/order: 1px #E8EBE9 solid; _zoom: 1; }
.productListDetail li.newLine { margin-left: 0; clear: left; }
.productListDetail li.separator { width: 100%; float: none; height: 0; padding: 0; margin: 0; min-height: 0; *margin-top: -20px; }
.productListDetail .image { d/isplay: inline; overflow: hidden; f/loat: left; width: 144px; }
.productListDetail .image a { border: 1px #C4C4C4 solid; padding: 3px; width: 136px; h/eight: 158px; height: auto; overflow: hidden; background: #fff; text-align: center; position: relative; }
.productListDetail .image a:hover { border: 3px #3FBDBF solid; padding: 1px; }
.productListDetail .image a .info { position: absolute; top: 0; right: 0; width: 70px; height: 35px; background: url(/i/infoReducere.png) no-repeat 0 0; cursor: pointer; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/infoReducere.png',sizingMethod='crop'); _bottom: -1px; _right: -1px; padding: 0; }
.productListDetail .image a .nou { background: url(/i/infoNou.png) no-repeat 0 0; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/infoNou.png',sizingMethod='crop'); }
.productListDetail a { text-decoration: none; display: block; f/loat: left; color: #1FA3A7; background-position: -600px 0; w/idth: 84px; }
.productListDetail .text { width: 144px; margin: 0; m/argin-left: 155px; _m/argin-left: 152px; p/adding: 0 0 0 15px; m/in-height: 65px; _h/eight: 65px; f/loat: left; o/verflow: hidden; text-align: center; w/idth: 443px; c/ursor: pointer; _m/argin-right: -10px; _w/idth: 453px; }
.productListDetail .text h2 { font-weight: bold; font-size: 12px; margin-top: 2px; m/argin-bottom: 0.5em; margin-bottom: 2px; }
.productListDetail .text h2 a { display: inline; padding: 2px 0; }

.productListDetailTitle { font-size: 19px; line-height: 1.5em; font-weight: bold; font-style: normal; color: #578181; margin: 10px 0 10px 0; background: url(/i/prodH1Bottom.gif) repeat-x bottom; }



/*
 * Detalii
 */
#detaliiProdus { float: left; width: 165px; display: inline; m/argin-left: 10px; }
#detaliiProdus fieldset { b/order: 3px double #cecef0; float: left; width: auto; p/adding: 10px; b/ackground: #e6e6f7; margin-bottom: 5px; text-align: right; p/adding: 0 0 10px 10px; }
#detaliiProdus ul { margin: 0; }
#detaliiProdus li { background: none; padding: 0; margin: 0; }
#detaliiProdus li a { display: block; padding-left: 28px; line-height: 25px; background: url(/i/detalii-produs-icons.png) no-repeat 5px 8px; text-decoration: none; }
#detaliiProdus li a:hover, #detaliiProdus li a:focus { text-decoration: underline; } 
#detaliiProdus .d2 a { background-position: 5px -42px; }
#detaliiProdus .d3 a { background-position: 5px -92px; }


#producator { margin-top: -1em; }

/*
 * Column
 */
#column { float: right; width: 170px; display: inline; margin-left: 15px; m/argin-right: 9px; margin-top: 10px; } 
#column h3 { margin-top: 0; }
#column .box { margin-bottom: 1em; }
#column .image { t/ext-align: center; c/olor: #f97c00; line-height: 1.3em; }
#column .image a, #column .image span { display: block; }
#column .image img { display: block; margin: 0px auto; b/order: 1px #F6EBE9 solid; width: 168px; }
#c/olumn .image a { display: block; border: 1px solid #E2E2A9; background: #F5F5E0; text-align: center; p/adding: 9px; *p/adding-bottom: 1px; *p/adding-bottom: 1px; } 
#column .image a { text-decoration: none; }
#column .image a:hover { text-decoration: none; *text-decoration: underline; }
#column .image span { border: 1px solid #C4C4C4; b/ackground: #F5F5E0; text-align: center; p/adding: 9px; *p/adding-bottom: 1px; *p/adding-bottom: 1px; }
#column .image a:hover span { border: 1px #A60000 solid; b/ackground: #166091; }
#column .image a:hover p { text-decoration: underline; color: #A60000; }
#column .image a span { b/order: none; p/adding: 0; cursor: pointer; }

#column .image p { margin: .5em 0; color: #043270; line-height: 140%; font-family: Arial, Verdana; font-size: 13px; }
#column .legend { text-align: center; margin: -.5em 0 1em 0; color: #538B06; }

#column .quote h2 { font-size: 14px; line-height: 130%; }
#column .quote h3 { color: #CC3366; line-height: 130%; }


#fq { color: #1FA3A7; position: relative; bottom: -15px; left: 15px; }
#fq a { color: #13676B; font-weight: bold; display: inline; padding: 0; }
#fq a:hover { color: #13676B; text-decoration: underline; }

/*
 * Home
 */
#h/ome h1 { line-height: 1.5em; position: relative; }
#h/ome h1:focus, #home h1:hover { cursor: pointer; }

#h/ome h1 a { color: #1FA3A7; font-size: 12px; display: inline; position: absolute; right: 0; }
#h/ome #header { b/ackground-image: url(/i/bgHeaderHome.png); }
#h/ome #header .inner { b/ackground-image: url(/i/bannerHeaderHome.png); }
#h/ome #wrap { p/adding-bottom: 0; padding-left: 0; padding-right: 0; width: 990px; _b/order-right: 1px #DCF2F2 solid; }
#h/ome #nav { d/isplay: none; }
#h/ome #content { width: 735px; float: right; }
#home #innerContent { width: 544px; m/argin: 0 -20px 0 -20px; b/ackground: url(/i/bgHomeInnerContent.jpg) repeat-y 0 0; p/adding-top: 60px; p/dding-bottom: 60px; m/in-height: 320px; _he/ight: 320px; float: left; }
#h/ome #links { width: 279px; float: right; display: inline; margin-top: -25px; position: relative; z-index: 2; }
#h/ome #links a { display: block; margin-bottom: 27px; }
#h/ome #links a img { display: block; }
#h/ome #productList { width: 558px; clear: none; display: inline-block; ma/rgin-top: -35px; position: relative; z-index: 2; float: left; }
#h/ome #homeLinks { width: 974px; padding-bottom: 92px; text-align: center; background: url(/i/bgInnerContent.jpg) repeat-x bottom; }
#home #productList h1 { _margin-bottom: -25px; _position: relative; }

/*
 * Print
 */
#print { background: #fff; color: #000; width: 19cm; margin: 1cm; }
#print #ctl00_logo { position: static; }
#print #content { width: 19cm; float: none; }

#print #nav,
#print #lang,
#print #search,
#print #inlineCartBar,
#print #producers,
#print #productNav,
#print #aboutNav,
#print #tabs,
#print #contextual,
#print #breadcrumbs,
#print #userNav,
#print #footer { display: none; }
#print #wrapOuter, #print .tr, #print .bl, #print .br, #print #wrap { padding: 0; margin: 0; border: 0; background: none; }
#print #header { height: auto; padding: 0; margin: 0; }
#print #ctl00_logo { padding: 0; padding-bottom: 30px; }


/*
 * Account
 */
#account label { width: 9em; w/idth: 14em; text-align: right; font-weight: normal; }
#account .txInput { width: 15em; *width: 14.3em; _width: 14em; }
#account select { width: 16.3em; *width: 15.6em; _width: 15.3em; margin: .4em 0; }
#account textarea { width: 15em; *width: 14.3em; _width: 14em; line-height: 1.5em; height: 8em; }

#account dl { display: inline-block; margin-bottom: 2em; }
#account dl { display: block; }
#account dl:after { display: block; clear: both; height: 0; visibility: hidden; content: '.'; }
#account dt { float: left; width: 14em; text-align: right; padding: .4em .6em; clear: left; }
#account dd { float: left; width: 10em; padding: .4em .6em; }

#registerSubmit, #btnLansareComanda { clear: both; margin: 0; text-align: center; }
#registerSubmit input { display: block; margin: 0 auto; width: 143px; height: 25px; f/loat: left; m/argin-left: 143px; margin: 0 auto; _margin-top: 30px; margin-top: 15px; }
#btnLansareComanda input { display: block; margin: 0 auto; width: 161px; }

#companyToggler { margin-bottom: 2em; }


/*
 * Contact Form
 */
#contactMessage { float: left; width: 400px; display: inline; margin-right: 20px; }
#contactDetails { float: left; width: 250px; }
#contact label { display: block; font-weight: bold; float: none; width: auto; padding: .1em 0; }
#contact textarea { width: 270px; height: 21.3em; }
#contact .txInput { width: 155px; }
#contact select { width: 171px; }
#contact .formSubmit { margin-left: 20px; }
#contact .quote { p/adding: 1em; }
#contact .button { width: 138px; }
#contact .col { width: 300px; margin: 0; _w/idth: 43.8%; m/argin-right: 1.5%; _m/argin-right: 1.2%; margin-top: 15px; }
#contact .small { width: 198px; _w/idth: 26%; margin: 0; m/argin-right: 3%; _m/argin-right: 1%; margin-top: 15px;   }
#contact .last { margin-right: 0; margin-top: 38px; float: right; width: 230px; }

/*
 * Shopping cart
 */
#shoppingCart table { width: 100%; }
#shoppingCart h3 { font-size: 1.1818em; margin: 0; }
#shoppingCart h3 a { text-decoration: none; }
#shoppingCart h3 a:hover, #shoppingCart h3 a:focus { text-decoration: underline; }
#shoppingCart .txInput { width: 2em; text-align: center; color: #033170 !important; }
#shoppingCart .sterge { font-size: .9166em; display: block; white-space: pre; color: #033170; }
#total { font-weight: normal; }

/*
 * Pager
 */
.pager { display: inline-block; font-size: 1.2727em; font-family: "Trebuchet MS", "Lucida Sans Unicode", Verdana, Arial, sans-serif; color: #339; line-height: 1.6em; }
.pager { display: block; }
.pager:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }
.pager div { float: right; }
.pager a { color: #339; }
.pager a, .pager span { text-decoration: none; float: left; padding: 0 .4em; display: inline; text-align: center; }
.pager a:hover, .pager a:focus { text-decoration: underline; }
.pager .active { font-weight: bold; }
.pager .prev, .pager .next { width: 25px; height: 25px; background: #3c0; padding: 0; color: #fff; font-weight: bold; margin-right: .4em; }
.pager a.next { margin-left: .4em; margin-right: 0; }
.pager span.next {  margin-left: .4em; margin-right: 0; }

#pagerTop .pager { margin: -2em 0 0 0; }


/****************************************************************************************
 * Promotii
 *
 * taburi
 ****************************************************************************************/
#promotii { width: 542px; border: 1px solid #043271; font-family: Helvetica, Arial, Sans-Serif; font-size: 1.166em; margin-bottom: 2em; height: 198px; float: left; } 
#promotii ul { margin: 0; background: #cc0000; display: inline-block; }
#promotii ul { display: block; }
#promotii ul:after { display: block; clear: both; height: 0; visibility: hidden; content: '.'; }
#promotii li { float: left; display: inline; margin: 0; padding: 0; background: none; }
#promotii a { color: #fff; text-decoration: none; float: left; padding: .4em .6em; border-top: 0; }
#promotii a:hover { text-decoration: underline;} 
#promotii a:focus { outline: none; }

.ui-tabs-hide { display: none; }
#promotii .ui-tabs-selected a { background: #fff; color: #cc0000; }


/*
 * Buy Now
 */
#buy { width: 154px; float: right; }
#buy legend { display: none; }
#buy input { text-align: center; border-color: #033170; width: 15px; height: 15px; _width: 20px; _height: 20px; m/argin-top: 7px; _m/argin-top: 2px; }
#buy .button { background-position: 0 -300px; height: 28px; width: 154px; text-indent: 99999px; float: right; margin-top: 10px; }
#buy.variants { clear: both; float: none; margin-top: 3em; width: 460px; line-height: 22px; _width: 450px; _clear: right; }
#buy.variants div { margin-bottom: 1.5em; }
#buy.variants h3 { margin: 0; color: #333; }
#buy.variants .price { float: left; }
#buy.variants .variantBuy { float: left; width: 370px; text-align: right; padding-right: 10px; }
#buy.variants a.button { background-position: -235px -305px; width: 95px; height: 20px; margin-top: 1px; }
#buy .button.favorite { background-position: -200px -100px; line-height: 200%; }
#buy p { float: left; }

/*
 * Finalizare comanda
 */
#finalizareComanda #inlineCartBar { background-position: 0 -54px; display: none; }
#finalizareComanda #inlineCartBar h4,
#finalizareComanda #inlineCartBar .produseInCos,
#finalizareComanda #inlineCartBar #inlineCartWrapper,
#finalizareComanda #inlineCartBar .finalizeOrder { display: none; }
#finalizareComanda #total { font-size: 1.5em; margin: .5em 0; }
#finalizareComanda #ctl00_logo a { w/idth: 230px; }
#finalizareComanda #content h1 { margin-top: -5px; margin-bottom: 20px; _m/argin-top: 0px; _po/sition: relative; }
#finalizareComanda #shoppingCart h2 { _margin-top: -35px; _position: relative; }
#finalizareComanda #shoppingCart h3 { margin-bottom: 10px; }
#finalizareComanda #header .inner { background: url(/i/bgHeaderFinalizare.jpg) no-repeat right 139px; height: 221px; }


#dvCuCardOnline { display: none; } 
#shoppingCart .description { display: none; }

.minim { text-align: center; }
.minim * { display: inline; }
.minim h3 { font-size: 1.5em !important; }

#priceT { width: 80px; }
#priceU { width: 80px; }

/*
 * Meesages & Error Messages
 */
#ctl00_dvMessage { color: #292954; display: block; width: 10em; height: 4em; padding: 2em; border: .5em solid #292954; background: #F1F1F8; position: absolute; top: 50%; left: 50%; margin: -6em 0 0 -3em; }
.message { padding: .5em 1em; background-color: #BCD8FF; margin: 2em 0; line-height: 1.4em; } 
.message h3 { margin-top: .5em; }
.error h3 { color: #A60000; }


/*
 * Tell a Friend
 */
#tell-a-friend label { width: 160px; text-align: right; padding: 4px 10px 0 0; }
#tell-a-friend .formSubmit { margin-left: 170px; }
#tell-a-friend input,
#tell-a-friend textarea { width: 198px; }
#tell-a-friend .button { width: 138px; line-height: 2em; }

/*
 * Newsletter
 */
#newsletter { p/osition: absolute; t/op: 44px; l/eft: 222px; width: 220px; padding-top: 15px; text-align: left; }
#newsletter label { color: #fff; width: 11em; }
#newsletter .formSubmit { margin: 0; }
#newsletter .formItem input { width: 205px; p/adding: 3px 4px 4px 4px; }
#newsletter .formSubmit, #newsletter .formItem { float: left; }
#newsletter .formSubmit { float: right; }
#newsletter .formSubmit input { float: left; width: 138px; }


/*
 * Comments
 */
#comments { margin: 10px 0; }
#comments label { display: block; font-weight: bold; float: none; width: auto; padding: .1em 0; }
#comments textarea { width: 285px; height: 200px; }
#comments .txInput { width: 170px; }
#comments .formSubmit { margin-left: 0; }
#comments .button { width: 138px; }
#comments .col { width: 315px; margin: 0; }
#comments .small { width: 213px; }
#comments .last { margin-right: 0; margin-top: 19px; float: right; width: 180px; }


/*
 * Buttons
 */
.button { background: url(/i/buttons.png) no-repeat 0 0; width: 154px; height: 28px;  border: 0; padding: 0; cursor: pointer; text-indent: -9999px; }
a.button { display: block; }
.en-GB .button { background: url(/i/buttons-en.png) no-repeat 0 0; }
.hu-HU .button { background: url(/i/buttons-hu.png) no-repeat 0 0; }


.formSubmit .button { display: block; width: 138px; background-position: -400px 0; }
#ctl00_cpBody_dvSubscribe .button,
#contact .button { display: block; }


/* Search button */
#search .button { background-position: 0 -100px; width: 67px; }

/* Search */
#search { width: 275px; height: 29px; position: absolute; right: 0px; top: 25px; z-index: 2; m/argin-right: -5px; }
#search i { display: block; width: 220px; height: 29px; position: absolute; top: 0; left: 0; ba/ckground: url(/i/search.png) no-repeat 0 0; _b/ackground: none; _f/ilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/search.png',sizingMethod='crop'); }
#search input { m/argin: 12px 0 0 19px; position: relative; b/ackground: none; b/order: 1px solid #C8C8C8; width: 170px; float: left; font-family: Arial, Verdana, sans-serif; f/ont-weight: bold; color: #022E72; font-size: 12px; padding: 7px 13px; height: 13px; padding-top: 4px; padding-bottom: 6px; margin-right: 5px; }
#search label { color: #757F83; }
#search #searchSubmit { width: 67px; height: 25px; cursor: pointer; margin-right: 0; }

.back { background-position: -200px 0; margin-top: 15px; width: 153px; height: 25px; float: left; }

/*#btnCauta { background-position: 0 -100px;  float: right; }*/
#btnAutentifica { background-position: 0 -200px; margin-bottom: .5em; display: block; width: 127px; margin-left: -12px; height: 25px; }
#ctl00_cpBody_btnContNou { background-position: -200px -200px; display: block; margin-left: -12px; _margin-left: -9px; width: 137px; height: 25px; }
#ctl00_cpBody_btnMaiDeparte { background-position: -600px -300px; display: block; margin-left: -7px; width: 133px; height: 25px; _margin-left: -5px; }
#ctl00_cpBody_btnSalvare,
#ctl00_cpBody_btnModificare { background-position: -400px -200px; }
#btnLansareComanda { background-position: -799px -300px; }


/****************************************************************************************
 * Footer
 *
 * Copyright Information, Trafic, Netlogiq link
 ****************************************************************************************/
#footer { overflow: hidden; m/argin-left: 8px; w/idth: 974px; text-align: right; color: #73ABAD; height: 93px; padding: 0; c/lear: both; background: url(/i/bgFooter.jpg) no-repeat top center; display: block; _d/isplay: none; p/osition: absolute; bottom: 0; width: 100%; padding-bottom: 20px; float: left; *margin-top: 50px; }
#footer .inner { width: 990px; margin: 0px auto; position: relative; h/eight: 53px; padding-top: 56px; overflow: hidden; }
#footer a { text-decoration: none; color: #032F73; font-family: Arial, Verdana; font-size: 11px; }
#footer a:hover, #footer a:focus { text-decoration: underline; c/olor: #94DDE0; }
#footer span { float: left; clear: left; }
#footer label { float: right; font-weight: normal; color: #73ABAD; }

#trafic { float: left; margin-top: 10px; display: none; }

#userWhy { margin-top: -7px; float: left; *margin-top: -6px; }
#userWhy a:focus, #userWhy a:hover { cursor: pointer !important; text-decoration: none; }

#bannerRight { float: right; width: 170px; }

#homeText { width: 735px; }
#homeText p { font-family: Arial, Verdana; font-size: 14px; color: #023170; line-height: 180%; _margin-top: -30px; }
#homeText h1 { height: 20px; }

#menuShoppingCart { float: left; border-left: 1px solid #84A6D3; height: 34px; m/argin-left: 5px; width: 132px; padding-left: 13px; overflow: hidden; }
#menuShoppingCart h1 { background: url(/i/bgCosCumparaturi.jpg) no-repeat 0 0; text-indent: -99999px; width: 132px; height: 20px; margin-bottom: 0; }

#userHow { position: absolute; m/argin-left: 40px; m/argin-top: -17px; c/lear: left; f/loat: left; left: 140px; bottom: 28px; d/isplay: none; }
#userHow a { color: #033170; font-size: 10px; text-decoration: underline; }
#userHow a:focus, #userHow a:hover { text-decoration: none; }


#rightBanner { float: right; width: 170px; margin-top: 5px; position: relative; z-index: 99999; }

#subCategoryBanner { margin-bottom: 15px; margin-top: 0px; _margin-top: -30px; _position: relative; _z-index: 99; }
#subCategoryBanner.small  { width: 460px; float: left; margin-top: 0px; }

#modificareCont #account h2 { margin-top: 10px; }
#modificareCont .col { margin-bottom: 15px; }
#modificareCont #account h1 { _margin-bottom: -30px; } 

#inregistrare #content h1 { height: 35px; _margin-bottom: -20px; }
#inregistrare #content ul { margin-top: 0; }
#inregistrare #content .message p { margin-bottom: 0; }
#inregistrare #content .message a { color: #003170; }
#inregistrare #content .message li { background: transparent url(/i/bullet.gif) no-repeat scroll 0 5px; }



#autentificarePage #content h1 { height: 35px; _margin-bottom: -30px; }

#autentificare a { text-decoration: underline; line-height: 120%; }
#autentificare a:focus, #autentificare a:hover { text-decoration: none; }

#recuperareParola #content input.txInput { width: 170px; }
#recuperareParola #content .formItem label { width: 75px; }
#recuperareParola #content .col { width: auto; }
#recuperareParola #content .formSubmit { float: left; margin-left: 10px; }
#recuperareParola #content .formItem { float: left; margin-left: 0; }
#recuperareParola #content h1 { _margin-bottom: -25px; }
#recuperareParola #content h3 { color: #003170; }
#recuperareParola #content .last { margin-top: 30px; }
#recuperareParola #content ul { margin-top: 0; }

#paging { margin-top: 10px; float: right; display: block; _margin-right: 0px; }

#detaliuProdus #content h1 { _margin-bottom: -30px; _position: relative; }
#detaliuProdus .single-text p { margin-top: -5px; margin-bottom: 20px; *margin-top: 0px; }

#paginaFlex #content h1 { _margin-bottom: -35px; }

#listaFlex #content h1 { _margin-bottom: -25px; height: 25px; }
#listaFlex #column { margin-top: 40px; }

#contactPage #content h1 { _margin-bottom: -25px; }
#contactPage .formItem { margin-bottom: 8px; *margin-bottom: 6px; }

table#detaliiTehnice { width: 460px; _width: 450px; _float: left; _border-right: 1px solid #BCD8FE; }
table#detaliiTehnice td { border-bottom: 1px solid #BCD8FE; border-width: 0px 0px 1px 1px; }
table#detaliiTehnice td.rowGrey { b/order: none; background-color: #F2F8FF; }
table#detaliiTehnice td.rowWhite { b/order: none; background-color: #fff; }
table#detaliiTehnice td:first-child, table#detaliiTehnice td.first-child { border-left: 0px !important; }


table#buy tr td.aCenter { background-color: #fff !important; color: #013170; border-right: none; border-left: none; border-top: none; width: 60px; }
table#buy tr td.vButton { background-color: #fff !important; color: #013170; border-left: none; border-top: none; }
table#buy tr td#quantity { background-color: #F2F8FF !important; color: #013170; border: solid #BCD8FE; border-width: 1px 0 1px 0; }
table#buy tr td#product { background-color: #033170 !important; color: #fff; border: 1px solid #BCD8FE; width: 140px; }
table#buy tr th#vName { background-color: #033170 !important; }
table#buy tr th#vName h3 { color: #fff; font-family: Arial, Verdana; font-size: 12px; font-weight: normal; }
table#buy tr td#Th1 { background-color: #F2F8FF; color: #013170; border: solid #BCD8FE; border-width: 1px 0 1px 0; width: 100px; }
table#buy tr td#vPrice { background-color: #fff !important; color: #023170; border-right: none; border-top: none; }
table#buy tr td#vNone { background-color: #F2F8FF !important; color: #013170; border: solid #BCD8FE; border-width: 1px 1px 1px 0; }


table#final tr td#product {  background-color: #033170 !important; color: #fff; }
table#final tr td#quantity {  background-color: #F2F8FF !important; color: #033170; border-width: 1px 0 1px 0; width: 85px; text-align: center; }
table#final tr td#priceU {  background-color: #F2F8FF !important; color: #033170; border-width: 1px 0 1px 0; text-align: left; }
table#final tr td#priceT {  background-color: #F2F8FF !important; color: #033170; border-width: 1px 1px 1px 0; text-align: left; }
table#final tr td.aRight {  background-color: #fff !important; color: #023170 !important; border-width: 0 1px 1px 0; }
table#final tr td.bRight {  background-color: #fff !important; color: #023170 !important; border-width: 0 0 1px 0; }
table#final tr td.cRight {  background-color: #fff !important; color: #023170 !important; border-width: 0 1px 1px 0; }
table#final tr td.vName {  background-color: #033170 !important; color: #fff !important; border-width: 0px 1px 1px 1px; }
table#final tr td.vQuantity {  background-color: #fff !important; color: #023170 !important; border-width: 0px 0 1px 0; text-align: center; padding-top: 10px; }
table#final tr td.vName h3 a { color: #fff !important; font-weight: normal !important; font-family: Arial, Verdana; font-size: 12px; }
table#final tr td.vName h3 { color: #fff !important; font-weight: normal !important; }


#rightContentCarlige { float: right; width: 453px; }
#carligPage .single { float: left; *margin-top: 0px; }



@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0)
{
.single .single-text { margin-left: 0px; }
#detaliuProdus .single-text p { margin-top: 0px; }
}


#stocSauComanda.Fise-informative img { display: none; }

#stocSauComanda { width: 100%; float: left; }
#stocSauComanda img { height: 40px; float: left; }
#stocSauComanda p { width: 400px; float: left; margin-top: -2px; margin-left: 8px; }

/****************************************************************************************
 * Additional Links
 *
 * Styles for Additional Links related to a Detail page
 *
 * We have:
 * 1. Links
 * 2. Documents (attached)
 *
 ****************************************************************************************/
 
 #productListIntro { float: left; margin-bottom: 15px; width: 735px; _margin-top: -1px; }
 
.additionalLinks { m/argin: 2em 0; p/adding: 1em 0; clear: left; margin-top: 20px; }
.additionalLinks ul { margin: 0; }
.additionalLinks li { background: url(/i/arrowBig.gif) no-repeat 3px 50%; padding: 1px 20px; margin: 5px 0; }
.additionalLinks a { color: #A60000; text-decoration: none; font-family: Verdana, Arial; font-size: 13px; }
.additionalLinks a:hover, .additionalLinks a:focus { text-decoration: underline; }


.fromList { width: 220px; background-color: #EDF3FE; padding: 15px; float: right; clear: right; margin-top: 0px; }
.fromList h4 { color: #003170; font-size: 12px; font-family: Arial, Verdana; font-weight: bold; }
.fromList li a  { color: #003170; }


/* Default Document (unknown) */
div.docs li { background: url(/i/docs.png) no-repeat 0 0; }

div.fromList li { background: url(/i/docsList.png) no-repeat 0 0; }

/* Archives */
.docs .rar,
.docs .zip,
.docs .ace { background-position: 0 -50px; }

/* Images */
.docs .gif,
.docs .jpg,
.docs .jpg2,
.docs .jpeg,
.docs .jpeg2,
.docs .png { background-position: 0 -93px; }

/* Video */
.docs .avi,
.docs .mov,
.docs .mpg,
.docs .mpeg,
.docs .wma { background-position: 0 -150px; }

/* Audio */
.docs .mp3,
.docs .mp4,
.docs .wav,
.docs .mid { background-position: 0 -200px; }

/* Text */
.docs .txt { background-position: 0 -250px; }

/* Word like */
.docs .doc,
.docs .docx { background-position: 0 -300px; }

/* Excel like */
.docs .xls,
.docs .xlsx { background-position: 0 -350px; }

/* Powerpoint */
.docs .ppt { background-position: 0 -400px; }

/* HTML */
.docs .htm,
.docs .html { background-position: 0 -450px; }

/* PDF */
.docs .pdf { background-position: 0 -495px; }