<?xml version="1.0"?>
<!DOCTYPE  constraint-set
    PUBLIC "-//Brunch Boy Design//RelativeLayout Constraint Set DTD 1.0//EN"
    "http://dtd.brunchboy.com/RelativeLayout/constraint-set.dtd">
<constraint-set>
    <constrain name="title">
        <top>
            <toAttribute reference="_container" attribute="top" offset="10"/>
        </top>
        <horizontalCenter>
            <toAttribute reference="_container" attribute="horizontalCenter"/>
        </horizontalCenter>
    </constrain>

    <constrain name="version">
        <top>
            <toAttribute reference="title" attribute="bottom" offset="8"/>
        </top>
        <left>
            <toAttribute reference="_container" attribute="left" offset="5"/>
        </left>
    </constrain>

    <constrain name="date">
        <top>
            <toAttribute reference="version" attribute="top"/>
        </top>
        <right>
            <toAttribute reference="_container" attribute="right" offset="-5"/>
        </right>
    </constrain>

    <constrain name="details">
        <left>
            <toAttribute reference="version" attribute="left"/>
        </left>
        <right>
            <toAttribute reference="date" attribute="right"/>
        </right>
        <top>
            <toAttribute reference="version" attribute="bottom" offset="4"/>
        </top>
        <bottom>
            <toAttribute reference="ok" attribute="top" offset="-4"/>
        </bottom>
    </constrain>

    <constrain name="ok">
        <horizontalCenter>
            <toAxis reference="_container" axis="horizontal" fraction="0.5"/>
        </horizontalCenter>
        <bottom>
            <toAttribute reference="_container" attribute="bottom"
                         offset="-10"/>
        </bottom>
    </constrain>
</constraint-set>

