/* CSS Document

--------------------------------
Animal Music
Webdesign (c) Adam Kudrna 2010
Last edited: 2010-06-09 4:04
--------------------------------

Structure:
	width
	height
	display
	position
	z-index
	float
	clear
	overflow
	margin
	padding
	border
	background
	color
	font
	text
	align
	cursor

Colors Used:
	- Ocre: #ea7125

	- Grey 1: #666
	- Grey 2: #999
	- Grey 3: #ccc
	- Grey 4: #d6d6d6
	- Grey 5: #f7f7f7

*/



/*---------------------------------------------------------------
FONTS DEFINITION
---------------------------------------------------------------*/

/*@import url("fonts.css");*/



/*---------------------------------------------------------------
GENERAL ELEMENTS
---------------------------------------------------------------*/

html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	color: #000;
	font: normal .9em/140% "Fedra Sans Book", "Trebuchet MS", "DejaVu Sans Condensed", arial, sans-serif;
	text-align: center;
}

/* Headings */
h1 {
	font-size: 250%;
}
h2 {
	margin: 1.55em 0 .65em;
	font: normal 140% "Fedra Sans Book", "Trebuchet MS", "DejaVu Sans Condensed", arial, sans-serif;
	text-transform: uppercase;
}
h3 {
	margin: 1.5em 0 .5em;
	font-size: 115%;
}
h4 {
	margin: 1.75em 0 0;
	font-size: 110%;
}

/* Text */
p {
	margin: 0 0 1em;
}
strong {
	font-family: "Fedra Sans Display 2 Heavy", "Trebuchet MS", "DejaVu Sans Condensed", arial, sans-serif;
}
abbr, acronym {
	border-bottom: 1px dotted #ccc;
	cursor: help;
}
abbr.geo {
	border-bottom: 0;
	cursor: default;
}
.geo a abbr {
	border-bottom-style: none;
	cursor: pointer;
}
blockquote, q {
	font-style: italic;
}
blockquote {
	margin: 1em 0 1em 2em;
	padding: 1em 1em 1px;
	background-color: #eee;
}
code {
	background-color: #eee;
}
pre {
	width: 96%;
	overflow: scroll;
	padding: 1em;
	background-color: #eee;
	text-align: left;
}

/* Lists */
ul, ol {
	margin: 1em 0;
	padding: 0 0 0 3em;
}
ul {
	list-style-type: square;
}
li ul, li ol {
	margin: .25em 0;
}
dl {
	margin: 1em 0;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 0 .5em 2em;
}

img.icon {
	margin-right: .75ex;
	border-style: none;
	vertical-align: middle;
}

/* Tables */
table {
	margin: 2em -2px;
	border-collapse: collapse;
	font-size: 100%; /* IE6 */
}
caption {
	margin-top: 1em;
	padding-bottom: .5em;
	font-weight: bold;
	text-align: left;
}
td, th {
	padding: .25em 1.5ex;
	border: 2px solid #fff;
}
th {
	background-color: #888;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
td {
	background-color: #f3f3f3;
}
tr.even td {
	background-color: #fcfcfc;
}
tr:hover td {
	background-color: #ddd;
}

/* Forms */
form {
	margin: 1.5em 0;
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}
input {
	font-size: .85em;
}
input.text {
	height: 22px;
	padding: 0 1ex;
	border: 1px solid #000;
	background-color: #fff;
	font: 1em "Trebuchet MS", "DejaVu Sans Condensed", arial, sans-serif;
	line-height: 22px;
}
input.text:focus {
	border-color: #ccc;
}
input.button {
	height: 24px;
	padding: 0 1.5ex;
	border-style: none;
	background-color: #000;
	color: #fff;
	line-height: 24px;
	text-transform: uppercase;
	cursor: pointer;
}
input.button.submit {
	font-weight: bold;
}
input.button:hover {
	color: #ccc;
}

/* Flash Messages */
div.flash {
	margin: 0 0 2em;
	padding: .5em 1em;
	border: 1px solid #ccc;
	background-color: #eee;
	font-weight: bold;
	text-align: center;
}
div.flash.info {
	border-color: #e8e700;
	background-color: #fffcb8;
	color: #c79316;
}
div.flash.success {
	border-color: #79dea8;
	background-color: #bff2c5;
	color: #407d5d;
}
div.flash.warning {
	border-color: #e4678a;
	background-color: #f2d5db;
	color: #c90044;
}

/* Links */
a:link, a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	color: #666;
}

