﻿/* convert hyperlink from inline element (default) to block element. Inline elements are only
         as high as their given font-height and do not support top/bottom margins/paddings. Firefox
         and all other standard compliant browsers consider this - IE ignores it */
a.BannerTemplate
{
    float: left;
    margin: 1px;
    padding: 0 5px;
}

/* set hover color for hyperlink. IE does not support hover for other elements but hyperlinks */
a.BannerTemplate:hover
{
    margin: 0;
    background: #FFFAD2 url(images/btn_bg_orange.png) repeat-x center;
    border: 1px solid #FFFAD2;
    border-right-color: #908d8d;
    border-bottom-color: #908d8d;
}

/* turn off borders for images within hyperlinks */
a.BannerTemplate img
{
    border: 0;
}
