
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_18abbca936da741c8377eba0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1c9a9a6d3896c242ff5ba5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_04d9e4a41f091e7725810175.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4b68c79cb3e3fe1d53e7744b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fa41790517bd229681e3be5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_440d4978b35c9b252015724b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5479cd7923ed442af20bf60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8c0f054ed4c01d02b0a34d70.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2409dc18c62448551f581b93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e140a2f969c3301cae62ad69.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dfe44907a12a8243516f106e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea883a64701d7a9bcd9fd905.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2116104d80b469792c56033a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_37ecc5ecabcf5de2a58ca6d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_aad26df800b43d9ded7b4f05.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7cbda478fa4b7b8b84adda1b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9926da226582bf5395420abe.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_405bc51b85832763e825946b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2cdb583d2170cf7ee0781749.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_34ff47bdc1d9ecad38fcd726.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b5479cd7923ed442af20bf60.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6ff7c986e662a9ce155232ac.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_18b58bd9b65609a119242a7c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f1d87adbda0ecb7c7bc4f399.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ef62b92527537d4a119cd840.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_6ad18e42f774b4f02e2ba9f7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_82a5cd9d5eceeadb4d334e76.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_70b4089e3ccf176363ffe091.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_afd9b867b3dbd65d299cd30f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2453a94c17bb27ba9839efd7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_48fd9e8e343884e6297a3749.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_4934c322b39cf0c085a1212d.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_57c8f13fc0c5241629194f96.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d5812ae11c2ff8700d74561b.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2259c57fe7ad45ea68297e50.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cdee5eed719213ef6b6532f3.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_753c0d643923723e4ae65af3.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_b5479cd7923ed442af20bf60.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_0ddf17905753a026bb7fe902.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_514ac1f7463c27a0363d9396.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_1dcfde56f432450623e94f7d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_e7d9d9bc20bd26e43367092f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_c4bc6033b13c9de3eac899a1.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_2590d3a01a2218120c52ac00.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_8f4b8b22a26b915d29a2ffff.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_9c90ad861c51d41b21c57964.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_1ca28031b8957124afb77b50.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_3eee20dcf979734c7f39cb0e.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_3535d757666f2f7c8896699c.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_0ee8f9094c92300e6225e4ce.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_f319c98b3aae66c67cc0e000.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_b5479cd7923ed442af20bf60.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_ec62f9921ee18431ef2fab17.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_30c00a681bed67477a98bff6.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_efa0b1346c976311c7552144.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_b7166f4a7030f39c94571e40.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_3b4a11a3a136330be2b1a488.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_48ae01bdf1b9103d88462d50.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_27f19dc07b6a4b41e70eb16d.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_5090f3f9f2d174a66cf4ff1c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_a8dacf2462ba6533dfc69b55.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_4bb3150bf039de0e890bcc82.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_c6348aee08fd2ca037571f9b.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_78933e2a8fdee0cdea577eb4.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_50b78420f53dfc578258a16b.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50{transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.107856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107856,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.108992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108992,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.113989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113989,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.118422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118422,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.130266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130266,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.147683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147683,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.148346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148346,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.159171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159171,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.188422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188422,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.197509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197509,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.200818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200818,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.215507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215507,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.218048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218048,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.219491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219491,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.221413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221413,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.222376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222376,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.223429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223429,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.224813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224813,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.226783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226783,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.236971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236971,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237959,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.238408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238408,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.240124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240124,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.241584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241584,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.242394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242394,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.243321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243321,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243604,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.243631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243631,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251351,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.255694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255694,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.255719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255719,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.257628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257628,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.260679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260679,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.261114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261114,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.261754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261754,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.262961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262961,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.262977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262977,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.267228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267228,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267883,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.272198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272198,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.275801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275801,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.302163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302163,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.329203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329203,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.349261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349261,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.433481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433481,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.452292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452292,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.452816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452816,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.460698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460698,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.499991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499991,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.541655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541655,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-192.000000px;}
.v9{vertical-align:-93.180000px;}
.v19{vertical-align:-54.360000px;}
.v18{vertical-align:-48.921869px;}
.v1{vertical-align:-46.080000px;}
.v11{vertical-align:-40.500000px;}
.va{vertical-align:-39.324000px;}
.v8{vertical-align:-34.560000px;}
.v1d{vertical-align:-28.620000px;}
.v1a{vertical-align:-22.860000px;}
.v12{vertical-align:-20.280000px;}
.v1e{vertical-align:-14.340000px;}
.v1b{vertical-align:-11.451000px;}
.v17{vertical-align:-10.140000px;}
.v7{vertical-align:-4.320000px;}
.v5{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.680000px;}
.vd{vertical-align:4.384800px;}
.v10{vertical-align:7.632000px;}
.vb{vertical-align:17.460000px;}
.v6{vertical-align:19.380000px;}
.v14{vertical-align:21.981600px;}
.vf{vertical-align:26.160000px;}
.v2{vertical-align:33.264000px;}
.v3{vertical-align:36.000000px;}
.v15{vertical-align:52.320000px;}
.v1c{vertical-align:60.120000px;}
.v16{vertical-align:64.140000px;}
.v1f{vertical-align:65.820000px;}
.v4{vertical-align:92.736000px;}
.vc{vertical-align:139.620600px;}
.ls5a{letter-spacing:-9.954021px;}
.ls55{letter-spacing:-8.232021px;}
.ls76{letter-spacing:-7.224021px;}
.ls75{letter-spacing:-5.880000px;}
.ls59{letter-spacing:-5.586000px;}
.ls56{letter-spacing:-5.103000px;}
.ls57{letter-spacing:-5.061000px;}
.ls72{letter-spacing:-3.822021px;}
.ls91{letter-spacing:-3.717021px;}
.ls73{letter-spacing:-3.696000px;}
.ls74{letter-spacing:-3.603620px;}
.ls7e{letter-spacing:-3.570000px;}
.ls2e{letter-spacing:-3.297000px;}
.ls31{letter-spacing:-2.814000px;}
.ls69{letter-spacing:-2.436000px;}
.ls3f{letter-spacing:-2.352000px;}
.ls4c{letter-spacing:-2.331000px;}
.ls50{letter-spacing:-2.310000px;}
.ls34{letter-spacing:-2.289000px;}
.ls29{letter-spacing:-2.268000px;}
.ls3c{letter-spacing:-2.184000px;}
.ls45{letter-spacing:-2.162820px;}
.ls28{letter-spacing:-2.058000px;}
.ls51{letter-spacing:-1.947000px;}
.ls58{letter-spacing:-1.848000px;}
.ls4d{letter-spacing:-1.693860px;}
.ls44{letter-spacing:-1.645020px;}
.ls8d{letter-spacing:-1.533021px;}
.ls6c{letter-spacing:-1.280400px;}
.ls17{letter-spacing:-1.266000px;}
.ls1a{letter-spacing:-1.224000px;}
.ls13{letter-spacing:-1.188000px;}
.ls67{letter-spacing:-1.086000px;}
.ls79{letter-spacing:-1.008000px;}
.ls7b{letter-spacing:-0.966000px;}
.ls43{letter-spacing:-0.915060px;}
.ls96{letter-spacing:-0.852733px;}
.ls52{letter-spacing:-0.850200px;}
.ls94{letter-spacing:-0.807360px;}
.ls5{letter-spacing:-0.684000px;}
.ls8f{letter-spacing:-0.660300px;}
.ls40{letter-spacing:-0.640920px;}
.ls7a{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.420240px;}
.ls4f{letter-spacing:-0.364620px;}
.ls78{letter-spacing:-0.319800px;}
.ls3d{letter-spacing:-0.228660px;}
.ls14{letter-spacing:-0.132000px;}
.ls39{letter-spacing:-0.111180px;}
.ls71{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.030900px;}
.ls5d{letter-spacing:0.044640px;}
.ls1d{letter-spacing:0.120960px;}
.ls7{letter-spacing:0.145200px;}
.lsd{letter-spacing:0.163800px;}
.ls66{letter-spacing:0.174600px;}
.ls15{letter-spacing:0.175800px;}
.ls10{letter-spacing:0.175968px;}
.lsb{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.247800px;}
.lse{letter-spacing:0.252000px;}
.ls3a{letter-spacing:0.261600px;}
.ls70{letter-spacing:0.310080px;}
.ls63{letter-spacing:0.314280px;}
.ls1b{letter-spacing:0.340200px;}
.lsf{letter-spacing:0.352200px;}
.ls4{letter-spacing:0.370800px;}
.ls8{letter-spacing:0.406200px;}
.ls49{letter-spacing:0.431345px;}
.ls12{letter-spacing:0.432000px;}
.ls82{letter-spacing:0.452400px;}
.ls11{letter-spacing:0.468000px;}
.ls68{letter-spacing:0.472200px;}
.ls85{letter-spacing:0.489607px;}
.ls3e{letter-spacing:0.531480px;}
.ls90{letter-spacing:0.643260px;}
.ls47{letter-spacing:0.673920px;}
.ls81{letter-spacing:0.680520px;}
.ls54{letter-spacing:0.755040px;}
.ls93{letter-spacing:0.783912px;}
.ls4b{letter-spacing:0.816960px;}
.ls41{letter-spacing:0.843660px;}
.ls36{letter-spacing:0.899640px;}
.ls80{letter-spacing:0.941293px;}
.ls62{letter-spacing:0.995220px;}
.ls23{letter-spacing:1.034880px;}
.ls2a{letter-spacing:1.042320px;}
.ls26{letter-spacing:1.104480px;}
.ls6d{letter-spacing:1.176240px;}
.ls32{letter-spacing:1.223640px;}
.ls8b{letter-spacing:1.248180px;}
.ls2d{letter-spacing:1.266900px;}
.ls3{letter-spacing:1.356480px;}
.ls65{letter-spacing:1.378080px;}
.ls83{letter-spacing:1.405920px;}
.ls6{letter-spacing:1.512000px;}
.ls86{letter-spacing:1.534103px;}
.ls1f{letter-spacing:1.545000px;}
.ls20{letter-spacing:1.589220px;}
.ls18{letter-spacing:1.615968px;}
.ls53{letter-spacing:1.622400px;}
.ls1c{letter-spacing:1.711860px;}
.ls35{letter-spacing:1.731960px;}
.ls22{letter-spacing:1.792200px;}
.ls38{letter-spacing:1.799280px;}
.ls25{letter-spacing:1.851480px;}
.ls24{letter-spacing:1.864800px;}
.ls8e{letter-spacing:1.950030px;}
.ls92{letter-spacing:2.040030px;}
.ls95{letter-spacing:2.053200px;}
.ls27{letter-spacing:2.091240px;}
.ls6a{letter-spacing:2.178480px;}
.ls30{letter-spacing:2.292780px;}
.ls4a{letter-spacing:2.370030px;}
.ls1e{letter-spacing:2.373120px;}
.ls61{letter-spacing:2.456880px;}
.ls8c{letter-spacing:2.520000px;}
.ls33{letter-spacing:2.640000px;}
.ls2f{letter-spacing:2.663580px;}
.ls89{letter-spacing:2.910000px;}
.ls37{letter-spacing:2.970000px;}
.ls64{letter-spacing:2.992800px;}
.ls4e{letter-spacing:3.000000px;}
.ls42{letter-spacing:3.030000px;}
.ls2c{letter-spacing:3.090000px;}
.ls84{letter-spacing:3.145920px;}
.ls7d{letter-spacing:3.240000px;}
.ls2b{letter-spacing:3.270000px;}
.ls8a{letter-spacing:3.300000px;}
.ls48{letter-spacing:3.330000px;}
.ls46{letter-spacing:3.390000px;}
.ls88{letter-spacing:3.411060px;}
.ls6b{letter-spacing:3.480000px;}
.ls87{letter-spacing:4.170000px;}
.lsc{letter-spacing:7.375440px;}
.ls7c{letter-spacing:7.440000px;}
.ls5f{letter-spacing:9.600000px;}
.ls77{letter-spacing:10.255968px;}
.ls60{letter-spacing:12.720030px;}
.lsa{letter-spacing:18.936000px;}
.ls9{letter-spacing:19.056000px;}
.ls7f{letter-spacing:35.120875px;}
.ls5e{letter-spacing:40.176000px;}
.ls1{letter-spacing:95.637600px;}
.ls2{letter-spacing:95.688000px;}
.ls5c{letter-spacing:112.320000px;}
.ls6e{letter-spacing:1248.252000px;}
.ls6f{letter-spacing:1289.172000px;}
.ls16{letter-spacing:1330.956000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-108.144000px;}
.ws18{word-spacing:-108.000000px;}
.ws19{word-spacing:-103.200150px;}
.ws1a{word-spacing:-84.000000px;}
.ws1e{word-spacing:-48.000000px;}
.ws3{word-spacing:-44.828064px;}
.ws4{word-spacing:-43.428720px;}
.ws2{word-spacing:-42.632064px;}
.ws1c{word-spacing:-30.536232px;}
.wsb{word-spacing:-30.456000px;}
.wsd{word-spacing:-30.416232px;}
.ws6{word-spacing:-30.276000px;}
.ws7{word-spacing:-30.240000px;}
.wsc{word-spacing:-30.239832px;}
.wsa{word-spacing:-30.227832px;}
.ws5{word-spacing:-30.064032px;}
.ws16{word-spacing:-30.024000px;}
.wse{word-spacing:-29.988000px;}
.ws9{word-spacing:-29.932032px;}
.ws1f{word-spacing:-29.744232px;}
.ws21{word-spacing:-29.484000px;}
.ws22{word-spacing:-29.098032px;}
.ws20{word-spacing:-29.016000px;}
.ws1b{word-spacing:-28.978032px;}
.ws1{word-spacing:-28.964160px;}
.ws8{word-spacing:-28.836000px;}
.wsf{word-spacing:-28.800000px;}
.ws10{word-spacing:-28.798032px;}
.ws1d{word-spacing:-24.331344px;}
.ws28{word-spacing:-19.453200px;}
.ws26{word-spacing:-18.805920px;}
.ws24{word-spacing:-18.361320px;}
.ws25{word-spacing:-17.852400px;}
.ws15{word-spacing:-17.381280px;}
.ws14{word-spacing:-16.846800px;}
.ws27{word-spacing:-16.592640px;}
.ws12{word-spacing:-15.480900px;}
.ws11{word-spacing:-14.520960px;}
.ws23{word-spacing:-12.041443px;}
.ws29{word-spacing:-11.734253px;}
.ws13{word-spacing:-1.174200px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-43.344063px;}
._1e{margin-left:-23.184000px;}
._17{margin-left:-14.794176px;}
._1f{margin-left:-13.220112px;}
._f{margin-left:-9.408528px;}
._31{margin-left:-8.408446px;}
._18{margin-left:-6.315240px;}
._5{margin-left:-5.273280px;}
._1{margin-left:-3.691296px;}
._3{margin-left:-2.109312px;}
._0{margin-left:-1.054656px;}
._4{width:1.318320px;}
._6{width:2.607120px;}
._2{width:3.954960px;}
._e{width:5.103936px;}
._d{width:6.936744px;}
._3c{width:8.076192px;}
._c{width:9.175728px;}
._15{width:10.765692px;}
._33{width:12.351120px;}
._22{width:13.650720px;}
._a{width:17.352672px;}
._9{width:19.296000px;}
._b{width:21.400032px;}
._1a{width:22.602600px;}
._19{width:23.649000px;}
._10{width:27.193680px;}
._26{width:28.302000px;}
._13{width:34.008672px;}
._14{width:35.194320px;}
._35{width:36.226320px;}
._34{width:37.548336px;}
._16{width:40.482000px;}
._46{width:44.794560px;}
._3b{width:61.318320px;}
._3a{width:62.878320px;}
._39{width:64.198992px;}
._7{width:67.082400px;}
._8{width:69.191712px;}
._45{width:86.564400px;}
._2b{width:88.975200px;}
._29{width:95.533579px;}
._1b{width:110.692800px;}
._1c{width:132.024000px;}
._37{width:137.700000px;}
._36{width:138.888000px;}
._38{width:152.702352px;}
._41{width:174.852000px;}
._42{width:180.072600px;}
._47{width:183.349128px;}
._3e{width:198.631080px;}
._43{width:393.648000px;}
._30{width:394.749600px;}
._23{width:485.426020px;}
._2c{width:505.379550px;}
._3f{width:588.414000px;}
._2f{width:669.569760px;}
._3d{width:686.020800px;}
._2d{width:760.754400px;}
._2e{width:976.979550px;}
._44{width:1010.619360px;}
._20{width:1028.423520px;}
._11{width:1306.395024px;}
._32{width:1321.646949px;}
._40{width:1340.758754px;}
._25{width:1384.630380px;}
._21{width:1406.513580px;}
._28{width:1595.486020px;}
._27{width:1683.595200px;}
._2a{width:1882.019550px;}
._24{width:1896.889920px;}
._12{width:2614.813680px;}
.fcd{color:rgb(255,153,51);}
.fc0{color:rgb(255,0,0);}
.fc2{color:rgb(55,96,146);}
.fc3{color:rgb(218,64,52);}
.fc7{color:rgb(49,221,82);}
.fc1{color:rgb(147,205,221);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:transparent;}
.fc8{color:rgb(250,0,0);}
.fca{color:rgb(192,80,77);}
.fc9{color:rgb(222,0,0);}
.fcc{color:rgb(0,255,204);}
.fcb{color:rgb(255,153,0);}
.fs55{font-size:17.166000px;}
.fs58{font-size:39.000600px;}
.fs5c{font-size:40.800600px;}
.fs54{font-size:42.600000px;}
.fs57{font-size:43.800600px;}
.fs59{font-size:44.400600px;}
.fs28{font-size:47.400600px;}
.fs1c{font-size:48.000000px;}
.fs56{font-size:50.400000px;}
.fs62{font-size:52.200000px;}
.fs1b{font-size:52.800000px;}
.fs40{font-size:53.400000px;}
.fs29{font-size:55.200000px;}
.fs18{font-size:57.600000px;}
.fs3c{font-size:58.200000px;}
.fs12{font-size:58.800000px;}
.fs1f{font-size:59.400000px;}
.fs2a{font-size:60.000000px;}
.fs14{font-size:60.600000px;}
.fs1d{font-size:61.200000px;}
.fs16{font-size:61.800000px;}
.fs20{font-size:62.400000px;}
.fs5a{font-size:62.940600px;}
.fs61{font-size:63.600000px;}
.fs13{font-size:64.800000px;}
.fs15{font-size:65.400000px;}
.fs2b{font-size:66.000000px;}
.fs1e{font-size:66.600000px;}
.fs21{font-size:67.200000px;}
.fs27{font-size:67.800000px;}
.fs22{font-size:68.400000px;}
.fs3b{font-size:69.600000px;}
.fs19{font-size:71.400000px;}
.fsb{font-size:72.000000px;}
.fs5d{font-size:72.600000px;}
.fs33{font-size:74.400000px;}
.fs26{font-size:75.000000px;}
.fs2e{font-size:75.600000px;}
.fs25{font-size:78.000000px;}
.fs1a{font-size:80.400000px;}
.fse{font-size:80.640000px;}
.fs4b{font-size:81.600000px;}
.fs3e{font-size:82.909200px;}
.fs52{font-size:83.400000px;}
.fs47{font-size:85.200000px;}
.fs5e{font-size:87.000000px;}
.fs53{font-size:88.200000px;}
.fs4f{font-size:88.800000px;}
.fs10{font-size:90.000000px;}
.fs51{font-size:90.600000px;}
.fs4d{font-size:91.800000px;}
.fs2d{font-size:92.400000px;}
.fs17{font-size:94.200000px;}
.fs42{font-size:96.000000px;}
.fs9{font-size:96.480000px;}
.fs60{font-size:97.200600px;}
.fs5f{font-size:97.800000px;}
.fs50{font-size:101.400000px;}
.fs4e{font-size:102.000000px;}
.fs45{font-size:105.600000px;}
.fs5b{font-size:106.200600px;}
.fsa{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs23{font-size:108.600000px;}
.fs44{font-size:109.200600px;}
.fs49{font-size:112.800000px;}
.fs3f{font-size:113.454600px;}
.fs46{font-size:119.400000px;}
.fsd{font-size:119.520000px;}
.fsf{font-size:119.664000px;}
.fs6{font-size:128.160000px;}
.fs4a{font-size:129.600000px;}
.fs24{font-size:136.200600px;}
.fs31{font-size:142.800000px;}
.fs4{font-size:144.000000px;}
.fs35{font-size:144.144000px;}
.fs30{font-size:144.600000px;}
.fs2f{font-size:145.800000px;}
.fs32{font-size:159.600000px;}
.fs48{font-size:168.000000px;}
.fs1{font-size:168.480000px;}
.fs2{font-size:168.624000px;}
.fs7{font-size:191.520000px;}
.fs5{font-size:191.664000px;}
.fs37{font-size:192.000000px;}
.fs3d{font-size:199.200600px;}
.fs4c{font-size:206.400600px;}
.fs43{font-size:207.000000px;}
.fs36{font-size:216.000000px;}
.fs63{font-size:216.144000px;}
.fs2c{font-size:235.200600px;}
.fs11{font-size:240.480000px;}
.fs3{font-size:240.624000px;}
.fs3a{font-size:254.400600px;}
.fsc{font-size:263.520000px;}
.fs0{font-size:263.664000px;}
.fs34{font-size:284.400600px;}
.fs41{font-size:292.800000px;}
.fs39{font-size:336.000000px;}
.fs38{font-size:412.800600px;}
.y6d{bottom:-25.092000px;}
.y1b{bottom:-10.116000px;}
.y51{bottom:-6.516000px;}
.y0{bottom:0.000000px;}
.y67{bottom:0.432000px;}
.y45{bottom:1.188000px;}
.y42{bottom:1.980000px;}
.y22{bottom:4.174050px;}
.y6c{bottom:7.344000px;}
.y98{bottom:8.676000px;}
.y24{bottom:8.784000px;}
.y44{bottom:10.404000px;}
.y2a{bottom:11.268000px;}
.yb{bottom:11.448000px;}
.y1f{bottom:12.888000px;}
.y1a{bottom:22.284000px;}
.y54{bottom:24.948000px;}
.y50{bottom:25.884000px;}
.yb2{bottom:26.028000px;}
.yd2{bottom:30.780000px;}
.y3a{bottom:32.832000px;}
.y49{bottom:33.588000px;}
.y41{bottom:34.380000px;}
.ya1{bottom:34.416000px;}
.yef{bottom:37.741200px;}
.y97{bottom:41.112000px;}
.y23{bottom:41.220000px;}
.y37{bottom:41.292000px;}
.y43{bottom:42.804000px;}
.yee{bottom:49.891200px;}
.yed{bottom:53.476200px;}
.y19{bottom:54.720000px;}
.y4f{bottom:58.320000px;}
.yd1{bottom:59.955000px;}
.ye9{bottom:63.478950px;}
.y40{bottom:66.780000px;}
.ya0{bottom:66.816000px;}
.yec{bottom:67.066200px;}
.yd0{bottom:73.332000px;}
.yea{bottom:74.206200px;}
.y39{bottom:75.240000px;}
.yb3{bottom:75.600000px;}
.yb4{bottom:76.752000px;}
.yeb{bottom:79.216200px;}
.y63{bottom:80.400000px;}
.y5b{bottom:81.615000px;}
.y18{bottom:87.120000px;}
.y4e{bottom:90.720000px;}
.ye8{bottom:94.951200px;}
.y5a{bottom:96.000000px;}
.y9f{bottom:99.252000px;}
.ycf{bottom:105.732000px;}
.ye7{bottom:108.541200px;}
.y59{bottom:112.800000px;}
.y17{bottom:119.556000px;}
.y4d{bottom:123.156000px;}
.yca{bottom:123.195000px;}
.y95{bottom:123.624000px;}
.ye6{bottom:124.996200px;}
.yaf{bottom:127.377300px;}
.y57{bottom:129.595050px;}
.y58{bottom:129.600000px;}
.y62{bottom:130.800000px;}
.y9e{bottom:135.706200px;}
.yce{bottom:138.168000px;}
.y56{bottom:145.215000px;}
.y9d{bottom:145.396200px;}
.y16{bottom:151.950000px;}
.y9c{bottom:152.308200px;}
.y4c{bottom:154.830000px;}
.ye5{bottom:155.041200px;}
.y94{bottom:156.060000px;}
.ye4{bottom:160.036200px;}
.y9b{bottom:163.396200px;}
.yc9{bottom:164.535327px;}
.ycd{bottom:170.565000px;}
.yae{bottom:171.012150px;}
.y9a{bottom:171.706200px;}
.y85{bottom:173.775000px;}
.y93{bottom:188.460000px;}
.y5c{bottom:192.000000px;}
.ycc{bottom:202.965000px;}
.yc8{bottom:207.560364px;}
.y99{bottom:210.466200px;}
.ye3{bottom:216.541200px;}
.y92{bottom:220.860000px;}
.y61{bottom:225.600000px;}
.yd3{bottom:236.520000px;}
.y60{bottom:237.601500px;}
.y10{bottom:237.885000px;}
.y84{bottom:238.605000px;}
.ye1{bottom:242.296200px;}
.ye2{bottom:245.146200px;}
.ye0{bottom:250.876200px;}
.yc6{bottom:251.032573px;}
.y91{bottom:253.290000px;}
.y5f{bottom:255.600000px;}
.y2b{bottom:262.440000px;}
.y5e{bottom:267.600000px;}
.ydf{bottom:268.036200px;}
.yc7{bottom:268.740000px;}
.yde{bottom:280.201200px;}
.yc5{bottom:292.365000px;}
.y83{bottom:303.450000px;}
.y2f{bottom:305.355000px;}
.yf{bottom:307.050000px;}
.ydd{bottom:308.086200px;}
.y90{bottom:308.985000px;}
.yc4{bottom:312.195000px;}
.y28{bottom:316.725000px;}
.y3c{bottom:323.640000px;}
.yc3{bottom:328.650000px;}
.y48{bottom:331.275000px;}
.y66{bottom:332.280000px;}
.ydc{bottom:334.561200px;}
.yc1{bottom:335.400000px;}
.y82{bottom:346.650000px;}
.y38{bottom:348.375000px;}
.y27{bottom:349.170000px;}
.yc2{bottom:349.740000px;}
.ydb{bottom:353.146200px;}
.y3b{bottom:356.040000px;}
.yda{bottom:357.451200px;}
.y8f{bottom:360.870000px;}
.ye{bottom:364.650000px;}
.y65{bottom:364.680000px;}
.yc0{bottom:366.195000px;}
.ybf{bottom:377.160000px;}
.y26{bottom:381.570000px;}
.y29{bottom:382.500000px;}
.y69{bottom:383.295000px;}
.y81{bottom:389.880000px;}
.y46{bottom:390.210000px;}
.yd9{bottom:400.351200px;}
.y3f{bottom:401.115000px;}
.yad{bottom:402.282150px;}
.y8e{bottom:404.100000px;}
.ybe{bottom:414.705000px;}
.y68{bottom:415.695000px;}
.yd8{bottom:423.241200px;}
.y5{bottom:426.165000px;}
.yac{bottom:431.727150px;}
.y3e{bottom:433.515000px;}
.yd{bottom:433.800000px;}
.ya6{bottom:441.552150px;}
.y8d{bottom:447.300000px;}
.yab{bottom:449.187150px;}
.y80{bottom:454.710000px;}
.yd7{bottom:459.721200px;}
.ya9{bottom:464.457300px;}
.y6b{bottom:468.255000px;}
.y4{bottom:471.525000px;}
.ya7{bottom:472.092150px;}
.ya8{bottom:476.457300px;}
.y36{bottom:483.810000px;}
.ya5{bottom:485.187150px;}
.yaa{bottom:486.282150px;}
.y8c{bottom:490.530000px;}
.y7f{bottom:497.910000px;}
.ybd{bottom:499.500000px;}
.y6a{bottom:500.685000px;}
.y7a{bottom:501.675000px;}
.yc{bottom:502.950000px;}
.yd6{bottom:511.936200px;}
.y3{bottom:516.930000px;}
.ybc{bottom:517.230000px;}
.yd5{bottom:531.961200px;}
.y8b{bottom:533.730000px;}
.y7e{bottom:541.155000px;}
.y79{bottom:548.100000px;}
.y78{bottom:555.675000px;}
.y77{bottom:561.075000px;}
.y2e{bottom:565.410000px;}
.y76{bottom:567.000000px;}
.yba{bottom:567.855000px;}
.y89{bottom:570.495000px;}
.ybb{bottom:572.070000px;}
.y8a{bottom:576.975000px;}
.y75{bottom:582.675000px;}
.y7d{bottom:584.355000px;}
.y73{bottom:589.695000px;}
.y32{bottom:593.250000px;}
.yb9{bottom:596.115000px;}
.y74{bottom:599.940000px;}
.y2{bottom:604.905000px;}
.yb8{bottom:610.890000px;}
.y72{bottom:612.915000px;}
.yb7{bottom:618.060000px;}
.y13{bottom:618.450000px;}
.y15{bottom:620.130000px;}
.y53{bottom:623.130000px;}
.y7c{bottom:627.585000px;}
.yf2{bottom:637.665000px;}
.y2d{bottom:644.655000px;}
.y5d{bottom:645.600000px;}
.yb1{bottom:652.830000px;}
.y87{bottom:653.835000px;}
.yb6{bottom:657.705000px;}
.y12{bottom:662.370000px;}
.ya{bottom:663.945000px;}
.y14{bottom:664.050000px;}
.y31{bottom:665.280000px;}
.y55{bottom:669.600000px;}
.y35{bottom:670.065000px;}
.yb5{bottom:670.365000px;}
.y7b{bottom:670.785000px;}
.y1d{bottom:679.890000px;}
.y8{bottom:683.745000px;}
.y1{bottom:684.150000px;}
.y70{bottom:687.675000px;}
.yd4{bottom:688.245000px;}
.y3d{bottom:691.455000px;}
.y52{bottom:702.360000px;}
.yf1{bottom:702.510000px;}
.y33{bottom:704.190000px;}
.y6e{bottom:706.425000px;}
.y88{bottom:710.790000px;}
.ya4{bottom:714.282150px;}
.y6f{bottom:714.885000px;}
.y6{bottom:717.045000px;}
.ycb{bottom:722.190000px;}
.y11{bottom:723.315000px;}
.yb0{bottom:723.420000px;}
.y2c{bottom:723.885000px;}
.y86{bottom:725.865000px;}
.y96{bottom:730.830000px;}
.y21{bottom:734.145000px;}
.y9{bottom:735.990000px;}
.y30{bottom:737.310000px;}
.y1e{bottom:740.415000px;}
.y34{bottom:742.110000px;}
.ya3{bottom:744.822150px;}
.y7{bottom:746.205000px;}
.y64{bottom:747.900000px;}
.y1c{bottom:751.935000px;}
.ya2{bottom:754.647150px;}
.y25{bottom:757.470000px;}
.y4b{bottom:759.570000px;}
.y4a{bottom:759.630000px;}
.yf0{bottom:767.340000px;}
.y47{bottom:768.060000px;}
.y71{bottom:768.960000px;}
.y20{bottom:770.190000px;}
.h6a{height:11.432556px;}
.h21{height:31.968000px;}
.h71{height:40.043558px;}
.h6d{height:40.676407px;}
.h69{height:41.809570px;}
.h6f{height:41.918440px;}
.h6c{height:42.987894px;}
.h6e{height:43.576761px;}
.h30{height:46.521097px;}
.h6b{height:49.464844px;}
.h20{height:51.820313px;}
.h4d{height:52.409180px;}
.h31{height:54.175781px;}
.h3b{height:55.068750px;}
.h4a{height:55.217527px;}
.h67{height:57.091699px;}
.h18{height:57.708984px;}
.h32{height:58.857422px;}
.h22{height:60.064453px;}
.h1c{height:60.653320px;}
.h51{height:60.700781px;}
.h2f{height:61.242188px;}
.h25{height:61.326563px;}
.h24{height:61.952344px;}
.h1a{height:63.203906px;}
.h75{height:63.597656px;}
.h50{height:63.936000px;}
.h1b{height:64.186523px;}
.h33{height:64.775391px;}
.h26{height:65.081250px;}
.h2d{height:65.364258px;}
.h27{height:65.953125px;}
.h76{height:66.332812px;}
.h2e{height:66.541992px;}
.h28{height:67.130859px;}
.h19{height:67.584375px;}
.h77{height:68.274609px;}
.h68{height:68.835938px;}
.h23{height:69.461719px;}
.h1e{height:70.060132px;}
.h72{height:71.252930px;}
.h47{height:72.590625px;}
.h3d{height:75.093750px;}
.h4c{height:75.560764px;}
.h4f{height:76.975425px;}
.h48{height:78.160781px;}
.h2c{height:78.222656px;}
.h14{height:78.626953px;}
.h13{height:78.731789px;}
.h38{height:78.848437px;}
.h1f{height:78.908203px;}
.h42{height:79.998047px;}
.h2b{height:81.351562px;}
.h5f{height:82.237500px;}
.h73{height:85.385742px;}
.h66{height:86.983594px;}
.h5d{height:88.860937px;}
.h4b{height:90.685547px;}
.h1d{height:92.452148px;}
.hf{height:93.867188px;}
.h56{height:94.289062px;}
.h54{height:94.414781px;}
.h36{height:98.228438px;}
.ha{height:100.625625px;}
.h55{height:102.046781px;}
.h70{height:104.230081px;}
.h61{height:105.720937px;}
.h62{height:106.382812px;}
.h29{height:106.584961px;}
.h57{height:107.174417px;}
.h11{height:109.968750px;}
.h41{height:110.078719px;}
.h58{height:110.137500px;}
.h5b{height:110.707031px;}
.hb{height:112.640625px;}
.h9{height:112.790813px;}
.h78{height:120.262969px;}
.hd{height:124.655625px;}
.he{height:124.805812px;}
.h5e{height:135.168750px;}
.h39{height:141.916992px;}
.h2a{height:142.052970px;}
.h37{height:143.094727px;}
.h16{height:146.368406px;}
.h3a{height:148.935938px;}
.h5{height:150.187500px;}
.h3f{height:150.337688px;}
.h74{height:155.051812px;}
.h3c{height:166.457813px;}
.h8{height:167.205937px;}
.h7{height:167.331656px;}
.h59{height:168.157500px;}
.h5c{height:171.314417px;}
.h5a{height:175.218750px;}
.h2{height:175.719375px;}
.h3{height:175.869563px;}
.h53{height:183.757781px;}
.h40{height:188.578125px;}
.h79{height:188.703844px;}
.h43{height:200.250000px;}
.h10{height:201.352781px;}
.h15{height:205.376625px;}
.h12{height:209.950312px;}
.h4{height:210.076031px;}
.h60{height:215.269376px;}
.h63{height:225.281250px;}
.hc{height:230.065312px;}
.h1{height:230.191031px;}
.h49{height:230.306147px;}
.h35{height:230.836526px;}
.h46{height:256.388105px;}
.h3e{height:286.622480px;}
.h4e{height:287.367187px;}
.h52{height:313.527187px;}
.h45{height:329.765625px;}
.h44{height:405.141214px;}
.h7a{height:809.999998px;}
.h0{height:810.000000px;}
.h34{height:810.000306px;}
.h6{height:810.000735px;}
.h17{height:810.305101px;}
.h64{height:810.469200px;}
.h65{height:810.750000px;}
.w3{width:1079.999548px;}
.w4{width:1079.999998px;}
.w0{width:1080.000000px;}
.w2{width:1080.000301px;}
.w1{width:1080.000735px;}
.xd{left:-19.008000px;}
.x7c{left:-10.584000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.xbf{left:12.467400px;}
.x37{left:15.120000px;}
.xb5{left:18.032400px;}
.x7e{left:19.404000px;}
.xe{left:21.672000px;}
.x1a{left:23.544000px;}
.x9{left:25.668000px;}
.x8c{left:31.644000px;}
.x83{left:33.360000px;}
.x8{left:35.856000px;}
.xb6{left:38.177400px;}
.x86{left:40.428000px;}
.x19{left:43.135200px;}
.x34{left:44.928000px;}
.xcb{left:46.836000px;}
.x85{left:48.600000px;}
.x36{left:51.480000px;}
.xb3{left:52.577400px;}
.xb7{left:54.497400px;}
.x9a{left:56.448000px;}
.x82{left:57.945000px;}
.xb4{left:61.877400px;}
.xba{left:63.597900px;}
.x84{left:65.415000px;}
.x90{left:74.592000px;}
.x7{left:75.816000px;}
.x35{left:78.696000px;}
.x6{left:81.216000px;}
.x8a{left:83.016000px;}
.x14{left:86.508000px;}
.xa{left:92.016000px;}
.x3c{left:101.670000px;}
.x8b{left:104.256000px;}
.x23{left:105.516000px;}
.x2d{left:108.540000px;}
.xab{left:111.885000px;}
.xc0{left:114.782400px;}
.xca{left:123.156000px;}
.x53{left:124.650000px;}
.xf{left:126.108000px;}
.x3d{left:131.610000px;}
.x3e{left:133.080000px;}
.x17{left:138.816000px;}
.x91{left:140.745000px;}
.x3a{left:148.635000px;}
.x3b{left:153.450000px;}
.x4e{left:159.345000px;}
.x92{left:161.070000px;}
.x1{left:162.150000px;}
.xc1{left:164.762400px;}
.x54{left:166.800000px;}
.xa6{left:172.065000px;}
.x9d{left:178.860000px;}
.xbc{left:182.402400px;}
.x8e{left:185.680350px;}
.x8d{left:187.285350px;}
.xa3{left:191.040000px;}
.x4f{left:192.915000px;}
.x55{left:195.435000px;}
.xb8{left:197.477400px;}
.x87{left:199.230000px;}
.xb9{left:200.927400px;}
.xa9{left:203.550000px;}
.xb0{left:205.427400px;}
.x7a{left:206.790000px;}
.x8f{left:208.975350px;}
.x7b{left:210.750000px;}
.x1e{left:219.165000px;}
.x47{left:225.615000px;}
.x3f{left:227.850000px;}
.x38{left:229.110000px;}
.x56{left:230.190000px;}
.xb1{left:233.912400px;}
.x2a{left:236.265000px;}
.xc2{left:244.112400px;}
.x50{left:249.615000px;}
.xc3{left:266.447400px;}
.x57{left:267.600000px;}
.x12{left:270.360000px;}
.x98{left:274.920000px;}
.x4{left:278.355000px;}
.x48{left:283.170000px;}
.xc4{left:286.457400px;}
.x99{left:289.095000px;}
.xcc{left:290.625000px;}
.xc5{left:304.247400px;}
.xc6{left:307.082400px;}
.x40{left:308.220000px;}
.x89{left:311.250000px;}
.xb{left:312.405000px;}
.x49{left:317.820000px;}
.x7f{left:320.220000px;}
.x41{left:326.190000px;}
.xc7{left:327.947400px;}
.xa7{left:329.655000px;}
.x51{left:331.125000px;}
.x1b{left:332.895000px;}
.x42{left:349.050000px;}
.x88{left:350.100000px;}
.xc8{left:351.512400px;}
.xbb{left:352.967400px;}
.xa5{left:354.885000px;}
.x26{left:357.945000px;}
.xa8{left:359.175000px;}
.x4a{left:360.795000px;}
.x24{left:361.905000px;}
.x46{left:364.275000px;}
.xa4{left:368.265000px;}
.xc9{left:376.487400px;}
.x43{left:386.220000px;}
.x4b{left:388.620000px;}
.x20{left:390.675000px;}
.x16{left:398.235000px;}
.xb2{left:399.347400px;}
.x5{left:400.425000px;}
.x9c{left:402.630000px;}
.x22{left:403.995000px;}
.x2{left:405.570000px;}
.x4c{left:411.525000px;}
.x2e{left:414.825000px;}
.x81{left:416.580000px;}
.x18{left:426.930000px;}
.x29{left:429.045000px;}
.x3{left:431.745000px;}
.x32{left:436.470000px;}
.x27{left:437.865000px;}
.x33{left:439.200000px;}
.x30{left:443.340000px;}
.x21{left:449.385000px;}
.x13{left:454.035000px;}
.x44{left:460.170000px;}
.x1c{left:465.840000px;}
.x2c{left:474.450000px;}
.x58{left:481.020000px;}
.x28{left:483.810000px;}
.x25{left:490.470000px;}
.x94{left:495.120000px;}
.x59{left:500.160000px;}
.x80{left:508.395000px;}
.xac{left:510.077400px;}
.x15{left:512.715000px;}
.x45{left:514.830000px;}
.x52{left:517.155000px;}
.x4d{left:524.205000px;}
.x9b{left:539.385000px;}
.x9e{left:541.575000px;}
.x11{left:550.980000px;}
.x1f{left:576.510000px;}
.x5f{left:580.470000px;}
.xad{left:583.952400px;}
.x67{left:605.595000px;}
.x60{left:613.020000px;}
.x78{left:622.485000px;}
.x7d{left:627.510000px;}
.x70{left:630.630000px;}
.x68{left:633.270000px;}
.xc{left:644.580000px;}
.x61{left:659.970000px;}
.xaa{left:661.650000px;}
.x9f{left:663.480000px;}
.x93{left:667.230000px;}
.x71{left:678.795000px;}
.x72{left:707.820000px;}
.x62{left:710.250000px;}
.xbd{left:719.567400px;}
.xa0{left:728.175000px;}
.x31{left:746.610000px;}
.x69{left:750.870000px;}
.xa1{left:753.030000px;}
.x2f{left:755.250000px;}
.x95{left:758.190000px;}
.x79{left:760.655400px;}
.x63{left:789.435000px;}
.xa2{left:791.820000px;}
.x39{left:797.610000px;}
.xbe{left:800.387400px;}
.x64{left:808.605000px;}
.x73{left:813.525000px;}
.x6a{left:822.720000px;}
.x65{left:831.150000px;}
.x74{left:841.035000px;}
.x6b{left:852.690000px;}
.x66{left:868.665000px;}
.x1d{left:870.015000px;}
.x6c{left:877.140000px;}
.x2b{left:882.795000px;}
.x75{left:897.360000px;}
.x6d{left:904.620000px;}
.xae{left:914.387400px;}
.x97{left:924.990000px;}
.x96{left:926.055000px;}
.x76{left:952.725000px;}
.x6e{left:957.255000px;}
.x5d{left:967.863000px;}
.x5c{left:972.660000px;}
.x5b{left:975.855000px;}
.x77{left:982.635000px;}
.x5a{left:983.715000px;}
.x5e{left:992.400000px;}
.x6f{left:1009.155000px;}
.xaf{left:1042.382400px;}
@media print{
.ve{vertical-align:-170.666667pt;}
.v9{vertical-align:-82.826667pt;}
.v19{vertical-align:-48.320000pt;}
.v18{vertical-align:-43.486106pt;}
.v1{vertical-align:-40.960000pt;}
.v11{vertical-align:-36.000000pt;}
.va{vertical-align:-34.954667pt;}
.v8{vertical-align:-30.720000pt;}
.v1d{vertical-align:-25.440000pt;}
.v1a{vertical-align:-20.320000pt;}
.v12{vertical-align:-18.026667pt;}
.v1e{vertical-align:-12.746667pt;}
.v1b{vertical-align:-10.178667pt;}
.v17{vertical-align:-9.013333pt;}
.v7{vertical-align:-3.840000pt;}
.v5{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:1.493333pt;}
.vd{vertical-align:3.897600pt;}
.v10{vertical-align:6.784000pt;}
.vb{vertical-align:15.520000pt;}
.v6{vertical-align:17.226667pt;}
.v14{vertical-align:19.539200pt;}
.vf{vertical-align:23.253333pt;}
.v2{vertical-align:29.568000pt;}
.v3{vertical-align:32.000000pt;}
.v15{vertical-align:46.506667pt;}
.v1c{vertical-align:53.440000pt;}
.v16{vertical-align:57.013333pt;}
.v1f{vertical-align:58.506667pt;}
.v4{vertical-align:82.432000pt;}
.vc{vertical-align:124.107200pt;}
.ls5a{letter-spacing:-8.848019pt;}
.ls55{letter-spacing:-7.317352pt;}
.ls76{letter-spacing:-6.421352pt;}
.ls75{letter-spacing:-5.226667pt;}
.ls59{letter-spacing:-4.965333pt;}
.ls56{letter-spacing:-4.536000pt;}
.ls57{letter-spacing:-4.498667pt;}
.ls72{letter-spacing:-3.397352pt;}
.ls91{letter-spacing:-3.304019pt;}
.ls73{letter-spacing:-3.285333pt;}
.ls74{letter-spacing:-3.203218pt;}
.ls7e{letter-spacing:-3.173333pt;}
.ls2e{letter-spacing:-2.930667pt;}
.ls31{letter-spacing:-2.501333pt;}
.ls69{letter-spacing:-2.165333pt;}
.ls3f{letter-spacing:-2.090667pt;}
.ls4c{letter-spacing:-2.072000pt;}
.ls50{letter-spacing:-2.053333pt;}
.ls34{letter-spacing:-2.034667pt;}
.ls29{letter-spacing:-2.016000pt;}
.ls3c{letter-spacing:-1.941333pt;}
.ls45{letter-spacing:-1.922507pt;}
.ls28{letter-spacing:-1.829333pt;}
.ls51{letter-spacing:-1.730667pt;}
.ls58{letter-spacing:-1.642667pt;}
.ls4d{letter-spacing:-1.505653pt;}
.ls44{letter-spacing:-1.462240pt;}
.ls8d{letter-spacing:-1.362685pt;}
.ls6c{letter-spacing:-1.138133pt;}
.ls17{letter-spacing:-1.125333pt;}
.ls1a{letter-spacing:-1.088000pt;}
.ls13{letter-spacing:-1.056000pt;}
.ls67{letter-spacing:-0.965333pt;}
.ls79{letter-spacing:-0.896000pt;}
.ls7b{letter-spacing:-0.858667pt;}
.ls43{letter-spacing:-0.813387pt;}
.ls96{letter-spacing:-0.757984pt;}
.ls52{letter-spacing:-0.755733pt;}
.ls94{letter-spacing:-0.717653pt;}
.ls5{letter-spacing:-0.608000pt;}
.ls8f{letter-spacing:-0.586933pt;}
.ls40{letter-spacing:-0.569707pt;}
.ls7a{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.373547pt;}
.ls4f{letter-spacing:-0.324107pt;}
.ls78{letter-spacing:-0.284267pt;}
.ls3d{letter-spacing:-0.203253pt;}
.ls14{letter-spacing:-0.117333pt;}
.ls39{letter-spacing:-0.098827pt;}
.ls71{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.027467pt;}
.ls5d{letter-spacing:0.039680pt;}
.ls1d{letter-spacing:0.107520pt;}
.ls7{letter-spacing:0.129067pt;}
.lsd{letter-spacing:0.145600pt;}
.ls66{letter-spacing:0.155200pt;}
.ls15{letter-spacing:0.156267pt;}
.ls10{letter-spacing:0.156416pt;}
.lsb{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.220267pt;}
.lse{letter-spacing:0.224000pt;}
.ls3a{letter-spacing:0.232533pt;}
.ls70{letter-spacing:0.275627pt;}
.ls63{letter-spacing:0.279360pt;}
.ls1b{letter-spacing:0.302400pt;}
.lsf{letter-spacing:0.313067pt;}
.ls4{letter-spacing:0.329600pt;}
.ls8{letter-spacing:0.361067pt;}
.ls49{letter-spacing:0.383418pt;}
.ls12{letter-spacing:0.384000pt;}
.ls82{letter-spacing:0.402133pt;}
.ls11{letter-spacing:0.416000pt;}
.ls68{letter-spacing:0.419733pt;}
.ls85{letter-spacing:0.435206pt;}
.ls3e{letter-spacing:0.472427pt;}
.ls90{letter-spacing:0.571787pt;}
.ls47{letter-spacing:0.599040pt;}
.ls81{letter-spacing:0.604907pt;}
.ls54{letter-spacing:0.671147pt;}
.ls93{letter-spacing:0.696811pt;}
.ls4b{letter-spacing:0.726187pt;}
.ls41{letter-spacing:0.749920pt;}
.ls36{letter-spacing:0.799680pt;}
.ls80{letter-spacing:0.836705pt;}
.ls62{letter-spacing:0.884640pt;}
.ls23{letter-spacing:0.919893pt;}
.ls2a{letter-spacing:0.926507pt;}
.ls26{letter-spacing:0.981760pt;}
.ls6d{letter-spacing:1.045547pt;}
.ls32{letter-spacing:1.087680pt;}
.ls8b{letter-spacing:1.109493pt;}
.ls2d{letter-spacing:1.126133pt;}
.ls3{letter-spacing:1.205760pt;}
.ls65{letter-spacing:1.224960pt;}
.ls83{letter-spacing:1.249707pt;}
.ls6{letter-spacing:1.344000pt;}
.ls86{letter-spacing:1.363647pt;}
.ls1f{letter-spacing:1.373333pt;}
.ls20{letter-spacing:1.412640pt;}
.ls18{letter-spacing:1.436416pt;}
.ls53{letter-spacing:1.442133pt;}
.ls1c{letter-spacing:1.521653pt;}
.ls35{letter-spacing:1.539520pt;}
.ls22{letter-spacing:1.593067pt;}
.ls38{letter-spacing:1.599360pt;}
.ls25{letter-spacing:1.645760pt;}
.ls24{letter-spacing:1.657600pt;}
.ls8e{letter-spacing:1.733360pt;}
.ls92{letter-spacing:1.813360pt;}
.ls95{letter-spacing:1.825067pt;}
.ls27{letter-spacing:1.858880pt;}
.ls6a{letter-spacing:1.936427pt;}
.ls30{letter-spacing:2.038027pt;}
.ls4a{letter-spacing:2.106693pt;}
.ls1e{letter-spacing:2.109440pt;}
.ls61{letter-spacing:2.183893pt;}
.ls8c{letter-spacing:2.240000pt;}
.ls33{letter-spacing:2.346667pt;}
.ls2f{letter-spacing:2.367627pt;}
.ls89{letter-spacing:2.586667pt;}
.ls37{letter-spacing:2.640000pt;}
.ls64{letter-spacing:2.660267pt;}
.ls4e{letter-spacing:2.666667pt;}
.ls42{letter-spacing:2.693333pt;}
.ls2c{letter-spacing:2.746667pt;}
.ls84{letter-spacing:2.796373pt;}
.ls7d{letter-spacing:2.880000pt;}
.ls2b{letter-spacing:2.906667pt;}
.ls8a{letter-spacing:2.933333pt;}
.ls48{letter-spacing:2.960000pt;}
.ls46{letter-spacing:3.013333pt;}
.ls88{letter-spacing:3.032053pt;}
.ls6b{letter-spacing:3.093333pt;}
.ls87{letter-spacing:3.706667pt;}
.lsc{letter-spacing:6.555947pt;}
.ls7c{letter-spacing:6.613333pt;}
.ls5f{letter-spacing:8.533333pt;}
.ls77{letter-spacing:9.116416pt;}
.ls60{letter-spacing:11.306693pt;}
.lsa{letter-spacing:16.832000pt;}
.ls9{letter-spacing:16.938667pt;}
.ls7f{letter-spacing:31.218555pt;}
.ls5e{letter-spacing:35.712000pt;}
.ls1{letter-spacing:85.011200pt;}
.ls2{letter-spacing:85.056000pt;}
.ls5c{letter-spacing:99.840000pt;}
.ls6e{letter-spacing:1109.557333pt;}
.ls6f{letter-spacing:1145.930667pt;}
.ls16{letter-spacing:1183.072000pt;}
.ws17{word-spacing:-96.128000pt;}
.ws18{word-spacing:-96.000000pt;}
.ws19{word-spacing:-91.733467pt;}
.ws1a{word-spacing:-74.666667pt;}
.ws1e{word-spacing:-42.666667pt;}
.ws3{word-spacing:-39.847168pt;}
.ws4{word-spacing:-38.603307pt;}
.ws2{word-spacing:-37.895168pt;}
.ws1c{word-spacing:-27.143317pt;}
.wsb{word-spacing:-27.072000pt;}
.wsd{word-spacing:-27.036651pt;}
.ws6{word-spacing:-26.912000pt;}
.ws7{word-spacing:-26.880000pt;}
.wsc{word-spacing:-26.879851pt;}
.wsa{word-spacing:-26.869184pt;}
.ws5{word-spacing:-26.723584pt;}
.ws16{word-spacing:-26.688000pt;}
.wse{word-spacing:-26.656000pt;}
.ws9{word-spacing:-26.606251pt;}
.ws1f{word-spacing:-26.439317pt;}
.ws21{word-spacing:-26.208000pt;}
.ws22{word-spacing:-25.864917pt;}
.ws20{word-spacing:-25.792000pt;}
.ws1b{word-spacing:-25.758251pt;}
.ws1{word-spacing:-25.745920pt;}
.ws8{word-spacing:-25.632000pt;}
.wsf{word-spacing:-25.600000pt;}
.ws10{word-spacing:-25.598251pt;}
.ws1d{word-spacing:-21.627861pt;}
.ws28{word-spacing:-17.291733pt;}
.ws26{word-spacing:-16.716373pt;}
.ws24{word-spacing:-16.321173pt;}
.ws25{word-spacing:-15.868800pt;}
.ws15{word-spacing:-15.450027pt;}
.ws14{word-spacing:-14.974933pt;}
.ws27{word-spacing:-14.749013pt;}
.ws12{word-spacing:-13.760800pt;}
.ws11{word-spacing:-12.907520pt;}
.ws23{word-spacing:-10.703505pt;}
.ws29{word-spacing:-10.430447pt;}
.ws13{word-spacing:-1.043733pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-38.528056pt;}
._1e{margin-left:-20.608000pt;}
._17{margin-left:-13.150379pt;}
._1f{margin-left:-11.751211pt;}
._f{margin-left:-8.363136pt;}
._31{margin-left:-7.474174pt;}
._18{margin-left:-5.613547pt;}
._5{margin-left:-4.687360pt;}
._1{margin-left:-3.281152pt;}
._3{margin-left:-1.874944pt;}
._0{margin-left:-0.937472pt;}
._4{width:1.171840pt;}
._6{width:2.317440pt;}
._2{width:3.515520pt;}
._e{width:4.536832pt;}
._d{width:6.165995pt;}
._3c{width:7.178837pt;}
._c{width:8.156203pt;}
._15{width:9.569504pt;}
._33{width:10.978773pt;}
._22{width:12.133973pt;}
._a{width:15.424597pt;}
._9{width:17.152000pt;}
._b{width:19.022251pt;}
._1a{width:20.091200pt;}
._19{width:21.021333pt;}
._10{width:24.172160pt;}
._26{width:25.157333pt;}
._13{width:30.229931pt;}
._14{width:31.283840pt;}
._35{width:32.201173pt;}
._34{width:33.376299pt;}
._16{width:35.984000pt;}
._46{width:39.817387pt;}
._3b{width:54.505173pt;}
._3a{width:55.891840pt;}
._39{width:57.065771pt;}
._7{width:59.628800pt;}
._8{width:61.503744pt;}
._45{width:76.946133pt;}
._2b{width:79.089067pt;}
._29{width:84.918737pt;}
._1b{width:98.393600pt;}
._1c{width:117.354667pt;}
._37{width:122.400000pt;}
._36{width:123.456000pt;}
._38{width:135.735424pt;}
._41{width:155.424000pt;}
._42{width:160.064533pt;}
._47{width:162.977003pt;}
._3e{width:176.560960pt;}
._43{width:349.909333pt;}
._30{width:350.888533pt;}
._23{width:431.489796pt;}
._2c{width:449.226267pt;}
._3f{width:523.034667pt;}
._2f{width:595.173120pt;}
._3d{width:609.796267pt;}
._2d{width:676.226133pt;}
._2e{width:868.426267pt;}
._44{width:898.328320pt;}
._20{width:914.154240pt;}
._11{width:1161.240021pt;}
._32{width:1174.797288pt;}
._40{width:1191.785559pt;}
._25{width:1230.782560pt;}
._21{width:1250.234293pt;}
._28{width:1418.209796pt;}
._27{width:1496.529067pt;}
._2a{width:1672.906267pt;}
._24{width:1686.124373pt;}
._12{width:2324.278827pt;}
.fs55{font-size:15.258667pt;}
.fs58{font-size:34.667200pt;}
.fs5c{font-size:36.267200pt;}
.fs54{font-size:37.866667pt;}
.fs57{font-size:38.933867pt;}
.fs59{font-size:39.467200pt;}
.fs28{font-size:42.133867pt;}
.fs1c{font-size:42.666667pt;}
.fs56{font-size:44.800000pt;}
.fs62{font-size:46.400000pt;}
.fs1b{font-size:46.933333pt;}
.fs40{font-size:47.466667pt;}
.fs29{font-size:49.066667pt;}
.fs18{font-size:51.200000pt;}
.fs3c{font-size:51.733333pt;}
.fs12{font-size:52.266667pt;}
.fs1f{font-size:52.800000pt;}
.fs2a{font-size:53.333333pt;}
.fs14{font-size:53.866667pt;}
.fs1d{font-size:54.400000pt;}
.fs16{font-size:54.933333pt;}
.fs20{font-size:55.466667pt;}
.fs5a{font-size:55.947200pt;}
.fs61{font-size:56.533333pt;}
.fs13{font-size:57.600000pt;}
.fs15{font-size:58.133333pt;}
.fs2b{font-size:58.666667pt;}
.fs1e{font-size:59.200000pt;}
.fs21{font-size:59.733333pt;}
.fs27{font-size:60.266667pt;}
.fs22{font-size:60.800000pt;}
.fs3b{font-size:61.866667pt;}
.fs19{font-size:63.466667pt;}
.fsb{font-size:64.000000pt;}
.fs5d{font-size:64.533333pt;}
.fs33{font-size:66.133333pt;}
.fs26{font-size:66.666667pt;}
.fs2e{font-size:67.200000pt;}
.fs25{font-size:69.333333pt;}
.fs1a{font-size:71.466667pt;}
.fse{font-size:71.680000pt;}
.fs4b{font-size:72.533333pt;}
.fs3e{font-size:73.697067pt;}
.fs52{font-size:74.133333pt;}
.fs47{font-size:75.733333pt;}
.fs5e{font-size:77.333333pt;}
.fs53{font-size:78.400000pt;}
.fs4f{font-size:78.933333pt;}
.fs10{font-size:80.000000pt;}
.fs51{font-size:80.533333pt;}
.fs4d{font-size:81.600000pt;}
.fs2d{font-size:82.133333pt;}
.fs17{font-size:83.733333pt;}
.fs42{font-size:85.333333pt;}
.fs9{font-size:85.760000pt;}
.fs60{font-size:86.400533pt;}
.fs5f{font-size:86.933333pt;}
.fs50{font-size:90.133333pt;}
.fs4e{font-size:90.666667pt;}
.fs45{font-size:93.866667pt;}
.fs5b{font-size:94.400533pt;}
.fsa{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs23{font-size:96.533333pt;}
.fs44{font-size:97.067200pt;}
.fs49{font-size:100.266667pt;}
.fs3f{font-size:100.848533pt;}
.fs46{font-size:106.133333pt;}
.fsd{font-size:106.240000pt;}
.fsf{font-size:106.368000pt;}
.fs6{font-size:113.920000pt;}
.fs4a{font-size:115.200000pt;}
.fs24{font-size:121.067200pt;}
.fs31{font-size:126.933333pt;}
.fs4{font-size:128.000000pt;}
.fs35{font-size:128.128000pt;}
.fs30{font-size:128.533333pt;}
.fs2f{font-size:129.600000pt;}
.fs32{font-size:141.866667pt;}
.fs48{font-size:149.333333pt;}
.fs1{font-size:149.760000pt;}
.fs2{font-size:149.888000pt;}
.fs7{font-size:170.240000pt;}
.fs5{font-size:170.368000pt;}
.fs37{font-size:170.666667pt;}
.fs3d{font-size:177.067200pt;}
.fs4c{font-size:183.467200pt;}
.fs43{font-size:184.000000pt;}
.fs36{font-size:192.000000pt;}
.fs63{font-size:192.128000pt;}
.fs2c{font-size:209.067200pt;}
.fs11{font-size:213.760000pt;}
.fs3{font-size:213.888000pt;}
.fs3a{font-size:226.133867pt;}
.fsc{font-size:234.240000pt;}
.fs0{font-size:234.368000pt;}
.fs34{font-size:252.800533pt;}
.fs41{font-size:260.266667pt;}
.fs39{font-size:298.666667pt;}
.fs38{font-size:366.933867pt;}
.y6d{bottom:-22.304000pt;}
.y1b{bottom:-8.992000pt;}
.y51{bottom:-5.792000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:0.384000pt;}
.y45{bottom:1.056000pt;}
.y42{bottom:1.760000pt;}
.y22{bottom:3.710267pt;}
.y6c{bottom:6.528000pt;}
.y98{bottom:7.712000pt;}
.y24{bottom:7.808000pt;}
.y44{bottom:9.248000pt;}
.y2a{bottom:10.016000pt;}
.yb{bottom:10.176000pt;}
.y1f{bottom:11.456000pt;}
.y1a{bottom:19.808000pt;}
.y54{bottom:22.176000pt;}
.y50{bottom:23.008000pt;}
.yb2{bottom:23.136000pt;}
.yd2{bottom:27.360000pt;}
.y3a{bottom:29.184000pt;}
.y49{bottom:29.856000pt;}
.y41{bottom:30.560000pt;}
.ya1{bottom:30.592000pt;}
.yef{bottom:33.547733pt;}
.y97{bottom:36.544000pt;}
.y23{bottom:36.640000pt;}
.y37{bottom:36.704000pt;}
.y43{bottom:38.048000pt;}
.yee{bottom:44.347733pt;}
.yed{bottom:47.534400pt;}
.y19{bottom:48.640000pt;}
.y4f{bottom:51.840000pt;}
.yd1{bottom:53.293333pt;}
.ye9{bottom:56.425733pt;}
.y40{bottom:59.360000pt;}
.ya0{bottom:59.392000pt;}
.yec{bottom:59.614400pt;}
.yd0{bottom:65.184000pt;}
.yea{bottom:65.961067pt;}
.y39{bottom:66.880000pt;}
.yb3{bottom:67.200000pt;}
.yb4{bottom:68.224000pt;}
.yeb{bottom:70.414400pt;}
.y63{bottom:71.466667pt;}
.y5b{bottom:72.546667pt;}
.y18{bottom:77.440000pt;}
.y4e{bottom:80.640000pt;}
.ye8{bottom:84.401067pt;}
.y5a{bottom:85.333333pt;}
.y9f{bottom:88.224000pt;}
.ycf{bottom:93.984000pt;}
.ye7{bottom:96.481067pt;}
.y59{bottom:100.266667pt;}
.y17{bottom:106.272000pt;}
.y4d{bottom:109.472000pt;}
.yca{bottom:109.506667pt;}
.y95{bottom:109.888000pt;}
.ye6{bottom:111.107733pt;}
.yaf{bottom:113.224267pt;}
.y57{bottom:115.195600pt;}
.y58{bottom:115.200000pt;}
.y62{bottom:116.266667pt;}
.y9e{bottom:120.627733pt;}
.yce{bottom:122.816000pt;}
.y56{bottom:129.080000pt;}
.y9d{bottom:129.241067pt;}
.y16{bottom:135.066667pt;}
.y9c{bottom:135.385067pt;}
.y4c{bottom:137.626667pt;}
.ye5{bottom:137.814400pt;}
.y94{bottom:138.720000pt;}
.ye4{bottom:142.254400pt;}
.y9b{bottom:145.241067pt;}
.yc9{bottom:146.253624pt;}
.ycd{bottom:151.613333pt;}
.yae{bottom:152.010800pt;}
.y9a{bottom:152.627733pt;}
.y85{bottom:154.466667pt;}
.y93{bottom:167.520000pt;}
.y5c{bottom:170.666667pt;}
.ycc{bottom:180.413333pt;}
.yc8{bottom:184.498101pt;}
.y99{bottom:187.081067pt;}
.ye3{bottom:192.481067pt;}
.y92{bottom:196.320000pt;}
.y61{bottom:200.533333pt;}
.yd3{bottom:210.240000pt;}
.y60{bottom:211.201333pt;}
.y10{bottom:211.453333pt;}
.y84{bottom:212.093333pt;}
.ye1{bottom:215.374400pt;}
.ye2{bottom:217.907733pt;}
.ye0{bottom:223.001067pt;}
.yc6{bottom:223.140065pt;}
.y91{bottom:225.146667pt;}
.y5f{bottom:227.200000pt;}
.y2b{bottom:233.280000pt;}
.y5e{bottom:237.866667pt;}
.ydf{bottom:238.254400pt;}
.yc7{bottom:238.880000pt;}
.yde{bottom:249.067733pt;}
.yc5{bottom:259.880000pt;}
.y83{bottom:269.733333pt;}
.y2f{bottom:271.426667pt;}
.yf{bottom:272.933333pt;}
.ydd{bottom:273.854400pt;}
.y90{bottom:274.653333pt;}
.yc4{bottom:277.506667pt;}
.y28{bottom:281.533333pt;}
.y3c{bottom:287.680000pt;}
.yc3{bottom:292.133333pt;}
.y48{bottom:294.466667pt;}
.y66{bottom:295.360000pt;}
.ydc{bottom:297.387733pt;}
.yc1{bottom:298.133333pt;}
.y82{bottom:308.133333pt;}
.y38{bottom:309.666667pt;}
.y27{bottom:310.373333pt;}
.yc2{bottom:310.880000pt;}
.ydb{bottom:313.907733pt;}
.y3b{bottom:316.480000pt;}
.yda{bottom:317.734400pt;}
.y8f{bottom:320.773333pt;}
.ye{bottom:324.133333pt;}
.y65{bottom:324.160000pt;}
.yc0{bottom:325.506667pt;}
.ybf{bottom:335.253333pt;}
.y26{bottom:339.173333pt;}
.y29{bottom:340.000000pt;}
.y69{bottom:340.706667pt;}
.y81{bottom:346.560000pt;}
.y46{bottom:346.853333pt;}
.yd9{bottom:355.867733pt;}
.y3f{bottom:356.546667pt;}
.yad{bottom:357.584133pt;}
.y8e{bottom:359.200000pt;}
.ybe{bottom:368.626667pt;}
.y68{bottom:369.506667pt;}
.yd8{bottom:376.214400pt;}
.y5{bottom:378.813333pt;}
.yac{bottom:383.757467pt;}
.y3e{bottom:385.346667pt;}
.yd{bottom:385.600000pt;}
.ya6{bottom:392.490800pt;}
.y8d{bottom:397.600000pt;}
.yab{bottom:399.277467pt;}
.y80{bottom:404.186667pt;}
.yd7{bottom:408.641067pt;}
.ya9{bottom:412.850933pt;}
.y6b{bottom:416.226667pt;}
.y4{bottom:419.133333pt;}
.ya7{bottom:419.637467pt;}
.ya8{bottom:423.517600pt;}
.y36{bottom:430.053333pt;}
.ya5{bottom:431.277467pt;}
.yaa{bottom:432.250800pt;}
.y8c{bottom:436.026667pt;}
.y7f{bottom:442.586667pt;}
.ybd{bottom:444.000000pt;}
.y6a{bottom:445.053333pt;}
.y7a{bottom:445.933333pt;}
.yc{bottom:447.066667pt;}
.yd6{bottom:455.054400pt;}
.y3{bottom:459.493333pt;}
.ybc{bottom:459.760000pt;}
.yd5{bottom:472.854400pt;}
.y8b{bottom:474.426667pt;}
.y7e{bottom:481.026667pt;}
.y79{bottom:487.200000pt;}
.y78{bottom:493.933333pt;}
.y77{bottom:498.733333pt;}
.y2e{bottom:502.586667pt;}
.y76{bottom:504.000000pt;}
.yba{bottom:504.760000pt;}
.y89{bottom:507.106667pt;}
.ybb{bottom:508.506667pt;}
.y8a{bottom:512.866667pt;}
.y75{bottom:517.933333pt;}
.y7d{bottom:519.426667pt;}
.y73{bottom:524.173333pt;}
.y32{bottom:527.333333pt;}
.yb9{bottom:529.880000pt;}
.y74{bottom:533.280000pt;}
.y2{bottom:537.693333pt;}
.yb8{bottom:543.013333pt;}
.y72{bottom:544.813333pt;}
.yb7{bottom:549.386667pt;}
.y13{bottom:549.733333pt;}
.y15{bottom:551.226667pt;}
.y53{bottom:553.893333pt;}
.y7c{bottom:557.853333pt;}
.yf2{bottom:566.813333pt;}
.y2d{bottom:573.026667pt;}
.y5d{bottom:573.866667pt;}
.yb1{bottom:580.293333pt;}
.y87{bottom:581.186667pt;}
.yb6{bottom:584.626667pt;}
.y12{bottom:588.773333pt;}
.ya{bottom:590.173333pt;}
.y14{bottom:590.266667pt;}
.y31{bottom:591.360000pt;}
.y55{bottom:595.200000pt;}
.y35{bottom:595.613333pt;}
.yb5{bottom:595.880000pt;}
.y7b{bottom:596.253333pt;}
.y1d{bottom:604.346667pt;}
.y8{bottom:607.773333pt;}
.y1{bottom:608.133333pt;}
.y70{bottom:611.266667pt;}
.yd4{bottom:611.773333pt;}
.y3d{bottom:614.626667pt;}
.y52{bottom:624.320000pt;}
.yf1{bottom:624.453333pt;}
.y33{bottom:625.946667pt;}
.y6e{bottom:627.933333pt;}
.y88{bottom:631.813333pt;}
.ya4{bottom:634.917467pt;}
.y6f{bottom:635.453333pt;}
.y6{bottom:637.373333pt;}
.ycb{bottom:641.946667pt;}
.y11{bottom:642.946667pt;}
.yb0{bottom:643.040000pt;}
.y2c{bottom:643.453333pt;}
.y86{bottom:645.213333pt;}
.y96{bottom:649.626667pt;}
.y21{bottom:652.573333pt;}
.y9{bottom:654.213333pt;}
.y30{bottom:655.386667pt;}
.y1e{bottom:658.146667pt;}
.y34{bottom:659.653333pt;}
.ya3{bottom:662.064133pt;}
.y7{bottom:663.293333pt;}
.y64{bottom:664.800000pt;}
.y1c{bottom:668.386667pt;}
.ya2{bottom:670.797467pt;}
.y25{bottom:673.306667pt;}
.y4b{bottom:675.173333pt;}
.y4a{bottom:675.226667pt;}
.yf0{bottom:682.080000pt;}
.y47{bottom:682.720000pt;}
.y71{bottom:683.520000pt;}
.y20{bottom:684.613333pt;}
.h6a{height:10.162272pt;}
.h21{height:28.416000pt;}
.h71{height:35.594273pt;}
.h6d{height:36.156806pt;}
.h69{height:37.164062pt;}
.h6f{height:37.260835pt;}
.h6c{height:38.211461pt;}
.h6e{height:38.734898pt;}
.h30{height:41.352086pt;}
.h6b{height:43.968750pt;}
.h20{height:46.062500pt;}
.h4d{height:46.585938pt;}
.h31{height:48.156250pt;}
.h3b{height:48.950000pt;}
.h4a{height:49.082246pt;}
.h67{height:50.748177pt;}
.h18{height:51.296875pt;}
.h32{height:52.317708pt;}
.h22{height:53.390625pt;}
.h1c{height:53.914062pt;}
.h51{height:53.956250pt;}
.h2f{height:54.437500pt;}
.h25{height:54.512500pt;}
.h24{height:55.068750pt;}
.h1a{height:56.181250pt;}
.h75{height:56.531250pt;}
.h50{height:56.832000pt;}
.h1b{height:57.054688pt;}
.h33{height:57.578125pt;}
.h26{height:57.850000pt;}
.h2d{height:58.101562pt;}
.h27{height:58.625000pt;}
.h76{height:58.962500pt;}
.h2e{height:59.148438pt;}
.h28{height:59.671875pt;}
.h19{height:60.075000pt;}
.h77{height:60.688542pt;}
.h68{height:61.187500pt;}
.h23{height:61.743750pt;}
.h1e{height:62.275673pt;}
.h72{height:63.335938pt;}
.h47{height:64.525000pt;}
.h3d{height:66.750000pt;}
.h4c{height:67.165123pt;}
.h4f{height:68.422600pt;}
.h48{height:69.476250pt;}
.h2c{height:69.531250pt;}
.h14{height:69.890625pt;}
.h13{height:69.983812pt;}
.h38{height:70.087500pt;}
.h1f{height:70.140625pt;}
.h42{height:71.109375pt;}
.h2b{height:72.312500pt;}
.h5f{height:73.100000pt;}
.h73{height:75.898438pt;}
.h66{height:77.318750pt;}
.h5d{height:78.987500pt;}
.h4b{height:80.609375pt;}
.h1d{height:82.179687pt;}
.hf{height:83.437500pt;}
.h56{height:83.812500pt;}
.h54{height:83.924250pt;}
.h36{height:87.314167pt;}
.ha{height:89.445000pt;}
.h55{height:90.708250pt;}
.h70{height:92.648961pt;}
.h61{height:93.974167pt;}
.h62{height:94.562500pt;}
.h29{height:94.742188pt;}
.h57{height:95.266148pt;}
.h11{height:97.750000pt;}
.h41{height:97.847750pt;}
.h58{height:97.900000pt;}
.h5b{height:98.406250pt;}
.hb{height:100.125000pt;}
.h9{height:100.258500pt;}
.h78{height:106.900417pt;}
.hd{height:110.805000pt;}
.he{height:110.938500pt;}
.h5e{height:120.150000pt;}
.h39{height:126.148438pt;}
.h2a{height:126.269306pt;}
.h37{height:127.195312pt;}
.h16{height:130.105250pt;}
.h3a{height:132.387500pt;}
.h5{height:133.500000pt;}
.h3f{height:133.633500pt;}
.h74{height:137.823833pt;}
.h3c{height:147.962500pt;}
.h8{height:148.627500pt;}
.h7{height:148.739250pt;}
.h59{height:149.473333pt;}
.h5c{height:152.279482pt;}
.h5a{height:155.750000pt;}
.h2{height:156.195000pt;}
.h3{height:156.328500pt;}
.h53{height:163.340250pt;}
.h40{height:167.625000pt;}
.h79{height:167.736750pt;}
.h43{height:178.000000pt;}
.h10{height:178.980250pt;}
.h15{height:182.557000pt;}
.h12{height:186.622500pt;}
.h4{height:186.734250pt;}
.h60{height:191.350556pt;}
.h63{height:200.250000pt;}
.hc{height:204.502500pt;}
.h1{height:204.614250pt;}
.h49{height:204.716575pt;}
.h35{height:205.188023pt;}
.h46{height:227.900537pt;}
.h3e{height:254.775537pt;}
.h4e{height:255.437500pt;}
.h52{height:278.690833pt;}
.h45{height:293.125000pt;}
.h44{height:360.125523pt;}
.h7a{height:719.999999pt;}
.h0{height:720.000000pt;}
.h34{height:720.000272pt;}
.h6{height:720.000653pt;}
.h17{height:720.271201pt;}
.h64{height:720.417067pt;}
.h65{height:720.666667pt;}
.w3{width:959.999599pt;}
.w4{width:959.999999pt;}
.w0{width:960.000000pt;}
.w2{width:960.000268pt;}
.w1{width:960.000653pt;}
.xd{left:-16.896000pt;}
.x7c{left:-9.408000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.xbf{left:11.082133pt;}
.x37{left:13.440000pt;}
.xb5{left:16.028800pt;}
.x7e{left:17.248000pt;}
.xe{left:19.264000pt;}
.x1a{left:20.928000pt;}
.x9{left:22.816000pt;}
.x8c{left:28.128000pt;}
.x83{left:29.653333pt;}
.x8{left:31.872000pt;}
.xb6{left:33.935467pt;}
.x86{left:35.936000pt;}
.x19{left:38.342400pt;}
.x34{left:39.936000pt;}
.xcb{left:41.632000pt;}
.x85{left:43.200000pt;}
.x36{left:45.760000pt;}
.xb3{left:46.735467pt;}
.xb7{left:48.442133pt;}
.x9a{left:50.176000pt;}
.x82{left:51.506667pt;}
.xb4{left:55.002133pt;}
.xba{left:56.531467pt;}
.x84{left:58.146667pt;}
.x90{left:66.304000pt;}
.x7{left:67.392000pt;}
.x35{left:69.952000pt;}
.x6{left:72.192000pt;}
.x8a{left:73.792000pt;}
.x14{left:76.896000pt;}
.xa{left:81.792000pt;}
.x3c{left:90.373333pt;}
.x8b{left:92.672000pt;}
.x23{left:93.792000pt;}
.x2d{left:96.480000pt;}
.xab{left:99.453333pt;}
.xc0{left:102.028800pt;}
.xca{left:109.472000pt;}
.x53{left:110.800000pt;}
.xf{left:112.096000pt;}
.x3d{left:116.986667pt;}
.x3e{left:118.293333pt;}
.x17{left:123.392000pt;}
.x91{left:125.106667pt;}
.x3a{left:132.120000pt;}
.x3b{left:136.400000pt;}
.x4e{left:141.640000pt;}
.x92{left:143.173333pt;}
.x1{left:144.133333pt;}
.xc1{left:146.455467pt;}
.x54{left:148.266667pt;}
.xa6{left:152.946667pt;}
.x9d{left:158.986667pt;}
.xbc{left:162.135467pt;}
.x8e{left:165.049200pt;}
.x8d{left:166.475867pt;}
.xa3{left:169.813333pt;}
.x4f{left:171.480000pt;}
.x55{left:173.720000pt;}
.xb8{left:175.535467pt;}
.x87{left:177.093333pt;}
.xb9{left:178.602133pt;}
.xa9{left:180.933333pt;}
.xb0{left:182.602133pt;}
.x7a{left:183.813333pt;}
.x8f{left:185.755867pt;}
.x7b{left:187.333333pt;}
.x1e{left:194.813333pt;}
.x47{left:200.546667pt;}
.x3f{left:202.533333pt;}
.x38{left:203.653333pt;}
.x56{left:204.613333pt;}
.xb1{left:207.922133pt;}
.x2a{left:210.013333pt;}
.xc2{left:216.988800pt;}
.x50{left:221.880000pt;}
.xc3{left:236.842133pt;}
.x57{left:237.866667pt;}
.x12{left:240.320000pt;}
.x98{left:244.373333pt;}
.x4{left:247.426667pt;}
.x48{left:251.706667pt;}
.xc4{left:254.628800pt;}
.x99{left:256.973333pt;}
.xcc{left:258.333333pt;}
.xc5{left:270.442133pt;}
.xc6{left:272.962133pt;}
.x40{left:273.973333pt;}
.x89{left:276.666667pt;}
.xb{left:277.693333pt;}
.x49{left:282.506667pt;}
.x7f{left:284.640000pt;}
.x41{left:289.946667pt;}
.xc7{left:291.508800pt;}
.xa7{left:293.026667pt;}
.x51{left:294.333333pt;}
.x1b{left:295.906667pt;}
.x42{left:310.266667pt;}
.x88{left:311.200000pt;}
.xc8{left:312.455467pt;}
.xbb{left:313.748800pt;}
.xa5{left:315.453333pt;}
.x26{left:318.173333pt;}
.xa8{left:319.266667pt;}
.x4a{left:320.706667pt;}
.x24{left:321.693333pt;}
.x46{left:323.800000pt;}
.xa4{left:327.346667pt;}
.xc9{left:334.655467pt;}
.x43{left:343.306667pt;}
.x4b{left:345.440000pt;}
.x20{left:347.266667pt;}
.x16{left:353.986667pt;}
.xb2{left:354.975467pt;}
.x5{left:355.933333pt;}
.x9c{left:357.893333pt;}
.x22{left:359.106667pt;}
.x2{left:360.506667pt;}
.x4c{left:365.800000pt;}
.x2e{left:368.733333pt;}
.x81{left:370.293333pt;}
.x18{left:379.493333pt;}
.x29{left:381.373333pt;}
.x3{left:383.773333pt;}
.x32{left:387.973333pt;}
.x27{left:389.213333pt;}
.x33{left:390.400000pt;}
.x30{left:394.080000pt;}
.x21{left:399.453333pt;}
.x13{left:403.586667pt;}
.x44{left:409.040000pt;}
.x1c{left:414.080000pt;}
.x2c{left:421.733333pt;}
.x58{left:427.573333pt;}
.x28{left:430.053333pt;}
.x25{left:435.973333pt;}
.x94{left:440.106667pt;}
.x59{left:444.586667pt;}
.x80{left:451.906667pt;}
.xac{left:453.402133pt;}
.x15{left:455.746667pt;}
.x45{left:457.626667pt;}
.x52{left:459.693333pt;}
.x4d{left:465.960000pt;}
.x9b{left:479.453333pt;}
.x9e{left:481.400000pt;}
.x11{left:489.760000pt;}
.x1f{left:512.453333pt;}
.x5f{left:515.973333pt;}
.xad{left:519.068800pt;}
.x67{left:538.306667pt;}
.x60{left:544.906667pt;}
.x78{left:553.320000pt;}
.x7d{left:557.786667pt;}
.x70{left:560.560000pt;}
.x68{left:562.906667pt;}
.xc{left:572.960000pt;}
.x61{left:586.640000pt;}
.xaa{left:588.133333pt;}
.x9f{left:589.760000pt;}
.x93{left:593.093333pt;}
.x71{left:603.373333pt;}
.x72{left:629.173333pt;}
.x62{left:631.333333pt;}
.xbd{left:639.615467pt;}
.xa0{left:647.266667pt;}
.x31{left:663.653333pt;}
.x69{left:667.440000pt;}
.xa1{left:669.360000pt;}
.x2f{left:671.333333pt;}
.x95{left:673.946667pt;}
.x79{left:676.138133pt;}
.x63{left:701.720000pt;}
.xa2{left:703.840000pt;}
.x39{left:708.986667pt;}
.xbe{left:711.455467pt;}
.x64{left:718.760000pt;}
.x73{left:723.133333pt;}
.x6a{left:731.306667pt;}
.x65{left:738.800000pt;}
.x74{left:747.586667pt;}
.x6b{left:757.946667pt;}
.x66{left:772.146667pt;}
.x1d{left:773.346667pt;}
.x6c{left:779.680000pt;}
.x2b{left:784.706667pt;}
.x75{left:797.653333pt;}
.x6d{left:804.106667pt;}
.xae{left:812.788800pt;}
.x97{left:822.213333pt;}
.x96{left:823.160000pt;}
.x76{left:846.866667pt;}
.x6e{left:850.893333pt;}
.x5d{left:860.322667pt;}
.x5c{left:864.586667pt;}
.x5b{left:867.426667pt;}
.x77{left:873.453333pt;}
.x5a{left:874.413333pt;}
.x5e{left:882.133333pt;}
.x6f{left:897.026667pt;}
.xaf{left:926.562133pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  