/*=======================================================*\
 ABOUT: CSS Stylesheet for Layout option 'DEFAULT' for Tenders.Net Local Government Tender Portals
 AUTHOR: Andrew Moran
 COPYRIGHT: (c) 2019 - Information Network Fully Online Pty Ltd. All Rights Reserved.
 UPDATED: 2020-11-10 by Alex Metcalfe
\*=======================================================*/


/* Define Global Variables */
/* Not Supported by Internet Explorer - so use override styles at bottom */
:root 
{
  /* Background Colours */
  --bg-colour-page: #999999;
  --bg-colour-content: #ffffff;
  --bg-colour-banner: #444444;
  --colour-background: #ffffff; 
  --bg-colour-image: rgba(250,250,250,0.2);

  /* Border Colours */
  --border-colour-content: #999999;

  /* Shadow Colours */
  --shadow-colour-content: #777777;
  --shadow-colour-banner-overlay: #444444;
  --shadow-colour-footer: #666666;

  /* Text Colours */
  --colour-banner-overlay: #ffffff;

  /* Fixed Colours */
  --colour-fixed-border: #cccccc;
  --colour-fixed-box: #f0f0f0;

  /* Theme Primary Colours */
  --colour-primary-bright: #fcfcfc;
  --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: #2c2a1f;
  --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: 50px;
  --width-sidebar: 280px;
  --min-width-content: 560px;
  --max-width-content: 1152px;
  --padding-tiny: 2px;
  --padding-small: 5px;
  --padding: 10px;
  --padding-med: 15px;
  --padding-big: 25px;
  --padding-giant: 50px;
}



/* System-wide Element Default Styles */
html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, code, blockquote
form, fieldset, input, button, textarea, th, a, img, label, pre 
{
  margin: 0;
  padding: 0;
  text-indent: 0;
  font: 400 10pt sans-serif;
}
html, 
body 
{
  background: var(--bg-colour-page);
  color: var(--colour-text);
  font: 400 10pt sans-serif;
  overflow: auto;
  height: 100%;
  width: 100%;
}
body 
{
  background-image: url('/gov-images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
  overflow: visible;
  margin: 0;
  padding: 0;
  top: 0;
  height: auto;
  width: auto;
  min-height: 100%;
  min-width: 100%;
}
div, ol, h1, h2, h3, h4, h5, h6, code, blockquote
form, fieldset, input, button, textarea, th, a, img, label, pre 
{
  font-size: 1.0em;
}
ul, 
li
{
  margin: 0 var(--padding-big);
  font-size: 1.1em;
  color:#444;
}
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-light);
  font: normal 1.7em/1.5em sans-serif;
}
h2 
{
  color: var(--colour-text-dark);
  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: var(--padding);
}
blockquote, 
code 
{
  background-color: var(--colour-highlight-light);
  border: 1px solid var(--colour-highlight-dark);
  color: var(--colour-text);
  font-family: monospace;
  border-radius: 0.25em;
  margin: 0.25em 1.5em 0.75em 1.5em;
  padding: var(--padding-small) var(--padding);
}
code 
{
  display: inline-block;
  font-size: 0.85em;
  margin: 0px 2px;
  padding: 2px 5px;
  vertical-align: middle;
}
blockquote 
{
  display: block;
}
code a, 
blockquote a
{
  color: var(--colour-highlight-light-text);
  font: inherit;
}
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 Content -- */
.body-container 
{
  margin: 0 auto;
  padding-top: 10px;
  max-width: var(--max-width-content);
  width: calc(100% - 22px);
}
.content-container
{
  background: var(--bg-colour-content);
  padding: 0 0 50px 0;
}
.content-header
{
  color: #666;
  font-weight: normal;
  font-size: 1.0em;
  line-height: 20px;
  text-align: center;
  padding: 20px;
}
.content-banner
{
  min-height: 200px;
}
#home .content-banner
{
  background-color:#fff;
}
.content-banner-overlay
{
  padding: 25px 50px;
  z-index: 1;
}
.content-banner-search-overlay
{
  padding: 25px 50px;
  z-index: 1;
  background-color:#e8e8e8;
}
.content-banner-overlay h1
{
  font-size: 21px;
  line-height: 32px;
  color: var(--colour-banner-overlay);
}
.content-banner-overlay h1 span
{
  font-size: 1.5em;
  font-weight: normal;
  line-height: 64px;
  display: block;
}
.content-banner-search
{
  border-radius: 5px;
  display: block;
  margin: 0 10%;
}
.content-banner-search input
{
  border: 1px solid #aaa;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  font-size: 1.5em;
  line-height: 22px;
  margin: 0;
  padding: 15px;
  vertical-align: middle;
  width: calc(100% - 181px);
}

