@charset "UTF-8";
/*
Author:    Sebastian Dubbel
E-Mail:    sebastiandubbel@googlemail.com
Encoding:  UTF-8
*/


/*-------------------------------------------------------------------

RESET DEFAULT STYLES

-------------------------------------------------------------------*/
/* Reset margin and padding of all HTMl elements */
/* CSS Reset, Eric Meyer. URL: http://meyerweb.com/eric/thoughts/2008/01/15/resetting-again/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* suppress outline on clicked links. 
   see: http://people.opera.com/patrickl/experiments/keyboard/test#outline-suppressed-on-active */
a:hover, a:active {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol, ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}


/*-------------------------------------------------------------------

WEBFONTS

-------------------------------------------------------------------*/
@font-face {
    font-family: 'Miso';
    src: url('webfonts/miso-bold-wf.eot');
    src: url('webfonts/miso-bold-wf.eot?#iefix') format('embedded-opentype'),
         url('webfonts/miso-bold-wf.woff') format('woff'),
         url('webfonts/miso-bold-wf.ttf') format('truetype'),
         url('webfonts/miso-bold-wf.svg#MisoBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MisoLight';
    src: url('webfonts/miso-light-wf.eot');
    src: url('webfonts/miso-light-wf.eot?#iefix') format('embedded-opentype'),
         url('webfonts/miso-light-wf.woff') format('woff'),
         url('webfonts/miso-light-wf.ttf') format('truetype'),
         url('webfonts/miso-light-wf.svg#MisoLight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Miso';
    src: url('webfonts/miso-regular-wf.eot');
    src: url('webfonts/miso-regular-wf.eot?#iefix') format('embedded-opentype'),
         url('webfonts/miso-regular-wf.woff') format('woff'),
         url('webfonts/miso-regular-wf.ttf') format('truetype'),
         url('webfonts/miso-regular-wf.svg#MisoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*-------------------------------------------------------------------

SCREEN STYLES

-------------------------------------------------------------------*/
@media screen {


/*-------------------------------------------------------------------

GLOBAL BLOCK ELEMENTS

-------------------------------------------------------------------*/

body {
	background-color: #107184;
	color: #fff;
	text-align: center;
	font-family: 'Miso', Helvetica, Arial, sans-serif;
}

#container {
	background-color: #fff;
	color: #000;
	border-top: 25px solid #18bcdc;
}

#container .center-container {
	width: 545px;
	margin: 0 auto;
	padding: 100px 0;
	text-align: left;
}

.vcard {
	margin-left: 190px;
}


/*-------------------------------------------------------------------

GLOBAL CLASSES AND DEFINITIONS

-------------------------------------------------------------------*/

.margin-top_0 {
	margin-top: 0 !important;
}

.clearfix:after,
dl dd:after {
	content: "."; 
    display: block; 
    height: 0;
	line-height: 0;
    clear: both; 
    visibility: hidden;
}

/* class to hide html elements from screen, but leave them readable for screenreaders */
.invisible {
	position: absolute;
	left: -9000px;
	top: auto;
	width: 0px;
	height: 0px;
	overflow: hidden;
	display: inline;
	background-image: none;
}  


/*-------------------------------------------------------------------

TYPOGRAPHY

-------------------------------------------------------------------*/

h1 {
	width: 417px;
	height: 111px;
	text-indent: -9999px;
	background: url(../images/logo-heinz-willi-dubbel.png) no-repeat;
}

/* font-family and font-size */
p,
ol,
ul,
dl,
th,
td,
textarea {
	font-size: 26px;
	font-weight: normal;
	font-style: normal;
}

/* margins and line-height */
p,
ol,
ul,
dl,
form {
	margin-top: 30px;
	line-height: 30px;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

/* margins */
ul,
ol {
	padding-left: 18px;
}

ul ul, ul ol, ul dl,
ol ol, ol ul, ol dl,
dl ul, dl ol {
	font-size: 100%;
}

ul li,
ol li {
	margin-top: 5px;
}

ul li {
	list-style-type: disc;
}

ol li {
	list-style-type: decimal;
}

dl dt {
	width: 100px;
	float: left;
	font-weight: bold;
	clear: left;
}

dl dd {
	margin-left: 110px;
}

dl dt,
dl dd {
	margin-bottom: 5px;
}




/*-------------------------------------------------------------------

TYPOGRAPHIC CLASSES

-------------------------------------------------------------------*/
.adr_float {
	float: left;
	width: 70px;
}

.adr_float.long {
	width: 120px;
}


/*-------------------------------------------------------------------

IMAGES

-------------------------------------------------------------------*/
img {
	line-height: 0;
	color: #000;	/* set color so that it has enaough contrast to background-color */
}


/*-------------------------------------------------------------------

LINKS

-------------------------------------------------------------------*/

a,
a:link,
a:visited {
	color: #107184;
	text-decoration: none;
	border-bottom: 2px solid #107184;
}

a:hover, 
a:active,
a:focus {
	border-bottom-color: transparent;
	color: #17adcb;
}

a img {
	border: none;
}


}


/*-------------------------------------------------------------------

PRINT STYLES

-------------------------------------------------------------------*/
@media print {


/*-------------------------------------------------------------------

HIDDEN ELEMENTS THAT AREN´T PRINTED

-------------------------------------------------------------------*/
#footer,
#skipnav,
#nav {
	display: none;
}


/*-------------------------------------------------------------------

GLOBAL BLOCK ELEMENTS

-------------------------------------------------------------------*/

#container {
	font-size: 62.5%; /* set font-size to reasonable size so that 10px = 1em */
}


/*-------------------------------------------------------------------

GLOBAL CLASSES AND DEFINITIONS

-------------------------------------------------------------------*/

.margin-top_0 {
	margin-top: 0 !important;
}

.clearfix:after,
dl dd:after {
	content: "."; 
    display: block; 
    height: 0;
	line-height: 0;
    clear: both; 
    visibility: hidden;
}

/* clearing for IE6 */
.clearfix,
dl dd {
	height: 1%;
}

/* class to hide html elements */
.invisible,
.dont_print {
	display: none;
}

/* class to print hidden elements */
.do_print {
	display: block !important;
}



/*-------------------------------------------------------------------

TYPOGRAPHY

-------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	page-break-after: avoid;
}


/* font-family and font-size */
p,
ol,
ul,
dl,
th,
td,
textarea {
	
}

/* margins and line-height */
p,
ol,
ul,
dl,
form {
	margin-top: .5cm;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

/* margins */
ul,
ol {
	margin-top: .4cm;
}

ul ul, ul ol, ul dl,
ol ol, ol ul, ol dl,
dl ul, dl ol {
	font-size: 100%;
}

ul li,
ol li {
	margin-top: .1cm;
}

ul li {
	list-style-type: disc;
	margin-left: .5cm;
}

ol li {
	list-style-type: decimal;
	margin-left: .6cm;
}

dl ul {
	font-size: 100%;
}

dl dt {
	width: 3.5cm;
	float: left;
	font-weight: bold;
	clear: left;
}

dl dd {
	margin-left: 4cm;
}

dl dt,
dl dd {
	margin-bottom: .1cm;
}


/*-------------------------------------------------------------------

TYPOGRAPHIC CLASSES

-------------------------------------------------------------------*/

.adr_float {
	float: left;
	width: 2cm;
}

.adr_float.long {
	width: 3cm;
}

.system_msg {
	display: block;
	margin: .5cm 0;
	padding: .1cm .2cm;
	border: 2pt solid #f8bf05;
	color: #f8bf05;
}

.system_msg.error {
	border-color: #b11717;
	color: #b11717;	
}

.system_msg.success {
	border-color: #137f00;
	color: #137f00;	
}


/*-------------------------------------------------------------------

IMAGES

-------------------------------------------------------------------*/

img {
	line-height: 0;
}


/*-------------------------------------------------------------------

LINKS

-------------------------------------------------------------------*/

a,
a:link,
a:visited {
}

a:hover, 
a:active,
a:focus {
}

a img {
	border: none;
}

/* link to external website that is opened in a new window */
a.external_link {
}

/* show href attribute of external links */
a.external_link:after {
	content:" [URL: "attr(href)"]";
}


/*-------------------------------------------------------------------

FORMS 

-------------------------------------------------------------------*/

fieldset {
	border: solid 0 #fff;
}

fieldset legend {
	display: none;
}

label {
	display: block;	
}

input.text,
textarea {
	padding: .1cm;
	width: 6cm;
}

input.text.short {
	width: 2cm !important;	
}

form p {
	margin-top: .1cm;
}

form .error label,
form .error h3 {
	color: #b11717;
}

form .error input.text,
form .error textarea {
	border-color: #b11717;
	color: #b11717;
}


/*-------------------------------------------------------------------

TABLES

-------------------------------------------------------------------*/

table {
	border-collapse: collapse;
}

table th,
table td {
	line-height: 1.2;
}

thead th, thead td {
	
}

tbody th, tbody td {
	
}

thead th,
tbody th {
}

thead th:first-child, thead td:first-child,
tbody th:first-child, tbody td:first-child {
	border-right: none;	
}

tr.odd td {
}

tr.even td {
}


/*-------------------------------------------------------------------

FANCYBOX

-------------------------------------------------------------------*/

/* Fancybox zum Drucken komplett ausblenden
*  drucken nicht möglich, da Bilder als Background-image eingefügt werden und von den Browsern 
*  beim Druck entfernt werden */
#fancybox-tmp,
#fancybox-loading,
#fancybox-overlay,
#fancybox-wrap {
	display:none;
}

}
