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

#page-wrapper {
}

#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 */ {
  margin: 0;
    padding: 0;
    top: 0px;
    position: relative;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan {
    border: 0px solid red;
    position: relative;
    text-align: center;
    top: 10px;
    width: 600px;
    left: 100px;
}

h1#site-name, div#site-name {
    font-size: 1.9em;
    line-height: 1.3em;
    margin: 0;
}
#site-name a:link, #site-name a:visited {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    font-weight:  normal;
}

#site-name a:hover, #site-name a:focus {
    text-decoration: none;
}
#site-slogan {
    font-size:  1.1em;
    text-transform: uppercase;
    color: #666;
}
.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
}

#content a:hover {
    text-decoration: underline;
}

#content .section {
color: #000;
}

#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 */
	display: none;
}

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 {

}

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

/* -------------------- node-type-publikacija edit strani ----------- */


#field-image-cache-items {
border: 0px solid red;
display: none;
}

#field-image-cache-items+fieldset {
border: 0px solid red;
display: none;
}

.page-node-add-publikacija table#sell-weight-form,
.page-node-add-publikacija table#sell-weight-form+fieldset,
.node-type-publikacija table#sell-weight-form,
.node-type-publikacija table#sell-weight-form+fieldset {
display: none;
}


/* --------------------- node-type-avtor ------------------------------*/

.section-avtor .field-avtor-foto {
float: left;
margin: 5px 10px 0 0;
}


/* -------------------- node-type-publikacija ------------------------ */


.node-type-publikacija h1.title {display: none;}


#publikacija-naslov-container {
border: 0px solid red;
margin: 0 0 5px 0;
width: 600px;
}

.node-type-publikacija .field-publikacija-naslov,
.node-type-publikacija .field-publikacija-podnaslov {
font-size: 24px;
font-weight: normal;
color: #666;
line-height: 26px;
/*  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;*/
border: 0px solid red;
text-decoration: none;
}

.node-type-publikacija .field-publikacija-podnaslov {
font-size: 16px;
font-weight: normal;
}

#publikacija-body-container {
border: 0px solid red;
float: left;
width: 420px;
margin: 0 0 20px 0;
}

.node-type-publikacija .field-publikacija-avtorji {
font-size: 16px;
font-weight: normal;
margin: 0 0 2px 0;
color: #808080;
}

.node-type-publikacija .field-publikacija-avtorji .field-item {
display: inline;
}

.node-type-publikacija .field-publikacija-avtorji-prev .field-item {
margin: 7px 0 2px 0;
display: inline;
}

#publikacija-foto-container {
border: 0px solid red;
float: left;
width: 120px;
margin: 0 15px 10px 0;
}

.node-type-publikacija .field-publikacija-redna-cena {
margin: 0 0 5px 0;
/*font-size: 16px;*/
}

.node-type-publikacija .field-publikacija-redna-cena .cena {
width: 116px;
border: 0px solid red;
color: #000; /* modra */ 
display: block;
margin: 0 0 0 0;
}

.node-type-publikacija .field-publikacija-redna-cena .cena-discounted {
width: 116px;
border: 0px solid red;
display: block;
margin: 0 0 0 0;
/*color: silver;*/
/*text-decoration: line-through;*/
}

.node-type-publikacija .field-publikacija-discount {
font-weight: bold;
/*font-size: 16px !important;*/
width: 130px;
border: 0px solid red;
display: block;
margin: 0 0 10px 0;
/*color: red;*/
}

.node-type-publikacija .field-publikacija-razprodano {
width: 116px;
border: 0px solid red;
display: block;
margin: 5px 0 10px 0;
color: #000;
}

.node-type-publikacija .field-publikacija-predprodaja {
font-size: 14px !important;
font-weight: bold;;
margin: 0px 0px 0px;
position: relative;
top: 0px;
width: 116px;
}

.node-type-publikacija .add-to-cart input {
    background: none;
    color: gray;
  font-size: 13px;
    font-weight: bold;
    margin: 3px 0 0 0;
    text-decoration: underline;
    border: 0;
    cursor: pointer;
    padding: 0;
}



/* fix firefox button padding ------------------------------------- */