.content-banner-search input[type="checkbox"]
{
  width:1.5em;
}
.content-banner-search button
{
  background: #393;
  border: 2px solid #393;
  border-radius: 0 5px 5px 0;
  color: #fff;
  font-size: 1.5em;
  line-height: 20px;
  margin: 0;
  padding: 15px 10px;
  vertical-align: middle;
  width: 150px;
  cursor: pointer;
}
.content-banner-search button:hover
{
  opacity: 0.8;
}
.content-banner-other-regions
{
  background-color: rgba(230,230,230,0.33);
  background-image: url('/gov-images/other-regions.png');
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  margin: 25px 50px;
  padding: 10px 50px 10px 10px;
  display: inline-block;
  text-decoration: none;
  text-shadow: 0 0 5px var(--shadow-colour-banner-overlay);
}
.content-banner-other-regions:hover, .content-banner-other-regions:focus
{
  background-color: rgba(240,240,240,0.5);
  color: #fff;
  text-decoration: none;
}



/* Main Menu Bar */
.portal-section-menubar 
{
  margin: 5px 5%;
  padding: 10px 0;
  width: 90%;
}
.portal-menubar-nav h5
{
  display: none;
}
ul.portal-menu 
{
  display: inline-block;
  margin: 0 5px;
}
ul.portal-menu li 
{
  list-style-type: none;
  display: inline-block;
  text-indent: none;
  margin: 1px;
}
ul.portal-menu li a 
{
  background: linear-gradient(to bottom, #fcfcfc, #f0f0f0);
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #666;
  display: block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
}
ul.portal-menu li a:hover, 
ul.portal-menu li a:focus 
{
  background: linear-gradient(to bottom, #f0f0f0, #e6e6e6);
  color: #444;
  text-decoration: underline;
}
ul.portal-menu li a:active 
{
  background: linear-gradient(to bottom, #d6d6d6, #cccccc);
  color: #333;
  text-decoration: underline;
}
ul.portal-menu li.portal-menu-sel a 
{
  background: #d6d6d6;
  color: #333;
}
ul.portal-menu li.portal-menu-home a 
{
 border: 0;
 background: var(--bg-colour-content);
 background-image: url('/gov-images/icons/22px/home-light.png');
 background-position: 0 50%;
 background-repeat: no-repeat;
 padding-left: 30px;
}
ul.portal-menu li.portal-menu-home a:focus, 
ul.portal-menu li.portal-menu-home a:hover, 
ul.portal-menu li.portal-menu-home a:active, 
ul.portal-menu li.portal-menu-home.portal-menu-sel a
{
  background-image: url('/gov-images/icons/22px/home.png');
}
.portal-menubar-nav 
{
  display: inline-block;
  vertical-align: top;
  width: 75%;
}
.portal-menubar-visitor, 
.portal-menubar-user 
{
  display: inline-block;
  text-align: right;
  vertical-align: top;
  width: 24.5%;
}
.portal-menubar-visitor .portal-visitor-login
{
  background-image: url('/gov-images/icons/22px/visitor.png');
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 22px;
  color: #888888;
  display: inline-block;
  padding: 5px 32px 5px 10px;
}
.portal-menubar-visitor .portal-visitor-login.portal-menu-sel
{
  background-image: url('/gov-images/icons/22px/visitor-sel.png');
}
.portal-menubar-user .portal-user
{
  background-image: url('/gov-images/icons/22px/user.png');
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 22px;
  color: #444;
  display: inline-block;
  padding: 5px 35px 5px 10px;
}



/* Footer */
.footer-container 
{
  padding: 30px 15px 60px 15px;
  text-align: center;
  background-image: radial-gradient(circle at 50% 75%, rgba(120,120,120,0.3), transparent);
}
.footer-links 
{
  color: #888;
  text-align: center;
  padding: 5px;
}
.footer-links a.footer-links-link 
{
  color: #ffffff;
  display: inline-block;
  font-size: 0.9em;
  min-width: 90px;
  text-align: center;
  text-shadow: 0 0 5px var(--shadow-colour-footer);
  margin: 5px 10px;
}
.footer-links .footer-links-link a:hover, 
.footer-links .footer-links-link a:focus 
{
  color: #ffcccc;
  text-decoration: underline;
}
.footer-links .footer-links-link a:active 
{
  color: #cc0000;
  text-decoration: underline;
}
.footer-copyright 
{
  color: #ffffff;
  font-size: 0.75em;
  padding: 10px;
  margin: 10px;
  text-align: center;
  text-shadow: 0 0 5px var(--shadow-colour-footer);
}
.footer-copyright p 
{
  background-color: rgba(90,90,90,0.6);
  border-radius: 5px;
  display: inline-block;
  opacity: 0.8;
  padding: 10px 20px;
}


/*

Below are the old styles, above are the in use ones


*/


 
/*  Page Layout Header */
.body-header 
{
  height: var(--height-header);
  min-width: var(--min-width-content);
  max-width: var(--max-width-content);
  margin: 0 auto 0 auto;
  padding: 20px 0;
  position: relative;
  width: 98%;
  z-index: 3;
}
.hidden 
{
  display: none;
}

/* Content Sections */
.content-main 
{
  padding: 0;
}
.content-content 
{
  padding: var(--padding-big) var(--padding);
  clear: both;
}
.content-main .content-content 
{
  padding: var(--padding-big);
  margin: 0 auto;
  max-width: var(--max-width-content);
}
.portal-section-title 
{
  margin: 0 0 var(--padding) 0;
  padding: var(--padding) 0;
}
.portal-section-title h1 
{
  font-size: 1.625em;
}
.portal-section-title h1 .portal-name 
{
  color: var(--colour-text-dark);
  font: inherit;
}
.portal-section-title p {
  color: var(--colour-text-light);
  font-size: 1.1em;
  margin: 0.5em 0;
  padding: 0.25em;
}
.portal-section-title p a {
  font-size: inherit;
}
.content-poweredby {
  margin: 0.5em;
  text-align: center;
}
.content-poweredby a {
  color: var(--colour-text-light);
  font: normal 0.9em sans-serif;
  text-decoration: none;
}
.portal-section-menubar a:hover, .content-poweredby a:hover, .row .col a:hover {
  text-decoration: underline;
}
.portal-section-more-tenders
{
  text-align: center;
}
.portal-section-more-tenders .portal-section-notices
{
  background-image: url('/gov-images/menus/search.png');
  background-position: 10px 50%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  display: inline-block;
  padding-left: 70px;
  text-align: left;
}

/* Back Button Top Menu */
.portal-section-menu-top 
{
  margin: 0 0 1.0em 0;
  padding: 0 0 0.5em 0;
  border-bottom: 1px dashed var(--colour-secondary-light);
}
.portal-section-menu-top a.link-back 
{
  background-image: url('/gov-images/icons/22px/back.png');
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 25px;
  color: var(--colour-text-light);
  font-size: 0.9em;
  line-height: 20px;
  text-decoration: none;
}
.portal-section-menu-top a.link-back:hover, .portal-section-menu-top a.link-back:focus {
  color: var(--colour-text);
  text-decoration: underline;
}
.portal-section-menu-top a.link-back:active {
  color: var(--colour-text-dark);
  text-decoration: underline;
}

/* Notice Box */
.portal-section-notices {
  background-color: var(--colour-highlight-bright);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}
.portal-section-notices p {
  margin: 5px 0;
  padding: 2px 0;
}


/* Search Forms */
.portal-section-search
{
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fcfcfc;
  margin: 10px 20px;
  padding: 10px 20px;
}
.portal-search-row
{
  margin: 0;
  padding: var(--padding) 0;
  position: relative;
}
.portal-search-row:first-child
{
  padding-top: var(--padding);
}
.portal-search-row:last-child
{
  padding-bottom: var(--padding);
}
.portal-search-input, .portal-search-button
{
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 8px 12px;
  vertical-align: middle;
}
.portal-search-input
{
  border: 1px solid var(--colour-secondary-bright);
  width: calc(100% - 170px);
}
.portal-search-button
{
  border: 1px solid var(--colour-secondary-dark);
  background-color: var(--colour-secondary-bright);
  color: var(--colour-secondary-light-text);
  width: 140px;
}
.portal-search-options
{
  border: 1px solid var(--colour-fixed-border);
  background-color: var(--colour-fixed-box);
  color: var(--colour-text);
  margin: 5px 0 0 0;
  padding: 10px;
}
.portal-search-options h4
{
  margin-bottom: 5px;
  color: var(--colour-primary-light-text);
}
.portal-search-options .option-checkbox
{
  display: inline-block;
  margin: 1px;
  min-width: 150px;
  padding: 5px 10px;
  width: 30%;
}
.portal-search-options .option-checkbox label
{
  cursor: pointer;
}
.portal-options-toggle 
{
  background-image: url('/gov-images/icons/22px/expand.png');
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto 100%;
  cursor: pointer;
  display: inline-block;
  padding: 0 30px 0 0;
  margin: 0.5em;
  opacity: 0.8;
}
.portal-options-toggle-on 
{
  background-image: url('/gov-images/icons/22px/collapse.png');
  opacity: 0.8;
}
.portal-options-toggle-off 
{
  background-image: url('/gov-images/icons/22px/expand.png');
  color: #666;
  opacity: 1;
}
.portal-options-toggle-off:hover, .portal-options-toggle-off:focus 
{
  opacity: 0.8;
}

/* Tenders Lists */
.portal-section-tenders 
{
  clear: both;
  display: block;
  position: relative;
  margin: 2.0em auto;
}
.portal-section-tenders h3 
{
  margin: 10px 0;
  vertical-align: middle;
}
.portal-section-tenders h3 .criteria
{
  font-size: 0.9em;
  line-height: 1.5em;
  vertical-align: middle;
}
.portal-section-tenders h3 .criteria .criteria-words,
.portal-section-tenders h3 .criteria .criteria-categories,
.portal-section-tenders h3 .criteria .criteria-fields
{
  vertical-align: middle;
}
.portal-section-tenders h3 .criteria .criteria-words
{
  background-color: #e0f9e9;
  border-color: #c0f6dc;
}
.portal-section-tenders h3 .criteria .criteria-categories
{
  background-color: #e9f6ff;
  border-color: #c0f0ff;
}
.portal-section-tenders h3 .criteria .criteria-fields
{
  background-color: #ffe6f6;
  border-color: #f0c6e6;
}
.criteria-error
{
  text-decoration: line-through;
}
.portal-section-search-suggestion
{
  text-align: center;
}
.portal-section-search-suggestion .portal-section-notices
{
  background-color: #f9f9ff;
  background-image: url('/gov-images/menus/help.png');
  background-position: 10px 50%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  border-color: #d6d6ff;
  display: inline-block;
  padding-left: 100px;
  margin: 10px auto;
  text-align: left;
}
.portal-section-tenders .no-results
{
  text-align: center;
}
.portal-section-tenders .no-results .portal-section-notices
{
  background-color: #fff0f0;
  background-image: url('/gov-images/menus/no.png');
  background-position: 10px 50%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  border-color: #ffcccc;
  display: inline-block;
  padding-left: 80px;
  margin: 10px auto;
  text-align: left;
}
.portal-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: 0.5em 0.5%;
  min-height: 1.125em;
  margin-right: 1px;
}
.row-title .col {
  background-color: var(--colour-primary);
  color: var(--colour-primary-text);
}
.row-alt .col {
  background: #f6f6f6;
}
.row-alt4 .col {
  background: #f0f0f0;
}
.row .col a {
  color: var(--colour-link);
  text-decoration-color: var(--colour-highlight);
}
.row .col a:hover, .row .col a:focus {
  text-decoration-color: var(--colour-link-hover);
}
.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: 80px;
}
.row .col-desc {
  width: calc(100% - 4% - 220px - 4px);
}
.row .col-date {
  width: 100px;
}
.row .col-logo 
{
  text-align: center;
  width: 125px;
}
.row .col-name 
{
  width: calc(100% - 3% - 3px - 125px - 50px);
}
.row .col-dtp 
{
  text-align: right;
  width: 50px;
}
.row .col-date .not-stated {
  color: var(--colour-secondary-dark);
  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: 0.275em 0.25%;
 width: 40px;
 text-align: center;
}
.row .col a {
 text-decoration: none;
}
.row .col-logo img {
 margin: -0.5em 0;
 height: 2.125em;
 width: auto;
 max-width: 100%;
}


/* Tender Portal List */
.portal-section-list-fancy
{
  text-align: left;
  margin: 25px 0;
}
.portal-link-fancy
{
  background-color: #888;
  background-image: linear-gradient(to bottom, #999, #888);
  background-position: 50% 50%;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: inline-block;
  margin: var(--padding-tiny);
  opacity: 1;
  padding: 0;
  position: relative;
  height: 150px;
  min-width: 200px;
  width: calc(25% - 10px);
}
.portal-link-fancy span
{
  background-color: rgba(230,230,230,0.6);
  border: 1px solid #eee;
  border-left: 0;
  border-right: 0;
  color: #333;
  display: block;
  font-size: 1.25em;
  line-height: 20px;
  text-decoration: none;
  text-shadow: 0 0 9px #fff;
  padding:  15px 10px;
  position: absolute;
  bottom: calc(50% - 10px - 15px);
  left: 0;
  right: 0;
  text-align: center;
}
.portal-link-fancy:hover,
.portal-link-fancy:focus,
.portal-link-fancy:active
{
  opacity: 0.8;
}

.portal-link-sel
{
  border: 3px solid #38AFE6;
  height: 146px;
  width: calc(25% - 20px);
  opacity: 1;
}
.portal-link-sel span
{
  background-color: rgba(160,220,250,0.6);
  border-color: #38AFE6;
  opacity: 1;
}

/* 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('/gov-images/anims/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 */
.portal-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: var(--colour-primary-bright);
  color: var(--colour-primary-light-text);
  height: 100%;
  width: 130px;
  position: absolute;
  padding: 0;
  line-height: 2.125em;
  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.25em 0.25em;
  margin: 1px 0;
  max-width: 99.95%;
  font-size: 1.0em;
  line-height: 1.325em;
}
.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-row-field span.info, 
.form-row .form-row-text span.info
{
  color: #777;
  font-size: 0.9em;
  font-style: italic;
  margin-left: 1.5em;  
}
.form-row .form-row-field span.info a, 
.form-row .form-row-text span.info a
{
  color: #333;
  font-style: italic;
}
.form-row .form-required 
{
 background-color: var(--colour-primary);
 color: var(--colour-primary-text);
}
.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;
}
.portal-section-separator 
{
 clear: both; 
 height: 1px;
 border-top: 1px dashed #cccccc;
 margin: 16px auto 15px auto;
 width: 96%;
}

