@charset "UTF-8"; 
/* Copyright EXPROBIZ 2018
 * Digital Core Systems CSS 
 * Ross Davidson - 16 April 2018
 */

/**************************************************************************************************
                                       BASIC SETTINGS 
**************************************************************************************************/
body {
  font-size: 1.2em;
  font-family: 'Cairo', sans-serif;
  /*position: absolute;*/
  margin: 20px;
  margin-top: 5px;
  /* min-width:1000px; /* suppose you want minimun width of 1000px */
  /* width: auto !important;  /* Firefox will set width as auto */
  /* width:1000px;             /* As IE ignores !important it will set width as 1000px; */
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, p, .ulxxxx{
  padding: 0;
  margin: 0;
}

.ulxxxx {
  list-style: none;
}

a, a:link, a:active, a:visited, a:hover { 
  color: #999;
}

a {
  text-decoration: none;
  width: 100%;
  height: 100%;
}

/* WRAPPER: wraps entire contents of page */
#wrapper {
  width: 100%;
  min-width: 800px;
  margin: 0 auto;
}


/**************************************************************************************************
                                       BANNER SETTINGS 
**************************************************************************************************/
#banner {
  background: #FFF;
  position: relative;
  height: 65px;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

/* fix IE 6: improperly positioning 
'subscribe' and 'about us' links in banner 
* html #banner {
  height: 1px;
}
*/

#banner #dcs-logo {
  position: absolute;
  left: 0px;
  top: 5px;
  display: block;
  width: 360px;
  height: 40px;
  text-decoration: none;
  background: url(images/logo_360x40_300dpi.png) no-repeat left top;
  background-size: 360px 40px;
  -moz-background-size:360px 40px;
  -webkit-background-size:360px 40px;
}

#banner #tagline {
  position: absolute;
  top: 35px;
  left: 100px;
  font-variant: small-caps;
}


#banner .date {
  position: absolute;
  right: 10px;
  top: 25px;
}

.separator {
  border-right: 1px solid #888;
  padding-right: 10px;
}



/**************************************************************************************************
                                        NAVBAR SETTINGS
**************************************************************************************************/

.thenavbar {
  position: relative;
  top: 15px;
  opacity: 0.95;
}
.navigation {
  display: inline-block;
  list-style: none;
  font-size: 0.8em; 
  background: #EEE;
  padding: 0;
  margin: 0;
  width: 160px; 
  height: 30px; 
  vertical-align: middle;
  z-index: 20;
}

.thenavbar > * {
  vertical-align: middle;  
}

