/* $Id: html-reset.css,v 1.6.2.2 2010/06/26 15:36:03 johnalbin Exp $ */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
  font-size: 0.875em; /* 16px x .875 = 14px */
  line-height: 1.286em; /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
}

h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 0;
  /*margin: 1em 0;*/
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
  
}

a:visited {
}

a:hover,
a:focus {
  color:red;
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}



/* $Id: wireframes.css,v 1.10 2009/11/04 21:01:11 johnalbin Exp $ */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}



/* $Id: layout-fixed.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp $ */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
  font-size: 12px;
}

#page-wrapper,
.region-page-closure {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#page {
}

/*
 * Header
 */
#header {
  /*background-image: url('../images/solarne-systemy-bg.png');*/
}

#header .section {
}

#newheader {
  position: relative;
  /*height: 423px;*/
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

#hdrbgbox {
  position: relative;
  background-image: url('../images/bg72x2.png');
  height: 423px;
  width: 2286px;
  left: 50%;
  margin-left: -1143px; /* 2286/2 */
  
}

#search-box {
}

.region-header {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
  margin-top: 10px;
}

#main {
}

/*
 * Content
 */
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 960px;
  margin-left: 0; /* LTR */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.sidebar-first #content {
  width: 760px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.sidebar-second #content {
  width: 760px;
  margin-left: 0; /* LTR */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.two-sidebars #content {
  width: 560px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 42px;
  /*margin-bottom: 10px;*/
  /*height: 2.3em;*/ /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

#navwrapper {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  /*border: 1px solid red;*/
}

#navnew {
  /*width: 100%;*/
  position: relative;
  display: inline-block;
  height: 42px;
  min-width: 840px;
  /*margin: 0 auto;*/
  /*top: 0;*/
  /*border: 1px solid blue;*/
}

#navnew ul {
  height: 42px;
}

#logogwrapper {
  position: relative;
  display: inline-block;
  /*position: absolute;
  top: 0;
  display: inline-block;*/
  width: 1088px;
  height: 130px;
  /*margin: 0 auto;*/
  /*border: 1px solid red;*/
}

.logog {
  position: absolute;
  z-index: 10;
}
#logog1 {
  left:600px;
  top: 103px;
}
#logog2 {
  left: 1066px;
  top: 64px;
}
#logog3 {
  right: 601px;
  top: 120px;
}


.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  /*margin-top: 2.3em;*/ /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul, #navnew ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
  padding: 0 10px 0 0; /* LTR */
}

#navnew li {
  float: left; /* LTR */
  padding: 0 4px 0 0; /* LTR */
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 10px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 200px;
  margin-left: 760px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 10px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

ul#main-menu {

}

div#navigation {
  background: transparent url('../images/menu-bg-left.png') no-repeat left top;
  height: 42px;
  /*padding-left: 6px;*/
}

div#navigation div.section {
  background: transparent url('../images/menu-bg-right.png') no-repeat right top;
}

div#navigation ul {
  background: white url('../images/menu-bg-mid.png') repeat-x 0 0;
  margin: 0 6px;
  height: 42px;
  /*margin-bottom: 20px;*/
  text-align: center;
}

div.clear {
  clear: both;
  /*height: 1px;
  line-height: 1px;
  margin: 0;
  padding: 0;
  font-size: x-small;*/
}

div#navigation ul li {
  float: none;
  display: inline;
  /*height: 42px;*/
  /*border: 1px solid red;*/
  line-height: 42px;
  padding: 20px 50px;
  background: transparent url('../images/menu-sep2.png') no-repeat right center;
}

div#navnew ul li {
  float: none;
  display: inline;
  line-height: 42px;
  /*padding: 20px 50px;*/
  background: transparent url('../images/menu-sep3.png') no-repeat right center;
}

div#navigation ul li.last, div#navnew ul li.last {
  background: none;
}


div#navigation ul li a {
  /*font-family: Serif;
  font-weight: bold;*/
  font-family: Arial;
  font-weight: normal;
  font-size: 14px;
  
  text-transform: uppercase;
  text-decoration: none;
  /*color: #a0a0a0;*/
  color: #000; /*#797c80;*/
}

