div.ins_panel {
    border: 1px solid black;
    background-color: #CCCCCC;
}

div.lavPanel {
    position: absolute;
    left: 10;
    top: 10;
    background: gray;
    padding: 10px;
    border: 1px solid black;
    z-index: 1000;
}

div.hidden_panel {
    left: -1000px;
    top: -1000px;
}

div.infoPanel {
    position: absolute;
    left: 1;
    top: 1;
    background: white;
    padding: 10px;
    border: 1px solid black;
}

div.msgPanel {
    position: absolute;
    left: 200px;
    top: 200px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-width: 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

div.msgPanel p {
    margin: 0;
    padding: 5px 0 0 0;
    text-align: right;
}

div.msgPanel a.b_simulate {
    text-decoration: none;
    padding: 3px 8px;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-weight: bold;
    cursor: pointer;
}

div.msgPanel a.b_simulate:hover {
    background-color: #d5d5d5;
}