+
+/*
+ * Popups
+ */
+#message-box {
+ position: fixed;
+ top: 2px;
+ left: 40%;
+}
+
+.msg-error, .msg-success, .msg-warning {
+ overflow: hidden;
+ padding: 0.1em 0.2em;
+ text-align: center;
+ border: 1px solid;
+ -moz-border-radius: 8px;
+ -webkit-border-radius: 8px;
+ font-size: 10pt;
+ line-height: 11pt;
+ display: none;
+
+ width: 200px;
+}
+
+
+.msg-error {
+ background-color: red;
+ border-color: red;
+}
+
+.msg-success {
+ background-color: lightgreen;
+ border-color: lightgreen;
+}
+
+.msg-warning {
+ background-color: yellow;
+ border-color: yellow;
+
+}