/*
	(c)2012 - visuallizard.com
	
	Mobile styles using Media Queries
*/


/* !Media Queries ============================== */

	/* Smaller than standard 1024 (devices and browsers) */
	@media only screen and (max-width: 1024px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 768px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 520px) {
		#main div.alert {
			width: 100%;
			background: none;
		}
		.credit-landing .cc-option .card-option {
			width: 100%;
			margin: 0 0 15px 0;
		}
		.cc-product .cke div.c2,
		.cc-product .cke div.c3,
		.cc-product .cke div.c4 {
			width: 100%;
			min-height: 20px;
			height: auto;
			padding: 10px;
			border: none;
		}
		.cc-product .cke div.c4 { border-top: 1px solid #ccc; }
		.cc-product .cke div.c4.first { border: none; }
/*
		header .login-nav,
		header .login-form,
		header .search-form  {
			margin: 0 0 20px 0;
		}
		table {
			display: block;
			max-width: 300px;
			overflow: hidden;
		}
		img {
			width: 100%;
			height: auto;
		}
		header nav li {
			margin-bottom: 5px;
			margin-left: 10px;
			display: block;
		}
		header nav li a {
			background: #ddd;
			color: #444;
			padding: 5px 5px;
			
			border: 1px solid #999;
			-webkit-border-radius: 4px;
			-moz-border-radius: 4px;
			border-radius: 4px;
			-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
			-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
			box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
		}
*/
	}