html{
  text-align: left;
  font-size:10pt;
}

body {
  padding: 0;
  font-size:10pt;
  height:96%;
}

a {
  padding-left: 7px;
  background-color: transparent;
  background-image: url("../ovgu/link.gif");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  text-decoration:underline;
}

a.no_link_zeichen {
  background-image: url();
  padding-left: 0px;
  text-decoration:none;
}

a.no_link_zeichen:hover {
  text-decoration:none;
}

a:link #maillink {
  color: #345189;
}

div.blue {
  width:100%;
  background-color:lightskyblue;
  padding:1px;
  padding-left:4px;
}

div.successMessage, div.errorMessage, div.infoMessage, div.warningMessage {
  padding-top:3px;
  padding-bottom:3px;
  border:0px;
  border-top-width:1px;
  border-bottom-width:1px;
  border-style:solid;
  text-align:center;
  font-size:120%;
  z-index:1;
}

div.successMessage {
  color:#008F00;
  border-color:#008F00;
}

div.errorMessage {
  color:#C80000;
  border-color:#C80000;
}

div.infoMessage {
  color:dodgerblue;
  border-color:dodgerblue;
}

div.warningMessage {
  color:orangered;
  border-color:orangered ;
}

form {
  padding:0;
  margin:0;
}

input[type="submit"], input[type="button"] {
  border:1px solid #666;
  cursor:pointer;
  text-align:center;
  font-size:100%;
  padding:2px;
  padding-left:6px;
  padding-right:6px;
  height:26px;
}

input[type="submit"]:hover, input[type="button"]:hover {
  border:2px solid #999;
  background-color: #efefef;
  color:red;
  cursor:pointer;
  text-align:center;
  font-size:100%;
  padding:1px;
  padding-left:5px;
  padding-right:5px;
  height:26px;
}

input[type="text"], input[type="password"] {
  height:24px;
  padding-left:3px;
  padding-right:3px;
}

input[type="text"]:focus, input[type="password"]:focus {
  border:2px solid #999;
  background-color: #FFFF99;
}

input[type="text"]:hover, input[type="password"]:hover {
  border:2px solid #999;
}

select{
  height:26px;
  padding-top:1px;
  padding-left:1px;
  padding-right:1px;
}

select:focus{
  border:1px solid #999;
  height:26px;
  padding-top:1px;
  padding-left:0px;
  padding-right:0px;
}

select:hover{
  border:1px solid #999;
  background: #FFFF99;
  height:26px;
  padding-top:1px;
  padding-left:0px;
  padding-right:0px;
}

.forcheckbox {
  border:1px solid lightgrey;
  padding-left:1px;
  padding-top:3px;
  padding-bottom:2px;
}

.forcheckbox:focus {
  border:2px solid #999;
  padding-left:0px;
  padding-top:2px;
  padding-bottom:1px;
  background: #FFFF99;
}

.forcheckbox:hover {
  border:2px solid #999;
  padding-left:0px;
  padding-top:2px;
  padding-bottom:1px;
}

/* Nur Internet Explorer 10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select:hover{
    padding-top:2px;
    padding-left:2px;
  }
}

textarea {
  padding-left:3px; 
  padding-right:3px;
}

textarea:focus {
  border:2px solid #999;
  background-color: #FFFF99;
}

textarea:hover {
  border:2px solid #999;
}

.loginform input[type=text], .loginform input[type=password], .loginform input[type=button], .loginform input[type=submit] {
  width:200px;
}

.loginform input[type=button], .loginform input[type=submit] {
  width:208px;
}

td {
  font-size:10pt;
}

/* table {
  border:0px;
  border-color:white;
  font-size:10pt;
}

tr {
  border:0px;
  border-color:white;
}

td {
  border:0px;
  border-color:white;
}

table.overview td {
  border:0px;
  padding:0px;
  margin:0px;
  border-bottom:1px solid lightgrey;
} */

p {
  padding:0px;
  padding-top:10px;
  padding-bottom:10px;
}

td.colourCell {
  width:30px;
  text-align:center;
  cursor: pointer;
  -moz-user-select:none;
  -khtml-user-select: none;
  -webkit-transition: background 0.3s ease-in-out 0s;
  -moz-transition: background 0.3s ease-in-out 0s;
  -o-transition: background 0.3s ease-in-out 0s;
  transition: background 0.3s ease-in-out 0s;
}


/* ToolTips */

.tooltip {
  display: inline;
  position: relative;
  /*font-weight: normal;*/
}

.tooltip:hover {
  text-decoration: none;
  cursor: default;
}


.tooltip:hover:before {
  border: solid;
  border-color: #333 transparent;
  border-width: 6px 6px 0 6px;
  bottom: 20px;
  content: "";
  left: 50%;
  position: absolute;
  z-index: 99;
}

.tooltip:hover:after {
  background: #333;
  background: rgba(0,0,0,.8);
  border-radius: 5px;
  bottom: 26px;
  color: #fff;
  content: attr(title);
  left: 20%;
  padding: 5px 15px;
  position: absolute;
  z-index: 98;
  width: 220px;
}