@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
 * (en) central stylesheet
 * (de) zentrales Stylesheet
 *
 * @creator     YAML Builder V1.0 beta1 (http://builder.yaml.de)
 * @file        my_layout.css
 */

/* import core styles | Basis-Stylesheets einbinden */

@media all
{
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section browser reset
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  */

  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  * { margin:0; padding: 0 }

  /* (en) Correction: margin/padding reset caused too small select boxes. */
  /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  option { padding-left: 0.4em }

 /**
  * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */
  * html body * { overflow:visible; }
  * html iframe, * html frame { overflow:auto; }
  * html frameset { overflow:hidden; }

  /* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
  /* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
  html { height: 100%; margin-bottom: 1px; }
  body {
    /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */
    /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */
    font-size: 100.01%;

    /* (en) Standard values for colors and text alignment */
    /* (de) Vorgabe der Standardfarben und Textausrichtung */
    color: #000;
    background: #fff;
    text-align: left;
  }

  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  fieldset, img { border: 0 solid; }

  /* (en) new standard values for lists, blockquote and cite */
  /* (de) Neue Standardwerte für Listen & Zitate */
  ul, ol, dl { margin: 0 0 1em 1em }
  li { margin-left: 1.5em; line-height: 1.5em; }

  dt { font-weight: bold; }
  dd { margin: 0 0 1em 2em; }

  blockquote { margin: 0 0 1em 1.5em; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section base layout | Basis Layout
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  *
  * |-------------------------------|
  * | #header                       |
  * |-------------------------------|
  * | #col1   | #col3     | #col2   |
  * | 200 px  | flexible  | 200px   |
  * |-------------------------------|
  * | #footer                       |
  * |-------------------------------|
  */

  #header { position:relative }

  #topnav {
    position:absolute;
    top: 10px;
    right: 10px;

    /* (en) essential for correct alignment in Opera 6 ! */
    /* (de) Erforderlich, damit im Opera 6 wirklich rechts plaziert ! */
    text-align: right;
  }

  /* (en) Backup for correct positioning */
  /* (de) Absicherung korrekte Positionierung */
  #header, #nav, #main, #footer { clear:both; }

  /* (en/de) Standard: 200 Pixel */
  #col1 { float: left; width: 200px }
  /* (en/de) Standard: 200 Pixel */
  #col2 { float:right; width: 200px }
  /* (en) Standard: center column with flexible width */
  /* (de) Standard: Flexible mittlere Spalte */
  #col3 { width:auto; margin: 0 200px }

  /* (en) Adjustment: sort #col3 behind float columns using z-index */
  /* (de) Anpassung: #col3 mittels z-index hinter die float-Spalten verschieben */
  #col1 {z-index: 3}
  #col2 {z-index: 5}
  #col3 {z-index: 1}
  #col1_content {z-index: 4}
  #col2_content {z-index: 6}
  #col3_content {z-index: 2}

  #col1_content, #col2_content, #col3_content { position:relative }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section generic classes for layout switching | Generische Klassen zur Layoutumschaltung
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  *
  * .hidecol1 -> 2-column-layout (using #col2 and #col3)
  * .hidecol2 -> 2-column-layout (using #col1 and #col3)
  * .hideboth -> single-column-layout (using #col3)
  */

  .hideboth #col3 {margin-left: 0; margin-right: 0}
  .hidecol1 #col3 {margin-left: 0; margin-right: 200px}
  .hidecol2 #col3 {margin-left: 200px; margin-right: 0}

  .hideboth #col1, .hideboth #col2 {display:none}
  .hidecol1 #col1 {display:none}
  .hidecol2 #col2 {display:none}

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section clearing methods
  * @see     http://yaml.de/en/documentation/basics/general.html
  */

  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
   .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
  }

  /* (en) essential for Safari browser !! */
  /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */
  .clearfix { display: block }

  /* (en) overflow method for clearing floats */
  /* (de) Overflow-Methode zum Clearen der Float-Umgebungen */
  .floatbox { overflow:hidden }

  /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  #ie_clearing { display: none }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section subtemplates
  * @see     http://www.yaml.de/en/documentation/practice/subtemplates.html
  */

  .subcolumns, .subcolumns_oldgecko {
    width: 100%;
    overflow:hidden;
  }

  /* (en) alternative class for optional support of old  Mozilla/Netscape browers */
  /* (de) Alternative Klasse zur optionalen Unterstützung alter Mozilla/Netscape-Brower */
  .subcolumns_oldgecko { float:left }

  .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; }
  .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; margin-left: -5px; }

  .c25l, .c25r { width: 25% }
  .c33l, .c33r { width: 33.333% }
  .c50l, .c50r { width: 50% }
  .c66l, .c66r { width: 66.666% }
  .c75l, .c75r { width: 75% }
  .c38l, .c38r { width: 38.2% }
  .c62l, .c62r { width: 61.8% }

  .subc  { padding: 0 0.5em }
  .subcl { padding: 0 1em 0 0 }
  .subcr { padding: 0 0 0 1em }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section hidden elements | Versteckte Elemente
  * @see     http://www.yaml.de/en/documentation/basics/skip-links.html
  *
  * (en) skip links and hidden content
  * (de) Skip-Links und versteckte Inhalte
  */

  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .skip, .hideme, .print {
    position: absolute;
    top: -1000em;
    left: -1000em;
    height: 1px;
    width: 1px;
  }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .skip:focus, .skip:active {
    position: static;
    top: 0;
    left: 0;
    height: auto;
    width: auto;
  }
}
/* import screen layout | Screen-Layout einbinden */

 @media all  
 {  
   /*-------------------------------------------------------------------------*/  
   
   /* (en) Marginal areas & page background */  
   /* (de) Randbereiche & Seitenhintergrund */  
   body { background: #4d87c7 url("/images/bg_blue.gif") repeat-x top left fixed; padding: 10px 0; }  
   
   /* Layout Alignment | Layout-Ausrichtung */  
   #page_margins { margin: 0 auto; }  
   
   /* Layout Properties | Layout-Eigenschaften */  
   #page_margins { width: auto;  min-width: 740px; max-width: 740px; background: #fff; }  
   #page { padding: 0; border-left: 10px solid #516D9E; border-right: 10px solid #516D9E; }  
   #header { 
      color: #000;
      padding: 0;
      background-image: url(/images/header.gif);
      background-repeat: repeat-x;
      height: 100px;
      border-left: 1px solid black;
      border-right: 1px solid black;
      border-top: 5px solid black;
      border-bottom:1px solid #DDDDDD;
   } 

   #header a.logo {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border: 0;
    margin: 10px;
    padding: 0;
    padding-top: 60px;
    height: 0px !important;
    width: 203px;
    cursor: pointer;
    background: url(/images/abiekt-logo.jpg) no-repeat;

   }

   #header a.logo:active, #header a.logo:hover, #header a.logo:focus {
     background-color: transparent;
   }  
   
   #topnav { color: #aaa; background: transparent; }  
   #main { margin: 0; background: #fff; 
           border-left: 1px solid black;
           border-right: 1px solid black;
           padding: 0;
   }  
   #footer { padding: 10px 20px; color:#666; background: #f9f9f9;
           border-left: 1px solid black;
           border-right: 1px solid black;text-align: center;
                 
   }  
   
   #notice {
       background-color:#FFCE7B;
       border:1px solid #FFA500;
       color: Black;
       font-size: 85%;
       font-weight: bold;
       margin: 1em 0em 0em 0em;
       padding: 0.5em 1em 0.5em 3em;
       vertical-align: middle;
       background-image: url(/images/icons/information.png);
       background-repeat: no-repeat;
       background-position: 5px 50%;
   }
   /*-------------------------------------------------------------------------*/  
  
   /** 
    * (en) Formatting content container 
    * (de) Formatierung der Inhalts-Container 
    * 
    */  
   
   #col1 { float: left; width: 25%; background: #F6F6F6; }  
   #col2 { display:none}  
   #col3 { width: auto; margin: 0 0 0 25%}  
   #col1_content { padding: 0 10px 0 20px;  }  
   #col3_content { padding: 20px 20px 0 10px }  
  
   #col1_content a {
     border-bottom:1px solid #E6E6E6;
     border-left:12px solid #E6E6E6;
     display:block;
     font-family:verdana,arial,helvetica,sans-serif;
     font-size:12px;
     font-weight:bold;
     text-indent:8px;
     color: #8E8FCF;
   }

   ul#menu { 
     list-style: none;
     margin: 0;
     padding: 0;
   }
   
   ul.submenu {
     list-style: none;
     margin: 0;
     margin-top: 3px;
     padding: 0;
   }

   ul#menu li {
     margin-left: 0px;
     margin-right: 0px;
     margin-bottom:10px;
     margin-top:25px;
     padding: 0 0 0 0 ;
   }

   ul#menu li ul.submenu li {
     margin: 0;
     margin-left: 8px;
     padding: 3px 0 0 0;
     
   }

   ul#menu li ul.submenu li a {
     font-size: 80%;
     border-left: 8px;
     border-bottom: 0;
   }

   ul#menu li ul.submenu li a:hover, ul#menu li ul.submenu li a:focus, ul#menu li ul.submenu li a:active, ul#menu li ul.submenu li a.active {
     color: #CF2428;
   }

   #col1_content a:hover, #col1_content a:focus, #col1_content a:active, #col1_content a.active {
     color: #8E8FCF;
     border-bottom:1px solid  #CF2428;
     border-left:12px solid  #CF2428;
     background: transparent;
     text-decoration: none;
   }

   #submenu {
     margin-left: 15px;

   }

   .main-article-image {
      float:right;
      margin-left: 5px;
      margin-bottom: 5px;
   }
   
   div.CDgallery p { margin: 0; }
   div.CDgallery { text-align: center; width: 460px; margin: 0px 0; padding: 10px; }
   div.CDimage3 { width: 150px; float: left; margin: 0; padding: 0; border: 0; text-align: center; }
   div.CDimage3_lewy { width: 155px; float: left; margin: 0; padding: 0; border: 0; text-align: right; }
   div.CDimage3_prawy { width: 155px; float: left; margin: 0; padding: 0; border: 0; text-align: left; }
   div.CDimage2 { width: 300px; float: left; margin: 0; padding: 0; border: 0; text-align: center; }
   div.CDimage2_lewy { width: 220px; float: left; margin: 0; padding: 0 10px 0 0; border: 0; text-align: right; }
   div.CDimage2_prawy { width: 220px; float: left; margin: 0; padding: 0 0 0 10px; border: 0; text-align: left; }
   div.CDimage { margin: 0; padding: 0; border: 0; text-align: center; }
  
   img.list_image {
     border:1px solid #AAAAAA;
   }

   hr {
      background-color:#CCCCCC;
      border:medium none;
      color:#CCCCCC;
      height:1px;
      width:100%;
      margin-top: 10px;
   }

   h2 {
     color:#666666;
   }

   h1 {
     display: inline;
   }

   #news h2 {
       border-bottom:2px solid #DDDDDD;
       color:#888888;
       font-family:verdana,arial,helvetica,sans-serif;
       font-size:12px;
       font-weight:normal;
       line-height:20px;
       margin-top:0px;
       text-align:right;
       margin-bottom: 10px;
   }

   #news h2 em {
     color:#CF2428;
     float:left;
     font-family:verdana,arial,helvetica,sans-serif;
     font-size:16px;
     font-style:normal;
     font-weight:bold;
     text-align:left;
   }



  /*-------------------------------------------------------------------------*/  
}  

