/*
    expand.css
    included in
    webtour/2010-01/index.php
*/

dl.expand dt {
    color: blue;
    text-decoration: underline;
}
dl.expand:hover dt {
    color: black;
    text-decoration: none;
}
dl.expand dd {
    display: none;
}
dl.expand:hover dd {
    display: block;
}
/*
dl.expand:hover dd a::selection {
    background: white;
}
dl.expand:hover dd a:hover::selection {
    background: yellow;
}
*/

