﻿/*==============================
smaller than 1500
=================================*/
@media screen and (max-width: 1500px) {
#outerWrapper {
	width: 95%;
}
#contentWrapper {
	clear: both;
	background: #FFFFFF 
#content {
	width: 100%;
	padding: 3% 4%;
}
}
 ===============================
 iPads (portrait) 
 ============================== */
@media only screen and (min-device-width : 768px) and (orientation : portrait) {
#outerWrapper {
	width: 90%;
}
#contentWrapper {
	clear: both;
	background: #FFFFFF
}
#content {
	width: 90%;
	padding: 3% 4%;
}
}
/*=====================================
more than 800
========================================*/
@media screen and (min-width: 601px) {
#outerWrapper {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}
}
/*=====================================
less than 650
========================================*/
@media screen and (max-width: 650px) {
#header {
	height: auto;
}
#topNavigation {
	position: static;
}
#content {
	width: auto;
	float: none;
	margin: 20px 0;
}
}
========================================
less than 480
=========================================*/

@media screen and (max-width: 480px) {

#contentWrapper {
	clear: both;
	background: #FFFFFF
}
#outerWrapper #topNavigation {
	height: 60px;
}
#topNavigation a {
	font-size: 90%;
	padding: 10px 8px;
}
#content {
	width: auto;
	float: none;
	margin: 0;
}
}

