/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
		
		#orgFooter,#orgNavV1,#nav_main {
			width:100%;	
		}

		#slogan {
			width:auto;	
			margin-left:50px;
		}
		
	}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
	
	}

	/* styles for that awkward in-between stage */
	@media only screen and (max-width: 830px) {
		#slogan {
			display:none;
		}

	
		
	}
	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		body {
			padding:0;	
			background:none;
			width:auto;
		}
	
	
		.fullphone {
			display:inline;	
		}
		.shortphone {
			display:none;	
		}
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	}
	
	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 480px) {
	
		#orgFooter,#orgNavV1{
			display:none;	
		}
		
	}