div#navnew ul li a {
  font-family: Arial;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 22px;
  padding: 20px 50px 0 50px;
  color: #0f72bc;
}

div#navnew ul li a:hover {
  background-color: #f5ed85;
}

div#navigation ul li a:hover {
  /*color: #000;*/
  color: #ff0200;
}

div#header {
  /*padding: 10px 0 0 0;*/
  /*padding: 0;*/
  margin-top: 10px;
  /*margin-bottom: 10px;*/
}

div#divlogo {
  float: left;
  /*border: 1px solid red;*/
  width: 199px;
  height: 95px;
}

div#header a#logo {
  /*margin: 10px 0;*/
  /*border: 1px solid green;*/
}
div#name-and-slogan {
  float: left;
  /*border: 1px solid blue;*/
  width: 737px;
  margin-top: 35px;
  margin-left: 20px;
  height: 31px;
  /*clear: left;*/
}


h1#site-name {
  /*float: left;*/
  /*margin-left: 20px;*/
   /*45px;*/
  margin-bottom: 0;
  /*line-height: 95px;*/
  font-family: Arial;
  font-size: 24px
} 

#logo img {
  display: block;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}


div.breadcrumb {
  float: left;
  /*position: relative;*/
  width: 740px;
  height: 14px;
  line-height: 14px;
  /*top: 97px;*/
  margin-left: 20px; /*21px;*/ /*100px;*/ /*-192px;*/
  margin-top: 15px; /*5px;*/
  /*margin-bottom: 5px;*/
  /*margin-bottom: 6px;*/
  /*margin-left: -200px;*/
  white-space: nowrap;
  /*left: 20px;*/
  text-align: left;
  /*clear: both;*/
  overflow: hidden;
  font-size: 11px;
  z-index: 9;
  /*border: 1px solid red;*/
}

div.breadcrumb a {
  /*display: block;*/
}

div#search-box {
  /*position: relative;
  right: 0;
  top: -40px;*/
  /*float: right;*/
  width: 190px; /*204px;*/
  height: 24px; /*26px;*/
  float: right;
  
  /*margin-top: 71px;*/ /*81px;*/ /*20+95+20-25*/
  background-color: transparent;
  background-image: url(../images/search-box.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 0pt 0pt;
  /*position: absolute;*/
  /*right: 0;*/
  /*margin-top: 10px;*/
  /*bottom: 57px;*/
  z-index: 1;
  margin-top: 5px;
  /*border: 1px solid green;*/
}
div#search-box input.form-text {
  background:transparent none repeat scroll 0 0;
  border: none;
  /*color:#D7C26E;*/
  float:left;
  /*font-family:"Georgia";*/
  font-size:12px;
  margin:4px 0 0 10px;
  padding:1px;
  margin-right: 10px;
  width:155px;  /*165px*/
  overflow: hidden;
}
div#search-box input.form-submit {
  display: none;
}
div#search-box a {
  background: transparent url('../images/lupa-grey.png') no-repeat center center;
  display:block;
  float:right;
  /*height:0;*/
  /*overflow:hidden;*/
  padding: 3px 5px 3px 5px;
  width:15px;
  height:16px;
  /*border: 1px solid red;*/
  margin-top: -20px;
  text-decoration: none;
}
div#search-box a:hover {
  background-image: url('../images/lupa-black.png');
}

div#footer-wrapper {
  background-color: #ffffff;
}

div.category-grid-products {
  font-size: 12px;
}

div.category-grid-products .col33 {
  float: left;
  /*width: 33%;*/
  /*width: 160px;*/
  width: 150px;
  /*border-left: 1px solid #808080;*/
  border-right: 1px solid #e7e7e7;
  /*padding: 20px 10px 20px 10px;*/
  padding: 20px 18px 20px 17px;
}

div.category-grid-products .first {
  padding-left: 18px;
}

div.category-grid-products .last {
  /*padding-right: 20px;*/
  border-right: none;
}

div.category-grid-products .col100 {
  border-bottom: 1px solid #e7e7e7;
  /*padding: 0; 10px;*/
  padding: 0 10px 10px 10px;
}
div.category-grid-products .withtitle {
  border-top: 1px solid #e7e7e7;
  /*clear: both;*/
}

