/* original idea from http://www.phpjabbers.com/phpexample.php?eid=19 */
#fdbk_tab {
    background-image: url(feedback_trans_tab.png);
    background-color: #F60;
    color: white;
    cursor: pointer;
    height: 102px;
    left: 0px;
    margin-left: -7px;
    overflow: hidden;
    position: fixed;
    text-indent: -100000px;
    top: 20%;
    width: 42px;
    z-index: 100;
}
#fdbk_tab:hover {
    margin-left: -4px;
}
#fdbk_close {
    background-image: url(feedback-close.png);
    cursor: pointer;
    height: 42px;
    float: right;
    outline: none;
    overflow: hidden;
    width: 42px;
    margin: -8px 25px 0 0;
}
#fdbk_close:hover {
    background-position: -42px 0px;
}
#fdbk_header {
    background-image: url(title-back.gif);
    background-repeat: repeat-x;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    height: 40px;
    padding-left: 20px;
    padding-top: 10px;
    width: 100%;
}
#fdbk_header .text {
    float: left;
    margin: 0;
    padding: 0;
    font-variant: small-caps;
}
.clear {
    clear: both;
    margin: -15px 0 -15px 0;
    padding: 0;
}

/* stolen from http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/ */
.black_overlay{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=70);
}

.white_content {
    width: 680px;
    display: none;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    padding: 0;
    background-color: #EEE;
    z-index:1002;
    overflow: hidden;
    border: 1px solid #CCC;
    text-align: left;
    height: 400px;
}
.white_content .main {
    padding: 0;
    margin: 10px 25px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
}
.white_content .main #send {
    width: 89px;
    margin: 5px auto 0 auto;
}
/* end css */