:focus {
	outline: none;
}

a.email {
	padding-right: 1.35em;
	background: transparent url("../images/email.png") no-repeat right 66%;
}
a.external {
	padding-right: .9em;
	background: transparent url("../images/external.png") no-repeat right 25%;
}

/* Links: Images */
a img {
	display: block;
	border-style: none;
}

a.image {
	display: inline-block;
	padding-bottom: 1px;
	border-bottom: 5px solid transparent;
}
a.image.left {
	float: left;
	margin: .25em 1.25em .5em 0;
}
a.image.right {
	float: right;
	margin: .25em 0 .5em 1.25em;
}
a.image:hover {
	border-color: #aaa;
	background-color: transparent !important;
}

/* Links In Contents */
#contents a:link, #contents a:visited {
	text-decoration: underline;
}
#contents a:hover {
	background-color: #e8e8e8;
}
#contents a:active {
	text-decoration: none;
}



/*---------------------------------------------------------------
GENERIC CLASSES
---------------------------------------------------------------*/

.right {
	text-align: right;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}

.float-left {
	float: left;
}
.float-right {
	float: right;
}

.col-left {
	width: 48%;
	float: left;
}
.col-right {
	width: 50%;
	float: right;
}
div.clearer {
	line-height: 0;
	clear: both;
}

img.right {
	float: right;
	margin: .25em 0 1em 1em;
}
img.left {
	float: left;
	margin: .25em 1em 1em 0;
}

.hidden {
	display: none;
}



/*---------------------------------------------------------------
LAYOUT
---------------------------------------------------------------*/

/* Document Wrap */
#document-wrap {
	height: 100%;
}
body > #document-wrap {
	height: auto;
	min-height: 100%;
}



/* TOP BAR */

#top-bar {
	height: 2.75em;
	border-top: 22px solid #000;
	/*background-color: #ea7125;*/
	text-align: center;
}
#top-bar div.inner {
	width: 960px;
	position: relative;
	margin: 0 auto;
	padding: .85em 0;
	color: #fff;
	text-transform: uppercase;
	text-align: left;
}
#top-bar a:link, #top-bar a:visited {
	padding: .85em 0;
	color: #fff;
	font-size: 85%;
}
#top-bar a:hover {
	color: #000;
	text-decoration: none;
}

/* Language Selection */
#lang-selection {
	position: absolute;
	left: 0;
	top: .75em;
}
#lang-selection a {
	margin-right: 1ex;
}
#lang-selection a.active {
	font-weight: bold;
}

/* E-shop: Cart */
#shopping-cart {
	position: absolute;
	/*left: 320px;*/
	right: 0; /* TEMP */
	top: .75em;
	/*padding-left: 1em;*/
}

/* Search */
#search-box {
		display: none;
	width: 320px;
	position: absolute;
	right: 0;
	top: .55em;
}
#search-box form, #search-box fieldset {
	margin: 0;
}
#search-box input.text {
	width: 46%;
	float: left;
}
#search-box input.button {
	width: 46%;
	float: right;
	padding: 0;
}



/* DOCUMENT */

#document {
	width: 960px;
	margin: 0 auto;
	text-align: left;
}



/* HEADER */

#header {
	position: relative;
	margin-top: 4.5em; /*4.5em;*/
	padding-bottom: 11px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	/*border-bottom: 3px solid #ea7125;*/
}

/* Logo */
#logo h1 {
	width: 200px;
	height: 28px;
	position: relative;
	overflow: hidden;
	margin: 0;
	font-size: 180%;
	line-height: 25px;
	text-transform: uppercase;
}
#logo h1 a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
#logo h1 a:hover {
	color: #999;
}
#logo h1 img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* Menu - Main Navigation */
#menu ul {
	position: absolute;
	right: 0;
	top: 3px;
	margin: 0;
	padding: 0;
	text-align: right;
}
#menu ul li {
	display: inline;
	padding: 0;
	list-style-type: none;
}
#menu ul li a, #menu ul li a:link, #menu ul li a:visited {
	display: inline-block;
	position: relative;
	overflow: hidden;
	margin-left: .75em;
	padding-bottom: 11px;
	border-bottom: 3px solid transparent;
	color: #000;
	font-family: "Fedra Sans Display 1 Thin Condensed", "Trebuchet MS", "DejaVu Sans Condensed", arial, sans-serif;
	font-size: 110%;
	line-height: 25px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
}
#menu ul li a span {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-color: transparent;
	background-image: url("../images/menu.png");
	background-repeat: no-repeat;
}
#menu ul li a.active {
	/*border-bottom: 3px solid #000;*/
	border-bottom-color: #000;
	font-weight: bold;
}
#menu ul li a:hover {
	/*border-bottom: 3px solid #000;*/
	border-bottom-color: #000;
	color: #999;
}

/* Menu: Items */
#menu-novinky {
	width: 76px;
}
#menu-novinky span {
	background-position: -30px -32px;
}
#menu-novinky:hover span {
	background-position: -30px -83px;
}
#menu-novinky.active {
	width: 96px;
}
#menu-novinky.active span {
	background-position: -30px -134px !important;
}

#menu-katalog {
	width: 155px;
}
#menu-katalog span {
	background-position: -165px -32px;
}
#menu-katalog:hover span {
	background-position: -165px -83px;
}
#menu-katalog.active {
	width: 192px;
}
#menu-katalog.active span {
	background-position: -165px -134px !important;
}

#menu-umelci {
	width: 62px;
}
#menu-umelci span {
	background-position: -403px -32px;
}
#menu-umelci:hover span {
	background-position: -403px -83px;
}
#menu-umelci.active {
	width: 76px;
}
#menu-umelci.active span {
	background-position: -403px -134px !important;
}

#menu-fotogalerie {
	width: 114px;
}
#menu-fotogalerie span {
	background-position: -518px -32px;
}
#menu-fotogalerie:hover span {
	background-position: -518px -83px;
}
#menu-fotogalerie.active {
	width: 138px;
}
#menu-fotogalerie.active span {
	background-position: -518px -134px !important;
}

#menu-partneri {
	width: 82px;
}
#menu-partneri span {
	background-position: -700px -32px;
}
#menu-partneri:hover span {
	background-position: -700px -83px;
}
#menu-partneri.active {
	width: 103px;
}
#menu-partneri.active span {
	background-position: -700px -134px !important;
}

#menu-tiskovy-servis {
	width: 128px;
}
#menu-tiskovy-servis span {
	background-position: -845px -32px;
}
#menu-tiskovy-servis:hover span {
	background-position: -845px -83px;
}
#menu-tiskovy-servis.active {
	width: 175px;
}
#menu-tiskovy-servis.active span {
	background-position: -845px -134px !important;
}



/*** Menu: English ***/

div.en#menu ul li a span {
	background-image: url("../images/menu_en.png") !important;
}

#menu-news {
	width: 52px;
}
#menu-news span {
	background-position: -30px -32px;
}
#menu-news:hover span {
	background-position: -30px -83px;
}
#menu-news.active {
	width: 61px;
}
#menu-news.active span {
	background-position: -30px -134px !important;
}

#menu-catalogue {
	width: 183px;
}
#menu-catalogue span {
	background-position: -165px -32px;
}
#menu-catalogue:hover span {
	background-position: -165px -83px;
}
#menu-catalogue.active {
	width: 219px;
}
#menu-catalogue.active span {
	background-position: -165px -134px !important;
}

#menu-artists {
	width: 68px;
}
#menu-artists span {
	background-position: -403px -32px;
}
#menu-artists:hover span {
	background-position: -403px -83px;
}
#menu-artists.active {
	width: 88px;
}
#menu-artists.active span {
	background-position: -403px -134px !important;
}

#menu-photo {
	width: 62px;
}
#menu-photo span {
	background-position: -518px -32px;
}
#menu-photo:hover span {
	background-position: -518px -83px;
}
#menu-photo.active {
	width: 80px;
}
#menu-photo.active span {
	background-position: -518px -134px !important;
}

#menu-partners {
	width: 88px;
}
#menu-partners span {
	background-position: -700px -32px;
}
#menu-partners:hover span {
	background-position: -700px -83px;
}
#menu-partners.active {
	width: 110px;
}
#menu-partners.active span {
	background-position: -700px -134px !important;
}

