.container {
    background-color: "white";
    layout: 'vertical';
}
.header {
    text-align: Ti.UI.TEXT_ALIGNMENT_LEFT;
    color: '#469AE7';
    font: {
        font-size: 14;
        font-style: 'normal';
        font-weight: 'bold';
    }
    width: Ti.UI.FILL;
    height: 'size';
}

.content {
    text-align: Ti.UI.TEXT_ALIGNMENT_LEFT;
    font: {
        font-size: 12;
    }
    width: Ti.UI.FILL;
    height: 'size';
}

.metalabel {
    text-align: Ti.UI.TEXT_ALIGNMENT_LEFT;
    font: {
        font-size: 10;
    }
    width: Ti.UI.FILL;
    height: 'size';
}

WebView {
    width: Ti.UI.FILL;
    height: 'size';
    disable-bounce: true;
}
ScrollView {
    width: Ti.UI.FILL;
    layout: "vertical";
    show-vertical-scroll-indicator: true;
    scroll-type: "vertical";
}
Label {
    width: 'size';
    height: 'size';
    color: "#000";
}
#activityIndicator {
    color: '#E31837';
    font: {
        font-family: 'Helvetica Neue';
        font-size: 16;
        font-weight: 'bold';
    }
    message: 'Loading...';
    top: 10;
    left: 10;
    height: 'size';
    width: Ti.UI.FILL;
}

