<?xml version="1.0" encoding="utf-8"?>
<skins:BaseGraphicBorderSkin 
  xmlns:mx="http://www.adobe.com/2006/mxml" 
  xmlns="http://www.degrafa.com/2007"
  xmlns:skins="flater.blogsamples.degrafabutton.skins.*"> 
  
    <skins:fills>
        <SolidFill id="upFill" 
          color="#951717" alpha="1" /> 
        <SolidFill id="overFill" 
          color="#951717" alpha=".6" /> 
        <SolidFill id="downFill" 
          color="#954040" alpha=".6" /> 
    </skins:fills>
    
    <skins:geometry>
        <RoundedRectangle state="upSkin" 
          height="{ aheight }" width="{ awidth }" 
          fill="{ upFill }" cornerRadius="8" />
        <RoundedRectangle state="overSkin" 
          height="{ aheight }" width="{ awidth }" 
          fill="{ overFill }" cornerRadius="16" />
        <RoundedRectangle state="downSkin" 
          height="{ aheight }" width="{ awidth }" 
          fill="{ downFill }" cornerRadius="32" /> 
    </skins:geometry>    
  
</skins:BaseGraphicBorderSkin>