/* Reset Password Page */
#PassWordMatch.match, 
#PassWordMatch.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;
}
#PassWordMatch.fail {
 background-image: url('/gov-images/icons/22px/no.png');
 color: #c00;
}
#PassWordMatch.match {
 background-image: url('/gov-images/icons/22px/yes.png');
 color: #090;
}
#UserPassword.fail,
#ConfirmUserPassword.fail
{
 color: #000;
}
#UserPassword.match,
#ConfirmUserPassword.match
{
 color: #090;
}
#UserPassword.error,
#ConfirmUserPassword.error 
{
 background-color: #fffcfc;
 border: 1px solid #c00;
 color: #c00;
}

/* Log In Page */
.page-login .form-row .form-row-title, .page-login .form-row .form-row-notitle 
{
 min-width: 6.0em;
}
.page-login .portal-section-login-form, .page-login .portal-section-login-btn 
{
 display: inline-block;
 margin: 0.5em;
 vertical-align: top;
}
.portal-section-login-form .form-row 
{
  min-width: 26em;
}
.portal-section-login-form .form-row input 
{
 min-width: 20em;
}
.portal-section-login-btn button 
{
 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;
}

/* Password Reset Page */
.form-row-field .btn-request 
{
  line-height: 1.325em;
  margin: 1px 0;
  padding: 0.25em var(--padding);
  vertical-align: top;
}	

