/* $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:#000;
}

#page-wrapper {
background:#fff;
}

#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 {
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 46px 0 0 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;
  text-indent:-3000px;
}

#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 {
}

/*
 * 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;
}

.sidebar h2.title {
background:url(../images/bg-block-title.png) top center no-repeat;
line-height:45px;
height:45px;
text-align:center;
text-transform:uppercase;
}

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 {
padding-top:1px;
}

#footer .section {
color:#a7a7a7;
margin-top:15px;
}

#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);
}

#block-views-animace-block_1, 
#block-views-animace-block_2, 
#block-views-animace-block_3, 
#block-views-animace-block_4, 
#block-views-animace-block_5 {
border-bottom:1px solid #d3d3d3;
width:690px;
height:255px;
overflow:hidden;
}

.banner p {
padding-top:178px;
font-weight:bold;
font-weight:10px; 
line-height:17px;
}

.red {
color:ce1328;
}

a.but-mid {
padding:14px;
line-height:42px;
text-align:center;
margin:;
text-decoration:none;
}

/**
a.but-mid2 {
padding:14px 24px;
line-height:42px;
text-align:center;
margin:;
text-decoration:none;
}

a.but-mid3 {
padding:14px 23px;
line-height:64px;
text-align:center;
margin:;
text-decoration:none;
}

.but-right {
background:url(../images/button.png) center right no-repeat; 
text-align:right;
margin-top:-7px;
margin-right:-7px;
}

.but-right2 {
background:url(../images/button.png) center right no-repeat; 
text-align:right;
margin-right:-7px;
}
*/ 

.but-right2 {
text-align:right;
margin:15px 0;
}

a.but-mid3 {
background:url(../images/bg-block-but.png) left top repeat-x;
border:1px solid #000;
padding:5px 8px;
text-decoration:none;
}

.but-right {
text-align:right;
margin:15px 0;
}

a.but-mid2 {
background:url(../images/bg-block-but.png) left top repeat-x;
border:1px solid #000;
padding:5px 8px;
text-decoration:none;
}









.center-link {
text-align:center;
font-weight:bold;
margin:0px;
}

.resizable-textarea {
width:99%;
}

#edit-body-wrapper .resizable-textarea {
font-size:12px;
}

.region-highlight {
margin-bottom:20px;
}

.butop {
text-align:right;
}

#map_canvas {
margin-top:16px;
}

#user-login-form input#edit-name, #user-login-form input#edit-pass {
width:240px;
}

.admin {
margin-bottom:12px;
}

#attachments {
clear:both;
}

/*****************************
     karta vozidla
******************************/

.node-type-car .field-field-img, .node-type-car2 .field-field-img {
float:left;
margin-bottom:8px;
}

.node-type-car .field-field-nextimg, .node-type-car2 .field-field-nextimg {
margin-left:212px;
}

.node-type-car .field-field-nextimg .field-item, .node-type-car2 .field-field-nextimg .field-item {
float:left;
margin:0 11px 6px 0;
}

.node-type-car .field-field-vyvolavaci, .node-type-car2 .field-field-vyvolavaci {
clear:both;
background:#000;
color:#fff;
padding:0;
margin:0;
line-height:53px;
height:53px;
width:100%;
font-size:20px;
letter-spacing:-1px;
}

.node-type-car .field-field-vyvolavaci .field-label, .node-type-car2 .field-field-vyvolavaci .field-label {
float:left;
margin-left:20px;
}

.node-type-car .node-type-car form.webform-client-form {
border:1px solid #ccc;
background:#f2f2f2 url(../images/auction1.png) left center no-repeat;
padding:0 12px 0 65px;
}

#webform-component-vase-nabidka label, 
#webform-component-vase-nabidka .form-item {
float:left;
margin-right:12px;
}

#edit-actions {
padding:1em;
margin-left:12px;
}

/*****************************
     karta technologie
******************************/

.node-type-techno  p {
clear:both;
}

.node-type-techno .field-field-img {
float:left;
margin-bottom:8px;
}

.node-type-techno .field-field-nextimg {
margin-left:212px;
}

.node-type-techno .field-field-nextimg .field-item {
float:left;
margin:0 11px 6px 0;
}

.node-type-techno .field-field-vyvolavaci {
clear:both;
background:#000;
color:#fff;
padding:0;
margin:1em 0 0 0;
line-height:53px;
height:53px;
width:100%;
font-size:20px;
letter-spacing:-1px;
}

.node-type-techno .field-field-vyvolavaci .field-label  {
float:left;
margin-left:20px;
}

.node-type-techno .node-type-techno form.webform-client-form {
border:1px solid #ccc;
background:#f2f2f2 url(../images/auction1.png) left center no-repeat;
padding:0 12px 0 65px;
}


/*****************************
     stylovani aukce
******************************/

.node-type-auction .node-type-car h2, 
.node-type-auction .node-type-car .field-field-vyvolavaci, 
.node-type-auction .node-type-car p, 
.node-type-auction .node-type-car .field-field-img,
.node-type-auction .node-type-car .field-field-nextimg, 
.node-type-auction .node-type-car label,
.node-type-auction .node-type-car table {
} 

.not-logged-in .webform-client-form {
}

.node-type-auction .field-field-start {
width:230px;
background:#ccc url(../images/clock1.png) left center no-repeat;
margin:0 auto;
padding:10px;
}
.node-type-auction .field-field-end {
width:230px;
background:#DB1833 url(../images/clock2.png) left center no-repeat;
margin:0 auto;
padding:10px;
color:#fff;
}