div.category-grid-products .firstrow {

}

div.category-grid-products .lastrow {
  border-bottom: none;
}

div.category-grid-products .titlewrapper {
  /*clear: both;*/
}

div.category-grid-products .catalog-grid-title2 {
  height:19px;
  line-height: 19px;
  width: 425px; /* 435px */
  margin-left: 10px;
  overflow: hidden;
  float: left;
  /*border: 1px solid red;*/
  border-bottom: 1px dashed #e7e7e7;
  font-size: 13px;
  margin-top: 10px;
}
div.category-grid-products .catalog-grid-ref2 {
}
div.category-grid-products .catalog-grid-image2 {
  width: 100px;
  height: 100px;
  float: left;
  margin-top: 10px;
  /*border: 1px solid blue;*/
  #position: relative;
  display: table;
  overflow: hidden;
}

/*.catalog-grid-image2 div {
  #position: relative;
  *//*left: 0;
  top: 0;*//*
  display: table;
  overflow: hidden;
}*/

.catalog-grid-image2 div {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
  #position: absolute;
  #top: 50%;
  #left: 0;
  text-align: center;
}

.catalog-grid-image2 div img {
  #position: relative;
  #top: -50%
}

div.category-grid-products .catalog-grid-old-price-label {
  font-size: 10px;
  font-weight: bold;
}

div.category-grid-products .catalog-grid-old-price {
  font-size: 12px;
  font-weight: bold;
  text-decoration: line-through;
  color: red;
}

.catalog-grid-old-price span {
  color: black;
}


div.category-grid-products .catalog-grid-price-label {
  font-size: 10px;
  font-weight: bold;
}

div.category-grid-products .catalog-grid-sell-price2 {
  /*margin-top: 4px;*/
  /*height: 20px;
  line-height: 20px;*/
  font-size: 14px;
  /*margin-bottom: 4px;*/
  font-weight: bold;
  color: black;
  /*border: 1px solid green;*/
}

div.category-grid-products .catalog-grid-akcia-price2 {
  font-size: 14px;
  font-weight: bold;
  color: red;
}

div.category-grid-products .catalog-grid-remaining {
  font-size: 10px;
}

div.category-grid-products .catalog-grid-customtext {
  font-size: 10px;
}

div.category-grid-products .catalog-grid-space {
  margin-top: 26px;
  height: 20px;
}

div.category-grid-products .catalog-grid-box {
  /*#height: 56px;*/
  min-height: 56px;
  /*border: 1px solid gray;*/
}

div#edit-ukazcusttext-wrapper, div#edit-customtext-wrapper {
  margin-left: 20px;
  float: left;
}

/*div.category-grid-products.produkty-akcie .catalog-grid-space,
div.category-grid-products.produkty-novinky .catalog-grid-space {
  margin-top: 0;
  height: 5px;
}*/

div.category-grid-products .form-item {    /*  */
  margin: 0 0 6px 0;
}

div.category-grid-products .form-item label {
  display: inline;
}

div.category-grid-products .form-item input {
  display: inline;
}

div.category-grid-products .catalog-grid-left {
  margin-top: 2px;
  float: left;
  /*width: 293px; */ /* 303px */
  width: 293px; /*425px;*/ /* left:293 + right:132 = full:425 */
  margin-left: 10px;
  height: 78px;
  /*margin-bottom: 0;*/
  /*white-space: pre-line;
  text-align: justify;
  overflow: hidden;
  line-height: 13px;*/
  /*border: 1px solid green;*/
}

div.catalog-grid-left .preview-text {
  /*position: relative;
  top: 0;*/
  max-height: 66px;
  white-space: pre-line;
  text-align: left; /*justify;*/
  overflow: hidden;
  line-height: 13px;
}

div.category-grid-products .catalog-more-link {
  /*clear: left;*/
  /*float: left;*/
  /*width: 293px;*/
  /*margin-left: 10px;*/
  height: 12px;
  text-align: left;
  line-height: 13px;
  /*padding-top: 66px;*/
  /*margin-top: -66px;*/
  /*border: 1px solid red;*/
}

