/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 28, 2013, 7:09:35 AM
    Author     : bugraozden
*/

.icon-select{
    width:0px;
 }

.icon-select[disabled='disabled'] .selected-box{
    background-color: #EEEEEE;
}

.icon-select .selected-box {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 70px;
    height: 60px;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    cursor: pointer;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.icon-select .selected-box:hover {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 70px;
    height: 60px;
    border: 1px solid #999999;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.icon-select .selected-icon {
    position: absolute;
    margin: 0px;
    padding: 0px;
    top:5px;
    left:5px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    background-repeat: no-repeat;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

     /*image-rendering: crisp-edges;*/
     /*image-rendering: -moz-crisp-edges;*/         /* Firefox */
     /*image-rendering:   -o-crisp-edges;*/         /* Opera */
     /*image-rendering: -webkit-optimize-contrast;*//* Webkit (non-standard naming) */
     /*-ms-interpolation-mode: nearest-neighbor;*/  /* IE (non-standard property) */
}

.icon-select .component-icon{
    position: absolute;
    bottom:5px;
    right:4px;
}

.icon-select .box {
    position: absolute;
    top:0px;
    left:-2px;
    margin: 0px;
    padding: 0px;
    width: 170px;
    height: 170px;
    border: 1px solid #999;
    background-color: #EEEEEE;
    z-index: 100;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    overflow:auto;
    overflow-x: hidden;
    padding-right: 16px;
}

.icon-select .icon {
    position: relative;
    margin: 5px 0px 0px 5px;
    padding: 0px;
    width: 48px;
    height: 48px;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    background-repeat: no-repeat;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    image-rendering: crisp-edges;
    /*image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */

    overflow:hidden;
    float: left;
}

.icon-select .icon:hover {
    border: 1px solid #666666;
}

.icon-select .icon.selected {
    position: relative;
    margin: 5px 0px 0px 5px;
    padding: 0px;
    width: 48px;
    height: 48px;
    background-color: #D6D6D6;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    overflow:hidden;
    float: left;
}