/*
    project: www.achtgrau.de
    type: stylesheet
    description: basic styles for all browsers with default values but without positioning
    last edited: 22.03.2005, Stefan Heimann
    
    (c) ACHTGRAU 2003-2009. All rights reserved.
*/


/* ----------  PART I: global class definitions  ---------- */
/* company name */
.achtgrau {
    text-transform: uppercase;
}
/* visibility classes */
.hide {
    width: 100em;
    height: 1em;
    overflow: hidden;
    position: absolute;
    left: -200em;
}
.invisible {
    visibility: hidden;
}
.show {
    display: block;
}
/* error messages */
.error {
    background-color: transparent;
    color: #600;
}
/* temp style */
.draft {
    background-color: transparent;
    color: #f00 !important;
}


/* ----------  PART II: global element definitions  ---------- */
/* body */
body {
    background-color: #fafafa;
    color: #000;
    font-size: 100.01%;
    line-height: 1.4;
    margin: .5em 1em;
    padding: 0;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: .5em 0;
    padding: 0;
}
h1 {
    font-size: 135%;
    line-height: 135%;
}
h2 {
    font-size: 125%;
    line-height: 125%;
}
h3 {
    font-size: 105%;
    line-height: 105%;
}
h4 {
    font-size: 100%;
    line-height: 100%;
}

/* text - inline */
abbr, acronym {
    border-bottom: 1px dotted #000;
    font-style: normal;
}
em {
    font-style: italic;
    font-weight: inherit;
}
code, kbd, pre, samp, var {
    font-family: "Courier New", Courier, monospace;
    font-size: 110%;
    font-weight: bold;
}
q, cite {
    quotes: "\201E" "\201C" "\201A" "\2018"; /* german punctuation */
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}
strong {
    font-style: normal;
    font-weight: bold;
}

/* text - block */
address {
    display: block;
    font-style: normal;
}
address, blockquote, p {
    margin: .5em 0;
    padding: 0;
}
blockquote {
    padding-left: 1em;
}

/* links - specificity: "LVHAF"! */
a:link {
    background-color: transparent;
    color: #036;
}
a:visited {
    background-color: transparent;
    color: #639;
}
a:hover {
    background-color: #036;
    color: #fafafa;
}
a:active, a:focus {
    background-color: transparent;
    color: #600;
}

/* horizontal rule */
hr {
    display: none;
}

/* images */
img {
    border: none;
}

/* objects */
object {
    margin: 0;
    padding: 0;
}

/* lists */
ol, ul {
    margin: .5em 0;
}
ol {
	list-style-type: decimal;
}
ul {
    list-style-type: disc;
}
li {
    margin: 0;
    padding: 0;
}

/* forms */
form {
    margin: .5em 0;
    padding: 0;
}
fieldset, legend, label, input, select, textarea, button {
    margin: 0;
    padding: 0;
}
legend {
    display: block;
    font-weight: bold;
}
label, input, select {
    font-weight: bold;
    line-height: normal;
}

/* tables */
table, caption {
    margin: .5em 0;
    padding: 0;
}
table {
    empty-cells: show;
}
caption, th {
    font-weight: bold;
    text-align: left;
}
th, td {
    margin: 0;
    padding: 0 .2em;
}

