dt /*dictonary title-term settings*/
{
    margin-top: 0.5em;
    font-weight: bold;
    display: run-in;
    background: transparent;
    color: blue /*#006600;*/
}

:link /* unvisited links */
    {
        background: transparent;
        /*color: blue;*/
    }

:visited /*visited links*/
    {
        background: transparent;
        /*color: purple;*/
    }

:link:hover, :visited:hover, :link:active, :visited:active /* active links */
      {
        background: transparent;
        color: red;
    }

/*Chip display code; not used in website anymore as flip-cards have replaced them */
.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
}

.chip img {
    float: left;
    margin: 0 10px 0 -25px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
 background-color: transparent;
 width: 180px;
 height: 275px;
 border: 1px solid #f1f1f1;
 perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
 position: relative;
 width: 100%;
 height: 100%;
 text-align: center;
 transition: transform 0.8s;
 transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
 transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
 position: absolute;
 width: 100%;
 height: 100%;
 backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
 background-color: #bbb;
 color: black;
}

/* Style the back side */
.flip-card-back {
 background-color: #bbb;
 color: white;
 transform: rotateY(180deg);
}

/*Timetable formatting stuff, to make things look nice. This defines a class for use with tables only, called "timetable". */
.timetable {
    width: 100%;
    border: 1px solid black;
    text-align: center;
	table-layout: fixed;
}

.timetable tr {
    background-color: inherit;
}

.timetable th, td {
    border: 1px solid blue;
    border-collapse: collapse;
    background-color: inherit;
	width: 40%;
}