@-moz-document url-prefix(http://) {     
button::-moz-focus-inner, 
input[type="button"]::-moz-focus-inner, 
input[type="submit"]::-moz-focus-inner, 
input[type="reset"]::-moz-focus-inner {         
padding: 0 !important;         
border: 0 none !important;     
	} 
}


.node-type-publikacija .field-publikacija-foto {
visibility: hidden;
height: 190px;
}

.node-type-publikacija .field-publikacija-foto .field-item-1 {
visibility: visible;
border: 0px solid red;
margin: 0;
}

.node-type-publikacija #magnify {
visibility: visible;
background-image: url('/sites/all/themes/sophia/images/lupa.png');
margin:0;
display: block;
width: 24px;
height: 24px;
border: 0px solid red;
position: absolute;
margin: -33px 0 0 90px;
}

/* --------------------------- page-katalog, akcije, novosti in front page novosti ----------------------- */

.front table.views-view-grid,
.section-katalog table.views-view-grid,
.page-novosti table.views-view-grid {
border: 0px solid red;
margin: 10px 0 0 0;
padding: 0;
}

.section-katalog table.views-view-grid td, 
.page-novosti table.views-view-grid td {
border: 0px solid red;
padding: 0;
vertical-align: top;
}

.section-katalog .katalog-publikacija,
.section-akcije .katalog-publikacija,
.page-novosti .katalog-publikacija {
border: 0px solid red;
min-height: 100px;
float: left;
margin: 0 0 25px 0;
}

.section-katalog .katalog-publikacija-opis,
.section-akcije .katalog-publikacija-opis,
.page-novosti .katalog-publikacija-opis {
display: block;
border: 0px solid red;
width: 460px;
float: left;
}

.section-katalog .katalog-foto,
.section-akcije .katalog-foto,
.page-novosti .katalog-foto {
float : left;
margin: 0 0 0 0;
min-height: 100px;
width: 105px;
}

.front table.views-view-grid {
border: 0px solid red !important;
margin: 0 !important;
padding: 0 !important;
border-collapse:collapse;
font-size: 90%;
width: 100%;
}

.front table.views-view-grid tr {
border: 0px solid red;
margin: 0 !important;
padding: 0;
}

.front table.views-view-grid td {
border: 0px solid ccc;
vertical-align: top;
}

.front .katalog-publikacija {
border: 0px solid red;
background-color: #fff;
padding: 0px;
color: #000;
margin: 0 0 10px 0;
float: left;
top: 0;
position: relative;
display: block;
min-height: 150px;
width: 290px;
}

.front .katalog-publikacija-opis {
display: block;
border: 0px solid red;
float: left;
width: 190px;
}

.front .katalog-foto {
float : left;
margin: 0 10px 0 0;
}

.front .katalog-foto img,
.section-katalog .katalog-foto img,
.section-akcije .katalog-foto img,
.page-novosti .katalog-foto img,
.views-field-field-publikacija-foto-fid img {
border: 2px solid #666; 
}

.front .katalog-cena, 
.section-katalog .katalog-cena, 
.section-akcije .katalog-cena, 
.page-novosti .katalog-cena {
    border: 0 solid red;
    color: #000;
    display: block;
    font-size: 12px;
    margin: 0 0px;
}
.front .katalog-cena .cena-discounted, 
.section-katalog .katalog-cena .cena-discounted, 
.section-akcije .katalog-cena .cena-discounted, 
.page-novosti .katalog-cena .cena-discounted {
    border: 0 solid red;
    color: #000;
    display: block;
    font-size: 12px;
    margin: 0;
}
.front .label-discounted, 
.section-katalog .label-discounted, 
.section-akcije .label-discounted, 
.page-novosti .label-discounted {
    color: #000;
    font-size: 11px;
}

.front .cena-discounted strong, 
.section-katalog .cena-discounted strong, 
.section-akcije .cena-discounted strong, 
.page-novosti .cena-discounted strong {
    font-size: 10px !important;
	}

