/* _________________________________________________

320 and Up boilerplate extension
Andy Clarke http://about.me/malarkey
Version: 2
URL: http://stuffandnonsense.co.uk/projects/320andup/
License: http://creativecommons.org/licenses/MIT/
_____________________________________________________

1 ROOT
2 HEADINGS
3 TYPOGRAPHY
4 LINKS
5 FIGURES & IMAGES
6 TABLES
7 FORMS
8 BANNER
9 HEADER & NAVIGATION
10 CONTENT
11 MAIN
12 COMPLEMENTARY
13 SECONDARY
14 CONTENTINFO
15 GLOBAL OBJECTS
16 VENDOR-SPECIFIC
17 MODERNIZR
18 TEMPLATE SPECIFICS
19 MEDIA QUERIES
20 COLOURS
21 NON-SEMANTIC HELPER CLASSES

*/

/* 1 ROOT
   ============================================================================= */

html, body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* 320 and Up _________________________________________________

320 and Up
Andy Clarke http://about.me/malarkey
LESS Version: 2
URL: http://stuffandnonsense.co.uk/projects/320andup/
License: http://creativecommons.org/licenses/MIT/

Includes:


__________________________________________________________ */
.sans-serif {
  font-family: "gesta-n4","gesta","Lucida Sans Unicode","Lucida Grande",sans-serif;
}
.serif {
  font-family: "Cambria, Georgia, Times, " Times New Roman;
}
.monospace {
  font-family: "Monaco", Courier New, monospace;
}
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
html {
  overflow-y: scroll;
  background-color: #000;
}
body {
  font-family: "gesta-n4","gesta","Lucida Sans Unicode","Lucida Grande",sans-serif;
  color: #222;
  background-color: transparent;
}
button,
input,
select,
textarea {
  font-family: "gesta-n4","gesta","Lucida Sans Unicode","Lucida Grande",sans-serif;
  color: #404040;
}


/* 2 HEADINGS
   ============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gesta-n4","gesta","Lucida Sans Unicode","Lucida Grande",sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1 {
  font-size: 115%; /*17px / 16px*/
  line-height: 1.3;
  color: #47aa42;
  text-shadow: 0 1px 0 #fff;
}
h2 {
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  color: #47aa42;
  font-size: 130%;
  line-height: 1.3;
}
h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-size: 100%;
  line-height: 1.3;
 font-weight: 700;
}
h4 {
  margin-bottom: 1em;
  font-size: 1.125em; /*18px / 16px*/
  line-height: 1.25;
}
h5 {
  margin-bottom: 1.5em;
  font-size: 1em;
}
h6 {
  font-size: 1em;
}


/* 3 TYPOGRAPHY
   ============================================================================= */

