@CHARSET "UTF-8";

/*
	@brief  Helper for creating COMA-Icon-Buttons
	@version
		- 18.03.2014 / spet / angelegt
		- 07.04.2014 / spet / RC
*/


/*
	Default-Darstellung eines Icon-Buttons (Größe, Rahmen, Positionierung eines optionalen Icons)
*/
.ib-default {
	display: inline-block;
	width: 22px;
	height: 22px;
	text-align: center;    
	border: 1px solid gray;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	font-size: 18px;
	line-height: 23px;
	padding: 0;
	margin: 0;      
	cursor: pointer;     
	font-weight: normal;
	text-decoration: none;
}


/*
	Default-Farbe eines Icon-Buttons (Blauf auf Weiß)
*/
.ib-color-default {
	background-color: white;
	color: #00589C; 
}
.ib-color-default:hover {
	color: white;
	background-color: #00589C; 
}