div.category-grid-products .catalog-grid-right {
  /*clear: left;*/
  float: left;
  width: 122px;
  /*border: 1px solid blue;*/
  /*padding-left: 10px;*/
  margin-left: 10px;
  /*border-left: 1px dashed #e7e7e7;*/
  /*display: none;*/
}

div.category-grid-products .catalog-grid-right span.form-button-wrapper {
  /*margin-top: 10px;*/
  margin-left: 10px;
}

/*div.category-grid-products .catalog-grid-right input.form-submit {
}*/

.add-to-cart {
  /*display: none;*/
}

.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

div.category-grid-products ul {
  margin: 0;
}

div.category-grid-products li {
  margin: 0;
  padding: 0;
}

div.category-grid-products p {
  margin: 0;
  padding: 0;
}

/*
ul.menu li ul.menu li {
  padding-left: 20px;
}

ul.menu li ul.menu li ul.menu li {
  padding-left: 40px;
}
*/

div.node-type-product p {
  margin: 0;
  /*padding: 0;*/  
}

div.product-body {
  padding-top: 10px;
  padding-bottom: 10px;
  /*white-space: pre-line;*/
  white-space: normal;
}

div.node-type-product, div.node-type-product-kit, div.node {
  font-size: 12px;
  line-height: normal;
}

div.node-type-product .form-item label, div.node-type-product-kit .form-item label {
  display: inline;
}

div.node-type-product .form-item input, div.node-type-product-kit .form-item input {
  display: inline;
}
div.node-type-product .form-item {
  /*float: left;*/
}
div.node-type-product .form-actions {
  /*float: left;*/
}

div.solar-form {
  color: #797c80;
}

div.solar-form fieldset {
  border: none;
  border-top: 1px solid #e7e7e7;
  color: #797c80;
}

div.solar-form div.description {
  font-size: 9px;
  /*color: #e7e7e7;*/
  color: #797c80;
}
/*
.node_read_more a{
  display:none;
}*/

div#cart-form-products2 table tr {
  background-color: transparent;
  border-bottom: 1px solid #e7e7e7;
  border: none;
}

div#cart-form-products2 table th {
  text-align: center;
  border-bottom: 1px solid #e7e7e7;
}
div#cart-form-products2 table td.image {
  text-align: center;
}
div#cart-form-products2 table td {
  vertical-align: middle;
}

div#cart-form-products2 table td {
  /*border-right: 1px solid #797c80;*/
}

div#cart-form-products2 td.subtotal span.uc-price {
  display: inline-block;
  width: 60px;
  /*float: left;*/
}
div#cart-form-products2 img {
  float: none;
}


div#cart-form-buttons {
  border: none;
}

dl.search-results {
  margin: 0;
  font-size: 12px;
  line-height: normal;
}



/*
li.expanded {
  font-weight: normal;
}

li.depth0 {
  font-weight: normal;
}

.catalog .trail {
  font-weight: normal;
}
*/

li.depth0 a {
  background-color: #ececec;  /* f7f7f7*/
  padding-left: 14px;
  margin-left: -14px;
  padding-right: 12px;
  margin-right: -12px;
  padding-top: 5px;
  margin-top: -5px;
  padding-bottom: 5px;
  margin-bottom: -5px;
}

li.depth0 ul li a {
  background-color: transparent; /*#ffffff;*/
  /*padding: 0;*/
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

li.depth0 ul li ul li a {
  /*padding-left: 28px;*/
  /*margin-left: -14px;*/
}

ul.pager {
  font-size: 12px;
}

ul.pager li {
  margin: 0;
}

ul.pager li a.active {
  color: #18a7e1;
  padding: 0;
  margin: 0;
}

form#user-login-form div.item-list {
  margin-top: 8px;
}
form#user-login-form div.item-list li {
  margin-top: 3px;
}

div#popups input { /* oprava toho co dosral modul popups v http://www.solare.sk/sites/all/modules/popups/popups-skin.css na riadku 19 */
  margin: 0;
}

div#popups-title div.title {
  margin-left: 5px;
}

div#popups-title div#popups-close {
  margin-right: 5px;
}

div#popups-title a.popups-closelink {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url('../images/close-blk.png');
  background-repeat: no-repeat;
}