.navigation, .navigation a.mainmenu {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.navigation:hover, .navigation:hover a.mainmenu {
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
}

.navigation a.mainmenu {
  display: block; 
  height: 30px;
  font-weight: bold; 
  text-align: center; 
  text-decoration: none; 
  color: #222;  
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.navigation:hover a.mainmenu {
  color: #111;
  background: #999;
}

.navigation li { 
  width: 160px; 
  height: 30px;
  background: #EEE;
  //font: bold 12px arial, sans-serif !important; 
  font-size: 0.9em;
  color: #222;
  text-align: center;
  margin: 0;
  -webkit-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(350px) rotateX(-90deg);
  -o-transform: perspective(350px) rotateX(-90deg);
  transform: perspective(350px) rotateX(-90deg);
  box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
  -webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

.navigation li:hover a {
  color: #000;
  background: #d3ffc7;
}

.navigation li:nth-child { background: #F5F5F5; }
/* .navigation li:nth-child(odd) { background: #EFEFEF; } */

.navigation li.n1 { 
  -webkit-transition: 0.1s linear 0.6s;
  -o-transition: 0.1s linear 0.6s;
  transition: 0.1s linear 0.6s;
}
.navigation li.n2 { 
  -webkit-transition: 0.1s linear 0.5s;
  -o-transition: 0.1s linear 0.5s;
  transition: 0.1s linear 0.5s;
}
.navigation li.n3 { 
  -webkit-transition: 0.1s linear 0.4s;
  -o-transition: 0.1s linear 0.4s;
  transition: 0.1s linear 0.4s;
}
.navigation li.n4 {
  -webkit-transition: 0.1s linear 0.3s;
  -o-transition: 0.1s linear 0.3s;
  transition: 0.1s linear 0.3s;
}
.navigation li.n5 {
  -webkit-transition: 0.1s linear 0.2s;
  -o-transition: 0.1s linear 0.2s;
  transition: 0.1s linear 0.2s;
}
.navigation li.n6 { 
  -webkit-transition:0.1s linear 0.1s;
  -o-transition:0.1s linear 0.1s;
  transition:0.1s linear 0.1s;
}
.navigation li.n7 {
  border-radius: 0px 0px 4px 4px;
  -webkit-transition: 0.1s linear 0s;
  -o-transition: 0.1s linear 0s;
  transition: 0.1s linear 0s;
}

.navigation:hover li {
  -webkit-transform: perspective(350px) rotateX(0deg);
  -o-transform: perspective(350px) rotateX(0deg);
  transform: perspective(350px) rotateX(0deg);
  -webkit-transition:0.1s linear 0s;
  -o-transition:0.1s linear 0s;
  transition:0.1s linear 0s;
}
.navigation:hover .n2 {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navigation:hover .n3 {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.navigation:hover .n4 {
  transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.navigation:hover .n5 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.navigation:hover .n6 {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.navigation:hover .n7 {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.logging #loggingLink,
.imaging #imagingLink,
.software #softwareLink,
.about #aboutLink,
.contact #contactLink,
.home #homeLink,
.register #registerLink 
{
  text-decoration: underline;
}

/**************************************************************************************************
                                        MAIN CONTENT WRAPPER
**************************************************************************************************/

#contentWrapper {
  margin-top: 20px;
  width: 100%;
  min-width: 600px;
  /* border: dotted 1px black; */
}

/**************************************************************************************************
                                           MAIN CONTENT
**************************************************************************************************/

#main {
  margin-left: 10px;
  margin-right: 135px;
  padding: 0 5px 5px 0;
  border: none;
  border-right: 1px solid #666666;
  background: #FFF;
  min-height: 480px;
  min-width: 600px;
}
#main h1 {
  font-size: 1.5em;
  font-weight: bold;
  color: #663900;
  padding-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
#main h2 {
  font-size: 1.4em;
  font-weight: bold;
  color: #663900;
  padding-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
#main h3 {
  font-size: 1.1em;
  font-weight: bold;
  font-variant: small-caps;  
  color: #663900;
  margin-bottom: 15px;
  text-align: center;
}
#main h4 {
  font-size: 1.1em;
  font-weight: bold;
  color: #663900;
  margin-bottom: 15px;
  text-align: center;
}
#main h5 {
  font-size: 1.1em;
  font-weight: normal;
  color: #663900;
  margin-bottom: 15px;
  text-align: center;
}
#main h6 {
  font-size: 0.8em;
  font-weight: normal;
  color: #663900;
  clear: left;
}
#main ol {
  font-size: 1.1em;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 0px;
  padding: 0 0 0 20px;
  color: #663900;
  clear: left;
}
#main ol  li{
  margin-bottom: 5px;
}
.center_justify {
  text-align: center;
}
.space_above {
  margin-top: 20px;
}


#main p {
  line-height: 1.5em;
  margin-bottom: 1.0em;
  text-align: justify;
  clear: left;
}
#main p.information {
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.3em;
  margin-bottom: 0.6em;
  text-align: justify;
  width: 95%;
}
#main p.footnote {
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.3em;
  margin-top: 2em;
  text-align: justify;
  width: 95%;
}
#main p.caption {
  font-size: 1.0em;
  font-weight: normal;
  font-style: italic;
  line-height: 1.3em;
  margin-bottom: 0.6em;
  text-align: center;
  width: 95%;
}
#main p.address {
  font-size: 1.1em;
  font-weight: normal;
  line-height: 1.5em;
  margin-bottom: 0.6em;
  text-align: left;
  width: 95%;
  padding: 0 0 0 20px;
}
#main p.information a {
  font-size: 0.9em;
  font-weight: normal;
  border-bottom: 1px solid #222;
  text-align: left;
}

/**************************************************************************************************
                                          CONTACT FORM
**************************************************************************************************/
#divContactForm {
  margin: 5px 0 20px 0;
  width: 100%;
}
#divContactForm .formitem {
  font-size: 0.9em;
  margin: 0 0 0 0;
  width: 100%;
}
#divContactForm .inputLabel {
  display: inline-block;
  vertical-align: top;
  width: 100px;
  text-align: right;
  margin-right: 15px;
  clear: left;
  padding: 0 10px 0 0;
}
#divContactForm .inputField {
  width: 80%;
  height: 18px;
  font-family: arial;
  font-size: 1.0em;
  padding-left: 4px;
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  border-bottom: 2px solid #EEE;
  border-right: 2px solid #EEE;
  background-color: #FE9;
}
#divContactForm .inputArea {
  width: 80%;
  height: 50px;
  font-family: arial;
  font-size: 1.0em;
  padding-left: 4px;
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  border-bottom: 2px solid #EEE;
  border-right: 2px solid #EEE;
  background-color: #FE9;
}
#divContactForm .gbuttonwide {
  background-image: url(images/gbutton_200x15.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 200px 20px;
  width: 100%;
  height: 20px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  padding: 0 10px 2px 0;
}

