/* 
    Document   : style
    Created on : 28.02.2014, 20:29:56
    Author     : moritzmueller
    Description:
    Purpose of the stylesheet follows.
*/
* {
   padding:0;
   margin:0;
}

@font-face {
   font-family: 'Source Sans Pro';
   src: url("SourceSansPro-Light.ttf");
}

body{
    background-color: #fff;
}

h1{
    font-family: "Source Sans Pro", Times;
    font-size: 70px;
}

h2{
    font-family: "Source Sans Pro", Times;
    font-size: 45px;
}

p{
    font-family: "Source Sans Pro", Times;
    font-size: 16px;
}

a{
    text-decoration: none;
}

table{
    width: 100%;
    font-family: "Source Sans Pro", Times;
    font-size: 21px;
    color: #000;
    border: 0;
}

tr:hover{
    background-color: #f1f1f1;
}

#header h1{
    color: #fff;
}

#header a{
    color: inherit;
    text-decoration: none;
}

.halfTransparent{
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    font-size: 40px;
}

.halfTransparent:hover{
    color: rgba(255, 255, 255, 0.5);
}



#header{
    float: left;
    width: 100%;
    height: 200px;
    background-color: #00aa33;  /* #00aa44 */
    padding: 20px 0 20px 20px;
}

#logo{
    float: left;
}

#text{
    float: left;
    margin: 50px 0 0 50px;
}

#login{
    float: right;
    margin: 0 30px 0 50px;
    color: rgba(255, 255, 255, 0.2);
}

#login:hover{
    color: rgba(255, 255, 255, 0.5);
}

#sidebar{
    float: left;
    width: 15%;
    height: 30px;
}

#content{
    float: left;
    margin-top: 30px;
    width: 70%;
}

#content h2{
    color: #222;
}

#uploadForm{
    margin-top: 30px;
}

#DownloadButton{
    margin-top: 30px;
}