
/* set border for images inside DRAG region - exclude image margin inheritance */
/* my WordPress theme had some funny margin settings */
#redips-drag img {
    margin: 1px;
}

/* drag objects (DIV inside table cells) */
.redips-drag {
    cursor: move;
    margin: auto;
    z-index: 10;
    text-align: center;
    font-size: 10pt; /* needed for cloned object */
    line-height: 20px;
    /* round corners */
    border-radius: 4px; /* Opera, Chrome */
    -moz-border-radius: 4px; /* FF */
}

/* light grey */
.lgrey {
    background-color: #e0e0e0;
}
/* allow / deny access to cells marked with 'mark' class name */
.redips-mark {
    /*color: white;*/
    /*background-color: #9B9EA2;*/
}
/* trash cell */
.redips-trash {
    color: white;
    background-color: SteelBlue;
}

/* tables */
div#redips-drag table {
    /*background-color: #d6d6d6;*/
    border-collapse: collapse;
}

.blank {
    background-color: white;
}

/* input elements in dragging container */
div#redips-drag input {
    cursor: auto;
}
/* height for input text in DIV element */
div#drag #d13 input {
    height: 13px;
}
/* height for dropdown menu in DIV element */
div#drag #d5 select {
    height: 20px;
}

/* table cells */
div#redips-drag td {
    height: 32px;
    /*border: 1px solid white;*/
    text-align: center;
    padding: 2px;
}

/* "Click" button */
.button {
    margin-bottom: 2px;
    background-color: #6A93D4;
    color: white;
    border-width: 1px;
    width: 44px;
    padding: 0px;
}


/* toggle checkboxes at the bottom */
.checkbox {
    margin-left: 13px;
    margin-right: 14px;
    width: 13px; /* needed for IE ?! */
}


/* message cell */
.message_line {
    padding-left: 10px;
    margin-bottom: 3px;
    font-size: 10pt;
    color: #888;
}

