body {
    font-family: sans-serif;
    font-size: 11pt;
}

.container {
    background: #eeeeec;
    border: 1px solid gray;
    width: 600px;
    margin: auto;
    padding: 32px;
    
    border-radius: 8px 8px 8px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
}

.title {
    display: block;
    margin: auto;
}

p {
	text-align: center;
}

.upload-btn {
    width: 245px;
    height: 25px;
    background: url(bars.png);
    border: none;
    cursor: pointer;
}

.upload-btn:hover {background-position: 0px -25px;}
.upload-btn:active {background-position: 0px -50px;}
.upload-btn:disabled {background-position: 0px -75px;}

#progress-out {
    width: 245px;
    height: 25px;
    background: url(bars.png);
    background-position: 0px -100px;
    margin: auto;
}

#progress-in {
    width: 100%;
    height: 100%;
    background: url(bars.png);
    background-position: 0px -125px;
}

#progress-container {
    display: none;
}

#overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: black;
    color: #eeeeec;
    display : none;
}

#overlay.show {
    display: block;
    opacity: 0.6;
}

#overlay-message {
    background: #eeeeec;
    color: black;
    padding: 32px;
    width: 200px;
    height: 152px;
    
    border-radius: 8px 8px 8px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -76px;
    text-align: center;
    display: none;
}

#overlay-message.show {
    display: block;
}

#file-form input[type="text"] {
    width: 250px;
}

#file-form textarea {
    width: 300px;
    height: 200px;
}
