/*=======================================================*\
 ABOUT: CSS Stylesheet for Tenders.Net Direct Tendering Portals default layout
 AUTHOR: Andrew Moran
 COPYRIGHT: (c) 2018 - Information Network Fully Online Pty Ltd. All Rights Reserved.
 UPDATED: 2018-11-19 by Andrew Moran
\*=======================================================*/

/* Define Global Variables */
/* Not Supported by Internet Explorer - so use override styles at bottom */
:root {
  /* Background Colours */
  --colour-background: #ffffff;
  --bg-colour-image: rgba(250,250,250,0.2);

  /* Theme Primary Colours */
  --colour-primary-bright: #FFFFFF;
  --colour-primary-light: #f6f6f6;
  --colour-primary: #f0f0f0;
  --colour-primary-dark: #e6e6e6;
  --colour-primary-darker: #e0e0e0;
  --colour-primary-dull: #aaaaaa;

  /* Theme Secondary Colours */
  --colour-secondary-bright: #555555;
  --colour-secondary-light: #4f4f4f;
  --colour-secondary: #464646;
  --colour-secondary-dark: #404040;
  --colour-secondary-darker: #363636;
  --colour-secondary-dull: #565656;

  /* Theme Highlight Colours */
  --colour-highlight-bright: #ffd;
  --colour-highlight-light: #ffb;
  --colour-highlight: #ffc;
  --colour-highlight-dark: #ff9;
  --colour-highlight-darker: #545000;
  --colour-highlight-dull: #A3A17E;
  
  /* Theme Text Colours */
  --colour-text: #333333;
  --colour-text-light: #444444;
  --colour-text-dark: #222222;
  --colour-text-link: #330099;
  --colour-text-link-hover: #303090;
  --colour-text-link-active: #303030;
  --colour-primary-text: #333333;
  --colour-primary-light-text: #363636;
  --colour-primary-dark-text: #3f3f3f;
  --colour-primary-link: #330099;
  --colour-primary-light-link: #330099;
  --colour-primary-dark-link: #330099;
  --colour-secondary-text: #f0f0f0;
  --colour-secondary-light-text: #f0f0f0;
  --colour-secondary-dark-text: #f0f0f0;
  --colour-secondary-link: #ffcf00;
  --colour-secondary-light-link: #ffcf00;
  --colour-secondary-dark-link: #ffcf66;
  --colour-highlight-text: #333333;
  --colour-highlight-light-text: #303030;
  --colour-highlight-dark-text: #000000;
  --colour-highlight-link: #330099;
  --colour-highlight-light-link: #330099;
  --colour-highlight-dark-link: #000000;

  /* Layout Dimensions */
  --height-header: 60px;
  --height-footer: 25px;
  --min-width-content: 400px;
  --max-width-content: 950px;

}