.front .field-publikacija-discount, 
.section-katalog .field-publikacija-discount, 
.section-akcije .field-publikacija-discount, 
.page-novosti .field-publikacija-discount {
    border: 0 solid red;
    color: #000;
    display: block;
    font-size: 11px;
    font-weight: bold;
    margin: 0 0;
    width: 105px;
}

.node-type-publikacija .field-publikacija-discount {
    font-size: 12px;
   }


.front .katalog-buybutton input, 
.section-katalog .katalog-buybutton input,
.section-akcije .katalog-buybutton input, 
.page-novosti .katalog-buybutton input {
    background: none;
    color: gray;
    font-size: 11px;
    font-weight: bold;
margin: 0px 0px 0px -3px; 
    text-decoration: underline;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* input button margin hack for chrome and opera*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
.section-katalog .katalog-buybutton input {margin: 0; }
}


.front .katalog-title,
.section-katalog .katalog-title,
.section-akcije .katalog-title,
.page-novosti .katalog-title {
font-size: 18px;
font-weight: bold;
line-height: 19px;
margin: -3px 0 4px 0;
}

.front .katalog-title a,
.section-katalog .katalog-title a,
.section-akcije .katalog-title a,
.page-novosti .katalog-title a {
color: #666 !important;
font-weight: normal;
}


.front .katalog-title .katalog-subtitle,
.section-katalog .katalog-title .katalog-subtitle,
.section-akcije .katalog-title .katalog-subtitle,
.page-novosti .katalog-title .katalog-subtitle {
font-size: 14px;
font-weight: normal;
line-height: 14px;
}

.section-katalog #content h1.title,
.section-akcije #content h1.title,
.section-dogodki #content h1.title,
.section-novice #content h1.title,
.section-o-zalozbi #content h1.title {
display: none;	
	}

.section-katalog .katalog-avtor .field-item {
/*	display: inline;*/
	}

.section-katalog #content-area {
margin-top: 8px;
	}

.section-katalog .view-header p {
font-weight: bold;
	color: #666;
	margin: 0;
	padding: 0;
	}

.section-katalog .attachment {
display: block;
margin-bottom: 30px;
	}

.section-katalog .attachment .views-summary a.active {
	background-color: #666;
	color: #fff;
	padding: 0 3px;
	}


/* ---------------------- liste publikacija v views tabelah --------------------- */

.section-zbirke table.views-table td.views-field-title>a,
.section-podrocje table.views-table td.views-field-title>a,
.section-avtor table.views-table td.views-field-title>a {
font-weight: bold;
/*text-decoration: none;*/
}

.views-field-title>a:hover,
.katalog-title a:hover {
/*text-decoration: none !important;*/
text-decoration: underline;
}


.section-zbirke table.views-table td .views-field-avtor,
.section-zbirke table.views-table td .views-field-avtor a,
.section-podrocje table.views-table td .views-field-avtor,
.section-podrocje table.views-table td .views-field-avtor a,
.section-avtor table.views-table td .views-field-avtor, 
.section-avtor table.views-table td .views-field-avtor a {
font-weight: normal;
text-decoration: none;
}

.section-zbirke table.views-table td,
.section-podrocje table.views-table td,
.section-avtor table.views-table td {
background-color: #fff;
vertical-align:top;
}

.section-zbirke table.views-table tr,
.section-podrocje table.views-table tr,
.section-avtor table.views-table tr {
border: 0px solid red;
height: 150px;
}

.section-zbirke table.views-table td.views-field-field-publikacija-foto-fid a img,
.section-podrocje table.views-table td.views-field-field-publikacija-foto-fid a img,
.section-avtor table.views-table td.views-field-field-publikacija-foto-fid a img {
margin: 3px 5px 0 0;
}

.section-zbirke table.views-table thead,
.section-podrocje table.views-table thead,
.section-avtor table.views-table thead {
display: none;
}

.publikacija-podrocja-list {
display: block;
border: 0px solid red;
width: 500px;
}

.publikacija-zbirka-list a, 
.publikacija-podrocja-list a {
font-weight: normal;
text-decoration: none;
}

.publikacija-podrocja-list .field-item  {
display: inline;
}

td.views-field-title >br {
    padding: 0;
    margin:  0;
    display: block;
}

