/*
 * Media Query styles - smart phones, tablets and laptops
 * source file: index_styles.css
 *
 <link rel="stylesheet" type="text/css" 
	media='only screen and (max-width:480px) and (orientation: portrait), 
	only screen and (max-width:800px) and (orientation: landscape)' 
	href="http://www.cortac.com/mobile.css" />
 */
 
@media only screen and (-webkit-min-device-pixel-ratio: 2) 
{
/* here come styles from mobile-retina.css */
	
	#wrapper  { width: 98%; }
}
/* 
 * Smartphones (portrait and landscape)
 */
@media only screen 
and (min-device-width : 320px) and (max-device-width : 480px) 
{
	#footer_container  {
		/* text-align: left !important; */
		margin-left: .5em !important;
		font-size: 95% !important;
		/* width: 100%; */
	}
	.span_container {
		/*text-align: left !important; */
		margin-left: .5em !important;
		font-size: 95% !important;
		/* width: 100%; */
		margin: 0 auto;
	}
}


/* 
 * Smartphones (portrait) 
 */
@media only screen and (max-width : 320px) 
{
	#footer_container  {
		/* text-align: left !important; */
		margin-left: .25em !important;
		font-size: 90% !important;
		/* width: 100%; */
	}
	.span_container {
		/* text-align: left !important; */
		margin-left: .5em !important;
		font-size: 95% !important;
		/* width: 100%; */
		margin: 0 auto;
	}

}

/*
 * Smartphones (landscape) 
 */
@media only screen and (min-width : 321px) 
{
	#footer_container  {
		/* text-align: left !important; */
		margin-left: .25em !important;
		font-size: 90% !important;
		/* width: 100%; */
		/* background-color: gray; */
	}

	
}

/* 
 * Mobile Landscape Size to Tablet Portrait (devices and browsers) 
 */
@media only screen and (min-width: 480px) and (max-width: 767px) 
{


}

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

}

@media only screen and (min-width: 959px) 
{ 

}

/*
 * iPad mini in portrait & landscape
 */
@media only screen 
	and (min-device-width : 768px) and (max-device-width : 1024px)
	and (-webkit-min-device-pixel-ratio: 1)  
{

}


/*
 * iPad mini in landscape
 */
@media only screen 
	and (min-device-width : 768px) and (max-device-width : 1024px) 
	and (orientation : landscape)
	and (-webkit-min-device-pixel-ratio: 1)  
{

}


/*
 * iPad mini in portrait
 */
@media only screen 
	and (min-device-width : 768px) and (max-device-width : 1024px) 
	and (orientation : portrait)
	and (-webkit-min-device-pixel-ratio: 1)  
{

}

/*
 * iPads (portrait and landscape) 
 */
@media only screen 
	and (min-device-width : 768px) and (max-device-width : 1024px) 
{

}

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

}

/* 
 * Mobile Portrait Size to Mobile Landscape Size (devices and browsers) 
 */
@media only screen and (max-width: 479px) 
{ 

}

/*
@media (min-width:320px) { ** smartphones, portrait iPhone, portrait 480x320 phones (Android) * }
@media (min-width:480px) { * smartphones, Android phones, landscape iPhone * }
@media (min-width:600px) { * portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) * }
@media (min-width:801px) { * tablet, landscape iPad, lo-res laptops ands desktops * }
@media (min-width:1025px) { * big landscape tablets, laptops, and desktops * }
@media (min-width:1281px) { * hi-res laptops and desktops * }
*/


/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) 
and (orientation : landscape) 
{

}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) 
and (orientation : portrait) 
{

}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1025px) 
{

}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) 
{

}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) 
{

}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5)
{
/* Styles */
}