/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	
}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1400px) {
	.left_indent {
		padding-left: 170px;
	}

	.right_indent {
		padding-right: 170px;
	}
}

@media only screen and (min-width : 1800px) {
	.left_indent {
		padding-left: 340px;
	}

	.right_indent {
		padding-right: 340px;
	}
}

@media only screen and (min-width : 2200px) {
	.left_indent {
		padding-left: 510px;
	}

	.right_indent {
		padding-right: 510px;
	}
}

@media only screen and (min-width : 2500px) {
	.left_indent {
		padding-left: 680px;
	}

	.right_indent {
		padding-right: 680px;
	}
}

@media only screen and (min-width : 2800px) {
	.left_indent {
		padding-left: 650px;
	}

	.right_indent {
		padding-right: 650px;
	}
}

@media only screen and (min-width : 3300px) {
	.left_indent {
		padding-left: 1020px;
	}

	.right_indent {
		padding-right: 1020px;
	}
}

@media only screen and (min-width : 3600px) {
	.left_indent {
		padding-left: 1420px;
	}

	.right_indent {
		padding-right: 1420px;
	}
}