/* Drupal 7 Framework - Created by André Griffin
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

Font sizes: 16px base font with 24px line-height
------------------------------------------------
       font-size / line-height / margin-top
------------------------------------------------
40px = 2.5em     / 1.2         / 0.6em
32px = 2em       / 1.5         / 0.75em
24px = 1.5em     / 1           / 1em
20px = 1.25em    / 1.2         / 1.2em
16px = 1em       / 1..5        / 1.5em
14px = 0.875em   / 1.7143      / 1.7143em
13px = 0.8125em  / 1.8462      / 1.8462em
12px = 0.75em    / 2           / 2em
10px = 0.625em   / 2.4         / 2.4em

Equation for font sizing: 
  Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/


@font-face {
    font-family: 'Gotham-Black';
    src: url('fonts/gotham-black.eot');
    src: url('fonts/gotham-black.eot?#iefix') format('embedded-opentype'),
         url('fonts/gotham-black.woff') format('woff'),
         url('fonts/gotham-black.ttf') format('truetype'),
         url('fonts/gotham-black.svg#gotham-black') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Gotham-Book';
    src: url('fonts/gotham-book.eot');
    src: url('fonts/gotham-book.eot?#iefix') format('embedded-opentype'),
         url('fonts/gotham-book.woff') format('woff'),
         url('fonts/gotham-book.ttf') format('truetype'),
         url('fonts/gotham-book.svg#gotham-book') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cinnamoncake';
    src: url('fonts/cinnamoncake.eot');
    src: url('fonts/cinnamoncake.eot?#iefix') format('embedded-opentype'),
         url('fonts/cinnamoncake.woff') format('woff'),
         url('fonts/cinnamoncake.ttf') format('truetype'),
         url('fonts/cinnamoncake.svg#cinnamoncake') format('svg');
    font-weight: normal;
    font-style: normal;
}
/**
 * 0.RESET 
 */

@import "reset.css";

/**
 * 1.GLOBAL
 */

body {
  background: #d50a50 url('img/bg.png') top left repeat;
  color: #222;
  font-family: 'Gotham-Book', Geneva, Verdana, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.5;
  margin-top: 0.75em;
}

h2, .h2 {
  font-size: 1.5em;
  line-height: 1;
  margin-top: 1em;
}

h3, .h3 {
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.5em;
}

p {
  font-size: 13px;
  line-height: 17px;
  margin: 0 0 7px 0;
}

a { color: #341f0e; text-decoration: none; }

a:visited { color: #341f0e; }

a:hover, a:active, li a.active  { color: #CB0D4F;  }

a:focus { outline: thin dotted; }

a:hover, a:active { outline: 0; }

/* apply common styling after reset.css */

li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #666;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: middle; }
th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

/**
 * 2.LAYOUT
 */

#container {
  margin: 0 auto;
  padding: 0;
  width: 995px;
  background: url('img/center-bg.png') top center repeat-y; 
  position: relative;
  z-index: 5;
}

/**
 * 3.MAIN
 */
 
 
#paper-bg {
  width: 890px;
  height: 570px;
  margin: -90px 0 0 8px;
  padding: 80px 65px 50px 40px;
  background: url('img/content-bg.png') top left no-repeat;
  position: relative;
  z-index: 10;}

/* 1 column: global values*/

#main {
  display: inline;
  margin: 0;
  position: relative;
  bottom: 40px;
}

/* 3 columns */

body.two-sidebars #main {
  float: left;
  margin: 0 0 0 240px;
  padding: 0;
  width: 460px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #main {
  float: right;
  margin: 0;
  padding: 0;
  width: 695px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #main {
  float: left;
  margin: 0;
  padding: 0;
  width: 695px;
}

/**
 * 4.SIDEBARS
 */

/* 3 columns: sidebar-first */

body.two-sidebars #sidebar-first {
  float: left;
  margin: 0 0 0 -700px;
  padding: 0;
  width: 220px;
}

/* 3 columns: sidebar-second */

body.two-sidebars #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #sidebar-first {
  float: left;
  margin: 0;
  padding: 0;
  width: 195px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 195px;
}

/**
 * 5.HEADER
 */

#header {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 710px;
}

#header #logo {
  float: left;
  margin: 30px 0 0 0;
}

#header #site-name-slogan {
  float: left;
  margin: 0 0 1.5em;
}

#header #site-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

#header #site-name a:hover {
  text-decoration: none;
}

#header #site-slogan {
  margin: 0;
}

/**
 * 6.NAVIGATION
 */

#navigation {
  clear: both;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

#navigation ul#secondary-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

.breadcrumb {
  clear: both;
  padding: 1.5em 0 0;
}