div#popups-title a.popups-closelink:hover {
  background-image: url('../images/close-red.png');
}

div.node-type-product div.add-to-cart, div.node-type-product-kit div.add-to-cart {
  width: 100px;
  float: right;
  clear: right;
  text-align: center;
  padding-top: 8px;
  padding-left: 4px;
  margin-left: 4px;
}

div.node-type-product div.model, div.node-type-product-kit div.model {
  width: 100px;
  float: right;
  clear: right;
  text-align: left;
  /*margin-top: -14px;*/
  margin-top: 10px;
  margin-bottom: 6px;
  margin-right: 0;
  /*padding-top: 8px;
  padding-left: 4px;
  margin-left: 4px;*/
  /*border: 1px solid red;*/
}

div.node-type-product div.pocet, div.node-type-product-kit div.pocet {
  width: 82px;
  float: right;
  clear: right;
  text-align: left;
  /*padding-top: 8px;*/
  margin-top: 8px;
  /*margin-right: -4px;*/
  padding-left: 18px;
  /*margin-left: 4px;*/
  background-repeat: no-repeat;

}

div.node-type-product div.ppcena, div.node-type-product-kit div.ppcena {
  width: 102px;
  float: right;
  clear: right;
  text-align: left;
  /*padding-top: 8px;*/
  margin-top: 8px;
  /*margin-right: -4px;*/
  /*padding-left: 18px;*/
  /*margin-left: 4px;*/
  background-repeat: no-repeat;
  font-weight: bold;
  /*border: 1px solid yellow;*/
}


div.node-type-product-kit div.model {
  /*margin-top: -24px;*/
  margin-top: 0;
}

div.node-type-product div.status-on-stock, div.node-type-product-kit div.status-on-stock {
  background-image: url('../images/na-sklade.gif');
}

div.node-type-product div.status-per-order, div.node-type-product-kit div.status-per-order {
  background-image: url('../images/na-objednavku.gif');
}

div.node-type-product .product-accessories, div.node-type-product-kit .product-accessories {
  /*width: 400px;*/
  clear: both;
  margin-top: 30px;
  height: 116px;
  width: 100%;
}

div.product-accessories .accessory {
  float: left;
  width: 100px;
  margin: 0 9px;
  height: 100px;
  /*border: 1px solid red;*/
  text-align: center;
}

div.accimgwrapper {
  width: 100px;
  height: 100px;
  display: table;
  #position: relative;
}

div.accimgwrapper div {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
  #position: absolute;
  #top: 50%;
  #left: 0;
  text-align: center;
}

div.accimgwrapper div div {
  #position: relative;
  #top: -50%;
}

div.accimgwrapper div a {

}

div.accessories-title {
  height: 16px;
  font-weight: bold;
}

div.accarrowlft {
  float: left;
  margin-left: -20px;
  width: 20px;
  height: 100px;
  text-align: center;
  /*line-height: 100px;*/
  /*background-color: green;*/
  /*border: 1px solid green;*/
}

div.accarrowrgt {
  float: left;
  margin-right: -20px;
  width: 20px;
  height: 100px;
  text-align: center;
  /*line-height: 100px;*/
  /*border: 1px solid green;*/
}

div.accarrowlft a, div.accarrowrgt a {
  /*display: block;
  margin-top: 23px;*/
  /*width: 20px;
  height: 54px;*/
  /*border: 1px solid red;*/
}

div.accarrowlft img, div.accarrowrgt img {
  margin-top: 23px;
  /*vertical-align: middle;*/
}

div.acccont {
  float: left;
  width: 478px;
  /*height: 100px;*/
  overflow: hidden;
  /*border: 1px solid blue;*/
}
div.acccontinner {
  position: relative;
  width: 478px;
  height: 100px;
  overflow: hidden;
  /*overflow: hidden;*/
  /*border: 1px solid blue;*/
}

div#accstripe {
  width: 1000px;
  position: absolute;
}

a.arrowdisabled {
  cursor: default;
}

a.arrownormal {
  cursor: pointer;
}


div.productkitbody {
  margin-top: 10px;
  margin-bottom: 10px;
}

