var ALumaprene = Namespace.declare("com.twitter.Bootstrap",
    class ALumaprene extends UcpComponent {
        static start() {
        }
        constructor() {
            super();

            this.model = {
                style : {
                'padding' : '0 0 0 10px',
                'width' : '8%',
                'margin_left_range' : '40px',
                'speakerwidth' : '1900px'
                }
            }
        }

        init() {
            if (this.isInitialized)
                return;
			super.init();
			return this;
		}

    }
);


