:root 
{
  --fg-alt:#002080;
}

html
{
  overflow-y:scroll;
}

body
{
  margin:0;
  margin-bottom:3rem;
  padding:0;
  background-image:url("../PNG/brushed_metal_m1_gray.png");
  background-repeat:repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

#main
{
  max-width:53rem;
  margin:auto;
  margin-top:0;
  padding-top:1rem;
  padding-left:3vw;
  padding-right:3vw;
  background:#FFFFFF;
  color:#000000;
  font-family:Droid-Sans,Helvetica,Arial,sans-serif;
  /*                                               */
  /* Use the CODEXium Logo as background watermark */
  /*                                               */
  background-image: url('../IMG/positive.png');
  background-attachment: fixed;
  background-position: center center ;
  background-size: contain !important ;
  background-repeat: no-repeat ;
}


/* RWD Item */
* { box-sizing: border-box; }

@font-face
{
  /*
  Distributable Fonts
  */
  /* font-family is the name you want to attribute to a font */
  font-family: 'Droid-Sans';
  src: url('../fonts/Droid-Sans/DroidSans.ttf') format("truetype");
}

.logo
{
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.copyright 
{
  color:#888888;
  font-size:0.7rem;
  font-family:verdana;
  clear:left;
  text-align:center;
  margin-bottom:1.5rem;
  padding-bottom:1.5rem;
}

img.link
{
  cursor:pointer;
}

a:link , a:visited , a:active
{
  color:var(--fg-alt);
  text-decoration:none;
}

a:hover
{
  color:var(--fg-alt);
  text-decoration:underline;
} 

p
{
  text-align: left;
}

/*
p.LogoBar
{
  transform: scale( 0.9 , 1.75);
  text-align: center;
  font-weight: bold;
  letter-spacing:0.25rem;
  color: #5f6478; 
  font-size: 1.75rem;
  padding:0;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
*/

td.about
{
  text-align:center;
  font-size:2rem;
}


table.about 
{
  margin-left: auto;
  margin-right: auto;
  width:95%;
}


table.about tr , td
{
  /*
  border: 1px solid black;
  */
  padding-bottom: 1.5rem;
}


hr
{
  color:#999999;
  background-color:#999999;
}

br.clear 
{
  clear:both;
}

ul
{
  list-style-type:square;
  margin-left:2rem;
  padding-left:1rem;
}

li
{
  padding-bottom:0.25rem;
  padding-top:0.25rem;
}

ul.small
{
  margin-left:0;
  font-size:0.9rem;
}

h1
{
  color:var(--fg-alt);
  font-size:1.5rem;
  margin-bottom:0;
  padding-bottom:0;
}

h2
{
  color:var(--fg-alt);
  font-size:1.25rem;
  margin-bottom:0;
  padding-bottom:0;
}

img.float_right
{
  float:right;
  padding:0.5rem;
}

img.float_left
{
  float:left;
  padding:0.5rem;
}

img.wrap
{
  float:left;
  margin:0 1rem 0 0;
}

img.frame
{
  border-width:0.2rem;
  border-style:solid;
  max-width:100%;
}

img.frame-center
{
  border-width:0.2rem;
  border-style:solid;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  display:block;
}

img.frameless
{
  max-width:100%;
}

pre.command
{
  font-size: 1rem;
  color: #332A77;
  background: rgba( 120, 150, 180 , 0.33 );
  padding:0.5rem;
  overflow-x:auto;
}

button 
{
  background: rgba( 120, 150, 180 , 0.33 );
  border-radius: 0.5rem;
  text-align:center;
  border-width: 0.2rem;
  padding-top: 0.2rem;
}

input 
{
  font-size: 1.2rem;
  font-color: #78C8B4;
  background: rgba( 120, 200 , 190 , 0.5 ) ;
  border-width: 0.2rem;
  border-color: #78C8B4;
  color: #336644;
}

input[type=text] 
{
  width:100%;
}

button:hover 
{ 
  background: rgba( 120, 200 , 180 , 0.5 ) ;
  border-width: 0.2rem;
  border-color: #78C8B4;
  color: #558866;
}

font.comment
{
  color:#666666;
}

label
{
  color: #336644;
  font-size: 1.5rem;
  font-family: serif;
}

button.clipped
{
  color: #558866;
  font-weight:bold;
  border-width: 0.3rem;
  background: rgba( 120, 200 , 180 , 0.5 ) ;
  border-color: #78C8B4;
}

fieldset
{
  border-width: 0.4rem;
}

fieldset legend
{
  color: var(--fg-alt);
  font-size: 1.5rem;
  //border-width: 0.3rem;
  //border-color: #78C8B4;
}

input[type=text].EMPTY
{
  border-color: #993300;
  background: rgba( 200 , 120 , 20 , 0.5 ) ;
}

input[type=text].Normal
{
  border-color: #78C8B4;
}


/******************************************/
/* TIMELINE                               */
/******************************************/
/*                                        */
/* Graphical/CSS Timeline                 */
/* cf. w3schools.com                      */
/* Modified for this site                 */
/*                                        */
/******************************************/

* { box-sizing: border-box; }

font.note { font-size:0.75rem; }

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: gray;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: transparent;
  width: 50%;
  border-width: 0.2rem;
  border-color: #1199A0;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid gray;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent gray;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid gray;
  border-width: 10px 10px 10px 0;
  border-color: transparent gray transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: rgba(211, 211, 211, 0.75);
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 60px;
  border: medium solid gray;
  border-width: 10px 10px 10px 0;
  border-color: gray gray gray gray;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }

}/* media */



/*************************************************/
/* BANNER                                        */
/*************************************************/

/*
 trees-in-fall.jpg : filter:brightness(92%) background-color:rgba(255,255,255,0.60)
*/

.SoftwareName-Image{
  background-image: 
  url("../IMG/trees-in-fall.jpg");
  filter: brightness(92%);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 10rem;
  width: 100%;
  margin-bottom: 1rem;
}

.SoftwareName-Text {
  background-color: rgba(255,255,255,0.60);
  color: black;
  font-size: 3.75rem; 
  font-weight: bold;
  margin: 0 auto;
  padding: 1rem;
  width: 22rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