div.main-product-image {
  width: 100px;
  /*height: 100px;*/
  text-align: center;
}

div#navigation {
  /*border: 1px solid green;*/
  clear: both;
  float: none;
  margin: 10px 0;
}

dl.services {
  font-size: 14px;
}

dl.services dd ul {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

dl.services dt {
  margin-top: 30px;
}


a.linktypepdf {
  display: block;
  height: 18px;
  line-height: 18px;
  /*padding-left: 20px;*/
  padding: 1px 0 1px 20px;
  background: transparent url('../images/pdf.png') no-repeat left center;
}

a.linkthumbpdf {
  /*border: 1px solid black;
  display: block;
  margin-left: 30px;
  margin-right: 30px;*/
  /*height: 18px;
  line-height: 18px;*/
  /*padding-left: 20px;*/
  /*padding: 1px 0 1px 20px;
  background: transparent url('../images/pdf.png') no-repeat left center;*/
}

a.linkthumbpdf img {
  border: 1px solid black;
  margin-left: 30px;
  margin-right: 30px;
}

div.more-product-images {
  width: 105px;
}

/*div.block-kontakt {
  white-space: pre-line;
}*/

input.form-text[disabled] {
  background-color: #e0e0e0;
  color: #808080;
}

input.form-text[readonly] {
  background-color: #e0e0e0;  /* #ffffcc; */
  color: #808080;
}

input.statcls0[readonly] {    /* akcia zacne */
  background-color: #ffffcc;
}

input.statcls1[readonly] {    /* akcia prebieha */
  background-color: #98fb98;
}

input.statcls2[readonly] {    /* akcia skoncila */
  background-color: #ffa07a;
}

input#edit-ukazcusttext[readonly], input#edit-customtext[readonly] {
  background-color: #ffa07a;
}












/* $Id: tabs.css,v 1.2 2009/08/12 08:03:53 johnalbin Exp $ */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  /*margin: 0 0 5px 0;*/
  margin: 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  /*background: url(../images/tab-bar.png) repeat-x left bottom;*/
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}



/* $Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp $ */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  display: none;
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div#popups-title div.messages,
div#popups-title div.status,
div#popups-title div.warning,
div#popups-title div.error {
  display: inline;
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}





/* $Id: pages.css,v 1.18.2.3 2010/06/26 17:18:58 johnalbin Exp $ */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
  background: none repeat scroll 0 0 #FFFFFF;
  color: #032140;
  font-family: Tahoma,Geneva,sans-serif;
  font-size: 11px;
  line-height: 13px;
  

}

#top-main {
  position: relative;
  z-index: 0; /*-2;*/
  /*background-color: #EFEFEF;*/
  background: url("../images/top-tail.gif") repeat-x scroll center top #EFEFEF;
  
  /*z-index:-2;*/
  /*background-image: url('../images/cell.png');
  background-repeat: repeat;*/  
}

#page-wrapper {
  /*position: relative;
  z-index: 10;*/
}

.shifttop {
  margin-top: -160px;
}

#page {
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
  /*height: 102px;*/
  overflow: hidden;
  width: 100%;
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}
/*
#logo img {
  vertical-align: bottom;
}
*/
#name-and-slogan /* Wrapper for website name and slogan */ {
}

/*h1#site-name,
div#site-name */ /* The name of the website */ /* {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}*/
/*
#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}
*/
#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
  min-height: 700px;
}

/*
 * Content
 */
#content {
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
}

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
  background-color: #FFFFFF;
  height: 100px;
  width: 960px;
  margin: 0 auto;
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

