diff --git a/css/style.css b/css/style.css
index c4a2442..e466d9d 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1,10 +1,10 @@
/* GENERAL
--------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Typography */
-html { overflow-y: scroll; }
+html { overflow-y: scroll; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; }
body { background: #fff; font-family: sans-serif; }
-a { color: #06c; }
+a { color: #06c; -webkit-tap-highlight-color: #06c; }
a:hover, a:focus { color:#09f; }
a:hover, a:active { outline: none; }
a:active, input.button:active { outline: 0; position: relative; top: 1px; }
@@ -408,20 +408,15 @@ img.ui-datepicker-trigger { vertical-align: middle; }
/* MEDIA QUERIES
--------------------------------------------------------------------------------------------------------------------------------------------------- */
-@media all and (orientation: portrait) {
- /* Style adjustments for portrait mode goes here */
+@media only screen and (min-width: 480px) {
+ /* Style adjustments for viewports 480px and over go here */
-}
+}/*/mediaquery*/
-@media all and (orientation: landscape) {
- /* Style adjustments for landscape mode goes here */
+@media only screen and (min-width: 768px) {
+ /* Style adjustments for viewports 768px and over go here */
-}
-
-@media screen and (max-device-width: 480px) {
- /* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome) */
-
-}
+}/*/mediaquery*/
@media print {
* { background: transparent !important; color: black !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
diff --git a/header.php b/header.php
index 03d19c6..fa92aad 100644
--- a/header.php
+++ b/header.php
@@ -15,6 +15,7 @@
+
diff --git a/js/libs/respond.min.js b/js/libs/respond.min.js
new file mode 100644
index 0000000..aaf8654
--- /dev/null
+++ b/js/libs/respond.min.js
@@ -0,0 +1,7 @@
+/*
+ * respond.js - A small and fast polyfill for min/max-width CSS3 Media Queries
+ * Copyright 2011, Scott Jehl, scottjehl.com
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * Usage: Check out the readme file or github.com/scottjehl/respond
+*/
+(function(e,h){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=h;if(h){return}var u=e.document,r=u.documentElement,i=[],k=[],p=[],o={},g=30,f=u.getElementsByTagName("head")[0]||r,b=f.getElementsByTagName("link"),d=[],a=function(){var B=b,w=B.length;for(var z=0;z=F.minw)&&(!F.maxw||F.maxw&&D<=F.maxw)){if(!z[F.media]){z[F.media]=[]}z[F.media].push(k[F.rules])}}for(var y in p){if(p[y]&&p[y].parentNode===f){f.removeChild(p[y])}}for(var y in z){var G=u.createElement("style"),A=z[y].join("\n");G.type="text/css";G.media=y;if(G.styleSheet){G.styleSheet.cssText=A}else{G.appendChild(u.createTextNode(A))}C.appendChild(G);p.push(G)}f.insertBefore(C,B.nextSibling)},n=function(v,x){var w=c();if(!w){return}w.open("GET",v,true);w.onreadystatechange=function(){if(w.readyState!=4||w.status!=200&&w.status!=304){return}x(w.responseText)};if(w.readyState==4){return}w.send()},c=(function(){var v=false,w=[function(){return new ActiveXObject("Microsoft.XMLHTTP")},function(){return new ActiveXObject("Msxml3.XMLHTTP")},function(){return new ActiveXObject("Msxml2.XMLHTTP")},function(){return new XMLHttpRequest()}],y=w.length;while(y--){try{v=w[y]()}catch(x){continue}break}return function(){return v}})();a();respond.update=a;function s(){j(true)}if(e.addEventListener){e.addEventListener("resize",s,false)}else{if(e.attachEvent){e.attachEvent("onresize",s)}}})(this,(function(f){if(f.matchMedia){return true}var e,i=document,c=i.documentElement,g=c.firstElementChild||c.firstChild,h=!i.body,d=i.body||i.createElement("body"),b=i.createElement("div"),a="only all";b.id="mq-test-1";b.style.cssText="position:absolute;top:-99em";d.appendChild(b);b.innerHTML='_';if(h){c.insertBefore(d,g)}b.removeChild(b.firstChild);e=b.offsetWidth==9;if(h){c.removeChild(d)}else{d.removeChild(b)}return e})(this));
\ No newline at end of file