#menu-press {
	width: 50px;
}
#menu-press span {
	background-position: -845px -32px;
}
#menu-press:hover span {
	background-position: -845px -83px;
}
#menu-press.active {
	width: 68px;
}
#menu-press.active span {
	background-position: -845px -134px !important;
}



/* BODY */

#body {
	position: relative;
	/*padding-top: .75em;*/
	padding-bottom: 190px;
}



/* CONTENTS */

#contents {
	width: 100%;
	float: left;
	position: relative;
}
#contents div.inner {
	padding: 2.75em 0;
	line-height: 150%;
}

/* With Sidebar */
body.sidebar #contents {
	width: 640px;
}
body.sidebar #contents div.inner {
	padding-right: 3em;
}

/* Three-Column Layout */
div.col-3 {
	width: 320px;
	float: left;
	position: relative;
	left: 100%;
}
div.col-3.left {
	margin-left: -100%;
}
div.col-3.center {
	margin-left: -640px;
}
div.col-3.right {
	margin-left: -320px;
}
div.col-3 div.inner {
	text-align: left;
}



/* SIDEBAR */

#sidebar {
	width: 320px;
	float: right;
}
#sidebar div.inner {
	padding: 2.75em 0 0;
}

/* Box: Type 1 */
div.box-1 {
	margin: 2em 0;
	border-top-width: 3px;
	border-top-style: solid;
}
div.box-1 div.inner {
	padding: 20px !important;
}

/* Box: Type 2 */
div.box-2 {
	margin: 1em 0 1.5em;
	padding: 1em;
	padding-bottom: .1em;
	background-color: #f5f5f5;
}



/* FOOTER SECTION */

#footer-section {
	height: 180px;
	clear: both;
	margin-top: -180px;
	text-transform: uppercase;
	text-align: center;
}
#footer-section div.inner {
	width: 960px;
	position: relative;
	margin: 0 auto;
	text-align: left;
}
#footer-section a.email, #footer-section a.external {
	padding-right: 0;
	background-image: none;
}

/* Footer 1 */
#footer-1 {
	height: 80px;
}
#footer-1 div.inner {
	padding-top: .5em;
	border-top-width: 3px;
	border-top-style: solid;
}

/* Footer 1: Footer Navigation */
#footer-navigation {
	float: left;
}
#footer-navigation a:link, #footer-navigation a:visited {
	color: #000;
}
#footer-navigation a:hover {
	border-bottom: 2px solid #000;
	text-decoration: none;
}
#footer-navigation span {
	padding: 0 .5ex;
	color: #999;
}

/* Footer 1: Copyright */
#copyright {
	float: right;
	font-size: 85%;
	line-height: 190%;
}

/* Footer 2 */
#footer-2 {
	height: 100px;
	background-color: #000;
}
#footer-2 div.inner {
	padding-top: 1.25em;
	color: #aaa;
	font-size: 85%;
}
#footer-2 a:link, #footer-2 a:visited {
	color: #777;
}
#footer-2 a:hover {
	color: #fff;
	text-decoration: none;
}

/* Footer 2: Footer Contact */
#footer-contact {
	float: left;
}

/* Footer 2: Webdesign */
#webdesign {
	width: 15em;
	float: right;
	clear: right;
	text-align: right;
}



/* TOP LINK */

#top-link {
	position: fixed;
	right: 0;
	bottom: 100px;
	z-index: 10;
}
#top-link a:link, #top-link a:visited {
	width: 3em;
	height: 1.8em;
	display: block;
	margin-right: -0.75em;
    background-color: #d6d6d6;
	color: #fff;
	text-align: left;
}
#top-link a img {
	position: fixed;
	margin: 1ex 0 0 1ex;
	border-style: none;
}




/* CLEAR FIX */

.clearfix:after {
	height: 0;
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}



/*---------------------------------------------------------------
CONTENT-SPECIFIC
---------------------------------------------------------------*/