/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @copyright       Copyright 2005-2007, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.0.4
 * @revision        $Revision: 138 $
 * @lastmodified    $Date: 2007-11-19 21:05:33 +0100 (Mo, 19 Nov 2007) $
 * @appdef yaml
 */

@media all
{
  /**
   * Fonts
   * (en) font-family and font-size selection for headings and standard text elements
   * (de) Zeichensatz und Schriftgrößen für Überschriften und übliche Text-Elemente
   *
   * @section content-fonts
   */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01% }

  /* (en) reset monospaced elements to font size 16px in Gecko browsers */
  /* (de) Schriftgröße von monospaced Elemente auf 16 Pixel setzen */
  textarea, pre, tt, code {
	font-family:"Courier New", Courier, monospace;  	
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
    font-size: 75.00%; 
  }

  h1,h2,h3,h4,h5,h6 { font-weight:bold; margin: 0 0 0.25em 0; }
  h1 { font-size: 150% }                
  h2 { font-size: 120% }   
  h3 { font-size: 110% }       
  h4 { font-size: 105.33% }        
  h5 { font-size: 116.67% }                     
  h6 { font-size: 116.67%; font-style:italic }

  p { line-height: 1.5em; margin: 0 0 1em 0; }

  /* ### Lists | Listen  #### */

  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em }
  li { margin-left: 1.5em; line-height: 1.5em }

  dt { font-weight: bold }
  dd { margin: 0 0 1em 2em }

  /* ### text formatting | Textauszeichnung ### */

  cite, blockquote { font-style:italic }
  blockquote { margin: 0 0 1em 1.5em }

  strong,b { font-weight: bold }
  em,i { font-style:italic }

  pre, code { font-family: monospace; font-size: 1.1em; }

  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #c00;
    cursor: help;
  }

  /**
   * Generic Content Classes
   * (en) standard classes for positioning and highlighting
   * (de) Standardklassen zur Positionierung und Hervorhebung
   *
   * @section content-generic-classes
   */

  .note {background: #dfd; padding: 1em; border-top: 1px #bdb dotted; border-bottom: 1px #bdb dotted;}
  .important {background: #ffd; padding: 1em; border-top: 1px #ddb dotted; border-bottom: 1px #ddb dotted;}
  .warning {background: #fdd; padding: 1em; border-top: 1px #dbb dotted; border-bottom: 1px #dbb dotted;}

  .float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em;  }
  .float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em;  }
  .center { text-align:center; margin: 0.5em auto }

  /**
   * External Links
   *
   * (en) Formatting of hyperlinks
   * (de) Gestaltung von Hyperlinks
   *
   */

  a {color: #900; text-decoration:none;}
  a:focus,
  a:hover,
  a:active {background-color: #fee; text-decoration:underline;}
  
  #topnav a { color: #aac; font-weight: bold; background:transparent; text-decoration:none; }
  #topnav a:focus,
  #topnav a:hover,
  #topnav a:active{ text-decoration:underline; background-color: transparent;}
  
  #footer a { color: #aac; background:transparent; font-weight: bold;}
  #footer a:focus,
  #footer a:hover,
  #footer a:active {color: #fff; background-color: transparent; text-decoration:underline;}

  /**
   * (en) Emphasizing external Hyperlinks via CSS
   * (de) Hervorhebung externer Hyperlinks mit CSS
   *
   * @section             content-external-links
   * @app-yaml-default    disabled
   */

  /*
  #main a[href^="http://www.my-domain.com"],
  #main a[href^="https://www.my-domain.com"]
  {
    padding-left: 12px;
    background-image: url('your_image.gif');
    background-repeat: no-repeat;
    background-position: 0 0.45em;
  }
  */

  /**
   * Tables | Tabellen
   * (en) Generic classes for table-width and design definition
   * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
   *
   * @section content-tables
   */

  table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; }
  table.full { width: 100%; }
  table.fixed { table-layout:fixed }

  th,td { padding: 0.5em; }
  thead th { background: #444; color: #fff }
  tbody th { background: #ccc; color: #333 }
  tbody th.sub { background: #ddd; color: #333 }

  /**
   * Miscellaneous | Sonstiges
   *
   * @section content-misc
   */

}



/* import print layout | Druck-Layout einbinden */
/* @import url(../yaml/print/print_003_draft.css); */

.required-field {
    background: url(/images/bullet_red.png) center left no-repeat;
    padding: 0 0 0 10px;
    color: white;
}

.error {
    /* Class for error indication in forms */
    background-color: #ffce7b;
    border: 1px solid #ffa500;
    padding: 1em;
    margin: 0 0 1em 0;
}

.error .required-field {
   color: #ffce7b;
}

.field {
    top: 0;
    left: 0;
    margin: 0 1em 1em 0;
}

.field .field {
    margin: 1em 0 0 0;
}

.field label, .label {
    font-size: 100%;
    font-weight: bold;
}

#cartd {
   width: 430px;
   float:left;
}

#cartt { width:426px; border: 0; margin: 0; padding: 0; }
#cartt th { background-color: #ccc; padding-top: 5px; padding-bottom: 5px; font-weight: bold;}
#cartt tr.even { background-color: #eee; }
#cart_select { font-size: 11px; }
.cartt_il { border: 1px solid gray; width: 24px; }
.cartt_tytul { width: 81px; text-align: left; font-weight: normal; }
.cartt_m { width: 7px; text-align: center; font-weight: normal; font-size: 80%; }
.cartt_ilosc { width: 36px; text-align: center; font-weight: normal;}
.cartt_cena { width: 56px; text-align: right; font-weight: normal; padding-right: 5px; white-space: nowrap;}
.cartt_dost { width: 50px; text-align: center; font-weight: normal;}
.cartt_preorder_dost { width: 106px; text-align: center; font-weight: normal;}
.cartt_x { width: 40px; text-align: center; font-weight: normal;}
.cartt_td { padding: 5px 0 5px 5px; }
.cartt_uw {  width: 100px; text-align: center; font-weight: normal; }
.cartt_sum_p { background-color: #ddd; }
.cartt_sum_a { background-color: #ddd; }
.cartt_buttons { padding-top: 5px; text-align: right; }



