#fileupload {
    width: 18%;
    display: inline-block;
    vertical-align: top;
    margin-left: 1em;
}

.dropzoneDefault {
    border: 0.333em dashed #b4c62c;
    opacity: 1;
}

.dragover {
    border: 0.333em dashed yellow;
}

.inputFiles {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
}

#dropzone {
    height: 12em;
    font-weight: bold;
    font-size: 1em;
    position: relative;
    border-radius: 10px;
}

.uploadedFile {
    border: 1px solid #000000;
    border-radius: 0.3333em;
    background-color: #BFBFBF;
    padding: 0.6667em;
    margin: 1em 0 1em 0;
    position: relative;
}

.fileName {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
    display: inline-block;
}

.deleteIcon {
    background: url("../bundles/upjerssupportmain/images/xbutton1.png") no-repeat;
    position: absolute;
    right: 0;
    height: 16px;
    width: 16px;
    display: inline-block;
    margin-right: 0.6667em;
    cursor: pointer;
}