
	 
	/* YUI OVERRIDES */
	 .ygtvlabel 
	{ 
	  background-color:transparent ; 	   
    }
    /*selector to support different link colors a.one:link{ color: blue }*/
    .reVolt-pg-container{ /*1.7.11.12 - Umstellung auf font-awesome*/
        margin-left: 3px;
    }
    a.reVolt-pg-previous:link, a.reVolt-pg-next:link, a.reVolt-pg-first:link, a.reVolt-pg-last:link{
        color: black;
        padding-right: 2px; /*each keeps a distance to its neighbour or the box*/
    }
    
    a.reVolt-pg-previous:visited, a.reVolt-pg-next:visited, a.reVolt-pg-first:visited, a.reVolt-pg-last:visited{
        color: black;
    }
    
    .TB_POST_CUSTOM{ /*Toolbar refresh button*/
        background:url(/revolt/assets/img/famfamfam_silk_icons_v013/icons/accept.png) no-repeat;
        width: 20px ;
        height:20px ;
    }
    
    body{
        background-color: silver ;
        
    }
    /*1.8.3.28 yui context menu*/
    .snapSemitary_yuimenu{
        background: white ;
        color:black ;
        padding: 3px;
        font-size:smaller ;
    }
    
 /*
 2018 - autocomplete List for Grids and Stuff
 */
         
.rvt_custom_list {
    /* Size and position */
    position: relative;
    width: 400px ;  /*rvt anpassen*/
    /*overflow:hidden; !this will not work, hiding all content in the list!*/
    margin: 0 auto;
    padding: 10px;

    /* Styles */
    background: #fff;
    border-radius: 7px;
    /*
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);
    */
    cursor: pointer;
    outline: none;

    /* Font settings */
    /*font-weight: bold;  rvt: does not look good*/
    text-align: left;
    color: #8AA8BD;
}

.rvt_custom_list:after {
    /* das gibt ein control zum aufklappen - brauchen wir nicht
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #8aa8bd transparent;
    */
}

/*the li */
.rvt_custom_list .dropdown {
  /* Size & position */
    position: absolute;
    top: 140%;
    left: 0;
    right: 0;

    /* Styles */
    background: white;
    border-radius: inherit;
    
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    
    font-family:verdana, sans-serif;
    font-size: smaller ;
    font-weight: lighter ;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    list-style: none;
    

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.rvt_custom_list .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.rvt_custom_list .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}
.rvt_custom_list .dropdown li {
    margin-left: 10px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.rvt_custom_list .dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.rvt_custom_list .dropdown li i { 
    float: right;
    color: inherit;
}

.rvt_custom_list .dropdown li:first-of-type a {
    border-radius: 7px 7px 0 0;
}

.rvt_custom_list .dropdown li:last-of-type a {
    border: none;
    border-radius: 0 0 7px 7px;
}

.rvt_custom_list li:hover  {
  background: blanchedalmond ;
}

/* Hover state */

.rvt_custom_list .dropdown li:hover a {
    background: blanchedalmond  /*#f3f8f8;*/
}

/* Active state */

.rvt_custom_list.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .rvt_custom_list .dropdown,
.no-pointerevents .rvt_custom_list .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .rvt_custom_list.active .dropdown,
.no-pointerevents .rvt_custom_list.active .dropdown {
    display: block;
}
    
   
    
    
    