.views-table tbody tr {}
.views-table tr.odd {background:#ddd;}
.views-table tr.even {background:#eee;}
.views-table td, .views-table th {padding:5px;}

.views-table .views-field-field-img-fid {width:100px;}
.views-table .views-field-title {}
.views-table td.views-field-view-node {text-align:center;font-size:11px;}
.views-table td.views-field-webform-submission-count-node {text-align:center;}
.views-table .views-field-field-vyvolavaci-value, th.views-field-view-node, th.views-field-field-statut-value {width:;text-align:center;font-weight:bold;}
td.views-field-field-statut-value, td.views-field-field-vyvolavaci-value {text-align:center;width:115px;}
.views-table td.views-field-webform-form-body {width:188px;text-align:center;background:#ccc;}
.views-field-title .mini {line-height:15px;display:block}


.node-type-auction .node-type-car #edit-actions {
margin-left:0px;
padding:0;
}

.webform-client-form {
margin-top:12px;
}

.webform-component-textfield label, .webform-component-textfield .form-item {
float:left;
margin-right:5px;
}

.webform-component-textfield input {
width:200px;
}

.field-field-start {
text-align:center;
}

.field-field-end {
text-align:center;
}

.node img.inline {
float:right;
}

.view-id-vypis_aukci table {
margin-bottom:0;
}

#block-views-vypis_aukci-block_1, #block-views-vypis_aukci_techno-block_1  {
border:1px solid #DB1833;
margin:20px 0;
}

#block-views-vypis_aukci-block_2, #block-views-vypis_aukci_techno-block_2 {
border:1px solid #ddd;
margin-bottom:20px;
}

#block-views-vypis_aukci-block_3, #block-views-vypis_aukci_techno-block_3 {
}

#block-views-vypis_aukci-block_1 h2, #block-views-vypis_aukci_techno-block_1 h2 {
color:#fff;
}

#block-views-vypis_aukci-block_2 h2, #block-views-vypis_aukci_techno-block_2 h2 {
color:#aaa;
}

#block-views-vypis_aukci-block_3  h2, #block-views-vypis_aukci_techno-block_3 h2 {
color:#aaa;
}

#block-views-vypis_aukci-block_1 p, 
#block-views-vypis_aukci-block_2 p, 
#block-views-vypis_aukci_techno-block_1 p, 
#block-views-vypis_aukci_techno-block_2 p {
padding-left:8px;
padding-right:8px;
text-align:center;
}

.not-logged-in.views-field-webform-submission-count-node {
display:none;
}

.inzerce-left, .inzerce-right {
float:left;
width:315px;
min-height:150px;
padding:0 10px;
border:1px solid #bbb;
/*background:url(../images/pneu.png) bottom left repeat-x;*/
}

.inzerce-right {margin-left:10px;}

.inzerce-left h3 {
background:url(../images/kupujici.png) bottom left no-repeat;
}

.inzerce-right h3 {
background:url(../images/prodavajici.png) bottom left no-repeat;
}

.inzerce-left h3, .inzerce-right h3 {
text-align:left;
line-height:45px;
margin:0;
padding-left:42px;
}

.aukce-left {
float:left;
width:250px;
height:380px;
padding:0 10px;
border:1px solid #bbb;
/*background:url(../images/pneu.png) bottom left repeat-x;*/
}

.aukce-left a, .aukce-right a, .inzerce-left a, .inzerce-right a {
font-weight:bold;
color:#DB1833;
}

.aukce-right h3 {
text-align:center;
}

.aukce-right {
margin-left:287px;
padding:0 10px;
height:380px;
width:380px;
border:1px solid #bbb;
}

.aukce-right ul.reddot li {
font-size:10px;
}

.aukce-left h2 {
background:url(../images/kupujici.png) bottom left no-repeat;
}

.aukce-right h2 {
background:url(../images/prodavajici.png) bottom left no-repeat;
}

.aukce-left h2, .aukce-right h2 {
text-align:left;
line-height:45px;
margin:3px 0 10px 0;
padding-left:42px;
}

a.buton {
background:#DB1833;
padding:5px 10px;
color:#fff;
text-align:center;
margin:10px 50px;
display:block
}

.aukce-left p, .aukce-right p {
padding:0;
margin:0;
}

.center {
text-align:center;
}

#node-444 .aukce-left, #node-444 .aukce-right {height:330px;}


/*********** bazar ***********/

#webform-client-form-356 .webform-component, 
#webform-client-form-356 .webform-component-textfield .form-item, 
#webform-client-form-356 .webform-component-email .form-item
{display:block;float:none;}
#webform-client-form-356 #edit-actions {padding:0;margin:0}
#webform-client-form-356 .form-item label {width:110px;display:inline-table}
#webform-client-form-356 .webform-component input {width: 200px;}


/************************************
              user profile
************************************/

.profile {
border:1px dotted #ccc;
padding:12px;
}

.profile h3 {
background:#ccc;
border-bottom:none;
padding:5px 5px;
color:#555;
text-align:center;
text-transform:uppercase;
margin:0 0 12px 0;
}

.profile p {
margin:0;
}

.profile dt {
background:url(../images/arrow.png) left center no-repeat;
padding-left: 35px;
line-height:30px;
}



/***************************************/

.node-type-car h1.title{
margin-bottom:12px;
}

.node-type-partner .field-field-image {
float:right;
margin:0 0 15px 15px;
border:1px solid #ccc;
}

.view-id-partneri .field-field-image {
float:left;
margin:0 15px 15px 0;
border:1px solid #ccc;
}

.view-id-partneri ul.links.inline {
text-align:right;
display:block;
}

.center a {margin:0 1px 0 0;}

.center a:hover {
border-bottom: 10px solid #db1833;
}














