/*
Theme Name: Total Child
Theme URI: http://totalwptheme.com
Description: Total WordPress theme example child theme.
Author: AJ Clarke
Author URI: http://totalwptheme.com
Template: Total
Version: 1.1
*/


/* Parent stylesheet should be loaded from functions.php not using @import */


/*@font-face {
	font-family: Rita Regular;
	src: url('fonts/RitaRegular.otf');
		src: url('fonts/RitaRegular.eot');
}

@font-face {
	font-family: Rita Italic;
	src: url('fonts/RitaItalic.otf');
		src: url('fonts/RitaItalic.eot');
}

@font-face {
	font-family: Rita Light;
	src: url('fonts/RitaLight.otf');
	src: url('fonts/RitaLight.eot');
}
*/



/* Option 1 => Using Opacity */
.boxed-main-layout #wrap {
    opacity: 0.5;
}

p {
    text-align: justify;
}

/*h3 {
    text-align: justify;
}*/

.mein_button_stil {
    border:2px solid #FF8C00;
    border-radius: 0px;
    padding: 20px;
    text-decoration:none;
    color: #fff;
    font-size: 18px;
	font-weight: 300;
    background-color: #91578B;
    cursor:pointer;
}

.mein_button_stil:hover {
    background-color: #8FCFD7;
}


/* Option 2 => Using RGBA Colors 
.boxed-main-layout #wrap {
    background: rgba(255,255,255,0.5);
}


.page-header,
#footer-callout-wrap {
    background: rgba(255,255,255,0.5);
}

.site-footer {
    background: rgba(000,000,000,0.7);
}

#footer-bottom {
    background: rgba(000,000,000,0.5);
}
*/