/* $Id: html-reset.css,v 1.6 2009/11/10 07:37:04 johnalbin Exp $ */

/**
 * @file
 * HTML Element Styling
 *
 * This is the "reset" style sheet. It standardizes the properties of the HTML
 * elements across browsers.
 */
 
.form-text {
  width : 160px;
}
 

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

#skip-to-nav,
#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.875em; /* 16px x .875 = 14px */
  line-height: 1.286em; /* 14px x 1.286 = 18px */
  background-color : #FFFFFF;
}

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 DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * 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, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

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

   */

  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
}

blockquote {
  border-left : 5px solid #EEEEEE;
  padding-left : 20px;
}

cite {
  font-style: normal;
  font-size : 9pt;
}

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

/*
 * Headings
 */
h1 {
  font-size: 18pt;
  line-height: 1.3em;
  margin-top : 0em;
  margin-bottom: 0em; /* 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: 12pt;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0em;
}

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,
h6 {
  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;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin-top : 2px;
  margin-bottom : 10px;
  font-size: 14px;
  line-height: 150%;
}

li.expandable , li.admin-menu-action, div.admin-menu {
font-size : 10px;
}

div.taxonomy-term-description {
  line-height : 150%;
}

blockquote {
  margin-left : 2em;
  margin-top : 1em 
  margin-bottom : 0em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

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

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,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  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 : #6D6F71;
  text-decoration : none;  
}
a:link.title, a:visited.title{
  color : #6D6F71; text-decoration : none; font-size : 14pt; font-weight : bold;
}
a:hover.title {
   color : #6D6F71; text-decoration : none; font-size : 15pt; font-weight : bold;
}

a:link.title_ausgabe_001, a:visited.title_ausgabe_001 {
  color : #00AEEF; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_002, a:visited.title_ausgabe_002 {
  color : #66CC66; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_003, a:visited.title_ausgabe_003 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_004, a:visited.title_ausgabe_004, a:hover.title_ausgabe_004 {
  color : #4B08A1; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_005, a:visited.title_ausgabe_005, a:hover.title_ausgabe_005 {
  color : #CC0000; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_006, a:visited.title_ausgabe_006, a:hover.title_ausgabe_006 {
  color : #fe8916; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_007, a:visited.title_ausgabe_007, a:hover.title_ausgabe_007 {
  color : #e0e32f; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_008, a:visited.title_ausgabe_008, a:hover.title_ausgabe_008 {
  color : #009999; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_009, a:visited.title_ausgabe_009, a:hover.title_ausgabe_009 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_010, a:visited.title_ausgabe_010, a:hover.title_ausgabe_010 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_011, a:visited.title_ausgabe_011, a:hover.title_ausgabe_011 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_012, a:visited.title_ausgabe_012, a:hover.title_ausgabe_012 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_013, a:visited.title_ausgabe_013, a:hover.title_ausgabe_013 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_014, a:visited.title_ausgabe_014, a:hover.title_ausgabe_014 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_015, a:visited.title_ausgabe_015, a:hover.title_ausgabe_015 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_016, a:visited.title_ausgabe_016, a:hover.title_ausgabe_016 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_017, a:visited.title_ausgabe_017, a:hover.title_ausgabe_017 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_018, a:visited.title_ausgabe_018, a:hover.title_ausgabe_018 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_019, a:visited.title_ausgabe_019, a:hover.title_ausgabe_019 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_020, a:visited.title_ausgabe_020, a:hover.title_ausgabe_020 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_021, a:visited.title_ausgabe_021, a:hover.title_ausgabe_021 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_022, a:visited.title_ausgabe_022, a:hover.title_ausgabe_022 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_023, a:visited.title_ausgabe_023, a:hover.title_ausgabe_023 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_024, a:visited.title_ausgabe_024, a:hover.title_ausgabe_024 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_025, a:visited.title_ausgabe_025, a:hover.title_ausgabe_025 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_026, a:visited.title_ausgabe_026, a:hover.title_ausgabe_026 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_027, a:visited.title_ausgabe_027, a:hover.title_ausgabe_027 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_028, a:visited.title_ausgabe_028, a:hover.title_ausgabe_028 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_029, a:visited.title_ausgabe_029, a:hover.title_ausgabe_029 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}

a:link.title_ausgabe_030, a:visited.title_ausgabe_030, a:hover.title_ausgabe_030 {
  color : #da487e; text-decoration : none; font-size : 14pt; font-weight : bold;
}


a:hover.title_ausgabe_001, a:hover.title_ausgabe_002, a:hover.title_ausgabe_003, a:hover.title_ausgabe_004,
a:hover.title_ausgabe_005, a:hover.title_ausgabe_006, a:hover.title_ausgabe_007, a:hover.title_ausgabe_008,
a:hover.title_ausgabe_009, a:hover.title_ausgabe_010, a:hover.title_ausgabe_011, a:hover.title_ausgabe_012,
a:hover.title_ausgabe_013, a:hover.title_ausgabe_014, a:hover.title_ausgabe_015, a:hover.title_ausgabe_016,
a:hover.title_ausgabe_017, a:hover.title_ausgabe_018, a:hover.title_ausgabe_019, a:hover.title_ausgabe_020,
a:hover.title_ausgabe_021, a:hover.title_ausgabe_022, a:hover.title_ausgabe_023, a:hover.title_ausgabe_024,
a:hover.title_ausgabe_025, a:hover.title_ausgabe_026, a:hover.title_ausgabe_027, a:hover.title_ausgabe_028,
a:hover.title_ausgabe_029, a:hover.title_ausgabe_030
 {
  text-decoration : none; font-size : 15pt; font-weight : bold;
}

a:visited {
  color : #6D6F71;
  text-decoration : none;  
}

a:hover, a:focus {
  color : #6D6F71;
  font-weight : bold;
  text-decoration : none;
}

a:active {
  font-weight : bold;
}

/* Ausgaben
 * 
 * jede Farbe zeigt bestimmte Elemente in einer bestimmten Farbe. Sie 
 * werden durch diese Klassen definiert.
 *
 */
 
a:link.ausgabe_001, a:visited.ausgabe_001, a:hover.ausgabe_001, a:active.ausgabe_001 {
  color : #00AEEF;
}

a:link.ausgabe_002, a:visited.ausgabe_002, a:hover.ausgabe_002, a:active.ausgabe_002 {
  color : #66CC66;
}

a:link.ausgabe_003, a:visited.ausgabe_003, a:hover.ausgabe_003, a:active.ausgabe_003 {
  color : #da487e;
}

a:link.ausgabe_004, a:visited.ausgabe_004, a:hover.ausgabe_004, a:active.ausgabe_004 {
  color : #4B08A1;
}

a:link.ausgabe_005, a:visited.ausgabe_005, a:hover.ausgabe_005, a:active.ausgabe_005 {
  color : #CC0000;
}

a:link.ausgabe_006, a:visited.ausgabe_006, a:hover.ausgabe_006, a:active.ausgabe_006 {
  color : #fe8916;
}

a:link.ausgabe_007, a:visited.ausgabe_007, a:hover.ausgabe_007, a:active.ausgabe_007 {
  color : #e0e32f;
}

a:link.ausgabe_008, a:visited.ausgabe_008, a:hover.ausgabe_008, a:active.ausgabe_008 {
  color : 009999;
}

a:link.ausgabe_009, a:visited.ausgabe_009, a:hover.ausgabe_009, a:active.ausgabe_009 {
  color : #00AEEF;
}

a:link.ausgabe_010, a:visited.ausgabe_010, a:hover.ausgabe_010, a:active.ausgabe_010 {
  color : #00AEEF;
}

a:link.ausgabe_011, a:visited.ausgabe_011, a:hover.ausgabe_011, a:active.ausgabe_011 {
  color : #00AEEF;
}

a:link.ausgabe_012, a:visited.ausgabe_012, a:hover.ausgabe_012, a:active.ausgabe_012 {
  color : #00AEEF;
}

a:link.ausgabe_013, a:visited.ausgabe_013, a:hover.ausgabe_013, a:active.ausgabe_013 {
  color : #00AEEF;
}

a:link.ausgabe_014, a:visited.ausgabe_014, a:hover.ausgabe_014, a:active.ausgabe_014 {
  color : #00AEEF;
}

a:link.ausgabe_015, a:visited.ausgabe_015, a:hover.ausgabe_015, a:active.ausgabe_015 {
  color : #00AEEF;
}

a:link.ausgabe_016, a:visited.ausgabe_016, a:hover.ausgabe_016, a:active.ausgabe_016 {
  color : #00AEEF;
}

a:link.ausgabe_017, a:visited.ausgabe_017, a:hover.ausgabe_017, a:active.ausgabe_017 {
  color : #00AEEF;
}

a:link.ausgabe_018, a:visited.ausgabe_018, a:hover.ausgabe_018, a:active.ausgabe_018 {
  color : #00AEEF;
}

a:link.ausgabe_019, a:visited.ausgabe_019, a:hover.ausgabe_019, a:active.ausgabe_019 {
  color : #00AEEF;
}

a:link.ausgabe_020, a:visited.ausgabe_020, a:hover.ausgabe_020, a:active.ausgabe_020 {
  color : #00AEEF;
}

a:link.ausgabe_021, a:visited.ausgabe_021, a:hover.ausgabe_021, a:active.ausgabe_021 {
  color : #00AEEF;
}

a:link.ausgabe_022, a:visited.ausgabe_022, a:hover.ausgabe_022, a:active.ausgabe_022 {
  color : #00AEEF;
}

a:link.ausgabe_023, a:visited.ausgabe_023, a:hover.ausgabe_023, a:active.ausgabe_023 {
  color : #00AEEF;
}

a:link.ausgabe_024, a:visited.ausgabe_024, a:hover.ausgabe_024, a:active.ausgabe_024 {
  color : #00AEEF;
}

a:link.ausgabe_025, a:visited.ausgabe_025, a:hover.ausgabe_025, a:active.ausgabe_025 {
  color : #00AEEF;
}

a:link.ausgabe_026, a:visited.ausgabe_026, a:hover.ausgabe_026, a:active.ausgabe_026 {
  color : #00AEEF;
}

a:link.ausgabe_027, a:visited.ausgabe_027, a:hover.ausgabe_027, a:active.ausgabe_027 {
  color : #00AEEF;
}

a:link.ausgabe_028, a:visited.ausgabe_028, a:hover.ausgabe_028, a:active.ausgabe_028 {
  color : #00AEEF;
}

a:link.ausgabe_029, a:visited.ausgabe_029, a:hover.ausgabe_029, a:active.ausgabe_029 {
  color : #00AEEF;
}

a:link.ausgabe_030, a:visited.ausgabe_030, a:hover.ausgabe_030, a:active.ausgabe_030 {
  color : #00AEEF;
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

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

tbody {
  border-top: none;
}

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

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

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #6D6F71;
}

hr.ausgabe_001 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #00AEEF;
}

hr.ausgabe_002 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #66CC66;
}

hr.ausgabe_003 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_004 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #4B08A1;
}

hr.ausgabe_005 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #CC0000;
}

hr.ausgabe_006 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #fe8916;
}

hr.ausgabe_007 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #e0e32f;
}

hr.ausgabe_008 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #009999;
}

hr.ausgabe_009 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_010 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_011 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_012 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_013 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_014 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_015 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_016 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_017 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_018 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_019 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_020 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_021 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_022 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_023 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_024 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_025 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_026 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_027 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_028 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_029 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

hr.ausgabe_030 {
  height: 1px; border-top : 0px; border-left : 0px; border-right : 0px;
  border-bottom: 1px dashed #da487e;
}

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

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}
