/* minimal mobile devices css style sheet */
/* thanks to: http://perishablepress.com/press/2009/08/02/the-5-minute-css-mobile-makeover/ */

/* protecting it from old browsers */
@media handheld {

html, body { background: #fff; padding: 3px; color: #000; margin: 0; }

* { float: none; }

h1, h2, h3, h4, h5, h6 { font-weight: normal; }

a:link, a:visited { text-decoration: underline; color: #0000CC; }
a:hover, a:active { text-decoration: underline; color: #660066; }

img { max-width: 250px; }

.sidebar3 { display: none; }
.footermid { display: none; }
.footerright { display: none; }
.footerleft { display: none; }

/* iPhone-specific styles */
@media only screen and (max-device-width: 480px) {

   html { -webkit-text-size-adjust: none; }
   }

}