/* Button-like Links - Type 1 */
a.button:link, a.button:visited {
	display: inline-block;
	margin: 1em 1em 1em 0;
	padding: 0 2ex;
	background-color: #000;
	color: #fff;
	font-size: 85%;
	line-height: 220%;
	text-transform: uppercase;
	text-decoration: none !important;
}
a.button:hover {
	background-color: #000 !important;
	color: #ccc;
	text-decoration: none;
}
a.button:active, a.button.selected:active {
	background-color: #888 !important;
	color: #fff;
}
a.button.selected {
	background-color: #000 !important;
	color: #ccc;
}

/* Popups (Alternative Title) */
.popup, .popup:link, .popup:visited {
	display: inline-block;
	position: relative;
	overflow: visible;
	text-decoration: none;
}
.popup span.title {
	width: 10em;
	display: block;
	position: absolute;
	left: 1.5ex;
	z-index: 333;
}
.popup span.title span {
	padding: 1.25ex 1.5ex;
	display: block;
	background-color: #000;
	color: #fff;
	font-size: .85em;
	line-height: 140%;
	text-transform: none;
	text-align: left;
}
a.button.popup span.title {
	font-size: 1.1em;
}
a.button.popup span.title span {
	line-height: 140%;
}

/* Popup: At the Top (default) */
.popup span.title,
.popup.at-the-top span.title {
	bottom: 100%;
	padding-bottom: 8px;
	background: transparent url("../images/popup-top-arrow.png") no-repeat 10px bottom;
}

/* Popup: At the Bottom */
.popup.at-the-bottom span.title {
	top: 100%;
	padding-top: 8px;
	background: transparent url("../images/popup-bottom-arrow.png") no-repeat 10px 0;
}

.popup.css-fx span.title {
	visibility: hidden;
}
.popup.css-fx:hover span.title {
	z-index: 10;
	visibility: visible;
}

/* Album Preview */
a.album-preview:link, a.album-preview:visited {
	width: 128px;
	height: 128px;
	display: inline-block;
	float: left;
	overflow: hidden;
	position: relative;
	margin: 0 20px 20px 0;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none !important;
	text-align: center;
	cursor: pointer;
}
a.album-preview img {
	margin: 0;
	padding: 0;
	border-style: none;
}
a.album-preview span.info {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background: transparent url("../images/bg_album-preview.png") repeat-x;
}
a.album-preview span.info span.inner {
	display: block;
	padding: 1.5ex;
	font-size: 85%;
	line-height: 140%;
	text-align: left;
}
a.album-preview span.artist-name {
	color: #bbb;
}
a.album-preview strong.album-name {
	display: block;
	margin-top: .5em;
	color: #fff;
}

a.album-preview:hover {
	text-decoration: none;
}

a.album-preview.css-fx span.info { /* CSS hover effect fallback */
	visibility: hidden;
}
a.album-preview.css-fx:hover span.info {
	visibility: visible;
}



/*---------------------------------------------------------------
PAGES
---------------------------------------------------------------*/

/* COLORS */

/* Index (Default) */
#top-bar {
	background-color: #ef8200; /*#ea7125*/
}
#header, div.box-1, #footer-1 div.inner {
	border-color: #ef8200;
}

/* Index (ENGLISH) */
body.Homepage.en #top-bar {
	background-color: #e0d202;
}
body.Homepage.en #header, body.Homepage.en div.box-1, body.Homepage.en #footer-1 div.inner {
	border-color: #e0d202;
}

/* Katalog */
body.Catalogue #top-bar {
	background-color: #00b1c1;
}
body.Catalogue #header, body.Catalogue div.box-1, body.Catalogue #footer-1 div.inner {
	border-color: #00b1c1;
}

/* E-shop */
body.Eshop #top-bar {
	background-color: #5f9baf; /* PANTONE 549 C */
}
body.Eshop #header, body.Eshop div.box-1, body.Eshop #footer-1 div.inner {
	border-color: #5f9baf;
}

/* Umelci */
body.Artists #top-bar {
	background-color: #e62899;
}
body.Artists #header, body.Artists div.box-1, body.Artists #footer-1 div.inner {
	border-color: #e62899;
}

/* Fotogalerie */
body.Gallery #top-bar {
	background-color: #5bb4e5;
}
body.Gallery #header, body.Gallery div.box-1, body.Gallery #footer-1 div.inner {
	border-color: #5bb4e5;
}

