jl777
9 years ago
committed by
GitHub
39 changed files with 7458 additions and 0 deletions
@ -0,0 +1,113 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title>Iguana</title> |
|||
|
|||
<!-- Bootstrap --> |
|||
<link href="css/plugins/bootstrap.min.css" rel="stylesheet"> |
|||
<link href="css/plugins/font-awesome.min.css" rel="stylesheet"> |
|||
<link href="css/plugins/awesome-bootstrap-checkbox.css" rel="stylesheet"> |
|||
<link href="css/plugins/formValidation.min.css" rel="stylesheet"> |
|||
<link href="css/plugins/budicon/budicon.css" rel="stylesheet"> |
|||
<link href="css/createaccount.css" rel="stylesheet"> |
|||
|
|||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
|||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
|||
<!--[if lt IE 9]> |
|||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
|||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> |
|||
|
|||
<![endif]--> |
|||
</head> |
|||
<body> |
|||
|
|||
<div class="container-fluid"> |
|||
<div class="row"> |
|||
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 col-md-offset-6 col-lg-offset-8 center"> |
|||
<div class="header"> |
|||
<span class="header-action-btn"><a id="window-close" href="#" onclick="window.open('', '_self', '');window.close();"><i class="bi_interface-cross" aria-hidden="true"></i></a></span> |
|||
<span id="login-back" class="header-action-btn hide"><a href="#"><i class="bi_interface-arrow-left" aria-hidden="true"></i></a></span> |
|||
<span id="account-back" class="header-action-btn hide"><a href="#"><i class="bi_interface-arrow-left" aria-hidden="true"></i></a></span> |
|||
<!-- <span id="add-account-label">Add account</span> |
|||
<span id="login-label" class="hide">Login</span> --> |
|||
<span id="accounts-label" class="hide">Add accounts</span> |
|||
</div> |
|||
<div class="content"> |
|||
|
|||
<div id="content-hints"> |
|||
|
|||
<div id="messages"> |
|||
<div id="passphrase-hint" class="hide messages"> |
|||
<p>Write down this 24-word passphrase and keep it safe. You can't access or restore your account , if you lose it! <b>Don't ever disclose your passphrase!</b></p> |
|||
</div> |
|||
<div id="login-hint" class="messages"> |
|||
<p>Type or paste the passphrase to log in</p> |
|||
</div> |
|||
<div id="paassphrase-confirmation-hint" class="hide messages"> |
|||
<p id="confirmation-message">Type or paste the passphrease to confirm you saved it properly</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
<div id="content-area"> |
|||
<div id="accounts-list" class="hide"> |
|||
<button id="" type="button" class="btn btn-account btn-lg btn-block">Account #1</button> |
|||
<button id="" type="button" class="btn btn-account btn-lg btn-block">Account #2</button> |
|||
<button id="" type="button" class="btn btn-account btn-lg btn-block">Account #3</button> |
|||
</div> |
|||
<form id="login-form"> |
|||
<div id="passphrase" class="form-group marginbottom30px"> |
|||
<textarea class="form-control" rows="7" id="passphrase-text" name="passphrasetext"></textarea> |
|||
</div> |
|||
</form> |
|||
|
|||
<form id="create-account-form" class="hide"> |
|||
<div id="passphrase" class="form-group marginbottom30px"> |
|||
<textarea class="form-control" rows="7" id="create-passphrase-text" name="createpassphrasetext" readonly placeholder="Passphrase(You can copy it)"></textarea> |
|||
</div> |
|||
<div class="checkbox checkbox-inguana"> |
|||
<input type="checkbox" id="passphrase-save-check"> |
|||
<label for="passphrase-save"> |
|||
I saved the passphrase in a secured place |
|||
</label> |
|||
</div> |
|||
</form> |
|||
|
|||
<form id="add-account-form" class="hide"> |
|||
<div id="passphrase" class="form-group marginbottom30px"> |
|||
<textarea class="form-control" rows="7" id="add-passphrase-text" name="addpassphrasetext"></textarea> |
|||
</div> |
|||
</form> |
|||
|
|||
|
|||
</div> |
|||
|
|||
<div id="window-action"> |
|||
<div class="center-block buttonsWrapper" id="login-acreen-actions"> |
|||
<button id="account-login" type="submit" class="btn btn-action disabled marginbottom30px" disabled="true">Log in</button> |
|||
<p class="text-center marginbottom30px">or</p> |
|||
<button id="create-account" type="button" class="btn btn-action">Create an account</button> |
|||
</div> |
|||
<div class="center-block buttonsWrapper hide" id="create-account-actions"> |
|||
<button id="create-account-next" type="button" class="btn btn-action disabled" disabled="true">Next</button> |
|||
</div> |
|||
<div class="center-block buttonsWrapper hide" id="add-account-actions"> |
|||
<button id="add-account" type="button" class="btn btn-action disabled" disabled="true">Add account</button> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<script src="js/plugins/jquery-2.2.0.min.js"></script> |
|||
<script src="js/plugins/bootstrap.min.js"></script> |
|||
<script src="js/plugins/formValidation.min.js"></script> |
|||
<script src="js/plugins/formvalidation/bootstrap.min.js"></script> |
|||
<script src="js/crypto/wordlist.js" type="text/javascript"></script> |
|||
<script src="js/crypto/passphrasegenerator.js" type="text/javascript"></script> |
|||
<script src="js/app.js"></script> |
|||
</body> |
|||
</html> |
File diff suppressed because one or more lines are too long
@ -0,0 +1,437 @@ |
|||
body { |
|||
font-family: proxima-nova, sans-serif; |
|||
font-size: 15px; |
|||
color: #252528; |
|||
|
|||
} |
|||
.center { |
|||
|
|||
background-color: #f4f7fb; |
|||
color: #252528; |
|||
} |
|||
|
|||
|
|||
@media (min-width:320px) { |
|||
/* smartphones, Android phones, landscape iPhone */ |
|||
.center { |
|||
margin: 0; |
|||
padding: 0; |
|||
margin-bottom: -99999px; |
|||
padding-bottom: 99999px; |
|||
overflow: hidden; |
|||
} |
|||
.content { |
|||
width: 85%; |
|||
margin: 0 auto; |
|||
padding-top: 25%; |
|||
} |
|||
.buttonsWrapper { |
|||
width: 100%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 10px 16px; |
|||
font-size: 18px; |
|||
line-height: 1.33; |
|||
border-radius: 6px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:480px) { |
|||
/* smartphones, Android phones, landscape iPhone */ |
|||
.center { |
|||
margin: 0; |
|||
padding: 0; |
|||
margin-bottom: -99999px; |
|||
padding-bottom: 99999px; |
|||
overflow: hidden; |
|||
} |
|||
.content { |
|||
width: 85%; |
|||
margin: 0 auto; |
|||
padding-top: 25%; |
|||
} |
|||
.buttonsWrapper { |
|||
width: 100%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 10px 16px; |
|||
font-size: 18px; |
|||
line-height: 1.33; |
|||
border-radius: 6px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:600px) { |
|||
/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ |
|||
.center { |
|||
margin: 0; |
|||
padding: 0; |
|||
margin-bottom: -99999px; |
|||
padding-bottom: 99999px; |
|||
overflow: hidden; |
|||
} |
|||
.content { |
|||
width: 85%; |
|||
margin: 0 auto; |
|||
padding-top: 10%; |
|||
|
|||
} |
|||
.buttonsWrapper { |
|||
width: 100%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 10px 16px; |
|||
font-size: 18px; |
|||
line-height: 1.33; |
|||
border-radius: 6px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:801px) { |
|||
/* tablet, landscape iPad, lo-res laptops ands desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 70%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:990px) { |
|||
/* big landscape tablets, laptops, and desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
height: 526px; |
|||
width: 60%; |
|||
border-radius: 4px; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 70%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
#window-close { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:1025px) { |
|||
/* big landscape tablets, laptops, and desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
height: 526px; |
|||
width: 53.5%; |
|||
border-radius: 4px; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 70%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
#window-close { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
} |
|||
@media (min-width:1281px) { |
|||
/* hi-res laptops and desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
height: 526px; |
|||
width: 46.7%; |
|||
border-radius: 4px; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 70%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
#window-close { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
|
|||
} |
|||
@media (min-width:1440px) { |
|||
/* hi-res laptops and desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
height: 526px; |
|||
width: 40.1%; |
|||
border-radius: 4px; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 70%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
#window-close { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
|
|||
} |
|||
@media (min-width:1600px) { |
|||
/* hi-res laptops and desktops */ |
|||
.center { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
bottom: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.19); |
|||
padding: 0; |
|||
height: 526px; |
|||
width: 31.3%; |
|||
border-radius: 4px; |
|||
} |
|||
.content { |
|||
width: 75%; |
|||
margin: 0 auto; |
|||
padding: 25px; |
|||
|
|||
} |
|||
|
|||
.buttonsWrapper { |
|||
width: 75%; |
|||
} |
|||
.block-btns { |
|||
display: block; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
padding: 5px 10px; |
|||
font-size: 12px; |
|||
line-height: 1.5; |
|||
border-radius: 3px; |
|||
} |
|||
#window-close { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
|
|||
} |
|||
.btn-action { |
|||
color: #ffffff; |
|||
background-image:radial-gradient(50% 100%, #fe7a0d 0%, #fe450d 100%); |
|||
box-shadow:0px 2px 4px 0px rgba(0,0,0,0.12), 0px 0px 2px 0px rgba(0,0,0,0.24); |
|||
border-radius:4px; |
|||
width:100%; |
|||
height:34px; |
|||
font-family: ProximaNova-Semibold, sans-serif; |
|||
font-size:15px; |
|||
color:#ffffff ; |
|||
text-shadow:0px 2px 4px rgba(0,0,0,0.20); |
|||
text-align:center; |
|||
} |
|||
|
|||
.header { |
|||
background-image:radial-gradient(50% 100%, #fe7a0d 0%, #fe450d 100%); |
|||
color: white; |
|||
height: 60px; |
|||
font-size: 20px; |
|||
line-height: 2; |
|||
text-align: center; |
|||
padding: 10px; |
|||
} |
|||
.header-action-btn { |
|||
float: left; |
|||
} |
|||
#window-action { |
|||
margin-top: 10%; |
|||
} |
|||
|
|||
.btn-account { |
|||
background-color: #ffffff; |
|||
color: #cb6d51; |
|||
margin-bottom: 15px; |
|||
} |
|||
#messages { |
|||
color: #252528; |
|||
} |
|||
|
|||
a { |
|||
text-decoration: none; |
|||
color: #ffffff; |
|||
} |
|||
button:hover, a:hover{ |
|||
color: #252528 !important; |
|||
opacity: 6% !important; |
|||
/*text-shadow: 0px 0px 2px #000000;*/ |
|||
} |
|||
|
|||
#content-hints{ |
|||
text-align: center; |
|||
margin-bottom: 5%; |
|||
} |
|||
.hide { |
|||
display: none; |
|||
} |
|||
textarea { |
|||
resize: none; |
|||
} |
|||
|
|||
#passphrase textarea{ |
|||
font-weight: bold; |
|||
text-align: center; |
|||
} |
|||
.disabled { |
|||
background-color: #C7CCD0; |
|||
background: -webkit-radial-gradient(#C7CCD0, #C7CCD0); /*Safari 5.1 to 6.0 */ |
|||
background: -o-radial-gradient(#C7CCD0, #C7CCD0); /* For Opera 11.6 to 12.0 */ |
|||
background: -moz-radial-gradient(#C7CCD0, #C7CCD0); /* For Firefox 3.6 to 15 */ |
|||
background: radial-gradient(#C7CCD0, #C7CCD0); /* Standard syntax (must be last) */ |
|||
} |
|||
|
|||
.marginbottom30px { |
|||
margin-bottom: 30px; |
|||
} |
|||
small.help-block { |
|||
font-size: 14px; |
|||
color: #fd2323; |
|||
} |
|||
.has-error .form-control { |
|||
border-color: #fd2323; |
|||
} |
|||
.has-error .form-control-feedback { |
|||
display: none !important; |
|||
} |
|||
.has-error .form-control:focus { |
|||
border-color: #fd2323; |
|||
} |
|||
.checkbox-inguana input[type="checkbox"]:checked + label::before, .checkbox-inguana input[type="radio"]:checked + label::before { |
|||
background-color: #FE450D; |
|||
border-color: #FE450D |
|||
color:#ffffff; |
|||
} |
|||
.checkbox label::after { |
|||
color: #ffffff; |
|||
} |
|||
.errorMessage { |
|||
color: #fd2323; |
|||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 382 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,129 @@ |
|||
/*! |
|||
* Iguana custom styles |
|||
* |
|||
*/ |
|||
|
|||
body, |
|||
html { |
|||
padding: 0; |
|||
margin: 0; |
|||
height: 100%; |
|||
width: 100%; |
|||
display: table; |
|||
} |
|||
.container-fluid { |
|||
display: table-cell; |
|||
vertical-align: middle; |
|||
} |
|||
.orange-gradient, |
|||
.btn.orange-gradient:focus { |
|||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fe640d+8,fe640d+25,fe4b0d+66,fe450d+100 */ |
|||
background: rgb(254, 100, 13); /* Old browsers */ |
|||
background: -moz-radial-gradient(center, ellipse cover, rgba(254, 100, 13, 1) 8%, rgba(254, 100, 13, 1) 25%, rgba(254, 75, 13, 1) 66%, rgba(254, 69, 13, 1) 100%); /* FF3.6-15 */ |
|||
background: -webkit-radial-gradient(center, ellipse cover, rgba(254, 100, 13, 1) 8%, rgba(254, 100, 13, 1) 25%, rgba(254,75,13,1) 66%, rgba(254, 69, 13, 1) 100%); /* Chrome10-25,Safari5.1-6 */ |
|||
background: radial-gradient(ellipse at center, rgba(254, 100, 13, 1) 8%, rgba(254, 100, 13, 1) 25%, rgba(254, 75, 13, 1) 66%, rgba(254, 69, 13, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ |
|||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe640d', endColorstr='#fe450d', GradientType=1); /* IE6-9 fallback on horizontal gradient */ |
|||
} |
|||
.box-shadow-all { |
|||
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); |
|||
} |
|||
.box-shadow-bottom { |
|||
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2); |
|||
} |
|||
.form-container { |
|||
margin: 0 auto; |
|||
background-color: #f4f7fb; |
|||
} |
|||
.login-form { |
|||
padding: 0; |
|||
float: none; |
|||
max-width: 375px; |
|||
} |
|||
.login-or-delim { |
|||
font-size: 18px; |
|||
padding: 26px 0; |
|||
letter-spacing: 1px; |
|||
} |
|||
.unselectable { |
|||
cursor: default; |
|||
user-select: none; |
|||
-moz-user-select: none; |
|||
-ms-user-select: none; |
|||
-webkit-user-select: none; |
|||
} |
|||
textarea { |
|||
width: 100%; |
|||
height: 120px; |
|||
border-radius: 4px; |
|||
border: solid 1px #C7CCD0; |
|||
padding: 15px 20px; |
|||
font-weight: bold; |
|||
} |
|||
.cursor-pointer { |
|||
cursor: pointer; |
|||
cursor: hand; |
|||
} |
|||
.icon-close { |
|||
color: #fff; |
|||
font-size: 40px; |
|||
position: relative; |
|||
top: -4px; |
|||
left: 12px; |
|||
} |
|||
.col-red { |
|||
color: #FF0000; |
|||
} |
|||
.textarea.error { |
|||
border: solid 1px #FF0000; |
|||
} |
|||
.center { |
|||
text-align: center; |
|||
} |
|||
.offset-bottom-sm { |
|||
margin-bottom: 15px; |
|||
} |
|||
|
|||
.header { |
|||
background-color: #fe700d; |
|||
color: white; |
|||
padding: 15px 10px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.form-content { |
|||
padding: 25% 10px; |
|||
font-size: 16px; |
|||
color: #303033; |
|||
} |
|||
.form-content .row { |
|||
width: 99%; |
|||
margin-right: 0; |
|||
margin-left: 0; |
|||
} |
|||
.form-header { |
|||
height: 50px; |
|||
} |
|||
.btn { |
|||
color: #fff; |
|||
font-weight: bold; |
|||
font-size: 16px; |
|||
height: 46px; |
|||
} |
|||
.text-shadow { |
|||
text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4); |
|||
} |
|||
.btn:hover, |
|||
.btn:focus { |
|||
color: #fff; |
|||
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); |
|||
} |
|||
.btn.disabled, |
|||
.btn.disabled:focus { |
|||
pointer-events: none; |
|||
background: #C7CCD0; |
|||
text-shadow: none; |
|||
} |
|||
.btn.disabled:hover { |
|||
box-shadow: none; |
|||
text-shadow: none; |
|||
} |
@ -0,0 +1,317 @@ |
|||
.checkbox { |
|||
padding-left: 20px; |
|||
} |
|||
.checkbox label { |
|||
display: inline-block; |
|||
vertical-align: middle; |
|||
position: relative; |
|||
padding-left: 5px; |
|||
} |
|||
.checkbox label::before { |
|||
content: ""; |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 17px; |
|||
height: 17px; |
|||
left: 0; |
|||
margin-left: -20px; |
|||
border: 1px solid #cccccc; |
|||
border-radius: 3px; |
|||
background-color: #fff; |
|||
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
} |
|||
.checkbox label::after { |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 16px; |
|||
height: 16px; |
|||
left: 0; |
|||
top: 0; |
|||
margin-left: -20px; |
|||
padding-left: 3px; |
|||
padding-top: 1px; |
|||
font-size: 11px; |
|||
color: #555555; |
|||
} |
|||
.checkbox input[type="checkbox"], |
|||
.checkbox input[type="radio"] { |
|||
opacity: 0; |
|||
z-index: 1; |
|||
} |
|||
.checkbox input[type="checkbox"]:focus + label::before, |
|||
.checkbox input[type="radio"]:focus + label::before { |
|||
outline: thin dotted; |
|||
outline: 5px auto -webkit-focus-ring-color; |
|||
outline-offset: -2px; |
|||
} |
|||
.checkbox input[type="checkbox"]:checked + label::after, |
|||
.checkbox input[type="radio"]:checked + label::after { |
|||
font-family: "FontAwesome"; |
|||
content: "\f00c"; |
|||
} |
|||
.checkbox input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox input[type="radio"]:indeterminate + label::after { |
|||
display: block; |
|||
content: ""; |
|||
width: 10px; |
|||
height: 3px; |
|||
background-color: #555555; |
|||
border-radius: 2px; |
|||
margin-left: -16.5px; |
|||
margin-top: 7px; |
|||
} |
|||
.checkbox input[type="checkbox"]:disabled + label, |
|||
.checkbox input[type="radio"]:disabled + label { |
|||
opacity: 0.65; |
|||
} |
|||
.checkbox input[type="checkbox"]:disabled + label::before, |
|||
.checkbox input[type="radio"]:disabled + label::before { |
|||
background-color: #eeeeee; |
|||
cursor: not-allowed; |
|||
} |
|||
.checkbox.checkbox-circle label::before { |
|||
border-radius: 50%; |
|||
} |
|||
.checkbox.checkbox-inline { |
|||
margin-top: 0; |
|||
} |
|||
|
|||
.checkbox-primary input[type="checkbox"]:checked + label::before, |
|||
.checkbox-primary input[type="radio"]:checked + label::before { |
|||
background-color: #337ab7; |
|||
border-color: #337ab7; |
|||
} |
|||
.checkbox-primary input[type="checkbox"]:checked + label::after, |
|||
.checkbox-primary input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-danger input[type="checkbox"]:checked + label::before, |
|||
.checkbox-danger input[type="radio"]:checked + label::before { |
|||
background-color: #d9534f; |
|||
border-color: #d9534f; |
|||
} |
|||
.checkbox-danger input[type="checkbox"]:checked + label::after, |
|||
.checkbox-danger input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-info input[type="checkbox"]:checked + label::before, |
|||
.checkbox-info input[type="radio"]:checked + label::before { |
|||
background-color: #5bc0de; |
|||
border-color: #5bc0de; |
|||
} |
|||
.checkbox-info input[type="checkbox"]:checked + label::after, |
|||
.checkbox-info input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-warning input[type="checkbox"]:checked + label::before, |
|||
.checkbox-warning input[type="radio"]:checked + label::before { |
|||
background-color: #f0ad4e; |
|||
border-color: #f0ad4e; |
|||
} |
|||
.checkbox-warning input[type="checkbox"]:checked + label::after, |
|||
.checkbox-warning input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-success input[type="checkbox"]:checked + label::before, |
|||
.checkbox-success input[type="radio"]:checked + label::before { |
|||
background-color: #5cb85c; |
|||
border-color: #5cb85c; |
|||
} |
|||
.checkbox-success input[type="checkbox"]:checked + label::after, |
|||
.checkbox-success input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-primary input[type="checkbox"]:indeterminate + label::before, |
|||
.checkbox-primary input[type="radio"]:indeterminate + label::before { |
|||
background-color: #337ab7; |
|||
border-color: #337ab7; |
|||
} |
|||
|
|||
.checkbox-primary input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox-primary input[type="radio"]:indeterminate + label::after { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.checkbox-danger input[type="checkbox"]:indeterminate + label::before, |
|||
.checkbox-danger input[type="radio"]:indeterminate + label::before { |
|||
background-color: #d9534f; |
|||
border-color: #d9534f; |
|||
} |
|||
|
|||
.checkbox-danger input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox-danger input[type="radio"]:indeterminate + label::after { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.checkbox-info input[type="checkbox"]:indeterminate + label::before, |
|||
.checkbox-info input[type="radio"]:indeterminate + label::before { |
|||
background-color: #5bc0de; |
|||
border-color: #5bc0de; |
|||
} |
|||
|
|||
.checkbox-info input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox-info input[type="radio"]:indeterminate + label::after { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.checkbox-warning input[type="checkbox"]:indeterminate + label::before, |
|||
.checkbox-warning input[type="radio"]:indeterminate + label::before { |
|||
background-color: #f0ad4e; |
|||
border-color: #f0ad4e; |
|||
} |
|||
|
|||
.checkbox-warning input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox-warning input[type="radio"]:indeterminate + label::after { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.checkbox-success input[type="checkbox"]:indeterminate + label::before, |
|||
.checkbox-success input[type="radio"]:indeterminate + label::before { |
|||
background-color: #5cb85c; |
|||
border-color: #5cb85c; |
|||
} |
|||
|
|||
.checkbox-success input[type="checkbox"]:indeterminate + label::after, |
|||
.checkbox-success input[type="radio"]:indeterminate + label::after { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.radio { |
|||
padding-left: 20px; |
|||
} |
|||
.radio label { |
|||
display: inline-block; |
|||
vertical-align: middle; |
|||
position: relative; |
|||
padding-left: 5px; |
|||
} |
|||
.radio label::before { |
|||
content: ""; |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 17px; |
|||
height: 17px; |
|||
left: 0; |
|||
margin-left: -20px; |
|||
border: 1px solid #cccccc; |
|||
border-radius: 50%; |
|||
background-color: #fff; |
|||
-webkit-transition: border 0.15s ease-in-out; |
|||
-o-transition: border 0.15s ease-in-out; |
|||
transition: border 0.15s ease-in-out; |
|||
} |
|||
.radio label::after { |
|||
display: inline-block; |
|||
position: absolute; |
|||
content: " "; |
|||
width: 11px; |
|||
height: 11px; |
|||
left: 3px; |
|||
top: 3px; |
|||
margin-left: -20px; |
|||
border-radius: 50%; |
|||
background-color: #555555; |
|||
-webkit-transform: scale(0, 0); |
|||
-ms-transform: scale(0, 0); |
|||
-o-transform: scale(0, 0); |
|||
transform: scale(0, 0); |
|||
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
} |
|||
.radio input[type="radio"] { |
|||
opacity: 0; |
|||
z-index: 1; |
|||
} |
|||
.radio input[type="radio"]:focus + label::before { |
|||
outline: thin dotted; |
|||
outline: 5px auto -webkit-focus-ring-color; |
|||
outline-offset: -2px; |
|||
} |
|||
.radio input[type="radio"]:checked + label::after { |
|||
-webkit-transform: scale(1, 1); |
|||
-ms-transform: scale(1, 1); |
|||
-o-transform: scale(1, 1); |
|||
transform: scale(1, 1); |
|||
} |
|||
.radio input[type="radio"]:disabled + label { |
|||
opacity: 0.65; |
|||
} |
|||
.radio input[type="radio"]:disabled + label::before { |
|||
cursor: not-allowed; |
|||
} |
|||
.radio.radio-inline { |
|||
margin-top: 0; |
|||
} |
|||
|
|||
.radio-primary input[type="radio"] + label::after { |
|||
background-color: #337ab7; |
|||
} |
|||
.radio-primary input[type="radio"]:checked + label::before { |
|||
border-color: #337ab7; |
|||
} |
|||
.radio-primary input[type="radio"]:checked + label::after { |
|||
background-color: #337ab7; |
|||
} |
|||
|
|||
.radio-danger input[type="radio"] + label::after { |
|||
background-color: #d9534f; |
|||
} |
|||
.radio-danger input[type="radio"]:checked + label::before { |
|||
border-color: #d9534f; |
|||
} |
|||
.radio-danger input[type="radio"]:checked + label::after { |
|||
background-color: #d9534f; |
|||
} |
|||
|
|||
.radio-info input[type="radio"] + label::after { |
|||
background-color: #5bc0de; |
|||
} |
|||
.radio-info input[type="radio"]:checked + label::before { |
|||
border-color: #5bc0de; |
|||
} |
|||
.radio-info input[type="radio"]:checked + label::after { |
|||
background-color: #5bc0de; |
|||
} |
|||
|
|||
.radio-warning input[type="radio"] + label::after { |
|||
background-color: #f0ad4e; |
|||
} |
|||
.radio-warning input[type="radio"]:checked + label::before { |
|||
border-color: #f0ad4e; |
|||
} |
|||
.radio-warning input[type="radio"]:checked + label::after { |
|||
background-color: #f0ad4e; |
|||
} |
|||
|
|||
.radio-success input[type="radio"] + label::after { |
|||
background-color: #5cb85c; |
|||
} |
|||
.radio-success input[type="radio"]:checked + label::before { |
|||
border-color: #5cb85c; |
|||
} |
|||
.radio-success input[type="radio"]:checked + label::after { |
|||
background-color: #5cb85c; |
|||
} |
|||
|
|||
input[type="checkbox"].styled:checked + label:after, |
|||
input[type="radio"].styled:checked + label:after { |
|||
font-family: 'FontAwesome'; |
|||
content: "\f00c"; |
|||
} |
|||
input[type="checkbox"] .styled:checked + label::before, |
|||
input[type="radio"] .styled:checked + label::before { |
|||
color: #fff; |
|||
} |
|||
input[type="checkbox"] .styled:checked + label::after, |
|||
input[type="radio"] .styled:checked + label::after { |
|||
color: #fff; |
|||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,85 @@ |
|||
/* |
|||
Animation example, for spinners |
|||
*/ |
|||
.animate-spin { |
|||
-moz-animation: spin 2s infinite linear; |
|||
-o-animation: spin 2s infinite linear; |
|||
-webkit-animation: spin 2s infinite linear; |
|||
animation: spin 2s infinite linear; |
|||
display: inline-block; |
|||
} |
|||
@-moz-keyframes spin { |
|||
0% { |
|||
-moz-transform: rotate(0deg); |
|||
-o-transform: rotate(0deg); |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
-moz-transform: rotate(359deg); |
|||
-o-transform: rotate(359deg); |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@-webkit-keyframes spin { |
|||
0% { |
|||
-moz-transform: rotate(0deg); |
|||
-o-transform: rotate(0deg); |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
-moz-transform: rotate(359deg); |
|||
-o-transform: rotate(359deg); |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@-o-keyframes spin { |
|||
0% { |
|||
-moz-transform: rotate(0deg); |
|||
-o-transform: rotate(0deg); |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
-moz-transform: rotate(359deg); |
|||
-o-transform: rotate(359deg); |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@-ms-keyframes spin { |
|||
0% { |
|||
-moz-transform: rotate(0deg); |
|||
-o-transform: rotate(0deg); |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
-moz-transform: rotate(359deg); |
|||
-o-transform: rotate(359deg); |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@keyframes spin { |
|||
0% { |
|||
-moz-transform: rotate(0deg); |
|||
-o-transform: rotate(0deg); |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
-moz-transform: rotate(359deg); |
|||
-o-transform: rotate(359deg); |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
@ -0,0 +1,853 @@ |
|||
|
|||
.bi_animal-fish:before { content: '\e800'; } /* '' */ |
|||
.bi_animal-fox:before { content: '\e801'; } /* '' */ |
|||
.bi_animal-frog:before { content: '\e802'; } /* '' */ |
|||
.bi_animal-goose:before { content: '\e803'; } /* '' */ |
|||
.bi_animal-husky:before { content: '\e804'; } /* '' */ |
|||
.bi_animal-lion:before { content: '\e805'; } /* '' */ |
|||
.bi_animal-monkey:before { content: '\e806'; } /* '' */ |
|||
.bi_animal-monkey-a:before { content: '\e807'; } /* '' */ |
|||
.bi_animal-mouse:before { content: '\e808'; } /* '' */ |
|||
.bi_animal-pig:before { content: '\e809'; } /* '' */ |
|||
.bi_animal-pig-a:before { content: '\e80a'; } /* '' */ |
|||
.bi_animal-sheep:before { content: '\e80b'; } /* '' */ |
|||
.bi_animal-shrimp:before { content: '\e80c'; } /* '' */ |
|||
.bi_animal-wolf:before { content: '\e80d'; } /* '' */ |
|||
.bi_animal-bull:before { content: '\e80e'; } /* '' */ |
|||
.bi_animal-cat:before { content: '\e80f'; } /* '' */ |
|||
.bi_animal-chicken:before { content: '\e810'; } /* '' */ |
|||
.bi_animal-cow:before { content: '\e811'; } /* '' */ |
|||
.bi_animal-cow-a:before { content: '\e812'; } /* '' */ |
|||
.bi_animal-dog:before { content: '\e813'; } /* '' */ |
|||
.bi_com-bubble-dot-b:before { content: '\e814'; } /* '' */ |
|||
.bi_com-bubble-line:before { content: '\e815'; } /* '' */ |
|||
.bi_com-bubble-line-a:before { content: '\e816'; } /* '' */ |
|||
.bi_com-bubble-line-b:before { content: '\e817'; } /* '' */ |
|||
.bi_com-chat:before { content: '\e818'; } /* '' */ |
|||
.bi_com-check-box:before { content: '\e819'; } /* '' */ |
|||
.bi_com-email:before { content: '\e81a'; } /* '' */ |
|||
.bi_com-email-cross:before { content: '\e81b'; } /* '' */ |
|||
.bi_com-email-minus:before { content: '\e81c'; } /* '' */ |
|||
.bi_com-email-o:before { content: '\e81d'; } /* '' */ |
|||
.bi_com-email-plus:before { content: '\e81e'; } /* '' */ |
|||
.bi_com-email-tick:before { content: '\e81f'; } /* '' */ |
|||
.bi_com-envelope:before { content: '\e820'; } /* '' */ |
|||
.bi_com-feather-pen:before { content: '\e821'; } /* '' */ |
|||
.bi_com-fountain-pen:before { content: '\e822'; } /* '' */ |
|||
.bi_com-group-bubble:before { content: '\e823'; } /* '' */ |
|||
.bi_com-group-bubble-a:before { content: '\e824'; } /* '' */ |
|||
.bi_com-group-bubble-b:before { content: '\e825'; } /* '' */ |
|||
.bi_com-group-bubble-c:before { content: '\e826'; } /* '' */ |
|||
.bi_com-group-bubble-d:before { content: '\e827'; } /* '' */ |
|||
.bi_com-help:before { content: '\e828'; } /* '' */ |
|||
.bi_com-help-a:before { content: '\e829'; } /* '' */ |
|||
.bi_com-megaphone:before { content: '\e82a'; } /* '' */ |
|||
.bi_com-megaphone-a:before { content: '\e82b'; } /* '' */ |
|||
.bi_com-mic:before { content: '\e82c'; } /* '' */ |
|||
.bi_com-mic-mute:before { content: '\e82d'; } /* '' */ |
|||
.bi_com-paperplane:before { content: '\e82e'; } /* '' */ |
|||
.bi_com-phone:before { content: '\e82f'; } /* '' */ |
|||
.bi_com-phone-a:before { content: '\e830'; } /* '' */ |
|||
.bi_com-pictures:before { content: '\e831'; } /* '' */ |
|||
.bi_com-voicemail:before { content: '\e832'; } /* '' */ |
|||
.bi_com-bell:before { content: '\e833'; } /* '' */ |
|||
.bi_com-bell-a:before { content: '\e834'; } /* '' */ |
|||
.bi_com-broadcast:before { content: '\e835'; } /* '' */ |
|||
.bi_com-broadcast-a:before { content: '\e836'; } /* '' */ |
|||
.bi_com-bubble:before { content: '\e837'; } /* '' */ |
|||
.bi_com-bubble-a:before { content: '\e838'; } /* '' */ |
|||
.bi_com-bubble-b:before { content: '\e839'; } /* '' */ |
|||
.bi_com-bubble-dot:before { content: '\e83a'; } /* '' */ |
|||
.bi_com-bubble-dot-a:before { content: '\e83b'; } /* '' */ |
|||
.bi_doc-analytic-blank:before { content: '\e83c'; } /* '' */ |
|||
.bi_doc-analytic-line:before { content: '\e83d'; } /* '' */ |
|||
.bi_doc-analytic-line-a:before { content: '\e83e'; } /* '' */ |
|||
.bi_doc-article:before { content: '\e83f'; } /* '' */ |
|||
.bi_doc-article-a:before { content: '\e840'; } /* '' */ |
|||
.bi_doc-article-b:before { content: '\e841'; } /* '' */ |
|||
.bi_doc-attachment:before { content: '\e842'; } /* '' */ |
|||
.bi_doc-attachment-a:before { content: '\e843'; } /* '' */ |
|||
.bi_doc-binder-blank:before { content: '\e844'; } /* '' */ |
|||
.bi_doc-binder-four:before { content: '\e845'; } /* '' */ |
|||
.bi_doc-binder-one:before { content: '\e846'; } /* '' */ |
|||
.bi_doc-binder-three:before { content: '\e847'; } /* '' */ |
|||
.bi_doc-binder-two:before { content: '\e848'; } /* '' */ |
|||
.bi_doc-binder-zero:before { content: '\e849'; } /* '' */ |
|||
.bi_doc-book:before { content: '\e84a'; } /* '' */ |
|||
.bi_doc-book-a:before { content: '\e84b'; } /* '' */ |
|||
.bi_doc-book-b:before { content: '\e84c'; } /* '' */ |
|||
.bi_doc-book-c:before { content: '\e84d'; } /* '' */ |
|||
.bi_doc-book-d:before { content: '\e84e'; } /* '' */ |
|||
.bi_doc-bookmark:before { content: '\e84f'; } /* '' */ |
|||
.bi_doc-book-mark:before { content: '\e850'; } /* '' */ |
|||
.bi_doc-box:before { content: '\e851'; } /* '' */ |
|||
.bi_doc-briefcase:before { content: '\e852'; } /* '' */ |
|||
.bi_doc-briefcase-a:before { content: '\e853'; } /* '' */ |
|||
.bi_doc-briefcase-b:before { content: '\e854'; } /* '' */ |
|||
.bi_doc-briefcase-c:before { content: '\e855'; } /* '' */ |
|||
.bi_doc-briefcase-d:before { content: '\e856'; } /* '' */ |
|||
.bi_doc-compose:before { content: '\e857'; } /* '' */ |
|||
.bi_doc-compose-a:before { content: '\e858'; } /* '' */ |
|||
.bi_doc-documents:before { content: '\e859'; } /* '' */ |
|||
.bi_doc-documents-minus:before { content: '\e85a'; } /* '' */ |
|||
.bi_doc-documents-plus:before { content: '\e85b'; } /* '' */ |
|||
.bi_doc-download:before { content: '\e85c'; } /* '' */ |
|||
.bi_doc-drawer:before { content: '\e85d'; } /* '' */ |
|||
.bi_doc-drawer-a:before { content: '\e85e'; } /* '' */ |
|||
.bi_doc-drawer-b:before { content: '\e85f'; } /* '' */ |
|||
.bi_doc-drawer-blank:before { content: '\e860'; } /* '' */ |
|||
.bi_doc-drawer-download:before { content: '\e861'; } /* '' */ |
|||
.bi_doc-drawer-line:before { content: '\e862'; } /* '' */ |
|||
.bi_doc-drawer-upload:before { content: '\e863'; } /* '' */ |
|||
.bi_doc-envelope:before { content: '\e864'; } /* '' */ |
|||
.bi_doc-file-blank:before { content: '\e865'; } /* '' */ |
|||
.bi_doc-file-blank-a:before { content: '\e866'; } /* '' */ |
|||
.bi_doc-file-cross:before { content: '\e867'; } /* '' */ |
|||
.bi_doc-file-cross-a:before { content: '\e868'; } /* '' */ |
|||
.bi_doc-file-line:before { content: '\e869'; } /* '' */ |
|||
.bi_doc-file-line-a:before { content: '\e86a'; } /* '' */ |
|||
.bi_doc-file-minus:before { content: '\e86b'; } /* '' */ |
|||
.bi_doc-file-minus-a:before { content: '\e86c'; } /* '' */ |
|||
.bi_doc-file-plus:before { content: '\e86d'; } /* '' */ |
|||
.bi_doc-file-plus-a:before { content: '\e86e'; } /* '' */ |
|||
.bi_doc-file-stack:before { content: '\e86f'; } /* '' */ |
|||
.bi_doc-file-tick:before { content: '\e870'; } /* '' */ |
|||
.bi_doc-file-tick-a:before { content: '\e871'; } /* '' */ |
|||
.bi_doc-folder:before { content: '\e872'; } /* '' */ |
|||
.bi_doc-folder-a:before { content: '\e873'; } /* '' */ |
|||
.bi_doc-folder-check-a:before { content: '\e874'; } /* '' */ |
|||
.bi_doc-folder-cross:before { content: '\e875'; } /* '' */ |
|||
.bi_doc-folder-cross-a:before { content: '\e876'; } /* '' */ |
|||
.bi_doc-folder-minus:before { content: '\e877'; } /* '' */ |
|||
.bi_doc-folder-minus-a:before { content: '\e878'; } /* '' */ |
|||
.bi_doc-folder-plus:before { content: '\e879'; } /* '' */ |
|||
.bi_doc-folder-plus-a:before { content: '\e87a'; } /* '' */ |
|||
.bi_doc-folder-s:before { content: '\e87b'; } /* '' */ |
|||
.bi_doc-folder-sync:before { content: '\e87c'; } /* '' */ |
|||
.bi_doc-folder-tick:before { content: '\e87d'; } /* '' */ |
|||
.bi_doc-list:before { content: '\e87e'; } /* '' */ |
|||
.bi_doc-news:before { content: '\e87f'; } /* '' */ |
|||
.bi_doc-newspaper:before { content: '\e880'; } /* '' */ |
|||
.bi_doc-newspaper-a:before { content: '\e881'; } /* '' */ |
|||
.bi_doc-newspaper-b:before { content: '\e882'; } /* '' */ |
|||
.bi_doc-notebook:before { content: '\e883'; } /* '' */ |
|||
.bi_doc-notebook-a:before { content: '\e884'; } /* '' */ |
|||
.bi_doc-note-pen:before { content: '\e885'; } /* '' */ |
|||
.bi_doc-paper-line:before { content: '\e886'; } /* '' */ |
|||
.bi_doc-papers:before { content: '\e887'; } /* '' */ |
|||
.bi_doc-paper-stack:before { content: '\e888'; } /* '' */ |
|||
.bi_doc-photo-stack:before { content: '\e889'; } /* '' */ |
|||
.bi_doc-pie:before { content: '\e88a'; } /* '' */ |
|||
.bi_doc-pie-a:before { content: '\e88b'; } /* '' */ |
|||
.bi_doc-pie-b:before { content: '\e88c'; } /* '' */ |
|||
.bi_doc-pin:before { content: '\e88d'; } /* '' */ |
|||
.bi_doc-pin-a:before { content: '\e88e'; } /* '' */ |
|||
.bi_doc-print:before { content: '\e88f'; } /* '' */ |
|||
.bi_doc-print-a:before { content: '\e890'; } /* '' */ |
|||
.bi_doc-profile:before { content: '\e891'; } /* '' */ |
|||
.bi_doc-profile-a:before { content: '\e892'; } /* '' */ |
|||
.bi_doc-upload:before { content: '\e893'; } /* '' */ |
|||
.bi_doc-wboard-line:before { content: '\e894'; } /* '' */ |
|||
.bi_doc-wboard-tick:before { content: '\e895'; } /* '' */ |
|||
.bi_media-glass:before { content: '\e896'; } /* '' */ |
|||
.bi_media-glass-a:before { content: '\e897'; } /* '' */ |
|||
.bi_media-image:before { content: '\e898'; } /* '' */ |
|||
.bi_media-image-a:before { content: '\e899'; } /* '' */ |
|||
.bi_media-image-b:before { content: '\e89a'; } /* '' */ |
|||
.bi_media-image-c:before { content: '\e89b'; } /* '' */ |
|||
.bi_media-image-d:before { content: '\e89c'; } /* '' */ |
|||
.bi_media-negative:before { content: '\e89d'; } /* '' */ |
|||
.bi_media-negative-a:before { content: '\e89e'; } /* '' */ |
|||
.bi_media-video:before { content: '\e89f'; } /* '' */ |
|||
.bi_media-video-a:before { content: '\e8a0'; } /* '' */ |
|||
.bi_media-video-clip:before { content: '\e8a1'; } /* '' */ |
|||
.bi_media-video-r:before { content: '\e8a2'; } /* '' */ |
|||
.bi_business-tie:before { content: '\e8a3'; } /* '' */ |
|||
.bi_business-tie-a:before { content: '\e8a4'; } /* '' */ |
|||
.bi_business-tie-b:before { content: '\e8a5'; } /* '' */ |
|||
.bi_doc-analytic-bar:before { content: '\e8a6'; } /* '' */ |
|||
.bi_ecommerce-basket:before { content: '\e8a7'; } /* '' */ |
|||
.bi_ecommerce-bill:before { content: '\e8a8'; } /* '' */ |
|||
.bi_ecommerce-bill-a:before { content: '\e8a9'; } /* '' */ |
|||
.bi_ecommerce-bill-b:before { content: '\e8aa'; } /* '' */ |
|||
.bi_ecommerce-bowtie:before { content: '\e8ab'; } /* '' */ |
|||
.bi_ecommerce-cash:before { content: '\e8ac'; } /* '' */ |
|||
.bi_ecommerce-cash-a:before { content: '\e8ad'; } /* '' */ |
|||
.bi_ecommerce-coins:before { content: '\e8ae'; } /* '' */ |
|||
.bi_ecommerce-coins-a:before { content: '\e8af'; } /* '' */ |
|||
.bi_ecommerce-creditcard:before { content: '\e8b0'; } /* '' */ |
|||
.bi_ecommerce-creditcard-b:before { content: '\e8b1'; } /* '' */ |
|||
.bi_ecommerce-creditcard-c:before { content: '\e8b2'; } /* '' */ |
|||
.bi_ecommerce-creditcard-d:before { content: '\e8b3'; } /* '' */ |
|||
.bi_ecommerce-diamon:before { content: '\e8b4'; } /* '' */ |
|||
.bi_ecommerce-digital-download:before { content: '\e8b5'; } /* '' */ |
|||
.bi_ecommerce-digital-upload:before { content: '\e8b6'; } /* '' */ |
|||
.bi_ecommerce-dollar:before { content: '\e8b7'; } /* '' */ |
|||
.bi_ecommerce-euro:before { content: '\e8b8'; } /* '' */ |
|||
.bi_ecommerce-gift:before { content: '\e8b9'; } /* '' */ |
|||
.bi_ecommerce-hanger:before { content: '\e8ba'; } /* '' */ |
|||
.bi_ecommerce-jeans:before { content: '\e8bb'; } /* '' */ |
|||
.bi_ecommerce-lipstick:before { content: '\e8bc'; } /* '' */ |
|||
.bi_ecommerce-market:before { content: '\e8bd'; } /* '' */ |
|||
.bi_ecommerce-mastercard:before { content: '\e8be'; } /* '' */ |
|||
.bi_ecommerce-pack:before { content: '\e8bf'; } /* '' */ |
|||
.bi_ecommerce-pack-a:before { content: '\e8c0'; } /* '' */ |
|||
.bi_ecommerce-pounds:before { content: '\e8c1'; } /* '' */ |
|||
.bi_ecommerce-ring:before { content: '\e8c2'; } /* '' */ |
|||
.bi_ecommerce-safebox:before { content: '\e8c3'; } /* '' */ |
|||
.bi_ecommerce-shirt:before { content: '\e8c4'; } /* '' */ |
|||
.bi_ecommerce-shirt-a:before { content: '\e8c5'; } /* '' */ |
|||
.bi_ecommerce-shoes:before { content: '\e8c6'; } /* '' */ |
|||
.bi_ecommerce-shop:before { content: '\e8c7'; } /* '' */ |
|||
.bi_ecommerce-shopcart:before { content: '\e8c8'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a:before { content: '\e8c9'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a-download:before { content: '\e8ca'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a-fill:before { content: '\e8cb'; } /* '' */ |
|||
.bi_ecommerce-shopcart-c:before { content: '\e8cc'; } /* '' */ |
|||
.bi_ecommerce-shopcart-d:before { content: '\e8cd'; } /* '' */ |
|||
.bi_ecommerce-shopcart-download:before { content: '\e8ce'; } /* '' */ |
|||
.bi_ecommerce-shopcart-fill:before { content: '\e8cf'; } /* '' */ |
|||
.bi_ecommerce-short:before { content: '\e8d0'; } /* '' */ |
|||
.bi_ecommerce-suitcase:before { content: '\e8d1'; } /* '' */ |
|||
.bi_ecommerce-suitcase-a:before { content: '\e8d2'; } /* '' */ |
|||
.bi_ecommerce-tag:before { content: '\e8d3'; } /* '' */ |
|||
.bi_ecommerce-tag-a:before { content: '\e8d4'; } /* '' */ |
|||
.bi_ecommerce-tag-a-s:before { content: '\e8d5'; } /* '' */ |
|||
.bi_ecommerce-tag-b:before { content: '\e8d6'; } /* '' */ |
|||
.bi_ecommerce-tag-b-s:before { content: '\e8d7'; } /* '' */ |
|||
.bi_ecommerce-tag-c:before { content: '\e8d8'; } /* '' */ |
|||
.bi_ecommerce-tag-cross:before { content: '\e8d9'; } /* '' */ |
|||
.bi_ecommerce-tag-c-s:before { content: '\e8da'; } /* '' */ |
|||
.bi_ecommerce-tag-minus:before { content: '\e8db'; } /* '' */ |
|||
.bi_ecommerce-tag-plus:before { content: '\e8dc'; } /* '' */ |
|||
.bi_ecommerce-tag-tick:before { content: '\e8dd'; } /* '' */ |
|||
.bi_ecommerce-tracking:before { content: '\e8de'; } /* '' */ |
|||
.bi_ecommerce-tshirt:before { content: '\e8df'; } /* '' */ |
|||
.bi_ecommerce-wallet:before { content: '\e8e0'; } /* '' */ |
|||
.bi_ecommerce-wallet-a:before { content: '\e8e1'; } /* '' */ |
|||
.bi_ecommerce-woman-bag:before { content: '\e8e2'; } /* '' */ |
|||
.bi_ecommerce-yen:before { content: '\e8e3'; } /* '' */ |
|||
.bi_ecommerce-backpack:before { content: '\e8e4'; } /* '' */ |
|||
.bi_ecommerce-backpack-a:before { content: '\e8e5'; } /* '' */ |
|||
.bi_ecommerce-bag:before { content: '\e8e6'; } /* '' */ |
|||
.bi_ecommerce-bag-a:before { content: '\e8e7'; } /* '' */ |
|||
.bi_ecommerce-bag-b:before { content: '\e8e8'; } /* '' */ |
|||
.bi_editorial-pencil-s:before { content: '\e8e9'; } /* '' */ |
|||
.bi_editorial-pen-s:before { content: '\e8ea'; } /* '' */ |
|||
.bi_editorial-redo:before { content: '\e8eb'; } /* '' */ |
|||
.bi_editorial-right-align:before { content: '\e8ec'; } /* '' */ |
|||
.bi_editorial-trash:before { content: '\e8ed'; } /* '' */ |
|||
.bi_editorial-trash-a:before { content: '\e8ee'; } /* '' */ |
|||
.bi_editorial-trash-a-l:before { content: '\e8ef'; } /* '' */ |
|||
.bi_editorial-trash-l:before { content: '\e8f0'; } /* '' */ |
|||
.bi_editorial-undo:before { content: '\e8f1'; } /* '' */ |
|||
.bi_editorial-write:before { content: '\e8f2'; } /* '' */ |
|||
.bi_editorial-write-s:before { content: '\e8f3'; } /* '' */ |
|||
.bi_editorial-ascending:before { content: '\e8f4'; } /* '' */ |
|||
.bi_editorial-bookmark:before { content: '\e8f5'; } /* '' */ |
|||
.bi_editorial-bookmark-a:before { content: '\e8f6'; } /* '' */ |
|||
.bi_editorial-brush:before { content: '\e8f7'; } /* '' */ |
|||
.bi_editorial-center-align:before { content: '\e8f8'; } /* '' */ |
|||
.bi_editorial-compose:before { content: '\e8f9'; } /* '' */ |
|||
.bi_editorial-descending:before { content: '\e8fa'; } /* '' */ |
|||
.bi_editorial-left-align:before { content: '\e8fb'; } /* '' */ |
|||
.bi_editorial-pen:before { content: '\e8fc'; } /* '' */ |
|||
.bi_editorial-pencil:before { content: '\e8fd'; } /* '' */ |
|||
.bi_editorial-pencil-a:before { content: '\e8fe'; } /* '' */ |
|||
.bi_editorial-pencil-a-s:before { content: '\e8ff'; } /* '' */ |
|||
.bi_building-drawer-a:before { content: '\e900'; } /* '' */ |
|||
.bi_building-house:before { content: '\e901'; } /* '' */ |
|||
.bi_building-house-a:before { content: '\e902'; } /* '' */ |
|||
.bi_building-museum:before { content: '\e903'; } /* '' */ |
|||
.bi_building-office:before { content: '\e904'; } /* '' */ |
|||
.bi_building-office-a:before { content: '\e905'; } /* '' */ |
|||
.bi_building-office-b:before { content: '\e906'; } /* '' */ |
|||
.bi_building-sofa:before { content: '\e907'; } /* '' */ |
|||
.bi_building-sofa-a:before { content: '\e908'; } /* '' */ |
|||
.bi_building-sofa-b:before { content: '\e909'; } /* '' */ |
|||
.bi_building-sofa-twin:before { content: '\e90a'; } /* '' */ |
|||
.bi_building-sofa-twin-a:before { content: '\e90b'; } /* '' */ |
|||
.bi_building-table-lamp:before { content: '\e90c'; } /* '' */ |
|||
.bi_building-table-lamp-a:before { content: '\e90d'; } /* '' */ |
|||
.bi_building-tower:before { content: '\e90e'; } /* '' */ |
|||
.bi_building-tree:before { content: '\e90f'; } /* '' */ |
|||
.bi_environment-flower:before { content: '\e910'; } /* '' */ |
|||
.bi_environment-flower-a:before { content: '\e911'; } /* '' */ |
|||
.bi_environment-flower-b:before { content: '\e912'; } /* '' */ |
|||
.bi_environment-leaf:before { content: '\e913'; } /* '' */ |
|||
.bi_environment-leaf-a:before { content: '\e914'; } /* '' */ |
|||
.bi_environment-mountain:before { content: '\e915'; } /* '' */ |
|||
.bi_environment-mountain-a:before { content: '\e916'; } /* '' */ |
|||
.bi_environment-no-smoke:before { content: '\e917'; } /* '' */ |
|||
.bi_environment-plant:before { content: '\e918'; } /* '' */ |
|||
.bi_environment-sign:before { content: '\e919'; } /* '' */ |
|||
.bi_environment-smoke:before { content: '\e91a'; } /* '' */ |
|||
.bi_environment-tree:before { content: '\e91b'; } /* '' */ |
|||
.bi_building-apartment:before { content: '\e91c'; } /* '' */ |
|||
.bi_building-bed:before { content: '\e91d'; } /* '' */ |
|||
.bi_building-bulb:before { content: '\e91e'; } /* '' */ |
|||
.bi_building-cabinet:before { content: '\e91f'; } /* '' */ |
|||
.bi_building-desk:before { content: '\e920'; } /* '' */ |
|||
.bi_building-desk-a:before { content: '\e921'; } /* '' */ |
|||
.bi_building-desk-b:before { content: '\e922'; } /* '' */ |
|||
.bi_building-desk-c:before { content: '\e923'; } /* '' */ |
|||
.bi_building-door:before { content: '\e924'; } /* '' */ |
|||
.bi_building-drawer:before { content: '\e925'; } /* '' */ |
|||
.bi_beverage-cocktail-a:before { content: '\e926'; } /* '' */ |
|||
.bi_beverage-coffee:before { content: '\e927'; } /* '' */ |
|||
.bi_beverage-coffee-a:before { content: '\e928'; } /* '' */ |
|||
.bi_beverage-coffee-b:before { content: '\e929'; } /* '' */ |
|||
.bi_beverage-coffee-cup:before { content: '\e92a'; } /* '' */ |
|||
.bi_beverage-coffee-cup-a:before { content: '\e92b'; } /* '' */ |
|||
.bi_beverage-cokctail:before { content: '\e92c'; } /* '' */ |
|||
.bi_beverage-cup-straw:before { content: '\e92d'; } /* '' */ |
|||
.bi_beverage-empty-glass:before { content: '\e92e'; } /* '' */ |
|||
.bi_beverage-milk:before { content: '\e92f'; } /* '' */ |
|||
.bi_beverage-milk-a:before { content: '\e930'; } /* '' */ |
|||
.bi_beverage-tea:before { content: '\e931'; } /* '' */ |
|||
.bi_beverage-tea-a:before { content: '\e932'; } /* '' */ |
|||
.bi_beverage-tea-cup:before { content: '\e933'; } /* '' */ |
|||
.bi_beverage-tea-cup-a:before { content: '\e934'; } /* '' */ |
|||
.bi_beverage-water:before { content: '\e935'; } /* '' */ |
|||
.bi_beverage-water-a:before { content: '\e936'; } /* '' */ |
|||
.bi_beverage-water-glass:before { content: '\e937'; } /* '' */ |
|||
.bi_beverage-wine:before { content: '\e938'; } /* '' */ |
|||
.bi_food-apple:before { content: '\e939'; } /* '' */ |
|||
.bi_food-bowl:before { content: '\e93a'; } /* '' */ |
|||
.bi_food-cherry:before { content: '\e93b'; } /* '' */ |
|||
.bi_food-cherry-a:before { content: '\e93c'; } /* '' */ |
|||
.bi_food-chinese-food:before { content: '\e93d'; } /* '' */ |
|||
.bi_food-chinese-food-a:before { content: '\e93e'; } /* '' */ |
|||
.bi_food-chinese-food-b:before { content: '\e93f'; } /* '' */ |
|||
.bi_food-drumstick:before { content: '\e940'; } /* '' */ |
|||
.bi_food-egg:before { content: '\e941'; } /* '' */ |
|||
.bi_food-grape:before { content: '\e942'; } /* '' */ |
|||
.bi_food-hamburger:before { content: '\e943'; } /* '' */ |
|||
.bi_food-hamburger-a:before { content: '\e944'; } /* '' */ |
|||
.bi_food-ice-cream:before { content: '\e945'; } /* '' */ |
|||
.bi_food-ice-cream-a:before { content: '\e946'; } /* '' */ |
|||
.bi_food-ice-cream-b:before { content: '\e947'; } /* '' */ |
|||
.bi_food-ice-cream-c:before { content: '\e948'; } /* '' */ |
|||
.bi_food-melon:before { content: '\e949'; } /* '' */ |
|||
.bi_food-noodle:before { content: '\e94a'; } /* '' */ |
|||
.bi_food-noodle-a:before { content: '\e94b'; } /* '' */ |
|||
.bi_food-onigiri:before { content: '\e94c'; } /* '' */ |
|||
.bi_food-onigiri-a:before { content: '\e94d'; } /* '' */ |
|||
.bi_food-white-bread:before { content: '\e94e'; } /* '' */ |
|||
.bi_kitchen-fork-knife:before { content: '\e94f'; } /* '' */ |
|||
.bi_kitchen-fork-knife-a:before { content: '\e950'; } /* '' */ |
|||
.bi_kitchen-fridge:before { content: '\e951'; } /* '' */ |
|||
.bi_kitchen-grill:before { content: '\e952'; } /* '' */ |
|||
.bi_kitchen-heat:before { content: '\e953'; } /* '' */ |
|||
.bi_kitchen-heat-a:before { content: '\e954'; } /* '' */ |
|||
.bi_kitchen-hood:before { content: '\e955'; } /* '' */ |
|||
.bi_kitchen-hood-a:before { content: '\e956'; } /* '' */ |
|||
.bi_kitchen-jam:before { content: '\e957'; } /* '' */ |
|||
.bi_kitchen-ketchup:before { content: '\e958'; } /* '' */ |
|||
.bi_kitchen-leaf:before { content: '\e959'; } /* '' */ |
|||
.bi_kitchen-microwave:before { content: '\e95a'; } /* '' */ |
|||
.bi_kitchen-pepper:before { content: '\e95b'; } /* '' */ |
|||
.bi_kitchen-plate:before { content: '\e95c'; } /* '' */ |
|||
.bi_kitchen-recipe-book:before { content: '\e95d'; } /* '' */ |
|||
.bi_kitchen-salt:before { content: '\e95e'; } /* '' */ |
|||
.bi_kitchen-spatula:before { content: '\e95f'; } /* '' */ |
|||
.bi_kitchen-spoon-fork:before { content: '\e960'; } /* '' */ |
|||
.bi_kitchen-spoon-fork-a:before { content: '\e961'; } /* '' */ |
|||
.bi_kitchen-tissue:before { content: '\e962'; } /* '' */ |
|||
.bi_kitchen-water:before { content: '\e963'; } /* '' */ |
|||
.bi_beverage-alt-glass:before { content: '\e964'; } /* '' */ |
|||
.bi_beverage-alt-glass-a:before { content: '\e965'; } /* '' */ |
|||
.bi_beverage-alt-glass-b:before { content: '\e966'; } /* '' */ |
|||
.bi_beverage-alt-glass-c:before { content: '\e967'; } /* '' */ |
|||
.bi_beverage-beer:before { content: '\e968'; } /* '' */ |
|||
.bi_beverage-chinese-tea:before { content: '\e969'; } /* '' */ |
|||
.bi_beverage-chinese-tea-a:before { content: '\e96a'; } /* '' */ |
|||
.bi_beverage-chinese-tea-a-s:before { content: '\e96b'; } /* '' */ |
|||
.bi_beverage-chinese-tea-s:before { content: '\e96c'; } /* '' */ |
|||
.bi_setting-switch:before { content: '\e96d'; } /* '' */ |
|||
.bi_setting-switch-a:before { content: '\e96e'; } /* '' */ |
|||
.bi_setting-wrench:before { content: '\e96f'; } /* '' */ |
|||
.bi_setting-wrench-a:before { content: '\e970'; } /* '' */ |
|||
.bi_setting-airplane:before { content: '\e971'; } /* '' */ |
|||
.bi_setting-component:before { content: '\e972'; } /* '' */ |
|||
.bi_setting-eq:before { content: '\e973'; } /* '' */ |
|||
.bi_setting-eq-a:before { content: '\e974'; } /* '' */ |
|||
.bi_setting-gear:before { content: '\e975'; } /* '' */ |
|||
.bi_setting-gear-a:before { content: '\e976'; } /* '' */ |
|||
.bi_setting-gear-b:before { content: '\e977'; } /* '' */ |
|||
.bi_setting-hotspot:before { content: '\e978'; } /* '' */ |
|||
.bi_setting-notification:before { content: '\e979'; } /* '' */ |
|||
.bi_sport-tape:before { content: '\e97a'; } /* '' */ |
|||
.bi_sport-tennisball:before { content: '\e97b'; } /* '' */ |
|||
.bi_sport-time:before { content: '\e97c'; } /* '' */ |
|||
.bi_sport-trophy:before { content: '\e97d'; } /* '' */ |
|||
.bi_sport-trophy-a:before { content: '\e97e'; } /* '' */ |
|||
.bi_sport-tv:before { content: '\e97f'; } /* '' */ |
|||
.bi_sport-tv-a:before { content: '\e980'; } /* '' */ |
|||
.bi_medicine-heart:before { content: '\e981'; } /* '' */ |
|||
.bi_medicine-lab:before { content: '\e982'; } /* '' */ |
|||
.bi_medicine-lab-a:before { content: '\e983'; } /* '' */ |
|||
.bi_sport-alt-badge:before { content: '\e984'; } /* '' */ |
|||
.bi_sport-alt-badge-a:before { content: '\e985'; } /* '' */ |
|||
.bi_sport-badge:before { content: '\e986'; } /* '' */ |
|||
.bi_sport-badge-a:before { content: '\e987'; } /* '' */ |
|||
.bi_sport-badge-b:before { content: '\e988'; } /* '' */ |
|||
.bi_sport-badge-c:before { content: '\e989'; } /* '' */ |
|||
.bi_sport-badge-one:before { content: '\e98a'; } /* '' */ |
|||
.bi_sport-badge-one-a:before { content: '\e98b'; } /* '' */ |
|||
.bi_sport-baseball:before { content: '\e98c'; } /* '' */ |
|||
.bi_sport-basketball:before { content: '\e98d'; } /* '' */ |
|||
.bi_sport-basketball-a:before { content: '\e98e'; } /* '' */ |
|||
.bi_sport-bottle:before { content: '\e98f'; } /* '' */ |
|||
.bi_sport-cards:before { content: '\e990'; } /* '' */ |
|||
.bi_sport-dumbell:before { content: '\e991'; } /* '' */ |
|||
.bi_sport-dumbell-a:before { content: '\e992'; } /* '' */ |
|||
.bi_sport-flag:before { content: '\e993'; } /* '' */ |
|||
.bi_sport-flag-a:before { content: '\e994'; } /* '' */ |
|||
.bi_sport-football:before { content: '\e995'; } /* '' */ |
|||
.bi_sport-medic:before { content: '\e996'; } /* '' */ |
|||
.bi_sport-mic:before { content: '\e997'; } /* '' */ |
|||
.bi_sport-puzzle:before { content: '\e998'; } /* '' */ |
|||
.bi_sport-stadium:before { content: '\e999'; } /* '' */ |
|||
.bi_sport-stadium-a:before { content: '\e99a'; } /* '' */ |
|||
.bi_time-alarm:before { content: '\e99b'; } /* '' */ |
|||
.bi_time-alt-wall-clock:before { content: '\e99c'; } /* '' */ |
|||
.bi_time-calendar:before { content: '\e99d'; } /* '' */ |
|||
.bi_time-calendar-a:before { content: '\e99e'; } /* '' */ |
|||
.bi_time-calendar-b:before { content: '\e99f'; } /* '' */ |
|||
.bi_time-clock:before { content: '\e9a0'; } /* '' */ |
|||
.bi_time-clock-a:before { content: '\e9a1'; } /* '' */ |
|||
.bi_time-clock-b:before { content: '\e9a2'; } /* '' */ |
|||
.bi_time-clock-c:before { content: '\e9a3'; } /* '' */ |
|||
.bi_time-hour-glass:before { content: '\e9a4'; } /* '' */ |
|||
.bi_time-speed-meter:before { content: '\e9a5'; } /* '' */ |
|||
.bi_time-stopwatch:before { content: '\e9a6'; } /* '' */ |
|||
.bi_time-stopwatch-a:before { content: '\e9a7'; } /* '' */ |
|||
.bi_time-stopwatch-b:before { content: '\e9a8'; } /* '' */ |
|||
.bi_time-timer:before { content: '\e9a9'; } /* '' */ |
|||
.bi_time-wall-clock:before { content: '\e9aa'; } /* '' */ |
|||
.bi_time-watches:before { content: '\e9ab'; } /* '' */ |
|||
.bi_time-watches-a:before { content: '\e9ac'; } /* '' */ |
|||
.bi_time-watches-b:before { content: '\e9ad'; } /* '' */ |
|||
.bi_location-alt-pin:before { content: '\e9ae'; } /* '' */ |
|||
.bi_location-avenue:before { content: '\e9af'; } /* '' */ |
|||
.bi_location-compass:before { content: '\e9b0'; } /* '' */ |
|||
.bi_location-map:before { content: '\e9b1'; } /* '' */ |
|||
.bi_location-pin:before { content: '\e9b2'; } /* '' */ |
|||
.bi_location-pin-blank:before { content: '\e9b3'; } /* '' */ |
|||
.bi_location-pin-check:before { content: '\e9b4'; } /* '' */ |
|||
.bi_location-pin-map:before { content: '\e9b5'; } /* '' */ |
|||
.bi_location-pin-map-a:before { content: '\e9b6'; } /* '' */ |
|||
.bi_location-pin-minus:before { content: '\e9b7'; } /* '' */ |
|||
.bi_location-pin-plus:before { content: '\e9b8'; } /* '' */ |
|||
.bi_location-pin-regular:before { content: '\e9b9'; } /* '' */ |
|||
.bi_location-sign-street:before { content: '\e9ba'; } /* '' */ |
|||
.bi_tool-console:before { content: '\e9bb'; } /* '' */ |
|||
.bi_tool-console-a:before { content: '\e9bc'; } /* '' */ |
|||
.bi_tool-console-old:before { content: '\e9bd'; } /* '' */ |
|||
.bi_tool-disk:before { content: '\e9be'; } /* '' */ |
|||
.bi_tool-disk-a:before { content: '\e9bf'; } /* '' */ |
|||
.bi_tool-flashlight:before { content: '\e9c0'; } /* '' */ |
|||
.bi_tool-flashlight-a:before { content: '\e9c1'; } /* '' */ |
|||
.bi_tool-flashlight-a-s:before { content: '\e9c2'; } /* '' */ |
|||
.bi_tool-flashlight-s:before { content: '\e9c3'; } /* '' */ |
|||
.bi_tool-gameboy:before { content: '\e9c4'; } /* '' */ |
|||
.bi_tool-hammer:before { content: '\e9c5'; } /* '' */ |
|||
.bi_tool-headphone:before { content: '\e9c6'; } /* '' */ |
|||
.bi_tool-headphone-a:before { content: '\e9c7'; } /* '' */ |
|||
.bi_tool-laptop:before { content: '\e9c8'; } /* '' */ |
|||
.bi_tool-magic-wand:before { content: '\e9c9'; } /* '' */ |
|||
.bi_tool-magic-wand-a:before { content: '\e9ca'; } /* '' */ |
|||
.bi_tool-magnet:before { content: '\e9cb'; } /* '' */ |
|||
.bi_tool-magnifier:before { content: '\e9cc'; } /* '' */ |
|||
.bi_tool-medical-tape:before { content: '\e9cd'; } /* '' */ |
|||
.bi_tool-mobile:before { content: '\e9ce'; } /* '' */ |
|||
.bi_tool-mobile-l:before { content: '\e9cf'; } /* '' */ |
|||
.bi_tool-monitor:before { content: '\e9d0'; } /* '' */ |
|||
.bi_tool-monitor-a:before { content: '\e9d1'; } /* '' */ |
|||
.bi_tool-mouse:before { content: '\e9d2'; } /* '' */ |
|||
.bi_tool-net:before { content: '\e9d3'; } /* '' */ |
|||
.bi_tool-paint-roler:before { content: '\e9d4'; } /* '' */ |
|||
.bi_tool-projector:before { content: '\e9d5'; } /* '' */ |
|||
.bi_tool-radio:before { content: '\e9d6'; } /* '' */ |
|||
.bi_tool-ruler:before { content: '\e9d7'; } /* '' */ |
|||
.bi_tool-scissor:before { content: '\e9d8'; } /* '' */ |
|||
.bi_tool-tablet:before { content: '\e9d9'; } /* '' */ |
|||
.bi_tool-tablet-l:before { content: '\e9da'; } /* '' */ |
|||
.bi_tool-television:before { content: '\e9db'; } /* '' */ |
|||
.bi_tool-toothbrush:before { content: '\e9dc'; } /* '' */ |
|||
.bi_tool-umbrella:before { content: '\e9dd'; } /* '' */ |
|||
.bi_tool-video:before { content: '\e9de'; } /* '' */ |
|||
.bi_tool-alt-camera:before { content: '\e9df'; } /* '' */ |
|||
.bi_tool-alt-camera-a:before { content: '\e9e0'; } /* '' */ |
|||
.bi_tool-android:before { content: '\e9e1'; } /* '' */ |
|||
.bi_tool-android-l:before { content: '\e9e2'; } /* '' */ |
|||
.bi_tool-binoculars:before { content: '\e9e3'; } /* '' */ |
|||
.bi_tool-brush:before { content: '\e9e4'; } /* '' */ |
|||
.bi_tool-brush-a:before { content: '\e9e5'; } /* '' */ |
|||
.bi_tool-calculator:before { content: '\e9e6'; } /* '' */ |
|||
.bi_tool-camera:before { content: '\e9e7'; } /* '' */ |
|||
.bi_tool-camera-a:before { content: '\e9e8'; } /* '' */ |
|||
.bi_tool-camera-b:before { content: '\e9e9'; } /* '' */ |
|||
.bi_tool-compass:before { content: '\e9ea'; } /* '' */ |
|||
.bi_transport-car-b:before { content: '\e9eb'; } /* '' */ |
|||
.bi_transport-car-c:before { content: '\e9ec'; } /* '' */ |
|||
.bi_transport-ship:before { content: '\e9ed'; } /* '' */ |
|||
.bi_transport-train:before { content: '\e9ee'; } /* '' */ |
|||
.bi_transport-truck:before { content: '\e9ef'; } /* '' */ |
|||
.bi_transport-truck-a:before { content: '\e9f0'; } /* '' */ |
|||
.bi_transport-alt-bus:before { content: '\e9f1'; } /* '' */ |
|||
.bi_transport-bicycle:before { content: '\e9f2'; } /* '' */ |
|||
.bi_transport-bicycle-a:before { content: '\e9f3'; } /* '' */ |
|||
.bi_transport-boat:before { content: '\e9f4'; } /* '' */ |
|||
.bi_transport-bus:before { content: '\e9f5'; } /* '' */ |
|||
.bi_transport-bus-a:before { content: '\e9f6'; } /* '' */ |
|||
.bi_transport-car:before { content: '\e9f7'; } /* '' */ |
|||
.bi_transport-car-a:before { content: '\e9f8'; } /* '' */ |
|||
.bi_user-male:before { content: '\e9f9'; } /* '' */ |
|||
.bi_user-male-check:before { content: '\e9fa'; } /* '' */ |
|||
.bi_user-male-cross:before { content: '\e9fb'; } /* '' */ |
|||
.bi_user-male-minus:before { content: '\e9fc'; } /* '' */ |
|||
.bi_user-male-plus:before { content: '\e9fd'; } /* '' */ |
|||
.bi_user-male-sign:before { content: '\e9fe'; } /* '' */ |
|||
.bi_user-password:before { content: '\e9ff'; } /* '' */ |
|||
.bi_user-password-u:before { content: '\ea00'; } /* '' */ |
|||
.bi_user-password-u-a:before { content: '\ea01'; } /* '' */ |
|||
.bi_user-single:before { content: '\ea02'; } /* '' */ |
|||
.bi_user-single-a:before { content: '\ea03'; } /* '' */ |
|||
.bi_user-single-a-check:before { content: '\ea04'; } /* '' */ |
|||
.bi_user-single-a-cross:before { content: '\ea05'; } /* '' */ |
|||
.bi_user-single-a-group:before { content: '\ea06'; } /* '' */ |
|||
.bi_user-single-a-list:before { content: '\ea07'; } /* '' */ |
|||
.bi_user-single-a-minus:before { content: '\ea08'; } /* '' */ |
|||
.bi_user-single-a-plus:before { content: '\ea09'; } /* '' */ |
|||
.bi_user-single-check:before { content: '\ea0a'; } /* '' */ |
|||
.bi_user-single-cross:before { content: '\ea0b'; } /* '' */ |
|||
.bi_user-single-minus:before { content: '\ea0c'; } /* '' */ |
|||
.bi_user-single-plus:before { content: '\ea0d'; } /* '' */ |
|||
.bi_user-single-round:before { content: '\ea0e'; } /* '' */ |
|||
.bi_user-alt:before { content: '\ea0f'; } /* '' */ |
|||
.bi_user-alt-check:before { content: '\ea10'; } /* '' */ |
|||
.bi_user-alt-cross:before { content: '\ea11'; } /* '' */ |
|||
.bi_user-alt-group:before { content: '\ea12'; } /* '' */ |
|||
.bi_user-alt-list:before { content: '\ea13'; } /* '' */ |
|||
.bi_user-alt-minus:before { content: '\ea14'; } /* '' */ |
|||
.bi_user-alt-plus:before { content: '\ea15'; } /* '' */ |
|||
.bi_user-contact-book:before { content: '\ea16'; } /* '' */ |
|||
.bi_user-female:before { content: '\ea17'; } /* '' */ |
|||
.bi_user-female-cross:before { content: '\ea18'; } /* '' */ |
|||
.bi_user-female-group:before { content: '\ea19'; } /* '' */ |
|||
.bi_user-female-list:before { content: '\ea1a'; } /* '' */ |
|||
.bi_user-female-minus:before { content: '\ea1b'; } /* '' */ |
|||
.bi_user-female-plus:before { content: '\ea1c'; } /* '' */ |
|||
.bi_user-female-sign:before { content: '\ea1d'; } /* '' */ |
|||
.bi_user-female-tick:before { content: '\ea1e'; } /* '' */ |
|||
.bi_user-key:before { content: '\ea1f'; } /* '' */ |
|||
.bi_user-lock:before { content: '\ea20'; } /* '' */ |
|||
.bi_user-lock-u:before { content: '\ea21'; } /* '' */ |
|||
.bi_user-lock-u-a:before { content: '\ea22'; } /* '' */ |
|||
.bi_weather-sunset-a:before { content: '\ea23'; } /* '' */ |
|||
.bi_weather-wind:before { content: '\ea24'; } /* '' */ |
|||
.bi_weather-wind-pressure:before { content: '\ea25'; } /* '' */ |
|||
.bi_weather-wind-pressure-a:before { content: '\ea26'; } /* '' */ |
|||
.bi_weather-cloud:before { content: '\ea27'; } /* '' */ |
|||
.bi_weather-cloud-a:before { content: '\ea28'; } /* '' */ |
|||
.bi_weather-cloud-rainy:before { content: '\ea29'; } /* '' */ |
|||
.bi_weather-cloud-rainy-a:before { content: '\ea2a'; } /* '' */ |
|||
.bi_weather-cloud-snow:before { content: '\ea2b'; } /* '' */ |
|||
.bi_weather-cloud-snow-a:before { content: '\ea2c'; } /* '' */ |
|||
.bi_weather-cloud-stormy:before { content: '\ea2d'; } /* '' */ |
|||
.bi_weather-cloud-stormy-a:before { content: '\ea2e'; } /* '' */ |
|||
.bi_weather-cloud-sun:before { content: '\ea2f'; } /* '' */ |
|||
.bi_weather-humid:before { content: '\ea30'; } /* '' */ |
|||
.bi_weather-moon:before { content: '\ea31'; } /* '' */ |
|||
.bi_weather-moon-a:before { content: '\ea32'; } /* '' */ |
|||
.bi_weather-moon-b:before { content: '\ea33'; } /* '' */ |
|||
.bi_weather-moon-r:before { content: '\ea34'; } /* '' */ |
|||
.bi_weather-sun-a:before { content: '\ea35'; } /* '' */ |
|||
.bi_weather-sun-b:before { content: '\ea36'; } /* '' */ |
|||
.bi_weather-sun-r:before { content: '\ea37'; } /* '' */ |
|||
.bi_weather-sunrise:before { content: '\ea38'; } /* '' */ |
|||
.bi_web-bug:before { content: '\ea39'; } /* '' */ |
|||
.bi_web-code:before { content: '\ea3a'; } /* '' */ |
|||
.bi_web-database:before { content: '\ea3b'; } /* '' */ |
|||
.bi_web-download:before { content: '\ea3c'; } /* '' */ |
|||
.bi_web-graph:before { content: '\ea3d'; } /* '' */ |
|||
.bi_web-inspect:before { content: '\ea3e'; } /* '' */ |
|||
.bi_web-internet:before { content: '\ea3f'; } /* '' */ |
|||
.bi_web-internet-a:before { content: '\ea40'; } /* '' */ |
|||
.bi_web-logout:before { content: '\ea41'; } /* '' */ |
|||
.bi_web-menu-collapse-down:before { content: '\ea42'; } /* '' */ |
|||
.bi_web-menu-collapse-left:before { content: '\ea43'; } /* '' */ |
|||
.bi_web-menu-collapse-right:before { content: '\ea44'; } /* '' */ |
|||
.bi_web-menu-collapse-up:before { content: '\ea45'; } /* '' */ |
|||
.bi_web-reading-list:before { content: '\ea46'; } /* '' */ |
|||
.bi_web-report:before { content: '\ea47'; } /* '' */ |
|||
.bi_web-report-a:before { content: '\ea48'; } /* '' */ |
|||
.bi_web-rss:before { content: '\ea49'; } /* '' */ |
|||
.bi_web-share:before { content: '\ea4a'; } /* '' */ |
|||
.bi_web-share-a:before { content: '\ea4b'; } /* '' */ |
|||
.bi_web-share-b:before { content: '\ea4c'; } /* '' */ |
|||
.bi_web-statistic:before { content: '\ea4d'; } /* '' */ |
|||
.bi_web-traffic:before { content: '\ea4e'; } /* '' */ |
|||
.bi_web-traffic-a:before { content: '\ea4f'; } /* '' */ |
|||
.bi_web-traffic-b:before { content: '\ea50'; } /* '' */ |
|||
.bi_web-traffic-c:before { content: '\ea51'; } /* '' */ |
|||
.bi_web-upload:before { content: '\ea52'; } /* '' */ |
|||
.bi_web-url:before { content: '\ea53'; } /* '' */ |
|||
.bi_web-url-a:before { content: '\ea54'; } /* '' */ |
|||
.bi_web-url-b:before { content: '\ea55'; } /* '' */ |
|||
.bi_web-warning:before { content: '\ea56'; } /* '' */ |
|||
.bi_web-webcam:before { content: '\ea57'; } /* '' */ |
|||
.bi_web-broken-link:before { content: '\ea58'; } /* '' */ |
|||
.bi_web-browser:before { content: '\ea59'; } /* '' */ |
|||
.bi_web-browser-a:before { content: '\ea5a'; } /* '' */ |
|||
.bi_web-browser-b:before { content: '\ea5b'; } /* '' */ |
|||
.bi_web-browser-cross:before { content: '\ea5c'; } /* '' */ |
|||
.bi_web-browser-minus:before { content: '\ea5d'; } /* '' */ |
|||
.bi_web-browser-plus:before { content: '\ea5e'; } /* '' */ |
|||
.bi_web-browser-tab:before { content: '\ea5f'; } /* '' */ |
|||
.bi_web-browser-tab-cross:before { content: '\ea60'; } /* '' */ |
|||
.bi_web-browser-tab-minus:before { content: '\ea61'; } /* '' */ |
|||
.bi_web-browser-tab-plus:before { content: '\ea62'; } /* '' */ |
|||
.bi_web-browser-tab-tick:before { content: '\ea63'; } /* '' */ |
|||
.bi_web-browser-tick:before { content: '\ea64'; } /* '' */ |
|||
.bi_web-browser-window:before { content: '\ea65'; } /* '' */ |
|||
.bi_logo-vimeo:before { content: '\ea66'; } /* '' */ |
|||
.bi_logo-windows:before { content: '\ea67'; } /* '' */ |
|||
.bi_logo-zerply:before { content: '\ea68'; } /* '' */ |
|||
.bi_logo-amazon:before { content: '\ea69'; } /* '' */ |
|||
.bi_logo-dribbble:before { content: '\ea6a'; } /* '' */ |
|||
.bi_logo-dropbox:before { content: '\ea6b'; } /* '' */ |
|||
.bi_logo-evernote:before { content: '\ea6c'; } /* '' */ |
|||
.bi_logo-facebook:before { content: '\ea6d'; } /* '' */ |
|||
.bi_logo-grooveshark:before { content: '\ea6e'; } /* '' */ |
|||
.bi_logo-instagram:before { content: '\ea6f'; } /* '' */ |
|||
.bi_logo-linkedin:before { content: '\ea70'; } /* '' */ |
|||
.bi_logo-musio:before { content: '\ea71'; } /* '' */ |
|||
.bi_logo-path:before { content: '\ea72'; } /* '' */ |
|||
.bi_logo-paypal:before { content: '\ea73'; } /* '' */ |
|||
.bi_logo-picasa:before { content: '\ea74'; } /* '' */ |
|||
.bi_logo-pinterest:before { content: '\ea75'; } /* '' */ |
|||
.bi_logo-rdio:before { content: '\ea76'; } /* '' */ |
|||
.bi_logo-squarespace:before { content: '\ea77'; } /* '' */ |
|||
.bi_logo-squareup:before { content: '\ea78'; } /* '' */ |
|||
.bi_logo-twitter:before { content: '\ea79'; } /* '' */ |
|||
.bi_misc-one-click:before { content: '\ea7a'; } /* '' */ |
|||
.bi_misc-pointer:before { content: '\ea7b'; } /* '' */ |
|||
.bi_misc-pointer-swipe-l:before { content: '\ea7c'; } /* '' */ |
|||
.bi_misc-pointer-swipe-r:before { content: '\ea7d'; } /* '' */ |
|||
.bi_misc-puzzle:before { content: '\ea7e'; } /* '' */ |
|||
.bi_misc-wifi:before { content: '\ea7f'; } /* '' */ |
|||
.bi_misc-crown:before { content: '\ea80'; } /* '' */ |
|||
.bi_misc-cube:before { content: '\ea81'; } /* '' */ |
|||
.bi_misc-dice-five:before { content: '\ea82'; } /* '' */ |
|||
.bi_misc-dice-four:before { content: '\ea83'; } /* '' */ |
|||
.bi_misc-dice-one:before { content: '\ea84'; } /* '' */ |
|||
.bi_misc-dice-six:before { content: '\ea85'; } /* '' */ |
|||
.bi_misc-dice-three:before { content: '\ea86'; } /* '' */ |
|||
.bi_misc-dice-two:before { content: '\ea87'; } /* '' */ |
|||
.bi_misc-double-click:before { content: '\ea88'; } /* '' */ |
|||
.bi_misc-female-gender:before { content: '\ea89'; } /* '' */ |
|||
.bi_misc-globe:before { content: '\ea8a'; } /* '' */ |
|||
.bi_misc-male-gender:before { content: '\ea8b'; } /* '' */ |
|||
.bi_misc-mood-happy:before { content: '\ea8c'; } /* '' */ |
|||
.bi_misc-mood-sad:before { content: '\ea8d'; } /* '' */ |
|||
.bi_music-mic:before { content: '\ea8e'; } /* '' */ |
|||
.bi_music-mic-a:before { content: '\ea8f'; } /* '' */ |
|||
.bi_music-next:before { content: '\ea90'; } /* '' */ |
|||
.bi_music-next-l:before { content: '\ea91'; } /* '' */ |
|||
.bi_music-next-l-a:before { content: '\ea92'; } /* '' */ |
|||
.bi_music-pause:before { content: '\ea93'; } /* '' */ |
|||
.bi_music-pause-a:before { content: '\ea94'; } /* '' */ |
|||
.bi_music-pause-b:before { content: '\ea95'; } /* '' */ |
|||
.bi_music-play:before { content: '\ea96'; } /* '' */ |
|||
.bi_music-playlist:before { content: '\ea97'; } /* '' */ |
|||
.bi_music-previous:before { content: '\ea98'; } /* '' */ |
|||
.bi_music-previous-l:before { content: '\ea99'; } /* '' */ |
|||
.bi_music-previous-l-a:before { content: '\ea9a'; } /* '' */ |
|||
.bi_music-radio:before { content: '\ea9b'; } /* '' */ |
|||
.bi_music-record:before { content: '\ea9c'; } /* '' */ |
|||
.bi_music-record-a:before { content: '\ea9d'; } /* '' */ |
|||
.bi_music-repeat:before { content: '\ea9e'; } /* '' */ |
|||
.bi_music-repeat-a:before { content: '\ea9f'; } /* '' */ |
|||
.bi_music-repeat-one:before { content: '\eaa0'; } /* '' */ |
|||
.bi_music-repeat-one-a:before { content: '\eaa1'; } /* '' */ |
|||
.bi_music-shuffle:before { content: '\eaa2'; } /* '' */ |
|||
.bi_music-shuffle-a:before { content: '\eaa3'; } /* '' */ |
|||
.bi_music-song-note:before { content: '\eaa4'; } /* '' */ |
|||
.bi_music-song-note-a:before { content: '\eaa5'; } /* '' */ |
|||
.bi_music-speaker:before { content: '\eaa6'; } /* '' */ |
|||
.bi_music-speaker-a:before { content: '\eaa7'; } /* '' */ |
|||
.bi_music-stop:before { content: '\eaa8'; } /* '' */ |
|||
.bi_music-stop-a:before { content: '\eaa9'; } /* '' */ |
|||
.bi_volume-high:before { content: '\eaaa'; } /* '' */ |
|||
.bi_volume-high-a:before { content: '\eaab'; } /* '' */ |
|||
.bi_volume-low:before { content: '\eaac'; } /* '' */ |
|||
.bi_volume-low-a:before { content: '\eaad'; } /* '' */ |
|||
.bi_volume-medium:before { content: '\eaae'; } /* '' */ |
|||
.bi_volume-medium-a:before { content: '\eaaf'; } /* '' */ |
|||
.bi_volume-mute:before { content: '\eab0'; } /* '' */ |
|||
.bi_volume-mute-a:before { content: '\eab1'; } /* '' */ |
|||
.bi_music-album:before { content: '\eab2'; } /* '' */ |
|||
.bi_music-album-a:before { content: '\eab3'; } /* '' */ |
|||
.bi_music-album-b:before { content: '\eab4'; } /* '' */ |
|||
.bi_music-album-c:before { content: '\eab5'; } /* '' */ |
|||
.bi_music-album-cd:before { content: '\eab6'; } /* '' */ |
|||
.bi_music-cd:before { content: '\eab7'; } /* '' */ |
|||
.bi_music-eject:before { content: '\eab8'; } /* '' */ |
|||
.bi_music-eq:before { content: '\eab9'; } /* '' */ |
|||
.bi_music-eq-a:before { content: '\eaba'; } /* '' */ |
|||
.bi_music-group-note:before { content: '\eabb'; } /* '' */ |
|||
.bi_music-group-note-a:before { content: '\eabc'; } /* '' */ |
|||
.bi_music-headphone:before { content: '\eabd'; } /* '' */ |
|||
.bi_music-headphone-a:before { content: '\eabe'; } /* '' */ |
|||
.bi_music-list:before { content: '\eabf'; } /* '' */ |
|||
.bi_interface-backspace:before { content: '\eac0'; } /* '' */ |
|||
.bi_interface-backspace-a:before { content: '\eac1'; } /* '' */ |
|||
.bi_interface-bell:before { content: '\eac2'; } /* '' */ |
|||
.bi_interface-bell-a:before { content: '\eac3'; } /* '' */ |
|||
.bi_interface-block:before { content: '\eac4'; } /* '' */ |
|||
.bi_interface-bottom:before { content: '\eac5'; } /* '' */ |
|||
.bi_interface-bottom-k:before { content: '\eac6'; } /* '' */ |
|||
.bi_interface-bottom-r:before { content: '\eac7'; } /* '' */ |
|||
.bi_interface-box-bottom:before { content: '\eac8'; } /* '' */ |
|||
.bi_interface-box-bottom-a:before { content: '\eac9'; } /* '' */ |
|||
.bi_interface-box-cross:before { content: '\eaca'; } /* '' */ |
|||
.bi_interface-box-left:before { content: '\eacb'; } /* '' */ |
|||
.bi_interface-box-left-a:before { content: '\eacc'; } /* '' */ |
|||
.bi_interface-box-minus:before { content: '\eacd'; } /* '' */ |
|||
.bi_interface-box-plus:before { content: '\eace'; } /* '' */ |
|||
.bi_interface-box-right:before { content: '\eacf'; } /* '' */ |
|||
.bi_interface-box-right-a:before { content: '\ead0'; } /* '' */ |
|||
.bi_interface-box-tick:before { content: '\ead1'; } /* '' */ |
|||
.bi_interface-box-top:before { content: '\ead2'; } /* '' */ |
|||
.bi_interface-box-top-a:before { content: '\ead3'; } /* '' */ |
|||
.bi_interface-bulleye:before { content: '\ead4'; } /* '' */ |
|||
.bi_interface-calendar:before { content: '\ead5'; } /* '' */ |
|||
.bi_interface-circle:before { content: '\ead6'; } /* '' */ |
|||
.bi_interface-circle-cross:before { content: '\ead7'; } /* '' */ |
|||
.bi_interface-circle-minus:before { content: '\ead8'; } /* '' */ |
|||
.bi_interface-circle-plus:before { content: '\ead9'; } /* '' */ |
|||
.bi_interface-circle-tick:before { content: '\eada'; } /* '' */ |
|||
.bi_interface-circle-tick-a:before { content: '\eadb'; } /* '' */ |
|||
.bi_interface-clock:before { content: '\eadc'; } /* '' */ |
|||
.bi_interface-clock-a:before { content: '\eadd'; } /* '' */ |
|||
.bi_interface-clock-b:before { content: '\eade'; } /* '' */ |
|||
.bi_interface-cloud-download:before { content: '\eadf'; } /* '' */ |
|||
.bi_interface-cloud-upload:before { content: '\eae0'; } /* '' */ |
|||
.bi_interface-cmd:before { content: '\eae1'; } /* '' */ |
|||
.bi_interface-crop:before { content: '\eae2'; } /* '' */ |
|||
.bi_interface-cross:before { content: '\eae3'; } /* '' */ |
|||
.bi_interface-dashboard:before { content: '\eae4'; } /* '' */ |
|||
.bi_interface-direction:before { content: '\eae7'; } /* '' */ |
|||
.bi_interface-downloading:before { content: '\eae8'; } /* '' */ |
|||
.bi_interface-enlarge:before { content: '\eae9'; } /* '' */ |
|||
.bi_interface-enlarge-a:before { content: '\eaea'; } /* '' */ |
|||
.bi_interface-enlarge-c:before { content: '\eaeb'; } /* '' */ |
|||
.bi_interface-expand:before { content: '\eaec'; } /* '' */ |
|||
.bi_interface-forward:before { content: '\eaed'; } /* '' */ |
|||
.bi_interface-fullscreen:before { content: '\eaee'; } /* '' */ |
|||
.bi_interface-fullscreen-a:before { content: '\eaef'; } /* '' */ |
|||
.bi_interface-fullscreen-wide:before { content: '\eaf0'; } /* '' */ |
|||
.bi_interface-hamburger:before { content: '\eaf1'; } /* '' */ |
|||
.bi_interface-heart:before { content: '\eaf2'; } /* '' */ |
|||
.bi_interface-help:before { content: '\eaf3'; } /* '' */ |
|||
.bi_interface-help-a:before { content: '\eaf4'; } /* '' */ |
|||
.bi_interface-home:before { content: '\eaf5'; } /* '' */ |
|||
.bi_interface-home-a:before { content: '\eaf6'; } /* '' */ |
|||
.bi_interface-horizontal:before { content: '\eaf7'; } /* '' */ |
|||
.bi_interface-horizontal-a:before { content: '\eaf8'; } /* '' */ |
|||
.bi_interface-in-link:before { content: '\eaf9'; } /* '' */ |
|||
.bi_interface-left:before { content: '\eafa'; } /* '' */ |
|||
.bi_interface-left-b-k:before { content: '\eafb'; } /* '' */ |
|||
.bi_interface-left-k:before { content: '\eafc'; } /* '' */ |
|||
.bi_interface-left-r:before { content: '\eafd'; } /* '' */ |
|||
.bi_interface-left-t-k:before { content: '\eafe'; } /* '' */ |
|||
.bi_interface-list-view:before { content: '\eaff'; } /* '' */ |
|||
.bi_interface-login:before { content: '\eb00'; } /* '' */ |
|||
.bi_interface-logout-a:before { content: '\eb01'; } /* '' */ |
|||
.bi_interface-minimize:before { content: '\eb02'; } /* '' */ |
|||
.bi_interface-minus:before { content: '\eb03'; } /* '' */ |
|||
.bi_interface-more:before { content: '\eb04'; } /* '' */ |
|||
.bi_interface-number:before { content: '\eb05'; } /* '' */ |
|||
.bi_interface-out-link:before { content: '\eb06'; } /* '' */ |
|||
.bi_interface-pixel:before { content: '\eb07'; } /* '' */ |
|||
.bi_interface-places:before { content: '\eb08'; } /* '' */ |
|||
.bi_interface-places-a:before { content: '\eb09'; } /* '' */ |
|||
.bi_interface-plus:before { content: '\eb0a'; } /* '' */ |
|||
.bi_interface-popup:before { content: '\eb0b'; } /* '' */ |
|||
.bi_interface-power:before { content: '\eb0c'; } /* '' */ |
|||
.bi_interface-refresh:before { content: '\eb0d'; } /* '' */ |
|||
.bi_interface-repeating:before { content: '\eb0e'; } /* '' */ |
|||
.bi_interface-reply:before { content: '\eb0f'; } /* '' */ |
|||
.bi_interface-resize-full:before { content: '\eb10'; } /* '' */ |
|||
.bi_interface-resize-full-a:before { content: '\eb11'; } /* '' */ |
|||
.bi_interface-resize-normal:before { content: '\eb12'; } /* '' */ |
|||
.bi_interface-reverse:before { content: '\eb13'; } /* '' */ |
|||
.bi_interface-right:before { content: '\eb14'; } /* '' */ |
|||
.bi_interface-right-k:before { content: '\eb15'; } /* '' */ |
|||
.bi_interface-right-r:before { content: '\eb16'; } /* '' */ |
|||
.bi_interface-rigth-b-k:before { content: '\eb17'; } /* '' */ |
|||
.bi_interface-rigth-t-k:before { content: '\eb18'; } /* '' */ |
|||
.bi_interface-search:before { content: '\eb19'; } /* '' */ |
|||
.bi_interface-search-cross:before { content: '\eb1a'; } /* '' */ |
|||
.bi_interface-search-minus:before { content: '\eb1b'; } /* '' */ |
|||
.bi_interface-search-plus:before { content: '\eb1c'; } /* '' */ |
|||
.bi_interface-search-tick:before { content: '\eb1d'; } /* '' */ |
|||
.bi_interface-sidebar-hamburger:before { content: '\eb1e'; } /* '' */ |
|||
.bi_interface-star:before { content: '\eb1f'; } /* '' */ |
|||
.bi_interface-star-a:before { content: '\eb20'; } /* '' */ |
|||
.bi_interface-target:before { content: '\eb21'; } /* '' */ |
|||
.bi_interface-thumbnail:before { content: '\eb22'; } /* '' */ |
|||
.bi_interface-tick:before { content: '\eb23'; } /* '' */ |
|||
.bi_interface-top:before { content: '\eb24'; } /* '' */ |
|||
.bi_interface-top-k:before { content: '\eb25'; } /* '' */ |
|||
.bi_interface-top-r:before { content: '\eb26'; } /* '' */ |
|||
.bi_interface-undo:before { content: '\eb27'; } /* '' */ |
|||
.bi_interface-uploading:before { content: '\eb28'; } /* '' */ |
|||
.bi_interface-vertical:before { content: '\eb29'; } /* '' */ |
|||
.bi_interface-vertical-a:before { content: '\eb2a'; } /* '' */ |
|||
.bi_interface-view:before { content: '\eb2b'; } /* '' */ |
|||
.bi_interface-warning:before { content: '\eb2c'; } /* '' */ |
|||
.bi_interface-window:before { content: '\eb2d'; } /* '' */ |
|||
.bi_layout-footer:before { content: '\eb2e'; } /* '' */ |
|||
.bi_layout-grid:before { content: '\eb2f'; } /* '' */ |
|||
.bi_layout-half:before { content: '\eb30'; } /* '' */ |
|||
.bi_layout-header:before { content: '\eb31'; } /* '' */ |
|||
.bi_layout-sidebar-l:before { content: '\eb32'; } /* '' */ |
|||
.bi_layout-sidebar-l-a:before { content: '\eb33'; } /* '' */ |
|||
.bi_layout-sidebar-l-half:before { content: '\eb34'; } /* '' */ |
|||
.bi_layout-sidebar-l-half-a:before { content: '\eb35'; } /* '' */ |
|||
.bi_layout-sidebar-r:before { content: '\eb36'; } /* '' */ |
|||
.bi_layout-sidebar-r-a:before { content: '\eb37'; } /* '' */ |
|||
.bi_layout-sidebar-r-half:before { content: '\eb38'; } /* '' */ |
|||
.bi_layout-sidebar-r-half-a:before { content: '\eb39'; } /* '' */ |
|||
.bi_layout-third-h:before { content: '\eb3a'; } /* '' */ |
|||
.bi_layout-third-v:before { content: '\eb3b'; } /* '' */ |
|||
.bi_layout-wireframe:before { content: '\eb3c'; } /* '' */ |
|||
.bi_layout-wireframe-a:before { content: '\eb3d'; } /* '' */ |
|||
.bi_interface-alt-cross:before { content: '\eb3e'; } /* '' */ |
|||
.bi_interface-alt-fullscreen:before { content: '\eb3f'; } /* '' */ |
|||
.bi_interface-alt-minus:before { content: '\eb40'; } /* '' */ |
|||
.bi_interface-alt-plus:before { content: '\eb41'; } /* '' */ |
|||
.bi_interface-alt-tick:before { content: '\eb42'; } /* '' */ |
|||
.bi_interface-alt-widescreen:before { content: '\eb43'; } /* '' */ |
|||
.bi_interface-arrow-all:before { content: '\eb44'; } /* '' */ |
|||
.bi_interface-arrow-bottom:before { content: '\eb45'; } /* '' */ |
|||
.bi_interface-arrow-bottom-circle:before { content: '\eb46'; } /* '' */ |
|||
.bi_interface-arrow-left:before { content: '\eb47'; } /* '' */ |
|||
.bi_interface-arrow-left-b:before { content: '\eb48'; } /* '' */ |
|||
.bi_interface-arrow-left-circle:before { content: '\eb49'; } /* '' */ |
|||
.bi_interface-arrow-left-t:before { content: '\eb4a'; } /* '' */ |
|||
.bi_interface-arrow-right:before { content: '\eb4b'; } /* '' */ |
|||
.bi_interface-arrow-right-b:before { content: '\eb4c'; } /* '' */ |
|||
.bi_interface-arrow-right-circle:before { content: '\eb4d'; } /* '' */ |
|||
.bi_interface-arrow-right-t:before { content: '\eb4e'; } /* '' */ |
|||
.bi_interface-arrow-top:before { content: '\eb4f'; } /* '' */ |
|||
.bi_interface-arrow-top-circle:before { content: '\eb50'; } /* '' */ |
|||
.bi_animal-dog-a:before { content: '\eb51'; } /* '' */ |
|||
.bi_interface-horizontal-a-1:before { content: '\eb52'; } /* '' */ |
|||
.bi_interface-vertical-a-1:before { content: '\eb53'; } /* '' */ |
|||
.bi_interface-diag:before { content: '\eb54'; } /* '' */ |
|||
.bi_interface-diag-a:before { content: '\eb55'; } /* '' */ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,853 @@ |
|||
|
|||
.bi_animal-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-fox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-frog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-goose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-husky { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-lion { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-monkey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-monkey-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-pig { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-pig-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-sheep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-shrimp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-wolf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-bull { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-chicken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cow-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-check-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-feather-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-fountain-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-help-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-megaphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-mic-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-paperplane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-phone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-pictures { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-voicemail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-broadcast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-broadcast-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-attachment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-attachment-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-four { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-three { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-two { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-zero { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-mark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-compose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-compose-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-blank-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-cross-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-minus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-plus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-tick-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-check-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-cross-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-minus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-plus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-sync { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-news { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-notebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-notebook-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-note-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-paper-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-papers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-paper-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-photo-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pin-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-print-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-profile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-profile-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-wboard-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-wboard-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-glass-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-negative { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-negative-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-clip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bowtie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-cash-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-coins-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-diamon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-digital-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-digital-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-jeans { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-lipstick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-market { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-mastercard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pack-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pounds { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-ring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-safebox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shirt-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-short { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-suitcase-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-b-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-c-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tracking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tshirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-wallet-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-woman-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-backpack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-backpack-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pen-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-redo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-right-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-a-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-write { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-write-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-ascending { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-bookmark-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-center-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-compose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-descending { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-left-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-drawer-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-house-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-museum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-twin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-twin-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-table-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-table-lamp-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-leaf-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-mountain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-mountain-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-no-smoke { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-plant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-smoke { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-apartment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-bulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-cabinet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-door { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-drawer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cocktail-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-cup-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cokctail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cup-straw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-empty-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-milk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-milk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-cup-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-wine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-bowl { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-cherry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-cherry-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-drumstick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-egg { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-grape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-hamburger-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-melon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-noodle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-noodle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-onigiri { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-onigiri-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-white-bread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fork-knife { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fork-knife-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fridge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-grill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-heat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-heat-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-hood { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-hood-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-jam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-ketchup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-microwave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-pepper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-plate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-recipe-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-salt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spatula { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spoon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spoon-fork-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-tissue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-switch-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-wrench-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-airplane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-component { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-eq-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-hotspot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-notification { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tennisball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-trophy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tv-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-lab { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-lab-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-alt-badge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-alt-badge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-one-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-baseball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-basketball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-basketball-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-bottle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-cards { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-dumbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-dumbell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-flag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-football { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-medic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-stadium { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-stadium-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-alarm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-alt-wall-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-hour-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-speed-meter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-wall-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-alt-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-avenue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-map-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-regular { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-sign-street { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console-old { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-disk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-disk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-gameboy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-headphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magic-wand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magic-wand-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magnifier { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-medical-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mobile-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-monitor-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-net { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-paint-roler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-projector { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-ruler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-scissor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-tablet-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-toothbrush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-alt-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-alt-camera-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-android { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-android-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-binoculars { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-brush-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-calculator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-train { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-truck-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-alt-bus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bicycle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-boat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password-u { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password-u-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-round { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-contact-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock-u { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock-u-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sunset-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind-pressure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind-pressure-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-rainy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-rainy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-snow-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-stormy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-stormy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-humid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sunrise { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-graph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-inspect { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-internet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-internet-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-reading-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-report { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-report-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-statistic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-webcam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-broken-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-zerply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-amazon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-grooveshark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-musio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-path { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-paypal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-rdio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-squarespace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-squareup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-one-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer-swipe-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer-swipe-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-five { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-four { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-six { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-three { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-two { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-double-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-female-gender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-male-gender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-mood-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-mood-sad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-mic-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-playlist { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-record-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-one-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-shuffle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-song-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-song-note-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-speaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-speaker-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-stop-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-high { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-high-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-low { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-low-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-medium { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-medium-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-mute-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eq-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-group-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-group-note-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-headphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-backspace-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-bottom-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-left-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-right-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-top-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bulleye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-tick-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cloud-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cloud-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cmd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-downloading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen-wide { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-help-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-home-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-in-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-b-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-t-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-list-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-logout-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-minimize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-more { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-out-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-pixel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-places { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-places-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-popup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-power { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-repeating { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-full-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-normal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-reverse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-rigth-b-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-rigth-t-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-sidebar-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-star-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-thumbnail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-uploading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-footer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-grid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-header { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-half-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-half-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-third-h { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-third-v { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-wireframe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-wireframe-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-fullscreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-widescreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-bottom-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-t { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-t { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-top-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-dog-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal-a-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical-a-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-diag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-diag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
@ -0,0 +1,864 @@ |
|||
[class^="bi_"], [class*=" bi_"] { |
|||
font-family: 'fontello'; |
|||
font-style: normal; |
|||
font-weight: normal; |
|||
|
|||
/* fix buttons height */ |
|||
line-height: 1em; |
|||
|
|||
/* you can be more comfortable with increased icons size */ |
|||
/* font-size: 120%; */ |
|||
} |
|||
|
|||
.bi_animal-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-fox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-frog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-goose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-husky { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-lion { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-monkey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-monkey-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-pig { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-pig-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-sheep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-shrimp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-wolf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-bull { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-chicken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-cow-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-line-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-check-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-email-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-feather-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-fountain-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-group-bubble-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-help-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-megaphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-mic-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-paperplane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-phone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-pictures { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-voicemail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-broadcast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-broadcast-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_com-bubble-dot-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-article-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-attachment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-attachment-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-four { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-three { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-two { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-binder-zero { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-book-mark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-briefcase-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-compose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-compose-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-documents-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-drawer-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-blank-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-cross-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-line-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-minus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-plus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-file-tick-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-check-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-cross-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-minus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-plus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-sync { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-folder-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-news { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-newspaper-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-notebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-notebook-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-note-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-paper-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-papers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-paper-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-photo-stack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pie-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-pin-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-print-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-profile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-profile-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-wboard-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-wboard-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-glass-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-image-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-negative { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-negative-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-clip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_media-video-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_business-tie-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_doc-analytic-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bill-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bowtie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-cash-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-coins-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-creditcard-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-diamon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-digital-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-digital-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-jeans { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-lipstick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-market { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-mastercard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pack-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-pounds { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-ring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-safebox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shirt-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-a-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-d { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-shopcart-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-short { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-suitcase-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-b-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-c-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tag-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tracking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-tshirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-wallet-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-woman-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-backpack { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-backpack-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_ecommerce-bag-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pen-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-redo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-right-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-a-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-trash-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-write { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-write-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-ascending { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-bookmark-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-center-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-compose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-descending { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-left-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_editorial-pencil-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-drawer-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-house-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-museum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-office-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-twin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-sofa-twin-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-table-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-table-lamp-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-flower-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-leaf-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-mountain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-mountain-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-no-smoke { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-plant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-smoke { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_environment-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-apartment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-bulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-cabinet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-desk-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-door { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_building-drawer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cocktail-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-coffee-cup-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cokctail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-cup-straw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-empty-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-milk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-milk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-tea-cup-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-water-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-wine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-bowl { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-cherry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-cherry-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-chinese-food-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-drumstick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-egg { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-grape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-hamburger-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-ice-cream-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-melon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-noodle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-noodle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-onigiri { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-onigiri-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_food-white-bread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fork-knife { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fork-knife-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-fridge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-grill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-heat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-heat-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-hood { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-hood-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-jam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-ketchup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-microwave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-pepper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-plate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-recipe-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-salt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spatula { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spoon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-spoon-fork-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-tissue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_kitchen-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-alt-glass-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_beverage-chinese-tea-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-switch-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-wrench-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-airplane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-component { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-eq-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-gear-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-hotspot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_setting-notification { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tennisball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-trophy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-tv-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-lab { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_medicine-lab-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-alt-badge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-alt-badge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-badge-one-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-baseball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-basketball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-basketball-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-bottle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-cards { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-dumbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-dumbell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-flag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-football { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-medic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-stadium { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_sport-stadium-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-alarm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-alt-wall-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-calendar-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-clock-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-hour-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-speed-meter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-stopwatch-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-wall-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_time-watches-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-alt-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-avenue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-map-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-pin-regular { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_location-sign-street { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-console-old { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-disk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-disk-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-a-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-flashlight-s { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-gameboy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-headphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magic-wand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magic-wand-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-magnifier { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-medical-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mobile-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-monitor-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-net { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-paint-roler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-projector { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-ruler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-scissor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-tablet-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-toothbrush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-alt-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-alt-camera-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-android { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-android-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-binoculars { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-brush-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-calculator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-camera-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_tool-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-train { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-truck-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-alt-bus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bicycle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-boat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-bus-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_transport-car-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-male-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password-u { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-password-u-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-a-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-single-round { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-alt-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-contact-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-group { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-female-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock-u { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_user-lock-u-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sunset-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind-pressure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-wind-pressure-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-rainy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-rainy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-snow-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-stormy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-stormy-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-cloud-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-humid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-moon-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sun-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_weather-sunrise { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-graph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-inspect { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-internet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-internet-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-menu-collapse-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-reading-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-report { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-report-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-share-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-statistic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-traffic-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-url-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-webcam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-broken-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tab-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_web-browser-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-zerply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-amazon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-grooveshark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-musio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-path { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-paypal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-rdio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-squarespace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-squareup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_logo-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-one-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer-swipe-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-pointer-swipe-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-five { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-four { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-six { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-three { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-dice-two { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-double-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-female-gender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-male-gender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-mood-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_misc-mood-sad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-mic-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-next-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-pause-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-playlist { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-previous-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-record-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-one { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-repeat-one-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-shuffle-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-song-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-song-note-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-speaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-speaker-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-stop-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-high { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-high-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-low { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-low-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-medium { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-medium-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_volume-mute-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-album-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-eq-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-group-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-group-note-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-headphone-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_music-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-backspace-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bell-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bottom-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-bottom-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-left-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-right-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-box-top-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-bulleye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-circle-tick-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-clock-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cloud-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cloud-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cmd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-downloading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-enlarge-c { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-fullscreen-wide { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-help-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-home-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-in-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-b-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-left-t-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-list-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-logout-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-minimize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-more { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-out-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-pixel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-places { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-places-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-popup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-power { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-repeating { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-full-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-resize-normal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-reverse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-right-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-rigth-b-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-rigth-t-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-search-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-sidebar-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-star-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-thumbnail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top-k { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-top-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-uploading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-footer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-grid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-header { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-l-half-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-sidebar-r-half-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-third-h { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-third-v { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-wireframe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_layout-wireframe-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-fullscreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-tick { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-alt-widescreen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-bottom-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-left-t { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-b { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-right-t { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-arrow-top-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_animal-dog-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-horizontal-a-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-vertical-a-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-diag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
|||
.bi_interface-diag-a { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
@ -0,0 +1,904 @@ |
|||
@font-face { |
|||
font-family: 'budicon'; |
|||
src: url('../font/budicon.eot?42886572'); |
|||
src: url('../font/budicon.eot?42886572#iefix') format('embedded-opentype'), |
|||
url('../font/budicon.woff?42886572') format('woff'), |
|||
url('../font/budicon.ttf?42886572') format('truetype'), |
|||
url('../font/budicon.svg?42886572#budicon') format('svg'); |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ |
|||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ |
|||
/* |
|||
@media screen and (-webkit-min-device-pixel-ratio:0) { |
|||
@font-face { |
|||
font-family: 'budicon'; |
|||
src: url('../font/budicon.svg?42886572#budicon') format('svg'); |
|||
} |
|||
} |
|||
*/ |
|||
|
|||
[class^="bi_"]:before, [class*=" bi_"]:before { |
|||
font-family: "budicon"; |
|||
font-style: normal; |
|||
font-weight: normal; |
|||
speak: none; |
|||
|
|||
display: inline-block; |
|||
text-decoration: inherit; |
|||
width: 1em; |
|||
margin-right: .2em; |
|||
text-align: center; |
|||
/* opacity: .8; */ |
|||
|
|||
/* For safety - reset parent styles, that can break glyph codes*/ |
|||
font-variant: normal; |
|||
text-transform: none; |
|||
|
|||
/* fix buttons height, for twitter bootstrap */ |
|||
line-height: 1em; |
|||
|
|||
/* Animation center compensation - margins should be symmetric */ |
|||
/* remove if not needed */ |
|||
margin-left: .2em; |
|||
|
|||
/* you can be more comfortable with increased icons size */ |
|||
/* font-size: 120%; */ |
|||
|
|||
/* Uncomment for 3D effect */ |
|||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
|||
} |
|||
|
|||
.bi_animal-fish:before { content: '\e800'; } /* '' */ |
|||
.bi_animal-fox:before { content: '\e801'; } /* '' */ |
|||
.bi_animal-frog:before { content: '\e802'; } /* '' */ |
|||
.bi_animal-goose:before { content: '\e803'; } /* '' */ |
|||
.bi_animal-husky:before { content: '\e804'; } /* '' */ |
|||
.bi_animal-lion:before { content: '\e805'; } /* '' */ |
|||
.bi_animal-monkey:before { content: '\e806'; } /* '' */ |
|||
.bi_animal-monkey-a:before { content: '\e807'; } /* '' */ |
|||
.bi_animal-mouse:before { content: '\e808'; } /* '' */ |
|||
.bi_animal-pig:before { content: '\e809'; } /* '' */ |
|||
.bi_animal-pig-a:before { content: '\e80a'; } /* '' */ |
|||
.bi_animal-sheep:before { content: '\e80b'; } /* '' */ |
|||
.bi_animal-shrimp:before { content: '\e80c'; } /* '' */ |
|||
.bi_animal-wolf:before { content: '\e80d'; } /* '' */ |
|||
.bi_animal-bull:before { content: '\e80e'; } /* '' */ |
|||
.bi_animal-cat:before { content: '\e80f'; } /* '' */ |
|||
.bi_animal-chicken:before { content: '\e810'; } /* '' */ |
|||
.bi_animal-cow:before { content: '\e811'; } /* '' */ |
|||
.bi_animal-cow-a:before { content: '\e812'; } /* '' */ |
|||
.bi_animal-dog:before { content: '\e813'; } /* '' */ |
|||
.bi_com-bubble-dot-b:before { content: '\e814'; } /* '' */ |
|||
.bi_com-bubble-line:before { content: '\e815'; } /* '' */ |
|||
.bi_com-bubble-line-a:before { content: '\e816'; } /* '' */ |
|||
.bi_com-bubble-line-b:before { content: '\e817'; } /* '' */ |
|||
.bi_com-chat:before { content: '\e818'; } /* '' */ |
|||
.bi_com-check-box:before { content: '\e819'; } /* '' */ |
|||
.bi_com-email:before { content: '\e81a'; } /* '' */ |
|||
.bi_com-email-cross:before { content: '\e81b'; } /* '' */ |
|||
.bi_com-email-minus:before { content: '\e81c'; } /* '' */ |
|||
.bi_com-email-o:before { content: '\e81d'; } /* '' */ |
|||
.bi_com-email-plus:before { content: '\e81e'; } /* '' */ |
|||
.bi_com-email-tick:before { content: '\e81f'; } /* '' */ |
|||
.bi_com-envelope:before { content: '\e820'; } /* '' */ |
|||
.bi_com-feather-pen:before { content: '\e821'; } /* '' */ |
|||
.bi_com-fountain-pen:before { content: '\e822'; } /* '' */ |
|||
.bi_com-group-bubble:before { content: '\e823'; } /* '' */ |
|||
.bi_com-group-bubble-a:before { content: '\e824'; } /* '' */ |
|||
.bi_com-group-bubble-b:before { content: '\e825'; } /* '' */ |
|||
.bi_com-group-bubble-c:before { content: '\e826'; } /* '' */ |
|||
.bi_com-group-bubble-d:before { content: '\e827'; } /* '' */ |
|||
.bi_com-help:before { content: '\e828'; } /* '' */ |
|||
.bi_com-help-a:before { content: '\e829'; } /* '' */ |
|||
.bi_com-megaphone:before { content: '\e82a'; } /* '' */ |
|||
.bi_com-megaphone-a:before { content: '\e82b'; } /* '' */ |
|||
.bi_com-mic:before { content: '\e82c'; } /* '' */ |
|||
.bi_com-mic-mute:before { content: '\e82d'; } /* '' */ |
|||
.bi_com-paperplane:before { content: '\e82e'; } /* '' */ |
|||
.bi_com-phone:before { content: '\e82f'; } /* '' */ |
|||
.bi_com-phone-a:before { content: '\e830'; } /* '' */ |
|||
.bi_com-pictures:before { content: '\e831'; } /* '' */ |
|||
.bi_com-voicemail:before { content: '\e832'; } /* '' */ |
|||
.bi_com-bell:before { content: '\e833'; } /* '' */ |
|||
.bi_com-bell-a:before { content: '\e834'; } /* '' */ |
|||
.bi_com-broadcast:before { content: '\e835'; } /* '' */ |
|||
.bi_com-broadcast-a:before { content: '\e836'; } /* '' */ |
|||
.bi_com-bubble:before { content: '\e837'; } /* '' */ |
|||
.bi_com-bubble-a:before { content: '\e838'; } /* '' */ |
|||
.bi_com-bubble-b:before { content: '\e839'; } /* '' */ |
|||
.bi_com-bubble-dot:before { content: '\e83a'; } /* '' */ |
|||
.bi_com-bubble-dot-a:before { content: '\e83b'; } /* '' */ |
|||
.bi_doc-analytic-blank:before { content: '\e83c'; } /* '' */ |
|||
.bi_doc-analytic-line:before { content: '\e83d'; } /* '' */ |
|||
.bi_doc-analytic-line-a:before { content: '\e83e'; } /* '' */ |
|||
.bi_doc-article:before { content: '\e83f'; } /* '' */ |
|||
.bi_doc-article-a:before { content: '\e840'; } /* '' */ |
|||
.bi_doc-article-b:before { content: '\e841'; } /* '' */ |
|||
.bi_doc-attachment:before { content: '\e842'; } /* '' */ |
|||
.bi_doc-attachment-a:before { content: '\e843'; } /* '' */ |
|||
.bi_doc-binder-blank:before { content: '\e844'; } /* '' */ |
|||
.bi_doc-binder-four:before { content: '\e845'; } /* '' */ |
|||
.bi_doc-binder-one:before { content: '\e846'; } /* '' */ |
|||
.bi_doc-binder-three:before { content: '\e847'; } /* '' */ |
|||
.bi_doc-binder-two:before { content: '\e848'; } /* '' */ |
|||
.bi_doc-binder-zero:before { content: '\e849'; } /* '' */ |
|||
.bi_doc-book:before { content: '\e84a'; } /* '' */ |
|||
.bi_doc-book-a:before { content: '\e84b'; } /* '' */ |
|||
.bi_doc-book-b:before { content: '\e84c'; } /* '' */ |
|||
.bi_doc-book-c:before { content: '\e84d'; } /* '' */ |
|||
.bi_doc-book-d:before { content: '\e84e'; } /* '' */ |
|||
.bi_doc-bookmark:before { content: '\e84f'; } /* '' */ |
|||
.bi_doc-book-mark:before { content: '\e850'; } /* '' */ |
|||
.bi_doc-box:before { content: '\e851'; } /* '' */ |
|||
.bi_doc-briefcase:before { content: '\e852'; } /* '' */ |
|||
.bi_doc-briefcase-a:before { content: '\e853'; } /* '' */ |
|||
.bi_doc-briefcase-b:before { content: '\e854'; } /* '' */ |
|||
.bi_doc-briefcase-c:before { content: '\e855'; } /* '' */ |
|||
.bi_doc-briefcase-d:before { content: '\e856'; } /* '' */ |
|||
.bi_doc-compose:before { content: '\e857'; } /* '' */ |
|||
.bi_doc-compose-a:before { content: '\e858'; } /* '' */ |
|||
.bi_doc-documents:before { content: '\e859'; } /* '' */ |
|||
.bi_doc-documents-minus:before { content: '\e85a'; } /* '' */ |
|||
.bi_doc-documents-plus:before { content: '\e85b'; } /* '' */ |
|||
.bi_doc-download:before { content: '\e85c'; } /* '' */ |
|||
.bi_doc-drawer:before { content: '\e85d'; } /* '' */ |
|||
.bi_doc-drawer-a:before { content: '\e85e'; } /* '' */ |
|||
.bi_doc-drawer-b:before { content: '\e85f'; } /* '' */ |
|||
.bi_doc-drawer-blank:before { content: '\e860'; } /* '' */ |
|||
.bi_doc-drawer-download:before { content: '\e861'; } /* '' */ |
|||
.bi_doc-drawer-line:before { content: '\e862'; } /* '' */ |
|||
.bi_doc-drawer-upload:before { content: '\e863'; } /* '' */ |
|||
.bi_doc-envelope:before { content: '\e864'; } /* '' */ |
|||
.bi_doc-file-blank:before { content: '\e865'; } /* '' */ |
|||
.bi_doc-file-blank-a:before { content: '\e866'; } /* '' */ |
|||
.bi_doc-file-cross:before { content: '\e867'; } /* '' */ |
|||
.bi_doc-file-cross-a:before { content: '\e868'; } /* '' */ |
|||
.bi_doc-file-line:before { content: '\e869'; } /* '' */ |
|||
.bi_doc-file-line-a:before { content: '\e86a'; } /* '' */ |
|||
.bi_doc-file-minus:before { content: '\e86b'; } /* '' */ |
|||
.bi_doc-file-minus-a:before { content: '\e86c'; } /* '' */ |
|||
.bi_doc-file-plus:before { content: '\e86d'; } /* '' */ |
|||
.bi_doc-file-plus-a:before { content: '\e86e'; } /* '' */ |
|||
.bi_doc-file-stack:before { content: '\e86f'; } /* '' */ |
|||
.bi_doc-file-tick:before { content: '\e870'; } /* '' */ |
|||
.bi_doc-file-tick-a:before { content: '\e871'; } /* '' */ |
|||
.bi_doc-folder:before { content: '\e872'; } /* '' */ |
|||
.bi_doc-folder-a:before { content: '\e873'; } /* '' */ |
|||
.bi_doc-folder-check-a:before { content: '\e874'; } /* '' */ |
|||
.bi_doc-folder-cross:before { content: '\e875'; } /* '' */ |
|||
.bi_doc-folder-cross-a:before { content: '\e876'; } /* '' */ |
|||
.bi_doc-folder-minus:before { content: '\e877'; } /* '' */ |
|||
.bi_doc-folder-minus-a:before { content: '\e878'; } /* '' */ |
|||
.bi_doc-folder-plus:before { content: '\e879'; } /* '' */ |
|||
.bi_doc-folder-plus-a:before { content: '\e87a'; } /* '' */ |
|||
.bi_doc-folder-s:before { content: '\e87b'; } /* '' */ |
|||
.bi_doc-folder-sync:before { content: '\e87c'; } /* '' */ |
|||
.bi_doc-folder-tick:before { content: '\e87d'; } /* '' */ |
|||
.bi_doc-list:before { content: '\e87e'; } /* '' */ |
|||
.bi_doc-news:before { content: '\e87f'; } /* '' */ |
|||
.bi_doc-newspaper:before { content: '\e880'; } /* '' */ |
|||
.bi_doc-newspaper-a:before { content: '\e881'; } /* '' */ |
|||
.bi_doc-newspaper-b:before { content: '\e882'; } /* '' */ |
|||
.bi_doc-notebook:before { content: '\e883'; } /* '' */ |
|||
.bi_doc-notebook-a:before { content: '\e884'; } /* '' */ |
|||
.bi_doc-note-pen:before { content: '\e885'; } /* '' */ |
|||
.bi_doc-paper-line:before { content: '\e886'; } /* '' */ |
|||
.bi_doc-papers:before { content: '\e887'; } /* '' */ |
|||
.bi_doc-paper-stack:before { content: '\e888'; } /* '' */ |
|||
.bi_doc-photo-stack:before { content: '\e889'; } /* '' */ |
|||
.bi_doc-pie:before { content: '\e88a'; } /* '' */ |
|||
.bi_doc-pie-a:before { content: '\e88b'; } /* '' */ |
|||
.bi_doc-pie-b:before { content: '\e88c'; } /* '' */ |
|||
.bi_doc-pin:before { content: '\e88d'; } /* '' */ |
|||
.bi_doc-pin-a:before { content: '\e88e'; } /* '' */ |
|||
.bi_doc-print:before { content: '\e88f'; } /* '' */ |
|||
.bi_doc-print-a:before { content: '\e890'; } /* '' */ |
|||
.bi_doc-profile:before { content: '\e891'; } /* '' */ |
|||
.bi_doc-profile-a:before { content: '\e892'; } /* '' */ |
|||
.bi_doc-upload:before { content: '\e893'; } /* '' */ |
|||
.bi_doc-wboard-line:before { content: '\e894'; } /* '' */ |
|||
.bi_doc-wboard-tick:before { content: '\e895'; } /* '' */ |
|||
.bi_media-glass:before { content: '\e896'; } /* '' */ |
|||
.bi_media-glass-a:before { content: '\e897'; } /* '' */ |
|||
.bi_media-image:before { content: '\e898'; } /* '' */ |
|||
.bi_media-image-a:before { content: '\e899'; } /* '' */ |
|||
.bi_media-image-b:before { content: '\e89a'; } /* '' */ |
|||
.bi_media-image-c:before { content: '\e89b'; } /* '' */ |
|||
.bi_media-image-d:before { content: '\e89c'; } /* '' */ |
|||
.bi_media-negative:before { content: '\e89d'; } /* '' */ |
|||
.bi_media-negative-a:before { content: '\e89e'; } /* '' */ |
|||
.bi_media-video:before { content: '\e89f'; } /* '' */ |
|||
.bi_media-video-a:before { content: '\e8a0'; } /* '' */ |
|||
.bi_media-video-clip:before { content: '\e8a1'; } /* '' */ |
|||
.bi_media-video-r:before { content: '\e8a2'; } /* '' */ |
|||
.bi_business-tie:before { content: '\e8a3'; } /* '' */ |
|||
.bi_business-tie-a:before { content: '\e8a4'; } /* '' */ |
|||
.bi_business-tie-b:before { content: '\e8a5'; } /* '' */ |
|||
.bi_doc-analytic-bar:before { content: '\e8a6'; } /* '' */ |
|||
.bi_ecommerce-basket:before { content: '\e8a7'; } /* '' */ |
|||
.bi_ecommerce-bill:before { content: '\e8a8'; } /* '' */ |
|||
.bi_ecommerce-bill-a:before { content: '\e8a9'; } /* '' */ |
|||
.bi_ecommerce-bill-b:before { content: '\e8aa'; } /* '' */ |
|||
.bi_ecommerce-bowtie:before { content: '\e8ab'; } /* '' */ |
|||
.bi_ecommerce-cash:before { content: '\e8ac'; } /* '' */ |
|||
.bi_ecommerce-cash-a:before { content: '\e8ad'; } /* '' */ |
|||
.bi_ecommerce-coins:before { content: '\e8ae'; } /* '' */ |
|||
.bi_ecommerce-coins-a:before { content: '\e8af'; } /* '' */ |
|||
.bi_ecommerce-creditcard:before { content: '\e8b0'; } /* '' */ |
|||
.bi_ecommerce-creditcard-b:before { content: '\e8b1'; } /* '' */ |
|||
.bi_ecommerce-creditcard-c:before { content: '\e8b2'; } /* '' */ |
|||
.bi_ecommerce-creditcard-d:before { content: '\e8b3'; } /* '' */ |
|||
.bi_ecommerce-diamon:before { content: '\e8b4'; } /* '' */ |
|||
.bi_ecommerce-digital-download:before { content: '\e8b5'; } /* '' */ |
|||
.bi_ecommerce-digital-upload:before { content: '\e8b6'; } /* '' */ |
|||
.bi_ecommerce-dollar:before { content: '\e8b7'; } /* '' */ |
|||
.bi_ecommerce-euro:before { content: '\e8b8'; } /* '' */ |
|||
.bi_ecommerce-gift:before { content: '\e8b9'; } /* '' */ |
|||
.bi_ecommerce-hanger:before { content: '\e8ba'; } /* '' */ |
|||
.bi_ecommerce-jeans:before { content: '\e8bb'; } /* '' */ |
|||
.bi_ecommerce-lipstick:before { content: '\e8bc'; } /* '' */ |
|||
.bi_ecommerce-market:before { content: '\e8bd'; } /* '' */ |
|||
.bi_ecommerce-mastercard:before { content: '\e8be'; } /* '' */ |
|||
.bi_ecommerce-pack:before { content: '\e8bf'; } /* '' */ |
|||
.bi_ecommerce-pack-a:before { content: '\e8c0'; } /* '' */ |
|||
.bi_ecommerce-pounds:before { content: '\e8c1'; } /* '' */ |
|||
.bi_ecommerce-ring:before { content: '\e8c2'; } /* '' */ |
|||
.bi_ecommerce-safebox:before { content: '\e8c3'; } /* '' */ |
|||
.bi_ecommerce-shirt:before { content: '\e8c4'; } /* '' */ |
|||
.bi_ecommerce-shirt-a:before { content: '\e8c5'; } /* '' */ |
|||
.bi_ecommerce-shoes:before { content: '\e8c6'; } /* '' */ |
|||
.bi_ecommerce-shop:before { content: '\e8c7'; } /* '' */ |
|||
.bi_ecommerce-shopcart:before { content: '\e8c8'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a:before { content: '\e8c9'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a-download:before { content: '\e8ca'; } /* '' */ |
|||
.bi_ecommerce-shopcart-a-fill:before { content: '\e8cb'; } /* '' */ |
|||
.bi_ecommerce-shopcart-c:before { content: '\e8cc'; } /* '' */ |
|||
.bi_ecommerce-shopcart-d:before { content: '\e8cd'; } /* '' */ |
|||
.bi_ecommerce-shopcart-download:before { content: '\e8ce'; } /* '' */ |
|||
.bi_ecommerce-shopcart-fill:before { content: '\e8cf'; } /* '' */ |
|||
.bi_ecommerce-short:before { content: '\e8d0'; } /* '' */ |
|||
.bi_ecommerce-suitcase:before { content: '\e8d1'; } /* '' */ |
|||
.bi_ecommerce-suitcase-a:before { content: '\e8d2'; } /* '' */ |
|||
.bi_ecommerce-tag:before { content: '\e8d3'; } /* '' */ |
|||
.bi_ecommerce-tag-a:before { content: '\e8d4'; } /* '' */ |
|||
.bi_ecommerce-tag-a-s:before { content: '\e8d5'; } /* '' */ |
|||
.bi_ecommerce-tag-b:before { content: '\e8d6'; } /* '' */ |
|||
.bi_ecommerce-tag-b-s:before { content: '\e8d7'; } /* '' */ |
|||
.bi_ecommerce-tag-c:before { content: '\e8d8'; } /* '' */ |
|||
.bi_ecommerce-tag-cross:before { content: '\e8d9'; } /* '' */ |
|||
.bi_ecommerce-tag-c-s:before { content: '\e8da'; } /* '' */ |
|||
.bi_ecommerce-tag-minus:before { content: '\e8db'; } /* '' */ |
|||
.bi_ecommerce-tag-plus:before { content: '\e8dc'; } /* '' */ |
|||
.bi_ecommerce-tag-tick:before { content: '\e8dd'; } /* '' */ |
|||
.bi_ecommerce-tracking:before { content: '\e8de'; } /* '' */ |
|||
.bi_ecommerce-tshirt:before { content: '\e8df'; } /* '' */ |
|||
.bi_ecommerce-wallet:before { content: '\e8e0'; } /* '' */ |
|||
.bi_ecommerce-wallet-a:before { content: '\e8e1'; } /* '' */ |
|||
.bi_ecommerce-woman-bag:before { content: '\e8e2'; } /* '' */ |
|||
.bi_ecommerce-yen:before { content: '\e8e3'; } /* '' */ |
|||
.bi_ecommerce-backpack:before { content: '\e8e4'; } /* '' */ |
|||
.bi_ecommerce-backpack-a:before { content: '\e8e5'; } /* '' */ |
|||
.bi_ecommerce-bag:before { content: '\e8e6'; } /* '' */ |
|||
.bi_ecommerce-bag-a:before { content: '\e8e7'; } /* '' */ |
|||
.bi_ecommerce-bag-b:before { content: '\e8e8'; } /* '' */ |
|||
.bi_editorial-pencil-s:before { content: '\e8e9'; } /* '' */ |
|||
.bi_editorial-pen-s:before { content: '\e8ea'; } /* '' */ |
|||
.bi_editorial-redo:before { content: '\e8eb'; } /* '' */ |
|||
.bi_editorial-right-align:before { content: '\e8ec'; } /* '' */ |
|||
.bi_editorial-trash:before { content: '\e8ed'; } /* '' */ |
|||
.bi_editorial-trash-a:before { content: '\e8ee'; } /* '' */ |
|||
.bi_editorial-trash-a-l:before { content: '\e8ef'; } /* '' */ |
|||
.bi_editorial-trash-l:before { content: '\e8f0'; } /* '' */ |
|||
.bi_editorial-undo:before { content: '\e8f1'; } /* '' */ |
|||
.bi_editorial-write:before { content: '\e8f2'; } /* '' */ |
|||
.bi_editorial-write-s:before { content: '\e8f3'; } /* '' */ |
|||
.bi_editorial-ascending:before { content: '\e8f4'; } /* '' */ |
|||
.bi_editorial-bookmark:before { content: '\e8f5'; } /* '' */ |
|||
.bi_editorial-bookmark-a:before { content: '\e8f6'; } /* '' */ |
|||
.bi_editorial-brush:before { content: '\e8f7'; } /* '' */ |
|||
.bi_editorial-center-align:before { content: '\e8f8'; } /* '' */ |
|||
.bi_editorial-compose:before { content: '\e8f9'; } /* '' */ |
|||
.bi_editorial-descending:before { content: '\e8fa'; } /* '' */ |
|||
.bi_editorial-left-align:before { content: '\e8fb'; } /* '' */ |
|||
.bi_editorial-pen:before { content: '\e8fc'; } /* '' */ |
|||
.bi_editorial-pencil:before { content: '\e8fd'; } /* '' */ |
|||
.bi_editorial-pencil-a:before { content: '\e8fe'; } /* '' */ |
|||
.bi_editorial-pencil-a-s:before { content: '\e8ff'; } /* '' */ |
|||
.bi_building-drawer-a:before { content: '\e900'; } /* '' */ |
|||
.bi_building-house:before { content: '\e901'; } /* '' */ |
|||
.bi_building-house-a:before { content: '\e902'; } /* '' */ |
|||
.bi_building-museum:before { content: '\e903'; } /* '' */ |
|||
.bi_building-office:before { content: '\e904'; } /* '' */ |
|||
.bi_building-office-a:before { content: '\e905'; } /* '' */ |
|||
.bi_building-office-b:before { content: '\e906'; } /* '' */ |
|||
.bi_building-sofa:before { content: '\e907'; } /* '' */ |
|||
.bi_building-sofa-a:before { content: '\e908'; } /* '' */ |
|||
.bi_building-sofa-b:before { content: '\e909'; } /* '' */ |
|||
.bi_building-sofa-twin:before { content: '\e90a'; } /* '' */ |
|||
.bi_building-sofa-twin-a:before { content: '\e90b'; } /* '' */ |
|||
.bi_building-table-lamp:before { content: '\e90c'; } /* '' */ |
|||
.bi_building-table-lamp-a:before { content: '\e90d'; } /* '' */ |
|||
.bi_building-tower:before { content: '\e90e'; } /* '' */ |
|||
.bi_building-tree:before { content: '\e90f'; } /* '' */ |
|||
.bi_environment-flower:before { content: '\e910'; } /* '' */ |
|||
.bi_environment-flower-a:before { content: '\e911'; } /* '' */ |
|||
.bi_environment-flower-b:before { content: '\e912'; } /* '' */ |
|||
.bi_environment-leaf:before { content: '\e913'; } /* '' */ |
|||
.bi_environment-leaf-a:before { content: '\e914'; } /* '' */ |
|||
.bi_environment-mountain:before { content: '\e915'; } /* '' */ |
|||
.bi_environment-mountain-a:before { content: '\e916'; } /* '' */ |
|||
.bi_environment-no-smoke:before { content: '\e917'; } /* '' */ |
|||
.bi_environment-plant:before { content: '\e918'; } /* '' */ |
|||
.bi_environment-sign:before { content: '\e919'; } /* '' */ |
|||
.bi_environment-smoke:before { content: '\e91a'; } /* '' */ |
|||
.bi_environment-tree:before { content: '\e91b'; } /* '' */ |
|||
.bi_building-apartment:before { content: '\e91c'; } /* '' */ |
|||
.bi_building-bed:before { content: '\e91d'; } /* '' */ |
|||
.bi_building-bulb:before { content: '\e91e'; } /* '' */ |
|||
.bi_building-cabinet:before { content: '\e91f'; } /* '' */ |
|||
.bi_building-desk:before { content: '\e920'; } /* '' */ |
|||
.bi_building-desk-a:before { content: '\e921'; } /* '' */ |
|||
.bi_building-desk-b:before { content: '\e922'; } /* '' */ |
|||
.bi_building-desk-c:before { content: '\e923'; } /* '' */ |
|||
.bi_building-door:before { content: '\e924'; } /* '' */ |
|||
.bi_building-drawer:before { content: '\e925'; } /* '' */ |
|||
.bi_beverage-cocktail-a:before { content: '\e926'; } /* '' */ |
|||
.bi_beverage-coffee:before { content: '\e927'; } /* '' */ |
|||
.bi_beverage-coffee-a:before { content: '\e928'; } /* '' */ |
|||
.bi_beverage-coffee-b:before { content: '\e929'; } /* '' */ |
|||
.bi_beverage-coffee-cup:before { content: '\e92a'; } /* '' */ |
|||
.bi_beverage-coffee-cup-a:before { content: '\e92b'; } /* '' */ |
|||
.bi_beverage-cokctail:before { content: '\e92c'; } /* '' */ |
|||
.bi_beverage-cup-straw:before { content: '\e92d'; } /* '' */ |
|||
.bi_beverage-empty-glass:before { content: '\e92e'; } /* '' */ |
|||
.bi_beverage-milk:before { content: '\e92f'; } /* '' */ |
|||
.bi_beverage-milk-a:before { content: '\e930'; } /* '' */ |
|||
.bi_beverage-tea:before { content: '\e931'; } /* '' */ |
|||
.bi_beverage-tea-a:before { content: '\e932'; } /* '' */ |
|||
.bi_beverage-tea-cup:before { content: '\e933'; } /* '' */ |
|||
.bi_beverage-tea-cup-a:before { content: '\e934'; } /* '' */ |
|||
.bi_beverage-water:before { content: '\e935'; } /* '' */ |
|||
.bi_beverage-water-a:before { content: '\e936'; } /* '' */ |
|||
.bi_beverage-water-glass:before { content: '\e937'; } /* '' */ |
|||
.bi_beverage-wine:before { content: '\e938'; } /* '' */ |
|||
.bi_food-apple:before { content: '\e939'; } /* '' */ |
|||
.bi_food-bowl:before { content: '\e93a'; } /* '' */ |
|||
.bi_food-cherry:before { content: '\e93b'; } /* '' */ |
|||
.bi_food-cherry-a:before { content: '\e93c'; } /* '' */ |
|||
.bi_food-chinese-food:before { content: '\e93d'; } /* '' */ |
|||
.bi_food-chinese-food-a:before { content: '\e93e'; } /* '' */ |
|||
.bi_food-chinese-food-b:before { content: '\e93f'; } /* '' */ |
|||
.bi_food-drumstick:before { content: '\e940'; } /* '' */ |
|||
.bi_food-egg:before { content: '\e941'; } /* '' */ |
|||
.bi_food-grape:before { content: '\e942'; } /* '' */ |
|||
.bi_food-hamburger:before { content: '\e943'; } /* '' */ |
|||
.bi_food-hamburger-a:before { content: '\e944'; } /* '' */ |
|||
.bi_food-ice-cream:before { content: '\e945'; } /* '' */ |
|||
.bi_food-ice-cream-a:before { content: '\e946'; } /* '' */ |
|||
.bi_food-ice-cream-b:before { content: '\e947'; } /* '' */ |
|||
.bi_food-ice-cream-c:before { content: '\e948'; } /* '' */ |
|||
.bi_food-melon:before { content: '\e949'; } /* '' */ |
|||
.bi_food-noodle:before { content: '\e94a'; } /* '' */ |
|||
.bi_food-noodle-a:before { content: '\e94b'; } /* '' */ |
|||
.bi_food-onigiri:before { content: '\e94c'; } /* '' */ |
|||
.bi_food-onigiri-a:before { content: '\e94d'; } /* '' */ |
|||
.bi_food-white-bread:before { content: '\e94e'; } /* '' */ |
|||
.bi_kitchen-fork-knife:before { content: '\e94f'; } /* '' */ |
|||
.bi_kitchen-fork-knife-a:before { content: '\e950'; } /* '' */ |
|||
.bi_kitchen-fridge:before { content: '\e951'; } /* '' */ |
|||
.bi_kitchen-grill:before { content: '\e952'; } /* '' */ |
|||
.bi_kitchen-heat:before { content: '\e953'; } /* '' */ |
|||
.bi_kitchen-heat-a:before { content: '\e954'; } /* '' */ |
|||
.bi_kitchen-hood:before { content: '\e955'; } /* '' */ |
|||
.bi_kitchen-hood-a:before { content: '\e956'; } /* '' */ |
|||
.bi_kitchen-jam:before { content: '\e957'; } /* '' */ |
|||
.bi_kitchen-ketchup:before { content: '\e958'; } /* '' */ |
|||
.bi_kitchen-leaf:before { content: '\e959'; } /* '' */ |
|||
.bi_kitchen-microwave:before { content: '\e95a'; } /* '' */ |
|||
.bi_kitchen-pepper:before { content: '\e95b'; } /* '' */ |
|||
.bi_kitchen-plate:before { content: '\e95c'; } /* '' */ |
|||
.bi_kitchen-recipe-book:before { content: '\e95d'; } /* '' */ |
|||
.bi_kitchen-salt:before { content: '\e95e'; } /* '' */ |
|||
.bi_kitchen-spatula:before { content: '\e95f'; } /* '' */ |
|||
.bi_kitchen-spoon-fork:before { content: '\e960'; } /* '' */ |
|||
.bi_kitchen-spoon-fork-a:before { content: '\e961'; } /* '' */ |
|||
.bi_kitchen-tissue:before { content: '\e962'; } /* '' */ |
|||
.bi_kitchen-water:before { content: '\e963'; } /* '' */ |
|||
.bi_beverage-alt-glass:before { content: '\e964'; } /* '' */ |
|||
.bi_beverage-alt-glass-a:before { content: '\e965'; } /* '' */ |
|||
.bi_beverage-alt-glass-b:before { content: '\e966'; } /* '' */ |
|||
.bi_beverage-alt-glass-c:before { content: '\e967'; } /* '' */ |
|||
.bi_beverage-beer:before { content: '\e968'; } /* '' */ |
|||
.bi_beverage-chinese-tea:before { content: '\e969'; } /* '' */ |
|||
.bi_beverage-chinese-tea-a:before { content: '\e96a'; } /* '' */ |
|||
.bi_beverage-chinese-tea-a-s:before { content: '\e96b'; } /* '' */ |
|||
.bi_beverage-chinese-tea-s:before { content: '\e96c'; } /* '' */ |
|||
.bi_setting-switch:before { content: '\e96d'; } /* '' */ |
|||
.bi_setting-switch-a:before { content: '\e96e'; } /* '' */ |
|||
.bi_setting-wrench:before { content: '\e96f'; } /* '' */ |
|||
.bi_setting-wrench-a:before { content: '\e970'; } /* '' */ |
|||
.bi_setting-airplane:before { content: '\e971'; } /* '' */ |
|||
.bi_setting-component:before { content: '\e972'; } /* '' */ |
|||
.bi_setting-eq:before { content: '\e973'; } /* '' */ |
|||
.bi_setting-eq-a:before { content: '\e974'; } /* '' */ |
|||
.bi_setting-gear:before { content: '\e975'; } /* '' */ |
|||
.bi_setting-gear-a:before { content: '\e976'; } /* '' */ |
|||
.bi_setting-gear-b:before { content: '\e977'; } /* '' */ |
|||
.bi_setting-hotspot:before { content: '\e978'; } /* '' */ |
|||
.bi_setting-notification:before { content: '\e979'; } /* '' */ |
|||
.bi_sport-tape:before { content: '\e97a'; } /* '' */ |
|||
.bi_sport-tennisball:before { content: '\e97b'; } /* '' */ |
|||
.bi_sport-time:before { content: '\e97c'; } /* '' */ |
|||
.bi_sport-trophy:before { content: '\e97d'; } /* '' */ |
|||
.bi_sport-trophy-a:before { content: '\e97e'; } /* '' */ |
|||
.bi_sport-tv:before { content: '\e97f'; } /* '' */ |
|||
.bi_sport-tv-a:before { content: '\e980'; } /* '' */ |
|||
.bi_medicine-heart:before { content: '\e981'; } /* '' */ |
|||
.bi_medicine-lab:before { content: '\e982'; } /* '' */ |
|||
.bi_medicine-lab-a:before { content: '\e983'; } /* '' */ |
|||
.bi_sport-alt-badge:before { content: '\e984'; } /* '' */ |
|||
.bi_sport-alt-badge-a:before { content: '\e985'; } /* '' */ |
|||
.bi_sport-badge:before { content: '\e986'; } /* '' */ |
|||
.bi_sport-badge-a:before { content: '\e987'; } /* '' */ |
|||
.bi_sport-badge-b:before { content: '\e988'; } /* '' */ |
|||
.bi_sport-badge-c:before { content: '\e989'; } /* '' */ |
|||
.bi_sport-badge-one:before { content: '\e98a'; } /* '' */ |
|||
.bi_sport-badge-one-a:before { content: '\e98b'; } /* '' */ |
|||
.bi_sport-baseball:before { content: '\e98c'; } /* '' */ |
|||
.bi_sport-basketball:before { content: '\e98d'; } /* '' */ |
|||
.bi_sport-basketball-a:before { content: '\e98e'; } /* '' */ |
|||
.bi_sport-bottle:before { content: '\e98f'; } /* '' */ |
|||
.bi_sport-cards:before { content: '\e990'; } /* '' */ |
|||
.bi_sport-dumbell:before { content: '\e991'; } /* '' */ |
|||
.bi_sport-dumbell-a:before { content: '\e992'; } /* '' */ |
|||
.bi_sport-flag:before { content: '\e993'; } /* '' */ |
|||
.bi_sport-flag-a:before { content: '\e994'; } /* '' */ |
|||
.bi_sport-football:before { content: '\e995'; } /* '' */ |
|||
.bi_sport-medic:before { content: '\e996'; } /* '' */ |
|||
.bi_sport-mic:before { content: '\e997'; } /* '' */ |
|||
.bi_sport-puzzle:before { content: '\e998'; } /* '' */ |
|||
.bi_sport-stadium:before { content: '\e999'; } /* '' */ |
|||
.bi_sport-stadium-a:before { content: '\e99a'; } /* '' */ |
|||
.bi_time-alarm:before { content: '\e99b'; } /* '' */ |
|||
.bi_time-alt-wall-clock:before { content: '\e99c'; } /* '' */ |
|||
.bi_time-calendar:before { content: '\e99d'; } /* '' */ |
|||
.bi_time-calendar-a:before { content: '\e99e'; } /* '' */ |
|||
.bi_time-calendar-b:before { content: '\e99f'; } /* '' */ |
|||
.bi_time-clock:before { content: '\e9a0'; } /* '' */ |
|||
.bi_time-clock-a:before { content: '\e9a1'; } /* '' */ |
|||
.bi_time-clock-b:before { content: '\e9a2'; } /* '' */ |
|||
.bi_time-clock-c:before { content: '\e9a3'; } /* '' */ |
|||
.bi_time-hour-glass:before { content: '\e9a4'; } /* '' */ |
|||
.bi_time-speed-meter:before { content: '\e9a5'; } /* '' */ |
|||
.bi_time-stopwatch:before { content: '\e9a6'; } /* '' */ |
|||
.bi_time-stopwatch-a:before { content: '\e9a7'; } /* '' */ |
|||
.bi_time-stopwatch-b:before { content: '\e9a8'; } /* '' */ |
|||
.bi_time-timer:before { content: '\e9a9'; } /* '' */ |
|||
.bi_time-wall-clock:before { content: '\e9aa'; } /* '' */ |
|||
.bi_time-watches:before { content: '\e9ab'; } /* '' */ |
|||
.bi_time-watches-a:before { content: '\e9ac'; } /* '' */ |
|||
.bi_time-watches-b:before { content: '\e9ad'; } /* '' */ |
|||
.bi_location-alt-pin:before { content: '\e9ae'; } /* '' */ |
|||
.bi_location-avenue:before { content: '\e9af'; } /* '' */ |
|||
.bi_location-compass:before { content: '\e9b0'; } /* '' */ |
|||
.bi_location-map:before { content: '\e9b1'; } /* '' */ |
|||
.bi_location-pin:before { content: '\e9b2'; } /* '' */ |
|||
.bi_location-pin-blank:before { content: '\e9b3'; } /* '' */ |
|||
.bi_location-pin-check:before { content: '\e9b4'; } /* '' */ |
|||
.bi_location-pin-map:before { content: '\e9b5'; } /* '' */ |
|||
.bi_location-pin-map-a:before { content: '\e9b6'; } /* '' */ |
|||
.bi_location-pin-minus:before { content: '\e9b7'; } /* '' */ |
|||
.bi_location-pin-plus:before { content: '\e9b8'; } /* '' */ |
|||
.bi_location-pin-regular:before { content: '\e9b9'; } /* '' */ |
|||
.bi_location-sign-street:before { content: '\e9ba'; } /* '' */ |
|||
.bi_tool-console:before { content: '\e9bb'; } /* '' */ |
|||
.bi_tool-console-a:before { content: '\e9bc'; } /* '' */ |
|||
.bi_tool-console-old:before { content: '\e9bd'; } /* '' */ |
|||
.bi_tool-disk:before { content: '\e9be'; } /* '' */ |
|||
.bi_tool-disk-a:before { content: '\e9bf'; } /* '' */ |
|||
.bi_tool-flashlight:before { content: '\e9c0'; } /* '' */ |
|||
.bi_tool-flashlight-a:before { content: '\e9c1'; } /* '' */ |
|||
.bi_tool-flashlight-a-s:before { content: '\e9c2'; } /* '' */ |
|||
.bi_tool-flashlight-s:before { content: '\e9c3'; } /* '' */ |
|||
.bi_tool-gameboy:before { content: '\e9c4'; } /* '' */ |
|||
.bi_tool-hammer:before { content: '\e9c5'; } /* '' */ |
|||
.bi_tool-headphone:before { content: '\e9c6'; } /* '' */ |
|||
.bi_tool-headphone-a:before { content: '\e9c7'; } /* '' */ |
|||
.bi_tool-laptop:before { content: '\e9c8'; } /* '' */ |
|||
.bi_tool-magic-wand:before { content: '\e9c9'; } /* '' */ |
|||
.bi_tool-magic-wand-a:before { content: '\e9ca'; } /* '' */ |
|||
.bi_tool-magnet:before { content: '\e9cb'; } /* '' */ |
|||
.bi_tool-magnifier:before { content: '\e9cc'; } /* '' */ |
|||
.bi_tool-medical-tape:before { content: '\e9cd'; } /* '' */ |
|||
.bi_tool-mobile:before { content: '\e9ce'; } /* '' */ |
|||
.bi_tool-mobile-l:before { content: '\e9cf'; } /* '' */ |
|||
.bi_tool-monitor:before { content: '\e9d0'; } /* '' */ |
|||
.bi_tool-monitor-a:before { content: '\e9d1'; } /* '' */ |
|||
.bi_tool-mouse:before { content: '\e9d2'; } /* '' */ |
|||
.bi_tool-net:before { content: '\e9d3'; } /* '' */ |
|||
.bi_tool-paint-roler:before { content: '\e9d4'; } /* '' */ |
|||
.bi_tool-projector:before { content: '\e9d5'; } /* '' */ |
|||
.bi_tool-radio:before { content: '\e9d6'; } /* '' */ |
|||
.bi_tool-ruler:before { content: '\e9d7'; } /* '' */ |
|||
.bi_tool-scissor:before { content: '\e9d8'; } /* '' */ |
|||
.bi_tool-tablet:before { content: '\e9d9'; } /* '' */ |
|||
.bi_tool-tablet-l:before { content: '\e9da'; } /* '' */ |
|||
.bi_tool-television:before { content: '\e9db'; } /* '' */ |
|||
.bi_tool-toothbrush:before { content: '\e9dc'; } /* '' */ |
|||
.bi_tool-umbrella:before { content: '\e9dd'; } /* '' */ |
|||
.bi_tool-video:before { content: '\e9de'; } /* '' */ |
|||
.bi_tool-alt-camera:before { content: '\e9df'; } /* '' */ |
|||
.bi_tool-alt-camera-a:before { content: '\e9e0'; } /* '' */ |
|||
.bi_tool-android:before { content: '\e9e1'; } /* '' */ |
|||
.bi_tool-android-l:before { content: '\e9e2'; } /* '' */ |
|||
.bi_tool-binoculars:before { content: '\e9e3'; } /* '' */ |
|||
.bi_tool-brush:before { content: '\e9e4'; } /* '' */ |
|||
.bi_tool-brush-a:before { content: '\e9e5'; } /* '' */ |
|||
.bi_tool-calculator:before { content: '\e9e6'; } /* '' */ |
|||
.bi_tool-camera:before { content: '\e9e7'; } /* '' */ |
|||
.bi_tool-camera-a:before { content: '\e9e8'; } /* '' */ |
|||
.bi_tool-camera-b:before { content: '\e9e9'; } /* '' */ |
|||
.bi_tool-compass:before { content: '\e9ea'; } /* '' */ |
|||
.bi_transport-car-b:before { content: '\e9eb'; } /* '' */ |
|||
.bi_transport-car-c:before { content: '\e9ec'; } /* '' */ |
|||
.bi_transport-ship:before { content: '\e9ed'; } /* '' */ |
|||
.bi_transport-train:before { content: '\e9ee'; } /* '' */ |
|||
.bi_transport-truck:before { content: '\e9ef'; } /* '' */ |
|||
.bi_transport-truck-a:before { content: '\e9f0'; } /* '' */ |
|||
.bi_transport-alt-bus:before { content: '\e9f1'; } /* '' */ |
|||
.bi_transport-bicycle:before { content: '\e9f2'; } /* '' */ |
|||
.bi_transport-bicycle-a:before { content: '\e9f3'; } /* '' */ |
|||
.bi_transport-boat:before { content: '\e9f4'; } /* '' */ |
|||
.bi_transport-bus:before { content: '\e9f5'; } /* '' */ |
|||
.bi_transport-bus-a:before { content: '\e9f6'; } /* '' */ |
|||
.bi_transport-car:before { content: '\e9f7'; } /* '' */ |
|||
.bi_transport-car-a:before { content: '\e9f8'; } /* '' */ |
|||
.bi_user-male:before { content: '\e9f9'; } /* '' */ |
|||
.bi_user-male-check:before { content: '\e9fa'; } /* '' */ |
|||
.bi_user-male-cross:before { content: '\e9fb'; } /* '' */ |
|||
.bi_user-male-minus:before { content: '\e9fc'; } /* '' */ |
|||
.bi_user-male-plus:before { content: '\e9fd'; } /* '' */ |
|||
.bi_user-male-sign:before { content: '\e9fe'; } /* '' */ |
|||
.bi_user-password:before { content: '\e9ff'; } /* '' */ |
|||
.bi_user-password-u:before { content: '\ea00'; } /* '' */ |
|||
.bi_user-password-u-a:before { content: '\ea01'; } /* '' */ |
|||
.bi_user-single:before { content: '\ea02'; } /* '' */ |
|||
.bi_user-single-a:before { content: '\ea03'; } /* '' */ |
|||
.bi_user-single-a-check:before { content: '\ea04'; } /* '' */ |
|||
.bi_user-single-a-cross:before { content: '\ea05'; } /* '' */ |
|||
.bi_user-single-a-group:before { content: '\ea06'; } /* '' */ |
|||
.bi_user-single-a-list:before { content: '\ea07'; } /* '' */ |
|||
.bi_user-single-a-minus:before { content: '\ea08'; } /* '' */ |
|||
.bi_user-single-a-plus:before { content: '\ea09'; } /* '' */ |
|||
.bi_user-single-check:before { content: '\ea0a'; } /* '' */ |
|||
.bi_user-single-cross:before { content: '\ea0b'; } /* '' */ |
|||
.bi_user-single-minus:before { content: '\ea0c'; } /* '' */ |
|||
.bi_user-single-plus:before { content: '\ea0d'; } /* '' */ |
|||
.bi_user-single-round:before { content: '\ea0e'; } /* '' */ |
|||
.bi_user-alt:before { content: '\ea0f'; } /* '' */ |
|||
.bi_user-alt-check:before { content: '\ea10'; } /* '' */ |
|||
.bi_user-alt-cross:before { content: '\ea11'; } /* '' */ |
|||
.bi_user-alt-group:before { content: '\ea12'; } /* '' */ |
|||
.bi_user-alt-list:before { content: '\ea13'; } /* '' */ |
|||
.bi_user-alt-minus:before { content: '\ea14'; } /* '' */ |
|||
.bi_user-alt-plus:before { content: '\ea15'; } /* '' */ |
|||
.bi_user-contact-book:before { content: '\ea16'; } /* '' */ |
|||
.bi_user-female:before { content: '\ea17'; } /* '' */ |
|||
.bi_user-female-cross:before { content: '\ea18'; } /* '' */ |
|||
.bi_user-female-group:before { content: '\ea19'; } /* '' */ |
|||
.bi_user-female-list:before { content: '\ea1a'; } /* '' */ |
|||
.bi_user-female-minus:before { content: '\ea1b'; } /* '' */ |
|||
.bi_user-female-plus:before { content: '\ea1c'; } /* '' */ |
|||
.bi_user-female-sign:before { content: '\ea1d'; } /* '' */ |
|||
.bi_user-female-tick:before { content: '\ea1e'; } /* '' */ |
|||
.bi_user-key:before { content: '\ea1f'; } /* '' */ |
|||
.bi_user-lock:before { content: '\ea20'; } /* '' */ |
|||
.bi_user-lock-u:before { content: '\ea21'; } /* '' */ |
|||
.bi_user-lock-u-a:before { content: '\ea22'; } /* '' */ |
|||
.bi_weather-sunset-a:before { content: '\ea23'; } /* '' */ |
|||
.bi_weather-wind:before { content: '\ea24'; } /* '' */ |
|||
.bi_weather-wind-pressure:before { content: '\ea25'; } /* '' */ |
|||
.bi_weather-wind-pressure-a:before { content: '\ea26'; } /* '' */ |
|||
.bi_weather-cloud:before { content: '\ea27'; } /* '' */ |
|||
.bi_weather-cloud-a:before { content: '\ea28'; } /* '' */ |
|||
.bi_weather-cloud-rainy:before { content: '\ea29'; } /* '' */ |
|||
.bi_weather-cloud-rainy-a:before { content: '\ea2a'; } /* '' */ |
|||
.bi_weather-cloud-snow:before { content: '\ea2b'; } /* '' */ |
|||
.bi_weather-cloud-snow-a:before { content: '\ea2c'; } /* '' */ |
|||
.bi_weather-cloud-stormy:before { content: '\ea2d'; } /* '' */ |
|||
.bi_weather-cloud-stormy-a:before { content: '\ea2e'; } /* '' */ |
|||
.bi_weather-cloud-sun:before { content: '\ea2f'; } /* '' */ |
|||
.bi_weather-humid:before { content: '\ea30'; } /* '' */ |
|||
.bi_weather-moon:before { content: '\ea31'; } /* '' */ |
|||
.bi_weather-moon-a:before { content: '\ea32'; } /* '' */ |
|||
.bi_weather-moon-b:before { content: '\ea33'; } /* '' */ |
|||
.bi_weather-moon-r:before { content: '\ea34'; } /* '' */ |
|||
.bi_weather-sun-a:before { content: '\ea35'; } /* '' */ |
|||
.bi_weather-sun-b:before { content: '\ea36'; } /* '' */ |
|||
.bi_weather-sun-r:before { content: '\ea37'; } /* '' */ |
|||
.bi_weather-sunrise:before { content: '\ea38'; } /* '' */ |
|||
.bi_web-bug:before { content: '\ea39'; } /* '' */ |
|||
.bi_web-code:before { content: '\ea3a'; } /* '' */ |
|||
.bi_web-database:before { content: '\ea3b'; } /* '' */ |
|||
.bi_web-download:before { content: '\ea3c'; } /* '' */ |
|||
.bi_web-graph:before { content: '\ea3d'; } /* '' */ |
|||
.bi_web-inspect:before { content: '\ea3e'; } /* '' */ |
|||
.bi_web-internet:before { content: '\ea3f'; } /* '' */ |
|||
.bi_web-internet-a:before { content: '\ea40'; } /* '' */ |
|||
.bi_web-logout:before { content: '\ea41'; } /* '' */ |
|||
.bi_web-menu-collapse-down:before { content: '\ea42'; } /* '' */ |
|||
.bi_web-menu-collapse-left:before { content: '\ea43'; } /* '' */ |
|||
.bi_web-menu-collapse-right:before { content: '\ea44'; } /* '' */ |
|||
.bi_web-menu-collapse-up:before { content: '\ea45'; } /* '' */ |
|||
.bi_web-reading-list:before { content: '\ea46'; } /* '' */ |
|||
.bi_web-report:before { content: '\ea47'; } /* '' */ |
|||
.bi_web-report-a:before { content: '\ea48'; } /* '' */ |
|||
.bi_web-rss:before { content: '\ea49'; } /* '' */ |
|||
.bi_web-share:before { content: '\ea4a'; } /* '' */ |
|||
.bi_web-share-a:before { content: '\ea4b'; } /* '' */ |
|||
.bi_web-share-b:before { content: '\ea4c'; } /* '' */ |
|||
.bi_web-statistic:before { content: '\ea4d'; } /* '' */ |
|||
.bi_web-traffic:before { content: '\ea4e'; } /* '' */ |
|||
.bi_web-traffic-a:before { content: '\ea4f'; } /* '' */ |
|||
.bi_web-traffic-b:before { content: '\ea50'; } /* '' */ |
|||
.bi_web-traffic-c:before { content: '\ea51'; } /* '' */ |
|||
.bi_web-upload:before { content: '\ea52'; } /* '' */ |
|||
.bi_web-url:before { content: '\ea53'; } /* '' */ |
|||
.bi_web-url-a:before { content: '\ea54'; } /* '' */ |
|||
.bi_web-url-b:before { content: '\ea55'; } /* '' */ |
|||
.bi_web-warning:before { content: '\ea56'; } /* '' */ |
|||
.bi_web-webcam:before { content: '\ea57'; } /* '' */ |
|||
.bi_web-broken-link:before { content: '\ea58'; } /* '' */ |
|||
.bi_web-browser:before { content: '\ea59'; } /* '' */ |
|||
.bi_web-browser-a:before { content: '\ea5a'; } /* '' */ |
|||
.bi_web-browser-b:before { content: '\ea5b'; } /* '' */ |
|||
.bi_web-browser-cross:before { content: '\ea5c'; } /* '' */ |
|||
.bi_web-browser-minus:before { content: '\ea5d'; } /* '' */ |
|||
.bi_web-browser-plus:before { content: '\ea5e'; } /* '' */ |
|||
.bi_web-browser-tab:before { content: '\ea5f'; } /* '' */ |
|||
.bi_web-browser-tab-cross:before { content: '\ea60'; } /* '' */ |
|||
.bi_web-browser-tab-minus:before { content: '\ea61'; } /* '' */ |
|||
.bi_web-browser-tab-plus:before { content: '\ea62'; } /* '' */ |
|||
.bi_web-browser-tab-tick:before { content: '\ea63'; } /* '' */ |
|||
.bi_web-browser-tick:before { content: '\ea64'; } /* '' */ |
|||
.bi_web-browser-window:before { content: '\ea65'; } /* '' */ |
|||
.bi_logo-vimeo:before { content: '\ea66'; } /* '' */ |
|||
.bi_logo-windows:before { content: '\ea67'; } /* '' */ |
|||
.bi_logo-zerply:before { content: '\ea68'; } /* '' */ |
|||
.bi_logo-amazon:before { content: '\ea69'; } /* '' */ |
|||
.bi_logo-dribbble:before { content: '\ea6a'; } /* '' */ |
|||
.bi_logo-dropbox:before { content: '\ea6b'; } /* '' */ |
|||
.bi_logo-evernote:before { content: '\ea6c'; } /* '' */ |
|||
.bi_logo-facebook:before { content: '\ea6d'; } /* '' */ |
|||
.bi_logo-grooveshark:before { content: '\ea6e'; } /* '' */ |
|||
.bi_logo-instagram:before { content: '\ea6f'; } /* '' */ |
|||
.bi_logo-linkedin:before { content: '\ea70'; } /* '' */ |
|||
.bi_logo-musio:before { content: '\ea71'; } /* '' */ |
|||
.bi_logo-path:before { content: '\ea72'; } /* '' */ |
|||
.bi_logo-paypal:before { content: '\ea73'; } /* '' */ |
|||
.bi_logo-picasa:before { content: '\ea74'; } /* '' */ |
|||
.bi_logo-pinterest:before { content: '\ea75'; } /* '' */ |
|||
.bi_logo-rdio:before { content: '\ea76'; } /* '' */ |
|||
.bi_logo-squarespace:before { content: '\ea77'; } /* '' */ |
|||
.bi_logo-squareup:before { content: '\ea78'; } /* '' */ |
|||
.bi_logo-twitter:before { content: '\ea79'; } /* '' */ |
|||
.bi_misc-one-click:before { content: '\ea7a'; } /* '' */ |
|||
.bi_misc-pointer:before { content: '\ea7b'; } /* '' */ |
|||
.bi_misc-pointer-swipe-l:before { content: '\ea7c'; } /* '' */ |
|||
.bi_misc-pointer-swipe-r:before { content: '\ea7d'; } /* '' */ |
|||
.bi_misc-puzzle:before { content: '\ea7e'; } /* '' */ |
|||
.bi_misc-wifi:before { content: '\ea7f'; } /* '' */ |
|||
.bi_misc-crown:before { content: '\ea80'; } /* '' */ |
|||
.bi_misc-cube:before { content: '\ea81'; } /* '' */ |
|||
.bi_misc-dice-five:before { content: '\ea82'; } /* '' */ |
|||
.bi_misc-dice-four:before { content: '\ea83'; } /* '' */ |
|||
.bi_misc-dice-one:before { content: '\ea84'; } /* '' */ |
|||
.bi_misc-dice-six:before { content: '\ea85'; } /* '' */ |
|||
.bi_misc-dice-three:before { content: '\ea86'; } /* '' */ |
|||
.bi_misc-dice-two:before { content: '\ea87'; } /* '' */ |
|||
.bi_misc-double-click:before { content: '\ea88'; } /* '' */ |
|||
.bi_misc-female-gender:before { content: '\ea89'; } /* '' */ |
|||
.bi_misc-globe:before { content: '\ea8a'; } /* '' */ |
|||
.bi_misc-male-gender:before { content: '\ea8b'; } /* '' */ |
|||
.bi_misc-mood-happy:before { content: '\ea8c'; } /* '' */ |
|||
.bi_misc-mood-sad:before { content: '\ea8d'; } /* '' */ |
|||
.bi_music-mic:before { content: '\ea8e'; } /* '' */ |
|||
.bi_music-mic-a:before { content: '\ea8f'; } /* '' */ |
|||
.bi_music-next:before { content: '\ea90'; } /* '' */ |
|||
.bi_music-next-l:before { content: '\ea91'; } /* '' */ |
|||
.bi_music-next-l-a:before { content: '\ea92'; } /* '' */ |
|||
.bi_music-pause:before { content: '\ea93'; } /* '' */ |
|||
.bi_music-pause-a:before { content: '\ea94'; } /* '' */ |
|||
.bi_music-pause-b:before { content: '\ea95'; } /* '' */ |
|||
.bi_music-play:before { content: '\ea96'; } /* '' */ |
|||
.bi_music-playlist:before { content: '\ea97'; } /* '' */ |
|||
.bi_music-previous:before { content: '\ea98'; } /* '' */ |
|||
.bi_music-previous-l:before { content: '\ea99'; } /* '' */ |
|||
.bi_music-previous-l-a:before { content: '\ea9a'; } /* '' */ |
|||
.bi_music-radio:before { content: '\ea9b'; } /* '' */ |
|||
.bi_music-record:before { content: '\ea9c'; } /* '' */ |
|||
.bi_music-record-a:before { content: '\ea9d'; } /* '' */ |
|||
.bi_music-repeat:before { content: '\ea9e'; } /* '' */ |
|||
.bi_music-repeat-a:before { content: '\ea9f'; } /* '' */ |
|||
.bi_music-repeat-one:before { content: '\eaa0'; } /* '' */ |
|||
.bi_music-repeat-one-a:before { content: '\eaa1'; } /* '' */ |
|||
.bi_music-shuffle:before { content: '\eaa2'; } /* '' */ |
|||
.bi_music-shuffle-a:before { content: '\eaa3'; } /* '' */ |
|||
.bi_music-song-note:before { content: '\eaa4'; } /* '' */ |
|||
.bi_music-song-note-a:before { content: '\eaa5'; } /* '' */ |
|||
.bi_music-speaker:before { content: '\eaa6'; } /* '' */ |
|||
.bi_music-speaker-a:before { content: '\eaa7'; } /* '' */ |
|||
.bi_music-stop:before { content: '\eaa8'; } /* '' */ |
|||
.bi_music-stop-a:before { content: '\eaa9'; } /* '' */ |
|||
.bi_volume-high:before { content: '\eaaa'; } /* '' */ |
|||
.bi_volume-high-a:before { content: '\eaab'; } /* '' */ |
|||
.bi_volume-low:before { content: '\eaac'; } /* '' */ |
|||
.bi_volume-low-a:before { content: '\eaad'; } /* '' */ |
|||
.bi_volume-medium:before { content: '\eaae'; } /* '' */ |
|||
.bi_volume-medium-a:before { content: '\eaaf'; } /* '' */ |
|||
.bi_volume-mute:before { content: '\eab0'; } /* '' */ |
|||
.bi_volume-mute-a:before { content: '\eab1'; } /* '' */ |
|||
.bi_music-album:before { content: '\eab2'; } /* '' */ |
|||
.bi_music-album-a:before { content: '\eab3'; } /* '' */ |
|||
.bi_music-album-b:before { content: '\eab4'; } /* '' */ |
|||
.bi_music-album-c:before { content: '\eab5'; } /* '' */ |
|||
.bi_music-album-cd:before { content: '\eab6'; } /* '' */ |
|||
.bi_music-cd:before { content: '\eab7'; } /* '' */ |
|||
.bi_music-eject:before { content: '\eab8'; } /* '' */ |
|||
.bi_music-eq:before { content: '\eab9'; } /* '' */ |
|||
.bi_music-eq-a:before { content: '\eaba'; } /* '' */ |
|||
.bi_music-group-note:before { content: '\eabb'; } /* '' */ |
|||
.bi_music-group-note-a:before { content: '\eabc'; } /* '' */ |
|||
.bi_music-headphone:before { content: '\eabd'; } /* '' */ |
|||
.bi_music-headphone-a:before { content: '\eabe'; } /* '' */ |
|||
.bi_music-list:before { content: '\eabf'; } /* '' */ |
|||
.bi_interface-backspace:before { content: '\eac0'; } /* '' */ |
|||
.bi_interface-backspace-a:before { content: '\eac1'; } /* '' */ |
|||
.bi_interface-bell:before { content: '\eac2'; } /* '' */ |
|||
.bi_interface-bell-a:before { content: '\eac3'; } /* '' */ |
|||
.bi_interface-block:before { content: '\eac4'; } /* '' */ |
|||
.bi_interface-bottom:before { content: '\eac5'; } /* '' */ |
|||
.bi_interface-bottom-k:before { content: '\eac6'; } /* '' */ |
|||
.bi_interface-bottom-r:before { content: '\eac7'; } /* '' */ |
|||
.bi_interface-box-bottom:before { content: '\eac8'; } /* '' */ |
|||
.bi_interface-box-bottom-a:before { content: '\eac9'; } /* '' */ |
|||
.bi_interface-box-cross:before { content: '\eaca'; } /* '' */ |
|||
.bi_interface-box-left:before { content: '\eacb'; } /* '' */ |
|||
.bi_interface-box-left-a:before { content: '\eacc'; } /* '' */ |
|||
.bi_interface-box-minus:before { content: '\eacd'; } /* '' */ |
|||
.bi_interface-box-plus:before { content: '\eace'; } /* '' */ |
|||
.bi_interface-box-right:before { content: '\eacf'; } /* '' */ |
|||
.bi_interface-box-right-a:before { content: '\ead0'; } /* '' */ |
|||
.bi_interface-box-tick:before { content: '\ead1'; } /* '' */ |
|||
.bi_interface-box-top:before { content: '\ead2'; } /* '' */ |
|||
.bi_interface-box-top-a:before { content: '\ead3'; } /* '' */ |
|||
.bi_interface-bulleye:before { content: '\ead4'; } /* '' */ |
|||
.bi_interface-calendar:before { content: '\ead5'; } /* '' */ |
|||
.bi_interface-circle:before { content: '\ead6'; } /* '' */ |
|||
.bi_interface-circle-cross:before { content: '\ead7'; } /* '' */ |
|||
.bi_interface-circle-minus:before { content: '\ead8'; } /* '' */ |
|||
.bi_interface-circle-plus:before { content: '\ead9'; } /* '' */ |
|||
.bi_interface-circle-tick:before { content: '\eada'; } /* '' */ |
|||
.bi_interface-circle-tick-a:before { content: '\eadb'; } /* '' */ |
|||
.bi_interface-clock:before { content: '\eadc'; } /* '' */ |
|||
.bi_interface-clock-a:before { content: '\eadd'; } /* '' */ |
|||
.bi_interface-clock-b:before { content: '\eade'; } /* '' */ |
|||
.bi_interface-cloud-download:before { content: '\eadf'; } /* '' */ |
|||
.bi_interface-cloud-upload:before { content: '\eae0'; } /* '' */ |
|||
.bi_interface-cmd:before { content: '\eae1'; } /* '' */ |
|||
.bi_interface-crop:before { content: '\eae2'; } /* '' */ |
|||
.bi_interface-cross:before { content: '\eae3'; } /* '' */ |
|||
.bi_interface-dashboard:before { content: '\eae4'; } /* '' */ |
|||
.bi_interface-direction:before { content: '\eae7'; } /* '' */ |
|||
.bi_interface-downloading:before { content: '\eae8'; } /* '' */ |
|||
.bi_interface-enlarge:before { content: '\eae9'; } /* '' */ |
|||
.bi_interface-enlarge-a:before { content: '\eaea'; } /* '' */ |
|||
.bi_interface-enlarge-c:before { content: '\eaeb'; } /* '' */ |
|||
.bi_interface-expand:before { content: '\eaec'; } /* '' */ |
|||
.bi_interface-forward:before { content: '\eaed'; } /* '' */ |
|||
.bi_interface-fullscreen:before { content: '\eaee'; } /* '' */ |
|||
.bi_interface-fullscreen-a:before { content: '\eaef'; } /* '' */ |
|||
.bi_interface-fullscreen-wide:before { content: '\eaf0'; } /* '' */ |
|||
.bi_interface-hamburger:before { content: '\eaf1'; } /* '' */ |
|||
.bi_interface-heart:before { content: '\eaf2'; } /* '' */ |
|||
.bi_interface-help:before { content: '\eaf3'; } /* '' */ |
|||
.bi_interface-help-a:before { content: '\eaf4'; } /* '' */ |
|||
.bi_interface-home:before { content: '\eaf5'; } /* '' */ |
|||
.bi_interface-home-a:before { content: '\eaf6'; } /* '' */ |
|||
.bi_interface-horizontal:before { content: '\eaf7'; } /* '' */ |
|||
.bi_interface-horizontal-a:before { content: '\eaf8'; } /* '' */ |
|||
.bi_interface-in-link:before { content: '\eaf9'; } /* '' */ |
|||
.bi_interface-left:before { content: '\eafa'; } /* '' */ |
|||
.bi_interface-left-b-k:before { content: '\eafb'; } /* '' */ |
|||
.bi_interface-left-k:before { content: '\eafc'; } /* '' */ |
|||
.bi_interface-left-r:before { content: '\eafd'; } /* '' */ |
|||
.bi_interface-left-t-k:before { content: '\eafe'; } /* '' */ |
|||
.bi_interface-list-view:before { content: '\eaff'; } /* '' */ |
|||
.bi_interface-login:before { content: '\eb00'; } /* '' */ |
|||
.bi_interface-logout-a:before { content: '\eb01'; } /* '' */ |
|||
.bi_interface-minimize:before { content: '\eb02'; } /* '' */ |
|||
.bi_interface-minus:before { content: '\eb03'; } /* '' */ |
|||
.bi_interface-more:before { content: '\eb04'; } /* '' */ |
|||
.bi_interface-number:before { content: '\eb05'; } /* '' */ |
|||
.bi_interface-out-link:before { content: '\eb06'; } /* '' */ |
|||
.bi_interface-pixel:before { content: '\eb07'; } /* '' */ |
|||
.bi_interface-places:before { content: '\eb08'; } /* '' */ |
|||
.bi_interface-places-a:before { content: '\eb09'; } /* '' */ |
|||
.bi_interface-plus:before { content: '\eb0a'; } /* '' */ |
|||
.bi_interface-popup:before { content: '\eb0b'; } /* '' */ |
|||
.bi_interface-power:before { content: '\eb0c'; } /* '' */ |
|||
.bi_interface-refresh:before { content: '\eb0d'; } /* '' */ |
|||
.bi_interface-repeating:before { content: '\eb0e'; } /* '' */ |
|||
.bi_interface-reply:before { content: '\eb0f'; } /* '' */ |
|||
.bi_interface-resize-full:before { content: '\eb10'; } /* '' */ |
|||
.bi_interface-resize-full-a:before { content: '\eb11'; } /* '' */ |
|||
.bi_interface-resize-normal:before { content: '\eb12'; } /* '' */ |
|||
.bi_interface-reverse:before { content: '\eb13'; } /* '' */ |
|||
.bi_interface-right:before { content: '\eb14'; } /* '' */ |
|||
.bi_interface-right-k:before { content: '\eb15'; } /* '' */ |
|||
.bi_interface-right-r:before { content: '\eb16'; } /* '' */ |
|||
.bi_interface-rigth-b-k:before { content: '\eb17'; } /* '' */ |
|||
.bi_interface-rigth-t-k:before { content: '\eb18'; } /* '' */ |
|||
.bi_interface-search:before { content: '\eb19'; } /* '' */ |
|||
.bi_interface-search-cross:before { content: '\eb1a'; } /* '' */ |
|||
.bi_interface-search-minus:before { content: '\eb1b'; } /* '' */ |
|||
.bi_interface-search-plus:before { content: '\eb1c'; } /* '' */ |
|||
.bi_interface-search-tick:before { content: '\eb1d'; } /* '' */ |
|||
.bi_interface-sidebar-hamburger:before { content: '\eb1e'; } /* '' */ |
|||
.bi_interface-star:before { content: '\eb1f'; } /* '' */ |
|||
.bi_interface-star-a:before { content: '\eb20'; } /* '' */ |
|||
.bi_interface-target:before { content: '\eb21'; } /* '' */ |
|||
.bi_interface-thumbnail:before { content: '\eb22'; } /* '' */ |
|||
.bi_interface-tick:before { content: '\eb23'; } /* '' */ |
|||
.bi_interface-top:before { content: '\eb24'; } /* '' */ |
|||
.bi_interface-top-k:before { content: '\eb25'; } /* '' */ |
|||
.bi_interface-top-r:before { content: '\eb26'; } /* '' */ |
|||
.bi_interface-undo:before { content: '\eb27'; } /* '' */ |
|||
.bi_interface-uploading:before { content: '\eb28'; } /* '' */ |
|||
.bi_interface-vertical:before { content: '\eb29'; } /* '' */ |
|||
.bi_interface-vertical-a:before { content: '\eb2a'; } /* '' */ |
|||
.bi_interface-view:before { content: '\eb2b'; } /* '' */ |
|||
.bi_interface-warning:before { content: '\eb2c'; } /* '' */ |
|||
.bi_interface-window:before { content: '\eb2d'; } /* '' */ |
|||
.bi_layout-footer:before { content: '\eb2e'; } /* '' */ |
|||
.bi_layout-grid:before { content: '\eb2f'; } /* '' */ |
|||
.bi_layout-half:before { content: '\eb30'; } /* '' */ |
|||
.bi_layout-header:before { content: '\eb31'; } /* '' */ |
|||
.bi_layout-sidebar-l:before { content: '\eb32'; } /* '' */ |
|||
.bi_layout-sidebar-l-a:before { content: '\eb33'; } /* '' */ |
|||
.bi_layout-sidebar-l-half:before { content: '\eb34'; } /* '' */ |
|||
.bi_layout-sidebar-l-half-a:before { content: '\eb35'; } /* '' */ |
|||
.bi_layout-sidebar-r:before { content: '\eb36'; } /* '' */ |
|||
.bi_layout-sidebar-r-a:before { content: '\eb37'; } /* '' */ |
|||
.bi_layout-sidebar-r-half:before { content: '\eb38'; } /* '' */ |
|||
.bi_layout-sidebar-r-half-a:before { content: '\eb39'; } /* '' */ |
|||
.bi_layout-third-h:before { content: '\eb3a'; } /* '' */ |
|||
.bi_layout-third-v:before { content: '\eb3b'; } /* '' */ |
|||
.bi_layout-wireframe:before { content: '\eb3c'; } /* '' */ |
|||
.bi_layout-wireframe-a:before { content: '\eb3d'; } /* '' */ |
|||
.bi_interface-alt-cross:before { content: '\eb3e'; } /* '' */ |
|||
.bi_interface-alt-fullscreen:before { content: '\eb3f'; } /* '' */ |
|||
.bi_interface-alt-minus:before { content: '\eb40'; } /* '' */ |
|||
.bi_interface-alt-plus:before { content: '\eb41'; } /* '' */ |
|||
.bi_interface-alt-tick:before { content: '\eb42'; } /* '' */ |
|||
.bi_interface-alt-widescreen:before { content: '\eb43'; } /* '' */ |
|||
.bi_interface-arrow-all:before { content: '\eb44'; } /* '' */ |
|||
.bi_interface-arrow-bottom:before { content: '\eb45'; } /* '' */ |
|||
.bi_interface-arrow-bottom-circle:before { content: '\eb46'; } /* '' */ |
|||
.bi_interface-arrow-left:before { content: '\eb47'; } /* '' */ |
|||
.bi_interface-arrow-left-b:before { content: '\eb48'; } /* '' */ |
|||
.bi_interface-arrow-left-circle:before { content: '\eb49'; } /* '' */ |
|||
.bi_interface-arrow-left-t:before { content: '\eb4a'; } /* '' */ |
|||
.bi_interface-arrow-right:before { content: '\eb4b'; } /* '' */ |
|||
.bi_interface-arrow-right-b:before { content: '\eb4c'; } /* '' */ |
|||
.bi_interface-arrow-right-circle:before { content: '\eb4d'; } /* '' */ |
|||
.bi_interface-arrow-right-t:before { content: '\eb4e'; } /* '' */ |
|||
.bi_interface-arrow-top:before { content: '\eb4f'; } /* '' */ |
|||
.bi_interface-arrow-top-circle:before { content: '\eb50'; } /* '' */ |
|||
.bi_animal-dog-a:before { content: '\eb51'; } /* '' */ |
|||
.bi_interface-horizontal-a-1:before { content: '\eb52'; } /* '' */ |
|||
.bi_interface-vertical-a-1:before { content: '\eb53'; } /* '' */ |
|||
.bi_interface-diag:before { content: '\eb54'; } /* '' */ |
|||
.bi_interface-diag-a:before { content: '\eb55'; } /* '' */ |
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 423 KiB |
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@ |
|||
.fv-has-feedback{position:relative}.fv-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.fv-help-block{display:block}.fv-form-bootstrap .help-block{margin-bottom:0}.fv-form-bootstrap .tooltip-inner{text-align:left}.fv-form-bootstrap .fv-icon-no-label{top:0}.fv-form-bootstrap .fv-bootstrap-icon-input-group{z-index:100}.form-inline.fv-form-bootstrap .form-group{vertical-align:top}.fv-form-foundation .fv-control-feedback{top:21px;right:15px;width:37px;height:37px;line-height:37px}.fv-form-foundation .collapse .fv-control-feedback{top:0;right:0}.fv-form-foundation .fv-icon-no-label,.fv-form-horizontal.fv-form-foundation .fv-control-feedback{top:0}.fv-form-foundation .error .fv-control-feedback{color:#f04124}.error.fv-has-tooltip select,.error.fv-has-tooltip textarea,.fv-form-foundation .error.fv-has-tooltip input{margin-bottom:1rem}.fv-form-pure .fv-control-feedback{top:22px;width:36px;height:36px;line-height:36px}.pure-form-stacked.fv-form-pure .fv-control-feedback{top:4px}.pure-form-aligned .pure-control-group .fv-help-block{margin-top:5px;margin-left:180px}.fv-form-pure .fv-icon-no-label,.pure-form-aligned.fv-form-pure .fv-control-feedback{top:0}.fv-form-pure .fv-has-error .fv-control-feedback,.fv-form-pure .fv-has-error .fv-help-block,.fv-form-pure .fv-has-error label{color:#CA3C3C}.fv-form-semantic .fv-control-feedback.icon{right:7px}.fv-form-semantic .error .icon{color:#d95c5c}.fv-form-horizontal.fv-form-semantic .row{padding-bottom:0}.fv-form-uikit .fv-control-feedback{top:25px;width:30px;height:30px;line-height:30px}.fv-form-uikit .uk-text-danger{display:block}.uk-form-horizontal.fv-form-uikit .fv-control-feedback{top:0}.fv-form-uikit .fv-has-error .fv-control-feedback,.fv-form-uikit .fv-has-error .uk-form-label,.fv-form-uikit .fv-has-error label{color:#D85030}.fv-form-uikit .fv-icon-no-label{top:0} |
@ -0,0 +1,21 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
<title>Iguana / Dashboard dummy</title> |
|||
<link rel="stylesheet" href="css/bootstrap.min.css"> |
|||
<script type="text/javascript" src="js/jquery-3.0.0.min.js"></script> |
|||
<script type="text/javascript" src="js/api.js"></script> |
|||
<script type="text/javascript" src="js/login.js"></script> |
|||
</head> |
|||
<body> |
|||
<div class="container-fluid"> |
|||
<div class="row centered"> |
|||
<section class="col-md-3"> |
|||
Dashboard dummy |
|||
</section> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
@ -0,0 +1,43 @@ |
|||
/*! |
|||
* Iguana api config |
|||
* |
|||
*/ |
|||
|
|||
var protocol = "http://"; |
|||
var serverName = "localhost"; |
|||
var serverPort = "7778"; |
|||
var apiRoutes = { |
|||
"bitcoinRPC" : { |
|||
"walletPassphrase" : "bitcoinrpc/walletpassphrase" |
|||
} |
|||
}; |
|||
|
|||
function getServerUrl() { |
|||
return protocol + serverName + ":" + serverPort + '/api/'; |
|||
} |
|||
function walletLogin(passphrase) { |
|||
var result = false; |
|||
|
|||
$.ajax({ |
|||
url: getServerUrl() + apiRoutes.bitcoinRPC.walletPassphrase + "?password=" + passphrase + "&timeout=300", |
|||
cache: false, |
|||
dataType: "text", |
|||
async: false |
|||
}) |
|||
.done(function(_response){ |
|||
var response = $.parseJSON(_response); |
|||
if (response.error) { |
|||
// do something
|
|||
console.log('error: ' + response.error); |
|||
result = false; |
|||
} else { |
|||
if (response.result === "success") { |
|||
result = true; |
|||
} else { |
|||
result = false; |
|||
} |
|||
} |
|||
}); |
|||
|
|||
return result; |
|||
} |
@ -0,0 +1,163 @@ |
|||
$('document').ready(function(){ |
|||
|
|||
$('#login-form').formValidation({ |
|||
framework: 'bootstrap', |
|||
err: { |
|||
container: '#messages' |
|||
}, |
|||
icon: { |
|||
valid: 'glyphicon glyphicon-ok', |
|||
invalid: 'glyphicon glyphicon-remove', |
|||
validating: 'glyphicon glyphicon-refresh' |
|||
}, |
|||
fields: { |
|||
passphrasetext: { |
|||
validators: { |
|||
callback: { |
|||
message: 'Incorrect passphrase, it consist of 24-word. Try to type or paste the passphrase one more time.', |
|||
callback: function (value, validator, $field) { |
|||
if($("#passphrase-text").val().length) { |
|||
$('#login-hint').removeClass('hide'); |
|||
$('#account-login').removeClass('disabled'); |
|||
$('#account-login').prop('disabled', false); |
|||
return true; |
|||
} else { |
|||
$('#login-hint').addClass('hide'); |
|||
$('#account-login').addClass('disabled'); |
|||
$('#account-login').prop('disabled', true); |
|||
return { |
|||
valid: false, |
|||
message: 'Incorrect passphrase, it consist of 24-word. Try to type or paste the passphrase one more time.' |
|||
} |
|||
} |
|||
return true; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}); |
|||
|
|||
|
|||
|
|||
$('#add-passphrase-text').keyup(function(e){ |
|||
e.preventDefault(); |
|||
if($(this).val().length) { |
|||
if(createdPassPhrase.trim() == $(this).val().trim()) { |
|||
$('#paassphrase-confirmation-hint').removeClass('hide'); |
|||
$('#add-account').removeClass('disabled'); |
|||
$('#add-account').prop('disabled', false); |
|||
} else { |
|||
$('#paassphrase-confirmation-hint').removeClass('hide'); |
|||
$('#confirmation-message').text('Incorrect passphrase, it consist of 24-word. Try to type or paste the passphrase one more time.'); |
|||
$('#confirmation-message').addClass('errorMessage'); |
|||
$('#add-account').addClass('disabled'); |
|||
$('#add-account').prop('disabled', true); |
|||
} |
|||
$('#passphrase-text').removeClass('disabled'); |
|||
} else { |
|||
$('#confirmation-message').text('Type or paste the passphrease to confirm you saved it properly'); |
|||
$('#confirmation-message').removeClass('errorMessage'); |
|||
} |
|||
}); |
|||
|
|||
$('#create-account').click(function(e) { |
|||
e.preventDefault(); |
|||
loadCreateAccountScreen(); |
|||
|
|||
}); |
|||
|
|||
$('#login-back').click(function(e) { |
|||
e.preventDefault(); |
|||
loadLoginScreen(); |
|||
|
|||
}); |
|||
|
|||
$('#create-account-next').click(function(e) { |
|||
e.preventDefault(); |
|||
loadSaveAccountScreen(); |
|||
|
|||
}); |
|||
|
|||
$('#account-back').click(function(e) { |
|||
e.preventDefault(); |
|||
loadBacktoAccountScreen(); |
|||
|
|||
}); |
|||
|
|||
function loadCreateAccountScreen() { |
|||
$('#login-form').data('formValidation').resetForm(); |
|||
$('#window-close').addClass('hide'); |
|||
$('#login-hint').addClass('hide'); |
|||
$('#login-form').addClass('hide'); |
|||
$('#login-acreen-actions').addClass('hide'); |
|||
|
|||
|
|||
$('#login-back').removeClass('hide'); |
|||
$('#accounts-label').removeClass('hide'); |
|||
$('#passphrase-hint').removeClass('hide'); |
|||
$('#create-account-form').removeClass('hide'); |
|||
$('#create-account-actions').removeClass('hide'); |
|||
|
|||
var passphrase = PassPhraseGenerator.generatePassPhrase(); |
|||
|
|||
$('#create-passphrase-text').html(passphrase); |
|||
$( '#passphrase-save-check' ).prop( "checked", false ).trigger('change'); |
|||
}; |
|||
|
|||
function loadLoginScreen() { |
|||
$('#window-close').removeClass('hide'); |
|||
$('#login-hint').removeClass('hide'); |
|||
$('#login-form').removeClass('hide'); |
|||
$('#login-form').removeClass('hide'); |
|||
$('#login-acreen-actions').removeClass('hide'); |
|||
|
|||
$('#login-back').addClass('hide'); |
|||
$('#accounts-label').addClass('hide'); |
|||
$('#passphrase-hint').addClass('hide'); |
|||
$('#create-account-form').addClass('hide'); |
|||
$('#create-account-actions').addClass('hide'); |
|||
$('#create-passphrase-text').html(''); |
|||
$("#create-passphrase-text").prop("disabled", false); |
|||
}; |
|||
|
|||
function loadSaveAccountScreen() { |
|||
$('#account-back').removeClass('hide'); |
|||
$('#paassphrase-confirmation-hint').removeClass('hide'); |
|||
$('#add-account-form').removeClass('hide'); |
|||
$('#add-account-actions').removeClass('hide'); |
|||
$('#add-passphrase-text').html('').val(''); |
|||
|
|||
createdPassPhrase = $('#create-passphrase-text').val(); |
|||
|
|||
$('#login-back').addClass('hide'); |
|||
$('#passphrase-hint').addClass('hide'); |
|||
$('#create-account-form').addClass('hide'); |
|||
$('#create-account-actions').addClass('hide'); |
|||
} |
|||
|
|||
function loadBacktoAccountScreen() { |
|||
$('#account-back').addClass('hide'); |
|||
$('#paassphrase-confirmation-hint').addClass('hide'); |
|||
$('#add-account-form').addClass('hide'); |
|||
$('#add-account-actions').addClass('hide'); |
|||
|
|||
$('#login-back').removeClass('hide'); |
|||
$('#passphrase-hint').removeClass('hide'); |
|||
$('#create-account-form').removeClass('hide'); |
|||
$('#create-account-actions').removeClass('hide'); |
|||
$( '#passphrase-save-check' ).prop( "checked", false ).trigger('change'); |
|||
}; |
|||
|
|||
$('#passphrase-save-check').change(function(e) { |
|||
e.preventDefault(); |
|||
|
|||
if($(this).is(":checked")) { |
|||
$('#create-account-next').removeClass('disabled'); |
|||
$('#create-account-next').prop('disabled', false); |
|||
} else { |
|||
$('#create-account-next').addClass('disabled'); |
|||
$('#create-account-next').prop('disabled', true); |
|||
} |
|||
}); |
|||
}); |
@ -0,0 +1,85 @@ |
|||
/****************************************************************************** |
|||
* Copyright © 2016 The Waves Core Developers. * |
|||
* * |
|||
* See the LICENSE files at * |
|||
* the top-level directory of this distribution for the individual copyright * |
|||
* holder information and the developer policies on copyright and licensing. * |
|||
* * |
|||
* Unless otherwise agreed in a custom licensing agreement, no part of the * |
|||
* Waves software, including this file, may be copied, modified, propagated, * |
|||
* or distributed except according to the terms contained in the LICENSE.txt * |
|||
* file. * |
|||
* * |
|||
* Removal or modification of this copyright notice is prohibited. * |
|||
* * |
|||
******************************************************************************/ |
|||
|
|||
/** |
|||
* @depends {../3rdparty/jquery-2.1.0.js} |
|||
*/ |
|||
|
|||
var PassPhraseGenerator = { |
|||
seeds: 0, |
|||
seedLimit: 512, |
|||
|
|||
push: function(seed) { |
|||
Math.seedrandom(seed, true); |
|||
this.seeds++; |
|||
}, |
|||
|
|||
isDone: function() { |
|||
if (this.seeds == this.seedLimit) { |
|||
return true; |
|||
} |
|||
return false; |
|||
}, |
|||
|
|||
percentage: function() { |
|||
return Math.round((this.seeds / this.seedLimit) * 100) |
|||
}, |
|||
|
|||
passPhrase: "", |
|||
|
|||
wordCount: 2048, |
|||
|
|||
words: ClientWordList, |
|||
|
|||
generatePassPhrase: function() { |
|||
|
|||
var crypto = window.crypto || window.msCrypto; |
|||
|
|||
bits = 280; |
|||
|
|||
var random = new Uint32Array(bits / 32); |
|||
|
|||
crypto.getRandomValues(random); |
|||
|
|||
var i = 0, |
|||
l = random.length, |
|||
n = this.wordCount, |
|||
words = [], |
|||
x, w1, w2, w3; |
|||
|
|||
for (; i < l; i++) { |
|||
x = random[i]; |
|||
w1 = x % n; |
|||
w2 = (((x / n) >> 0) + w1) % n; |
|||
w3 = (((((x / n) >> 0) / n) >> 0) + w2) % n; |
|||
|
|||
words.push(this.words[w1]); |
|||
words.push(this.words[w2]); |
|||
words.push(this.words[w3]); |
|||
} |
|||
|
|||
this.passPhrase = words.join(" "); |
|||
|
|||
crypto.getRandomValues(random); |
|||
|
|||
return this.passPhrase; |
|||
}, |
|||
|
|||
reset: function() { |
|||
this.passPhrase = ""; |
|||
this.seeds = 0; |
|||
} |
|||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,48 @@ |
|||
/*! |
|||
* Iguana login |
|||
* |
|||
*/ |
|||
|
|||
$(document).ready(function() { |
|||
$(".btn-signin").click(function() { |
|||
// validate passphrase
|
|||
// condition: 24 words in lower case followed by a single space character
|
|||
var passphraseInput = $("#passphrase").val(); |
|||
var totalSubstr = passphraseInput.match(/\b\w+\b/g); |
|||
var totalSubstrAlpha = passphraseInput.match(/\b[a-z]+\b/g); // count only words consisted of characters
|
|||
var totalSpaces = passphraseInput.match(/\s/g); |
|||
|
|||
if (totalSubstr && totalSubstrAlpha && totalSpaces) |
|||
if (totalSubstr.length === 24 && totalSubstrAlpha.length === 24 && totalSpaces.length === 23) { |
|||
if (walletLogin(passphraseInput)) { |
|||
toggleLoginErrorStyling(false); |
|||
document.location = "dashboard.html"; |
|||
} else { |
|||
toggleLoginErrorStyling(true); |
|||
} |
|||
} else { |
|||
toggleLoginErrorStyling(true); |
|||
} |
|||
else |
|||
toggleLoginErrorStyling(true); |
|||
}); |
|||
$("#passphrase").keyup(function() { |
|||
if ($("#passphrase").val().length > 0) { |
|||
$(".btn-signin").removeClass("disabled"); |
|||
} else { |
|||
$(".btn-signin").addClass("disabled"); |
|||
} |
|||
}); |
|||
}); |
|||
|
|||
function toggleLoginErrorStyling(isError) { |
|||
if (isError) { |
|||
$("#passphrase").addClass("error"); |
|||
$(".login-input-directions-error.col-red").removeClass("hidden"); |
|||
$(".login-input-directions").addClass("hidden"); |
|||
} else { |
|||
$("#passphrase").removeClass("error"); |
|||
$(".login-input-directions-error.col-red").addClass("hidden"); |
|||
} |
|||
$("#passphrase").val(''); |
|||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@ |
|||
/*! |
|||
* FormValidation (http://formvalidation.io)
|
|||
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks |
|||
* |
|||
* @version v0.6.1, built on 2015-02-24 10:14:11 PM |
|||
* @author https://twitter.com/nghuuphuoc
|
|||
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc |
|||
* @license http://formvalidation.io/license/
|
|||
*/ |
|||
!function(a){FormValidation.Framework.Bootstrap=function(b,c,d){c=a.extend(!0,{button:{selector:'[type="submit"]',disabled:"disabled"},err:{clazz:"help-block",parent:"^(.*)col-(xs|sm|md|lg)-(offset-){0,1}[0-9]+(.*)$"},icon:{valid:null,invalid:null,validating:null,feedback:"form-control-feedback"},row:{selector:".form-group",valid:"has-success",invalid:"has-error",feedback:"has-feedback"}},c),FormValidation.Base.apply(this,[b,c,d])},FormValidation.Framework.Bootstrap.prototype=a.extend({},FormValidation.Base.prototype,{_fixIcon:function(a,b){var c=this._namespace,d=a.attr("type"),e=a.attr("data-"+c+"-field"),f=this.options.fields[e].row||this.options.row.selector,g=a.closest(f);if("checkbox"===d||"radio"===d){var h=a.parent();h.hasClass(d)?b.insertAfter(h):h.parent().hasClass(d)&&b.insertAfter(h.parent())}0===g.find("label").length&&b.addClass("fv-icon-no-label"),0!==g.find(".input-group").length&&b.addClass("fv-bootstrap-icon-input-group").insertAfter(g.find(".input-group").eq(0))},_createTooltip:function(a,b,c){var d=this._namespace,e=a.data(d+".icon");if(e)switch(c){case"popover":e.css({cursor:"pointer","pointer-events":"auto"}).popover("destroy").popover({container:"body",content:b,html:!0,placement:"auto top",trigger:"hover click"});break;case"tooltip":default:e.css({cursor:"pointer","pointer-events":"auto"}).tooltip("destroy").tooltip({container:"body",html:!0,placement:"auto top",title:b})}},_destroyTooltip:function(a,b){var c=this._namespace,d=a.data(c+".icon");if(d)switch(b){case"popover":d.css({cursor:"","pointer-events":"none"}).popover("destroy");break;case"tooltip":default:d.css({cursor:"","pointer-events":"none"}).tooltip("destroy")}},_hideTooltip:function(a,b){var c=this._namespace,d=a.data(c+".icon");if(d)switch(b){case"popover":d.popover("hide");break;case"tooltip":default:d.tooltip("hide")}},_showTooltip:function(a,b){var c=this._namespace,d=a.data(c+".icon");if(d)switch(b){case"popover":d.popover("show");break;case"tooltip":default:d.tooltip("show")}}}),a.fn.bootstrapValidator=function(b){var c=arguments;return this.each(function(){var d=a(this),e=d.data("formValidation")||d.data("bootstrapValidator"),f="object"==typeof b&&b;e||(e=new FormValidation.Framework.Bootstrap(this,a.extend({},{events:{formInit:"init.form.bv",formError:"error.form.bv",formSuccess:"success.form.bv",fieldAdded:"added.field.bv",fieldRemoved:"removed.field.bv",fieldInit:"init.field.bv",fieldError:"error.field.bv",fieldSuccess:"success.field.bv",fieldStatus:"status.field.bv",localeChanged:"changed.locale.bv",validatorError:"error.validator.bv",validatorSuccess:"success.validator.bv"}},f),"bv"),d.addClass("fv-form-bootstrap").data("formValidation",e).data("bootstrapValidator",e)),"string"==typeof b&&e[b].apply(e,Array.prototype.slice.call(c,1))})},a.fn.bootstrapValidator.Constructor=FormValidation.Framework.Bootstrap}(jQuery); |
File diff suppressed because one or more lines are too long
@ -0,0 +1,32 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
<title>Iguana / Login</title> |
|||
<link rel="stylesheet" href="css/bootstrap.min.css"> |
|||
<link rel="stylesheet" href="css/login.css"> |
|||
<script type="text/javascript" src="js/jquery-3.0.0.min.js"></script> |
|||
<script type="text/javascript" src="js/api.js"></script> |
|||
<script type="text/javascript" src="js/login.js"></script> |
|||
</head> |
|||
<body> |
|||
<div class="container-fluid"> |
|||
<div class="row centered"> |
|||
<section class="form-container login-form"> |
|||
<header class="form-header orange-gradient box-shadow-bottom"> |
|||
<i class="icon-close text-shadow cursor-pointer">×</i> |
|||
</header> |
|||
<div class="form-content"> |
|||
<div class="login-input-directions-error center offset-bottom-sm col-red hidden unselectable">Incorrect input. Passphrase must consist of 24 words. Try one more time.</div> |
|||
<div class="login-input-directions center offset-bottom-sm unselectable">Type or paste the passphrase to log in</div> |
|||
<textarea name="loginPassphrase" id="passphrase" class="login-passphrase-textarea offset-bottom-sm row center error"></textarea> |
|||
<button class="btn btn-block disabled orange-gradient box-shadow-all text-shadow row btn-signin">Log in</button> |
|||
<div class="login-or-delim center unselectable">or</div> |
|||
<button class="btn btn-block orange-gradient box-shadow-all text-shadow row btn-signup">Create an account</button> |
|||
</div> |
|||
</section> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue