.backbutton {
	float: left;
	position: absolute;
	left: 15px;
	top:15px;
}
div.word_wrap{
	  word-break: break-all;
   position: relative;
}
div.description {
   max-width:40%; 
}
div.plain {
   position: relative;
}

/* Background mechanism */
body {
  background-color: #D3D3D3;
  font-family:  Verdana, Arial, Helvetica; font-size: 12pt;  color: #404040; 
}


/* Polaroid mechanism */
div.rotate0{
	float: left;
	-ms - transform: rotate(0deg); /* IE 9 */
	-webkit - transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}
div.rotate_right1{
	float: left;
	-ms - transform: rotate(0deg); /* IE 9 */
	-webkit - transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}
div.rotate_left1{
	float: left;
	-ms - transform: rotate(0deg); /* IE 9 */
	-webkit - transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}
div.rotate_right_panorama{
	float: left;
	-ms - transform: rotate(0deg); /* IE 9 */
	-webkit - transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}
div.rotate_left_panorama{
	float: left;
	-ms - transform: rotate(0deg); /* IE 9 */
	-webkit - transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

/* Font mechanism */
<!--  
TD{font-family:  Verdana, Arial, Helvetica; font-size: 10pt; color: #707070}
H1{font-family:  Verdana, Arial, Helvetica; font-size: 28pt; color: #707070}
H2{font-family:  Verdana, Arial, Helvetica; font-size: 20pt; color: #707070}
H3{font-family:  Verdana, Arial, Helvetica; font-size: 12pt; color: #707070}
H6{font-family:  Verdana, Arial, Helvetica; font-size: 10pt; color: #707070}
p{font-family:  Verdana, Arial, Helvetica; font-size: 10pt; color: #808080}
p#p1{font-family:  Verdana, Arial, Helvetica; font-size: 8pt; color: #808080}
--->
@import "https://fonts.googleapis.com/css?family=Raleway";
* { box-sizing: border-box; }
#contact { 
  -webkit-user-select: none; /* Chrome/Safari */ 
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  margin: 4em auto;
  width: 100px; 
  height: 30px; 
  line-height: 30px;
  background: teal;
  color: white;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
}
#contact:hover { background: #666; }
#contact:active { background: #444; }
#contactForm { 
  display: none;
  color: black;
  border: 6px solid salmon; 
  padding: 2em;
  width: 400px;
  text-align: center;
  background: #fff;
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}
.formBtn { 
  width: 100px;
  display: inline-block;
  background: teal;
  color: #fff;
  font-weight: 100;
  font-size: 1.2em;
  border: none;
  height: 30px;
}


.signin_img{
  display: inline-block;
  vertical-align: middle;
}
.signin_name {
  display: inline-block;
  vertical-align: middle;
}
#loginusername {
	display: inline;
	padding: 8px;
	border-radius: 20px;
	font-weight: bold;
}
#administrator {
	display: none;
	padding: 8px;
	color: #ff4040;
	font-weight: bold;
	font-style: italic;
}
#logs {
	float: right;
}
/* ------------ tooltips ------------ */
.tooltip {
    position: relative;
    display: inline-block;
}
option:hover {
    background-color: blue;
}
.heart_image {
    text-align: left;
}
.tooltip .likedropdown {
    visibility: hidden;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding-bottom: 15px;
    padding-top: 10px;
    z-index: 1;
    bottom: 110%;
    left: 0%;
    margin-left: -35px;
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}
.tooltip:hover .likedropdown {
    visibility: visible;
    opacity: 1.0;
}
.gemselect {
    position: relative;
    width: 110px;
    top: 50%;
    transform: translateY(-15%);
    -webkit-transform: translateY(-15%);
    font-family: Arial;
    overflow: hidden;
    -webkit-border-radius: 10;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #CD5C5C; 
    color: white; 
    vertical-align: middle;
    font-weight: bold;
    text-indent: 5px;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 0%;
    margin-left: -60px;
    margin-bottom: 10px;
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 2s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1.0;
}
.tooltip .tooltiptext::after{ 
	 content: "   "; 
	 position: absolute; 
	 top: 100%; /* At the bottom of the tooltip */
	 left: 33%; 
	 margin-left: -5px; 
	 border-width: 10px; 
	 border-style: solid; 
	 border-color: black transparent transparent transparent; 
}
.tooltip_social {
    position: relative;
    display: inline-block;
}
.tooltip_social .tooltiptext_social {
    visibility: hidden;
    white-space: nowrap;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1000;
    top: 30px;
    left: 0%;
    margin-left: 0px;
    margin-bottom: 0px;
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 2s;
}
.tooltip_social:hover .tooltiptext_social {
    visibility: visible;
    opacity: 1.0;
}
.tooltip_social .tooltiptext_social::after{ 
	 content: "   "; 
	 position: absolute; 
	 bottom: 100%; /* At the bottom of the tooltip */
	 left: 10%; 
	 margin-left: -5px; 
	 border-width: 10px; 
	 border-style: solid; 
	 border-color: transparent transparent black transparent; 
}