/* 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 */
.page-tender .portal-section-title 
{
  margin-bottom: var(--padding-small);
}
.page-tender .portal-section-buttons 
{
  margin-top: 0;
}
.page-tender .portal-section-form 
{
  margin: var(--padding-big) 0;
}
.page-tender .actionbutton 
{
  background-color: #aaa;
  border: 1px solid #aaa;
  text-align: center;
  margin: 2px;
  padding: 5px;
  min-width: 100px;
  font-weight: normal;
  opacity: 1;
  color: #000;
}
.page-tender .actionbutton:hover 
{
  opacity: 0.8;
}
.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 img.icon,
.page-tender .form-row-text img.icon
{
  margin-right: var(--padding-small);
}
.page-tender .form-row-field .portal-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 */
.portal-not-found {
  margin-bottom: 4.0em;
}
.portal-not-found h1 {
  color: #c00;
  margin-top: 1.0em;
  margin-bottom: 2.0em;
}


/* Log In / Register buttons */
.portal-buttons 
{
  padding: var(--padding-small);
  vertical-align: middle;
}
.portal-section-buttons 
{
  text-align: center;
  margin: 3.0em 1.0em;
}
.portal-buttons a, 
.portal-buttons button, 
.portal-buttons input, 
div .btn-request 
{
  border: 1px solid #ddd;
  border-radius: 0.25em;
  box-sizing: content-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.0em;
  font-weight: 500;
  padding: var(--padding) var(--padding-med);
  margin: var(--padding);
  text-decoration: none;
  text-align: center;
  min-width: 115px;
  vertical-align: middle;
}
.portal-buttons .btn-cancel
{
  background-color: #c0303f;
  border-color: #c0303f;
}
.btn-reset
{
  background-color: #c0303f;
  border-color: #c0303f;
}
.portal-buttons a:hover, 
.portal-buttons button:hover, 
.portal-buttons input:hover 
{
 opacity: 0.8;
}
.portal-buttons input[type="checkbox"] 
{
  display: none;
}
.portal-buttons .btn-login, div .btn-request 
{
  background-color: #2394c3;
  border-color: #2394c3;
}
.portal-buttons .btn-register 
{
  background-color: #393;
  border-color: #393;
}
.portal-buttons .btn-login:hover, 
.portal-buttons .btn-login:focus, 
div .btn-request:hover, 
div .btn-request:focus 
{
 opacity: 0.8;
}
.portal-buttons .btn-register:hover, 
.portal-buttons .btn-register:focus 
{
opacity: 0.8;
}
.portal-buttons .btn-submit 
{
  background-color: #393;
  border-color: #696;
  color: #fff;
}
.portal-buttons .btn-submit:hover, 
.portal-buttons .btn-submit:focus 
{
opacity: 0.8;
}
.portal-buttons .btn-submit:active 
{
  background-color: #393;
  border-color: #393;
}
.portal-buttons button img, .portal-buttons a img 
{
 margin: -0.25em 0.25em -0.25em -0.125em;
}
.portal-buttons form
{
  display: inline-block;
  font-size: inherit;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}


