/* ErrorPageTemplate.css */

/* Page background and text */
body {
  font-family: "Segoe UI Light", "Segoe UI", Tahoma, Arial, sans-serif;
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  color: #000;
  margin: 40px;
  text-align: left;
}

/* Layout */
table {
  width: 730px;
  margin-left: 0;
  margin-right: auto;
  border-collapse: collapse;
}

/* Header */
h1 {
  font-size: 28px;
  color: #003399;
  font-weight: normal;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.errorCodeCell {
  font-size: 12px;
  color: #666;
  text-align: right;
  vertical-align: bottom;
  padding-right: 4px;
}

/* Divider line */
.dividerRow .divider {
  border-top: 1px solid #c8c8c8; /* thin gray line */
  width: 100%;                   /* spans full table width */
  margin-top: 6px;
  height: 1px;                    /* ensures visible line */
  display: block;
}

/* Info icon */
#infoIcon {
  width: 120px;   /* original IE size */
  height: 120px;
  margin-right: 15px;
  vertical-align: middle;
}

#infoIconAlign {
  width: 60px;   /* space for icon */
  vertical-align: middle;
}

/* Section headings */
h2, h3, h4 {
  margin: 8px 0;
  color: #000;
  font-weight: normal;
}

/* Action icons */
.actionIcon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Info block */
.infoBlock {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 12px;
  font-weight: normal;
}

/* Lists */
ul {
  margin-top: 4px;
  margin-bottom: 12px;
}

li {
  margin-bottom: 4px;
}

/* Links */
a {
  color: #003399;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
