/****************************************************************************************
 * 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; }

* { outline: 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: .6875em/1.4em Arial, Verdana, Helvetica, sans-serif; background: #F3F7FC url(/i/bgBody.jpg) repeat-x top; color: #274F77; }
body#home { background: #002551; }

/****************************************************************************************
 * General Margins for Content Elements
 *
 * Especially for admin edited content (FCK)
 ****************************************************************************************/
p, ul, ol, dl, table { margin: 1em 0 1em 0; }
p { color: #264D77; }

/****************************************************************************************
 * 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 4px; 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: 24px; line-height: 1.3em; font-weight: normal; font-style: normal; margin: 0 0 1em 0; color: #EE1D23; font-family: Arial, Verdana, sans-serif; }
h2 { font-size: 15px; line-height: 1em; font-weight: bold; font-style: normal; color: #264D77; margin: 0 0 .5em 0; }
h3 { font-size: 14px; line-height: 1em; font-weight: bold; font-style: normal; color: #264D77; margin: 0 0 .5em 0; }
h4 { font-size: 13px; line-height: 1em; font-weight: bold; font-style: normal; color: #ffffff; margin: .5em 0 .5em 0; }


/****************************************************************************************
 * Hyperlinks
 *
 * Anchor tags styles should go here
 * as well as general functionality styles
 ****************************************************************************************/
a { color: #264D77; text-decoration: none; overflow: hidden; }
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 { display: inline-block; }
.easyclear, #aboutNav li, #aboutNav li ul li { display: block; }
.easyclear:after, #aboutNav li:after, #aboutNav li ul li:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }

.aLeft { text-align: left; padding-left: 5px; }
.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: 20px; display: block; background: #DFE8F9; border: 1px solid #EAF0FB; overflow: hidden; }


/****************************************************************************************
 * Forms
 *
 * General Form elements styles
 * 
 * !!!!!!!!!!!!!!!!!!!
 * needs to be revised
 * !!!!!!!!!!!!!!!!!!!
 *
 ****************************************************************************************/
input, select, textarea { font-size: 11px; font-family: Verdana, Helvetica, Arial, sans-serif; color: #000000;  }

input[type=text], input[type=password], textarea { padding: .4em .6em; background: #F5F8FC ; border: 1px solid #BCCEED; margin-bottom: 5px; }
textarea { height: auto; overflow: auto; }

legend { display: none; }
.txInput, textarea, select { border: 1px solid #BCCEED; }
select { padding: .1em .2em; border: 1px solid #BCCEED; background: #F5F8FC; }
.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: #EAF0FB; line-height: 1.3em; display: block; clear: both; margin: 1em auto; width: 85%; padding: .5em 1em; }


/*For Checkboxes/radios */
.ckFormItem label { float: none; }

#autentificare a { margin-left: 16px; font-weight: bold; line-height: 200%; }

/****************************************************************************************
 * 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 { background: #F3F7FC; font-weight: bold; text-align: center; bo/rder-left: 5px solid #EAF0FB; bo/rder-right: 5px solid #EAF0FB; }
th, td { b/order: solid #8e8fcb; border-width: 0 0 1px 0; padding: 3px 13px; text-align: center; font-size: 12px; color: #264D77; }

thead tr { padding: 0px 5px; border: 5px solid #EAF0FB; }

/* Page dropshadow */

#wrapOuter, .tr, .bl, .br { b/ackground: url(/i/background2.png) no-repeat left bottom; display: inline-block; }
#wrapOuter, .tr, .bl, .br { display: block; }

#wrapOuter { padding-left: 8px; width: 966px; margin: 0px auto; }
.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: #F3F7FC ; p/adding: 20px; width: 960px; margin: 0px auto; position: relative; padding-top: 15px; margin-bottom: 20px; }

#paging { float: right; background-color: #EAF0FB; width: 627px; height: 40px; padding-top: 12px; padding-right: 6px; ma/rgin-bottom: 10px; padding-left: 6px; }

#home #wrap  { margin-top: 14px; }

#home #footer { margin-top: 20px; }
/****************************************************************************************
 * 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%; m/argin: 2em 0 0 0; float: right; margin-bottom: 20px; }
.listItem p { margin-bottom: .5em; margin-top: .5em; }

#list.column { margin-right: 235px; display: inline-block; }
#list.column { display: block; }
#listIntroduction { margin-bottom: 2em; }

.listItem h2 { margin-top: 0; font-weight: bold; margin-bottom: 14px; }
.listItem h2 a { text-decoration: none; color: #274F77; }
.listItem h2 a:hover { text-decoration: underline; }
.subHeading { margin: -.6em 0 -.2em 0; color: #515151; font-weight: bold; }
.listImage { display: inline; width: 120px; 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 #CDDBF1 solid; padding: 2px; display: block; *float: left; }
.listImage a:hover { border: 1px #264E77 solid; background: #F3F7FC ; }
.listImage span { border: 1px #CDDBF1 solid; padding: 2px; display: block; *float: left; }
.listImage a span { border: none; padding: 0; *float: none; }
.listText { margin-left: 115px; _zoom: 1; _margin-left: 127px; }
a.more { text-decoration: underline; display: block; color: #386DB8; 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; margin-top: 6px; }
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: 120px; display: inline; margin: 0px 0px 5px 20px; font-style: normal; text-align: left; overflow: hidden; float: left; }	
.galleryElement.newLine { margin-left: 0; clear: left; }
.galleryElement p {	margin: 5px 0px 0px 0px; }
.galleryElement span { border: 1px #CDDBF1 solid; padding: 2px; width: 114px; overflow: hidden; display: block; }
.galleryElement a { font-size: 1px; border: 1px #CDDBF1 solid; padding: 2px; width: 114px; overflow: hidden; display: block; }
.galleryElement a:hover { border: 1px #264E77 solid; background: #F3F7FC ; }
.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; o/verflow: hidden; }

#dvCompany .formItem label em { display: inline; }


/****************************************************************************************
 * 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%; }

.col h2 { margin-top: 12px; }

.small { width: 22%; *width: 21%; }
.last { margin-right: 0; }


#aspnetForm { w/idth: 974px; margin: 0 auto; position: relative; }
#tell-a-friend form { width: 450px; padding-top: 20px; }
#content { float: right; width: 642px; p/adding-bottom: 20px; font-size: 12px; p/adding-right: 9px; m/argin-top: 15px; }
#content #infoText { color: red; }
#content h1 { margin-top: 12px; margin-bottom: -6px; }

#home #content { w/idth: auto; width: 540px; }

#homeText { width: 506px; color: #B8C2CF; font-size: 17px; font-family: Arial, Verdana, sans-serif; line-height: 140%; background-color: #12345D; float: right; padding: 17px; margin-bottom: 25px; }
#homeText a { color: #FFFFFF; text-decoration: underline; margin-top: 8px; }
#homeText a:focus, #homeText a:hover { color: #FFFFFF; text-decoration: none; }
#homeText p { margin-top: 0px; color: #B8C2CF; font-size: 20px; margin-bottom: 15px; }
#homeText h2 { color: #B8C2CF; line-height: 130%; font-size: 17px; font-weight: normal; }


/****************************************************************************************
 * Header
 *
 * 1. Site logo
 * 2. Navigation probably
 * 3. Search 
 * etc
 ****************************************************************************************/
#header { width: 100%; margin: 0 auto; background: #FFFFFF; }
#innerHeader { width: 960px; margin-left: 7px; height: 115px; margin-top: 1px; position: relative; z-index: 9; background-color: #FFFFFF; margin: 0 auto; m/argin-top: 15px; padding-top: 18px; }

/* Logo */
#ctl00_logo { p/osition: absolute; t/op: 15px; l/eft: 33px; p/adding-top: 26px; m/argin-top: -15px; }
#ctl00_logo a { display: block; background: url(/i/logo.jpg) no-repeat 0 0; _background: none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/i/logo.jpg',sizingMethod='crop'); width: 227px; height: 103px; 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 a.dN { display: none; }

#lang .en-GB { background-position: 0 -50px; }
#lang .hu-HU { background-position: 0 -100px; }

#langEn { p/osition: absolute; margin-right: 375px; margin-top: -80px; float: right; color: #333333; font-size: 12px; font-family: Arial, Verdana, sans-serif; border-bottom: 1px solid #CCCCCC; _margin-right: 185px; _margin-top: -80px; }
#langEn a:focus, #langEn a:hover { text-decoration: none; }

.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: 642px; height: 180px; m/argin: 11px 0 0 -21px; *m/argin-top: -22px; _m/argin-right: -21px; d/isplay: none; position: relative; margin-bottom: 20px; float: right; }

#products #contextual { display: block; }

/*
 * 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; }

 
/*
 * User Nav
 */
#userNav { position: absolute; left: 0; top: 85px; }
#userNav p { padding-left: 14px; margin: 0; display: block; }
#userNav ul { margin: 0; }
#userNav li { padding-left: 0; margin-right: 15px; }
#userNav * { background: none; display: inline; }
#userNav a { text-decoration: none; }
#userNav a:hover, #userNav a:focus { text-decoration: underline; }


/*
 * About Nav
 */
#aboutNav { margin: 0; position: absolute; right: 0; bottom: 10px; te/xt-transform: uppercase; font-size: 12px; color: #386CB8; font-weight: bold; z-index: 15; float: right; margin-right: -10px; }
#aboutNav li { display: inline; padding: 0; margin: 0; background: none; position: relative; border: 1px #FFFFFF solid; width: auto; _w/idth: 100%; _zoom: 1; _overflow-x: hidden; float: left\0; }
body:first-of-type #aboutNav li { float: left; }
#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; padding-right: 20px; }
#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-size: 12px; font-weight: normal; }
#aboutNav a:hover, #aboutNav a:focus { t/ext-decoration: underline; }
#aboutNav ul ul li:hover, #aboutNav ul ul li:focus { background-color: #DFE8F9; }

#a/boutNav li ul { background: #fff; border: 1px solid #B4B4B4; border-top: 0; margin: 0; line-height: 1.3em; padding-top: 2px; }
#aboutNav li ul li { float: none; _f/loat: left; display: block; margin: 0; font-weight: normal; width: 120px; _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; b/order-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 { w/idth: 100%; background-color: #EE1D23; m/argin: 0 auto; height: 30px; border-bottom: 25px solid #C6252D; }
#inlineCartBar { clear: both; }
#inlineCartBar.Apa { border-bottom: 25px solid #006BB6; }
#inlineCartBar.Gaz { border-bottom: 25px solid #FECD08; }
#inlineCartBar.Incalzire { border-bottom: 25px solid #C6252D; }
#inlineCartBar.Sisteme-solare { border-bottom: 25px solid #B3D622; }
 
#innerinlineCartBar { b/ackground: url(/i/shoppingCart.gif) no-repeat 100% 0; width: 960px; height: 23px; padding-top: 7px; color: #ffffff; p/osition: relative; bottom: 0; right: 0; z-index: 10; p/adding-bottom: 5px; font-size: 12px; text-align: right; f/loat: right; b/ackground-color: #EE1D23; b/order-bottom: 25px solid #C6252D; margin-top: 8px; margin-top: -30px; margin: 0 auto; }
.en-GB #innerinlineCartBar { b/ackground: url(/i/shoppingCart-en.gif) no-repeat 100% 0; }
.hu-HU #innerinlineCartBar { b/ackground: url(/i/shoppingCart-hu.gif) no-repeat 100% 0; }
#innerinlineCartBar h4 { p/osition: absolute; t/op: 0; left: -300px; w/idth: 200px; t/ext-indent: -9999em; margin: 0; text-align: left; float: right; display: none; padding-right: 35px; m/argin-top: -4px; margin-left: 33px; }
#innerinlineCartBar h4.noProducts { display: block; }
#innerinlineCartBar a { color: #ffffff; }
#innerinlineCartBar .produseInCos { f/ont-weight: bold; f/ont-size: 1.1em; display: block; p/adding: 0 250px 0 0; p/osition: absolute; right: 300px; w/idth: 230px; float: right; padding-right: 35px; m/argin-top: -6px; margin-left: 33px; }
#innerinlineCartBar .finalizeOrderDiv { text-align: left; float: right; display: none; }
#innerinlineCartBar .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: 0; r/ight: 140px; width: 100px; h/eight: 20px; z-index: 100; text-align: right; float: right; m/argin-top: -6px; }
.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); background: url(/i/arrowMenu.jpg) no-repeat right; padding-right: 19px; }

#inlineCart { position: absolute; right: 0; top: 15px; background: #fff; border: 1px solid #EE1D23; width: 211px; padding: 10px; color: #000000; line-height: 1.2em; text-align: center; display: 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: #264D77; }
#inlineCart .text { float: left; width: 125px; }
#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: 85px; text-align: center; position: relative; }
#inlineCart .cant input { width: 43px; padding: .2em .3em; text-align: center; }
#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; }

#inlineCart .total { text-align: left; background: #c00; 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: 170px; height: 22px; display: block; text-indent: -9999px; margin: 0 auto 5px auto; }
#inlineCartBar #inlineCart .ofertare { background: url(/i/buttons.png) no-repeat -400px -323px; }

.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;}

#home #inlineCartBar { border-bottom: none; }


#linkAutentificare { m/argin-left: 430px; float: right; padding-right: 19px; m/argin-right: 35px; background: url(/i/bgAutentificare.jpg) no-repeat right center;  }
#linkAutentificare p { color: #FFFFFF; display: inline; margin-right: 10px; }
#linkAutentificare li { display: inline; margin-left: 39px; }

/****************************************************************************************
 * Product Navigation
 *
 * Accordion type navigation
 ****************************************************************************************/
#nav { float: left; width: 300px; display: inline; padding: 0; font-weight: normal; *m/argin-top: 40px; m/argin-top: 15px; }
#nav ul { margin: 0; display: inline-block; b/order: 1px #CCCCCC solid; p/adding: 10px; font-weight: bold; }
#nav ul { display: block; }
#nav li { margin: 0; padding: 0; display: inline-block; background: none; margin-bottom: 5px; }
#nav li { display: block; }
#nav li.active a { b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; }
#nav li:last-child, #nav li.last-child { border-bottom: none; }

#nav ul li#Apa a { background: url(/i/bgImageApa.jpg) no-repeat 0 0;  w/idth: 290px; height: 60px; m/argin-top: 5px; }
#nav ul li#Gaz a { background: url(/i/bgGazImage.jpg) no-repeat 0 0; w/idth: 290px; height: 60px; m/argin-top: 5px; }
#nav ul li#Incalzire a { background: url(/i/bgIncalzireImage.jpg) no-repeat 0 0; w/idth: 290px; height: 59px; m/argin-top: 5px; }
#nav ul li#Sisteme-solare a { background: url(/i/bgSistemeImage.jpg) no-repeat 0 0; w/idth: 290px; height: 60px; m/argin-top: 5px; }

#nav a { p/adding: 6px 0; text-decoration: none; display: inline-block; b/ackground: url(/i/navArrow1.gif) no-repeat 9px center; font-size: 13px; color: #264D77; }
#nav a.active { b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; c/olor: #183052; font-weight: bold; }
#nav a { display: block; }

#nav a:hover, #nav a:focus { text-decoration: none; b/ackground: url(/i/navArrow1Active.gif) no-repeat 9px center; color: #ED1D22; background-color: #F3F7FC !important; }

#nav ul li a { color: #FFFFFF; font-size: 24px; font-family: Arial, Verdana, sans-serif; }

#nav ul ul { border: 0; border-top: 1px #D8E2F3 solid; padding: 0; background-color: #EAF0FB; }
#nav ul ul a { b/ackground: url(/i/navArrow1.gif) no-repeat 27px center; padding: 6px 0 6px 20px; text-decoration: none; font-weight: normal; font-size: 13px; color: #264D77; width: auto !important; }
#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; }

#nav ul ul ul a { background: url(/i/bgNavImage.jpg) no-repeat 10px center !important; height: auto !important; }
#nav ul ul a { background: url(/i/bgNavImage.jpg) no-repeat 10px center !important; height: 15px !important; }
#nav ul ul li { margin-bottom: 0; border-top: 1px #D8E2F3 solid; }
#nav ul ul li a.active, #nav ul ul li a.selected { font-weight: bold; }
#nav ul ul ul a { padding: 8px 0 8px 20px; margin-left: 17px; b/rder: none !important; }
#nav ul ul ul li { border-top: 1px solid #D8E2F3; margin-bottom: 0; border-bottom: none; }
#nav ul ul ul ul li { border-top: none; margin-bottom: 0; }
#nav ul ul ul a:focus, #nav ul ul ul a:hover { color: #264D77; }
#nav ul ul ul ul a { padding: 3px 0 3px 22px; margin-left: 40px; }
#nav ul ul ul.full li { b/order-top: none; bo/rder-bottom: 1px #D8E2F3 solid;  }

#home #nav { width: 398px; }
#home #nav ul ul  { display: none; }
#home #nav li { margin-bottom: 11px;  }

#home #nav ul li#Apa a { background: url(/i/bgApaImageHome.jpg) no-repeat 0 0; height: 78px; border: 1px solid #002551; }
#home #nav ul li#Apa a:focus, #home #nav ul li#Apa a:hover { border: 1px solid #fff; }
#home #nav ul li#Gaz a { background: url(/i/bgGazImageHome.jpg) no-repeat 0 0; height: 80px; border: 1px solid #002551; }
#home #nav ul li#Gaz a:focus, #home #nav ul li#Gaz a:hover { border: 1px solid #fff; }
#home #nav ul li#Incalzire a { background: url(/i/bgIncalzireImageHome.jpg) no-repeat 0 0; height: 78px; border: 1px solid #002551; }
#home #nav ul li#Incalzire a:focus, #home #nav ul li#Incalzire a:hover { border: 1px solid #fff; }
#home #nav ul li#Sisteme-solare a { background: url(/i/bgSistemeImageHome.jpg) no-repeat 0 0; height: 80px; border: 1px solid #002551; }
#home #nav ul li#Sisteme-solare a:focus, #home #nav ul li#Sisteme-solare a:hover { border: 1px solid #fff; }

#corporate { display: none; }


#infoText p { color: #EE1D23; line-height: 150%; p/adding-top: 20px; }
/****************************************************************************************
 * Product List
 *
 * List of products
 ****************************************************************************************/
#subcategories { font-family: Arial, "Lucida Sans Unicode", "Lucida Grande", Tahoma, Verdana, Helvetica, Arial, sans-serif; margin: 1em 0; }
#subcategories ul { b/ackground: url(/i/description.png) repeat-x 0 0; margin: 0; padding: 6px 20px; background-color: #EAF0FB; }
#subcategories li { float: left; width: 47%; }
#subcategories a { text-decoration: none; color: #264D77; }
#subcategories a:hover, #subcategories a:focus { text-decoration: underline; }

#productList { margin: 20px 0 18px -18px; display: inline-block; position: relative; p/adding-top: 25px; *p/adding-top: 50px; clear: both; } 
#productList li { b/order: 1px solid #CDDBF1; float: left; width: 196px; h/eight: 260px; padding: 0; margin: 0 5px 34px 18px; display: inline; background: #F3F7FC; overflow: hidden; position: relative; float: left; m/in-height: 260px; border: none; height: 300px; }
#productList .image {  height: 178px; width: 178px; margin: 0; float: none; display: block; cursor: pointer; background-color: #F3F7FC; border: 1px solid #CDDBF1; padding: 8px; text-align: center; }
#productList .image img { display: inline; max-height: 180px; max-width: 180px; }
#productList .text { p/osition: absolute; t/op: 167px; l/eft: 0; w/idth: 196px; min-height: 50px; p/adding: 5px 1px; ba/ckground: #f5f5fc; li/ne-height: 1.4em; ma/rgin-top: 33px; overflow: hidden; }
#productList a { text-decoration: none; color: #264D77; font-family: Arial, Verdana, sans-serif; font-size: 12px; }
#productList .image:hover, #productList .image:focus { text-decoration: underline; border: 1px solid #264E77 !important; }
#productList h2 { font-size: 1em; line-height: 1.4em; font-weight: bold; h/eight: 30px; overflow: hidden; }
#productList fieldset { margin-top: 4px; padding: 5px 20px 5px 8px; margin-left: -7px;  }
#productList input { border: 1px solid #cecef0; width: 2.5em; padding: .2em 0; text-align: center; }
#productList h3 { font-size: 12px; font-family: Arial, Verdana, sans-serif; color: #ED1D22; font-weight: normal; margin-top: 4px; }
#productList .button { float: right; width: 101px; height: 16px; background-position: -200px -300px; }
#productList h4 { color: #264D77; font-weight: normal; } 

#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'); margin: 2px 2px 0 0; }
.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;}

#productList .text a { border: none; }

.image th, td { padding: 0; }


/****************************************************************************************
 * Product Detail Page
 *
 * Product description, images, price etc
 ****************************************************************************************/
.single .single-image { float: right; width: 280px; overflow: hidden; margin-left: 15px; margin-top: 36px; }
.single .single-image div { clear: both; m/in-height: 240px; }
.single .single-image a { border: 1px solid #CDDBF1; display: block; w/idth: 280px; overflow: hidden; background: #F3F7FC; cursor: pointer; padding: 5px; }
.single .single-image a:hover, .single .image a:focus { border-color: #264E77  }
.single .single-image img { display: block; margin: 0 auto; }
.single .single-image ul, .single .image li { margin: 0; list-style: none; display: inline-block; }
.single .single-image ul { margin: 8px 0 0 -10px; 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; w/idth: 52px; h/ight: 35px; display: inline; padding: 0 0 11px 11px; background: none; margin: 0; }
.single .single-image li a { display: block; w/idth: 85px; h/eight: 85px; b/order-color: #d4d4dd; }
.single .single-text { m/argin-left: 260px; display: block; o/verflow: hidden; }
.single .single-text p { d/isplay: block; color: #264D77; line-height: 150%; }
.single .single-text:after { content: '.'; display: block; clear: both; height: 0; visibility: hidden; }
.single-text h5 { color: #264D77; font-size: 12px; font-weight: normal; background-color: #EAF0FB; width: 336px; height: 74px; line-height: 170%; padding: 8px 0 0 8px; }
.single-text h5 a { text-decoration: underline; color: #264D77; }
.single-text h5 a:focus, .single-text h5 a:hover { text-decoration: none; }

#linkRevenire { margin-bottom: 15px; margin-top: 10px; }
#linkRevenire p { color: #264D77; font-size: 12px; }
#linkRevenire a{ color: #ED1D22; font-size: 12px; text-decoration: underline; }
#linkRevenire a:hover, #linkRevenire a:focus { text-decoration: none; }

.single h2 { f/ont-size: 1em; margin: 0; margin-top: 12px; }

.single-text h2 { margin-top: 15px; }

#price { font-size: 1.33em; font-weight: bold; line-height: 1.3em; float: left; width: 100px; color: #cc0000; }
#price.variants { float: none; width: auto; }
#price del { color: #bebecb; }
#price small { font-size: .625em; font-weight: normal; display: block; line-height: 1.6em; padding: 0 3px; }
#price em { font-size: .75em; font-weight: normal; font-style: normal; display: block; color: #999999; }


/*
 * Detalii
 */
#detaliiProdus { float: right; width: 165px; display: inline; margin-left: 10px; }
#detaliiProdus fieldset { border: 3px double #cecef0; float: none; width: auto; padding: 10px; background: #e6e6f7; margin-bottom: 5px; }
#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 { color: #999999; margin-top: 10px; font-size: 18px; }

/*
 * Column
 */
#column { float: right; width: 260px; display: inline; margin-left: 20px; margin-top: 13px; } 
#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; border: 1px #F6EBE9 solid; width: 240px; }
#column .image a { display: block; border: 1px solid #CDDBF1; background: #F3F7FC; text-align: center; padding: 8px; *p/adding-bottom: 1px; *p/adding-bottom: 1px; } 
#column .image a:hover { border: 1px solid #264E77 ; }
#column .image span { border: 1px solid #CDDBF1; background: #F3F7FC; text-align: center; padding: 8px; *p/adding-bottom: 1px; *p/adding-bottom: 1px; }
#column .image a span { border: none; padding: 0; }

#column .image p { margin: .5em 0; }
#column .legend { t/ext-align: center; margin: -.5em 0 1em 0; color: #386CB8; text-align: center; }

#column .quote { p/adding-left: 1em; }


/*
 * 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; text-align: right; }
#account .txInput { width: 15em; *width: 14em; _width: 13em; }
#account select { width: 16.3em; *width: 15.3em; _width: 14.3em; margin: .4em 0; }
#account textarea { width: 15em; *width: 14em; _width: 13em; 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: 9em; text-align: right; padding: .4em .6em; clear: left; }
#account dd { float: left; width: 10em; padding: .4em .6em; }

#account h1 { margin: 0; }

#registerSubmit, #btnLansareComanda { clear: both; margin: 0; text-align: center; }
#btnLansareComanda input { display: block; margin: 0 auto; width: 165px; margin-bottom: 20px; }
#registerSubmit input{ display: block; margin: 0 auto; width: 180px; margin-bottom: 20px; }

#companyToggler { margin-bottom: 2em; }


/*
 * Contact Form
 */
#contactMessage { float: left; width: 400px; display: inline; margin-right: 20px; }
#contactDetails { float: left; width: 250px; }
#contact { margin-top: 14px; }
#contact label { display: block; font-weight: bold; float: none; width: auto; padding: .1em 0; }
#contact textarea { width: 223px; height: 21.3em; }
#contact .txInput { width: 154px; }
#contact select { width: 170px; height: 24px; margin-bottom: 5px; padding-top: 3px; }
#contact .formSubmit { margin-left: 0; }
#contact .quote { p/adding: 1em; width: 172px; float: left; height: 320px; }
#contact .quote2 { p/adding: 1em; width: 172px; float: right; padding: 20px; display: block; background: #DFE8F9; border: 1px solid #EAF0FB; overflow: hidden; height: 320px; }
#contact .button { width: 146px; }
#contact .col { width: 300px; margin: 0; _w/idth: 43.8%; m/argin-right: 1.5%; _m/argin-right: 1.2%; }
#contact .small { width: 115px; _w/idth: 26%; margin: 0; m/argin-right: 3%; _m/argin-right: 1%; margin-left: -45px; }
#contact .last { margin-right: 0; m/argin-top: 19px; float: right; width: 180px; }
#contact .info { margin-right: 0; margin-top: 19px; float: left; width: 209px; margin-bottom: 15px; width: 642px; clear: both; }
#contact h1 { margin-top: -3px; }

/*
 * Shopping cart
 */
#shoppingCart table { width: 100%; }
#shoppingCart h3 { font-size: 1.1818em; margin: 0; margin-bottom: 5px; }
#shoppingCart h3 a { text-decoration: none; }
#shoppingCart h3 a:hover, #shoppingCart h3 a:focus { text-decoration: underline; }
#shoppingCart .txInput { width: 43px; height: 14px; text-align: center; border-top: 1px solid #7EA8D6; border-left: 1px solid #CDDBF1; border-right: 1px solid #CDDBF1; border-bottom: 1px solid #CDDBF1; margin-top: 4px; padding: 5px 8px; padding-left: 0px; padding-right: 0px; }
#shoppingCart .sterge { font-size: .9166em; display: block; white-space: pre; }
#total { font-weight: normal; }

input#ctl00_cpBody_txAdaos { width: 25px; padding: 5px 8px; margin-right: 5px; text-align: center; *margin-bottom: -3px; }
#Adaos { margin-bottom: 10px; }

.printPage { background: url(/i/buttons.png) no-repeat -400px -346px; width: 150px; height: 22px; display: block; text-indent: -99999px; font-size: 1px; border: 0; margin-bottom: 6px; cursor: pointer; }
.saveCSV { background: url(/i/buttons.png) no-repeat -400px -369px; width: 150px; height: 22px; display: block; text-indent: -99999px; font-size: 1px; border: 0; cursor: pointer; }

/*
 * 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: 540px; b/order: 1px solid #C00; font-family: Helvetica, Arial, Sans-Serif; font-size: 1.166em; margin-bottom: 2em; float: right; } 
#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; background-color: #EAF0FB; }
#buy legend { display: none; }
#buy input { width: 42px; height: 11px; text-align: center; border-top: 1px solid #7EA8D6; border-left: 1px solid #CDDBF1; border-right: 1px solid #CDDBF1; border-bottom: 1px solid #CDDBF1; margin-top: 4px; padding-left: 0px; padding-right: 0px; }
#buy .button { background-position: 0 -300px; height: 24px; width: 139px;  }
#buy.variants { clear: both; float: none; p/adding-top: 3em; width: 100%; line-height: 22px; border: 2px solid #DDE7F9; }
#buy.variants div { margin-bottom: 1.5em; }
#buy.variants h3 { margin: 0; color: #264D77; font-weight: normal; padding-right: 5px; padding-left: 5px; text-align: left; line-height: 150%; }
#buy.variants .price { float: left; }
#buy.variants .variantBuy { float: left; width: 370px; text-align: right; padding-right: 10px; }
#buy.variants a.button { background-position: -201px -300px; width: 100px; height: 15px; margin-right: -30px; *margin-right: -10px; }
#buy h3 { font-size: 12px; font-family: Arial, Verdana, sans-serif; }
#buy span { font-size: 12px; color: #264D77; font-family: Arial, Verdana, sans-serif; }

#buyVariante { p/adding-top: 90px; font-size: 14px; color: #264D77; font-weight: bold; m/argin-left: 16px; }
#buyVariante p { p/adding-top: 90px; m/argin-bottom: -50px; font-size: 14px; color: #264D77; font-weight: bold; margin-left: 16px; }
#buyVariante .variante { background-color: #EAF0FB; font-size: 14px; width: 140px; height: 38px; padding-left: 10px; }
#buyVariante tr.odd { background-color: #DFE8F9; }

/*
 * Finalizare comanda
 */
#finalizareComanda #inlineCartBar { background-position: 0 -54px; }
#finalizareComanda #inlineCartBar h4,
#finalizareComanda #inlineCartBar .produseInCos,
#finalizareComanda #inlineCartBar #inlineCartWrapper,
#finalizareComanda #inlineCartBar .finalizeOrder { display: none; }
#finalizareComanda #total { font-size: 1.5em; margin: .5em 0; }

#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: #EAF0FB; margin: 2em 0; line-height: 1.4em; } 
.message h3 { margin-top: .5em; }
.error h3 { color: #DF291B; }


/*
 * 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; height: 123px; width: 258px; text-align: left; background-color: #DFE8F9; padding: 12px; border: 9px solid #EAF0FB; float: left; m/argin-top: 15px; margin-bottom: 14px; *margin-bottom: 25px; }
#newsletter label { color: #fff; width: 11em; }
#newsletter .formSubmit { margin: 0; }
#newsletter .formItem input { width: 112px; h/eight: 14px; p/adding: 3px 4px 4px 4px; border-top: 1px solid #7EA8D6; color: #264C77; float: left; }
#newsletter .formSubmit, #newsletter .formItem { float: left; }
#newsletter .formSubmit { float: right; }
#newsletter .formSubmit input { float: left; width: 122px; background: url(/i/bgNewsletter.jpg) no-repeat 0 0; height: 24px; }
#newsletter h2 { color: #274F77; font-size: 18px; *margin-top: 6px; }
#newsletter p { color: #274F77; font-size: 12px; line-height: 150%; }


/*
 * 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: 22px;  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; }

.buttonC { background: url(/i/btnCumpara.jpg) no-repeat 0 0; }

.formSubmit .button { display: block; width: 170px; }
#ctl00_cpBody_dvSubscribe .button,
#contact .button { display: block; background: url(/i/btnTrimite.jpg) no-repeat 0 0; margin-bottom: 30px; }
#contact .button { display: block; background: url(/i/btnTrimite.jpg) no-repeat 0 0; margin-bottom: 30px; margin-left: 11px; }


/* Search button */
#search .button { background-position: 0 -100px; width: 87px; position: relative; top: 1px; *position: static; }

/* Search */
#search { position: absolute; right: 0px; top: 35px; z-index: 2; margin-right: 0px; }
#search label { color: #fff; width: 154px; position: absolute; top: -15px; }
#ctl00_txSearch { width: 238px; p/adding: 3px 4px 4px 4px; height: 14px; margin-right: 3px; border: 1px solid #72A4D0; color: #274F77; background-color: white; padding-top: 4px; height: 13px; }



/*#btnCauta { background-position: 0 -100px;  float: right; }*/
#btnAutentifica { background-position: 0 -200px; margin-bottom: .5em; display: block; width: 145px; margin-left: -3px; }
#ctl00_cpBody_btnContNou { background-position: -200px -200px; display: block; width: 143px;  }
#ctl00_cpBody_btnMaiDeparte { background-position: -600px -300px; display: block; }
#ctl00_cpBody_btnSalvare,
#ctl00_cpBody_btnModificare { background-position: -400px -200px; }
#btnLansareComanda { background-position: -800px -300px; }


/****************************************************************************************
 * Footer
 *
 * Copyright Information, Trafic, Netlogiq link
 ****************************************************************************************/
#footer { background: #12345D; height: 110%; *margin-top: 10px; }
#footer #innerFooter { width: 960px; height: 96px; text-align: right; color: #B8C2CF; padding: 0; clear: both; display: block; padding-top: 7px; margin: 0 auto; }
#footer a { text-decoration: none; color: #B8C2CF; }
#footer a:hover, #footer a:focus { text-decoration: underline; }
#footer span { float: right; clear: right; d/isplay: none; }
#footer label { float: left; font-weight: normal; color: #B8C2CF; margin-bottom: 4px; }

#traffic { float: right; padding-top: 7px; }
#traffic img { margin-bottom: 5px; }

#firma { floAt: right; margin-right: 0px; }

#subCategoryBanner { font-family: Arial, Verdana, sans-serif; font-size: 12px; color: #264E77; margin: -18px 0 11px 0; }

#recuperareParola  label { width: auto; color: #264D77; }
#recuperareParola .formSubmit { float: left; margin-left: 83px; margin-top: 2px; *margin-left: 42px; _margin-left: 29px; }
#recuperareParola .formItem input { width: 155px; }


/* News */

#inNews { border-top: 1px solid #4A627F; float: left; width: 377px; background-color: #12345D; m/argin-left: -10px; padding-left: 15px; padding-right: 5px; _padding-right: 0; _width: 370px; }

#news { width: 387px; background-color: #12345D; padding: 10px; margin-bottom: 20px; margin-top: 29px; *margin-top: 17px; m/in-height: 176px; padding-left: 0; _width: 357px; }
#news p { font-size: 12px; color: #80AED0; margin-top: 4px; float: left; width: 80px; m/argin-left: 10px; }
#news h1 { font-size: 20px; color: #B2CBDE; margin-bottom: 4px; margin-left: 15px; }
#news h2 { color: #B2CEE3; font-size: 12px; font-weight: normal; line-height: 150%; margin-top: -4px; }
#news a { width: 288px; float: right; margin-top: 6px; m/argin-right: 12px; w/idth: 268px; }
#news a:hover, #news a:focus { color: #B2CEE3; text-decoration: underline; background-color: #12345D !important; }:

#innerNews { width: 378px; background-color: #12345D; }


#rightSide { float: right; width: 280px; margin-left: 19px; }

/* Documentatie */

#tdLeftMenu table { margin-bottom: -10px; }
.treeviewNodeStyle { padding-left: 5px; }
#dvFolderBreadcrumbs { margin-top: 10px; m/argin-bottom: -15px; }
table #actualContent { width: 405px; vertical-align: top; padding-top: 5px; background-color: #DFE8F9; }
#dvFullFolder { text-align: left; }
#tdLeftMenu { vertical-align: top; background-color: #EAF0FB; text-align: left; }
#ctl00_cpBody_tvFolders { height: auto !important; padding: 0 0 20px 10px; }
#actualContent { padding: 0 0 20px 10px; }
#actualContent th, #actualContent td { text-align: left; }
.documentData { margin-bottom: 8px; }
.documentData a { font-weight: bold; }
.documentDescription { margin-bottom: 15px; margin-top: -4px; }


#ctl00_cpBody_dvInactive a { text-decoration: underline; }
#ctl00_cpBody_dvInactive a:focus, #ctl00_cpBody_dvInactive a:hover { text-decoration: none; }

#dvFrontPageExplanation a { text-decoration: underline; }
#dvFrontPageExplanation a:focus, #dvFrontPageExplanation a:hover { text-decoration: none; }

#filter select { width: 196px; }


/****************************************************************************************
 * Additional Links
 *
 * Styles for Additional Links related to a Detail page
 *
 * We have:
 * 1. Links
 * 2. Documents (attached)
 *
 ****************************************************************************************/
.additionalLinks { m/argin: 2em 0; p/adding: 1em 0; clear: left; }
.additionalLinks ul { margin: 0; }
.additionalLinks li { background: url(/i/arrowBig.gif) no-repeat 3px 60%; padding: 1px 20px; margin: 5px 0; }
.additionalLinks a { color: #264D77; text-decoration: none; }
.additionalLinks a:hover, .additionalLinks a:focus { text-decoration: underline; }
.additionalLinks h4 { margin-top: 25px; color: #274F77; }

/* Default Document (unknown) */
div.docs li { background: url(/i/docs.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 -100px; }

/* 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 -500px; }
