@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro);

/* Disable Chrome Highlighting */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

#beta-sign {
    padding: 2px;
    color: #E51219;
    position: absolute;
    top: -10px;
    right: -35px;
    font-size: 16px;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* Body */
body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #ecf0f1;
}

b {
    font-weight: bold;
}

a {
    color: #3498db;    
}

a:hover {
    color: #2980b9;
}

/* Wrapper */
#wrapper {
    width: 960px;
    height: 100%;
    margin: auto;
}

/* Header */
#header {
    border-top: none !important;
    z-index: 5;
    height: 90px;
    text-align: center;
    padding: 10px;
    position: relative;
    background: #fff url('../img/logo.jpg') no-repeat 15px center;
    background-size: 120px 88px;
    
    border-bottom: 2px solid #E51219;
}

#header h1, #header h2 {
    margin: 5px;
    font-weight: normal;
    font-size: 32px;
    position: relative;
    display: inline-block;
    color: #000;
}

#header h2 {
    font-size: 24px;
}

#header #user {
    position: absolute;
    top: 10px;
    right: 10px;
}

#header #user .name {
    display: inline-block;
    padding: 5px;
    text-align: left;
}

#header #user .logout {
    margin-left: 5px;
    display: inline-block;
    text-decoration: none;
}

#header #kontakt {
    position: absolute;
    right: 10px;
    bottom: 10px;
    text-decoration: none;
}

/* Input Styles */
input[type=text],
input[type=password] {
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd;
    width: 120px;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    
    transition: border 0.2s;
}

input[type=text]:focus,
input[type=password]:focus {
    border: 1px solid #3498db;
}

input.highlight {
    border: 1px solid #f1c40f !important;
}

.button {
    border: 1px solid #bdc3c7;
    padding: 5px;
    cursor: pointer;
    background-color: #fff;
    color: #3498db;
    text-decoration: none;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    
    transition: background-color 0.2s, border 0.2s;
}

.button:hover {
    border: 1px solid #95a5a6;
    background-color: #f0f0f0;
}

#tooltip {
    position: absolute;
    padding: 5px;
    display: none;
    background: #fff;
    border: 1px solid #bdc3c7;
    z-index: 20;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    pointer-events: none;
}

#tooltip:after, #tooltip:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

#tooltip:after {
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
#tooltip:before {
    border-bottom-color: #bdc3c7;
    border-width: 11px;
    margin-left: -11px;
}