/* 
    Document   : PagePicker
    Created on : Nov 23, 2013, 7:34:51 PM
    Author     : ktonder
    Description:
        Purpose of the stylesheet follows.
*/
.pagepickerwindow {
    position: absolute;
    width: 300px;
    height: 200px;
    background-color: #FFF;
    padding: 10px;
    box-shadow: 0px 0px 5px #000;
    border-radius: 5px;
}

.pagepickerwindow .closebutton {
    position: absolute;
    right: -20px;
    top: -20px;
    height: 20px;
    cursor: pointer;
    width: 20px;
    background-image: url('elements/close2.png');
}

.pagepickerwindow .inner {
    width: 300px;
    height: 200px;
    position: relative;
}

.pageresult {
    border-bottom: solid 1px #DDD;
    height: 30px;
    line-height: 35px;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    padding-left: 30px;
    background-image: url('elements/pageicon.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}

.pageresult:hover {
    background-color: #DDD;
}

.pageresult:last-child {
    border-bottom: solid 0px #DDD;
}