@charset "utf-8";
/* CSS Document */

/* 
This is a utility rule that allows you to create rounded corners on an image. Simply assign this class to any image on your page.
*/
.round-img {
	display: block;
	border-radius: 6px;
	border: 2px solid;
	border-color: #8E3636;
	background-color: #FBEFA7;
}

/*
This rule allows you to assign rounded corners and a drop shadow to an image. Simply assign this class to any image on your page. If the width property is set to a percentage and the height is set to "auto", the image will be responsive and scale up and down
*/
.image-speciale { 
	border-radius: 6px; 
	box-shadow: 0px 0px 30px #000;
	max-width: 95%;
	height: auto; 
}
.inline {
	float: left;
}
.tight {
	line-height: .8em;	
}
.redHighLight {
	color:#F00
}
.yellowHighLight {
	color: #FF0
}
.MyImage {
    width: .8em;
    height: .8em;
}
.fancy-quote {
	font-family: "Federo", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	letter-spacing: 0.15em;
	margin-bottom: 15px;
	color: #3C5060;
}
.not-visible {
  display:none;
}
.scalable {
	width: auto;
	height: auto;
	max-width: 100%;
}
/*
The following change the appearance of the hr line.
*/

hr.class-1 {
        border-top: 10px solid #8c8b8b;
    }
     
    hr.class-2 {
        border-top: 3px double #8c8b8b;
    }
     
    hr.class-3 {
        border-top: 1px dashed #8c8b8b;
    }
     
    hr.class-4 {
        border-top: 1px dotted #8c8b8b;
    }
     
    hr.class-5 {
        background-color: #fff;
        border-top: 2px dashed #8c8b8b;
    }
     
    hr.class-6 {
        background-color: #fff;
        border-top: 5px dotted #8c8b8b;
    }