﻿/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-align: right;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  text-align: right;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: right;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
  text-decoration: none;
}
a:visited,
a:hover,
a:focus {
  text-decoration: none!important;
}
.animation {
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
.bgpostionanimate {
  -webkit-transition: 0.2s background-position 0.3s ease-in-out;
  -moz-transition: 0.2s background-position 0.3s ease-in-out;
  -ms-transition: 0.2s background-position 0.3s ease-in-out;
  -o-transition: 0.2s background-position 0.3s ease-in-out;
  transition: 0.2s background-position 0.3s ease-in-out;
}
/*--Custom--*/
.fleft {
  float: left !important;
}
.fright {
  float: right !important;
}
.Aright {
  text-align: right !important;
}
.Aleft {
  text-align: left !important;
}
.Acenter {
  text-align: center !important;
}
.clear {
  clear: both;
  height: 0px!important;
  margin: 0px!important;
  padding: 0px !important;
}
::selection {
  background-color: #2671a2;
  color: #fff;
}