@import url(https://fonts.googleapis.com/css?family=Oswald:400,700,300);

body {
	width: auto;
	font-size: 15px;
	color: #333;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
}

p{
	line-height: 22px;
	}
ul{
	padding-left: 17px;
}
hr{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	clear: both;
	margin-bottom: 25px;
}


/*************** ALL LINKS SAME STYLE LAAAAA **************************************/
a{	
	color: #666;
	text-decoration: none;
	opacity:1;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
section a:hover,
footer a:hover{
	opacity:0.8;
}



/*************** TITLE STYLE **************************************/
.title{
	font-size: 28px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	line-height: 28px;
}
.semititle{
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	text-transform: capitalize;
	line-height: 22px;
	}
.font_black{
		color: #010101;
		}
.font_dark_gray{
		color: #666;
		}	
.font_light_gray{
		color: #CCC;
		}	
.center{
	text-align:center;
	}
.left{
	text-align:left;
}
.justify{
	text-align:justify;
	}
/*************** Image Style **************************************/
.img_style{
	padding: 10px;
	box-sizing:border-box;
	border: 1px solid #191919;
	width:100%;
	background-color:rgba(1,1,1,0.7);
	}

/*************** READ MORE BUTTON **************************************/
.readmore{
	font-family: 'Oswald', sans-serif;
	color: #FFF;
	text-decoration: none;
	background-color: #FF0000;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	padding: 10px 20px;
	font-size: 22px;
	-ms-transform: rotate(0deg); /* IE 9 */
	-webkit-transform: rotate(0deg); /* Safari */
	transform: rotate(0deg);
	display:inline-block;
	cursor:pointer;
	border-radius:10px;
}

