/* 
Color legend:
#994312 most hot
#D15714 warm
#D5CDC6 neutral
#9BE6E5 cool
#138B98 cold

A simple visual reference app for Chinese Medicine Formulas illustrating the qi and flavor (temperature + taste) for the current 83 California State Board Formulas. This app includes commentary for each formula: source, symptoms, tongue, pulse, and brief descriptions.

Great CALE study guide, perfect for senior level students, clinicians, or anyone looking to have a visual reference guide of the taste and temperature profiles for 83 popular (CALE) TCM formulas.

*/



body {
  font-size: 14px;
  font-family: Arial;
  margin: 0;

}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #D5CDC6;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  margin: 10px;

}

li {
  float: right;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}

li a:hover {
  background-color: #EEE6E0;
}

.active {
  background-color: #4CAF50;
}
table{
  font: 13px arial, sans-serif;
}


a:link    {color:#994312; background-color:transparent; text-decoration:none}
a:visited {color:#D15714; background-color:transparent; text-decoration:none}
a:hover   {color:#D15714; background-color:transparent; text-decoration:none}
a:active  {color:#D15714; background-color:transparent; text-decoration:none}
hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
}
div.header {
   padding: 10px 0px 10px 0px;
   line-height: 1.3
}
div.header a{
   color: black;
}
div.header a.visited{
   color: black;
}

div.blacklink {
   font-size: 26px;
   padding: 0px;
   line-height: 1.3
}
div.blacklink a{
   color: black;
}
div.blacklink a.visited{
   color: black;
}

.title{
  font-size: 40px;
  Font-family: Arial;
  padding: 0px;
  border: 0px solid brown;
}

.category { 
  font-size: 26px;
}
.sub_category { 
  font-size: 18px;
}
div.content {
   padding: 10px;
}

div.container {

    border: 1px solid lightgray;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;


}

#imgTempSize{
   margin-top: 50px;
   margin-left:2px;
   margin-right:1px;
   float: left;
   height:  150px;
   width: 30px;


   
   /* style="width:30px;height:200px; border: 2px solid red; margin-bottom:50px;"  */
  
}

#myChartFlavor{
  border: 0px solid brown;

  margin-left: 10px;
  margin-top: 50px;
  float: left;


}
#myChartQi{


  border: 0px solid purple;

  margin-top: 50px;
  margin-left: -70px;




}
#divChartQi{

  margin-top: 50px;  
  margin-left: 10px;
  padding: 1px;
  border: 0px solid black;
  float: left;

}
#divChartFlavor{

  margin-top: 40px;
  margin-left: 125px;
  border: 0px solid green;
  float: left;
  clear: float;
}






/* Responsive layout */

* {
  box-sizing: border-box;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 30%;
  padding: 10px 10px;
  border: 0px solid red;
}

.column-60 {
  float: left;
  width: 60%;
  padding: 10px 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}



/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    width: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  .column-60{
    width: 100%;
  }
}