/* Cool backgrounds at http://lea.verou.me/css3patterns/ */

body {}

#header {
    padding: 5px;
    background-color: #333;
    width: 100%;
    color: white;
    text-shadow: 2px 2px black;
    background: -webkit-repeating-linear-gradient( 145deg, #222, #222 10px, #333 10px, #333 20px);
    background: repeating-linear-gradient( -55deg, #222, #222 10px, #333 10px, #333 20px);
}

#header a {
    text-shadow: 0px 0px black;
    color: aqua;
}

#header > h1 {
    text-align: center;
}

#select-container {
    text-align: center;
}

#select-label {
    font-size: 20px;
}

#dist-select {
    font-size: 16px;
    cursor: pointer;
}

#distr-description {
    width: 90%;
    margin: auto;
    border: 2px solid black;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 1px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
    /* Neil: Change this to whatever you'd like */
    /*        -webkit-box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.75);*/
    /*    -moz-box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.75);*/
    /*    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.75);*/
}

#distr-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

#container {
    width: 100%;
}

#inputTable {
    margin: auto;
    font-size: 18px;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.75);
}

#inputTable input {
    font-size: 18px;
    background-color: #ffffcc;
}

#button-row {
    text-align: center;
}

#inputTable button {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
}

#compute {
    background-color: #369;
}

#clearFields {
    background-color: red;
}

#outputContainer {
    width: 70%;
    margin: auto;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

#output {
    font-size: 20px;
}

#outputLabel {
    font-weight: bold;
}

#plot_wrapper {
    width: 100%;
}

#plotter {
    margin: auto;
}

#plot_notes {
    font-size: 16px;
}

#footer {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    background-color: #e5f2ff;
    padding: 2px;
    border-top: 2px solid black;
    border-left: 2px solid black;
    border-top-left-radius: 8px;
}