<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-----------------------------------------

    EcoChains - How To Play

    Created by
    Jogo Labs    

    Styling by
    Education Through eXploration
    Arizona State University      

-----------------------------------------*/



/*-----------------------------------------
    Color Swatch Variables            
-----------------------------------------*/
:root {
    /* Blue */
    --primary100:#1E3C66;       --primary100a:rgba(30, 60, 102, 1);
    --primary80:#4B6384;        --primary80a:rgba(30, 60, 102, .8);
    --primary60:#788AA3;        --primary60a:rgba(30, 60, 102, .6);
    --primary40:#A5B1C2;        --primary40a:rgba(30, 60, 102, .4);
    --primary20:#D2D8E0;        --primary20a:rgba(30, 60, 102, .2);
    --primary40dark:#12243D;    --primary10a:rgba(30, 60, 102, .1);
    --primary20dark:#183051;

    --primarySlight:#F6F7F9;

    /* Gray */
    --gray1:#333333; 
    --gray2:#717171;

    /* Misc */
    --link:#3398B9;
    --main-radius:3px;
    --main-padding: 10px;
    --main-gutter: 20px;
    --content-width:1380px;
    --about-aside-width:50%;
    --headerHeight:100px;
    --footerHeight:130px;
}

/*-----------------------------------------
    Font Face           
-----------------------------------------*/
/*Open Sans*/
@font-face {
    font-family: OpenSans;
    src: url(fonts/OPENSANS-REGULAR.TTF), url(fonts/OpenSans-Regular.ttf);
}
@font-face {
    font-family: OpenSansBold;
    src: url(fonts/OPENSANS-BOLD.TTF), url(OpenSans-Bold.ttf);
    font-weight: normal;
}
@font-face {
    font-family: OpenSansItalic;
    src: url(fonts/OPENSANS-ITALIC.TTF), url(fonts/OpenSans-Italic);
}
@font-face {
    font-family: OpenSansBoldItalic;
    src: url(fonts/OPENSANS-BOLDITALIC.TTF), url(fonts/OpenSans-BoldItalic.ttf);
    font-weight: normal;
}

/*Roboto*/
@font-face {
    font-family: Roboto;
    src: url(fonts/ROBOTO-REGULAR.TTF), url(fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: RobotoBold;
    src: url(fonts/ROBOTO-BOLD.TTF), url(fonts/Roboto-Bold.ttf);
    font-weight: normal;
}
@font-face {
    font-family: RobotoItalic;
    src: url(fonts/ROBOTO-ITALIC.TTF), url(fonts/Roboto-Italic.ttf);
}
@font-face {
    font-family: RobotoBoldItalic;
    src: url(fonts/ROBOTO-BOLDITALIC.TTF), url(fonts/Roboto-BoldItalic.ttf);
    font-weight: normal;
}
/*Montserrat*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&amp;display=swap');

/*-----------------------------------------
    Defaults for Elements       
-----------------------------------------*/
html,body{
  width:100%;
  height: 100%;
  padding:0;
  margin:0;
  color:var(--gray1);
  box-sizing: border-box;
  font-family: OpenSans, Arial, Helvetica, sans-serif;
  font-size: 14px;

  
}
body *:focus{
  outline:solid 2px rgba(0, 188, 212, .5)       ;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, .4);
}

div, canvas{
  box-sizing: border-box;
}
header, footer{
  width:100%;
}

header div, 
div#content, 
footer div{
  width:var(--content-width); 
  width:1260px; 
  margin: 0 auto;
}
#about-page header div, 
#about-page div#content, 
#about-page footer div{
  width: 100%;
  min-width:720px;
  max-width:960px;
}
#about-page header ul,
#about-page header div, 
#about-page div#content, 
#about-page footer div{
  padding:0 var(--main-gutter);
}

a{
  text-decoration: none;
    color: inherit;
}
a[href^="mailto:"]{

}
a[href^="mailto:"]:before{
  content: "\f0e0";
  font-family: FontAwesome5;
  margin-right: 5px;
}

