body{ 
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  font-size: 100%; 
  text-align:center;
  font-weight: bold;
}

p {
margin:0;
padding:10px;
}

.orange {
	color: #F6923D;
}

a {
    color: #F6923D;
}

.font-main-line{
  font-family: Cutive;
  background: white;
  font-size: 175%; 
  text-align:center;	
}

.font-other { 
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  font-size: 100%; 
  text-align:center;
  font-weight: bold;
}

.small {
  font-size: 75%; 
}

.center-in-cell {  
text-align:center;
} 	
	
main {
  background: white;
  margin: 0 0;
  padding: 10px;
}
table, th, td {
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;    
}
.center-me {
	margin: 0 auto;
	width: 600px;
}
.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto;
	padding: 2px;
}

/**********FLIPPING ANIMATION********************/
/* from https://davidwalsh.name/css-flip#ieflip */
/*                                              */
/************************************************/

/* entire container, keeps perspective */
.flip-container {
	perspective: 1000;
	transform-style: preserve-3d;
}
	/*  UPDATED! flip the pane when hovered */
	.flip-container:hover .back {
		transform: rotateY(0deg);
	}
	.flip-container:hover .front {
	    transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 220px;
	height: 78px;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;

	position: absolute;
	top: 0;
	left: 0;
}

/*  UPDATED! front pane, placed above back */
.front {
	z-index: 2;
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(-180deg);
}

/* 
	Some vertical flip updates 
*/
.vertical.flip-container {
	position: relative;
}

	.vertical .back {
		transform: rotateX(180deg);
	}

	.vertical.flip-container:hover .back {
	    transform: rotateX(0deg);
	}

	.vertical.flip-container:hover .front {
	    transform: rotateX(180deg);
	}