body {
    margin: 0;
    overflow: hidden;
    background-color: #333333;
}
.textLabel {
    font-size: 14px;
    font-family: sans-serif;
    color: #666666;
    float: none;
    clear: both;
    text-align: left;
}

#prompt_window * {
    margin: 0;
    padding: 0;
}
#prompt_window {
    width: 290px;
    position: absolute;
    /*margin:  auto;*/
    z-index: 3;
    visibility: hidden;
}
#prompt {
    background-color: #FFFFFF;
    /*width: 100%;*/
    margin: 0px;
    padding: 20px 10px 10px 10px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#prompt input{
    color: #555;
    font-weight: 200;
    font-size: 24px;
    line-height: 1;
    width: 100%;
    padding: 3px;
    margin-top: 2px;
    /*margin-right: 6px;
    margin-bottom: 16px;*/
    border: 1px solid #e5e5e5;
    background: #fbfbfb;
    outline: 0;
    -webkit-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
    box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
}
#iconBox {
    width: 100%;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
    text-align: center;
}

#msgTextBox {
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: auto;

    line-height: 110%;
    text-align: left;
    width: 100%;
}

#msgText {
    /*line-height: 15px;*/
    white-space: pre; /* CSS 2.0 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3.0 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -hp-pre-wrap; /* HP Printers */
    word-wrap: break-word; /* IE 5+ */
    word-break: break-all;
}

#userInfoTextBox {
    margin: 10px 0px;
    width: 100%;
}


#userInfoNameBox {
    margin: 10px 0px;
    width: 100%;
}

#submitBtnBox {
    margin-top: 10px;
    width: 100%;
}

#submitBtn {
    /* テキストの下端に揃える IEとかで下にへんな余白がでるのでこの設定で消してる*/
    vertical-align:text-bottom;
    width: 100%;
    cursor: hand;
}

.buttonAlign {
    /*text-align: center;*/
}