.comment, .commentBody{
    width: 80%;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    background-color:  #fdfdfd;;
    margin: 20px auto 50px auto;
    padding: 20px;
}

.inputForm{
    font-size: 16px;
    margin: 10px 0px;
    padding: 6px 12px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.comment input{
    width: 50%;
    height: 20px;
}

.comment textarea{
    width: 90%;
    height: 200px;
}

.comment .commentBtn{
    width: 30px;
    text-align: center;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
}

.comment .commentBtn:hover{
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.commentItem{
    width: 100%;

}

.commentItemBody{
    width: 90%;
    word-wrap: break-word;
    margin-top: 10px;
}