.section-zbirke h1.title,
.section-podrocje h1.title,
.section-avtor h1.title,
.section-search h1.title,
.section-search #content-area h2 {
	text-transform: none;
	font-style: normal;
	}


/* ----------------------------  node-type-avtor ------------  */

#content-area .node-type-avtor .view-content {
margin: 0px;
padding: 0px;
position: relative;
top: -10px;
	}

/* ----------------------------  projekcija na vstopni strani ------------  */

.front .region-highlight {
margin: 10px 0 0 0;	
	}

.front .views_slideshow_singleframe_pager {
margin: 0 0 0 -10px;	
	}

#views_slideshow_singleframe_main_projekcija-block_1 {
    border: 0 solid red;
    height: 280px;
    margin-top: 0px;
    width: 580px;
    display: block;
    float: left;
    position: relative;
    overflow: hidden;
}

#views_slideshow_singleframe_teaser_section_projekcija-block_1,
#views_slideshow_singleframe_div_projekcija-block_1_0 {
	    width: 570px;
	}

#projekcija-content {
    display: block;
    float: left;
    height: 280px;
    left: 0;
    position: absolute;
    top: 0;
    width: 570px;
}
.field-projekcija-foto {
    float: left;
    margin: 0 10px 0 0;
    position: relative;
    width: 190px;
}
.field-projekcija-title {
    font-size: 16px;
    font-weight: bold;
}
.projekcija-tekst {
    display: block;
    left: 0;
    padding: 0 10px 10px;
    position: relative;
    top: 0;
}
.projekcija-tekst p {
}
.field-projekcija-tekst {
    background-color: white;
    height: 200px;
    opacity: 0.7;
    width: 200px;
    padding: 0;
    margin: 0;
}

/* ------------------------- node-type projekcija ------------------------ */

.node-type-projekcija .dogodek-item {
margin-bottom: 0;
display: block;
width: 600px;
}

.node-type-projekcija .dogodek-foto {
float: left;
display: block;
padding: 0;
margin: 0px 10px 10px 0;
	}
	
.node-type-projekcija .dogodek-tekst {
float: left;
left: 0px;
margin: 0px;
padding: 0px;
display: block;
position: relative;
top: -15px;
width: 400px;
	}


/* ------------------------- section dogodki/novice ------------------------ */

.section-dogodki .view-dogodki,
.section-novice .view-novice {
margin: -17px 0 0 0;
}

.section-dogodki #content .section,
.section-novice #content .section {
    margin: 0;
    padding: 0 10px 0;
}

.section-dogodki h2.title a,
.section-novice h2.title a {
	text-transform: none;
	color: #666;	
}

.section-dogodki .dogodek-item,
.section-novice .novica-item {
margin-bottom: 30px;
display: block;
float: left;
}

.section-dogodki .dogodek-created,
.section-novice .novica-created {
margin-bottom: 10px;
}

.section-dogodki .dogodek-foto,
.section-novice .novica-foto {
float: left;
display: block;
width: 120px;	
padding: 0;
margin: 0;
	}

.section-dogodki .dogodek-tekst,
.section-novice .novica-tekst {
left: 10px;
margin: 0px;
padding: 0px;
position: relative;
top: -8px;
width: 450px;
}

/* ------------------------- section-novice ------------------------ */


.section-novice h2.title {

}
/*
.section-novice #content-area .view-content .views-row {
border: 0px solid red;
margin: 0 0 10px 0;
}

.section-novice #content-area .view-content img {
float: left;
margin: 4px 10px 0 0;
}
*/
/* ------------------------- node-type-novica ------------------------ */

.node-type-novica #content-area {
margin: 0 0 20px 0;
}

.node-type-novica #content-area img {
float: left;
margin: 4px 10px 0 0;
}


/* ------------------------- blok novica ------------------------ */

#block-views-novica-block_1 .view-content .views-field-field-novica-foto-fid {
float: left;
margin: 4px 5px 0 0;
}

/* ------------------------- blok novica ------------------------ */

#webform-component-prijava label {
    display: none;
}

.block-webformblock input#edit-submitted-prijava {
    border: 1px solid silver;
    color: #666666;
    display: block;
    float: left;
    font-size: 11px;
    height: 18px;
