﻿body {
}

.divContents {
    width: 100%;
    text-align: center;
}

.tblInputBase {
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-spacing: 0;
    border: 1px solid gray;
    background-color: lightblue;
    vertical-align: top;
    width: 900px;
}

.tdInputBase {
    width: 50%;
}

.tdInputHeader {
    background-color: #3E3E42;
    color: white;
    padding: 5px;
    text-align: left;
}

.tblInputs {
    vertical-align: top;
}

.tdInputLabel {
    vertical-align: middle;
    width: 200px;
    text-align: right;
    color: #3E3E42;
}

.tdInputControls {
    width: 250px;
    vertical-align: top;
    margin-left: 120px;
    text-align: left;
}

.divContentHolder {
    width: 900px;
    display: block;
    margin: 0 auto;
    border: 1px solid gray;
    text-align: left;
    background-color: lightblue;
}

.divContentHolderHeader {
    box-sizing: border-box;
    width: 100%;
    top: 0;
    height: 30px;
    padding: 5px;
    background-color: #3E3E42;
    color: white;
    text-align: left;
}

/*image upload area*/

.thumb {
    height: 150px;
    width: auto;
    border: 1px solid #000;
    margin: 10px 5px 0 0;
}

#progress_bar {
    margin: 10px 0;
    padding: 3px;
    border: 1px solid #000;
    font-size: 14px;
    clear: both;
    opacity: 0;
    -moz-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
}

    #progress_bar.loading {
        opacity: 1.0;
    }

    #progress_bar .percent {
        background-color: #ff6a00;
        color: white;
        font-weight: bold;
        height: auto;
        width: 0;
    }
/*End of image upload area*/


/*Input styles*/
select {
    width: 248px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 2px;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana;
    box-shadow: 1px 1px 5px #CCC;
}

    select:hover {
        width: 248px;
        height: 35px;
        border-radius: 3px;
        padding: 2px;
        border: 1px solid #CCC;
        font-weight: 200;
        font-size: 15px;
        font-family: Verdana;
        box-shadow: 1px 1px 5px #CCC;
    }

input[type='text'], input[type='password'] {
    width: 240px;
    height: 26px;
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 3px;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana;
    box-shadow: 1px 1px 5px #CCC;
}

    input[type='text']:hover, input[type='password']:hover {
        width: 240px;
        height: 26px;
        border-radius: 3px;
        border: 1px solid #aaa;
        padding: 3px;
        font-weight: 200;
        font-size: 15px;
        font-family: Verdana;
        box-shadow: 1px 1px 5px #CCC;
    }

/*CSS for textarea*/

textarea {
    width: 200px;
    height: 90px;
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 8px;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana;
    box-shadow: 1px 1px 5px #CCC;
}

    textarea:hover {
        width: 200px;
        height: 90px;
        border-radius: 3px;
        border: 1px solid #aaa;
        padding: 8px;
        font-weight: 200;
        font-size: 15px;
        font-family: Verdana;
        box-shadow: 1px 1px 5px #CCC;
    }

/*input type for submit button*/

input[type='submit'] {
    width: 150px;
    border: 2px solid white;
    background-color: #CCC;
    height: 34px;
}

    input[type='submit']:hover {
        width: 150px;
        height: 34px;
        border: 2px solid white;
        background-color: #000000;
        color: #fff;
    }
/*End of Input styles*/
