/* (c) Copyright 2011 dredesign.de, Samuel Drechsel */
/* www.dredesign.de */ 
/* Fulda, 25.01.2011 */ 



.dreCMS_top_right_corner {
	position:absolute;
	bottom:50px;
	right:50px;
	z-index:9000;
    animation: bounce 1.5s infinite; /* 7 Sekunden fÃ¼r Animation + Pause */
}

@keyframes bounce {
    0%, 85%, 100% {
        transform: translateY(0); /* In dieser Zeit passiert nichts */
    }
    40% {
        transform: translateY(15px); /* Der Button hÃ¼pft hoch */
    }
    60% {
        transform: translateY(-5px); /* Leichter Bounce nach dem HÃ¼pfen */
    }
}

.dreCMS_img_right {
	margin:5px 0 20px 20px;
	float:right;
}

.dreCMS_img_left {
	margin:5px 20px 20px 0;
	float:left;
}

.dreCMS_img_fullsize{
	margin:20px 0 20px 0;
	display:table;
}

.dreCMS_status_off{
	color:#dddddd;
	font-style:italic;
	text-decoration:none;
}

.dreCMS_status_off a {
	color:#dddddd;
}
.dreCMS_status_off h1 {
	color:#dddddd;
}


img {
	border:0;
}

@media (max-width: 767px) {
	.dreCMS_img_right {
		float:none !important;
		clear:both;
		margin-left:0;
		margin-right:0;
		max-width:100%;
		/*border:1px solid red;*/
	}
	
	.dreCMS_img_left {
		float:none !important;
		clear:both;
		margin-left:0;
		margin-right:0;
		max-width:100%;
		/*border:1px solid red;*/
	}	
	
	.dreCMS_img_fullsize {
		max-width:100%;
	}
	
}
