@import url(reset.css); /* Reset CSS */

/* COLORS ----------------------------------------------------------------
    
    #3baff4 (Hellblau)
    #7df7ff (Türkis)
    #fff (Weiß)
    #9905b3 (Violett)
    
*/

/* BODY ------------------------------------------------------------------ */

body {
    background: #3baff4 url(img/bg-body.png) repeat 0 0;
    color: #fff;
    font-family: 'AllerRegular', 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    line-height: 1.5;
    text-shadow: 1px 0 3px rgba(0,0,0,0.45);
}

/* Convert with http://www.fontsquirrel.com/fontface/generator */
@font-face {
    font-family: 'AllerRegular';
    src: url('fonts/aller_rg-webfont.eot');
    src: local('Aller_Rg'), local('Aller Regular'),
        url('fonts/aller_rg-webfont.woff') format('woff'),
        url('fonts/aller_rg-webfont.ttf') format('truetype'),
        url('fonts/aller_rg-webfont.svg#allerregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AllerItalic';
    src: url('fonts/aller_it-webfont.eot');
    src: local('Aller_It'), local('Aller Italic'),
        url('fonts/aller_it-webfont.woff') format('woff'),
        url('fonts/aller_it-webfont.ttf') format('truetype'),
        url('fonts/aller_it-webfont.svg#alleritalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'AllerBold';
    src: url('fonts/aller_bd-webfont.eot');
    src: local('Aller_Bd'), local('Aller Bold'),
        url('fonts/aller_bd-webfont.woff') format('woff'),
        url('fonts/aller_bd-webfont.ttf') format('truetype'),
        url('fonts/aller_bd-webfont.svg#allerbold') format('svg');
    font-weight: normal;
    font-style: bold;
}

/* HEADINGS ------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #7df7ff;
}

h1 { font-size: 30px; margin-bottom: 20px; line-height: 1; }
h2 { font-size: 24px; margin-bottom: 12px; }
h3 { font-size: 16px; margin-bottom: 5px; }

/* TYPOGRAPHY ----------------------------------------------------------- */

p { margin-bottom: 1.5em; }

blockquote { 
    font-family: 'AllerItalic', Palatino, Georgia, serif;
    font-style: italic;
    font-size: 18px;
}
q { font-style: italic; }

strong {
    font-weight: normal;
    color: #ffe752;
}
em, dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }
abbr { border-bottom: 1px dotted #666; cursor: help; }

li { margin-bottom: 5px; }
li ul, li ol { margin: 0 0 0 25px; }
ul, ol { margin-bottom: 1.5em; margin-left: 25px; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }

ins { text-decoration: underline; }
del { text-decoration: line-through; }

/* LINKS ---------------------------------------------------------------- */

a:link { color: #7df7ff; text-decoration: underline; }
a:visited { color: #7df7ff; text-decoration: underline; }
a:hover { color: #fff; }
a:focus { color: #fff; }
a:active { color: #fff; }

/* IMAGES & VIDEOS ------------------------------------------------------ */

img {
    border: 5px solid #5acbf4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

img.left { float: left; margin: 0 25px 25px 0; }
img.right { float: right; margin: 0 0 25px 25px; }

/* FORMS ---------------------------------------------------------------- */

label { font-weight: bold; }

fieldset.col1 {
    float: left;
    width: 220px;
}

fieldset.col2 {
    float: right;
    width: 360px;
}

input, textarea {
    display: block;
    border: 5px solid #5acbf4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    font-family: 'AllerRegular', 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 1.0em;
    line-height: 1.5;
}

input {
    width: 200px;
}

input:hover, input:focus,
textarea:hover, textarea:focus {
    background: rgba(255,255,255,0.5);
}

textarea {
    width: 340px;
    height: 200px;
    margin-bottom: 5px;
}

input.button { width: auto; }

.error, .notice, .success { border: 5px solid #ddd; }
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.error-box { color: #8a1f11; padding: .8em; margin-bottom: 1em; }
.info-box { color: #7df7ff; }
.clear { clear: both; }

/* Scalable Button */
.awesome, .awesome:visited {
    background: #590368 url(img/button-overlay.png) repeat-x;
    border: 0;
    display: inline-block;
    padding: 5px 10px 6px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -khtml-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;
}
 
.awesome:hover { background-color: #7c0491; color: #fff; }
.awesome:active { margin-top: 1px; }

/* TABLES --------------------------------------------------------------- */

table { margin-bottom: 1.5em; width: 100%; }
th { font-weight: bold; text-align: left; background: #7df7ff; }
th, td, caption { padding: 0.3em 0.5em; }
.preis { text-align: right; }
tr { border-bottom: 1px solid #7df7ff; }
tfoot { font-style: italic; }
caption { background:; font-weight: bold; }

/* LAYOUT --------------------------------------------------------------- */

#page { width: 960px; }

#header {
    height: 200px;
    background: url(img/wave-header.png) no-repeat 200px 0;
    position: relative;
    margin-bottom: 25px;
}

#logo {
    background: url(img/logo.png) no-repeat 0 0;
    width: 465px;
    height: 91px;
    position: absolute;
    left: 25px;
    top: 25px;
    text-indent: -9999px;
}

#logo a {
    width: 465px;
    height: 91px;
    display: block;
}

#main {
    width: 610px;
    float: right;
    margin-bottom: 25px;
}

#side {
    width: 350px;
    float: left;
    margin: 0;
}

#footer {
    clear: both;
    border-top: 1px solid #71c7f8;
    margin-top: 25px;
    margin-left: 25px;
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    text-shadow: none;
}

#footer a {
    text-decoration: none;
    color: #fff;
}

#telefon {
    background: url(img/wave-nav.png) no-repeat 0 -15px;
    padding-top: 90px;
    font-size: 24px;
    font-weight: bold;
}

#telefon span {
    color: #7df7ff;
    display: block;
}

#telefon p { margin-left: 25px; }

#footer p { margin: 0; }

#map {
    width: 600px;
    height: 320px;
    border: 5px solid #5acbf4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 1.5em;
}

/* NAVIGATION ----------------------------------------------------------- */

#nav {
    list-style: none;
    font-size: 16px;
    text-shadow: 1px 0 3px rgba(0,0,0,0.75);
    margin-left: 25px;
    padding-right: 25px;
}

#nav ul {
    font-size: 0.90em;
}

#nav a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 3px;
    display: block;
}

#nav a:hover,
#nav a.active {
    color: #7df7ff;
}

#toplink {
    background: url(img/toplink.png) no-repeat 0 center;
    padding-left: 18px;
}