/* Partneri */
body.Partners #top-bar {
	background-color: #c9dd0a;
}
body.Partners #header, body.Partners div.box-1, body.Partners #footer-1 div.inner {
	border-color: #c9dd0a;
}

/* Tiskovy servis */
body.Press #top-bar {
	background-color: #8d6cd1;
}
body.Press #header, body.Press div.box-1, body.Press #footer-1 div.inner {
	border-color: #8d6cd1;
}



/* PAGE: Index */

body.Homepage#default #contents div.inner {
	padding-top: 0;
}

/* Album Selector */
#selector {
	margin-bottom: 2em;
	background-color: #000;
	color: #fff;
	text-transform: uppercase;
}
#selector div.inner {
	padding: 20px;
	padding-right: 0;
}
#selector h3 {
	margin: 0 0 20px;
	font-size: 100%;
	line-height: 100%;
	font-weight: normal;
}
#selector a.album-preview {
	border: 1px solid #fff;
}
#selector div.catalogue-link {
	clear: both;
	text-align: right
}
#selector div.catalogue-link a:link, #selector div.catalogue-link a:visited {
	display: inline-block;
	margin-right: 20px;
	color: #fff;
	line-height: 100%;
}
#selector div.catalogue-link a:hover {
	color: #aaa;
	text-decoration: none;
}

/* Mailing List */
#mailing-list {
	position: relative;
	margin: 2em 0;
}
#mailing-list form {
	width: 100%;
	position: absolute;
	left: 0;
	top: 2.5em;
	z-index: 2;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
#mailing-list fieldset {
	padding: .75em 1.75ex;
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
}
#mailing-list p {
	float: left;
	clear: both;
	margin: 1em 0 0;
	font-size: 85%;
}
#mailing-list a:link, #mailing-list a:visited {
	color: #ccc;
	text-decoration: underline;
}
#mailing-list a:hover {
	color: #fff;
}
#mailing-list input.text {
	width: 58%;
	float: left;
}
#mailing-list input.button {
	width: 33%;
	float: right;
	padding: 0;
	background-color: #666;
}

/* Mailing List: Open */
#open-mailing-list {
	width: auto;
	display: block;
	margin-right: 0;
	padding: 0 20px;
	font-size: 1em;
	line-height: 2.5em;
}
#open-mailing-list:active {
	background-color: #000;
	color: #ccc;
}

/* Box: Logos */
#logos div.inner {
	padding: 1.5em 0 .5em !important;
	text-align: center;
}

a.logo {
	display: inline-block;
	margin: 0 1ex 1em;
	padding: 0;
	background-image: none;
}
a.logo img {
	padding: 0;
	border-style: none;
}

#logos a.logo:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
}

#logo-jd {
	margin-right: 1.5em;
}
#logo-p {
	margin-left: 1.5em;
}

/* Article: Date Published */
div.article {
	clear: both;
	position: relative;
}
div.article h2 {
	width: 88%;
}
em.published {
	position: absolute;
	right: 0;
	top: 0;
	border-top: 1px solid #999;
	color: #999;
	font-size: 85%;
	line-height: 180%;
}

/* Article: End Of Article */
div.article p:last-of-type:after {
	width: .6em;
	height: .6em;
	display: inline-block;
	margin-left: .5ex;
	content: "";
	background: #d6d6d6;
}



/* PAGE: Archiv novinek */

body.Homepage#archive #contents div.inner {
	padding-top: 0;
}
body.Homepage div.flash {
	margin-top: 2.75em;
}
body.Homepage#archive #sidebar a.button {
	margin-top: 0;
}



/* PAGE: Katalog */

body.Catalogue #contents div.inner {
	padding-top: 0;
}

body.Catalogue#default #contents {
	width: auto;
	margin-right: -36px;
}
body.Catalogue#default #contents div.inner {
	padding-top: 2.75em;
	padding-bottom: 1em;
}
body.Catalogue#default a.album-preview {
	width: 130px;
	margin-right: 36px;
	margin-bottom: 24px;
}

body.Catalogue#album div.flash {
	margin-top: 2.75em;
}

