.desktoponly {
	display:block;
}
.mobileonly {
	display:none;
}
.divide15 {
	margin:15px 0;
}
.divide30 {
	margin:30px 0;
}
.divide60 {
	margin:60px 0;
}

/* Media Queries --------------------------------------------->>>>>>> */

/* 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) {
	    .desktoponly {
		display:none;
	}
		.mobileonly {
		display:block;
	}
		.divide15 {
		margin:0;
		}
		.divide30 {
			margin:0;
		}
		.divide60 {
			margin:0;
		}
		.mdivide15 {
		margin:15px 0;
		}
		.mdivide30 {
			margin:30px 0;
		}
		.mdivide60 {
			margin:60px 0;
		}
}

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

}

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