@charset "UTF-8";
/**
  * YAML Green WordPress Theme
  *
  * @copyright       Copyright 2008, dynamicinternet GmbH
  * @link            http://dynamicinternet.eu/wordpress/wordpress-themes/yaml-green-theme/
  * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  * @author          $Author: michael $
  * @version         1.2.2
  * $yaml            3.0.6.
  * @revision        $Revision: 60 $
  * @lastmodified    $Date: 2008-12-10 19:27:11 +0100 (Mi, 10 Dez 2008) $
  */
@media all
{
  /**
   * Fonts
   * (en) font-family and font-size selection for headings and standard text elements
   * (de) Zeichensatz und Schriftgrößen für Überschriften und übliche Text-Elemente
   *
   * @section content-fonts
   */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01% }
  /* (en) reset monospaced elements to font size 16px in Gecko browsers */
  /* (de) Schriftgröße von monospaced Elemente auf 16 Pixel setzen */
  textarea, pre, tt, code { font-family:"Courier New", Courier, monospace; }
  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
    font-size: 75.00%;
    color: #444;
  }

  h1,h2,h3,h4,h5,h6 {
    font-family: "Times New Roman", Times, serif;
    font-weight:normal;
    color:#666;
    margin: 0 0 0.25em 0;
  }
  h2,h3,h4,h5,h6 { line-height: 1.2em; }

  h1 { font-size: 200% }                        /* 24px */
  h2 { font-size: 200% }                        /* 24px */
  h3 { font-size: 150% }                        /* 18px */
  h4 { font-size: 133.33% }                     /* 16px */
  h5 { font-size: 116.67%; font-weight: bold; } /* 14px */
  h6 { font-size: 116.67%; font-weight: bold; } /* 14px */

  #headertext h1 {
    font-size:3.5em;
    letter-spacing:-0.03em;
    line-height:1.3em;
  }
  #headertext p { font-size: 116.67%; letter-spacing:-0.02em; color: #f2e4bb; }
  p { line-height: 1.5em; margin: 0 0 1em 0; }

  /* ### Lists | Listen  #### */
  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em }
  ul li ul, ol li ol { margin-bottom: 0;}
  li { margin-left: 1.5em; line-height: 1.5em }
  dt { font-weight: bold }
  dd { margin: 0 0 1em 2em }

  /* ### text formatting | Textauszeichnung ### */
  cite, blockquote { font-style:italic }
  blockquote { margin: 0 0 1em 1.5em }
  strong,b { font-weight: bold }
  em,i { font-style:italic }
  pre {
    overflow: auto;
    border: 1px solid #2f6325;
    margin-bottom:1em;
  }
  code { padding: 0.25em 0.5em 1em 0.5em; color: #2f6325; }
  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #000;
    cursor: help;
  }
  /* for a little bigger font only in content column*/
  #col1_content { font-size: 116.666%; color: #544d48; }

  /*
  * (en) Formatting of hyperlinks
  * (de) Gestaltung von Hyperlinks
  */
  a {color: #2f6325; text-decoration:none;}
  a:focus,
  a:hover,
  a:active {text-decoration: underline;}

  #headertext h1 a { color:#f2e4bb; text-decoration:none; }
  #headertext h1 a:hover { color:#bfb28d; text-decoration:none; }

  #topnav_1 a { color: #2f6325; background:transparent; text-decoration:none; }
  #topnav_1 a:focus, 
  #topnav_1 a:hover,
  #topnav_1 a:active { text-decoration:underline; background-color: transparent;}

  #topnav_2 a { color: #f2e4bb; background:transparent; text-decoration:none; }
  #topnav_2 a:focus, 
  #topnav_2 a:hover,
  #topnav_2 a:active { text-decoration:underline;}

  #footer a { color: #fff; background:transparent; font-weight: bold;}
  #footer a:focus, 
  #footer a:hover,
  #footer a:active {color: #fff; background-color: transparent; text-decoration:underline;}

  .columnblock .submenu a {  }
  .columnblock .submenu a:focus,
  .columnblock .submenu a:hover,
  .columnblock .submenu a:active {  }

  /**
   * Generic Content Classes
   * (en) standard classes for positioning and highlighting
   * (de) Standardklassen zur Positionierung und Hervorhebung
   *
   * @section content-generic-classes
   */
  img {margin: 0.5em 0}
  .text_right { text-align: right;}
  .text_center { text-align: center;}
  .text_left { text-align: left; }
  .float_left, .alignleft { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em;  }
  .float_right, .alignright { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em;  }
  .listright { /*float: right;*/ text-align: right;}
  .listleft { /*float: left;*/ text-align: left;}
  .listcenter, .aligncenter { text-align: center;}
  .wp-smiley {margin: 0; }

  /**
   * Tables | Tabellen
   * (en) Generic classes for table-width and design definition
   * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
   *
   * @section content-tables used for WordPress calendar
   */
  table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; }
  table.full { width: 100%; }
  table.fixed { table-layout:fixed }
  th,td { padding: 0.4em; }

  /**
   * Miscellaneous | Sonstiges
  */
  hr {
    clear: both;
    color: #fff;
    background:transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 2em 0;
	border: none;
	height: 5px;
    border-bottom: 5px #E5DDCA solid;
  }
  /* div around a post | Div, welches den Beitrag umschliesst */
  .post {
    margin-bottom: 2.0em;
  }
  .post h3, .post h4, .post h5, .post h6 { clear: both; }
  .postinfo {
    padding: 0 0 0.5em 0;
    border-bottom: 1px dotted #e5ddca;
    font-size:83.333%;
    font-style: italic;
  }
  .articleinfo { border: 5px solid #E5DDCA; padding: 0.5em 0.5em 0.25em 1em; margin-bottom: 3em;}
  .articleinfo p {margin-bottom: 0.25em}
  .more-link  { text-align: right; margin-right: 3em; }
  a.more-link { float: right }
  .skip_top { text-align: left; }
  /*next post / previous post link*/
  .pagination { margin:0 0 2em 0; width: 100%; }
  /* Comment Area*/
  form {overflow:hidden;}
  input, textarea {
    width: 15em;
    border: 1px #F5F0E6 solid;
    background: #F5F0E6;
    padding: 3px;
    color: #444;
  }
  textarea { width: 30em;}
  input[type=text]:focus, textarea:focus,
  input[type=text]:hover, textarea:hover {
    color: #444;
    border-color: #EFEBE0;
    background: #EFEBE0;
  }
  #commentform input[type=submit] {
    width: auto;
    background: #F5F0E6;
    color:#2f6325;
    border:1px solid #F5F0E6;
  }
  #commentform input[type=submit]:hover {
    background: #2f6325;
    color:#fff;
    border:1px solid #2f6325;
  }
  .commentnumber { margin-bottom: 1.5em }
  .comments {
    padding:0 ;
    margin: 0;
  }
  .comments li {
    margin:0 0 1.5em 0;
    padding:0;
    list-style-type:none;
  }
  .comments li h3 { margin-left: 80px }
  .comments li img.avatar { float: left; padding: 0; margin:0 !important; }
  .commentheader { padding: 0.25em }
  li.author { background: #E5DDCA ; border: 5px solid #EFEBE0; }
  li.guest { background: #EFEBE0; border: 5px solid #E5DDCA; }
  li.author a { color: #2f6325 }
  li.guest a { color: #964701  }
  li.author .commenttext { border-top:2px solid #EFEBE0; }
  li.guest .commenttext { border-top:2px solid #E5DDCA; }
  .commentmeta { font-size: 83.33%; font-style: italic; padding: 0 ; margin:0 0 0 80px; }
  .commenttext { padding:0.5em 1em 0 1em; margin: 0; clear: both;}
  #commentform { background: #E5DDCA; padding:2em 0.5em 0.25em 1em; margin-bottom: 3em; }
  #commentform small{ font-size: 83.333%; padding-left: 0.25em;}
  #respond { margin: 1em 0}
  
  /*searchinput | Suchefeld */
  /*Ausblenden der Inputs und des Zeilenumbruchs*/
  #searchform input, #searchform br {display:none;}
  /*Suche inputfeld*/
  #s { display:block !important; width: 90%; margin-top:5px;}
  /* searchinput inside navgation | Suchefeld in der Navigation */
  #navisearch {
    width: 12em;
    display: inline;
    float: right;
    padding: 2.3em 0 0.1em 0;
	margin-right: 20px;
  }
  #navisearch #s{
    width: 12em;
    background-color: #E5DDCA;
    color: #2f6325;
    padding: 0.2em 0.25em;;
    font-size: 1.2em;
  }
   /**** Quicktags from quicktags.js****/
  .quicktags input{
    width:auto;
    margin:0 0.25em 0.5em 0;
    padding:0.25em ;
    border:1px solid #EFEBE0;
    background: #EFEBE0;
    color:#2f6325;
  }
  .quicktags input:hover{
    border:1px solid #2f6325;
    background: #2f6325;
    color:#fff;
  }
  /**************************/
  /* Sidebars */
  .sidebar {
    margin: 0;
    padding: 0;
/*    overflow: hidden;*/
  }
  .sidebar a { color: #21631B; line-height: 1.8em; }
  .sidebar a:focus, .sidebar a:hover, .sidebar a:active {
    color: #792c01; text-decoration:none;
  }
  .sidebar li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.5em
  }
  /* Menu Title */
  .sidebar li h3, .sidebar li h4 {
    font-weight: normal;
    color: #21631B;
    margin: 0;
    padding: 0;
    padding-bottom: 0.5em;
	height: 1%
  }
  .sidebar li ul {
    margin: 0;
    padding: 0;
    border-bottom: 1px #BFB49B dotted;
  }
  .sidebar li ul li{
    margin: 0;
    border-top: 1px #BFB49B dotted;
  }
  .sidebar li ul li ul{  border-bottom: none }
  .sidebar li ul li ul li ul li { padding-bottom: 0 }
  .sidebar.listleft li ul li ul li a{
    padding-left: 15px;
  }
  .sidebar.listleft li ul li ul li ul li a{
    padding-left: 30px;
  }
  .sidebar.listright li ul li ul li a{
    padding-right: 15px;
  }
  .sidebar.listright li ul li ul li ul li a{
    padding-right: 30px;
  }

  /**** RSS feed list ****/
  .di_rss_info_widget{ }
  .listleft .di_rss_info_widget ul {
    background: url(../../images/feed-icon.gif) 0 50% no-repeat !important;
    padding-left: 50px;
  }
   .listright .di_rss_info_widget ul{
    padding-right: 50px;
    background: url(../../images/feed-icon.gif) 100% 50% no-repeat !important;
  }
  /**** WordPress Tag Cloud Widget (flat, no list))****/
  li.widget_tag_cloud a { 
    border: none;
    margin-right: 0.25em;
    margin-left: 0.25em;
    padding: 3px 0;
  }
  li.widget_tag_cloud h3 { margin-bottom: 0.5em;  border-bottom: 1px #BFB49B dotted}
  li.widget_tag_cloud { border-bottom: 1px #BFB49B dotted }

  /**** Tag Cloud hardcoded as a list****/
  .sidebar .tag_cloud {
    padding-bottom: 0.5em;
  }
  .sidebar .tag_cloud ul { padding: 3px 0;}
  .sidebar .tag_cloud li{
    display: inline;
    line-height: 2em;
    border-bottom: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 3px 0;
    border: none;
  }
  .sidebar .tag_cloud li a { margin-right: 0.25em; margin-left: 0.25em; }
  .sidebar .tag_cloud h3 { border-bottom: 1px #BFB49B dotted; }

  /**** Text Widget / hardcoded textbox****/
  .sidebar .widget_text {
    border-bottom: 1px #BFB49B dotted;
  }
  .sidebar .widget_text h3, .submenu .widget_text h4 {
    border-bottom: 1px #BFB49B dotted;
  }
  /* div inside textbox/textwidget */
  .textwidget {
    padding: 5px 0;
  }
  .sidebar .widget_search {
    border-bottom: 1px #BFB49B dotted;
  }
  .widget_search #s {margin-bottom: 2px;}
  /**** Kalender Widget ****/
  .sidebar .widget_calendar h3 { border-bottom: 1px #BFB49B dotted }
  #calendar_wrap { padding-top: 3px; }
  #wp-calendar thead th, #wp-calendar tfoot tr { background: #21631B; color: #fff; }
  #wp-calendar tbody a {background:#21631B; color: #fff; font-weight:bold;}
  #wp-calendar tbody a:hover { background:#792c01; text-decoration: none; }
  #prev a ,#next a{ color:#fff; text-decoration:none;font-weight:bold;}
  #prev a:active,#prev a:focus, #prev a:hover,#next a:active,#next a:focus, #next a:hover { text-decoration:underline;}
  #today{font-weight:bold;}
  #wp-calendar a { border: none; }


  /**** Subcolumnblock above footer ****/
  .columnblock .sidebar ul { border: none }
  .columnblock .sidebar li { margin-bottom: 1em }
  .columnblock .sidebar li ul li { margin-bottom: 0 }
  .columnblock .sidebar li h3,
  .columnblock .sidebar li h4 { 
    margin-top: 0.5em;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: bold;
  }
}