/** Add css rules here for your application. */

body, table td, select, button {
  font-family: Arial Unicode MS, Arial, sans-serif;
  font-size: small;
}
pre {
  font-family: "courier new", courier;
  font-size: small;
}
body {
  color: black;
  margin: 10px;
  border: 0px;
  padding: 0px;
  background: #fff;
  direction: ltr;
}
a, a:visited {
  color: #0066cc;
  text-decoration:none;
}

a:hover {
  color: #0066cc;
  text-decoration:underline;
}

select {
  background: white;
}

/** Example rules used by the template application (remove for your app) */
h1 {
  font-size: 2em;
  font-weight: bold;
  color: #777777;
  margin: 40px 0px 70px;
  text-align: center;
}

.sendButton {
  display: block;
  font-size: 16pt;
}

/** Most GWT widgets already have a style name defined 
.gwt-DialogBox {
  width: 400px;
}*/

.dialogVPanel {
  margin: 5px;
}

.serverResponseLabelError {
  color: red;
}

/** Set ids using widget.getElement().setId("idOfElement") */
#closeButton {
  margin: 15px 6px 6px;
}

/*============================================================
    Notifications
============================================================*/
.notifyWarn,
.notifyError,
.notifyMessage,
.notifyWarnRTL,
.notifyErrorRTL,
.notifyMessageRTL {
  color: #ffffff;
  font-family: calibri;
  font-size: 14px;
}

.notifyWarn,
.notifyError,
.notifyMessage {
  padding: 10px 45px 10px 10px;
}

.notifyWarnRTL,
.notifyErrorRTL,
.notifyMessageRTL {
  padding: 10px 10px 10px 45px;
}

.notifyWarn,
.notifyWarnRTL {
  background-color: #ea9039;
  -moz-box-shadow: 0px 0px 5px #ea9039;
  -webkit-box-shadow: 0px 0px 5px #ea9039;
  box-shadow: 0px 0px 5px #ea9039;
}

.notifyError,
.notifyErrorRTL {
  background-color: #ca2518;
  -moz-box-shadow: 0px 0px 5px #ca2518;
  -webkit-box-shadow: 0px 0px 5px #ca2518;
  box-shadow: 0px 0px 5px #ca2518;
}

.notifyMessage,
.notifyMessageRTL {
  background-color: #107710;
  -moz-box-shadow: 0px 0px 5px #107710;
  -webkit-box-shadow: 0px 0px 5px #107710;
  box-shadow: 0px 0px 5px #107710;
}

.notifyWarnActionLink,
.notifyErrorActionLink,
.notifyMessageActionLink {
  padding: 0;
  border: none;
  font: inherit;
  cursor: pointer;
  background: none;
}

.notifyWarnActionLink,
.notifyWarnActionLink:link,
.notifyWarnActionLink:hover,
.notifyWarnActionLink:visited {
  color: #4F140E;
}

.notifyErrorActionLink,
.notifyErrorActionLink:link,
.notifyErrorActionLink:hover,
.notifyErrorActionLink:visited {
  color: #F39C12;
}

.notifyMessageActionLink,
.notifyMessageActionLink:link,
.notifyMessageActionLink:hover,
.notifyMessageActionLink:visited {
  color: #3498db;
}