/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

	.s-hide {
		display: none !important;
	}

	.s-show {
		display: block !important;
		padding:0 0 !important;
		margin: 0 0 !important;
	}
	.menu-table{
		font-size: 60% !important;
	}
	.menu-left{
		display: none !important;
	}
	.menu-php-width{
		margin-left:50px!important;
		margin-right:50px!important;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.menu-table{
		font-size: 30% !important;
	}
	.menu-left{
		display: none !important;
	}
	.menu-php-width{
		margin-left:20px!important;
		margin-right:20px!important;
	}
	.ss-hide {
		display: none !important;
	}
}

/* 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) {
	.l-hide{
		display: none !important;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}