/* Catalogue: Album Details */
div.col-left.album-info {
	width: 180px;
}
div.col-left.album-info {
	padding-top: 2.65em;
}
div.col-right.album-info {
	width: 460px;
	float: left;
	margin-right: -3em;
}
div.col-right.album-info div.col-inner {
	padding: 0 3em 0 1.75em;
}
div.album-info h2 em {
	display: block;
	font-size: 85%;
	font-style: normal;
	text-transform: none;
}

/* Catalogue: Album Cover */
a.cover {
	display: block;
	margin: 0;
}
a.cover img {
	width: 180px;
}

/* Catalogue: Buy-Form */
div.album-info strong.price {
	width: 30%;
	float: left;
	line-height: 24px;
}
div.controls {
	width: 68%;
	float: right;
}
div.album-info input.text {
	width: 20%;
	float: left;
	text-align: center;
}
div.album-info input.button, div.album-info a.button {
	width: 60%;
	float: right;
	margin: 0;
	padding: 0;
	font-weight: bold;
	text-align: center;
}

span.album-details {
	color: #999;
	font-size: 85%;
}

/* Catalogue: Tracklist */
table.tracklist {
	width: 100%;
	margin-top: 1em;
}
td.number {
	width: 8%;
	text-align: center;
}
td.preview {
	width: 10%;
	padding: 0;
	text-align: center;
}

/* Catalogue: Play Preview */
a.play {
	height: 100%;
	display: block;
	padding: .5em 1em;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
}
a.play img {
	margin: 0 auto;
}
a.play:hover {
	background-color: #e8e8e8;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
}

/* Catalogue: Credits */
div.credits {
	line-height: 120%;
}

/* Catalogue: Side Catalogue */
#show-side-catalogue {
	margin-top: 0;
}
#side-catalogue {
	height: 424px;
	overflow-y: scroll;
	margin-bottom: 3em;
}



/* PAGE: Eshop */

body.Eshop #contents div.inner {
	padding-top: 0;
}
body.Eshop div.flash {
	margin-top: 2.75em;
}

/* Eshop: Checkout */
body.Eshop#default div.float-left {
	width: 64%;
}
body.Eshop#default div.float-right {
	width: 33%;
}

body.Eshop#default table.cart-listing {
	width: 100%;
}

fieldset.eshop-form legend {
	color: #000;
	font-weight: bold;
	font-size: 115%;
	text-transform: uppercase;
}
table.eshop-form {
	margin: 1em 0;
}
table.eshop-form th, table.eshop-form td {
	padding: .2em 0;
	background-color: transparent;
	color: #000;
	text-align: left;
}
table.eshop-form th {
	padding-right: 1ex;
}
table.eshop-form th label:after {
	content: ":";
}
table.eshop-form input.button {
	margin-top: 1.5em;
}
div.float-right table.eshop-form input.button {
	width: 100%;
}



/* PAGE: Fotogalerie */

body.Gallery #contents {
	width: auto;
	margin-right: -21px; /* Affects back-link position! */
}
body.Gallery #contents div.inner {
	padding-top: 0;
}

body.Gallery#default #contents {
	margin-right: 0;
}
body.Gallery#default #contents div.inner {
	padding-top: 2.75em;
	padding-bottom: 1em;
}

/* Gallery: Listing */
div.gallery-link {
	width: 300px;
	float: left;
	margin: 0 20px 1.5em 0;
}
div.gallery-link a.image {
	float: left;
	margin-right: 1.25em;
}
div.gallery-link h2 {
	margin: .3em 0 .6em;
	padding-bottom: 0;
	font-size: 120%;
	line-height: 140%;
}
div.gallery-link h2 a:link, div.gallery-link h2 a:visited {
	border-bottom: 3px solid transparent;
	text-decoration: none !important;
}
div.gallery-link h2 a:hover {
	border-color: #aaa;
	background-color: transparent !important;
	text-decoration: none;
}
div.gallery-link span {
	font-size: 85%;
	line-height: 100%;
	text-transform: uppercase;
}

/* Gallery: Back-Link */
a.gallery-back {
	position: absolute;
	right: 21px; /* Negative #contents margin compensation */
	top: 2.75em;
	margin: 0 !important;
}

/* Gallery: Thumbnails */
div.gallery-thumbnails {
	padding-top: 1em;
}

a.thumbnail {
	width: 88px;
	height: 89px;
	float: left;
	overflow: hidden;
	margin: 0 21px 15px 0;
	padding-bottom: 0;
	text-align: center;
}
a.thumbnail img {
	margin: 0 auto;
}



