

/* Vertical diagrams */ 
table.tChart
{
   border-collapse: separate;
   border-spacing: 3px;
   padding: 0px;
}

th.rotate {
  /* Something you can count on */
  height: 55px;
  white-space: nowrap;
  border-top:1px dotted slategray;
	font-weight: 100;
	color:DarkCyan;
text-align:right;
background-color:ivory;
}

th.rotate > div {
  transform: 
	rotate(270deg);
    translate(10px, 25px);
  width:15px;
}

td.rotnumers {
  /* Something you can count on */
  height: 30px;
  white-space: nowrap;
  border-bottom:2px dotted slategray;
	font-weight: 100;
text-align:center;
background-color:snow;
font-weight:bold;
color:MediumSeaGreen;

}

td.rotnumers > div {
  transform: 
	rotate(270deg);
width:15px;
}

td.numers {
height:1px; 
border-top: 1px dotted slategray; 
text-align:center;
background-color:whitesmoke;
text-overflow: ellipsis;
font-weight:bold;
color:MediumSeaGreen;

 
}

.diagr {
background-color:powderblue; 
border-right:1px solid silver; 
border-top:2px solid white; 
border-left:2px solid white;
}

body {
    margin-top:50px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

#main {
   position: relative;
}
/*
#main:after {
    content : "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('cycling-background-sm.jpg'); 
    width: 100%;
    height: 100%;
    opacity : 0.1;
    z-index: -1;
}
*/

#mainflip {
   position: relative;
}
/*
    #mainflip:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url('cycling-background-sm-flip.jpg');
        width: 100%;
        height: 100%;
        opacity: 0.1;
        z-index: -1;
    }
*/



.spinner{
 position: fixed;
  left: 45%;
  top: 1%;
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
    border: 5px solid #d0d0c0; 
    border-top: 5px solid #808080; 
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    padding: 5px;
    margin-bottom: -5px;
    margin-left: 5px;
}

.logospin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