p,
ol,
ul,
dl,
address {
  font-size: 85%; /*14px / 16px*/
}
p {
  text-align: left;
  line-height: 1.4;
}
ul, ol {
  margin: 0 0 1.5em 0;
  padding: 0 0 0 24px;
}
li ul, li ol {
  margin: 0;
  font-size: 85%; /*14px / 16px*/
}
dl, dd {
  margin-bottom: 1.5em;
}
dt {
  font-weight: normal;
}
blockquote {
  margin: 0 0 1.5em -24px;
  padding-left: 24px;
  border-left: 1px solid #bfbfbf;
  font-style: italic;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
abbr[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
b, strong {
	font-style: normal;
	font-weight: 700;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  margin: 1em 0 1.5em;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #fff;
}
ins {
  background-color: #c3d9e6;
  color: #000000;
  text-decoration: none;
}
mark {
  background-color: #c3d9e6;
  color: #000000;
  font-style: italic;
  font-weight: bold;
}
pre,
code,
kbd,
samp {
  font-family: "Monaco", Courier New, monospace;
  font-size: 85%; /*14px / 16px*/
  line-height: 1.4em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}
small {
  font-size: 65%; /*11px / 16px*/
  line-height: 1.2em;
  color: #777;
  display: block;
}
sub, sup {
  font-size: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
.highlight {
	color: #b9b8b8;
}
.active .highlight {
	color: #fff;
}


/* 4 LINKS
   ============================================================================= */

a {
  color: #47aa42;
  text-decoration: none;
}
a:visited {
  color: #47aa42;
}
a:hover {
  color: #011b35;
}
a:focus {
  outline: thin dotted;
  color: #011b35;
}
a:hover, a:active {
  outline: 0;
}
a.button {
	color: #fff;
	font-size: 110%; /*18px / 16px*/
	text-transform: uppercase;
	background-color: #30d728;
	padding: 8px 16px 8px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-shadow: 0 -1px 0 #47aa42;
	vertical-align: middle;
	display: inline-block;
	line-height: 1;
}
.mainwrap .readmore a {
	margin-top: -26px;
}
.mainwrap .readmore a:hover {
	color: #fff;
}
a.button:hover {
	background-color: #089101;
}
a.button img {
	vertical-align: baseline;
}


/* 5 FIGURES & IMAGES
   ============================================================================= */

figure {
  margin-bottom: 1.5em;
}
figure img, figure object, figure embed {
  margin-bottom: 0.75em;
  max-width: 100%;
}
figcaption {
  display: block;
  font-weight: normal;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}


/* 6 TABLES
  ============================================================================= */

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5em;
  width: 100%;
  font-size: 85%; /*14px / 16px*/
}
th, td, caption {
  padding: 0.1875em 10px 0.1875em 5px;
}
tfoot {
  font-style: italic;
}
caption {
  background-color: transparent;
}
tbody tr:nth-child(odd) td {
  background-color: #c3d9e6;
}


/* 7 FORMS
  ============================================================================= */

form {
  margin: 0;
}
fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border-width: 0;
}
legend {
  *margin-left: -7px;
  padding: 0;
  border-width: 0;
}
label {
  font-weight: normal;
  cursor: pointer;
}
button,
input,
select,
textarea {
  font-size: 75%; /*12px / 16px*/
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button, input {
  line-height: normal;
  *overflow: visible;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  box-sizing: content-box;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}


/* 8 BANNER & HEADER
  ============================================================================= */
.bannerwrapper {
	width: 100%;
	border-bottom: 1px solid #2c2c2c;
	background-color: #232323;
}
.banner {
	max-width: 940px;
	margin: 0 auto;
	position: relative;
	padding: 10px 20px;
	text-align: center;
	color: #777;
}
.banner a:link,
.banner a:visited {
	text-transform: uppercase;
	color: #777;
	font-size: 70%; /*11px / 16px*/
	border-right: 1px solid #777;
	padding-right: 15px;
	margin-right: 10px;
}
.banner a:hover {
	color: #47aa42;
}
.banner a:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.banner a.selected {
	color: #47aa42;
}
header {
	width: 100%;
	border-bottom: 1px solid #393939;
}
header .logo {
	margin: 0 auto;
	position: relative;
	text-align: center;
}
header h1 {
	width: 232px;
	height: 62px;
	margin: 32px auto 25px;
}
header h1 a {
	background-image: url(../img/ecfs_logo_wg.png);
	background-repeat: no-repeat;
	height: 62px;
	display: block;
	text-indent: -9999px;
}



/* 9 NAVIGATION
  ============================================================================= */
header nav {
	text-align: center;
	border-top: 1px solid #393939;
	padding: 20px 20px 0;
	width: auto;
}
header nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
header nav li {
	padding-bottom: 15px;
}
header nav li:last-child {
	padding-bottom: 20px;
}
header nav a:link,
header nav a:visited {
	text-transform: uppercase;
	color: #777;
	font-size: 95%; /*13px / 14px*/
}
header nav a:hover {
	color: #47aa42;
}
header nav a.active {
	color: #fff;
}
.complementary nav {
	background-color: #323232;
	width: auto;
	margin: 0 20px;
	text-align: center;
}
.complementary nav ul {
	padding: 30px 20px;
	margin: 0;
	list-style: none;
	text-transform: uppercase;
}
.complementary nav ul li {
	padding-bottom: 20px;
	font-size: 95%; /*13px / 14px*/
}
.complementary nav ul li:last-child {
	padding-bottom: 0;
}
.complementary nav a {
	line-height: 1.5;
	display: block;
/* 	padding-right: 25px; */
}
.complementary nav a:link,
.complementary nav a:visited {
	color: #777;
}
.complementary nav a:link img,
.complementary nav a:visited img {
	visibility: hidden;
}
.complementary nav a:hover {
	color: #47aa42;
}
.complementary nav a.active {
	color: #fff;
/* 	background: transparent url('../img/arrows_green_sm.png') no-repeat right bottom; */
}
.complementary nav a:hover img,
.complementary nav a.active img {
	visibility: visible;
}
.complementary nav span {
	white-space: nowrap;
}


/* 10 CONTENT
  ============================================================================= */
.content {
	width: 100%;
	border-bottom: 1px solid #393939;
}


/* 11 MAIN
  ============================================================================= */
.main {
	max-width: 600px;
	margin: 0 auto 20px;
	border-bottom: 1px solid #393939;
}
.homepage .mainimg {
	margin: 0 20px;
	overflow: hidden;
	background-color: #fff;
	width: auto;
}
.homepage .mainimg  img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}
.mainnobg {
	margin: 0 20px;
	width: auto;
}
.mainnobg h1 {
	margin: 40px 0 35px 0;
	color: #fff;
	text-shadow: none;
	font-size: 170%;
}
.mainnobg p.intro {
	font-size: 100%;
	padding-bottom: 20px;
	color: #fff;
}
.mainnobg a:hover {
	color: #666;
}
.mainnobg img.video {
	max-width: 100%;
	margin-top: 20px;
	padding: 0;
}
.mainnobg img.wide {
	max-width: 100%;
	margin-bottom: 20px;
	padding: 0;
}
.mainwrap {
	width: auto;
	text-align: center;
	padding-bottom: 20px;
	position: relative;
}
.mainwrap .readmore {
	width: 100%;
	margin-top: 10px;
}
.mainwrap .gullet,
.mainwrap .riser,
.mainwrap .fit {
	background-color: #47aa42;
}
.mainwrap .riser,
.mainwrap .fit {
	margin-top: 15px;
}
.mainwrap .gullet img,
.mainwrap .riser img {
	width: 75%; /* 240px / 320px*/
	padding-bottom: 25px;
}
.mainwrap .fit img {
	width: 70.3125%; /* 225px / 320px*/
	max-width: 100%; /* 240px / 320px*/
	padding-bottom: 0.8em;
	padding-top: 0.8em;
}
.brands .mainwrap {
	padding: 0;
}
.mainwrap .bates,
.mainwrap .wintec {
	width: 100%;
	margin-top: 20px;
}
.mainwrap .bates a,
.mainwrap .wintec a {
	display: block;
	padding: 0;
	margin: 0;
	line-height: 0;
}
.mainwrap .bates img,
.mainwrap .wintec img {
	max-width: 100%;
}
.whitebg {
	background-color: #fff;
	margin-bottom: 20px;
	padding: 20px;
}
.whitebg img {
	max-width: 100%;
}
.maintext {
	margin: 0 20px;
	width: auto;
	background-color: #cdebcc;
	padding: 20px;
}
.maintext h1 {
	text-align: center;
	margin: 0.5em 0 1em;
}
.maintext p {
	padding-bottom: 15px;
}
.maintext p.attention {
	background-color: #a3d4a0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 40px;
	margin-top: 10px;
	font-weight: 700;
}
.maintext li {
	padding-bottom: 5px;
	line-height: 1.4;
	text-align: left;
}
.maintext li:last-child {
	padding-bottom: 15px;
}
.maintext li ul {
	padding-top: 8px;
}
.maintext li li {
	padding-bottom: 5px;
	padding-top: 3px;
	font-size: 120%;
}
.maintext span {
	font-weight: 700;
}
.maintext img.product {
	max-width: 100%;
	margin: 10px 0 10px;
}
.maintext .products {
	background-color: #fff;
	padding: 20px;
	margin: 20px 0;
	text-align: center;
}
.maintext .products p:last-child {
	padding-bottom: 0;
}
.maintext .products ul li:last-child {
	padding-bottom: 0;
}
.maintext .left {
	float: left;
	margin-right: 20px;
	margin-bottom: 15px;
}
.maintext .pdf {
	margin-top: 3px;
}
.maintext .steps h3 {
	margin-top: 0;
	text-align: left;
}
.maintext .steps {
	padding-top: 10px;
	margin-bottom: 10px;
	width: auto;
	text-align: center;
}
.maintext img.figures {
	max-width: 100%;
	margin: 0 0 20px 0;
}
.maintext p.note {
	font-style: italic;
	color: #666;
	margin-top: 30px;
	border-top: 1px solid #fff;
	padding-top: 20px;
	clear: both;
}
.maintext p.last {
	margin-top: 0;
}
.maintext p.lastpara {
	padding-bottom: 0;
}
.maintext p.note strong {
	font-style: italic;
}
.maintext .products p.note {
	font-style: italic;
	color: #666;
	margin-top: 0;
	border-top: none;
	padding-top: 0;
}
.video-container {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	background-color: #CDEBCC;
	border: 1px solid #232323;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.videolink {
	background-color: #232323;
	margin-top: 20px;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}
.videolink img {
	padding-bottom: 0;
	position: relative;
	left: 50%;
	margin-left: -95px;
	display: block;
}

.maintext ul.faq-menu {
	margin: 0;
	padding: 20px 0;
	list-style: none;
}
.maintext ul.faq-menu li {
	margin-bottom: 10px;
}
.maintext ul.faq-menu li.title {
	color: #47aa42;
	font-weight: 400;
	font-size: 150%;
}


/* 12 COMPLEMENTARY
  ============================================================================= */
div[role="complementary"] {
	max-width: 600px;
	margin: 0 auto;
}
.fittingsolution {
	margin: 30px 20px 0;
	width: auto;
	background-color: #232323;
	text-align: center;
	padding: 20px 20px 0;
}
.fittingsolution .logos {
	width: auto;
	border-bottom: 1px solid #393939;
}
.fittingsolution .logos img {
	width: 30%;
	padding-bottom: 20px;
	vertical-align: middle;
}
.fittingsolution .logos img.plus {
	width: 10%;
	padding: 0 20px;
}
.gullet p {
	padding-bottom: 1em;
}
.gullet img,
.riser img {
	max-width: 100%; /* 240px / 320px*/
	padding-bottom: 0.8em;
	padding-top: 0.8em;
}
.fit img {
	width: 95%; /* 240px / 320px*/
	padding-bottom: 0.5em;
	padding-top: 1.6em;
}
.fittingsolution a.button {
	position: relative;
	top: 10px;
	background: #30d728;
}
.homepage .fittingsolution {
	background: #47aa42;
}
.homepage .fittingsolution h1 {
	color: #fff;
	text-shadow: 0 -1px 0 #197e14;
	margin: 0 0 0.3em 0;
	border-bottom: 1px solid #65be61;
	padding-bottom: 0.4em;
	font-size: 155%;
	line-height: 1.2em;
}
.homepage .box {
	position: relative;
	width: auto;
}
.homepage .fittingsolution .box p {
	color: #fff;
	text-align: center;
}
.homepage .gullet,
.homepage .riser {
	width: auto;
	float: none;
	border-bottom: 1px solid #65be61;
}
.homepage .gullet p {
	padding-bottom: 0.5em;
}
.homepage .gullet img {
	width: 85%; /* 240px / 320px*/
	padding-bottom: 0.8em;
	padding-top: 0.8em;
}
.homepage .riser p {
	padding-bottom: 1.2em;
}
.homepage .riser img {
	width: 85%; /* 240px / 320px*/
	padding-bottom: 0.8em;
	padding-top: 2em;
}
.homepage .plus {
	width: 100%;
	margin: -35px 46%;
}
.homepage img.plus {
	width: 31px;
	height: 33px;
}
.homepage .fittingsolution a.button {
	top: 10px;
	font-size: 100%; /*18px / 18px*/
	padding: 10px 12px 8px;
	text-shadow: 0 -1px 0 #d8a707;
	background-color: #ffc60b;
}
.homepage .fittingsolution a.button:hover {
	background-color: #fba71a;
}
.homepage .fittingsolution a.button img {
	width: 14px;
}


/* 13 SECONDARY
  ============================================================================= */
.secondary {
	width: 100%;
	background: #fff url(../img/wave.gif) repeat center top;
	margin-top: 30px;
	margin-bottom: 20px;
}
.secondary .tab {
	width: 100%;
	background: transparent url('../img/black_tab.gif') no-repeat center top;
	height: 4px;
}
.feature,
.links {
	max-width: 600px;
	margin: 0 auto;
}
.secondary .box {
	margin: 0 20px 20px;
	width: auto;
}
.feature .saddlefit,
.feature .adjustments {
	background-color: #daeed9;
	background-color: rgba(71, 170, 66, .2);
}
.feature .saddlefit {
	margin-top: 20px;
}
.secondary .feature img {
	display: none;
}
.secondary .feature a {
	padding: 10px 10px 8px;
}
.feature .saddlefit a img,
.feature .adjustments a img {
	display: inline-block;
	width:  14px;
	height: 10px;
}
.feature a:link,
.feature a:visited {
	display: block;
	text-transform: uppercase;
	font-size: 95%; /*15px / 16px*/
	text-shadow: 0 1px 0 #fff;
	font-weight: 700;
	text-align: left;
	line-height: 1.2;
}
.links .ecgs {
	background-color: #47aa42;
	color: #fff;
	padding: 20px 8px 20px 20px;
}
.links .ecgs p {
	padding-bottom: 20px;
}
.links .ecgs img {
	float: right;
	padding-left: 5px;
}
.links .ecgs a:link,
.links .ecgs a:visited {
	color: #000;
	font-weight: 700;
	text-align: left;
	font-size: 90%;
	display: block;
}
.links .ecgs a:hover{
	color: #fff;
}
.links .stockists {
	margin-bottom: 0;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 20px;
}
.links .stockists p {
	text-align: center;
}
.links .logos {
	margin: 16px 0;
	padding: 12px 0 0;
	border-top: 1px solid #2e2e2e;
	border-bottom: 1px solid #2e2e2e;
}
.links a.bates img {
	width: 112px;
	height: 38px;
	margin-right: 10px;
	margin-bottom: 12px;
}
.links a.wintec img {
	width: 106px;
	height: 41px;
	margin-left: 10px;
	margin-bottom: 12px;
}
.reversetab {
	width: 100%;
	background: transparent url('../img/reverse_tab.gif') no-repeat center bottom;
	height: 8px;
	margin-top: 20px;
	clear: both;
}


/* 14 CONTENTINFO
  ============================================================================= */
.footer {
	width: 100%;
	background-color: #232323;
	border-top: 1px solid #2e2e2e;
}
.footerwrapper {
	background-color: #000;
	padding-bottom: 20px;
	border-bottom: 1px solid #2e2e2e;
}
footer .column {
	padding: 20px;
	border-bottom: 1px solid #2e2e2e;
}
footer .column h3 {
	color: #777;
	font-size: 80%; /*12px / 16px*/
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0.5em;
	margin-top: 0;
	text-align: left;
}
footer .column a {
	color: #777;
	font-size: 90%; /*11px / 14px*/
	line-height: 1.7;
	text-align: left;
}
footer .column a:hover {
	color: #47aa42;
}
.fineprint {
	margin: 0 auto;
	height: 50px;
	padding: 20px;
	clear: both;
	max-width: 940px;
}
.fineprint p {
	text-align: center;
	color: #777;
	font-size: 65%; /*10px / 16px*/
}

/* 15 GLOBAL OBJECTS
  ============================================================================= */


/* 16 VENDOR-SPECIFIC
  ============================================================================= */

html {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: #c3d9e6;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
::-webkit-selection {
  background: #e6e6e6;
  color: #fafafa;
  text-shadow: none;
}
::-moz-selection {
  background: #7bacc8;
  color: #c8977b;
  text-shadow: none;
}
::selection {
  background: #7bacc8;
  color: #c8977b;
  text-shadow: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
}
::-webkit-input-placeholder {
  font-size: 85%; /*14px / 16px*/
}
input:-moz-placeholder {
  font-size: 85%; /*14px / 16px*/
}
.ie7 img, .iem7 img {
  -ms-interpolation-mode: bicubic;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}


/* 17 MODERNIZR
  ============================================================================= */


/* 18 TEMPLATE SPECIFICS ============================================================================= */


/* 19 MEDIA QUERIES
  ============================================================================= */


/* 20 COLOURS
  ============================================================================= */


/* 21 NON-SEMANTIC HELPER CLASSES
  ============================================================================= */

.ir {
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  text-indent: -999em;
  direction: ltr;
}
.ir br {
  display: none;
}
.hidden {
  display: none;
  visibility: hidden;
}
.visuallyhidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static;
  margin: 0;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}
.invisible {
  visibility: hidden;
}
