
/* override the root element to enable scrolling */ 
#flowpanes { 
    position:relative; 
    overflow:hidden; 
    clear:both; 
    width: 490px; 
    height:100px; 
} 
 
/* override single pane */ 
#flowpanes div { 
    float:left; 
    display:block; 
    width: 495px;
    cursor:pointer; 
     
} 
 
/* our additional wrapper element for the items */ 
#flowpanes .items { 
    width:20000em; 
    position:absolute; 
    clear:both; 
    margin:0; 
    padding:0; 
} 

#demotip { 
    position: absolute;
    display:none; 
    background: white; 
    font-size:12px; 
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff;     
}
