/*
    project: vattenfall accessibility project
    type: stylesheet
    description: basic styles for all browsers with default values but without positioning
    last edited: 05.08.2005, Stefan Heimann
    
    (c) cosmoblonde 2005. All rights reserved.
*/


/* ----------  PART I: global class definitions  ---------- */
/* visibility classes */
.hide {
    width: 100em;
    height: 1em;
    overflow: hidden;
    position: absolute;
    left: -200em;
}
h2.hide,
h3.hide{
	line-height:1px;
}
.invisible {
    visibility: hidden;
}
.show {
    display: block;
}
/* for clearing issues */
p.clear{
	height:0px;
	clear:both;
	margin:0 !important;
	padding:0;
}
.clear:after {
    content: ""; 
    clear: both; 
    display: block; 
    height: 1px; 
    font-size: 0;
    visibility: hidden;
}
/* error messages */
.error {
    background-color: transparent;
    color: #963232;
}

/* ----------  PART II: global element definitions  ---------- */
/* global whitespace reset !!! */
* {
    margin: 0;
    padding: 0;
}

/* body */
body {
    background-color: #fff;
    color:#000;
    font-size: 100.01%;
    line-height: 1.4;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
   font-weight:normal;
}

h2 {
    font-size: 115%;
    line-height: 115%;
    color:#ff9900;
    margin-bottom: 0.4em;
}
h3 {
    font-size: 90%;
    line-height: 110%;
    margin-bottom: 0.3em;
    font-weight: bold;
}

h4 {
    font-size: 75%;
    font-weight: bold;
    margin-bottom: 0.3em;
}
strong {
    font-style: normal;
    font-weight: bold;
}

p {
	font-size: 75%;
	margin-bottom: 0.3em;
}

div{
	/* only for IE with enlarged display option */
	word-wrap:break-word;	
}

/* text - inline */
abbr, acronym {
    border-bottom: 1px dotted #4b4b4b;
    font-style: normal;
}
em {
    font-style: italic;
    font-weight: inherit;
}
code, kbd, pre, samp, var {
    font-family: Arial, Helvetica, monospace;
    font-size: 110%;
    font-weight: bold;
}
q, cite {
    font-style: italic;
    quotes: "\201E" "\201C" "\201A" "\2018"; /* german punctuation */
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}


/* text - block */
address {
    display: block;
    font-style: normal;
}
blockquote {
    font-style: italic;
}

/* links - specificity: "LVHAF"! */
a {
    text-decoration: none;
}
a:link, a:visited {
    background-color: transparent;
    color: #135ba6;
}
a:hover {
    background-color: transparent;
    color: #3ea345;
}
a:active, a:focus {
    background-color: transparent;
    color: #f90;
}




/* horizontal rule */
hr {
    display: none;
}

/* images */
img {
    border: none;
    color: #000;
}

/* lists */
ol {
  	list-style-type: decimal;
}
ul {
    list-style-type: disc;
}
li { 
	list-style-position:outside;
}

/* forms */
fieldset {
    border: 0 solid; /* required by opera 7 */
}
legend {
    display: block;
}
label, input, select {
    font-weight: normal;
    line-height: normal;
}
optgroup {
    font-style: normal;
    font-weight: bold;
}

/* tables */
table {
    caption-side: top;
    empty-cells: show;
}
caption {
    font-weight: bold;
    text-align: left;
}
th, td {
   vertical-align: top;
    text-align: left;
}
