/**SCROLL**/
.scroll-element {
  overflow-y: scroll;
}
.height-80p{
	height: 80%;
}
.height-90p{
	height: 90%;
}
.height-100p{
	height: 100%;
}
.height-290px{
	height: 290px;
}
.height-360px{
	height: 360px;
}

/** opacity**/
.opacity-25{
	-webkit-opacity: 0.25;
	-moz-opacity: 0.25;
	opacity: 0.25;
	filter: alpha(opacity=25);
}
.opacity-50{
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.opacity-75{
	-webkit-opacity: 0.75;
	-moz-opacity: 0.75;
	opacity: 0.75;
	filter: alpha(opacity=75);
}
.position-relative{
	position:relative;
}
.position-align-bottom{
	position: absolute;
	bottom: 0;
	left: inherit;
}
.position-globe{
	position: absolute;
	bottom: 20px;
	right: 10px;
}
.position-stripe{
	position: absolute;
	bottom: 20px;
	left: 10px;
}
.align-horizontally{
	text-align: center;
}
.horizontal-block {
    display: inline-block;
}
.clear {
    clear: both;
}
.z-index-10000{
	z-index: 10000;
}