/**
 * @version		$Id$
 * @copyright	Copyright (C) 2012 mktgexperts.com. All rights reserved.
 * @license		http://www.gnu.org/licenses/gpl-2.0.html
 * @description	This classes behave the same way as the Twitter Bootstrap utility classes
 */

.hidden {display: none;visibility: hidden;}

/* Large desktop */
@media only screen and (min-width: 1200px) {/* 1200px wide container */
	.visible-phone {display: none !important;}
	.visible-tablet {display: none !important;}
	.hidden-desktop {display: none !important;}
}

/* Portrait tablet to landscape and desktop */
@media only screen and (min-width: 960px) and (max-width: 1199px) {/* 960px wide container */
	.visible-phone {display: none !important;}
	.hidden-desktop {display: none !important;}
}

/* Landscape phone to portrait tablet */
@media only screen and (min-width: 768px) and (max-width: 959px) {/* 768px wide container */
	.visible-phone {display: none !important;}
	.visible-desktop {display: none !important;}
	.hidden-tablet {display: none !important;}
}

/* Landscape phones and down */
@media only screen and (min-width: 481px) and (max-width: 767px) {/* 480px wide container */
	.visible-tablet {display: none !important;}
	.visible-desktop {display: none !important;}
	.hidden-phone {display: none !important;}
}
@media only screen and (max-width: 480px) {/* 95% wide liquid container */
	.visible-tablet {display: none !important;}
	.visible-desktop {display: none !important;}
	.hidden-phone {display: none !important;}	
}
