/* menu.css for Tilton Trailer Rental */
                           
#MENUPARENT { float: left ;                   /* Menu's parent container element. */
              width: 160px ; 
              height: 640px ;
              background-color: #FFFFD4 ;
            }
            
#MENUPICDIV {                                 /* Container for menu's pictures. */
            position: relative ;
            width: 158px ;
            height: 120px ;
            }
         
#MENUPIC { position: absolute ;              /* Applied to menu pictures. */
           top: 0px ;
           left: 2px ;         
           width: 152px ;
           height: 118px ;
               
           }
            
#FlyOutBase { position: absolute ;           /* Container of base menu items (non-flyout menu items). */
              margin-left: 2px ;
              width: 158px ;
              height: 300px ;
             }

.MI1 { width: 150px ;                        /* Menu item level 1 (base menu items). */
       height: 22px ;
       text-align: center ;
       text-decoration: none ;
       color: white ;
       font-weight: normal ;
       background-color: red ;
       border: 1px solid red ;
       padding-top: 8px ;
     }
   
.MI2 { width: 70px ;                           /* Menu item level 2 (flyout menu items). */
       height: 30px ;
       text-align: left ;
       padding-left: 0px ;
       background-color: red ;          /* #FFFFF3 ;     #FEF5CA ; */
       color: white ;                   /* #101080 ; */
       position: absolute ;
       visibility: hidden ;
       left: 152px ;              
     }