#skip-link {
  position: absolute;
}

/* menus and item lists */

.item-list ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}

.item-list ul li {
  margin: 0;
  padding: 0;
}

ul.menu li {
  margin: 0;
  padding: 0;
}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  padding: 0 1em 0 0;
}

/* admin tabs */

.tabs-wrapper {
  border-bottom: 1px solid #333;
  margin: 0 0 1.4375em;
}

ul.primary {
  border: none;
  margin: 0;
  padding: 0;
}

ul.primary li a {
  background: none;
  border: none;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0 1em;
}

ul.primary li a:hover, ul.primary li a.active {
  background: #666;
  border: none;
  color: #fff;
}

ul.primary li a:hover {
  background: #888;
  text-decoration: none;
}

ul.secondary {
  background: #666;
  border-bottom: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul.secondary li {
  border-right: none;
}

ul.secondary li a, ul.secondary li a:link {
  border: none;
  color: #ccc;
  display: block;
  float: left;
  line-height: 1.5em;
  padding: 0 1em;
}

ul.secondary li a:hover, ul.secondary li a.active {
  background: #888;
  color: #fff;
  text-decoration: none;
}

ul.secondary a.active {
  border-bottom: none;
}

/**
 * 7.NODES
 */

.node {
  margin-bottom: 1.5em;
}

/* tags */

.field-name-field-tags {
  margin: 0 0 1.5em;
}

.field-name-field-tags .field-item {
  margin: 0 1em 0 0;
}

.field-name-field-tags div {
  display: inline;
}

/* profile */

.profile {
  margin: 1.5em 0;
}

.profile h3 {
  border: none;
}

.profile dt {
  margin-bottom: 0;
}

.profile dd {
  margin-bottom: 1.5em;
}

.password-parent {
  width: 36em;
}

/**
 * 8.COMMENTS
 */

#comments {
  clear: both;
  margin-top: 1.5em;
}

.comment {
  margin-bottom: 1.5em;
}

.comment .new {
  color: red;
  text-transform: capitalize;
  margin-left: 1em;
}

/**
 * 9.BLOCKS
 */

.block {
  margin-bottom: 1.5em;
}

/**
 * 10.FOOTER
 */

#footer {
  clear: both;
  padding: 1.5em 0;
  position: relative;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.6667em;
}

/**
 * 11.CSS SUPPORT
 *
 * Built-in classes:
 * .clearfix                            | contain floats
 * .element-invisible                   | hide element visually
 * .element-invisible.element-focusable | allow element to be focusable when navigated to via keyboard
 * .element-hidden                      | hide visually and from screenreaders
 */
 
/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }











/* blok s nastavením jazyků */

#lang-switcher {
  position: relative;
  z-index: 40;
  width: 110px;
  height: 61px;
  background: #FFF;
  left: 884px;
  top: -80px;
  padding: 10px 0 4px 0;}
  
#lang-switcher ul{
  margin: 0;
  padding: 0;}
  
#lang-switcher li,
#lang-switcher li a{
  padding: 3px 10px 3px 15px;
  color:#cb0d4f;
  text-transform: uppercase;
  list-style-image: none;
  list-style-type: none;
  font-size: 16px;
  }
  
#lang-switcher li a{
  padding: 0
  }




/* 'bublinky' */

#bubbles{
  position: absolute;
  width: 1367px;
  height: 741px;
  z-index: 2;
  top: 124px;
  left: -223px;
  background: url('img/bubbles.png') top left no-repeat;}





/* levé menu */

#block-menu-menu-menu-left h2.block-title{
    display: none; }

#block-menu-menu-menu-left .content ul{
    margin: 70px 0 0 0;
    padding: 15px 0;
    background: url('img/menu-bg.png') top left repeat; 
    position: relative;
    z-index: 30;
    width: 170px;}

#block-menu-menu-menu-left .content ul li.leaf {
    list-style-image: none;
    list-style-type: none;  }

#block-menu-menu-menu-left .content li a{
  display: block;
  font-size: 16px;
  font-family: 'Gotham-Book';
  text-decoration: none;
  font-weight: normal;
  color: #341f0e;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-transform: uppercase;}
  
#block-menu-menu-menu-left .content li a:hover,
#block-menu-menu-menu-left .content li a.active{
  font-family: 'Gotham-Black';
  font-size: 20px;}
  
  
body.not-front #block-menu-menu-menu-left .content ul{
    border-right: 1px solid #341f0e;}
  
  
        
  
  
/* obrázek dortíků na hlavní straně */

body.front .front-dorty {
  width: 700px;
  height: 542px;
  display: block;
  background: url('img/front-content.jpg') top left no-repeat;
  margin-left: -15px;
  position: relative;
  z-index: 10;}
  
