/* Burly-App Styles
//
//  A collection of standard styles applied to all burly-app installs
//  * styles specific to a given project should not be here; they should be placed in
//    proj-style.css instead
//  * rather than changing these style rules override them in later stylesheet by
//    increasing the selector specificity
*/

/* Messages and Runtime Errors */
.bapp #app-msg {
    font-family: sans-serif;
    color: black;
    border: 1px solid blue;
    background-color: #b4d1ec;
    padding: 0.33em 1.33em;
    margin: 0.33em auto;
    width: 66%;
}
.bapp #app-err {
    font-family: sans-serif;
    border: 1px solid red;
    background-color: #ffffe6;
    padding: 0.33em 1.33em;
    margin: 0.33em auto;
    width: 66%;
}
.bapp #app-err img {
    padding-right: 0.66em;
    float: left;
}
.bapp #app-err ul {
    margin: 0;
}

/* Application Outputs */
.bapp .app-head {
    width: 85%;
	margin: 0.33em auto 0.99em auto;
}