/*************************************************/
/* Sammlung von CSS-Vorlagen                     */
/* Stand: 02-2017                                */
/* (c) Karlsruher Institut für Technologie       */
/*************************************************/

/******************************/
/* Tables                     */
/******************************/
.KIT_table {
	width: 100%;
}
.KIT_table tr:nth-child(even) {background-color: #f2f2f2}
.KIT_table tr:nth-child(odd) {background-color: #f9f9f9}
.KIT_rowAttribute {
	font-weight: bold;
	margin-top: 6px;
	margin-bottom: 6px;
	color:#505050;
}
.KIT_greyTableBackground {
	background-color: #f2f2f2;
}


/******************************/
/* Colors                     */
/******************************/
.KIT_whiteBackground {
	background-color: #ffffff;
}
.KIT_lightGreyBackground {
	background-color: #f9f9f9;
}
.KIT_greyBackground {
	background-color: #ebebeb;
}


/******************************/
/* Borders and Legend         */
/******************************/
fieldset.KIT_withBorder {
	border-width: 1px;
	border-style: solid;
	border-color: #c0c0c0;
	padding: 5px;
	margin-top: 10px;
	margin-bottom: 2em;
}
fieldset legend.KIT_withBorderLegend {
  padding: 2px 5px 2px 5px;
  color: #000000;
  font-size: 120%;
  text-align: left;
  font-weight: bold;
 }
 
 
/******************************/
/* Buttons                    */
/******************************/
.KIT_button {
    cursor: pointer;
    color: white;
    background: #009682;
    border-top: 1px #ddd solid;
    border-left: 1px #ddd solid;
    border-right: 1px #444 solid;
    border-bottom: 1px #444 solid;
    padding: 5px 13px;
    font-weight: bold;
}
.KIT_button:hover {
    border-top: 1px #444 solid;
    border-left: 1px #444 solid;
    border-right: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
	padding: 4px 14px 6px 12px;
}
.KIT_button:disabled {
    cursor: default;
	background: darkgray;
    border-top: 1px #444 solid;
    border-left: 1px #444 solid;
    border-right: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
	padding: 4px 14px 6px 12px;
	font-weight: bold;
}


