/* 
    Document   : tafelmacher
    Created on : Oct 19, 2011, 11:21:26 AM
    Author     : Jürgen Messing
    Description:
        Macht, dass das Color Tool Tafeln macht.
*/


#ta_auswahl {
    overflow: hidden;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#ta_auswahl.drop {
    border-color: red;
}

.ta_tafel { 
	
	margin: 0;
    position: relative;
    overflow: hidden;
    cursor: default;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.ta_sel {
    position: absolute;
    border: 2px orange solid;
    width: 95px;
    height: 95px;
    visibility: hidden;
}

.ta_sel.drag {
    border-color: rgb(50, 50, 50);
    box-shadow: 1px 1px 15px rgba(80,80,80, 0.5);
    visibility: visible;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.ta_sel.dropped {
    opacity: 1;
}

.ta_sel_checked {
    position: absolute;
    background-image: url(check-mark_16.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    
}

#ta_tafelBox {
    overflow-y: auto;
    
}

.ta_sel .close {
    width: 15px;
    height: 15px;
    background-color: white;
    position: absolute;
    left: 3px;
    top: 3px;
    visibility: hidden;
}

.ta_sel .ta_orderno {
    background-color: rgb(255,255,255);
    opacity: 0.7;
    position: absolute;
    left: 1px;
    bottom: 1px;
    visibility: hidden;
    padding: 2px 5px;
    font-size: smaller;
}

#ta_anfrage {
    position: fixed;
    bottom: 10px;
    margin-top: 4px;
}



