/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	#nav li { padding-right:28px; }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	#nav li { padding-right:28px; }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
	#nav li { padding-right:38px; }
}

/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
	#nav li { padding-right:28px; }
}

/* Kindle Fire / Galaxy Tab ----------- */
@media only screen and (device-pixel-ratio: 1)
    and (device-width: 1024px)
    and (max-device-height: 600px)
    and (orientation: landscape) {
		#nav li { padding-right:28px; }	
		
}
@media only screen and (device-pixel-ratio: 1)
    and (device-width: 600px)
    and (max-device-height: 1024px)
    and (orientation: portrait) {
		#nav li { padding-right:10px; }		
}