/* System-wide Element Default Styles */
html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, th, a, img, label, pre {
  margin: 0;
  padding: 0;
  text-indent: 0;
  font: 400 11pt sans-serif;
}
html, body {
  background: var(--colour-background);
  color: var(--colour-text);
  font: 400 11pt sans-serif;
  overflow: hidden;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
body .body-container {
  background-image: url('/dtp-images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: 50% 100%;
  min-height: 100%;
}
div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, th, a, img, label, pre {
  font-size: 1.0em;
}
a {
  color: var(--colour-text-link);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--colour-text-light);
  text-decoration: underline;
}
a:active {
  color: var(--colour-text-dark);
  text-decoration: underline;
}
h1, h1 span {
  color: var(--colour-text-dark);
  font: normal 1.7em/1.5em sans-serif;
}
h2 {
  color: var(--colour-text-light);
  font: normal 1.4em/1.625em sans-serif;
}
h3 {
  color: var(--colour-text-dark);
  font: normal 1.25em/1.1em sans-serif;
}
h4 {
  color: var(--colour-text);
  font: bold 1.1em/1.1em sans-serif;
}
img {
  border: none;
}
label {
  padding-left: 0.5em;
}
quote, blockquote {
  background-color: var(--colour-primary-light);
  border: 1px solid var(--colour-primary);
  color: var(--colour-text);
  border-radius: 0.25em;
  margin: 0.25em 1.5em 0.75em 1.5em;
  padding: 0.5em 1.0em;
}
quote {
  display: inline-block;
}
blockquote {
  display: block;
}
textarea {
  background-color: rgba(240,240,240,0.7);
  color: #333;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  display: block;
  margin: 0.5em;
  padding: 0.5em;
  min-height: 100px;
  width: 99%;
}
textarea:focus, textarea:active {
  background-color: var(--colour-background);
  color: #000;
}
textarea.textarea-medium {
  height: 100px;
  transition: height 0.2s;
}
textarea.textarea-medium:active, textarea.textarea-medium:focus {
  height: 150px;
  transition: height 0.2s;
}
textarea.textarea-large {
  height: 120px;
  transition: height 0.2s;
}
textarea.textarea-large:active, textarea.textarea-large:focus {
  height: 450px;
  transition: height 0.2s;
}

/*  Page Layout Header */
.body-header {
  background-color: var(--colour-primary);
  background-image: linear-gradient(to bottom right, var(--colour-primary-light), var(--colour-primary), var(--colour-primary), var(--colour-primary), var(--colour-primary-dark));
  border-bottom: 1px solid var(--colour-primary-dark);
  box-shadow: 0 0 3px var(--colour-primary-light);
  height: var(--height-header);
  left: 0;
  margin: 0 auto 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  vertical-align: top;
  top: 0;
  width: 100%;
}
.body-header .header-tn {
  display: inline-block;
  background: url('/dtp-images/header-tendersnet.png') no-repeat top left;
  height: 100%;
  width: 210px;
  vertical-align: top;
}
.body-header-company {
  color: var(--colour-primary-text);
  position: absolute;
  font: normal 1.5em/var(--height-header) sans-serif;
  top: 0;
  right: 0.5em;
  text-decoration: none;
  max-width: 66%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.body-header-company span {
  font: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.body-header-company img {
  border: none;
  max-height: 50px;
  max-width: 170px;
  margin: 5px 0 5px 10px;
  vertical-align: top;
}

/* -- Page Layout Content -- */
.content-container {
  position: absolute;
  top: 88px;
  bottom: 46px;
  padding-bottom: 0;
  left: 0;
  right: 0;
  overflow-x:visible;
  overflow-y:auto;
}
.content-main {
  min-width: var(--min-width-content);
  max-width: var(--max-width-content);
  width: 96%;
  margin: 0 auto 0 auto;
}

/* Main Menu Bar */
.content-menu {
  background-color: var(--colour-background);
  height: 28px;
  min-width: var(--min-width-content);
  max-width: var(--max-width-content);
  width: 96%;
  margin: 0 auto 0 auto;
}
.dtp-section-menubar, .dtp-section-menubar ul {
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.dtp-section-menubar .dtp-menu-home {
  width: 20px;
  padding: 0px 8px 0px 8px;
}
.dtp-section-menubar .dtp-menu-home a {
  display: block;
  background-image: url('/dtp-images/icons/22px/home.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: transparent;
  text-indent: 26px;
  overflow: hidden;
  white-space: nowrap;
}
.dtp-section-menubar ul li, #content .dtp-section-menubar ul li {
  color: var(--colour-primary-dark);
  border-left: 1px solid var(--colour-primary-bright);
  display: inline-block;
  vertical-align: top;
}
.dtp-section-menubar ul li:first-child, #content .dtp-section-menubar ul li:first-child {
  padding-left: 0;
  border: none;
}
.dtp-section-menubar a {
  display: inline-block;
  color: var(--colour-text-link);
  font: normal 1.0em/2.0em sans-serif;
  margin: 1px 0;
  text-decoration: none;
  padding: 3px 6px;
}
.dtp-section-menubar a img {
  vertical-align: middle;
}
.dtp-menubar-nav {
  float: left;
}
.dtp-menubar-visitor {
  float: right;
}
.dtp-menubar-user {
  float: right;
}
.dtp-menubar-visitor h5, .dtp-menubar-user h5 {
  color: var(--colour-text-light);
  display: inline-block;
  font-size: 0.9em;
  font-weight: normal;
  font-style: italic;
  line-height: 2.1em;
  padding: 2px;
  margin: 2px;
}
.dtp-menubar-visitor ul, .dtp-menubar-user ul {
  display: inline-block;
}
.dtp-menubar-visitor ul li, .dtp-menubar-user ul li {
  border: none;
  margin: 0 1px;
  padding: 0;
}
.dtp-menubar-visitor a, .dtp-menubar-user a {
  background-color: #f9f9f9;
  background-image: linear-gradient(#ffffff,#fcfcfc);
  border: 1px solid #ddd;
  border-radius: 0.25em;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9em;
  padding: 1px 4px;
  margin: 2px 1px;
  min-width: 50px;
  text-decoration: none;
  text-align: center;
}

/* Back Button Top Menu */
.dtp-section-menu-top {
  margin: 0 0 1.0em 0;
  padding: 0 0 0.5em 0;
  border-bottom: 1px dashed var(--colour-secondary-light);
}
.dtp-section-menu-top a.link-back {
  background-image: url('/dtp-images/icons/22px/back.png');
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 24px;
  color: var(--colour-text-light);
  font-size: 0.9em;
  line-height: 20px;
  text-decoration: none;
}
.dtp-section-menu-top a.link-back:hover, .dtp-section-menu-top a.link-back:focus {
  color: var(--colour-text);
  text-decoration: underline;
}
.dtp-section-menu-top a.link-back:active {
  color: var(--colour-text-dark);
  text-decoration: underline;
}

/* Notice Box */
.dtp-section-notices {
  background-color: var(--colour-highlight-bright);
  color: var(--colour-highlight-light-text);
  border-radius: 0.25em;
  padding: 10px;
  margin: 10px 0;
}
.dtp-section-notices p {
  margin: 5px 0;
  padding: 2px 0;
}

/* Content Sections */
.content-content {
  padding: 1.5em 0;
  clear: both;
}
.dtp-section-title {
  margin: 0 0 1.5em 0;
  padding: 1.0em 0;
}
.dtp-section-title h1 {
  font-size: 1.625em;
}
.dtp-section-title h1 .client-company {
  color: var(--colour-text-dark);
  font: inherit;
}
.dtp-section-title p {
  color: var(--colour-text-light);
  font-size: 0.9em;
  margin: 0.5em 0;
  padding: 0.25em;
}
.dtp-section-title p a {
  font-size: inherit;
}
.content-poweredby {
  margin: 10px 10px 40px 10px;
  text-align: center;
}
.content-poweredby a {
  color: var(--colour-text-light);
  font: normal 0.9em sans-serif;
  text-decoration: none;
}
.content-banner {
  padding-top: 36px;
  padding-bottom: 36px;
  text-align: center;
  max-width: var(--max-width-content);
  margin: 0 auto;
}
.content-banner img {
  border: 1px solid var(--colour-primary-dark);
  border-radius: 3px;
  box-shadow: 0 0 3px var(--colour-primary-light);
  max-height: 400px;
  max-width: 100%;
  margin: 0 auto;
}
.dtp-section-menubar a:hover, .content-poweredby a:hover, .row .col a:hover {
  text-decoration: underline;
}


/* -- Page Layout Footer -- */
.footer-container {
  bottom: 0;
  min-height: var(--height-footer);
  padding: 0;
  position: absolute;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
#footer {
  background-color: var(--colour-secondary);
  background-image: linear-gradient(to bottom, var(--colour-secondary-dark), var(--colour-secondary), var(--colour-secondary), var(--colour-secondary), var(--colour-secondary), var(--colour-secondary), var(--colour-secondary));
  color: var(--colour-secondary-text);
  font: normal 0.8em/2.0em sans-serif;
  margin: 0 auto 0 auto;
  position: relative;
  padding: 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
  transition-delay: 0.5s;
}
#footer:hover, #footer:focus {
  opacity: 1;
  transition: opacity 0.2s;
}
.footer-switch {
  float: left;
  line-height: 2.0em;
  margin-left: 10px;
  text-align: left;
}
.footer-links {
  float: right;
  line-height: 2.0em;
  margin-right: 10px;
  text-align: right;
}
.footer-links span, .footer-links a, .footer-switch span, .footer-switch a {
  color: var(--colour-secondary-text);
  font: inherit;
}
.footer-links a:hover, .footer-switch a:hover {
  color: var(--colour-secondary-link);
}

/* Tenders Lists */
.dtp-section-tenders {
  clear: both;
  display: block;
  position: relative;
  margin: 2.0em auto;
}
 .dtp-section-tenders .no-results {
  text-align: center;
}
 .dtp-section-awarded {
  background-color: var(--colour-highlight-light);
  padding: 0.5em;
}
.row {
  clear: both;
  display: block;
  position: relative;
  width: 100%;
  min-height: 2.2em;
}
.row .col {
  background-color: var(--colour-background);
  float: left;
  padding: 5px 0.75%;
  margin-right: 1px;
}
.row-title .col {
  background-color: var(--colour-secondary);
  color: var(--colour-secondary-text);
  font-weight: 500;
  min-height: 21px;
  line-height: 21px;
}
.row-alt .col {
  background: #f6f6f6;
}
.row-alt4 .col {
  background: #f0f0f0;
}
.row .col a {
  color: var(--colour-primary-link);
  text-decoration-color: var(--colour-highlight);
}
.row .col a:hover, .row .col a:focus {
  text-decoration-color: var(--colour-primary-link);
}
.row .col img {
 height: 1.125em;
 width: 1.125em;
}
.row .col-actions a img {
 opacity: 0.6;
 height: 1.6em;
 width: 1.6em;
}
.row .col-actions a:hover img, .row .col-actions a:focus img, .row .col-actions a:active img {
 opacity: 1.0;
}
.row .col-id {
  width: 8%;
}
.row .col-desc {
  width: 71%;
}
.row .col-date {
  width: 10%;
}
.row .col-date .not-stated {
  color: var(--colour-highlight);
  font-style: italic;
}
span.timezone {
 background-color: var(--colour-highlight-light);
 border-radius: 0.25em;
 color: var(--colour-highlight-text);
 display: inline-block;
 font-size: 0.75em;
 padding: 0.125em;
 vertical-align: top;
}
.row .col-actions {
  min-height: 1.6em;
  padding: 0.275em 0.5%;
}
.row-title .col-actions {
  min-height: 1.6em;
  line-height: 1.6em;
  padding: 0.275em 0.5%
}
.row .col-ico {
  min-height: 1.6em;
  padding: 2px 0.325%;
  width: 4%;
  text-align: center;
}
.row-title .col-ico {
  min-height: 21px;
  line-height: 21px;
  padding: 5px 0.5%;
}
.row .col a {
  text-decoration: none;
}

/* Toggle Switch Styles */
.togglebox, .row .togglebox {
  display: block;
  position: relative;
  padding: 0.125em;
 }
 .togglebox .toggle {
  border: 1px solid #b0b0b0;
  display: inline-block;
  border-radius: 12px;
  cursor: pointer;
  height: 20px;
  margin: 0.125em 0.25em;
  width: 50px;
  padding: 0;
  overflow: hidden;
  vertical-align: top;
  transition-duration: 0.2s;
 }
 .togglebox .toggle img {
  border: none;
  height: 100%;
 }
 .togglebox .togglelabel {
  border-radius: 3px;
  color: #666666;
  padding: 0.25em;
  margin: 0.125em 0.25em;
  display: inline-block;
  min-width: 72.5%;
  vertical-align: top;
 }
 .togglebox input {
  display: none;
 }
 .togglebox .toggle-working {
   background-image: url('/dtp-images/loading-small.gif');
   background-repeat: no-repeat;
   background-position: 50% 50%;
 }
 .togglebox .toggle-working img {
   display: none;
 }
 .ie7client .togglebox .toggle, .ie7client .togglebox .togglelabel {
  display: inline;
 }
 

/* Form Rows */
.dtp-section-form br {
  clear: both;
}
.form-section {
  border-radius: 3px;
  clear: both;
  padding: 5px;
  margin: 1.0em 0;
}
.form-row {
  clear: both;
  display: block;
  position: relative;
  margin-bottom: 1px;
  min-height: 2.0em;
}
.form-row .form-row-title, .form-row .form-row-notitle, .form-row .form-row-field, .form-row .form-row-text {
  padding: 5px 5px;
}
.form-row .form-row-title {
  font-size: 1.0em;
  background-color: #ccc;
  height: 100%;
  width: 130px;
  position: absolute;
  padding: 0;
  line-height: 2.325em;
  text-indent: 5px;
  left: 0;
  top: 0;
  bottom: 0;
}
.form-row .form-row-notitle {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
}
.form-row .form-row-field {
  display: block;
  padding: 0px 5px 0px 135px;
}
.form-row .form-row-field input, .form-row .form-row-field select, .form-row .form-row-field textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.325em 0.25em;
  margin: 1px 0;
  max-width: 99.95%;
  font-size: 14px;
  line-height: 20px;
}
.form-row .form-row-text {
  display: block;
  font-size: 1.0em;
  padding: 5px 5px 5px 135px;
}
.form-row-field input.input-file {
  border: none;
  font-size: 13px;
  line-height: 15px;
}
.form-row-field input.txt-long, .form-row-field select.txt-long, .form-row-field textarea.txt-long {
  min-width: 160px;
  width: 95%;
}
.form-row-field input.txt-med, .form-row-field select.txt-med, .form-row-field textarea.txt-med {
  min-width: 160px;
  width: 65%;
}
.form-row-field input.txt-short, .form-row-field select.txt-short, .form-row-field textarea.txt-short {
  min-width: 140px;
  width: 45%;
}
.form-row-field input.txt-tiny, .form-row-field select.txt-tiny, .form-row-field textarea.txt-tiny {
  min-width: 80px;
  width: 25%;
}
.form-row .form-row-field input:focus, .form-row .form-row-field input:active, .form-row .form-row-field select:focus, .form-row .form-row-field select:active, .form-row .form-row-field textarea:focus, .form-row .form-row-field textarea:active {
  background-color: #ffffcc;
  border: 1px solid #ffcc99;
}
.form-row .form-required {
 background-color: #fcc;
}
.form-error {
 background-color: #faa;
}
.form-error input, .form-error select, .form-error textarea {
 background-color: #fcc;
 border-color: #f66;
}
.form-section-antirobot img {
 border: none;
 margin: 4px;
 vertical-align: top;
}
.radiorow input {
 margin: 4px 8px;
}
.dtp-section-separator {
 clear: both; 
 height: 1px;
 border-top: 1px dashed #cccccc;
 margin: 16px auto 15px auto;
 width: 96%;
}

/* Password reset pages */
.page-password span.match, .page-password span.fail {
  background-position: 0.25em 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  font-weight: bold;
  padding: 0.125em 0.5em 0.125em 2.25em;
  margin-left: 0.5em;
  text-decoration: none;
}
.page-password span.fail {
  background-image: url('/dtp-images/icons/22px/no.png');
  color: #c00;
}
.page-password span.match {
  background-image: url('/dtp-images/icons/22px/yes.png');
  color: #090;
}
.page-password input.fail {
  color: #000;
}
.page-password input.match {
  color: #090;
}
.page-password input.error {
  background-color: #fffcfc;
  border: 1px solid #c00;
  color: #c00;
}
.page-password td.error {
  background-color: #fee;
  color: #c00;
  font-weight: bold;
}
.page-password .form-row-field .btn-request {
  padding: 0.5em 1.5em;
}

/* Control Panel Page */
.content-content .dtp-section-settings {
 background-color: rgba(250,250,250,0.5);
 border: 1px solid #cfcfcf;
 border-radius: 3px;
 margin: 1.0em 0.25em;
 padding: 1.0em;
}
.content-content .dtp-section-settings h2 {
 line-height: 1.0em;
 margin: 0 0 0.5em 0;
}
.dtp-section-settings .setting-row {
 clear: both;
 display: block;
 position: relative;
 padding: 0.25em;
 margin: 1px;
}
.dtp-section-settings .setting-sub-row {
 background-image: url('/dtp-images/icons/22px/list-child.png');
 background-repeat: no-repeat;
 background-position: 0.25em 50%;
 clear: both;
 display: block;
 position: relative;
 padding: 0.25em 0.25em 0.25em 2.25em;
 margin: 1px;
}
.dtp-section-settings label b {
 cursor: pointer;
}
.dtp-section-settings label.nopointer b {
 cursor: not-allowed;
}
.dtp-section-settings label span.info::before {
 content: "-";
 color: #000;
 padding: 0.25em 1.0em 0.25em 1.0em;
}
.dtp-section-settings br, .dtp-section-settings h3 {
 clear: both;
}
.dtp-section-settings h3 {
 margin-top: 1.5em;
}
.setting-row .setting-layout-box {
  float: left;
  min-width: 140px;
  width: 20%;
  margin: 0;
  padding: 10px;
}
.setting-row .setting-layout-box img {
  opacity: 0.6;
  margin: 0 auto;
  display: block;
  max-width: 140px;
}
.setting-row .setting-layout-box:hover img {
  opacity: 0.8;
}
.setting-row .setting-layout-box-sel img, .setting-row .setting-layout-box-sel:hover img {
  opacity: 1.0;
}
.setting-row .setting-layout-box label {
  cursor: pointer;
}
.setting-row .setting-layout-box-sel {
  background-color: var(--colour-highlight);
  border-radius: 5px;
}
.setting-row .setting-layout-box-sel label {
  color: var(--colour-highlight-text);
}
.setting-row .setting-preview {
 margin: 1.0em;
 max-width: 100%;
 display: block;
}
.setting-row .setting-preview-small {
 max-width: 50%;
}
.setting-row .setting-preview img {
 background-color: var(--bg-colour-image);
 border: 1px solid var(--colour-secondary);
 border-radius: 0.5em;
 padding: 0.5em;
 opacity: 0.66;
 max-width: 100%;
 max-height: 250px;
 transition: opacity 0.2s;
}
.setting-row:hover .setting-preview img {
 opacity: 1.0;
 transition: opacity 0.2s;
}


/* Log In Page */
.page-login .form-row .form-row-title, .page-login .form-row .form-row-notitle {
 min-width: 6.0em;
}
.page-login .dtp-section-login-form, .page-login .dtp-section-login-btn {
 display: inline-block;
 margin: 0.5em;
 vertical-align: top;
}
.dtp-section-login-form .form-row {
  min-width: 26em;
}
.dtp-section-login-form .form-row input {
 min-width: 20em;
}
.dtp-section-login-btn button {
 background-color: #ffffcc;
 background-image: linear-gradient(#ffffdd,#ffff99);
 border: 1px solid #ffcc99;
 border-radius: 0.25em;
 color: #333;
 cursor: pointer;
 display: inline-block;
 font-weight: bold;
 padding: 1.25em 0.75em;
 margin: 0.125em;
 text-decoration: none;
 text-align: center;
}
.form-row-field .btn-request {
 padding: 0.25em 0.75em;
}	

/* Register Page */
.page-register .form-row .form-row-title, .page-register .form-row .form-row-notitle {
 min-width: 10.0em;
}
.page-register .form-row .form-row-field, .page-register .form-row .form-row-text {
  padding-left: 10.5em;
}

/* Terms and Conditions Page */
.page-terms ol li {
  margin: 0.5em 0;
}
.page-terms h2 {
  margin: 1.5em 0 0.5em 0;
}
.page-terms h2 a, #termsconditions h3 a {
  display: inline-block;
  font-weight: bold;
  margin-right: 0.5em;
}
.page-terms h3 {
  margin: 1.0em 0 0.25em 0;
}
.page-terms h4 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.page-terms .termbox {
  margin-left: 3.5em;
}
.page-terms .definitions .deftitle, .definitions .defdesc {
  display: inline-block;
  vertical-align: top;
  margin-left: 2%;
  margin-right: 2%;
}
.page-terms .definitions .deftitle {
  width: 26%;
  max-width: 12em;
}
.page-terms .definitions .defdesc {
  padding: 1.0em 0;
  width: 65%;
}
.page-terms .defdesc ol {
  display: inline-block;
}

/* Tender Advertisement */
.dtp-section-tenders .no-results {
  text-align: center;
}
.page-tender .dtp-section-title {
  margin-bottom: 0.25em;
}
.page-tender .dtp-section-buttons {
  margin-top: 0;
}
.page-tender .dtp-section-form {
  margin: 2.0em 0;
}
.page-tender .actionbutton {
  background-image: linear-gradient(#FCFCFC, #F3F3F3);
  border: 1px solid #aaa;
  text-align: center;
  margin: 2px;
  padding: 5px;
  min-width: 100px;
  font-weight: normal;
  opacity: 0.8;
}
.page-tender .actionbutton:hover {
  background-image: linear-gradient(#F0F0F0, #CFCFCF);
  border: 1px solid #909090;
  color: #000;
  opacity: 1.0;
}
.page-tender .actionbutton img {
  display: block;
  margin: 0 auto 5px auto;
  text-align: center;
}
.page-tender div.disclaimer {
  margin: 1.0em 0;
  padding: 1.0em 0;
  border-top: 1px dashed var(--colour-primary-light);
  color: var(--colour-text-light);
  font-size: 0.85em;
  font-style: italic;
  text-align: center;
}
.page-tender .form-row-field .dtp-section-notices {
  margin: 2px 0;
}

/* Tender Forum Pages */
.page-forum .forum-box {
  border: 1px solid var(--colour-secondary-bright);
  border-radius: 3px;
  padding: 1px;
  margin: 0.25em 0;
  position: relative;
}
.page-forum .forum-box-pinned {
  background-color: var(--colour-highlight-bright);
  border: 1px solid var(--colour-highlight-darker);
}
.page-forum .forum-row {
  margin-bottom: 1px;
}
.page-forum .forum-row h3 {
  line-height: 1.5em;
  margin-left: -33px;
  margin-bottom: 5px;
}
.page-forum .forum-row h3 img {
  margin-right: 10px;
}
.page-forum .forum-row {
  padding: 10px 40px;
}
.page-forum .forum-row-answer {
  background-color: var(--colour-secondary-bright);
  border: 1px dashed var(--colour-secondary-light);
  color: var(--colour-secondary-light-text);
  border-radius: 3px;
  margin: 5px 35px 0px 35px;
  padding: 10px;
}
.page-forum .forum-row-updated {
  color: var(--colour-text-light);
  font-size: 0.85em;
  font-style: italic;
  line-height: 1.5em;
}
.page-forum .forum-row-updated .btn-edit {
  border: 1px solid var(--colour-secondary-light);
  border-radius: 3px;
  display: inline-block;
  padding: 2px 10px;
  margin: 0 10px;
}
.page-forum .forum-row-updated .btn-edit:hover {
  background-color: var(--colour-secondary-bright);
  color: var(--colour-secondary-link);
}
.page-forum .forum-row-updated .btn-edit:active {
  background-color: var(--colour-secondary);
  color: var(--colour-secondary-dark-text);
}
.page-forum .no-results {
  font: bold italic 1.25em/1.5em sans-serif;
  text-align: center;
}

/* Access Denied Pages */
.page-denied h1.red {
  color: #cc0000;
}
.page-denied h2.grey {
  color: #666666;
}
.page-denied .max750 {
  max-width: 750px;
}

/* DTP Not Found notice page */
.dtp-not-found {
  margin-bottom: 4.0em;
}
.dtp-not-found h1 {
  color: #c00;
  margin-top: 1.0em;
  margin-bottom: 2.0em;
}


/* Log In / Register buttons */
.dtp-buttons {
  padding: 0.25em 0.25em 0.25em 0.25em;
}
.dtp-section-buttons {
  text-align: center;
  margin: 3.0em 1.0em;
}
.dtp-buttons a, .dtp-buttons button, .dtp-buttons input, div .btn-request {
  background-color: #f9f9f9;
  background-image: linear-gradient(#ffffff,#fcfcfc);
  border: 1px solid #ddd;
  border-radius: 0.25em;
  color: #333;
  cursor: pointer;
  display: inline-block;
  padding: 0.75em 1.125em;
  margin: 0.125em 0.5em;
  text-decoration: none;
  text-align: center;
  min-width: 95px;
}
.dtp-buttons a:hover, .dtp-buttons button:hover, .dtp-buttons input:hover {
  background-color: #ddd;
  background-image: linear-gradient(#f0f0f0,#e0e0e0);
  color: #000;
  box-shadow: 1px 1px 3px #f9f9f9;
}
.dtp-buttons input[type="checkbox"] {
  display: none;
}
.dtp-buttons .btn-login, div .btn-request  {
  background-color: #ffffcc;
  background-image: linear-gradient(#ffffcc,#ffffaa);
  border-color: #ffcc99;
}
.dtp-buttons .btn-register {
  background-color: #ccffcc;
  background-image: linear-gradient(#c0ffc0,#b0f0b0);
  border-color: #66cc66;
}
.dtp-buttons .btn-login:hover, .dtp-buttons .btn-login:focus, div .btn-request:hover, div .btn-request:focus {
  background-color: #ffff99;
  background-image: linear-gradient(#ffff99,#ffff66);
  border-color: #ffcc99;
}
.dtp-buttons .btn-register:hover, .dtp-buttons .btn-register:focus {
  background-color: #66ff66;
  background-image: linear-gradient(#6fff6f,#69f069);
  border-color: #3c3;
}
.dtp-buttons .btn-submit {
  background-color: #99cc99;
  background-image: linear-gradient(#6a6,#696);
  border-color: #696;
  color: #fff;
}
.dtp-buttons .btn-submit:hover, .dtp-buttons .btn-submit:focus {
  background-color: #99cc99;
  background-image: linear-gradient(#6b6,#6a6);
}
.dtp-buttons .btn-submit:active {
  background-color: #99cc99;
  background-image: linear-gradient(#696,#6a6);
  border-color: #393;
}
.dtp-buttons button img, .dtp-buttons a img {
 margin: -0.25em 0.25em -0.25em -0.125em;
}


/* Login + Register | Subscribe | Unsubscribe buttons */
.dtp-section-buttons {
  clear: both;
  display: block;
  position: relative;
  margin: 3.0em auto 1.0em auto;
  text-align: center;
}
.dtp-section-buttons .buttons-description {
  position: relative;
  display: block;
  margin: 1.0em auto;
  padding: 0;
}
.dtp-section-buttons .buttons-description p {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.5em;
  display: inline-block;
  font-size: 0.9em;
  padding: 0.5em 1.0em;
  margin: 0;
  width: auto;
}
.dtp-section-buttons .buttons-description .buttons-description-pointer-up {
  background-image: url('/dtp-images/pointer-top.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 18px;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -9px;
}
.dtp-section-buttons .buttons-description .buttons-description-pointer-down {
  background-image: url('/dtp-images/pointer-bottom.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 18px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -9px;
}
.dtp-section-buttons p a, .dtp-section-buttons p button {
  padding: 1px 3px;
  margin: 0 1px;
}
.page-home .dtp-section-title .dtp-buttons {
  margin-top: 1.0em;
}
.page-home .dtp-buttons .btn-file {
  background-image: url('/dtp-images/icons/22px/attach.png');
  background-repeat: no-repeat;
  background-position: 0.325em 50%;
  padding: 0.5em 1.0em 0.5em 2.0em;
  line-height: 1.0em;
  vertical-align: middle;
}

/* Client Content */
.client-company {
  color: var(--colour-text-light);
  font-weight: bold;
}
.dtp-section-client {
  color: var(--colour-text-light);
  border-radius: 0.25em;
  padding: 1.0em 0.25em;
  margin: 1.0em 0.25em;
  white-space: pre-wrap;
}
.dtp-section-client div {
  color: var(--colour-text-light);
  white-space: pre-wrap;
}
.dtp-section-client h1, .dtp-section-client h2, .dtp-section-client h3, .dtp-section-client h4, .dtp-section-client h5 {
  margin-top: 2.0em;
}
.dtp-section-client h1:first-child, .dtp-section-client h2:first-child, .dtp-section-client h3:first-child, .dtp-section-client h4:first-child, .dtp-section-client h5:first-child {
  margin-top: 0.25em;
}
.page-home .dtp-section-client {
  margin: 1.0em 0.25em 2.0em 0.25em; 
}


/* General content styles */
.clear-float {
 clear: both;
}
.print-only {
 display: none;
}
 
.link-disabled {
  color: #999999;
}
.link-tn, .link-tender, .link-unavailable, .link-disabled {
  background-repeat: no-repeat;
  background-position: 2px 50%;
  background-size: auto 133%;
}
.link-tn {
  background-image: url('/dtp-images/link-tn.png');
  padding-left: 27px;
}
.link-tender img {
  height: 1.4em;
  width: 1.4em;
  margin: 0 4px;
}
.link-unavailable {
  background-image: url('/dtp-images/icons/22px/no-light.png');
  font-size: 0.9em;
  color: #666666;
  font-style: italic;
  padding-left: 27px;
}
.link-disabled {
  background-image: url('/dtp-images/icons/22px/disabled.png');
  font-size: 0.9em;
  color: #884444;
  font-style: italic;
  padding-left: 27px;
}
.link-help {
  display: inline-block;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #666666;
  padding: 1px 5px;
  margin-left: 15px;
  font-size: 0.8em;
  text-decoration: none;
  text-transform: lowercase;
}
.link-help:hover, .link-help:focus {
  background-color: #cccccc;
  border-color: #c0c0c0;
  color: #030303;
  text-decoration: none;
}
.link-help:active {
  background-color: #aaaaaa;
  border-color: #c0c0c0;
  color: #030303;
}
.statusboxrow, .statusboxrow_alt {
  min-height: 2.5em;
  margin: 0.125em;
  padding: 0.25em 0.25em 0.25em 3.625em;
  position: relative;
}
.status_icon {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 3.0em;
  height: 3.0em;
}
.status_icon img {
  border: none;
  height: 100%;
}
.status_title {
  line-height: 1.625em;
  font-weight: bold;
}
.menuboxrow, .menuboxrow_alt {
  min-height: 5.0em;
  margin: 0.5em;
  padding: 1.0em 0.5em 0.5em 6.5em;
  position: relative;
}
.a_mmnu_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 5.5em;
  height: 5.5em;
}
.a_mmnu_icon img {
  border: none;
  height: 100%;
}
.a_mmnu {
  font-family:sans-serif;
  font-size:1.25em;
  line-height:1.5em;
  font-weight:bold;
  color: #38AFE6;
  text-decoration:none;
}
.a_mmnu:hover {
  color:#666;
}
a.a_mmnu:hover {
 text-decoration:underline;
}
.lightbox {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}
.lightbox-bg {
  background-color: rgba(200,200,200,0.6);
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
}
.lightbox-content {
  background: var(--colour-background);
  border: 3px solid var(--colour-primary);
  border-radius: 3px;
  box-shadow: 0 0 9px var(--colour-primary-dark);
  padding: 20px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  position: fixed;
  top: 20%;
  left: 20%;
  width: 60%;
  max-height: 70%;
  z-index: 22;
  overflow-y: auto;
}
.lightbox-content h2 {
  text-align: center;
}

/* Client-Specified HTML Elements */
div.box {
  padding: 5px;
  display: inline-block;
  vertical-align: top;
}
div.box-half {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
div.box-third {
  display: inline-block;
  vertical-align: top;
  width: 33%;
}
div.box-2thirds {
  display: inline-block;
  vertical-align: top;
  width: 66%;
}
div.box-quarter {
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
div.box-3quarters {
  display: inline-block;
  vertical-align: top;
  width: 75%;
}
div.box-full {
  padding: 5px;
}
div.border  {
  border: 1px solid var(--colour-secondary);
  padding: 5px;
  margin: 5px;
}
div.left  {
  text-align: left;
}
div.center  {
  text-align: center;
}
div.right  {
  text-align: right;
}.page-submit #SubmitFile {
 border-color: transparent;
}
.page-submit #Comments {
 min-height: 5.0em;
}
.page-submit #ExistingFiles .date {
 width: 10%;
}
.page-submit #ExistingFiles .name {
 width: 50%;
 white-space: normal;
 word-wrap: break-word;
}
.page-submit #ExistingFiles .receipt {
 width: 24%;
 text-overflow: visible;
 white-space: pre-wrap;
 word-wrap: break-all;
}
.page-submit #ExistingFiles .hash {
 width: 6%;
 text-align: right;
}
.page-submit #UploadingNotice .wizardlightboxcontent {
 height: 210px;
 margin-top: -105px;
 width: 580px;
 margin-left: -290px;
}
.page-submit .comments {
 background-color: #f0f0f0;
 border: 1px solid #c0c0c0;
 margin: 0.25em;
 padding: 0.25em;
}
.page-submit .fileerror td {
 background-color: #f33;
 color: #ffc;
}
.page-submit .fileerror td a {
 color: #ff0;
}
.page-submit .fileerror td .comments {
 background-color: #f00;
 border-color: #c00;
 color: #ffc;
}


/* Override Styles for Tablet View (981px - 1020px) */
@media only screen and (min-width: 981px) and (max-width: 1020px), (orientation: portrait) and (min-width: 981px) and (max-width: 1020px) {
  .no-tablet {
    display: none !important;
  }
  .page-submit #ExistingFiles .row div.name {
   width: 65%;
  }
  .page-submit #ExistingFiles .row div.receipt {
   width: 32%;
  }
}


/* Override Styles for Mobile View (0px - 980px) */
@media only screen and (min-width: 0px) and (max-width: 980px), (orientation: portrait) and (min-width: 0px) and (max-width: 980px), (orientation: landscape) and (min-width: 0px) and (max-width: 980px) {
  .no-mobile {
    display: none;
  }
  html, body {
    font: 400 20pt/1.5em sans-serif;
  }
  html {
    overflow-y: auto;
  }
  body {
    overflow: visible;
    height: 100%;
  }
  .body-container {
    position: relative;
  }
  .content-container {
    position: relative;
    min-height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    padding: 0 0 8.0em 0;
    overflow: visible;
  }
  .body-header {
    height: auto;
  }
  .body-header .header-tn {
    display: block;
    height: 40px;
    width: 120px;
    background-size: contain;
    margin: 10px auto 0 auto;
    text-align: center;
    display: none;
  }
  .body-header .body-header-company {
    position: static;
    display: block;
    float: unset;
    font-size: 1.25em;
    line-height: 1.125em;
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }
  .body-header .body-header-company span {
    display: block;
    padding: 10px;
    white-space: normal;
    text-overflow: unset;
  }
  .body-header .body-header-company img {
    max-height: 80px;
    margin-bottom: 10px;
  }
  .content-content {
    padding: 5px;
  }
  .content-menu {
    height: auto;
  }
  .dtp-menubar-nav, .dtp-menubar-visitor, .dtp-menubar-user {
    display: block;
    float: unset;
    width: 100%;
    text-align: center;
  }
  .dtp-menubar-visitor h5, .dtp-menubar-user h5 {
    margin-top: 20px;
    display: block;
    width: auto;
  }
  .dtp-menubar-visitor ul, .dtp-menubar-user ul {
    display: block;
    width: auto;
  }
  .dtp-menubar-nav ul li, .dtp-menubar-visitor ul li, .dtp-menubar-user ul li {
    display: inline-block;
  }
  .dtp-menubar-nav ul li a, .dtp-menubar-visitor ul li a, .dtp-menubar-user ul li a {
    padding: 1.0em 1.5em;
    margin: 0 0.25em;
  }
  .dtp-menubar-nav .dtp-menu-home {
    width: 3.0em;
  }
  .dtp-menubar-nav .dtp-menu-home a {
    text-indent: 4.0em;
  }
  .dtp-menubar-visitor {
    display: none;
  }
  .dtp-section-title {
    text-align: center;
  }
  .dtp-section-tenders {
    margin: 3.0em 0;
  }
  .dtp-section-separator {
    margin: 3.0em 0;
  }
  .dtp-section-buttons {
    margin-top: 3.0em;
  }
  .content-poweredby {
    margin-top: 3.0em;
  }
  .row .col {
    padding: 0.8em 0.75%;
  }
  .row .col-id {
    width: 15%;
  }
  .row .col-desc {
    width: 81.0%;
  }
  .dtp-buttons a, .dtp-buttons input, .dtp-buttons button {
    font-size: 1.0em;
    font-weight: normal;
    width: 45%;
    margin: 5px 0.75%;
    padding: 1.0em 0.5%;
  }
  .page-login .dtp-section .dtp-buttons a {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .page-login .form-row-text a {
    display: block;
    padding: 10px;
  }
  .page-login .dtp-section-login-btn {
    display: block;
    text-align: center;
  }
  .dtp-section-login-btn .btn-login {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .page-password .dtp-section-form {
    padding-bottom: 60px;
  }
  .page-password .dtp-section-form .form-row-title {
    display: none;
  }
  .page-password .dtp-section-form .form-row-field {
    display: block;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .page-password .dtp-section-form .form-row-field input, .page-password .dtp-section-form .form-row-field button {
    font-size: 1.25em;
    line-height: 1.25em;
    min-height: 1.75em;
    padding: 0.325em 1%;
    margin: 0.5em auto;
    width: 98%;
  }
  .page-password .dtp-section-form .form-row-field button {
    padding: 0.75em 1%;
    width: 48%;
  }
  .page-register .dtp-buttons button {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .form-row .form-row-title {
    font-size: 0.85em;
    min-width: 6.0em;
    width: 6.0em;
  }
  .form-row .form-row-text, .form-row .form-row-field {
    padding-left: 5.25em;
  }
  .page-register .form-row .form-row-title {
    font-size: 0.85em;
    line-height: 1.85em;
    min-width: 6.0em;
    width: 6.0em;
  }
  .form-row .form-row-field input, .form-row .form-row-field select, .form-row .form-row-field textarea {
    font-size: 1.125em;
    line-height: 1.25em;
    height: 1.75em;
    padding: 0.25em;
  }
  .form-row .form-row-field textarea {
    height: auto;
    min-height: 1.75em;
  }
  .page-register .form-row .form-row-text, .page-register .form-row .form-row-field {
    font-size: 1.0em;
    padding-left: 5.25em;
  }
  .page-register .form-row .form-row-text label {
   font-size: 1.0em;
  }
  .page-register .form-section-antirobot img {
   height: 1.5em;
  }
  .setting-row .setting-layout-box {
    width: 40%;
    margin: 10px 1.5%;
  }
  .setting-row .setting-layout-box {
    width: 40%;
    margin: 10px 1.5%;
  }
  #frm_dtp .dtp-section-buttons button {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .footer-container {
    text-align: center;
  }
  .footer-links {
    display: block;
    float: unset;
    margin: 5px;
    text-align: center;
  }
  .footer-switch {
    display: block;
    float: unset;
    margin: 5px;
    text-align: center;
  }
  .footer-switch a, .footer-switch span, .footer-links a {
    margin: 0.75 1.0em;
  }
  .togglebox .toggle {
   border-radius: 1.5em;
   height: 1.6em;
   margin: 0.325em 0.125em;
   width: 4.0em;
  }
  .togglebox .togglelabel {
   padding: 0 0.25em;
   margin: 0 0.125em;
   width: 80%;
  }
  .lightbox-content {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    z-index: 22;
    overflow-y: auto;
  }
  .box-half {
    display: block;
    min-width: 100%;
    width: 100%
  }
  #FileList .row .col-name {
    width: 92.5%;
  }
}


/* Printer-friendly Version */
@media print {
  body {
    background: #ffffff;
    color: #000;
    font-size: 10pt;
    overflow: visible;
  }
  .no-print {
    display: none;
  }
  .body-container .dtp-section-menubar, .body-container .dtp-section-menu-top, .body-header .client-logo, .body-header-company img, .body-container .client-banner, .body-container .dtp-section-buttons, .footer-container {
    display: none;
  }
  .body-header {
    border: none;
    padding: 1.0em;
    min-height: 4.0em;
  }
  .body-header .body-header-company {
    text-align: center;
    width: 98%;
  }
  .body-container .content-container {
    position: static;
    top: 0;
    bottom: 0;
  }
  .page-tender .statusboxrow, .statusboxrow_alt {
    min-height: 3.0em;
    margin: 0.25em;
    padding: 0.5em 0.5em 0.5em 4.5em;
    position: relative;
  }
  .page-tender .status_icon {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 3.5em;
    height: 3.5em;
  }
  .page-tender .status_icon img {
    border: none;
    height: 100%;
  }
  .page-submit .form-row .form-row-title {
    color: #666;
    font-style: italic;
    padding: 2px 0.75em;
    line-height: 1.0em;
    width: 8.0em;
  }
  .page-submit .form-row .form-row-text {
    padding: 2px 0.75em 2px 8.75em;
  }
  .page-submit .filelist .row {
    display: block;
    padding: 1.0em;
    width: 100%;
  }
  .page-submit .filelist .row .col {
    display: block;
    padding: 1px;
    width: 100%;
  }
  .page-submit .filelist .row .date::before {
    color: #666;
    font-style: italic;
    content: "Submitted: ";
  }
  .page-submit .filelist .row .name::before {
    color: #666;
    font-style: italic;
    content: "File Name: ";
  }
  .page-submit .filelist .row .name .comments::before {
    color: #666;
    font-style: italic;
    content: "Comments: ";
  }
  .page-submit .filelist .row .receipt::before {
    color: #666;
    font-style: italic;
    content: "Receipt #: ";
    margin-right: 0.325em;
  }
  .page-submit .filelist .row-title, .page-submit .filelist .row-title .col {
    display: none;
  }
  .page-submit .filelist .row .hash {
    display: none;
  }
}


/* Override Styles for Internet Explorer 10+ clients that do not support var(--variable) */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
 .body-header {
   height: 60px;
 }
 .body-header-company {
   font: normal 1.7em/60px sans-serif;
 }
 .content-main {
   min-width: 400px;
   max-width: 950px;
 }
 .content-menu {
   min-width: 400px;
   max-width: 950px;
 }
 .content-banner img {
   max-width: 950px;
 }
 #footer {
  min-height: 25px;
 }
}