a {
  color: #ff0100;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/*.node-type-product h2.title a {*/
.node h2.title, .category-grid-products h2.title {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #ff0001;
  line-height: 20px;
  text-align: left;
}
.node h2.title a, .category-grid-products h2.title a {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #ff0001;
  line-height: 20px;
}
/*.node-type-product h2.title a:hover {*/
.node h2.title a:hover, .category-grid-products h2.title a:hover {
  color: #000; /*#18a7e1;*/
}
.category-grid-products h2.title {
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.category-grid-products {
  margin-bottom: 20px;
}

.form-button-wrapper, li.button a, a.button {
  background-image: url(../images/bkg_button-right.png);
}
.form-button-wrapper input, li.button a span, a.button span {
  background-image: url(../images/bkg_button.png);
}

.block-kontakt {
  font-size: 12px;
  line-height: 16px;
}

.block-kontakt .lcol {
  clear:left;
  float:left;
  width: 80px;
}

.block-kontakt .rcol {
  float:left;
  width:80px;
  text-align: center;
}

.block-kontakt .redrow {
  color: red;
}


/* $Id: block-editing.css,v 1.3 2009/11/05 14:01:26 johnalbin Exp $ */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}





/* $Id: blocks.css,v 1.4 2009/11/05 11:05:39 johnalbin Exp $ */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  /*margin-bottom: 2em;*/
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}


.block {
  margin-bottom:10px;
}
.block-head {
  background:url("../images/block-head-tail.gif") repeat-x scroll center bottom #FFFFFF;
  color:#333333;
  font-size:12px;
  font-weight:bold;
  width:100%;
}
.block-left-top {
  background:url("../images/block-head-left-top.gif") no-repeat scroll left top transparent;
}
.block-right-top {
  background:url("../images/block-head-right-top.gif") no-repeat scroll right top transparent;
  padding:10px 8px;
}
.block-marker {
  background:url("../images/block-marker.gif") no-repeat scroll 0 1px transparent;
  padding:2px 0 4px 20px;
}
.block-head a {
  color:#333333;
  text-decoration:none;
}
.block-head a:hover {
  color:#ff0100;
}
.block-body {
  /*background:none;*/
  background:none repeat scroll 0 0 #FFFFFF;
  /*background: url("../images/top-tail.gif") repeat-x scroll center top #EFEFEF;*/
  width:100%;
}
.block-left-bot {
  background:url("../images/block-body-left-bot.gif") no-repeat scroll left bottom transparent;
}
.block-right-bot {
  background:url("../images/block-body-right-bot.gif") no-repeat scroll right bottom transparent;
  width:100%;
}
.block .indent {
  padding:20px 12px 21px 13px;
}
.block ul {
  margin:0;
  padding:0;
  
}

.block ul li {
  list-style-type: none;
  list-style-image: none;
  /*line-height:25px;*/
  /*padding: 3px 0;*/
}
.block ul li a {
  color:#797C80;
  text-decoration:none;
}
.block ul li a:hover {
  color:#ff0100;
  /*color:red;*/
}

.block-uc_catalog {
  font-size: 12px;
  line-height: 14px;
}

.block-uc_catalog ul li {
  list-style-type: none;
  list-style-image: none;
  background:url("../images/list-line.gif") repeat-x scroll center top transparent;
  /*line-height:25px;*/
  padding: 4px 0 4px 1px;
}
.block-uc_catalog ul li ul {
  padding-top: 4px;
}
.block-uc_catalog ul li ul li {
  padding-left: 10px;
}

/*.block-uc_catalog ul li ul li ul li {
  padding-left: 30px;
}*/

.block-uc_catalog ul .first {
  background:none repeat scroll 0 0 transparent;
}
.block-uc_catalog ul li a {
  color:#797C80;
  text-decoration:none;
}
.block-uc_catalog ul li a:hover {
  color:#ff0100;
}
.block-uc_catalog .img {
  float:none;
  padding:3px 0 2px;
  text-align:center;
}
.block-uc_catalog .button {
  margin:0;
  padding:8px 0 0;
  text-align:center;
}

.block-uc_catalog a.active {
  color:#ff0100;
}

.block-uc_catalog li.lastcatactive a {
  color: #ff0100;
}

#footer .block-head {
  display: none;
}
#footer .block-body {
  background: none repeat scroll 0 0 transparent;
}



.block-uc_cart .block-marker {
  background: none repeat scroll 0 0 transparent;
  padding-left: 0;
}



.block-uc_catalog li a {
  /*background:url("../images/list-marker.gif") no-repeat scroll right 13px transparent;*/
  display:block;
}

td.cart-block-summary-total {
  /*width: 100%;*/
  text-align: right;
}

td.cart-block-item-title {
  width: 50px;
  overflow: hidden;
}

