﻿tr:hover{
    cursor:pointer;
    background-color:Highlight;
}
#contextdiv{
    padding:20px;
    position:absolute;
    cursor:pointer;
    background-color:black;
    height:0px;
    width:100px;
    overflow:hidden;
}
.deletebutton {
    background-image: url('images/Delete.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-clip: border-box;
    background-size:30px;
    transition: background-size 0.1s;
    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display: block;
    width: 35px;
    height: 35px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    white-space:nowrap;
}
.editbutton {
    background-image: url('images/Edit.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-clip: border-box;
    background-size:30px;
    transition: background-size 0.1s;
    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display: block;
    width: 35px;
    height: 35px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    white-space:nowrap;
}
.createbutton {
    background-image: url('images/Create.jpg');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-clip: border-box;
    background-size:30px;
    transition: background-size 0.1s;
    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display: block;
    width: 35px;
    height: 35px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    white-space:nowrap;
}
.createbutton:hover,.deletebutton:hover,.editbutton:hover{
    background-size:35px;
}

