
/* ====== Change selected text color/background ====== */
/* Mozilla based browsers */
::-moz-selection {
       background-color: #FFb;
       color: #000;
}

/* Works in Safari */
::selection {
       background-color: #FFA;
       color: #000;
}

/* ====== Give Clickable Elements a Pointer Cursor ====== */
a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
       cursor: pointer;
}

/* ====== Remove Dotted Focus Borders ====== */
a:active {
    outline: none;
}
a:focus {
    -moz-outline-style: none;
}

/* ====== Removing Dotted Outline ====== */
a {
   outline: 0;
}