table.cart-block-items {
  max-width: 100px;
}

.cart-block-item-row {
  padding-bottom: 5px;
}

.cart-block-item-qty2 {
  float: left;
  width: 16px;
  text-align: right;
  overflow: visible;
  white-space: nowrap;
}
.cart-block-item-title2 {
  float: left;
  width: 87px;
  padding-left: 4px;
  padding-right: 2px;
}
.cart-block-item-price2 {
  float: left;
  width: 46px;
  text-align: right;
  overflow: visible;
  white-space: nowrap;
}

.cart-block-summary2 {
  margin-top: 10px;
}
.cart-block-summary-items2 {
  float: left;
  width: 60px;
  font-size: 11px;
  white-space: nowrap;
}
.cart-block-summary-total2 {
  float: left;
  width: 95px;
  font-size: 11px;
  text-align: right;
  white-space: nowrap;
}
.cart-block-summary-total2 label {
  font-weight: bold;
}

.cart-block-summary-links2 {
  margin-top: 5px;
}

.cart-block-summary-links2 ul {
  text-align: center;
}

.cart-block-summary-links2 ul li a {
  font-size: 12px;
}

a {
  color:#797C80;
  text-decoration:none;
}
a:hover {
  color:#ff0100;
}




/* $Id: navigation.css,v 1.5 2009/11/04 19:42:41 johnalbin Exp $ */

/**
 * @file
 * Navigation Styling
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}





/* $Id: nodes.css,v 1.6 2009/11/02 15:37:29 johnalbin Exp $ */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}



.node {
  /*padding-bottom:6px;*/
  margin-bottom:10px;
}
.nt {
  background:url("../images/node-border.gif") repeat-x scroll center top #FFFFFF;
  width:100%;
}
.nr {
  background:url("../images/node-border.gif") repeat-y scroll right center transparent;
}
.nb {
  background:url("../images/node-border.gif") repeat-x scroll center bottom transparent;
}
.nl {
  background:url("../images/node-border.gif") repeat-y scroll left center transparent;
}
.nlt {
  background:url("../images/node-corner-left-top.gif") no-repeat scroll left top transparent;
}
.nrt {
  background:url("../images/node-corner-right-top.gif") no-repeat scroll right top transparent;
}
.nrb {
  background:url("../images/node-corner-right-bot.gif") no-repeat scroll right bottom transparent;
}
.nlb {
  background:url("../images/node-corner-left-bot.gif") no-repeat scroll left bottom transparent;
  width:100%;
}
.ni {
  padding:33px 42px 15px 40px;
}
.nip { /* node-indent-product */
  padding: 1px 0 1px 0;
}
.nif { /* node-indent-form */ /* user-register, user-login */
  padding: 20px;
}

.pseudonode h2 {
  margin-bottom: 20px;
}





/* $Id: comments.css,v 1.5 2009/11/01 20:54:20 johnalbin Exp $ */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}





/* $Id: forms.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp $ */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */
#search-box /* Wrapper for the search form */ {
}

#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}




/* honeywell xc */
table.hotabhor, table.hotabver {
  width: 100%;
  border: 1px solid transparent;
  border-collapse: collapse;
}

table.hotabhor th, table.hotabver th,
table.hotabhor td, table.hotabver td {
    padding: 5px;
    text-align: left;
}
table.hotabhor caption, table.hotabver caption {
  text-align: left;
  font-weight: bold;
  padding: 2px 6px;
  color: #FFFFFF;
  background-color: #0089CF;
}

table.hotabhor th {
  background-color: #D4E4F5;
  border-bottom: 2px solid #FFFFFF;
  width: 200px;
  padding: 5px;
}
table.hotabver td {
  border-bottom-color: #CFD4D8;
}
table.hotabver th {
  background-color: #D4E4F5;
  border-right: 2px solid #FFFFFF;
  padding: 5px;
}
table.hotabver th:nth-child(1),
table.hotabver th:nth-child(2) {
  width: 94px;
}

td.cntr {
  text-align: center;
}

table.hotabhor td {
  border-bottom-color: #CFD4D8;
}

table.hotabhor tr:last-child td {
  border-bottom: none;
}