/* CSS Document */

/*expandable button*/


.btnwrap{ /* Container you can use to surround a CSS button to clear float */
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: 100%;
}
a.btn_red{
background: transparent url('http://download.zonealarm.com/bin/images/products/za/red_btn_l.gif') no-repeat top left;
display: block;
float: left;
font: bold 13px Arial; /* Change 13px as desired */
text-transform:uppercase;
line-height: 22px; /* This value + 3px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 30px) */
height: 29px; /* Height of button background height */
padding-left: 16px; /* Width of left menu image */
text-decoration: none;

}

a:link.btn_red, a:visited.btn_red, a:hover.btn_red, a:active.btn_red{
color: white; /*button text color*/
}

a.btn_red span{
background: transparent url('http://download.zonealarm.com/bin/images/products/za/red_btn_r.gif') no-repeat top right;
display: block;
padding: 3px 18px 4px 2px; /*Set 10px to be equal or greater than'padding-left' value above*/
}

a:hover.btn_red{ /* Hover state CSS */
text-decoration: underline;
}

a.btn_purp{
background: transparent url('http://download.zonealarm.com/bin/images/promotions/microsoft/btn_download_l.gif') no-repeat top left;
display: block;
float: left;
font: bold 9px Arial; /* Change 13px as desired */
line-height: 12px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 30px) */
height: 20px; /* Height of button background height */
padding-left: 8px; /* Width of left menu image */
text-decoration: none;

}

a:link.btn_purp, a:visited.btn_purp, a:hover.btn_purp, a:active.btn_purp{
color: white; /*button text color*/
}

a.btn_purp span{
background: transparent url('http://download.zonealarm.com/bin/images/promotions/microsoft/btn_download_r.gif') no-repeat top right;
display: block;
padding: 3px 8px 4px 2px; /*Set 10px to be equal or greater than'padding-left' value above*/
}

a:hover.btn_purp{ /* Hover state CSS */
text-decoration: underline;
}

/*end of expandable button*/