.uploadH2{
    background: linear-gradient(transparent 70%, #a7d6ff 70%);
    width: 370px;
}

.upload{
    margin: auto;
    background-color: #fff;
    text-align: center;
    height: auto;
    padding: 10px;
}

.inputarea{
    vertical-align: middle;
}

.fileText{
	float:left;
}

.uploadButton {
    display:inline-block;
    position:relative;
    overflow:hidden;
    border-radius:3px;
    background:#099;
    color:#fff;
    text-align:center;
    padding:1px;
    line-height:30px;
    width:80px;
    cursor:pointer;
    margin-left:50px;
    float:left;

}

.uploadButton:hover {
    background:#0aa;
}

.uploadButton input[type=file] {
    position:absolute;
    top:0;
    left:0;
    cursor:pointer;
    opacity:0;
    float:left;
    height: 50px;
}
.uploadValue {
    display:none;
    background:rgba(255,255,255,0.2);
    border-radius:3px;
    padding:3px;
    color:#ffffff;
}

#dragandrophandler
{
    width:850px;
    height: 80px;
    text-align:left;
    vertical-align:middle;
    padding:10px;
    margin-bottom:10px;
    margin: 0 auto;
    font-size:200%;
    position:absolute;
}

.progressBar {
    width: 200px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    display:inline-block;
    margin:0px 10px 5px 5px;
    vertical-align: -webkit-baseline-middle;
}

.progressBar div {
    height: 100%;
    color: #fff;
    text-align: right;
    line-height: 22px; /* same as #progressBar height if we want text middle aligned */
    width: 0;
    background-color: #0ba1b5; border-radius: 3px;
}
.statusbar
{
    min-height:25px;
    float:right;
    width:680px;
    margin-left:0;
}

.filename
{
    display:inline-block;
    vertical-align:top;
    width:680px;
    float:left;
    height:32px;
    border:1px solid #4c96ff;
    margin-left:0px;
}
.filesize
{
    display:inline-block;
    color:#30693D;
    width:100px;
    margin-left:10px;
    margin-right:5px;
}

.abort{
    display       : inline-block;
    font-size     : 15pt;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 10px 30px;   /* 余白       */
    background    : indianred;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .2s;         /* なめらか変化 */
    box-shadow    : 1px 1px 3px indianred;  /* 影の設定 */
    border        : 2px solid indianred;    /* 枠の指定 */
    padding:4px 15px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}
.abort:hover {
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : indianred;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
}

.button {
    display       : inline-block;
    font-size     : 15pt;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 8px 50px;
    background    : #25a4da;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .2s;         /* なめらか変化 */
    box-shadow    : 1px 1px 3px #666666;  /* 影の設定 */
    border        : 2px solid #25a4da;    /* 枠の指定 */
    margin: 30px 20px;
    vertical-align:baseline;
    -moz-border-radius:10px;
    -webkit-border-radius:30px;
}
.button:hover {
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : #25a4da;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
}

.button2 {
    display       : inline-block;
    font-size     : 15pt;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 8px 80px;
    background    : #00fa9a;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .2s;         /* なめらか変化 */
    box-shadow    : 1px 1px 3px #666666;  /* 影の設定 */
    border        : 2px solid #00fa9a;    /* 枠の指定 */
    margin: 30px 20px;
    vertical-align:baseline;
    -moz-border-radius:10px;
    -webkit-border-radius:30px;
}
.button2:hover {
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : #00fa9a;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
}

.modal-content {
    position:relative;
    display:none;
    width:630px;
    max-height:580px;
    margin:30px;
    padding:10px 20px;
    border:2px solid #aaa;
    background:#fff;
    overflow:auto;
    text-align: center;
}

.modal-overlay {
    z-index:1;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    background-color:rgba(0,0,0,0.75);
}

.modal-wrap {
    z-index:2;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:auto;
}

.modal-open {
}

.modal-open:hover {
    cursor:pointer;
    color:#f00;
}

.modal-close {

}

.modal-content p{
    font-size: 24px;
    color: #364e96;/*文字色*/
    border: solid 2px #364e96;/*線色*/
    padding: 2px;/*文字周りの余白*/
    border-radius: 0.5em;/*角丸*/
    width: 50px;
}

.modal-close:hover {
    cursor:pointer;
    color:#f00;
}

.modal-content p{
    font-size: 15px;
    text-align: left;
    margin: auto 2%;
}

#loader-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #d3d3d3;
    opacity: 0.9;
    z-index: 1;
}
#loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    color: #fff;
    z-index: 2;
}