/* ------------------------ Fly-Out Elements ------------------------ */
.fly_element {
    cursor: help;
    position: relative; /*Relative positioning gives this class positioning context to anything within it*/
    border: 0;
    padding: 5px;
}
p.fly_out {
    position: absolute; /*Absolute positioning allows p.fly_out to be out of the flow of the document*/
    display: none; /*Remove p.fly_out so that it only appears when needed*/
    left: 20px; /*Position of the left side of p.fly_out relative to enclosing div (i.e. .picture_box)*/
    top: 45px; /*Position of top of p.fly_out relative to enclosing div*/
    width: 200px;
    border: 1px solid black;
    padding: .5em;
    background:url(../images/fly_out_bg_300w.png) repeat-y;
}
.fly_element:hover p.fly_out, p.fly_out:hover {
    display: block;
}