#header{      
    height: 150px;
    margin-top: 50px;   
    display: flex;
    justify-content: space-around;
}

.cssNewTitles{
    font-size: 1em;
    color: #333333;
}

.cssNewTitlesList{
    font-size: 1em;       
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; 
}

.cssNewTitleItem{    
    overflow:hidden; 
    float:left;
    list-style-type:none ;
    font-size: 1em;
    color: #333333; 
    padding-bottom: 10px;     
}

.cssNewTitleItem img{    
    max-width:165px !important;  
}

a:hover {
    cursor: pointer;
}

.cssEmphasisText{
    color:#000000;
}
.cssSmallText{
    color:#666666;
    font-size: 0.9em; 
}

#header select{
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

/***** TOOLTIP *****/
.search_tooltip {
    position: relative;
    display: inline-block;
    margin-left:5px;
    margin-top:15px;
    margin-right:10px;
    cursor:pointer;       
}

.search_tooltip img {
    width:16px; 
}

/* Tooltip text */
.search_tooltip .tooltiptext {
    visibility: hidden;    
    background-color: #666666;
    color: #cccccc;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    font-size:0.9em;
    white-space: nowrap;
    margin-left:10px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
  }

  /* Show the tooltip text when you mouse over the tooltip container */
.search_tooltip:hover .tooltiptext {
    visibility: visible;
}