padding: 0px 0px 0px 3px;
width: 112px;
}
.block-webformblock input#edit-submit {
  border: 1px solid #C0C0C0;
color: #666666;
display: block;
font-size: 11px;
height: 20px;
left: 3px;
position: relative;
text-transform: none;
top: 0px;
width: 50px;
}

/* ------------------------- search results page ------------------------ */

#content-area form#search-form input {
    border: 1px solid silver;
    color: gray;
    font-size: 12px;
    padding: 2px;
    width: 180px;
}
#content-area form#search-form input#edit-submit {
    border: 1px solid silver;
    font-size: 11px;
    height: 20px;
    left: 0;
    position: relative;
    text-transform: none;
    top: 1px;
    width:  50px;
}

#content-area form#search-form label {
font-weight: normal;	
	}

.section-search .content ul {
display: none;	
	}

/* ------------------------- ubercart ------------------------ */
	
#edit-panes-cck-type-uc-pravne-checkout-pane-0-field-nacin-placila-value--wrapper {
display: none;	
	}	


fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper {
	width: 540px;
	text-align: left;
overflow: hidden;
	}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item {
height: 25px;
		}


fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item .form-radios {
display: block;
float: left;
height: 60px;
left: -35px;
position: relative;
top: -42px;
		}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item .form-radios input {
left: 0px;
position: relative;
top: 2px;
width: 10px;
}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item .form-radios label {
float: left;
left: 190px;
position: relative;
top: 0px;
}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item#edit-panes-cck-type-uc-pravne-checkout-pane-0-field-pravne-ddv-0-value-wrapper .description {
position: relative;
top: -24px;
right: -4px;
	}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item#edit-panes-cck-type-uc-pravne-checkout-pane-0-field-pravne-opombe-0-value-wrapper {
float: left;
height: 220px;
width: 500px;
		}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item#edit-panes-cck-type-uc-pravne-checkout-pane-0-field-pravne-opombe-0-value-wrapper .description {
height: 20px;
left: 0px;
position: relative;
top: 0px;
		}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper .form-item#edit-panes-cck-type-uc-pravne-checkout-pane-0-field-pravne-opombe-0-value-wrapper label {
height: 20px;
left: 0px;
text-align: left;
		}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper input,
fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper select {
left: 160px;
position: relative;
top: -20px;
width: 180px;
	}

fieldset#cck_type_uc_pravne_checkout_pane-pane .fieldset-wrapper label {
position: relative;
right: 390px;
text-align: right;
	}

/* ------------------------------------- ubercart checkout page -------------------------------------*/
#cart-form-products table,
table.uc-discounts-cart-pane-table {
	margin: 0;
}


#cart-form-products table tr th {
	background-color: #EEE;
	text-align: center;
	border: none;
	}

#cart-form-products table td,
table.uc-discounts-cart-pane-table td {
	background-color: #fff;
	padding: 5px;
}
#cart-form-products table tr,
table.uc-discounts-cart-pane-table tr {
	border: none;
	}




#cart-form-bottom-help {
text-align: left;
margin: 5px 0;
}

.page-cart #cart-form-bottom-help {
margin: 5px 0 0 10px;
}

.page-cart-checkout-review #cart-form-bottom-help {
text-align: left;
margin: 0;
padding: 5px 10px 20px 5px;
border-top: 1px solid gray;
top: 15px;
position: relative;
width: 98%;
left: -1px;
}


#calculated-price {
border-top: 1px solid #C0C0C0;
display: block;
font-weight: 700;
height: 20px;
margin: 10px 0px;
padding: 5px 5px 0px 0px;
text-align: right;
}

/* ------------------------------------- ubercart invoice -------------------------------------*/


table . field-field-pravne-ime .field-items,
table . field-field-pravne-priimek .field-items {
	}


table .field-item {

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

#viewerContainer img#zelite {
display: none !important;	
	}
	
/*-----------------------lightbox ------------------------------------------------------------*/
iframe {
border: none !important;	
	}
	
h1.maintitle a, 
.subtitle a {
	color: #C0C0C0 !important;
	font-weight: bold;
	}	
	
	