
.siocs-anchor {
	text-decoration:underline;
}
.siocs-anchor-tagged {
	text-decoration:none;
}
.siocs-btn-std {
	display: inline-block;
/*	position: relative;*/
	margin:0;
	border: 0;
	cursor:pointer;
	padding:0px;
	font-family: 'Roboto Condensed',Arial, Helvetica, Verdana, sans-serif;
}

.siocs-btn-std span {
	display: inline-block;
	/*height: 100%;*/
	padding-left: 0px;
	position: relative;
	text-align: center;
	vertical-align:middle;
	/*overflow:hidden;*/
}

.siocs-btn-std small {
	display: inline-block;
	/*Defaults*/
	line-height:35px;
	font-size:100%;/*Small ist normal kleiner*/

	padding:0px 0px;
	margin:0px;
	vertical-align:middle;

	/*Text-Handling (hier, da small eine width angegeben hat) */
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
   
/*Vertikal*/
.siocs-btn-vert {
	display: inline-block;
	padding:0px 0px;

	position: relative;
	height: 100px;
	width: 80px;
	margin: 0px;
	border: 0;
	outline: none;
	cursor:pointer;
	white-space:normal;
	font-family: 'Roboto Condensed',Arial, Helvetica, Verdana, sans-serif;
}
.siocs-btn-vert span {
	display: inline-block;
	padding-left: 0px;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 60%;

	font-size: 170%;
	line-height: 1.5;
	vertical-align:middle;
}

.siocs-btn-vert small {
	
	/*display: table;*/
	display: inline-block;
	
	font-size: 85%;
	padding:0px 0px;
	margin-left:1px;
	margin-right:1px;
	margin-top:50%;
	line-height:110%;
	width:100%;
	overflow:hidden;
	text-overflow:ellipsis;
}




/*System*/

/*
 * ANIMATIONS
 */

.siocs-btn span i ,.siocs-btn-vert span i  {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.siocs-btn:hover span i,.siocs-btn-vert:hover span i{
	-webkit-animation: move_from_top 300ms ease-in-out;
	-moz-animation: move_from_top 300ms ease-in-out;
	-ms-animation: move_from_top 300ms ease-in-out;
	-o-animation: move_from_top 300ms ease-in-out;
	animation: move_from_top 300ms ease-in-out;
}

.siocs-btn: small,.siocs-btn-vert: small{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.siocs-btn:hover small,.siocs-btn-vert:hover small{
	-webkit-animation: move_from_left 300ms ease-in-out;
	-moz-animation: move_from_left 300ms ease-in-out;
	-ms-animation: move_from_left 300ms ease-in-out;
	-o-animation: move_from_left 300ms ease-in-out;
	animation: move_from_left 300ms ease-in-out;
}



/* ==========================================================================
   KEYFRAMES
   ========================================================================== */


@-webkit-keyframes move_from_top {
    from {
        opacity: 0;
        -webkit-transform: translateY(60%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes move_from_top {
    from {
        opacity: 0;
        -moz-transform: translateY(60%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes move_from_top {
    from {
        opacity: 0;
        -ms-transform: translateY(60%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
}
@-o-keyframes move_from_top {
    from {
        opacity: 0;
        -o-transform: translateY(60%);
    }
    to {
        opacity: 1;
        -o-transform: translateY(0%);
    }
}


@-webkit-keyframes move_from_left {
    from {
        opacity: 0;
        -webkit-transform: translatex(-30%);
    }
    to {
        opacity: 1;
        -webkit-transform: translatex(0%);
    }
}
@-moz-keyframes move_from_left {
    from {
        opacity: 0;
        -moz-transform: translatex(-30%);
    }
    to {
        opacity: 1;
        -moz-transform: translatex(0%);
    }
}
@-ms-keyframes move_from_left {
    from {
        opacity: 0;
        -ms-transform: translatex(-30%);
    }
    to {
        opacity: 1;
        -ms-transform: translatex(0%);
    }
}
@-o-keyframes move_from_left {
    from {
        opacity: 0;
        -o-transform: translatex(-30%);
    }
    to {
        opacity: 1;
        -o-transform: translatex(0%);
    }
}
@keyframes move_from_left {
    from {
        opacity: 0;
        transform: translatex(-30%);
    }
    to {
        opacity: 1;
        transform: translatex(0%);
    }
}