/* PAGE: Partneri */

body.Partners#default #contents {
	width: auto;
	margin-right: -52px;
}
body.Partners#default p.thankyou {
	margin-bottom: 3em;
}
div.partner {
	width: 150px;
	height: 150px;
	float: left;
	position: relative;
	margin: 0 52px 20px 0;
	text-align: center;
}
body.Partners#default .popup strong {
	display: block;
	text-transform: uppercase;
}



/* PAGE: Tiskovy servis */

body.Press #contents div.inner {
	padding-top: 0;
}
body.Press #contents div.col-3 div.inner {
	padding-right: 1.5em;
}
body.Press #contents div.col-3.right div.inner {
	padding-right: 0;
}
body.Press div.flash {
	margin-top: 2.75em;
}

body.Press h2 {
	margin: 1.5em 0 1.25em;
	font-weight: bold;
	font-size: 115%;
	text-transform: none;
}
body.Press h3 {
	margin: .5em 0;
	font-size: 100%;
}

/* Files */
ul.files {
	padding: 0;
}
ul.files li {
	list-style-type: none;
}

/* Files: Icons */
span.icon {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin-right: .8ex;
	background: transparent url("../images/icons.png") no-repeat;
	vertical-align: text-top;
}

/* File: PDF */
span.icon.pdf {
	background-position: 0 0;
}
a.file:hover span.icon.pdf {
	background-position: 0 bottom;
}

/* File: PNG, JPG */
span.icon.png, span.icon.jpg {
	background-position: -20px 0;
}
a.file:hover span.icon.png, a.file:hover span.icon.jpg {
	background-position: -20px bottom;
}

/* File: EPS */
span.icon.eps {
	background-position: -40px 0;
}
a.file:hover span.icon.eps {
	background-position: -40px bottom;
}

/* Files: File List (Press) */
ul.files.press li {
	float: none;
	display: block;
}
ul.files.press a.file {
	min-height: 17px;
	display: block;
	position: relative;
	margin-bottom: .75em;
	text-decoration: none !important;
}
ul.files.press a.file span.icon {
	position: absolute;
	left: 0;
	top: 1px;
}
ul.files.press a.file span.text, ul.files.press a.file em.date {
	display: block;
	margin-left: 1.6em;
}
ul.files.press a.file:link span.text, ul.files.press a.file:visited span.text {
	text-decoration: underline;
}
ul.files.press a.file:link em.date, ul.files.press a.file:visited em.date,
ul.files.press a.file:link span.icon, ul.files.press a.file:visited span.icon {
	color: #999;
	font-style: normal;
	text-decoration: none;
	white-space: nowrap;
}
ul.files.press a.file:hover {
	background-color: #f5f5f5 !important;
}

/* Photo */
/*.show-toggle-next {
	margin-top: 0 !important;
}
.show-toggle-container {
	margin: 0 !important;
}
h3.show-toggle-next {
	margin-bottom: 2em !important;
}*/
h3.show-toggle-next a {
	display: block;
	padding-left: 1.6em;
	background: transparent url("../images/icon_plus-minus.png") no-repeat left 3px;
}
h3.show-toggle-next.selected a {
	background-position: left -183px;
}

/* Photo: Thumbnails */
div.col-3 div.gallery-thumbnails {
	margin-right: -16px;
}

span.thumbnail {
	width: 88px;
	height: 88px;
	float: left;
	position: relative;
	margin: 0 20px 20px 0;
}
span.thumbnail span.image-tools {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	visibility: hidden;
}
span.thumbnail:hover span.image-tools {
	visibility: visible;
}
span.thumbnail span.image-tools img {
	display: inline-block;
	margin: 10px auto 0;
}
span.thumbnail span.image-tools a:link, span.thumbnail span.image-tools a:visited {
	height: 50%;
	display: block;
	background-color: rgb(48, 48, 48);
	background-color: rgba(48, 48, 48, 0.5);
	text-align: center;
}
span.thumbnail span.image-tools a:hover {
	background-color: #000 !important;
}

div.col-3 div.gallery-thumbnails span.thumbnail {
	margin: 0 16px 16px 0;
}
