/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  /*
   * Our font size and line height declarations are based on the following ALA
   * article:
   *   http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   */
  body
  {
    font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  }

  #page
  {
    /*
     * To use a 12px font size on the page, delete the 14px declarations.
     * to use a 14px font size on the page, delete the 12px declarations.
     */

    /* Use a 12px base font size with a 16px line height */
   /* font-size: 0.75em; /* 16px x .75 = 12px */
    /*line-height: 1.333em; /* 12px x 1.333 = 16px */

    /* Use a 14px base font size with a 18px line height */
    font-size: 0.75em; /* 16px x .875 = 14px */
    line-height: 1.286em; /* 14px x 1.286 = 18px */
  }

  body, caption, th, td, input, textarea, select, option, legend, fieldset
  {
    /* The following font family declarations are based on the Microsoft core
     * web fonts which are common fonts available on most computer systems. The
     * Bitstream Vera fonts are commonly available on Linux systems where the MS
     * fonts are less common.
     *
     * A user's web browser will look at the comma-separated list and will
     * attempt to use each font in turn until it finds one that is available
     * on the user's computer. The final "generic" font (sans-serif or serif)
     * hints at what type of font to use if the web browser doesn't find any
     * of the fonts in the list.

    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;

     */
 font-family: Helvetica Neue, Arial, "Bitstream Vera Sans", sans-serif;
    color:#797A74;
  }

  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }

/** headings **/
  h1
  {color:#9E1934;
font-size:1.1em;
font-weight:bold;
margin-bottom:0.5em;
margin-top:0; /* 0.5em is equavalent to 1em in the page's base font.
                             Remember, a margin specified in ems is relative to
                             the element's font-size, not to the pages' base
                             font size. So, for example, if we want a 1em margin
                             (relative to the base font), we have to divide that
                             length by the element's font-size:
                             1em / 2em = 0.5em */
  }

  h2
  {
    font-size: 1em;
    line-height: 1.3em;
    margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
    margin-bottom: 0;
  }

  h3
  {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
    margin-bottom: 0.769em;
  }

  h4, h5,
  {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
    margin-bottom: 0.909em;
  }

h6
{ color:#9E1934;
font-family:Times New Roman;
font-size:1.5em;
letter-spacing:0px;
margin:0;
}
/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 0em 0em 1em 0;
  }

/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 2em;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 2em;
  }

  ul ul, ul ol,
  ol ol, ol ul,
  .block ul ul, .block ul ol,
  .block ol ol, .block ol ul,
  .item-list ul ul, .item-list ul ol,
  .item-list ol ol, .item-list ol ul
  {
    margin: 0;
  }

  li
  {
    margin: 0;
    padding: 0;
  }

  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }

  ul.menu li, /* Drupal override */
  li.expanded,
  li.collapsed,
  li.leaf
  {
    margin: 0;
    padding: 0;
  }

  ul          { list-style-type: disc; }
  ul ul       { list-style-type: circle; }
  ul ul ul    { list-style-type: square; }
  ul ul ul ul { list-style-type: circle; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: lower-alpha; }
  ol ol ol    { list-style-type: decimal; }

  dt
  {
    margin: 0;
    padding: 0;
  }

  dd
  {
    margin: 0 0 0 2em;
    padding: 0;
  }

/** links **/
  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   */
  a:link
  {color:#797A74;
  text-decoration: none;
  background:none;
  padding:0;
  }

  a:visited
  {color:#797A74;
  text-decoration: none;
  background:none;
  padding:0;
  }

  a:hover,
  a:focus
  {color:#9e1934 !important;
  text-decoration: none;
  background:none;
  padding:0;
  }

  a:active
  {color:#9e1934 !important;
  text-decoration: none;
  background:none;
  padding:0;
  }

/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
    /* width: 100%; */ /* Prevent cramped-looking tables */
  }

  th,
  thead th,
  tbody th
  {
    text-align: left;
    padding-right: 0;
    border-bottom: none;
  }

  tbody
  {
    border-top: none;
  }

/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #666;
    cursor: help;
    white-space: nowrap;
  }

  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border: none;
    cursor: auto;
    white-space: normal;
  }

/** images **/
  img
  {
    border: 0;float:left;
  }

/** horizontal rules **/
  hr
  {
    height: 1px;
    border: 1px solid #666;
  }

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }
/*NEU*/

 #footer-message table{
 	margin:0 !important;
 }
 html.js .resizable-textarea textarea {
opacity:0.5;
 }
.image-attach-teaser {
margin-top:0px;
margin-left:0px;
 }
.node-type-story table{
 	margin:0 !important;
 }

li.node_read_more{
	font-size:1.05Em !important;
	padding:0 !important;
}
.node-type-album p{margin:0;}
.views-view-grid img{padding:0 5px 1px 0;}

div.view-galerie li.views-row{
background-color:#f4f4f4;
border:0 dotted #CCCCCC;
float:left;
height:230px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0 13px 13px 0;
padding-bottom:17px;
position:relative;
text-align:left;
width:190px;
}
div.view-galerie ul{
list-style-type:none;
margin:0 -2em 0 0;
text-align:left;
padding:0;
}
div.view-galerie ul.pager{
padding-top:3em;
width:800px;
}
/*view-footer padding spaeter löschen, wenn mehr als 3 alben drin sind*/
div.view-footer{}



/*neu rotovib*/
/*
div.navbar-inner .block-menu-primary-links ul.menu li{
	background-color:red !important;
display:inline !important;
}
 */

div.node-type-ausstellung .node-inner .img{
margin-top:-14px !important;
padding-right:8px !important;
}

.page-home p {
margin:0;
}

  #footer-message a:link, #footer-message a:visited
  {color:#fff;
  text-decoration: none;
  background:none;
  padding:0;
  }

 #footer-message a:hover, #footer-message a:focus, #footer-message a:active
  {color:#fff !important;
  border-bottom:1px dotted #FFFFFF;
   background:none;
  padding:0;
  }
a.gallery-thumbs small{display:none;}



div.view-produkte li.views-row{
background-color:#f4f4f4;
border:0 dotted #CCCCCC;
float:left;
height:230px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0 13px 13px 0;
padding-bottom:17px;
position:relative;
text-align:left;
width:190px;
}
}
div.view-produkte ul{
list-style-type:none;
margin:0 -2em 0 0;
text-align:left;
padding:0;
}
div.view-produkte ul.pager{
padding-top:3em;
width:800px;
}
.view-galerie img, .view-produkte img{float:none;
padding:5px;}
.views-field-title{font-weight:bold;
padding-left:5px;}
body body.cke_show_borders {background-color:white !important;}


 #navbar #primary a:link
  {color:#797A74;
   padding:0 0 15px;
   background:none;
   padding:0;
  }

 #navbar #primary a:visited
  {color:#797A74;
  padding:0 0 15px;
  background:none;
  padding:0;
  }

 #navbar #primary a:hover,
  a:focus
  {background:transparent url(images/tropfen.jpg) no-repeat scroll 50% 100%;
color:#797A74 !important;
padding:0 0 15px;
  
  }

  #navbar #primary a:active
  {color:#797A74 !important;
  background:transparent url(images/tropfen.jpg) no-repeat scroll 50% 100%;
padding:0 0 15px;
  }
  #navbar #primary li a.active
  {color:#9e1934 !important;
  background:transparent url(images/tropfen.jpg) no-repeat scroll 50% 100%;
padding:0 0 15px;
  }