<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Metadata>
[HostComponent("spark.components.Button")]
</fx:Metadata>
<s:states>
<s:State name="up"/>
<s:State name="over"/>
<s:State name="down"/>
<s:State name="disabled"/>
</s:states>
<fx:Declarations>
<s:DropShadowFilter id="shadow" strength=".3" blurX="8" blurY="8"
distance.over="10" distance.down="15"/>
</fx:Declarations>
<s:Rect top="0" left="0" right="0" bottom="0" filters="{[shadow]}"
radiusX="6" radiusY="6" z.over="-20" z.down="-40">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xd0d0d0" color.over="0xc0c0c0"
color.down="0xa0a0a0"/>
<s:GradientEntry color="0xf0f0f0" color.over="0xf0f0f0"
color.down="0x808080"
ratio=".1" ratio.down=".2"/>
<s:GradientEntry color="0xaaaaaa" color.over="0x808080"
color.down="0xc0c0c0"/>
</s:LinearGradient>
</s:fill>
<s:stroke>
<s:SolidColorStroke color="black" weight="3"/>
</s:stroke>
</s:Rect>
<s:Label id="labelDisplay" fontSize="20" fontWeight="bold"
left="20" right="20" top="15" bottom="15" color="white"
horizontalCenter="0" verticalCenter="1"
z.over="-20" z.down="-40"/>
</s:Skin>