aside{
  display:inline-block;
  width:auto;
}
#about-page aside{
  width:var(--about-aside-width);
}
button, 
#wantValue a,
#downVec a,
#map-images a{
    cursor: pointer;
    background-color: var(--primary100);
    color: white;
    height: 35px;
    padding: 0 10px;
    display: inline-block;
    border: 0;
    border-radius: var(--main-radius);
    box-shadow: 0 2px 0 rgba(0,0,0,.2);
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
}
button:hover, 
#wantValue a:hover,
#downVec a:hover,
#map-images a:hover{
    background-color: var(--primary20dark);
}
.button-wrapper{
  display: flex;
  justify-content: space-between; /*The tears we cry*/
}
.display-flex {
    display: flex;
    justify-content: space-between;
}
footer{
  height:var(--footerHeight);
  background-color:var(--primary20);
  padding: 20px;
  margin: 20px 0 0 0;
}
header{
  height:var(--headerHeight);
  background-color: var(--primary40dark);
  background: transparent linear-gradient(180deg,#173759,#03090e) 0 0 no-repeat padding-box;
  margin: 0 0 20px 0;
  color: white;
}
header div{
  position: relative;
  height: 100%;
}
header #home{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
header #home img{
  height: 64px;
  vertical-align: middle;
}
header #home h1{
  display: inline-block;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight:bold;
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 0 10px;
  vertical-align: middle;
}
header #home h1 span{
  font-weight: initial;
}
header nav{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  z-index: 99999;
}
header nav ul li{
  text-align:right;
  display: inline;
  font-size:14px;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
header nav ul li:hover:not(.page-specific) {
    background-color: var(--primary100);
}

header nav ul li.page-specific{
  border-right: solid 2px var(--primary80);
  margin: 0 10px;
  padding: 5px 0;
}

header nav ul li a {
    padding: 10px;
}

/*submenu*/
nav ul li ul {
  position: absolute;
  left: 0;

  color: #ffffff;
  padding: 0;
  height: auto;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  display: none;

  /*display: flex;  
  flex-direction: row;
  justify-content: center;
  align-items: center;*/
}

nav ul li:hover &gt; ul,
nav ul li:focus &gt; ul,
nav ul li a:hover + ul,
nav ul li a:focus + ul{
  display: flex;
  display: inline-block;
  background-color: var(--primary80);  
  top: 100%;
  transform: initial;
}
nav ul li ul li {
  display: block;
    text-align: left;
    height: auto;
    padding: 0;
    width: 100%;
    border-top: solid 1px var(--primary40dark);
}
nav ul li ul li a {
  height: auto;
  /*padding: 0;*/
  width: 79%;
  display: inline-block;
}

/* Change this in order to change the Dropdown symbol */
li &gt; a:after {
  content: "\f078";
  font-family: FontAwesome5;
  font-size: 10px;
  margin: 0 0 0 10px;
}
li &gt; a:only-child:after {
  content: none;
  margin: 0;
}

nav #search img{
  width:24px;
  height:auto;
}


header, aside, section, footer{
  border:solid 0px var(--primary10_a);
  box-sizing: border-box;
}

h2, h3{
  color:var(--primary20dark);
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
}
h2{
  font-size: 24px;
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--primary20a);
  
}
h3{
  margin: 0 0 5px 0;
  font-size: 19px;
}

a.link{
  color: var(--link);
  cursor: pointer;
}
a.link:hover{
  text-decoration: underline;
}

h4{
  font-size: 16px;
  margin: 0 0 4px 0;
  color: var(--gray1);
  font-family: 'Montserrat', sans-serif;
}
hr{
  border: 0;
  border-top: solid 1px var(--primary20a);
  margin: 1em 0;
}

p {
    margin-top: 0;
}
#about-page section{
  /*width:300px;*/
  width:calc(100% - var(--about-aside-width) - var(--main-gutter));
}


/*-----------------------------------------
    Style Classes           
-----------------------------------------*/
#points-list{
  width:80%;
}


#wrapper {
  width:100%;
  /*width: var(--content-width);
  max-width: 1800px;
  min-width: 1260px;*/
  border:solid 0px cyan;
}
#content{
  display: -webkit-flex; /* Safari */
  -webkit-flex-wrap: wrap; /* Safari 6.1+ */
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  min-height: 380px;
  min-height: calc(100vh - var(--headerHeight) - var(--footerHeight) - var(--main-gutter) - var(--main-gutter) );

}





/*  FOOTER  */

footer .footer-content{
  position: relative;
  transform: translateY(-50%);
  top: 50%;
}
#footer-nav {
    text-align: right;
    float: right;
}
#footer-nav a {
    margin: 0 10px;
}</pre></body></html>