/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width : 320px) and (max-width : 480px) {
/* Styles */
#contentwrapper{ width: 100%; }
body{ background-color: #f7f0e1; }
.left,.right{ width: 100%; margin: 0; }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
/* Styles */
#contentwrapper{ width: 100%; }
body{ background-color: #f7f0e1; }
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
/* Styles */
#contentwrapper{ width: 100%; }
body{ background-color: #f7f1e0; }
.left,.right{ width: 100%; margin: 0; }
}

/* iPads (landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
/* Styles */
#contentwrapper{ width: 1024px; }
body{ background-color: #f7f0e1; }
img{ max-width: 984px; }
}

/* iPads (portrait) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
/* Styles */
#contentwrapper{ width: 768px; }
body{ background-color: #f7f0e1; }
img{ max-width: 748px; }
.left,.right{ width: 100%; margin: 0; }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1250px) {
/* Styles */
#contentwrapper{ width: 1250px; }
body{ background-color: #f7f0e1; }
img{ max-width: 1990px; }
}


