
    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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_fd20b756a882e6566e20b289.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_42624bb40687540326e2d18a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_0d87821f05e72bed077c7820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_3a5ac07551d82bb9aa180db1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_47e62c4250447242b99da571.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_540f54a78d335834593ae278.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_7030fdda322f6a4abce3ac1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.695312;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_546937195c249a07d62d68e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_1c98890a3dcec3691bb6d56e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_4ed23ad496d3df1f71cbf41f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_d92b5df7b96e9f510643fc1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_44134375e242caa3ee07dafa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_5fa85b75e47f756fe30a0cf9.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_5667ac47a2b97a7ea9f53e0c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_9062a65cadc322b80ae6cd9e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.707031;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_d7e7b892eaf1f65c17fb3661.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_f508a40b5b28cd3dec5bc9e2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.672852;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_e4311f7f2502eda315805f51.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_ca4879fd6211e8bb177392ac.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_24c761a4da2dfbb45947a4e8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861816;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_21f1bad774ed22d523291cdd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871094;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_3aaaafb930b7113b7b651b92.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.001000;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_25a3cb14ff0722950419fc5d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.734000;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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;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_3678c6c709a1330c5acc27b8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.891113;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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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_fd20b756a882e6566e20b289.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;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_42624bb40687540326e2d18a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;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_eac3d0d4383ac1b470e9cbeb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.693359;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_8edbdd20dfab23ca554b5b58.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666504;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_32aebe1c9303b7b5b94e90b6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;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_1f326924df57d817a10eb8ff.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.675781;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_96d3615aba90a85321c0cf01.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.735000;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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;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_75696990c8baee61aa6a3599.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;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_fd20b756a882e6566e20b289.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;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_ba5c624cf0e770b5e373b1ed.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;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_6f0a4dccce236600b3a6200e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000000;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_3aaaafb930b7113b7b651b92.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.001000;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_96d3615aba90a85321c0cf01.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.735000;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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;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_75696990c8baee61aa6a3599.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;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_fd20b756a882e6566e20b289.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.000000;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_ba5c624cf0e770b5e373b1ed.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;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_3aaaafb930b7113b7b651b92.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.001000;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_140d569c8a1de70d77ec3832.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;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_e838c440c6b6cb1ebc8db3e2.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.000000;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_505dda2e38697fbf5344e812.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;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_96d3615aba90a85321c0cf01.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.735000;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_293130b1591480f061cad1de.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.000000;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_8c291a3be9880755ec515020.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.733000;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_7ba5bf84f997ddb604101c28.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.000000;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_d4939d41579d2a8917abd4ab.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.000000;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_7ba5bf84f997ddb604101c28.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.000000;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_8c291a3be9880755ec515020.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.733000;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_d4939d41579d2a8917abd4ab.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.000000;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_1f48b4d9a1be636e0b273a1f.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.000000;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_f1956f82b85660058b2fa277.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.000000;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_8c291a3be9880755ec515020.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.733000;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_d4939d41579d2a8917abd4ab.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.000000;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:ff43;src:url('chunks/assets/font_7ba5bf84f997ddb604101c28.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.000000;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:ff44;src:url('chunks/assets/font_d4939d41579d2a8917abd4ab.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.000000;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:ff45;src:url('chunks/assets/font_75c9ab47f52fa8ffd796e261.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.000000;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:ff46;src:url('chunks/assets/font_bec4cbba571bac8788ba6fc0.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.000000;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:ff47;src:url('chunks/assets/font_1f48b4d9a1be636e0b273a1f.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.000000;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:ff48;src:url('chunks/assets/font_a828fd15b8f683faf1e8401a.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.910156;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m4{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.v4{vertical-align:-30.891932px;}
.v3{vertical-align:-18.171818px;}
.v5{vertical-align:-11.207850px;}
.v2{vertical-align:-8.866112px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.520000px;}
.ls60{letter-spacing:-19.296004px;}
.ls70{letter-spacing:-17.215200px;}
.ls68{letter-spacing:-17.160003px;}
.ls74{letter-spacing:-15.076800px;}
.ls6b{letter-spacing:-12.633604px;}
.ls5d{letter-spacing:-4.416001px;}
.ls6f{letter-spacing:-2.575201px;}
.ls65{letter-spacing:-1.587600px;}
.ls67{letter-spacing:-1.026000px;}
.ls66{letter-spacing:-0.756000px;}
.ls62{letter-spacing:-0.403200px;}
.ls75{letter-spacing:-0.384000px;}
.ls71{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.336000px;}
.ls64{letter-spacing:-0.316800px;}
.ls76{letter-spacing:-0.288000px;}
.ls6e{letter-spacing:-0.252000px;}
.ls79{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.187200px;}
.ls6a{letter-spacing:-0.172800px;}
.ls5f{letter-spacing:-0.086400px;}
.ls5b{letter-spacing:-0.072000px;}
.ls72{letter-spacing:-0.043200px;}
.ls5c{letter-spacing:-0.024000px;}
.ls58{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000035px;}
.ls3a{letter-spacing:0.000076px;}
.ls49{letter-spacing:0.000150px;}
.ls33{letter-spacing:0.000152px;}
.ls2b{letter-spacing:0.000280px;}
.ls25{letter-spacing:0.000315px;}
.ls39{letter-spacing:0.000608px;}
.ls16{letter-spacing:0.005988px;}
.ls46{letter-spacing:0.016304px;}
.ls8{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.030366px;}
.ls4{letter-spacing:0.030929px;}
.ls6c{letter-spacing:0.033600px;}
.ls26{letter-spacing:0.038157px;}
.ls2c{letter-spacing:0.038192px;}
.ls29{letter-spacing:0.038401px;}
.ls24{letter-spacing:0.038506px;}
.ls2a{letter-spacing:0.038541px;}
.ls4b{letter-spacing:0.042036px;}
.ls3{letter-spacing:0.043649px;}
.ls0{letter-spacing:0.050110px;}
.ls4e{letter-spacing:0.058115px;}
.ls4a{letter-spacing:0.058190px;}
.ls48{letter-spacing:0.058265px;}
.ls42{letter-spacing:0.058661px;}
.ls37{letter-spacing:0.058738px;}
.ls41{letter-spacing:0.058813px;}
.ls3f{letter-spacing:0.058889px;}
.ls36{letter-spacing:0.058890px;}
.ls3e{letter-spacing:0.058965px;}
.ls34{letter-spacing:0.058966px;}
.ls32{letter-spacing:0.059042px;}
.ls40{letter-spacing:0.059420px;}
.ls35{letter-spacing:0.059498px;}
.ls43{letter-spacing:0.059572px;}
.ls38{letter-spacing:0.059650px;}
.ls73{letter-spacing:0.064800px;}
.ls5e{letter-spacing:0.072000px;}
.ls44{letter-spacing:0.077524px;}
.ls3b{letter-spacing:0.077626px;}
.ls45{letter-spacing:0.083124px;}
.ls3c{letter-spacing:0.083233px;}
.ls52{letter-spacing:0.093828px;}
.ls1f{letter-spacing:0.134400px;}
.ls2d{letter-spacing:0.167052px;}
.ls2{letter-spacing:0.167615px;}
.ls63{letter-spacing:0.172800px;}
.ls6d{letter-spacing:0.184800px;}
.ls7b{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.235200px;}
.ls22{letter-spacing:0.268800px;}
.ls7a{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.281989px;}
.ls1c{letter-spacing:0.285600px;}
.ls1b{letter-spacing:0.319200px;}
.ls4d{letter-spacing:0.329048px;}
.ls4f{letter-spacing:0.329273px;}
.ls20{letter-spacing:0.336000px;}
.ls21{letter-spacing:0.352800px;}
.ls5a{letter-spacing:0.384000px;}
.ls3d{letter-spacing:0.651201px;}
.ls27{letter-spacing:2.478514px;}
.ls23{letter-spacing:2.479008px;}
.ls4c{letter-spacing:3.780957px;}
.ls53{letter-spacing:4.861740px;}
.ls56{letter-spacing:12.779874px;}
.ls55{letter-spacing:12.780640px;}
.ls59{letter-spacing:18.704702px;}
.ls78{letter-spacing:21.203057px;}
.ls54{letter-spacing:21.251479px;}
.ls30{letter-spacing:21.450000px;}
.ls1{letter-spacing:22.333888px;}
.ls5{letter-spacing:22.334452px;}
.ls77{letter-spacing:24.904109px;}
.ls11{letter-spacing:26.219988px;}
.ls31{letter-spacing:28.319988px;}
.ls12{letter-spacing:28.679988px;}
.ls50{letter-spacing:29.736139px;}
.ls18{letter-spacing:31.949988px;}
.ls10{letter-spacing:31.979989px;}
.ls47{letter-spacing:32.899230px;}
.ls51{letter-spacing:55.815939px;}
.lsa{letter-spacing:57.299988px;}
.ls13{letter-spacing:57.653988px;}
.lsd{letter-spacing:62.939988px;}
.ls2f{letter-spacing:63.810000px;}
.ls17{letter-spacing:64.973988px;}
.ls9{letter-spacing:68.639988px;}
.lsb{letter-spacing:86.339988px;}
.lse{letter-spacing:93.839988px;}
.ls14{letter-spacing:99.419988px;}
.lsf{letter-spacing:99.599989px;}
.ls15{letter-spacing:120.419988px;}
.ls19{letter-spacing:130.745988px;}
.ls7{letter-spacing:171.299983px;}
.ls2e{letter-spacing:179.700000px;}
.ls57{letter-spacing:189.000000px;}
.lsc{letter-spacing:247.799983px;}
.ls1a{letter-spacing:2437.316400px;}
.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;}
}
.ws11{word-spacing:-144.172800px;}
.ws10{word-spacing:-143.596800px;}
.ws34{word-spacing:-85.500000px;}
.ws2{word-spacing:-72.000000px;}
.wsb{word-spacing:-71.913600px;}
.ws16{word-spacing:-71.827200px;}
.ws4{word-spacing:-60.384012px;}
.ws7{word-spacing:-60.336012px;}
.wsa{word-spacing:-60.072012px;}
.ws3{word-spacing:-60.024012px;}
.ws5{word-spacing:-60.000012px;}
.ws8{word-spacing:-59.976012px;}
.ws6{word-spacing:-59.928012px;}
.wsf{word-spacing:-59.664012px;}
.ws26{word-spacing:-59.616012px;}
.ws9{word-spacing:-55.584011px;}
.ws24{word-spacing:-54.064800px;}
.ws23{word-spacing:-53.956800px;}
.ws42{word-spacing:-45.270000px;}
.ws43{word-spacing:-45.216000px;}
.ws41{word-spacing:-44.784000px;}
.ws13{word-spacing:-42.840009px;}
.wse{word-spacing:-40.704008px;}
.ws25{word-spacing:-38.923200px;}
.ws1a{word-spacing:-38.203211px;}
.ws1c{word-spacing:-38.152811px;}
.ws1d{word-spacing:-37.716011px;}
.ws1b{word-spacing:-37.632011px;}
.ws21{word-spacing:-36.784800px;}
.ws3f{word-spacing:-21.279382px;}
.wsc{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.076322px;}
.ws29{word-spacing:-0.075716px;}
.ws2f{word-spacing:-0.075616px;}
.ws35{word-spacing:-0.074720px;}
.ws1f{word-spacing:-0.049258px;}
.ws44{word-spacing:0.000000px;}
.ws14{word-spacing:0.043200px;}
.ws27{word-spacing:0.144000px;}
.ws15{word-spacing:0.239963px;}
.ws22{word-spacing:0.240000px;}
.ws12{word-spacing:1.335600px;}
.ws1{word-spacing:18.648582px;}
.ws1e{word-spacing:19.234363px;}
.ws36{word-spacing:24.829390px;}
.ws32{word-spacing:25.127342px;}
.ws2c{word-spacing:25.160455px;}
.ws3c{word-spacing:25.362765px;}
.ws3e{word-spacing:25.527282px;}
.ws40{word-spacing:25.688642px;}
.wsd{word-spacing:26.459963px;}
.ws33{word-spacing:29.526711px;}
.ws2d{word-spacing:29.565621px;}
.ws2e{word-spacing:76.191284px;}
.ws30{word-spacing:76.191436px;}
.ws31{word-spacing:76.192195px;}
.ws28{word-spacing:76.291688px;}
.ws2a{word-spacing:76.291840px;}
.ws2b{word-spacing:76.292600px;}
.ws18{word-spacing:88.043860px;}
.ws17{word-spacing:130.997933px;}
.ws0{word-spacing:217.752691px;}
.ws20{word-spacing:224.044771px;}
.ws37{word-spacing:265.834630px;}
.ws38{word-spacing:275.689180px;}
.ws39{word-spacing:275.689480px;}
.ws3a{word-spacing:376.761730px;}
.ws3b{word-spacing:379.365988px;}
._4f{margin-left:-399.413850px;}
._25{margin-left:-32.233200px;}
._4c{margin-left:-30.960035px;}
._29{margin-left:-26.762400px;}
._26{margin-left:-21.898800px;}
._4e{margin-left:-19.883314px;}
._48{margin-left:-17.152805px;}
._1d{margin-left:-15.720641px;}
._8{margin-left:-13.218640px;}
._23{margin-left:-11.032620px;}
._a{margin-left:-9.773656px;}
._27{margin-left:-8.078400px;}
._28{margin-left:-7.009200px;}
._3{margin-left:-5.385600px;}
._d{margin-left:-3.744001px;}
._47{margin-left:-2.129829px;}
._6{margin-left:-1.062428px;}
._2{width:1.560128px;}
._49{width:2.639489px;}
._13{width:3.675634px;}
._14{width:4.800001px;}
._40{width:11.090463px;}
._e{width:12.263409px;}
._46{width:13.268868px;}
._11{width:14.669672px;}
._35{width:15.749919px;}
._2d{width:17.973196px;}
._1e{width:19.241761px;}
._3a{width:20.900892px;}
._39{width:22.163857px;}
._1a{width:26.171771px;}
._30{width:27.506969px;}
._1b{width:28.679699px;}
._f{width:31.409640px;}
._38{width:32.709083px;}
._9{width:35.549709px;}
._2c{width:38.519855px;}
._3e{width:39.629859px;}
._41{width:44.758401px;}
._15{width:47.267659px;}
._37{width:54.809952px;}
._7{width:57.263609px;}
._2a{width:58.494212px;}
._18{width:63.269733px;}
._36{width:65.276759px;}
._16{width:66.660396px;}
._5{width:67.799720px;}
._4{width:69.749408px;}
._3b{width:82.121791px;}
._c{width:85.518253px;}
._b{width:86.669586px;}
._42{width:88.468564px;}
._12{width:90.119667px;}
._34{width:91.197024px;}
._3c{width:92.698596px;}
._19{width:94.169720px;}
._2b{width:95.316726px;}
._2f{width:100.128473px;}
._1f{width:106.919988px;}
._55{width:112.290000px;}
._32{width:119.723783px;}
._31{width:121.323531px;}
._17{width:122.369688px;}
._10{width:123.959613px;}
._2e{width:125.310807px;}
._22{width:128.681236px;}
._21{width:130.649635px;}
._4d{width:132.269682px;}
._43{width:142.769852px;}
._3d{width:152.435637px;}
._54{width:177.918000px;}
._45{width:184.469847px;}
._53{width:189.881829px;}
._1{width:231.838909px;}
._4b{width:238.130594px;}
._1c{width:241.379605px;}
._3f{width:244.168572px;}
._0{width:245.868951px;}
._4a{width:252.160467px;}
._24{width:285.550200px;}
._33{width:289.496825px;}
._44{width:291.539833px;}
._20{width:302.639701px;}
._50{width:395.516400px;}
._52{width:398.523232px;}
._51{width:417.604917px;}
.fc4{color:transparent;}
.fc3{color:rgb(128,222,234);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:39.406596px;}
.fse{font-size:49.258243px;}
.fsf{font-size:49.258245px;}
.fs1e{font-size:52.303860px;}
.fs0{font-size:56.119716px;}
.fsc{font-size:59.109904px;}
.fs1b{font-size:60.493150px;}
.fs16{font-size:60.572819px;}
.fs1d{font-size:74.719800px;}
.fs18{font-size:75.616438px;}
.fs13{font-size:75.716084px;}
.fs20{font-size:76.322450px;}
.fs1f{font-size:76.324901px;}
.fs1a{font-size:84.690055px;}
.fs15{font-size:84.801591px;}
.fs1c{font-size:90.739740px;}
.fs17{font-size:90.859316px;}
.fs9{font-size:108.000000px;}
.fs12{font-size:119.999995px;}
.fs19{font-size:120.986270px;}
.fs14{font-size:121.145608px;}
.fs7{font-size:144.000000px;}
.fsb{font-size:168.000048px;}
.fs21{font-size:180.000000px;}
.fsa{font-size:191.999952px;}
.fs11{font-size:216.000000px;}
.fs10{font-size:222.000048px;}
.fs2{font-size:240.000048px;}
.fs5{font-size:252.000000px;}
.fs8{font-size:263.999952px;}
.fs1{font-size:288.000000px;}
.fs6{font-size:342.000000px;}
.fs4{font-size:396.000000px;}
.fs3{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:17.500236px;}
.y3{bottom:18.716627px;}
.y80{bottom:18.828697px;}
.yb7{bottom:24.919987px;}
.yab{bottom:25.219027px;}
.ya1{bottom:25.252261px;}
.y2{bottom:37.600132px;}
.ye6{bottom:42.122441px;}
.y7f{bottom:47.514318px;}
.yb6{bottom:50.062162px;}
.yaa{bottom:50.662908px;}
.ya0{bottom:50.729671px;}
.y88{bottom:54.287002px;}
.y87{bottom:58.640863px;}
.yb8{bottom:69.673256px;}
.y81{bottom:82.268865px;}
.yac{bottom:84.088149px;}
.ya2{bottom:84.198959px;}
.yc7{bottom:84.395006px;}
.ydd{bottom:96.666563px;}
.y4{bottom:98.752400px;}
.y8c{bottom:98.960610px;}
.y82{bottom:116.049929px;}
.yb4{bottom:116.580000px;}
.yb9{bottom:118.240425px;}
.ydc{bottom:122.798756px;}
.ydf{bottom:125.145487px;}
.ye8{bottom:129.914858px;}
.y83{bottom:145.477145px;}
.ycd{bottom:145.738800px;}
.ycf{bottom:148.046156px;}
.ydb{bottom:148.930969px;}
.y86{bottom:151.117475px;}
.yd4{bottom:151.654125px;}
.yad{bottom:151.982293px;}
.ya3{bottom:152.182573px;}
.y5{bottom:152.821910px;}
.y8d{bottom:153.143696px;}
.ye4{bottom:155.377144px;}
.yc8{bottom:158.935538px;}
.y6b{bottom:162.719850px;}
.y66{bottom:162.720000px;}
.yba{bottom:166.807594px;}
.yda{bottom:175.063181px;}
.y84{bottom:179.258185px;}
.yb1{bottom:191.225686px;}
.ya7{bottom:191.477680px;}
.ya{bottom:201.031237px;}
.yd9{bottom:201.195375px;}
.ye0{bottom:203.176500px;}
.ye9{bottom:206.191743px;}
.y6{bottom:206.891405px;}
.y8e{bottom:207.326978px;}
.y36{bottom:210.180000px;}
.y85{bottom:213.039225px;}
.ybb{bottom:215.374688px;}
.yb3{bottom:218.460000px;}
.yae{bottom:219.876418px;}
.ya4{bottom:220.166168px;}
.yd0{bottom:226.419000px;}
.yd8{bottom:227.327625px;}
.yc2{bottom:227.904750px;}
.yc9{bottom:233.476125px;}
.yed{bottom:251.927624px;}
.y89{bottom:252.823383px;}
.yd7{bottom:253.459875px;}
.y64{bottom:258.420000px;}
.y7{bottom:260.960901px;}
.y8f{bottom:261.510120px;}
.y63{bottom:261.660000px;}
.ybc{bottom:263.941875px;}
.y78{bottom:278.689964px;}
.yd6{bottom:279.591937px;}
.ye1{bottom:281.207438px;}
.yea{bottom:282.468647px;}
.yaf{bottom:287.770486px;}
.ya5{bottom:288.149706px;}
.yf{bottom:289.327646px;}
.yd1{bottom:304.791938px;}
.yd5{bottom:305.724187px;}
.yca{bottom:308.016562px;}
.ye{bottom:308.954766px;}
.ybd{bottom:312.509062px;}
.y79{bottom:314.070236px;}
.y8{bottom:315.030396px;}
.y90{bottom:315.693262px;}
.yd{bottom:328.581745px;}
.y7d{bottom:342.520830px;}
.ye5{bottom:344.473200px;}
.yc{bottom:348.208864px;}
.y7a{bottom:349.450632px;}
.yb0{bottom:355.664744px;}
.ya6{bottom:356.133434px;}
.yeb{bottom:358.745551px;}
.ye2{bottom:359.238563px;}
.ybe{bottom:361.076250px;}
.yb{bottom:367.835984px;}
.y9{bottom:369.099892px;}
.y91{bottom:369.876403px;}
.yb2{bottom:373.613576px;}
.ya8{bottom:374.105918px;}
.ycb{bottom:382.557188px;}
.yd2{bottom:383.164875px;}
.y7b{bottom:384.830905px;}
.y9e{bottom:399.900000px;}
.ybf{bottom:409.643437px;}
.y7c{bottom:420.211178px;}
.yc5{bottom:430.999500px;}
.yef{bottom:432.206996px;}
.yec{bottom:435.022455px;}
.ye3{bottom:437.269500px;}
.y7e{bottom:452.385198px;}
.ycc{bottom:457.097625px;}
.yc4{bottom:457.131750px;}
.yc0{bottom:458.210625px;}
.yee{bottom:458.900609px;}
.yd3{bottom:461.537813px;}
.y9d{bottom:471.900000px;}
.yf6{bottom:472.620000px;}
.yc3{bottom:483.264000px;}
.yc1{bottom:506.777812px;}
.y60{bottom:518.340000px;}
.yf5{bottom:526.620000px;}
.y9c{bottom:543.900000px;}
.yf4{bottom:580.620000px;}
.y5f{bottom:590.340000px;}
.y9b{bottom:615.900000px;}
.yf3{bottom:634.620000px;}
.y77{bottom:651.947012px;}
.y5e{bottom:662.340000px;}
.y9a{bottom:687.900000px;}
.yf2{bottom:688.620000px;}
.y5d{bottom:734.340000px;}
.yf1{bottom:742.620000px;}
.y99{bottom:759.900000px;}
.yf0{bottom:796.620000px;}
.y5c{bottom:806.340000px;}
.ya9{bottom:817.916700px;}
.y9f{bottom:817.957200px;}
.y5b{bottom:878.340000px;}
.y2e{bottom:890.580000px;}
.y5a{bottom:950.340000px;}
.y2d{bottom:962.580000px;}
.y59{bottom:1022.340000px;}
.y2c{bottom:1034.580000px;}
.y58{bottom:1094.340000px;}
.y2b{bottom:1106.580000px;}
.y74{bottom:1133.580150px;}
.y57{bottom:1166.340000px;}
.y2a{bottom:1178.580000px;}
.y72{bottom:1194.780150px;}
.y56{bottom:1238.340000px;}
.y70{bottom:1255.980150px;}
.y75{bottom:1296.300000px;}
.y55{bottom:1310.340000px;}
.y6f{bottom:1317.180150px;}
.y73{bottom:1357.500000px;}
.y6d{bottom:1378.380150px;}
.y54{bottom:1382.340000px;}
.y71{bottom:1418.700000px;}
.y98{bottom:1437.780000px;}
.y6a{bottom:1439.580150px;}
.y53{bottom:1454.340000px;}
.y69{bottom:1500.780000px;}
.y97{bottom:1502.220000px;}
.y52{bottom:1526.340000px;}
.y6e{bottom:1541.100000px;}
.y67{bottom:1561.980000px;}
.y96{bottom:1567.020000px;}
.y51{bottom:1598.340000px;}
.y6c{bottom:1602.300000px;}
.y65{bottom:1623.180000px;}
.y95{bottom:1631.460000px;}
.y50{bottom:1673.220000px;}
.y94{bottom:1697.340000px;}
.y68{bottom:1724.700000px;}
.y4f{bottom:1842.420000px;}
.y8b{bottom:1847.748000px;}
.y29{bottom:1898.580000px;}
.y4e{bottom:1914.420000px;}
.y28{bottom:1970.580000px;}
.y4d{bottom:1986.420000px;}
.y76{bottom:2022.280500px;}
.y27{bottom:2042.580000px;}
.y4c{bottom:2058.420000px;}
.y26{bottom:2116.020000px;}
.y4b{bottom:2130.420000px;}
.y25{bottom:2188.020000px;}
.y4a{bottom:2202.420000px;}
.y93{bottom:2249.220000px;}
.y24{bottom:2258.580000px;}
.y49{bottom:2274.420000px;}
.y23{bottom:2333.460000px;}
.y48{bottom:2346.420000px;}
.y1{bottom:2389.936500px;}
.y47{bottom:2418.420000px;}
.y22{bottom:2489.700000px;}
.y46{bottom:2490.420000px;}
.y21{bottom:2561.700000px;}
.y45{bottom:2562.420000px;}
.y20{bottom:2633.700000px;}
.y44{bottom:2634.420000px;}
.y1f{bottom:2705.700000px;}
.y43{bottom:2706.420000px;}
.y1e{bottom:2777.700000px;}
.y42{bottom:2778.420000px;}
.y92{bottom:2801.100000px;}
.y1d{bottom:2849.700000px;}
.y8a{bottom:2880.660000px;}
.y1c{bottom:2921.700000px;}
.yc6{bottom:2976.816000px;}
.yde{bottom:2978.208000px;}
.y1b{bottom:2993.700000px;}
.y1a{bottom:3065.700000px;}
.y19{bottom:3137.700000px;}
.y41{bottom:3138.420000px;}
.y18{bottom:3209.700000px;}
.y40{bottom:3210.420000px;}
.y17{bottom:3281.700000px;}
.y3f{bottom:3282.420000px;}
.y16{bottom:3353.700000px;}
.y3e{bottom:3354.420000px;}
.y15{bottom:3425.700000px;}
.y3d{bottom:3426.420000px;}
.y14{bottom:3497.700000px;}
.y3c{bottom:3498.420000px;}
.yb5{bottom:3540.361500px;}
.yce{bottom:3542.365500px;}
.y13{bottom:3569.700150px;}
.y3b{bottom:3570.420150px;}
.y12{bottom:3641.700150px;}
.y3a{bottom:3642.420150px;}
.y11{bottom:3713.700150px;}
.y39{bottom:3714.420150px;}
.y10{bottom:3788.580150px;}
.y38{bottom:3789.300150px;}
.y35{bottom:3926.100150px;}
.y61{bottom:3959.220150px;}
.y62{bottom:3964.260150px;}
.y34{bottom:4032.300150px;}
.y37{bottom:4124.460150px;}
.y33{bottom:4150.740150px;}
.y32{bottom:4358.100150px;}
.y31{bottom:4530.540150px;}
.y30{bottom:4702.980150px;}
.y2f{bottom:4875.420150px;}
.h14{height:36.943682px;}
.h15{height:36.943684px;}
.h12{height:36.943717px;}
.h17{height:36.943787px;}
.h16{height:36.943822px;}
.h13{height:36.943892px;}
.h18{height:36.943997px;}
.h2{height:42.089787px;}
.h11{height:44.332428px;}
.h27{height:56.039850px;}
.h23{height:56.712328px;}
.h1e{height:56.787063px;}
.h2b{height:57.241838px;}
.h2a{height:57.243676px;}
.h28{height:57.907845px;}
.h22{height:58.602739px;}
.h1d{height:58.679965px;}
.h25{height:68.054805px;}
.h20{height:68.144487px;}
.hb{height:71.982422px;}
.ha{height:83.502422px;}
.h24{height:90.739702px;}
.h1f{height:90.859206px;}
.he{height:114.843783px;}
.hf{height:116.402377px;}
.h2c{height:124.980469px;}
.hc{height:127.968718px;}
.h1a{height:130.124967px;}
.h1b{height:149.976563px;}
.h19{height:150.348665px;}
.h5{height:162.656283px;}
.h4{height:166.640658px;}
.h8{height:174.972656px;}
.h3{height:195.187500px;}
.h9{height:237.462891px;}
.h7{height:268.382813px;}
.hd{height:353.160000px;}
.h6{height:390.375000px;}
.h1{height:405.577200px;}
.h21{height:409.860000px;}
.h1c{height:410.400000px;}
.h29{height:503.335200px;}
.h26{height:540.000000px;}
.h10{height:676.379700px;}
.h0{height:5056.500000px;}
.w2{width:297.000000px;}
.w1{width:506.971500px;}
.w7{width:540.000000px;}
.w6{width:546.480000px;}
.w5{width:547.199850px;}
.w8{width:675.579150px;}
.w4{width:676.379700px;}
.w3{width:711.360000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x19{left:11.146170px;}
.x23{left:20.301368px;}
.x5{left:25.731592px;}
.x5c{left:28.100018px;}
.x17{left:29.835945px;}
.x4{left:34.872091px;}
.x5b{left:40.531037px;}
.x45{left:41.552199px;}
.x4d{left:46.429950px;}
.x22{left:51.868166px;}
.xa{left:54.767955px;}
.x58{left:55.769963px;}
.x44{left:56.875178px;}
.x2b{left:58.640851px;}
.x4e{left:60.958837px;}
.x7{left:63.610395px;}
.x2{left:70.217777px;}
.x39{left:75.473480px;}
.x59{left:77.788395px;}
.x51{left:78.880425px;}
.x25{left:84.309969px;}
.x57{left:89.400488px;}
.x18{left:101.160000px;}
.x26{left:121.044052px;}
.x8{left:127.435395px;}
.x1c{left:131.243670px;}
.x21{left:135.965555px;}
.x42{left:141.303743px;}
.x9{left:146.560395px;}
.x2a{left:155.778093px;}
.x27{left:157.778184px;}
.x52{left:163.079400px;}
.x4f{left:176.667750px;}
.x54{left:180.929194px;}
.x48{left:184.261823px;}
.x28{left:194.512205px;}
.x3{left:206.439637px;}
.x3a{left:209.039415px;}
.x46{left:212.018228px;}
.x29{left:231.246350px;}
.xb{left:234.666150px;}
.x43{left:238.867494px;}
.x5d{left:267.834218px;}
.x4c{left:282.469125px;}
.x2c{left:293.560059px;}
.x5a{left:322.438189px;}
.x24{left:332.384899px;}
.x2f{left:351.770620px;}
.x6{left:364.260145px;}
.x3b{left:369.459560px;}
.x2d{left:370.909126px;}
.x55{left:378.860625px;}
.x1a{left:397.800000px;}
.x2e{left:409.583536px;}
.x1d{left:448.408500px;}
.x4b{left:463.573875px;}
.x5e{left:488.823772px;}
.x30{left:491.397921px;}
.x31{left:528.324275px;}
.x36{left:540.370559px;}
.x35{left:560.932899px;}
.x32{left:563.073655px;}
.x1f{left:594.636000px;}
.x33{left:600.000010px;}
.x1b{left:603.238500px;}
.x34{left:636.926364px;}
.x5f{left:735.212100px;}
.x16{left:756.259050px;}
.x1e{left:798.073500px;}
.x14{left:815.478600px;}
.x15{left:1071.079050px;}
.x12{left:1149.442800px;}
.xe{left:1151.480250px;}
.x10{left:1205.480250px;}
.x13{left:1213.267800px;}
.xf{left:1234.430250px;}
.x11{left:1288.430250px;}
.xc{left:1504.213500px;}
.x20{left:2377.500000px;}
.xd{left:2390.368500px;}
.x3e{left:2398.840500px;}
.x40{left:2409.211500px;}
.x41{left:2416.488000px;}
.x4a{left:2427.268500px;}
.x50{left:2442.256500px;}
.x3f{left:2462.665500px;}
.x49{left:2474.074500px;}
.x37{left:2586.985500px;}
.x53{left:2995.974000px;}
.x56{left:2997.244500px;}
.x47{left:3000.105000px;}
.x38{left:3044.862000px;}
.x1{left:3051.241500px;}
.x3d{left:3055.290000px;}
.x3c{left:3105.541500px;}
@media print{
.v4{vertical-align:-27.459495pt;}
.v3{vertical-align:-16.152727pt;}
.v5{vertical-align:-9.962533pt;}
.v2{vertical-align:-7.880989pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.240000pt;}
.ls60{letter-spacing:-17.152003pt;}
.ls70{letter-spacing:-15.302400pt;}
.ls68{letter-spacing:-15.253336pt;}
.ls74{letter-spacing:-13.401600pt;}
.ls6b{letter-spacing:-11.229870pt;}
.ls5d{letter-spacing:-3.925334pt;}
.ls6f{letter-spacing:-2.289067pt;}
.ls65{letter-spacing:-1.411200pt;}
.ls67{letter-spacing:-0.912000pt;}
.ls66{letter-spacing:-0.672000pt;}
.ls62{letter-spacing:-0.358400pt;}
.ls75{letter-spacing:-0.341333pt;}
.ls71{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.298667pt;}
.ls64{letter-spacing:-0.281600pt;}
.ls76{letter-spacing:-0.256000pt;}
.ls6e{letter-spacing:-0.224000pt;}
.ls79{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.166400pt;}
.ls6a{letter-spacing:-0.153600pt;}
.ls5f{letter-spacing:-0.076800pt;}
.ls5b{letter-spacing:-0.064000pt;}
.ls72{letter-spacing:-0.038400pt;}
.ls5c{letter-spacing:-0.021333pt;}
.ls58{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000031pt;}
.ls3a{letter-spacing:0.000068pt;}
.ls49{letter-spacing:0.000133pt;}
.ls33{letter-spacing:0.000135pt;}
.ls2b{letter-spacing:0.000249pt;}
.ls25{letter-spacing:0.000280pt;}
.ls39{letter-spacing:0.000540pt;}
.ls16{letter-spacing:0.005323pt;}
.ls46{letter-spacing:0.014493pt;}
.ls8{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.026992pt;}
.ls4{letter-spacing:0.027493pt;}
.ls6c{letter-spacing:0.029867pt;}
.ls26{letter-spacing:0.033917pt;}
.ls2c{letter-spacing:0.033948pt;}
.ls29{letter-spacing:0.034135pt;}
.ls24{letter-spacing:0.034228pt;}
.ls2a{letter-spacing:0.034259pt;}
.ls4b{letter-spacing:0.037365pt;}
.ls3{letter-spacing:0.038799pt;}
.ls0{letter-spacing:0.044542pt;}
.ls4e{letter-spacing:0.051658pt;}
.ls4a{letter-spacing:0.051725pt;}
.ls48{letter-spacing:0.051791pt;}
.ls42{letter-spacing:0.052143pt;}
.ls37{letter-spacing:0.052212pt;}
.ls41{letter-spacing:0.052278pt;}
.ls3f{letter-spacing:0.052345pt;}
.ls36{letter-spacing:0.052347pt;}
.ls3e{letter-spacing:0.052413pt;}
.ls34{letter-spacing:0.052414pt;}
.ls32{letter-spacing:0.052482pt;}
.ls40{letter-spacing:0.052818pt;}
.ls35{letter-spacing:0.052887pt;}
.ls43{letter-spacing:0.052953pt;}
.ls38{letter-spacing:0.053022pt;}
.ls73{letter-spacing:0.057600pt;}
.ls5e{letter-spacing:0.064000pt;}
.ls44{letter-spacing:0.068910pt;}
.ls3b{letter-spacing:0.069001pt;}
.ls45{letter-spacing:0.073888pt;}
.ls3c{letter-spacing:0.073985pt;}
.ls52{letter-spacing:0.083402pt;}
.ls1f{letter-spacing:0.119467pt;}
.ls2d{letter-spacing:0.148490pt;}
.ls2{letter-spacing:0.148991pt;}
.ls63{letter-spacing:0.153600pt;}
.ls6d{letter-spacing:0.164267pt;}
.ls7b{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.209067pt;}
.ls22{letter-spacing:0.238933pt;}
.ls7a{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.250657pt;}
.ls1c{letter-spacing:0.253867pt;}
.ls1b{letter-spacing:0.283733pt;}
.ls4d{letter-spacing:0.292487pt;}
.ls4f{letter-spacing:0.292687pt;}
.ls20{letter-spacing:0.298667pt;}
.ls21{letter-spacing:0.313600pt;}
.ls5a{letter-spacing:0.341333pt;}
.ls3d{letter-spacing:0.578845pt;}
.ls27{letter-spacing:2.203123pt;}
.ls23{letter-spacing:2.203563pt;}
.ls4c{letter-spacing:3.360851pt;}
.ls53{letter-spacing:4.321547pt;}
.ls56{letter-spacing:11.359888pt;}
.ls55{letter-spacing:11.360569pt;}
.ls59{letter-spacing:16.626401pt;}
.ls78{letter-spacing:18.847162pt;}
.ls54{letter-spacing:18.890203pt;}
.ls30{letter-spacing:19.066667pt;}
.ls1{letter-spacing:19.852345pt;}
.ls5{letter-spacing:19.852846pt;}
.ls77{letter-spacing:22.136986pt;}
.ls11{letter-spacing:23.306656pt;}
.ls31{letter-spacing:25.173323pt;}
.ls12{letter-spacing:25.493323pt;}
.ls50{letter-spacing:26.432123pt;}
.ls18{letter-spacing:28.399989pt;}
.ls10{letter-spacing:28.426657pt;}
.ls47{letter-spacing:29.243760pt;}
.ls51{letter-spacing:49.614168pt;}
.lsa{letter-spacing:50.933323pt;}
.ls13{letter-spacing:51.247989pt;}
.lsd{letter-spacing:55.946656pt;}
.ls2f{letter-spacing:56.720000pt;}
.ls17{letter-spacing:57.754656pt;}
.ls9{letter-spacing:61.013323pt;}
.lsb{letter-spacing:76.746656pt;}
.lse{letter-spacing:83.413323pt;}
.ls14{letter-spacing:88.373323pt;}
.lsf{letter-spacing:88.533324pt;}
.ls15{letter-spacing:107.039989pt;}
.ls19{letter-spacing:116.218656pt;}
.ls7{letter-spacing:152.266652pt;}
.ls2e{letter-spacing:159.733333pt;}
.ls57{letter-spacing:168.000000pt;}
.lsc{letter-spacing:220.266652pt;}
.ls1a{letter-spacing:2166.503467pt;}
.ws11{word-spacing:-128.153600pt;}
.ws10{word-spacing:-127.641600pt;}
.ws34{word-spacing:-76.000000pt;}
.ws2{word-spacing:-64.000000pt;}
.wsb{word-spacing:-63.923200pt;}
.ws16{word-spacing:-63.846400pt;}
.ws4{word-spacing:-53.674677pt;}
.ws7{word-spacing:-53.632011pt;}
.wsa{word-spacing:-53.397344pt;}
.ws3{word-spacing:-53.354677pt;}
.ws5{word-spacing:-53.333344pt;}
.ws8{word-spacing:-53.312011pt;}
.ws6{word-spacing:-53.269344pt;}
.wsf{word-spacing:-53.034677pt;}
.ws26{word-spacing:-52.992011pt;}
.ws9{word-spacing:-49.408010pt;}
.ws24{word-spacing:-48.057600pt;}
.ws23{word-spacing:-47.961600pt;}
.ws42{word-spacing:-40.240000pt;}
.ws43{word-spacing:-40.192000pt;}
.ws41{word-spacing:-39.808000pt;}
.ws13{word-spacing:-38.080008pt;}
.wse{word-spacing:-36.181341pt;}
.ws25{word-spacing:-34.598400pt;}
.ws1a{word-spacing:-33.958410pt;}
.ws1c{word-spacing:-33.913610pt;}
.ws1d{word-spacing:-33.525343pt;}
.ws1b{word-spacing:-33.450676pt;}
.ws21{word-spacing:-32.697600pt;}
.ws3f{word-spacing:-18.915007pt;}
.wsc{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.067842pt;}
.ws29{word-spacing:-0.067303pt;}
.ws2f{word-spacing:-0.067215pt;}
.ws35{word-spacing:-0.066418pt;}
.ws1f{word-spacing:-0.043785pt;}
.ws44{word-spacing:0.000000pt;}
.ws14{word-spacing:0.038400pt;}
.ws27{word-spacing:0.128000pt;}
.ws15{word-spacing:0.213300pt;}
.ws22{word-spacing:0.213333pt;}
.ws12{word-spacing:1.187200pt;}
.ws1{word-spacing:16.576517pt;}
.ws1e{word-spacing:17.097211pt;}
.ws36{word-spacing:22.070568pt;}
.ws32{word-spacing:22.335415pt;}
.ws2c{word-spacing:22.364849pt;}
.ws3c{word-spacing:22.544680pt;}
.ws3e{word-spacing:22.690917pt;}
.ws40{word-spacing:22.834348pt;}
.wsd{word-spacing:23.519967pt;}
.ws33{word-spacing:26.245966pt;}
.ws2d{word-spacing:26.280552pt;}
.ws2e{word-spacing:67.725586pt;}
.ws30{word-spacing:67.725721pt;}
.ws31{word-spacing:67.726396pt;}
.ws28{word-spacing:67.814834pt;}
.ws2a{word-spacing:67.814969pt;}
.ws2b{word-spacing:67.815644pt;}
.ws18{word-spacing:78.261209pt;}
.ws17{word-spacing:116.442607pt;}
.ws0{word-spacing:193.557948pt;}
.ws20{word-spacing:199.150907pt;}
.ws37{word-spacing:236.297449pt;}
.ws38{word-spacing:245.057049pt;}
.ws39{word-spacing:245.057316pt;}
.ws3a{word-spacing:334.899316pt;}
.ws3b{word-spacing:337.214212pt;}
._4f{margin-left:-355.034533pt;}
._25{margin-left:-28.651733pt;}
._4c{margin-left:-27.520031pt;}
._29{margin-left:-23.788800pt;}
._26{margin-left:-19.465600pt;}
._4e{margin-left:-17.674057pt;}
._48{margin-left:-15.246938pt;}
._1d{margin-left:-13.973903pt;}
._8{margin-left:-11.749902pt;}
._23{margin-left:-9.806773pt;}
._a{margin-left:-8.687695pt;}
._27{margin-left:-7.180800pt;}
._28{margin-left:-6.230400pt;}
._3{margin-left:-4.787200pt;}
._d{margin-left:-3.328001pt;}
._47{margin-left:-1.893181pt;}
._6{margin-left:-0.944380pt;}
._2{width:1.386781pt;}
._49{width:2.346213pt;}
._13{width:3.267230pt;}
._14{width:4.266668pt;}
._40{width:9.858190pt;}
._e{width:10.900808pt;}
._46{width:11.794549pt;}
._11{width:13.039708pt;}
._35{width:13.999928pt;}
._2d{width:15.976174pt;}
._1e{width:17.103788pt;}
._3a{width:18.578571pt;}
._39{width:19.701207pt;}
._1a{width:23.263796pt;}
._30{width:24.450640pt;}
._1b{width:25.493065pt;}
._f{width:27.919680pt;}
._38{width:29.074740pt;}
._9{width:31.599742pt;}
._2c{width:34.239871pt;}
._3e{width:35.226541pt;}
._41{width:39.785246pt;}
._15{width:42.015697pt;}
._37{width:48.719957pt;}
._7{width:50.900986pt;}
._2a{width:51.994855pt;}
._18{width:56.239763pt;}
._36{width:58.023786pt;}
._16{width:59.253685pt;}
._5{width:60.266417pt;}
._4{width:61.999474pt;}
._3b{width:72.997148pt;}
._c{width:76.016225pt;}
._b{width:77.039632pt;}
._42{width:78.638724pt;}
._12{width:80.106370pt;}
._34{width:81.064021pt;}
._3c{width:82.398752pt;}
._19{width:83.706418pt;}
._2b{width:84.725979pt;}
._2f{width:89.003087pt;}
._1f{width:95.039989pt;}
._55{width:99.813333pt;}
._32{width:106.421141pt;}
._31{width:107.843139pt;}
._17{width:108.773056pt;}
._10{width:110.186323pt;}
._2e{width:111.387384pt;}
._22{width:114.383321pt;}
._21{width:116.133009pt;}
._4d{width:117.573051pt;}
._43{width:126.906535pt;}
._3d{width:135.498344pt;}
._54{width:158.149333pt;}
._45{width:163.973197pt;}
._53{width:168.783848pt;}
._1{width:206.079030pt;}
._4b{width:211.671639pt;}
._1c{width:214.559649pt;}
._3f{width:217.038731pt;}
._0{width:218.550179pt;}
._4a{width:224.142637pt;}
._24{width:253.822400pt;}
._33{width:257.330511pt;}
._44{width:259.146519pt;}
._20{width:269.013068pt;}
._50{width:351.570133pt;}
._52{width:354.242873pt;}
._51{width:371.204370pt;}
.fsd{font-size:35.028085pt;}
.fse{font-size:43.785105pt;}
.fsf{font-size:43.785107pt;}
.fs1e{font-size:46.492320pt;}
.fs0{font-size:49.884192pt;}
.fsc{font-size:52.542137pt;}
.fs1b{font-size:53.771689pt;}
.fs16{font-size:53.842506pt;}
.fs1d{font-size:66.417600pt;}
.fs18{font-size:67.214611pt;}
.fs13{font-size:67.303186pt;}
.fs20{font-size:67.842178pt;}
.fs1f{font-size:67.844356pt;}
.fs1a{font-size:75.280049pt;}
.fs15{font-size:75.379192pt;}
.fs1c{font-size:80.657547pt;}
.fs17{font-size:80.763836pt;}
.fs9{font-size:96.000000pt;}
.fs12{font-size:106.666662pt;}
.fs19{font-size:107.543351pt;}
.fs14{font-size:107.684985pt;}
.fs7{font-size:128.000000pt;}
.fsb{font-size:149.333376pt;}
.fs21{font-size:160.000000pt;}
.fsa{font-size:170.666624pt;}
.fs11{font-size:192.000000pt;}
.fs10{font-size:197.333376pt;}
.fs2{font-size:213.333376pt;}
.fs5{font-size:224.000000pt;}
.fs8{font-size:234.666624pt;}
.fs1{font-size:256.000000pt;}
.fs6{font-size:304.000000pt;}
.fs4{font-size:352.000000pt;}
.fs3{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:15.555765pt;}
.y3{bottom:16.637002pt;}
.y80{bottom:16.736619pt;}
.yb7{bottom:22.151100pt;}
.yab{bottom:22.416913pt;}
.ya1{bottom:22.446454pt;}
.y2{bottom:33.422340pt;}
.ye6{bottom:37.442170pt;}
.y7f{bottom:42.234949pt;}
.yb6{bottom:44.499700pt;}
.yaa{bottom:45.033696pt;}
.ya0{bottom:45.093041pt;}
.y88{bottom:48.255113pt;}
.y87{bottom:52.125212pt;}
.yb8{bottom:61.931783pt;}
.y81{bottom:73.127880pt;}
.yac{bottom:74.745021pt;}
.ya2{bottom:74.843519pt;}
.yc7{bottom:75.017783pt;}
.ydd{bottom:85.925833pt;}
.y4{bottom:87.779911pt;}
.y8c{bottom:87.964987pt;}
.y82{bottom:103.155493pt;}
.yb4{bottom:103.626667pt;}
.yb9{bottom:105.102600pt;}
.ydc{bottom:109.154450pt;}
.ydf{bottom:111.240433pt;}
.ye8{bottom:115.479874pt;}
.y83{bottom:129.313018pt;}
.ycd{bottom:129.545600pt;}
.ycf{bottom:131.596583pt;}
.ydb{bottom:132.383083pt;}
.y86{bottom:134.326645pt;}
.yd4{bottom:134.803667pt;}
.yad{bottom:135.095371pt;}
.ya3{bottom:135.273398pt;}
.y5{bottom:135.841697pt;}
.y8d{bottom:136.127730pt;}
.ye4{bottom:138.113017pt;}
.yc8{bottom:141.276033pt;}
.y6b{bottom:144.639867pt;}
.y66{bottom:144.640000pt;}
.yba{bottom:148.273417pt;}
.yda{bottom:155.611717pt;}
.y84{bottom:159.340609pt;}
.yb1{bottom:169.978387pt;}
.ya7{bottom:170.202383pt;}
.ya{bottom:178.694433pt;}
.yd9{bottom:178.840333pt;}
.ye0{bottom:180.601333pt;}
.ye9{bottom:183.281549pt;}
.y6{bottom:183.903471pt;}
.y8e{bottom:184.290647pt;}
.y36{bottom:186.826667pt;}
.y85{bottom:189.368200pt;}
.ybb{bottom:191.444167pt;}
.yb3{bottom:194.186667pt;}
.yae{bottom:195.445705pt;}
.ya4{bottom:195.703260pt;}
.yd0{bottom:201.261333pt;}
.yd8{bottom:202.069000pt;}
.yc2{bottom:202.582000pt;}
.yc9{bottom:207.534333pt;}
.yed{bottom:223.935666pt;}
.y89{bottom:224.731896pt;}
.yd7{bottom:225.297667pt;}
.y64{bottom:229.706667pt;}
.y7{bottom:231.965245pt;}
.y8f{bottom:232.453440pt;}
.y63{bottom:232.586667pt;}
.ybc{bottom:234.615000pt;}
.y78{bottom:247.724412pt;}
.yd6{bottom:248.526167pt;}
.ye1{bottom:249.962167pt;}
.yea{bottom:251.083242pt;}
.yaf{bottom:255.795987pt;}
.ya5{bottom:256.133072pt;}
.yf{bottom:257.180130pt;}
.yd1{bottom:270.926167pt;}
.yd5{bottom:271.754833pt;}
.yca{bottom:273.792500pt;}
.ye{bottom:274.626458pt;}
.ybd{bottom:277.785833pt;}
.y79{bottom:279.173543pt;}
.y8{bottom:280.027019pt;}
.y90{bottom:280.616233pt;}
.yd{bottom:292.072662pt;}
.y7d{bottom:304.462960pt;}
.ye5{bottom:306.198400pt;}
.yc{bottom:309.518990pt;}
.y7a{bottom:310.622784pt;}
.yb0{bottom:316.146439pt;}
.ya6{bottom:316.563052pt;}
.yeb{bottom:318.884934pt;}
.ye2{bottom:319.323167pt;}
.ybe{bottom:320.956667pt;}
.yb{bottom:326.965319pt;}
.y9{bottom:328.088793pt;}
.y91{bottom:328.779025pt;}
.yb2{bottom:332.100956pt;}
.ya8{bottom:332.538594pt;}
.ycb{bottom:340.050833pt;}
.yd2{bottom:340.591000pt;}
.y7b{bottom:342.071916pt;}
.y9e{bottom:355.466667pt;}
.ybf{bottom:364.127500pt;}
.y7c{bottom:373.521047pt;}
.yc5{bottom:383.110667pt;}
.yef{bottom:384.183997pt;}
.yec{bottom:386.686627pt;}
.ye3{bottom:388.684000pt;}
.y7e{bottom:402.120176pt;}
.ycc{bottom:406.309000pt;}
.yc4{bottom:406.339333pt;}
.yc0{bottom:407.298333pt;}
.yee{bottom:407.911652pt;}
.yd3{bottom:410.255833pt;}
.y9d{bottom:419.466667pt;}
.yf6{bottom:420.106667pt;}
.yc3{bottom:429.568000pt;}
.yc1{bottom:450.469167pt;}
.y60{bottom:460.746667pt;}
.yf5{bottom:468.106667pt;}
.y9c{bottom:483.466667pt;}
.yf4{bottom:516.106667pt;}
.y5f{bottom:524.746667pt;}
.y9b{bottom:547.466667pt;}
.yf3{bottom:564.106667pt;}
.y77{bottom:579.508455pt;}
.y5e{bottom:588.746667pt;}
.y9a{bottom:611.466667pt;}
.yf2{bottom:612.106667pt;}
.y5d{bottom:652.746667pt;}
.yf1{bottom:660.106667pt;}
.y99{bottom:675.466667pt;}
.yf0{bottom:708.106667pt;}
.y5c{bottom:716.746667pt;}
.ya9{bottom:727.037067pt;}
.y9f{bottom:727.073067pt;}
.y5b{bottom:780.746667pt;}
.y2e{bottom:791.626667pt;}
.y5a{bottom:844.746667pt;}
.y2d{bottom:855.626667pt;}
.y59{bottom:908.746667pt;}
.y2c{bottom:919.626667pt;}
.y58{bottom:972.746667pt;}
.y2b{bottom:983.626667pt;}
.y74{bottom:1007.626800pt;}
.y57{bottom:1036.746667pt;}
.y2a{bottom:1047.626667pt;}
.y72{bottom:1062.026800pt;}
.y56{bottom:1100.746667pt;}
.y70{bottom:1116.426800pt;}
.y75{bottom:1152.266667pt;}
.y55{bottom:1164.746667pt;}
.y6f{bottom:1170.826800pt;}
.y73{bottom:1206.666667pt;}
.y6d{bottom:1225.226800pt;}
.y54{bottom:1228.746667pt;}
.y71{bottom:1261.066667pt;}
.y98{bottom:1278.026667pt;}
.y6a{bottom:1279.626800pt;}
.y53{bottom:1292.746667pt;}
.y69{bottom:1334.026667pt;}
.y97{bottom:1335.306667pt;}
.y52{bottom:1356.746667pt;}
.y6e{bottom:1369.866667pt;}
.y67{bottom:1388.426667pt;}
.y96{bottom:1392.906667pt;}
.y51{bottom:1420.746667pt;}
.y6c{bottom:1424.266667pt;}
.y65{bottom:1442.826667pt;}
.y95{bottom:1450.186667pt;}
.y50{bottom:1487.306667pt;}
.y94{bottom:1508.746667pt;}
.y68{bottom:1533.066667pt;}
.y4f{bottom:1637.706667pt;}
.y8b{bottom:1642.442667pt;}
.y29{bottom:1687.626667pt;}
.y4e{bottom:1701.706667pt;}
.y28{bottom:1751.626667pt;}
.y4d{bottom:1765.706667pt;}
.y76{bottom:1797.582667pt;}
.y27{bottom:1815.626667pt;}
.y4c{bottom:1829.706667pt;}
.y26{bottom:1880.906667pt;}
.y4b{bottom:1893.706667pt;}
.y25{bottom:1944.906667pt;}
.y4a{bottom:1957.706667pt;}
.y93{bottom:1999.306667pt;}
.y24{bottom:2007.626667pt;}
.y49{bottom:2021.706667pt;}
.y23{bottom:2074.186667pt;}
.y48{bottom:2085.706667pt;}
.y1{bottom:2124.388000pt;}
.y47{bottom:2149.706667pt;}
.y22{bottom:2213.066667pt;}
.y46{bottom:2213.706667pt;}
.y21{bottom:2277.066667pt;}
.y45{bottom:2277.706667pt;}
.y20{bottom:2341.066667pt;}
.y44{bottom:2341.706667pt;}
.y1f{bottom:2405.066667pt;}
.y43{bottom:2405.706667pt;}
.y1e{bottom:2469.066667pt;}
.y42{bottom:2469.706667pt;}
.y92{bottom:2489.866667pt;}
.y1d{bottom:2533.066667pt;}
.y8a{bottom:2560.586667pt;}
.y1c{bottom:2597.066667pt;}
.yc6{bottom:2646.058667pt;}
.yde{bottom:2647.296000pt;}
.y1b{bottom:2661.066667pt;}
.y1a{bottom:2725.066667pt;}
.y19{bottom:2789.066667pt;}
.y41{bottom:2789.706667pt;}
.y18{bottom:2853.066667pt;}
.y40{bottom:2853.706667pt;}
.y17{bottom:2917.066667pt;}
.y3f{bottom:2917.706667pt;}
.y16{bottom:2981.066667pt;}
.y3e{bottom:2981.706667pt;}
.y15{bottom:3045.066667pt;}
.y3d{bottom:3045.706667pt;}
.y14{bottom:3109.066667pt;}
.y3c{bottom:3109.706667pt;}
.yb5{bottom:3146.988000pt;}
.yce{bottom:3148.769333pt;}
.y13{bottom:3173.066800pt;}
.y3b{bottom:3173.706800pt;}
.y12{bottom:3237.066800pt;}
.y3a{bottom:3237.706800pt;}
.y11{bottom:3301.066800pt;}
.y39{bottom:3301.706800pt;}
.y10{bottom:3367.626800pt;}
.y38{bottom:3368.266800pt;}
.y35{bottom:3489.866800pt;}
.y61{bottom:3519.306800pt;}
.y62{bottom:3523.786800pt;}
.y34{bottom:3584.266800pt;}
.y37{bottom:3666.186800pt;}
.y33{bottom:3689.546800pt;}
.y32{bottom:3873.866800pt;}
.y31{bottom:4027.146800pt;}
.y30{bottom:4180.426800pt;}
.y2f{bottom:4333.706800pt;}
.h14{height:32.838829pt;}
.h15{height:32.838830pt;}
.h12{height:32.838860pt;}
.h17{height:32.838922pt;}
.h16{height:32.838953pt;}
.h13{height:32.839015pt;}
.h18{height:32.839108pt;}
.h2{height:37.413144pt;}
.h11{height:39.406603pt;}
.h27{height:49.813200pt;}
.h23{height:50.410958pt;}
.h1e{height:50.477389pt;}
.h2b{height:50.881633pt;}
.h2a{height:50.883267pt;}
.h28{height:51.473640pt;}
.h22{height:52.091324pt;}
.h1d{height:52.159969pt;}
.h25{height:60.493160pt;}
.h20{height:60.572877pt;}
.hb{height:63.984375pt;}
.ha{height:74.224375pt;}
.h24{height:80.657513pt;}
.h1f{height:80.763739pt;}
.he{height:102.083363pt;}
.hf{height:103.468780pt;}
.h2c{height:111.093750pt;}
.hc{height:113.749972pt;}
.h1a{height:115.666638pt;}
.h1b{height:133.312500pt;}
.h19{height:133.643258pt;}
.h5{height:144.583362pt;}
.h4{height:148.125030pt;}
.h8{height:155.531250pt;}
.h3{height:173.500000pt;}
.h9{height:211.078125pt;}
.h7{height:238.562500pt;}
.hd{height:313.920000pt;}
.h6{height:347.000000pt;}
.h1{height:360.513067pt;}
.h21{height:364.320000pt;}
.h1c{height:364.800000pt;}
.h29{height:447.409067pt;}
.h26{height:480.000000pt;}
.h10{height:601.226400pt;}
.h0{height:4494.666667pt;}
.w2{width:264.000000pt;}
.w1{width:450.641333pt;}
.w7{width:480.000000pt;}
.w6{width:485.760000pt;}
.w5{width:486.399867pt;}
.w8{width:600.514800pt;}
.w4{width:601.226400pt;}
.w3{width:632.320000pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x19{left:9.907707pt;}
.x23{left:18.045660pt;}
.x5{left:22.872526pt;}
.x5c{left:24.977794pt;}
.x17{left:26.520840pt;}
.x4{left:30.997414pt;}
.x5b{left:36.027589pt;}
.x45{left:36.935288pt;}
.x4d{left:41.271067pt;}
.x22{left:46.105037pt;}
.xa{left:48.682627pt;}
.x58{left:49.573300pt;}
.x44{left:50.555714pt;}
.x2b{left:52.125201pt;}
.x4e{left:54.185633pt;}
.x7{left:56.542573pt;}
.x2{left:62.415802pt;}
.x39{left:67.087538pt;}
.x59{left:69.145240pt;}
.x51{left:70.115933pt;}
.x25{left:74.942195pt;}
.x57{left:79.467100pt;}
.x18{left:89.920000pt;}
.x26{left:107.594713pt;}
.x8{left:113.275907pt;}
.x1c{left:116.661040pt;}
.x21{left:120.858271pt;}
.x42{left:125.603327pt;}
.x9{left:130.275907pt;}
.x2a{left:138.469416pt;}
.x27{left:140.247275pt;}
.x52{left:144.959467pt;}
.x4f{left:157.038000pt;}
.x54{left:160.825950pt;}
.x48{left:163.788287pt;}
.x28{left:172.899738pt;}
.x3{left:183.501900pt;}
.x3a{left:185.812814pt;}
.x46{left:188.460647pt;}
.x29{left:205.552311pt;}
.xb{left:208.592133pt;}
.x43{left:212.326662pt;}
.x5d{left:238.074860pt;}
.x4c{left:251.083667pt;}
.x2c{left:260.942274pt;}
.x5a{left:286.611724pt;}
.x24{left:295.453244pt;}
.x2f{left:312.684995pt;}
.x6{left:323.786796pt;}
.x3b{left:328.408498pt;}
.x2d{left:329.697001pt;}
.x55{left:336.765000pt;}
.x1a{left:353.600000pt;}
.x2e{left:364.074254pt;}
.x1d{left:398.585333pt;}
.x4b{left:412.065667pt;}
.x5e{left:434.510019pt;}
.x30{left:436.798152pt;}
.x31{left:469.621578pt;}
.x36{left:480.329386pt;}
.x35{left:498.607021pt;}
.x32{left:500.509916pt;}
.x1f{left:528.565333pt;}
.x33{left:533.333342pt;}
.x1b{left:536.212000pt;}
.x34{left:566.156768pt;}
.x5f{left:653.521867pt;}
.x16{left:672.230267pt;}
.x1e{left:709.398667pt;}
.x14{left:724.869867pt;}
.x15{left:952.070267pt;}
.x12{left:1021.726933pt;}
.xe{left:1023.538000pt;}
.x10{left:1071.538000pt;}
.x13{left:1078.460267pt;}
.xf{left:1097.271333pt;}
.x11{left:1145.271333pt;}
.xc{left:1337.078667pt;}
.x20{left:2113.333333pt;}
.xd{left:2124.772000pt;}
.x3e{left:2132.302667pt;}
.x40{left:2141.521333pt;}
.x41{left:2147.989333pt;}
.x4a{left:2157.572000pt;}
.x50{left:2170.894667pt;}
.x3f{left:2189.036000pt;}
.x49{left:2199.177333pt;}
.x37{left:2299.542667pt;}
.x53{left:2663.088000pt;}
.x56{left:2664.217333pt;}
.x47{left:2666.760000pt;}
.x38{left:2706.544000pt;}
.x1{left:2712.214667pt;}
.x3d{left:2715.813333pt;}
.x3c{left:2760.481333pt;}
}




    .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; }
  