@charset "utf-8";

/**
 * @version    1.20
 * @date       2011-07-21, 2011-07-20
 * @since      2010-08-06
 * @author     Christian Oellers
 * @copyright  2010-2011 Christian Oellers
 * @link       http://veryshort.de
 *
 * DESCRIPTION
 * - System independent reset for:
 *   - Elements always used
 *   - Usability/behavior tweaks
 * - Part of this source comes from:
 *   - necolas.github.com/normalize.css
 */

/* ------------------------------------------------------------------------------------------------- RESET / DEFAULTS */

* {
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
    margin:0;
    padding:0;
    /** /
    -ms-text-size-adjust:none;
    -webkit-text-size-adjust:none;
    /**/
}

iframe {
    border:none;
}

img {
    border:none;
}

a {
    text-decoration:none;
}

:hover,
:active,
:focus {
    outline:none;
}

/* ---------------------------------------------------------------------------------------- Forms */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor:pointer;
    -webkit-appearance:button;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance:none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border:0;
    padding:0;
}
