@charset "utf-8";
/* CSS Document */

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
	
	.news p {
    font-size: 16px;
		line-height: 1.2;
}
	
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
	
	.news p {
    font-size: 16px;
		line-height: 1.3;
}

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
	.news p {
    font-size: 16px;
		line-height: 1.3;
}

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	
	.news p {
    font-size: 16px;
		line-height: 1.3;
}
	
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	
	.news p {
    font-size: 18px;
		line-height: 1.3;
	}
	
}