#divMessageAlert  {
  position: fixed;
  top: 50%; 
  left: 30%; 
  margin-top: -45px; 
  margin-left: 0px;
  padding: 2px 2px 2px 2px;
  border: 2px solid #000;
  background: #FE9;
  width: 40%;
  height: 150px;
  display: none;
  opacity:0.9;
  filter:alpha(opacity=90); /* For IE8 and earlier */
}
#divMessageAlert p {
  text-align: center;
  padding: 0 0 0 0;
  margin: 2px 0 8px 0;
}
#divMessageAlert .confirmOK {
  float: left;
  margin-left: 46%;
  padding: 0 2px 2px 0;
  font-variant: normal;
  font-family: arial;
  font-size: 0.8em;
  height: 2.0em;
  width: 40px;
}

/**************************************************************************************************
                                          PAGE IMAGES
**************************************************************************************************/
.parallax {
  /* Set a specific height */
  min-height: 400px; 
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: 40% 210px;
  background-repeat: no-repeat;
  background-size: auto;
}
.parallax1 {
  /* The image used */
  background-image: url("images/rocks005_1600x1094_q50.jpg");
  /* Set a specific height */
  min-height: 400px; 
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax_MSCL-S {
  /* The image used */
  background-image: url("images/MSCL-S 800x426.png");
  }
.parallax_MSCL-XZ {
  /* The image used */
  background-image: url("images/MSCL-XZ 579x400.png");
  }
.parallax_MSCL-XYZ {
  /* The image used */
  background-image: url("images/MSCL-XYZ 501x400.png");
}
.parallax_MSCL-XRF {
  /* The image used */
  background-image: url("images/MSCL-XRF 633x400.png");
}
.parallax_MSCL-NG {
  /* The image used */
  background-image: url("images/MSCL-NG 472x400.png");
  }
.parallax_MSCL-CIS {
  /* The image used */
  background-image: url("images/MSCL-CIS 458x400.jpg");
}
.parallax_MSCL-HIS {
  /* The image used */
  background-image: url("images/MSCL-HIS 579x400.jpg");
}
.parallax_XCT {
  /* The image used */
  background-image: url("images/MSCL-XCT 606x400.jpg");
}
.parallax_RXCT {
  /* The image used */
  background-image: url("images/MSCL-RXCT 703x400.jpg");
}
.parallax_VXCT {
  /* The image used */
  background-image: url("images/MSCL-VXCT 348x400.jpg");
}
.parallax_PlugXcan {
  /* The image used */
  background-image: url("images/Plugscan 356x400.jpg");
}
.parallax_ScoutXcan {
  /* The image used */
  background-image: url("images/Scoutscan 602x400.jpg");
}
.parallax_PerGeos {
  /* The image used */
  background-image: url("images/PerGeos 738x400.png");
}


/**************************************************************************************************
                                          ADVERTISING
**************************************************************************************************/
#adverts {
	position: absolute;
	top: 160px;
	right: 20px;
	width: 125px;
}

#adverts p {
	margin-bottom: 5px;
	text-align: center;
}

#adverts .tight {
  margin-bottom: 3px;
  text-align: center;
}


/**************************************************************************************************
                                        COPYRIGHT
**************************************************************************************************/

#copyright {
  // clear: both;
  position: relative;
  margin: 10px 0 0 -1px;
  width: 100%;
  height: 24px;
  font: 0.8em arial;
  font-weight: normal;
  color: #00E;
  background: none;
}


#copyright .copyrightMessage {
  position: absolute;
  left: 0px;
  bottom: 5px;
}

#copyright .copyrightMessage::before,
#copyright .copyrightMessage:before {
  content: "\00A9  Copyright ";
}


#copyright .websiteBy {
  position: absolute;
  left: 40%;
  bottom: 5px;
}

#copyright .lastUpdate {
  position: absolute;
  right: 10%;
  bottom: 5px;
}

#copyright .lastUpdate:after {
  content: "14 MAY 2019";
}


/**************************************************************************************************
                                 REGISTRATION & LOGIN DIALOGS
**************************************************************************************************/