/* Login + Register | Subscribe | Unsubscribe buttons */
.portal-section-buttons {
  clear: both;
  display: block;
  position: relative;
  margin: auto 1.0em auto;
  text-align: center;
}
.portal-section-buttons .buttons-description {
  position: relative;
  display: block;
  margin: 1.0em auto;
  padding: 0;
}
.portal-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;
}
.portal-section-buttons .buttons-description .buttons-description-pointer-up {
  background-image: url('/gov-images/pointer-top.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 18px;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -9px;
}
.portal-section-buttons .buttons-description .buttons-description-pointer-down {
  background-image: url('/gov-images/pointer-bottom.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 18px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -9px;
}
.portal-section-buttons p a, .portal-section-buttons p button {
  padding: 1px 3px;
  margin: 0 1px;
}
.portal-section-client {
  padding: var(--padding) var(--padding-small) var(--padding-big) var(--padding-small);
}
.page-home .portal-buttons .btn-file {
  background-image: url('/gov-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;
}


/* General content styles */
.clear-float 
{
 clear: both;
}
.print-only 
{
 display: none;
}

.portal-name 
{
  color: var(--colour-text-light);
  font-weight: bold;
}
.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('/gov-images/link-tn.png');
  padding-left: 27px;
}
.link-tender img {
  height: 1.4em;
  width: 1.4em;
  margin: 0 4px;
}
.link-unavailable {
  background-image: url('/gov-images/icons/22px/no-light.png');
  font-size: 0.9em;
  color: #666666;
  font-style: italic;
  padding-left: 27px;
}
.link-disabled {
  background-image: url('/gov-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;
}

/* Submission Pages */
.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;
}

.wizardhelp {
  background-image:url('/images/btn_info.png');
  background-repeat:no-repeat;
  background-position:50% 50%;
  background-size:contain;
  display:inline-block;
  margin-left:1.0em;
  height:1.0em;
  width:1.0em;
  vertical-align:top;
}

/* 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 (761px - 980px) */
@media only screen and (min-width: 761px) and (max-width: 980px), (orientation: landscape) and (min-width: 761px) and (max-width: 980px) 
{
  html, 
  body 
  {
    font: 400 11pt sans-serif;
  }
  .portal-menubar-nav
  {
    width: 60%;
  }
  .portal-menubar-nav .no-mobile
  {
    display: none;
  }
  .portal-menubar-visitor, 
  .portal-menubar-user
  {
    width: 39.0%;
  }
  .portal-section-more-tenders .portal-section-notices
  {
    padding-left: 90px;
  }
}

/* Override Styles for Mobile View (0px - 980px) */
@media only screen and (min-width: 0px) and (max-width: 760px), (orientation: landscape) and (min-width: 0px) and (max-width: 760px), (orientation: portrait) and (min-width: 0px) and (max-width: 760px) 
{
  .no-mobile 
  {
    display: none;
  }
  html, 
  body 
  {
    font: 400 18pt sans-serif;
  }
  .body-header {
    height: auto;
    min-height: var(--height-header);
  }
  .body-header .header-tn {
    display: none;
  }
  .portal-name
  {
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #c0303f;
    z-index: 100;
    font-size: 01em;
    line-height: inherit;
    color: #fff;
    font-size: 1em;
  }
  .portal-section-list-fancy {
    text-align: center;
    margin: 25px 0;
  }
  .content-banner-overlay h1 span {
    font-size: 1em;
    font-weight: normal;
    line-height: 30px;
    display: block;
}
  .content-banner
  {
    padding-top:1.5em;
  }
  .content-banner-overlay
  {
    padding: var(--padding);
  }
  .content-banner-search
  {
    margin: var(--padding) 0;
    padding: var(--padding);
    width: 100%;
  }
  .content-banner-search input
  {
    border: 1px solid var(--colour-fixed-border);
    border-radius: 5px;
    display: block;
    font-size: 0.7em;
    width: 85%;
  }
  .content-banner-search button
  {
    width: 95%;
    border-radius: 0px;
    margin-top: 0.5em;
  }
  .body-header-company {
    position: static;
    display: block;
    text-align: center;
    line-height: 1.0em;
    width: 100%;
  }
  .body-header-company span.portal-name {
    display: block;
    text-align: center;
    width: 100%;
  }
  .content-sidebar {
    width: 2px;
    transition: width 0.2s;
    transition-delay: 0.2s;
    z-index: 10;
  }
  .content-sidebar h2, .content-sidebar div {
    opacity: 0;
    transition: opacity 0.2s;
    transition-delay: 0.2s;
  }
  .content-sidebar:focus, .content-sidebar:active, .content-sidebar:hover, #content-sidebar.sidebar-force-show {
    width: 90%;
    transition: width 0.2s;
  }
  .content-sidebar h2, .content-sidebar div {
   max-width: 2px;
   overflow: hidden;
   transition: all 0.2s;
   transition-delay: 0.2s;
  }
  .content-sidebar:focus h2, .content-sidebar:active h2, .content-sidebar:hover h2, .content-sidebar:focus div, .content-sidebar:active div, .content-sidebar:hover div, #content-sidebar.sidebar-force-show h2, #content-sidebar.sidebar-force-show div {
    opacity: 1.0;
    transition: all 0.2s;
    max-width: 100%;
    overflow: visible;
  }
  .content-sidebar::after {
    background-color: var(--colour-secondary-light);
    background-image: url('/gov-images/icons/22px/menu-white.png');
    background-repeat: no-repeat;
    background-position: 40% 50%;
    color: var(--colour-secondary-text);
    border: 1px solid var(--colour-secondary-dark);
    border-left: 0;
    border-radius: 0 50% 50% 0;
    content: " ";
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
    position: absolute;
    top: 25px;
    right: -61px;
    width: 50px;
    height: 50px;
    padding: 5px;
  }
  .portal-menubar-nav, 
  .portal-menubar-user, 
  .portal-menubar-visitor
  {
    display: block;
    width: 100%;
    text-align: center;
  }
  ul.portal-menu li a 
  {
    font-size: 1.0em;
    padding: 15px;
    margin: 10px 0;
  }
  ul.portal-menu li 
  {
    margin: 5px;
  }
  .portal-menu-home
  {
    padding: 0 var(--padding);
    margin: 0 var(--padding-giant) 0 0;
    overflow: hidden;
    width: 20px;
    white-space: nowrap;
    vertical-align: middle;
  }
  .content-container 
  {
    left: 2px;
  }
  .portal-section-separator 
  {
    margin: 2.0em 0;
  }
  .content-poweredby 
  {
    margin-top: 40px;
  }
  .portal-link-fancy
   { 
    margin: 5px;
    height: auto;
    min-height: 150px;
    min-width: 200px;
    width: calc(50% - 16px);
  }
  .row .col 
  {
    padding: 0.8em 0.75%;
  }
  .row .col-id 
  {
    width: 15%;
  }
  .row .col-desc 
  {
    width: 81.0%;
  }
  .row .col-name
  {
    width: calc(100% - 3% - 2px - 100px);
  }
  .row .col-dtp
  {
    width: 100px;
  }
  .row .col-dtp a
  {
   margin: 0 var(--padding-small); 
  }
  .row .col-actions
  {
    padding: 0.575em 0.75%;
  }
  .portal-buttons a, .portal-buttons input, .portal-buttons button 
  {
    font-size: 1.0em;
    font-weight: normal;
    width: 45%;
    margin: 5px 0.75%;
    padding: 1.0em 0.5%;
  }
  .page-login .portal-section .portal-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 .portal-section-login-btn {
    display: block;
    text-align: center;
  }
  .portal-section-login-btn .btn-login {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .page-password .portal-section-form {
    padding-bottom: 60px;
  }
  .page-password .portal-section-form .form-row-title {
    display: none;
  }
  .page-password .portal-section-form .form-row-field {
    display: block;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .page-password .portal-section-form .form-row-field input, .page-password .portal-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 .portal-section-form .form-row-field button {
    padding: 0.75em 1%;
    width: 48%;
  }
  .page-register .portal-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 
  {
    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%;
  }
  #frm_dtp .portal-section-buttons button 
  {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.0em;
  }
  .footer-links .footer-links-link 
  {
    vertical-align: middle;
    width: 22.5%;
  }
  .footer-links .footer-links-link a 
  {
    font-size: 1.25em;
  }
  .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%
  }
  .portal-section-more-tenders .portal-section-notices
  {
    background-image: none;
    padding-left: var(--padding);
  }
  .portal-section-buttons.portal-buttons
  {
    padding: var(--padding);
  }
  .portal-section-buttons.portal-buttons a,
  .portal-section-buttons.portal-buttons input,
  .portal-section-buttons.portal-buttons button
  {
    display: block;
    margin: var(--padding);
    width: auto;
  }
  #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 .content-sidebar, .body-container .portal-section-menubar, .body-container .portal-section-menu-top, .body-header .client-logo, .body-container .client-banner, .body-container .portal-section-buttons, .footer-container {
    display: none;
  }
  .content-container {
    position: static;
    left: 0;
  }
  .content-container #content-main {
    margin: 0;
    width: 100%;
  }
  .body-header {
    padding: 1.0em;
    min-height: 4.0em;
  }
  .body-header .body-header-company {
    text-align: center;
    width: 98%;
  }
  .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;
  }
}

