* {
    margin: 0;
    padding: 0;

    /* Disable iOS magnifier. */
    -webkit-touch-callout: none;

    /* Disable User Drag events */
    -webkit-user-drag: none;
    user-drag: none

    /* Disable Text Selection */
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /*
     * Fix for IE10 issue where scrollbar is being shown overlaid rather than displayed
     * in the classic style.
     * http://msdn.microsoft.com/en-us/library/windows/apps/hh441298.aspx
     */
    -ms-overflow-style: scrollbar;
}

input, textarea, .ui-input-text {
    /* Restore iOS default behavior to select web elements */
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


html, body {
    height: 100%;
    width: 100%;
}

canvas {
    display: block;
}

@-ms-viewport {
	user-zoom: fixed;
	max-zoom: 1;
	min-zoom: 1;
	width: device-width;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.hide {
    display: none;
}

.autoWidth {
    width: auto;
}

.bold {
    font-weight: bold;
}

.pf {
    position: fixed;
}

.hideOverflow {
    overflow: hidden;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.line {
    display: block;
    vertical-align: middle;
    text-overflow: ellipsis;
}

.line.hide {
    display: none;
}

.vam {
    vertical-align: middle;
}