/* proklik z objednat */

body.front .front-dorty a{
  width: 100px;
  height: 60px;
  display: block;
  position: relative;
  z-index: 50;
  top: 130px;
  left: 319px;}
  
  
  
  
/* spodní část - dva boxíky */

#bottom {
  width: 560px;
  height: 195px;
  position: relative;
  z-index: 15;
  background: url('img/bottom-bg.png') top left no-repeat;
  margin: 0px 0 0 173px;
  padding: 0px 50px 30px 50px}
  
#bottom .block {
  width: 280px;
  float: left;
  height: 215px;
  overflow: hidden;
  margin: -20px 0 0 0;}

#bottom .block h2.block-title{
  font-family: 'cinnamoncake';
  font-weight: normal;
  color: #341f0e; 
  font-size: 50px;
  margin: 0 0 30px 13px;}

#bottom .block .content {
  font-size: 12px;
  line-height: 14px;
  font-family: 'Gotham-Book';
  font-weight: normal;
  color: #341f0e;}
  
  
/* odsazení druhého bloku */

#bottom #block-block-6{
  width: 250px;
  margin: -20px 0 0 30px;}
  
 
 
 
/* text v patičce a FB */
#footer{
  width: 500px;
  margin: 0 auto;
  color:#FFF;
  text-align: center;
  padding: 0 0 15px 0;
  }
  
#footer a{
  color:#FFF;
  text-decoration: none;
  }
  
#footer .fb a{
  display: block;
  width: 80px;
  height: 80px;
  float: right;
  margin: -57px -90px 0 0;
  background: url('img/fb.png') top left no-repeat;
  }

#footer h3{
    margin-top: 0;
}
 
  
  
  
  
/* různé úpravy pro podstránky */


body.not-front h1#page-title,
.big-title,
.podpis {
  margin: 10px 0 20px 0;
  font-family: 'cinnamoncake';
  font-weight: normal;
  color: #341f0e; 
  font-size: 60px;
  text-transform: lowercase;}
  
.podpis {
  text-align: right;
  display: block;}
  
  
  
body.not-front #main #paper-bg .content,
body.not-front #main #paper-bg .tabs-wrapper{
  width: 660px;}
  
  
  








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

--- F O T O G A L E R I E ----

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

body.page-photogallery h1#page-title,
body.page-photogallery .view-nejnov-j-fotogalerie .pager-item,
body.page-photogallery .view-nejnov-j-fotogalerie .pager-current,
body.page-photogallery .view-nejnov-j-fotogalerie .pager-first.first,
body.page-photogallery .view-nejnov-j-fotogalerie .pager-last.last  {
  display: none;}
  
  
body.page-photogallery .view-nejnov-j-fotogalerie .views-row{
  margin: 0 0 0px -0px;
  width: 600px;
  height: 600px;
  overflow: hidden;}
 
  
body.page-photogallery .view-nejnov-j-fotogalerie .view-fotogalerie img   {
  width: 600px;
  height: 600px;
  
  }
 


.photodesc {
    position: relative;
    right: -410px;
    top: -590px;
    width: 170px; /* change to your preferences */
    word-wrap: break-word;
}

.photodesclabel
{
    
    font-weight: bold;
  	width: 50em;
}


 /* pager */
 
body.page-photogallery .view-nejnov-j-fotogalerie li.pager-previous a{
  display: block;
  width: 61px;
  height: 61px;  
  padding: 0;
  background: url(img/gallery-pager.png) top left no-repeat;
  margin: -55px 0px 0px -225px;
  position: relative;
  z-index: 80;}
  
  
body.page-photogallery /*.view-nejnov-j-fotogalerie */ li.pager-next a{
  display: block;
  width: 61px;
  height: 61px;
  padding: 0;
  background: url(img/gallery-pager.png) top right no-repeat;
  margin: 100px 40px 0px 603px;
  position: relative;
  z-index: 80;
}
  
body.page-photogallery /* .paged .view-nejnov-j-fotogalerie */ li.pager-next a{
  margin: -90px 0px 0px 603px;
}
  
  
body.page-photogallery .view-nejnov-j-fotogalerie ul.pager li a {
  text-decoration: none;
  font-size: 1px;
  line-height: 1px;
  color: transparent;}
  
body.page-photogallery .view-nejnov-j-fotogalerie ul.pager li.pager-ellipsis {
  display: none;}



.not-logged-in .comment_forbidden {
  display: none;
}

.messages.error {
    display: none;
}

.view-header {
    font-weight: bold;
}

.form-item-language {
    display: none;
}
