
    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_596119874f8058172a922cb9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_dd975001ec4380d72365f8d4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9e30aeeda228091cdce3119c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_d65658177e0c12d45d6fc737.woff')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_bb88264a711658d35db42629.woff')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_6b8e854cbef6e4ee140bb639.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_5f59377a197192909a321eaf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_081982a2b680a61904712fef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_6c1cfb6dee581eff5a7442ff.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4c3e40cde8bf767aa819f29a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_6da59c6eb17c71e813d555d7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e8c27d83655ffec429e48890.woff')format("woff");}.ffc{font-family:ffc;line-height:0.679688;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_f6ac363535087cd6f376ef35.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_35bf81343297ae46d71edab6.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3dc776eb1c374acb85c20853.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4ef7d34fef7fd61ef66ccb01.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cc9325a0fbc13c700af71429.woff')format("woff");}.ff11{font-family:ff11;line-height:0.856000;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_d2d25b246760f18583465554.woff')format("woff");}.ff12{font-family:ff12;line-height:1.078000;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_a0938b77c5baa9da87af2989.woff')format("woff");}.ff13{font-family:ff13;line-height:1.075000;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_01f50e0f557f54e7a4d6d380.woff')format("woff");}.ff14{font-family:ff14;line-height:1.075000;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_e0905e18c5fdfe607feca5e1.woff')format("woff");}.ff15{font-family:ff15;line-height:1.076000;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_61f9bcb4c54644b45b2c6f23.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_1b76a205ceb08a42e2440c12.woff')format("woff");}.ff17{font-family:ff17;line-height:1.013000;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_ad1733836831cc8a122b03a3.woff')format("woff");}.ff18{font-family:ff18;line-height:1.086000;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_b1f16262dd05e994a4723da6.woff')format("woff");}.ff19{font-family:ff19;line-height:1.078000;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_0d7e466b4570ff2f56d1bb47.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.075000;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_8137b2a23f06a1589899f3f1.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.700000;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_1b38c2b87f7b44e801e54041.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.086000;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_ac324a7f92189cafddac5139.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.085000;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_1070b6a026990cfd38456072.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.669922;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_2d04206091a1f4c35629b9f2.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.076000;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_0bf8139d29f56d94ebe001cd.woff')format("woff");}.ff20{font-family:ff20;line-height:1.002930;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_79129528c613e8c125bec2bb.woff')format("woff");}.ff21{font-family:ff21;line-height:1.075000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-0.530784px;}
.ls18{letter-spacing:-0.435456px;}
.ls56{letter-spacing:-0.429408px;}
.ls4a{letter-spacing:-0.405216px;}
.ls57{letter-spacing:-0.393120px;}
.ls40{letter-spacing:-0.368928px;}
.ls51{letter-spacing:-0.356832px;}
.ls3e{letter-spacing:-0.350784px;}
.ls41{letter-spacing:-0.344736px;}
.ls3a{letter-spacing:-0.338688px;}
.ls4f{letter-spacing:-0.332640px;}
.ls3f{letter-spacing:-0.326592px;}
.ls4c{letter-spacing:-0.320544px;}
.ls5d{letter-spacing:-0.314496px;}
.ls17{letter-spacing:-0.310464px;}
.ls39{letter-spacing:-0.308448px;}
.ls45{letter-spacing:-0.296352px;}
.lsf{letter-spacing:-0.291456px;}
.ls3d{letter-spacing:-0.290304px;}
.ls59{letter-spacing:-0.284256px;}
.ls47{letter-spacing:-0.278208px;}
.ls42{letter-spacing:-0.272160px;}
.ls4d{letter-spacing:-0.266112px;}
.ls49{letter-spacing:-0.260064px;}
.lsc{letter-spacing:-0.259776px;}
.ls46{letter-spacing:-0.254016px;}
.ls2d{letter-spacing:-0.251712px;}
.ls52{letter-spacing:-0.247968px;}
.ls14{letter-spacing:-0.247104px;}
.ls23{letter-spacing:-0.241920px;}
.ls12{letter-spacing:-0.240768px;}
.ls50{letter-spacing:-0.229824px;}
.lsd{letter-spacing:-0.228096px;}
.ls4e{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.211968px;}
.ls48{letter-spacing:-0.211680px;}
.ls44{letter-spacing:-0.205632px;}
.ls2f{letter-spacing:-0.205344px;}
.ls30{letter-spacing:-0.198720px;}
.ls3b{letter-spacing:-0.193536px;}
.ls16{letter-spacing:-0.190080px;}
.ls26{letter-spacing:-0.185472px;}
.ls5c{letter-spacing:-0.181440px;}
.ls1f{letter-spacing:-0.178848px;}
.lse{letter-spacing:-0.177408px;}
.ls55{letter-spacing:-0.175392px;}
.ls24{letter-spacing:-0.172224px;}
.ls6{letter-spacing:-0.165600px;}
.ls2e{letter-spacing:-0.164160px;}
.ls43{letter-spacing:-0.163296px;}
.ls20{letter-spacing:-0.158976px;}
.ls54{letter-spacing:-0.157248px;}
.ls4{letter-spacing:-0.152352px;}
.ls5{letter-spacing:-0.145728px;}
.ls53{letter-spacing:-0.145152px;}
.ls1b{letter-spacing:-0.139104px;}
.ls11{letter-spacing:-0.133056px;}
.ls27{letter-spacing:-0.132912px;}
.ls1a{letter-spacing:-0.132480px;}
.ls58{letter-spacing:-0.127008px;}
.ls21{letter-spacing:-0.125856px;}
.ls29{letter-spacing:-0.122688px;}
.ls4b{letter-spacing:-0.120960px;}
.ls13{letter-spacing:-0.120384px;}
.ls1c{letter-spacing:-0.119232px;}
.ls25{letter-spacing:-0.112608px;}
.ls10{letter-spacing:-0.107712px;}
.lsa{letter-spacing:-0.105984px;}
.ls2b{letter-spacing:-0.099360px;}
.ls19{letter-spacing:-0.092736px;}
.ls28{letter-spacing:-0.092016px;}
.ls22{letter-spacing:-0.086112px;}
.ls1e{letter-spacing:-0.079488px;}
.ls3c{letter-spacing:-0.072864px;}
.ls38{letter-spacing:-0.059616px;}
.lsb{letter-spacing:-0.052992px;}
.ls2a{letter-spacing:-0.039744px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000576px;}
.ls61{letter-spacing:0.062208px;}
.ls1{letter-spacing:0.101088px;}
.ls33{letter-spacing:0.116640px;}
.ls60{letter-spacing:0.119952px;}
.ls5b{letter-spacing:0.155520px;}
.ls32{letter-spacing:0.171072px;}
.ls5e{letter-spacing:0.178848px;}
.ls5f{letter-spacing:0.194400px;}
.ls35{letter-spacing:0.209952px;}
.ls3{letter-spacing:0.275616px;}
.ls0{letter-spacing:0.334080px;}
.ls63{letter-spacing:3.278880px;}
.ls64{letter-spacing:7.296480px;}
.ls9{letter-spacing:16.755840px;}
.ls34{letter-spacing:17.965872px;}
.ls65{letter-spacing:20.672352px;}
.ls62{letter-spacing:26.546400px;}
.ls31{letter-spacing:34.890768px;}
.ls37{letter-spacing:41.877360px;}
.ls66{letter-spacing:41.974560px;}
.ls36{letter-spacing:85.346640px;}
.ls5a{letter-spacing:103.165632px;}
.ls7{letter-spacing:817.162560px;}
.ls15{letter-spacing:843.497280px;}
.ls67{letter-spacing:846.000000px;}
.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:-22.063392px;}
.ws40{word-spacing:-17.029440px;}
.ws1e{word-spacing:-16.344000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.719616px;}
.ws5{word-spacing:-15.662592px;}
.ws1d{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.592896px;}
.ws49{word-spacing:-15.056352px;}
.wsf{word-spacing:-15.036480px;}
.ws16{word-spacing:-15.003360px;}
.ws9{word-spacing:-14.983488px;}
.ws46{word-spacing:-14.976864px;}
.ws19{word-spacing:-14.970240px;}
.ws47{word-spacing:-14.963616px;}
.ws13{word-spacing:-14.956992px;}
.ws48{word-spacing:-14.950368px;}
.ws45{word-spacing:-14.937120px;}
.ws18{word-spacing:-14.930496px;}
.wse{word-spacing:-14.923872px;}
.wsa{word-spacing:-14.917248px;}
.ws14{word-spacing:-14.910624px;}
.ws15{word-spacing:-14.904000px;}
.ws10{word-spacing:-14.897376px;}
.ws8{word-spacing:-14.890752px;}
.ws11{word-spacing:-14.884128px;}
.wsd{word-spacing:-14.878080px;}
.ws44{word-spacing:-14.877504px;}
.wsb{word-spacing:-14.870880px;}
.ws12{word-spacing:-14.864256px;}
.wsc{word-spacing:-14.857632px;}
.ws1a{word-spacing:-14.837760px;}
.ws1c{word-spacing:-14.764896px;}
.ws1f{word-spacing:-14.374080px;}
.ws7{word-spacing:-14.281344px;}
.ws27{word-spacing:-14.254848px;}
.ws28{word-spacing:-14.241600px;}
.ws37{word-spacing:-13.728960px;}
.ws43{word-spacing:-13.601952px;}
.ws33{word-spacing:-13.583808px;}
.ws35{word-spacing:-13.565664px;}
.ws36{word-spacing:-13.553568px;}
.ws23{word-spacing:-13.523328px;}
.ws3a{word-spacing:-13.517280px;}
.ws30{word-spacing:-13.505184px;}
.ws32{word-spacing:-13.499136px;}
.ws3f{word-spacing:-13.474944px;}
.ws26{word-spacing:-13.456800px;}
.ws2f{word-spacing:-13.432608px;}
.ws34{word-spacing:-13.408416px;}
.ws31{word-spacing:-13.396320px;}
.ws3c{word-spacing:-13.390272px;}
.ws3e{word-spacing:-13.384224px;}
.ws3b{word-spacing:-13.378176px;}
.ws39{word-spacing:-13.372128px;}
.ws3d{word-spacing:-13.335840px;}
.ws38{word-spacing:-13.299552px;}
.ws25{word-spacing:-13.124160px;}
.ws2d{word-spacing:-12.960864px;}
.ws41{word-spacing:-12.942720px;}
.ws2a{word-spacing:-12.900384px;}
.ws2b{word-spacing:-12.864096px;}
.ws24{word-spacing:-12.845952px;}
.ws29{word-spacing:-12.815712px;}
.ws42{word-spacing:-12.809664px;}
.ws21{word-spacing:-12.797568px;}
.ws20{word-spacing:-12.785472px;}
.ws2e{word-spacing:-12.773376px;}
.ws22{word-spacing:-12.755232px;}
.ws2c{word-spacing:-12.718944px;}
.ws1b{word-spacing:-12.169728px;}
.ws0{word-spacing:-0.178848px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:0.344736px;}
._1e{margin-left:-14.537088px;}
._1b{margin-left:-13.314240px;}
._1d{margin-left:-12.267360px;}
._20{margin-left:-10.780704px;}
._1c{margin-left:-9.568512px;}
._1a{margin-left:-8.109216px;}
._21{margin-left:-7.003584px;}
._1f{margin-left:-5.950656px;}
._e{margin-left:-3.830400px;}
._10{margin-left:-2.578176px;}
._0{margin-left:-1.439424px;}
._1{width:1.059840px;}
._17{width:2.121696px;}
._2{width:3.168000px;}
._6{width:4.593600px;}
._4{width:6.399360px;}
._11{width:7.714080px;}
._24{width:9.061920px;}
._a{width:10.404000px;}
._22{width:11.455200px;}
._15{width:12.916800px;}
._18{width:14.191200px;}
._9{width:15.975360px;}
._3{width:17.124480px;}
._26{width:18.131040px;}
._16{width:19.173600px;}
._27{width:20.714400px;}
._c{width:21.988800px;}
._14{width:23.011200px;}
._13{width:24.228000px;}
._5{width:25.868160px;}
._7{width:27.093600px;}
._d{width:28.720800px;}
._8{width:30.420000px;}
._23{width:31.706352px;}
._f{width:32.817600px;}
._12{width:34.646400px;}
._2a{width:35.712000px;}
._29{width:37.684800px;}
._25{width:39.686400px;}
._2d{width:44.416800px;}
._43{width:45.904320px;}
._35{width:47.537280px;}
._2b{width:49.622400px;}
._4e{width:52.920000px;}
._b{width:53.956800px;}
._2f{width:55.581120px;}
._51{width:57.093120px;}
._4f{width:59.088960px;}
._5e{width:60.449904px;}
._28{width:61.631568px;}
._4d{width:62.775792px;}
._46{width:63.866880px;}
._2c{width:65.865600px;}
._4a{width:68.644800px;}
._45{width:70.248960px;}
._30{width:72.120960px;}
._57{width:73.454400px;}
._3e{width:77.595840px;}
._5b{width:78.744960px;}
._50{width:80.619840px;}
._31{width:82.946880px;}
._55{width:84.248640px;}
._59{width:90.599040px;}
._54{width:93.320640px;}
._34{width:96.647040px;}
._3c{width:100.759680px;}
._5a{width:101.787840px;}
._49{width:110.799360px;}
._3a{width:120.928320px;}
._44{width:122.472000px;}
._52{width:124.709760px;}
._53{width:130.757760px;}
._3f{width:133.721280px;}
._47{width:135.656640px;}
._39{width:138.559680px;}
._41{width:143.035200px;}
._58{width:151.079040px;}
._37{width:156.461760px;}
._3b{width:158.880960px;}
._40{width:168.497280px;}
._38{width:172.005120px;}
._36{width:175.694400px;}
._32{width:183.617280px;}
._48{width:187.246080px;}
._3d{width:192.205440px;}
._42{width:202.547520px;}
._2e{width:208.293120px;}
._5c{width:209.813760px;}
._56{width:216.095040px;}
._4c{width:225.408960px;}
._4b{width:230.126400px;}
._33{width:243.915840px;}
._19{width:846.000000px;}
._5d{width:1780.332480px;}
.fc6{color:rgb(255,0,0);}
.fc7{color:rgb(47,84,150);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(28,72,86);}
.fc9{color:rgb(0,13,26);}
.fc8{color:rgb(89,89,89);}
.fc5{color:rgb(36,36,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:90.720000px;}
.fs9{font-size:96.480000px;}
.fsa{font-size:102.240000px;}
.fs1{font-size:168.480000px;}
.y19{bottom:-30.840000px;}
.y0{bottom:0.000000px;}
.y1fa{bottom:0.180000px;}
.y200{bottom:0.720000px;}
.y208{bottom:0.900000px;}
.y1ed{bottom:1.080000px;}
.y24c{bottom:1.140000px;}
.y1f3{bottom:1.500000px;}
.y1d9{bottom:5.640000px;}
.y1be{bottom:5.700000px;}
.y1d0{bottom:5.760000px;}
.y1b5{bottom:5.940000px;}
.y1dc{bottom:6.060000px;}
.y1b8{bottom:6.360000px;}
.y1c8{bottom:6.540000px;}
.y1b1{bottom:6.600000px;}
.y1d5{bottom:6.660000px;}
.y1bb{bottom:6.780000px;}
.y28b{bottom:7.080000px;}
.y2bd{bottom:7.560000px;}
.y2a3{bottom:7.680000px;}
.y27b{bottom:8.100000px;}
.y1cb{bottom:9.960000px;}
.y18{bottom:12.000000px;}
.y1c4{bottom:12.900000px;}
.y1c1{bottom:17.280000px;}
.y1f9{bottom:17.460000px;}
.y264{bottom:17.700000px;}
.y217{bottom:17.760000px;}
.y244{bottom:17.820000px;}
.y232{bottom:17.880000px;}
.y234{bottom:17.940000px;}
.y1ad{bottom:18.000000px;}
.y257{bottom:18.060000px;}
.y210{bottom:18.240000px;}
.y1e9{bottom:18.300000px;}
.y1ec{bottom:18.360000px;}
.y238{bottom:18.420000px;}
.y206{bottom:18.540000px;}
.y20b{bottom:18.600000px;}
.y226{bottom:18.720000px;}
.y1f2{bottom:18.780000px;}
.y22e{bottom:18.840000px;}
.y240{bottom:18.900000px;}
.y296{bottom:19.020000px;}
.y229{bottom:19.140000px;}
.y1e{bottom:19.440000px;}
.y271{bottom:19.560000px;}
.y2a7{bottom:20.220000px;}
.y2b1{bottom:20.280000px;}
.y1b4{bottom:25.020000px;}
.y1d8{bottom:25.080000px;}
.y1bd{bottom:25.140000px;}
.y1cf{bottom:25.200000px;}
.y1db{bottom:25.500000px;}
.y1b7{bottom:25.800000px;}
.y1c7{bottom:25.980000px;}
.y1b0{bottom:26.040000px;}
.y1d4{bottom:26.100000px;}
.y1ba{bottom:26.220000px;}
.y28a{bottom:27.960000px;}
.y2bc{bottom:28.440000px;}
.y2a2{bottom:28.560000px;}
.y27a{bottom:28.620000px;}
.y1ca{bottom:29.400000px;}
.y1c3{bottom:32.340000px;}
.y1c0{bottom:36.720000px;}
.y1f8{bottom:36.900000px;}
.y17{bottom:37.200000px;}
.y243{bottom:37.260000px;}
.y211{bottom:37.320000px;}
.y233{bottom:37.380000px;}
.y1ac{bottom:37.440000px;}
.y258{bottom:37.500000px;}
.y205{bottom:37.620000px;}
.y1e8{bottom:37.740000px;}
.y1eb{bottom:37.800000px;}
.y239{bottom:37.860000px;}
.y23d{bottom:37.980000px;}
.y20a{bottom:38.040000px;}
.y1d{bottom:38.160000px;}
.y1f1{bottom:38.220000px;}
.y22f{bottom:38.280000px;}
.y23f{bottom:38.340000px;}
.y295{bottom:39.900000px;}
.y2b0{bottom:41.160000px;}
.y1b3{bottom:44.460000px;}
.y1d7{bottom:44.520000px;}
.y1ce{bottom:44.640000px;}
.y1c6{bottom:45.420000px;}
.y1af{bottom:45.480000px;}
.y1d3{bottom:45.540000px;}
.y289{bottom:48.480000px;}
.y2bb{bottom:48.960000px;}
.y2a1{bottom:49.080000px;}
.y1ff{bottom:49.320000px;}
.y279{bottom:49.500000px;}
.y207{bottom:49.860000px;}
.y270{bottom:52.320000px;}
.y2a6{bottom:52.980000px;}
.y1f7{bottom:56.340000px;}
.y1c{bottom:56.520000px;}
.y21e{bottom:56.640000px;}
.y242{bottom:56.700000px;}
.y20f{bottom:56.760000px;}
.y1e7{bottom:56.820000px;}
.y1fe{bottom:56.880000px;}
.y256{bottom:56.940000px;}
.y204{bottom:57.060000px;}
.y22a{bottom:57.180000px;}
.y2{bottom:57.240000px;}
.y237{bottom:57.300000px;}
.y23c{bottom:57.420000px;}
.y20c{bottom:57.480000px;}
.y227{bottom:57.600000px;}
.y1f0{bottom:57.660000px;}
.y22d{bottom:57.720000px;}
.y248{bottom:57.780000px;}
.y294{bottom:60.420000px;}
.y2af{bottom:61.680000px;}
.y1cd{bottom:64.080000px;}
.y1d2{bottom:64.980000px;}
.y288{bottom:69.360000px;}
.y2ba{bottom:69.840000px;}
.y2a0{bottom:69.960000px;}
.y278{bottom:70.020000px;}
.y26f{bottom:73.200000px;}
.y2a5{bottom:73.860000px;}
.y1{bottom:74.160000px;}
.y1b{bottom:75.240000px;}
.y1f6{bottom:75.780000px;}
.y21d{bottom:76.080000px;}
.y20e{bottom:76.200000px;}
.y1e6{bottom:76.260000px;}
.y1fd{bottom:76.320000px;}
.y255{bottom:76.380000px;}
.y203{bottom:76.500000px;}
.y213{bottom:76.680000px;}
.y236{bottom:76.740000px;}
.y23b{bottom:76.860000px;}
.y225{bottom:77.040000px;}
.y22c{bottom:77.160000px;}
.y252{bottom:77.220000px;}
.y286{bottom:78.000000px;}
.y293{bottom:81.300000px;}
.y2ae{bottom:82.560000px;}
.y287{bottom:89.880000px;}
.y2b9{bottom:90.360000px;}
.y29f{bottom:90.480000px;}
.y277{bottom:90.900000px;}
.y19e{bottom:92.520000px;}
.y26e{bottom:93.720000px;}
.y1a{bottom:94.320000px;}
.y1a5{bottom:95.040000px;}
.y1f5{bottom:95.220000px;}
.y21c{bottom:95.520000px;}
.y1e5{bottom:95.700000px;}
.y1fc{bottom:95.760000px;}
.y202{bottom:95.940000px;}
.y245{bottom:96.120000px;}
.yfd{bottom:96.480000px;}
.y251{bottom:96.660000px;}
.y16e{bottom:99.000000px;}
.y44{bottom:100.440000px;}
.y292{bottom:101.820000px;}
.y2ad{bottom:103.080000px;}
.y23e{bottom:103.500000px;}
.y25b{bottom:104.040000px;}
.y2c2{bottom:108.360000px;}
.y8b{bottom:109.800000px;}
.y285{bottom:110.760000px;}
.y1e3{bottom:110.880000px;}
.y137{bottom:111.240000px;}
.y29e{bottom:111.360000px;}
.y276{bottom:111.420000px;}
.y297{bottom:114.000000px;}
.y26d{bottom:114.600000px;}
.y21b{bottom:114.960000px;}
.y223{bottom:115.380000px;}
.y250{bottom:116.100000px;}
.y2e9{bottom:116.280000px;}
.y193{bottom:116.640000px;}
.yfc{bottom:117.720000px;}
.y43{bottom:118.440000px;}
.y11e{bottom:119.520000px;}
.y18c{bottom:120.600000px;}
.y15f{bottom:122.040000px;}
.y291{bottom:122.700000px;}
.y24d{bottom:123.000000px;}
.y2ac{bottom:123.960000px;}
.y228{bottom:124.500000px;}
.ye1{bottom:125.280000px;}
.y1a4{bottom:127.440000px;}
.yc3{bottom:129.600000px;}
.y8a{bottom:130.680000px;}
.y136{bottom:131.040000px;}
.y284{bottom:131.280000px;}
.y15{bottom:131.400000px;}
.y2b8{bottom:131.760000px;}
.y29d{bottom:131.880000px;}
.y275{bottom:132.300000px;}
.y21a{bottom:134.400000px;}
.y222{bottom:134.820000px;}
.y26c{bottom:135.120000px;}
.y2e8{bottom:136.080000px;}
.y42{bottom:136.440000px;}
.y209{bottom:138.000000px;}
.yfb{bottom:139.320000px;}
.y2c1{bottom:140.760000px;}
.y290{bottom:143.220000px;}
.y1e2{bottom:143.280000px;}
.y2ab{bottom:144.480000px;}
.y2c5{bottom:145.440000px;}
.ye0{bottom:146.880000px;}
.y25a{bottom:147.600000px;}
.y2d4{bottom:147.960000px;}
.y192{bottom:149.040000px;}
.y11d{bottom:150.120000px;}
.yc2{bottom:150.840000px;}
.y89{bottom:151.560000px;}
.y283{bottom:152.160000px;}
.y2b7{bottom:152.640000px;}
.y29c{bottom:152.760000px;}
.y274{bottom:152.820000px;}
.y18b{bottom:153.000000px;}
.y219{bottom:153.840000px;}
.y221{bottom:154.260000px;}
.y15e{bottom:154.440000px;}
.y1bc{bottom:154.500000px;}
.y41{bottom:154.800000px;}
.y26b{bottom:156.000000px;}
.y23a{bottom:157.500000px;}
.y135{bottom:159.840000px;}
.y111{bottom:161.640000px;}
.y17f{bottom:163.440000px;}
.y16d{bottom:163.800000px;}
.y28f{bottom:164.100000px;}
.y2aa{bottom:165.360000px;}
.y14c{bottom:167.040000px;}
.y2d3{bottom:167.760000px;}
.ydf{bottom:168.120000px;}
.y88{bottom:172.080000px;}
.yc1{bottom:172.440000px;}
.y282{bottom:172.680000px;}
.y40{bottom:172.800000px;}
.y218{bottom:172.920000px;}
.y19d{bottom:173.160000px;}
.y29b{bottom:173.280000px;}
.y220{bottom:173.700000px;}
.y1e1{bottom:175.680000px;}
.y26a{bottom:176.520000px;}
.y2e7{bottom:176.760000px;}
.y1a3{bottom:177.840000px;}
.y134{bottom:179.640000px;}
.y11c{bottom:180.720000px;}
.y191{bottom:181.440000px;}
.y2c0{bottom:182.520000px;}
.y110{bottom:183.240000px;}
.y14{bottom:184.320000px;}
.y28e{bottom:184.620000px;}
.y18a{bottom:185.400000px;}
.y2a9{bottom:185.880000px;}
.y15d{bottom:186.840000px;}
.y259{bottom:187.200000px;}
.y2d2{bottom:187.560000px;}
.yf7{bottom:189.360000px;}
.y3f{bottom:190.800000px;}
.y216{bottom:192.360000px;}
.y87{bottom:192.960000px;}
.y281{bottom:193.560000px;}
.y2b6{bottom:194.040000px;}
.y29a{bottom:194.160000px;}
.y273{bottom:194.220000px;}
.y17e{bottom:195.840000px;}
.y16c{bottom:196.200000px;}
.y24b{bottom:196.500000px;}
.y2e6{bottom:196.560000px;}
.yde{bottom:196.920000px;}
.y269{bottom:197.400000px;}
.y224{bottom:198.000000px;}
.y133{bottom:199.440000px;}
.yc0{bottom:201.240000px;}
.y28d{bottom:205.500000px;}
.y2a8{bottom:206.760000px;}
.y13{bottom:207.000000px;}
.y1a2{bottom:207.360000px;}
.y1b9{bottom:208.500000px;}
.y3e{bottom:208.800000px;}
.y11b{bottom:211.320000px;}
.y201{bottom:211.500000px;}
.y215{bottom:211.800000px;}
.y10f{bottom:212.040000px;}
.y86{bottom:213.480000px;}
.y190{bottom:213.840000px;}
.y280{bottom:214.080000px;}
.y2b5{bottom:214.560000px;}
.y299{bottom:214.680000px;}
.y19c{bottom:214.920000px;}
.y272{bottom:215.100000px;}
.y1e0{bottom:216.360000px;}
.y66{bottom:217.800000px;}
.y268{bottom:217.920000px;}
.ydd{bottom:218.520000px;}
.y132{bottom:219.240000px;}
.ybf{bottom:222.480000px;}
.y2bf{bottom:225.720000px;}
.y3d{bottom:227.160000px;}
.y17d{bottom:228.240000px;}
.y10e{bottom:233.280000px;}
.y85{bottom:234.360000px;}
.y2f7{bottom:234.720000px;}
.y27f{bottom:234.960000px;}
.y2b4{bottom:235.440000px;}
.y298{bottom:235.560000px;}
.y2e5{bottom:236.160000px;}
.y1df{bottom:237.960000px;}
.y267{bottom:238.800000px;}
.y131{bottom:239.040000px;}
.yf6{bottom:239.760000px;}
.y1a1{bottom:240.840000px;}
.y11a{bottom:241.920000px;}
.y65{bottom:243.720000px;}
.ybe{bottom:244.080000px;}
.y3c{bottom:245.160000px;}
.y18f{bottom:246.240000px;}
.y16b{bottom:246.600000px;}
.ydc{bottom:247.320000px;}
.y2d1{bottom:248.040000px;}
.y12{bottom:249.120000px;}
.y189{bottom:250.200000px;}
.y235{bottom:250.500000px;}
.y15c{bottom:251.640000px;}
.y14b{bottom:253.080000px;}
.y84{bottom:254.880000px;}
.y27e{bottom:255.480000px;}
.y2b3{bottom:255.960000px;}
.y19b{bottom:257.040000px;}
.y130{bottom:258.840000px;}
.y266{bottom:259.320000px;}
.y17c{bottom:260.640000px;}
.yfa{bottom:261.000000px;}
.y3b{bottom:263.160000px;}
.y1b6{bottom:264.000000px;}
.ybd{bottom:265.320000px;}
.y2be{bottom:265.680000px;}
.y2d0{bottom:267.840000px;}
.y64{bottom:268.560000px;}
.ya4{bottom:270.000000px;}
.y119{bottom:272.520000px;}
.y83{bottom:275.760000px;}
.y27d{bottom:276.360000px;}
.y1de{bottom:276.480000px;}
.y2f6{bottom:276.840000px;}
.y18e{bottom:278.640000px;}
.y16a{bottom:279.000000px;}
.y188{bottom:282.600000px;}
.y10d{bottom:283.680000px;}
.y14a{bottom:285.480000px;}
.y63{bottom:289.440000px;}
.y24a{bottom:289.500000px;}
.ydb{bottom:289.800000px;}
.y11{bottom:291.240000px;}
.y2c4{bottom:293.040000px;}
.ybc{bottom:294.120000px;}
.y2e4{bottom:296.640000px;}
.y2b2{bottom:297.000000px;}
.y12f{bottom:298.800000px;}
.y118{bottom:303.120000px;}
.y254{bottom:304.500000px;}
.y82{bottom:304.920000px;}
.y2cf{bottom:308.520000px;}
.y62{bottom:309.960000px;}
.y21f{bottom:310.500000px;}
.y17b{bottom:311.040000px;}
.yf9{bottom:311.400000px;}
.ya3{bottom:311.760000px;}
.y1dd{bottom:312.480000px;}
.y187{bottom:315.000000px;}
.ybb{bottom:315.360000px;}
.y2e3{bottom:316.440000px;}
.y149{bottom:317.880000px;}
.yda{bottom:318.960000px;}
.y1b2{bottom:319.500000px;}
.y1fb{bottom:324.000000px;}
.y2c3{bottom:325.440000px;}
.y81{bottom:326.160000px;}
.y2ce{bottom:328.320000px;}
.y61{bottom:330.840000px;}
.ya2{bottom:332.640000px;}
.y10{bottom:333.000000px;}
.y117{bottom:333.720000px;}
.y12e{bottom:335.520000px;}
.y2e2{bottom:336.240000px;}
.y15b{bottom:337.320000px;}
.y3a{bottom:338.400000px;}
.yd9{bottom:340.200000px;}
.y19a{bottom:340.920000px;}
.y17a{bottom:343.440000px;}
.y1da{bottom:343.500000px;}
.y169{bottom:343.800000px;}
.yba{bottom:344.520000px;}
.y80{bottom:346.680000px;}
.y265{bottom:348.000000px;}
.y2cd{bottom:348.120000px;}
.y60{bottom:351.360000px;}
.ya1{bottom:353.160000px;}
.y10c{bottom:355.320000px;}
.y186{bottom:355.680000px;}
.y2e1{bottom:356.040000px;}
.y39{bottom:356.760000px;}
.y2f5{bottom:357.480000px;}
.y12d{bottom:360.360000px;}
.yf5{bottom:361.440000px;}
.y249{bottom:363.000000px;}
.y116{bottom:364.320000px;}
.yb9{bottom:365.760000px;}
.y7f{bottom:367.560000px;}
.yd8{bottom:369.000000px;}
.y15a{bottom:369.720000px;}
.y148{bottom:371.160000px;}
.y5f{bottom:372.240000px;}
.ya0{bottom:374.040000px;}
.yf{bottom:375.120000px;}
.y38{bottom:375.480000px;}
.y179{bottom:375.840000px;}
.y168{bottom:376.200000px;}
.y10b{bottom:376.560000px;}
.y185{bottom:377.280000px;}
.y28c{bottom:379.500000px;}
.y199{bottom:382.680000px;}
.yf4{bottom:383.040000px;}
.y12c{bottom:385.560000px;}
.yb8{bottom:387.000000px;}
.y7e{bottom:388.080000px;}
.y2cc{bottom:389.160000px;}
.yd7{bottom:390.240000px;}
.y5e{bottom:392.760000px;}
.y1ae{bottom:393.000000px;}
.y18d{bottom:393.840000px;}
.y9f{bottom:394.560000px;}
.y115{bottom:394.920000px;}
.y37{bottom:396.360000px;}
.y253{bottom:397.500000px;}
.y10a{bottom:397.800000px;}
.y2f4{bottom:398.160000px;}
.y1d6{bottom:399.000000px;}
.y159{bottom:402.120000px;}
.y147{bottom:403.560000px;}
.y178{bottom:408.240000px;}
.y7d{bottom:408.960000px;}
.y12b{bottom:411.480000px;}
.yf3{bottom:411.840000px;}
.y5d{bottom:413.640000px;}
.yb7{bottom:416.160000px;}
.y36{bottom:416.880000px;}
.y231{bottom:417.000000px;}
.ye{bottom:417.240000px;}
.y2f3{bottom:417.960000px;}
.yd6{bottom:419.400000px;}
.y9e{bottom:424.080000px;}
.y198{bottom:424.800000px;}
.y184{bottom:426.240000px;}
.y167{bottom:426.600000px;}
.y109{bottom:426.960000px;}
.y2cb{bottom:428.760000px;}
.y7c{bottom:429.480000px;}
.yf2{bottom:433.080000px;}
.y5c{bottom:433.440000px;}
.y158{bottom:434.520000px;}
.y146{bottom:435.960000px;}
.y1f4{bottom:436.500000px;}
.y114{bottom:436.680000px;}
.yb6{bottom:437.400000px;}
.y35{bottom:437.760000px;}
.yd5{bottom:440.640000px;}
.y12a{bottom:441.360000px;}
.y9d{bottom:444.960000px;}
.y108{bottom:448.200000px;}
.y2ca{bottom:448.560000px;}
.y7b{bottom:450.360000px;}
.y2e0{bottom:456.480000px;}
.y34{bottom:458.280000px;}
.yb5{bottom:458.640000px;}
.yd{bottom:459.000000px;}
.yf1{bottom:461.880000px;}
.y5b{bottom:464.400000px;}
.y9c{bottom:465.840000px;}
.y157{bottom:466.920000px;}
.y1ab{bottom:468.000000px;}
.y145{bottom:468.360000px;}
.yd4{bottom:469.440000px;}
.y113{bottom:470.160000px;}
.y129{bottom:470.520000px;}
.y1d1{bottom:472.500000px;}
.y177{bottom:473.040000px;}
.y2df{bottom:476.280000px;}
.y2f2{bottom:478.440000px;}
.y33{bottom:479.160000px;}
.y7a{bottom:479.520000px;}
.y5a{bottom:482.760000px;}
.yf0{bottom:483.480000px;}
.y9b{bottom:486.360000px;}
.yb4{bottom:487.440000px;}
.y2c9{bottom:489.240000px;}
.y230{bottom:490.500000px;}
.yd3{bottom:491.040000px;}
.y166{bottom:491.400000px;}
.y112{bottom:492.840000px;}
.y128{bottom:496.440000px;}
.y107{bottom:498.240000px;}
.y156{bottom:499.320000px;}
.y32{bottom:499.680000px;}
.y79{bottom:500.760000px;}
.y214{bottom:501.000000px;}
.yc{bottom:501.120000px;}
.yef{bottom:504.720000px;}
.y176{bottom:505.440000px;}
.y9a{bottom:507.240000px;}
.y247{bottom:508.500000px;}
.yb3{bottom:509.040000px;}
.yd2{bottom:512.280000px;}
.y2de{bottom:516.960000px;}
.y31{bottom:517.320000px;}
.y2f1{bottom:518.040000px;}
.y59{bottom:519.120000px;}
.y106{bottom:519.840000px;}
.y78{bottom:521.280000px;}
.y183{bottom:523.440000px;}
.y165{bottom:523.800000px;}
.y127{bottom:526.320000px;}
.y99{bottom:527.760000px;}
.y2c8{bottom:528.840000px;}
.yb2{bottom:530.280000px;}
.y155{bottom:531.720000px;}
.yee{bottom:533.520000px;}
.y30{bottom:534.960000px;}
.y2dd{bottom:536.760000px;}
.y58{bottom:537.120000px;}
.y2f0{bottom:537.840000px;}
.yd1{bottom:541.080000px;}
.y197{bottom:541.440000px;}
.y77{bottom:542.160000px;}
.yb{bottom:543.240000px;}
.y144{bottom:545.760000px;}
.y1ef{bottom:547.500000px;}
.y98{bottom:548.640000px;}
.y2f{bottom:552.960000px;}
.yed{bottom:555.120000px;}
.y57{bottom:555.480000px;}
.y175{bottom:555.840000px;}
.y164{bottom:556.200000px;}
.yb1{bottom:559.080000px;}
.yd0{bottom:562.320000px;}
.y24f{bottom:562.500000px;}
.y76{bottom:562.680000px;}
.y154{bottom:564.120000px;}
.y1cc{bottom:567.000000px;}
.y1aa{bottom:568.080000px;}
.y105{bottom:569.880000px;}
.y2e{bottom:570.960000px;}
.y56{bottom:573.480000px;}
.y196{bottom:573.840000px;}
.yec{bottom:576.360000px;}
.y2dc{bottom:577.440000px;}
.y97{bottom:577.800000px;}
.y2ef{bottom:578.880000px;}
.yb0{bottom:580.680000px;}
.y126{bottom:581.400000px;}
.y22b{bottom:582.000000px;}
.y75{bottom:583.560000px;}
.ycf{bottom:583.920000px;}
.ya{bottom:585.000000px;}
.y143{bottom:587.160000px;}
.y174{bottom:588.240000px;}
.y163{bottom:588.600000px;}
.y2d{bottom:589.320000px;}
.y55{bottom:591.480000px;}
.y2ee{bottom:598.680000px;}
.y96{bottom:599.040000px;}
.y74{bottom:604.080000px;}
.yeb{bottom:605.160000px;}
.y195{bottom:606.240000px;}
.y2c{bottom:608.040000px;}
.y2c7{bottom:609.120000px;}
.yaf{bottom:609.480000px;}
.y54{bottom:609.840000px;}
.y125{bottom:611.280000px;}
.yce{bottom:612.720000px;}
.y1a9{bottom:614.880000px;}
.y27c{bottom:615.000000px;}
.y153{bottom:617.400000px;}
.y2db{bottom:618.480000px;}
.y95{bottom:619.560000px;}
.y104{bottom:620.280000px;}
.y173{bottom:620.640000px;}
.y1ee{bottom:621.000000px;}
.y142{bottom:623.880000px;}
.y73{bottom:624.960000px;}
.y2b{bottom:626.400000px;}
.yea{bottom:626.760000px;}
.y9{bottom:627.120000px;}
.y53{bottom:627.840000px;}
.y162{bottom:630.360000px;}
.yae{bottom:630.720000px;}
.ycd{bottom:633.960000px;}
.y263{bottom:637.500000px;}
.y2da{bottom:638.280000px;}
.y194{bottom:638.640000px;}
.y94{bottom:640.440000px;}
.y103{bottom:641.520000px;}
.y141{bottom:643.680000px;}
.y1a8{bottom:644.400000px;}
.y2a{bottom:645.120000px;}
.y72{bottom:645.480000px;}
.y52{bottom:645.840000px;}
.ye9{bottom:648.000000px;}
.y152{bottom:649.800000px;}
.yad{bottom:652.320000px;}
.y172{bottom:653.040000px;}
.y246{bottom:655.500000px;}
.yf8{bottom:655.560000px;}
.y2d9{bottom:658.080000px;}
.y2ed{bottom:659.160000px;}
.y1c9{bottom:660.000000px;}
.y93{bottom:660.960000px;}
.ycc{bottom:663.120000px;}
.y140{bottom:663.480000px;}
.y29{bottom:664.200000px;}
.y71{bottom:666.360000px;}
.y8{bottom:669.240000px;}
.y102{bottom:670.320000px;}
.y182{bottom:671.040000px;}
.y1a7{bottom:674.280000px;}
.y1ea{bottom:675.000000px;}
.ye8{bottom:676.800000px;}
.y2d8{bottom:677.880000px;}
.y2ec{bottom:678.960000px;}
.yac{bottom:681.120000px;}
.y92{bottom:681.840000px;}
.y51{bottom:682.200000px;}
.ycb{bottom:684.360000px;}
.y28{bottom:685.440000px;}
.y262{bottom:691.200000px;}
.y101{bottom:691.920000px;}
.y13f{bottom:692.280000px;}
.y24e{bottom:694.500000px;}
.y70{bottom:695.520000px;}
.y124{bottom:696.240000px;}
.ye7{bottom:698.040000px;}
.y2eb{bottom:698.760000px;}
.y50{bottom:700.200000px;}
.y91{bottom:702.360000px;}
.y181{bottom:703.440000px;}
.y1a6{bottom:703.800000px;}
.y27{bottom:704.160000px;}
.yca{bottom:705.600000px;}
.y7{bottom:711.000000px;}
.y13e{bottom:712.080000px;}
.y100{bottom:713.160000px;}
.y151{bottom:714.600000px;}
.y6f{bottom:716.760000px;}
.y171{bottom:717.840000px;}
.y261{bottom:718.200000px;}
.y1c5{bottom:718.500000px;}
.y4f{bottom:718.560000px;}
.ye6{bottom:719.640000px;}
.y26{bottom:722.520000px;}
.y2c6{bottom:724.680000px;}
.y123{bottom:728.640000px;}
.y212{bottom:729.000000px;}
.yab{bottom:731.160000px;}
.y90{bottom:731.880000px;}
.yc9{bottom:734.400000px;}
.y180{bottom:735.840000px;}
.y4e{bottom:736.560000px;}
.y6e{bottom:737.280000px;}
.y2d7{bottom:738.360000px;}
.y150{bottom:747.000000px;}
.ye5{bottom:748.440000px;}
.y1e4{bottom:748.500000px;}
.y170{bottom:750.240000px;}
.y13d{bottom:751.680000px;}
.y8f{bottom:752.760000px;}
.y6{bottom:753.120000px;}
.y4d{bottom:754.560000px;}
.yc8{bottom:756.000000px;}
.y260{bottom:757.080000px;}
.y6d{bottom:758.160000px;}
.yff{bottom:763.560000px;}
.y25{bottom:765.720000px;}
.y122{bottom:768.240000px;}
.ye4{bottom:769.680000px;}
.y13c{bottom:771.480000px;}
.y4c{bottom:772.560000px;}
.y8e{bottom:773.640000px;}
.yaa{bottom:774.000000px;}
.yc7{bottom:777.240000px;}
.y6c{bottom:778.680000px;}
.y2d6{bottom:779.040000px;}
.y161{bottom:779.400000px;}
.y16f{bottom:782.640000px;}
.yfe{bottom:784.800000px;}
.y25f{bottom:789.480000px;}
.y4b{bottom:790.920000px;}
.y24{bottom:791.280000px;}
.y1c2{bottom:793.500000px;}
.y8d{bottom:794.160000px;}
.y5{bottom:795.240000px;}
.ye3{bottom:798.840000px;}
.y6b{bottom:799.560000px;}
.y14f{bottom:800.640000px;}
.ya9{bottom:802.800000px;}
.yc6{bottom:806.040000px;}
.y4a{bottom:808.920000px;}
.y13b{bottom:811.080000px;}
.y160{bottom:811.800000px;}
.y8c{bottom:815.040000px;}
.y2a4{bottom:817.500000px;}
.y2d5{bottom:818.640000px;}
.y6a{bottom:820.080000px;}
.y25e{bottom:821.880000px;}
.y20d{bottom:822.000000px;}
.ya8{bottom:824.400000px;}
.y49{bottom:826.920000px;}
.yc5{bottom:827.640000px;}
.y121{bottom:829.440000px;}
.y14e{bottom:833.040000px;}
.y23{bottom:835.560000px;}
.y4{bottom:837.000000px;}
.y1f{bottom:837.360000px;}
.y2ea{bottom:838.440000px;}
.y13a{bottom:839.880000px;}
.y69{bottom:840.960000px;}
.y241{bottom:841.500000px;}
.y48{bottom:845.280000px;}
.ya7{bottom:845.640000px;}
.ye2{bottom:848.880000px;}
.y25d{bottom:854.280000px;}
.y1bf{bottom:855.000000px;}
.y22{bottom:856.440000px;}
.y139{bottom:859.680000px;}
.y120{bottom:860.040000px;}
.y68{bottom:861.480000px;}
.y47{bottom:863.280000px;}
.y14d{bottom:865.440000px;}
.y1a0{bottom:873.360000px;}
.y21{bottom:876.960000px;}
.yc4{bottom:877.680000px;}
.ya6{bottom:878.760000px;}
.y3{bottom:879.120000px;}
.y138{bottom:879.480000px;}
.y46{bottom:881.280000px;}
.y11f{bottom:890.640000px;}
.y67{bottom:893.520000px;}
.y25c{bottom:896.400000px;}
.y20{bottom:897.840000px;}
.ya5{bottom:899.280000px;}
.y45{bottom:899.640000px;}
.y19f{bottom:900.360000px;}
.y16{bottom:933.000000px;}
.h30{height:33.000000px;}
.hd{height:37.352813px;}
.h2{height:40.310156px;}
.h21{height:40.500000px;}
.hb{height:42.229688px;}
.h24{height:43.500000px;}
.hc{height:44.024063px;}
.h9{height:44.149219px;}
.h17{height:44.760960px;}
.h23{height:46.500000px;}
.h4{height:47.545313px;}
.h1a{height:47.988281px;}
.h1f{height:49.472640px;}
.h1b{height:49.533120px;}
.h1c{height:49.878281px;}
.h18{height:50.863680px;}
.h22{height:51.000000px;}
.h8{height:51.827344px;}
.h1d{height:52.500000px;}
.h11{height:54.184320px;}
.h13{height:54.250560px;}
.h10{height:55.177920px;}
.h5{height:57.000000px;}
.h20{height:58.500000px;}
.h12{height:58.896000px;}
.h16{height:59.976000px;}
.h1e{height:60.000000px;}
.he{height:60.465234px;}
.ha{height:63.175781px;}
.h14{height:64.304297px;}
.h19{height:65.396160px;}
.h6{height:69.572160px;}
.h2f{height:70.500000px;}
.h28{height:72.000000px;}
.hf{height:76.295520px;}
.h25{height:78.000000px;}
.h26{height:79.500000px;}
.h15{height:85.983840px;}
.h36{height:88.500000px;}
.h2d{height:90.000000px;}
.h2a{height:91.500000px;}
.h29{height:109.500000px;}
.h27{height:111.000000px;}
.h3{height:112.292578px;}
.h7{height:112.500000px;}
.h2e{height:130.500000px;}
.h2c{height:189.000000px;}
.h34{height:220.500000px;}
.h37{height:222.000000px;}
.h2b{height:226.500000px;}
.h32{height:229.500000px;}
.h35{height:250.500000px;}
.h38{height:270.000000px;}
.h31{height:274.500000px;}
.h33{height:291.000000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w7{width:52.500000px;}
.wb{width:75.000000px;}
.w8{width:76.500000px;}
.w9{width:106.500000px;}
.wa{width:117.000000px;}
.w5{width:150.000000px;}
.w4{width:223.500000px;}
.w6{width:225.000000px;}
.w3{width:244.500000px;}
.wc{width:328.500000px;}
.w2{width:486.000000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:3.000000px;}
.x32{left:5.219964px;}
.x30{left:6.780036px;}
.x31{left:7.980072px;}
.x7{left:10.799928px;}
.x39{left:17.490360px;}
.xd{left:18.929076px;}
.x3c{left:22.020624px;}
.x5{left:23.892696px;}
.x37{left:31.019880px;}
.xb{left:33.108756px;}
.x2f{left:34.379880px;}
.xa{left:41.866332px;}
.xc{left:49.693344px;}
.x2d{left:55.373280px;}
.x9{left:61.815300px;}
.x2a{left:64.500000px;}
.x2b{left:74.978760px;}
.x3{left:84.959856px;}
.x1b{left:86.714712px;}
.x6{left:101.790540px;}
.x3b{left:111.945000px;}
.x3f{left:115.591200px;}
.x26{left:116.834832px;}
.x4{left:126.000000px;}
.xf{left:128.475972px;}
.x33{left:136.500000px;}
.x27{left:148.784904px;}
.x28{left:159.359976px;}
.x3d{left:202.500000px;}
.x34{left:213.000000px;}
.x10{left:234.702036px;}
.x21{left:253.587888px;}
.x15{left:257.743656px;}
.x13{left:271.923336px;}
.x12{left:280.680912px;}
.x16{left:285.494760px;}
.x2c{left:286.500000px;}
.x14{left:288.507924px;}
.x11{left:300.629880px;}
.x18{left:304.177752px;}
.x3e{left:309.000000px;}
.x1c{left:310.589352px;}
.x35{left:318.000000px;}
.x25{left:319.226076px;}
.x19{left:332.382204px;}
.x1a{left:335.590920px;}
.x2{left:339.106536px;}
.xe{left:359.122176px;}
.x1{left:361.372320px;}
.x36{left:393.000000px;}
.x22{left:404.330400px;}
.x1f{left:409.945320px;}
.x23{left:433.589760px;}
.x2e{left:435.000000px;}
.x20{left:448.951320px;}
.x1e{left:466.002000px;}
.x17{left:485.403480px;}
.x1d{left:491.664960px;}
.x38{left:510.000000px;}
.x3a{left:585.000000px;}
.x29{left:626.399640px;}
.x24{left:637.785000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-0.471808pt;}
.ls18{letter-spacing:-0.387072pt;}
.ls56{letter-spacing:-0.381696pt;}
.ls4a{letter-spacing:-0.360192pt;}
.ls57{letter-spacing:-0.349440pt;}
.ls40{letter-spacing:-0.327936pt;}
.ls51{letter-spacing:-0.317184pt;}
.ls3e{letter-spacing:-0.311808pt;}
.ls41{letter-spacing:-0.306432pt;}
.ls3a{letter-spacing:-0.301056pt;}
.ls4f{letter-spacing:-0.295680pt;}
.ls3f{letter-spacing:-0.290304pt;}
.ls4c{letter-spacing:-0.284928pt;}
.ls5d{letter-spacing:-0.279552pt;}
.ls17{letter-spacing:-0.275968pt;}
.ls39{letter-spacing:-0.274176pt;}
.ls45{letter-spacing:-0.263424pt;}
.lsf{letter-spacing:-0.259072pt;}
.ls3d{letter-spacing:-0.258048pt;}
.ls59{letter-spacing:-0.252672pt;}
.ls47{letter-spacing:-0.247296pt;}
.ls42{letter-spacing:-0.241920pt;}
.ls4d{letter-spacing:-0.236544pt;}
.ls49{letter-spacing:-0.231168pt;}
.lsc{letter-spacing:-0.230912pt;}
.ls46{letter-spacing:-0.225792pt;}
.ls2d{letter-spacing:-0.223744pt;}
.ls52{letter-spacing:-0.220416pt;}
.ls14{letter-spacing:-0.219648pt;}
.ls23{letter-spacing:-0.215040pt;}
.ls12{letter-spacing:-0.214016pt;}
.ls50{letter-spacing:-0.204288pt;}
.lsd{letter-spacing:-0.202752pt;}
.ls4e{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.188416pt;}
.ls48{letter-spacing:-0.188160pt;}
.ls44{letter-spacing:-0.182784pt;}
.ls2f{letter-spacing:-0.182528pt;}
.ls30{letter-spacing:-0.176640pt;}
.ls3b{letter-spacing:-0.172032pt;}
.ls16{letter-spacing:-0.168960pt;}
.ls26{letter-spacing:-0.164864pt;}
.ls5c{letter-spacing:-0.161280pt;}
.ls1f{letter-spacing:-0.158976pt;}
.lse{letter-spacing:-0.157696pt;}
.ls55{letter-spacing:-0.155904pt;}
.ls24{letter-spacing:-0.153088pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls2e{letter-spacing:-0.145920pt;}
.ls43{letter-spacing:-0.145152pt;}
.ls20{letter-spacing:-0.141312pt;}
.ls54{letter-spacing:-0.139776pt;}
.ls4{letter-spacing:-0.135424pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls53{letter-spacing:-0.129024pt;}
.ls1b{letter-spacing:-0.123648pt;}
.ls11{letter-spacing:-0.118272pt;}
.ls27{letter-spacing:-0.118144pt;}
.ls1a{letter-spacing:-0.117760pt;}
.ls58{letter-spacing:-0.112896pt;}
.ls21{letter-spacing:-0.111872pt;}
.ls29{letter-spacing:-0.109056pt;}
.ls4b{letter-spacing:-0.107520pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls1c{letter-spacing:-0.105984pt;}
.ls25{letter-spacing:-0.100096pt;}
.ls10{letter-spacing:-0.095744pt;}
.lsa{letter-spacing:-0.094208pt;}
.ls2b{letter-spacing:-0.088320pt;}
.ls19{letter-spacing:-0.082432pt;}
.ls28{letter-spacing:-0.081792pt;}
.ls22{letter-spacing:-0.076544pt;}
.ls1e{letter-spacing:-0.070656pt;}
.ls3c{letter-spacing:-0.064768pt;}
.ls38{letter-spacing:-0.052992pt;}
.lsb{letter-spacing:-0.047104pt;}
.ls2a{letter-spacing:-0.035328pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000512pt;}
.ls61{letter-spacing:0.055296pt;}
.ls1{letter-spacing:0.089856pt;}
.ls33{letter-spacing:0.103680pt;}
.ls60{letter-spacing:0.106624pt;}
.ls5b{letter-spacing:0.138240pt;}
.ls32{letter-spacing:0.152064pt;}
.ls5e{letter-spacing:0.158976pt;}
.ls5f{letter-spacing:0.172800pt;}
.ls35{letter-spacing:0.186624pt;}
.ls3{letter-spacing:0.244992pt;}
.ls0{letter-spacing:0.296960pt;}
.ls63{letter-spacing:2.914560pt;}
.ls64{letter-spacing:6.485760pt;}
.ls9{letter-spacing:14.894080pt;}
.ls34{letter-spacing:15.969664pt;}
.ls65{letter-spacing:18.375424pt;}
.ls62{letter-spacing:23.596800pt;}
.ls31{letter-spacing:31.014016pt;}
.ls37{letter-spacing:37.224320pt;}
.ls66{letter-spacing:37.310720pt;}
.ls36{letter-spacing:75.863680pt;}
.ls5a{letter-spacing:91.702784pt;}
.ls7{letter-spacing:726.366720pt;}
.ls15{letter-spacing:749.775360pt;}
.ls67{letter-spacing:752.000000pt;}
.ws17{word-spacing:-19.611904pt;}
.ws40{word-spacing:-15.137280pt;}
.ws1e{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.972992pt;}
.ws5{word-spacing:-13.922304pt;}
.ws1d{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.860352pt;}
.ws49{word-spacing:-13.383424pt;}
.wsf{word-spacing:-13.365760pt;}
.ws16{word-spacing:-13.336320pt;}
.ws9{word-spacing:-13.318656pt;}
.ws46{word-spacing:-13.312768pt;}
.ws19{word-spacing:-13.306880pt;}
.ws47{word-spacing:-13.300992pt;}
.ws13{word-spacing:-13.295104pt;}
.ws48{word-spacing:-13.289216pt;}
.ws45{word-spacing:-13.277440pt;}
.ws18{word-spacing:-13.271552pt;}
.wse{word-spacing:-13.265664pt;}
.wsa{word-spacing:-13.259776pt;}
.ws14{word-spacing:-13.253888pt;}
.ws15{word-spacing:-13.248000pt;}
.ws10{word-spacing:-13.242112pt;}
.ws8{word-spacing:-13.236224pt;}
.ws11{word-spacing:-13.230336pt;}
.wsd{word-spacing:-13.224960pt;}
.ws44{word-spacing:-13.224448pt;}
.wsb{word-spacing:-13.218560pt;}
.ws12{word-spacing:-13.212672pt;}
.wsc{word-spacing:-13.206784pt;}
.ws1a{word-spacing:-13.189120pt;}
.ws1c{word-spacing:-13.124352pt;}
.ws1f{word-spacing:-12.776960pt;}
.ws7{word-spacing:-12.694528pt;}
.ws27{word-spacing:-12.670976pt;}
.ws28{word-spacing:-12.659200pt;}
.ws37{word-spacing:-12.203520pt;}
.ws43{word-spacing:-12.090624pt;}
.ws33{word-spacing:-12.074496pt;}
.ws35{word-spacing:-12.058368pt;}
.ws36{word-spacing:-12.047616pt;}
.ws23{word-spacing:-12.020736pt;}
.ws3a{word-spacing:-12.015360pt;}
.ws30{word-spacing:-12.004608pt;}
.ws32{word-spacing:-11.999232pt;}
.ws3f{word-spacing:-11.977728pt;}
.ws26{word-spacing:-11.961600pt;}
.ws2f{word-spacing:-11.940096pt;}
.ws34{word-spacing:-11.918592pt;}
.ws31{word-spacing:-11.907840pt;}
.ws3c{word-spacing:-11.902464pt;}
.ws3e{word-spacing:-11.897088pt;}
.ws3b{word-spacing:-11.891712pt;}
.ws39{word-spacing:-11.886336pt;}
.ws3d{word-spacing:-11.854080pt;}
.ws38{word-spacing:-11.821824pt;}
.ws25{word-spacing:-11.665920pt;}
.ws2d{word-spacing:-11.520768pt;}
.ws41{word-spacing:-11.504640pt;}
.ws2a{word-spacing:-11.467008pt;}
.ws2b{word-spacing:-11.434752pt;}
.ws24{word-spacing:-11.418624pt;}
.ws29{word-spacing:-11.391744pt;}
.ws42{word-spacing:-11.386368pt;}
.ws21{word-spacing:-11.375616pt;}
.ws20{word-spacing:-11.364864pt;}
.ws2e{word-spacing:-11.354112pt;}
.ws22{word-spacing:-11.337984pt;}
.ws2c{word-spacing:-11.305728pt;}
.ws1b{word-spacing:-10.817536pt;}
.ws0{word-spacing:-0.158976pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:0.306432pt;}
._1e{margin-left:-12.921856pt;}
._1b{margin-left:-11.834880pt;}
._1d{margin-left:-10.904320pt;}
._20{margin-left:-9.582848pt;}
._1c{margin-left:-8.505344pt;}
._1a{margin-left:-7.208192pt;}
._21{margin-left:-6.225408pt;}
._1f{margin-left:-5.289472pt;}
._e{margin-left:-3.404800pt;}
._10{margin-left:-2.291712pt;}
._0{margin-left:-1.279488pt;}
._1{width:0.942080pt;}
._17{width:1.885952pt;}
._2{width:2.816000pt;}
._6{width:4.083200pt;}
._4{width:5.688320pt;}
._11{width:6.856960pt;}
._24{width:8.055040pt;}
._a{width:9.248000pt;}
._22{width:10.182400pt;}
._15{width:11.481600pt;}
._18{width:12.614400pt;}
._9{width:14.200320pt;}
._3{width:15.221760pt;}
._26{width:16.116480pt;}
._16{width:17.043200pt;}
._27{width:18.412800pt;}
._c{width:19.545600pt;}
._14{width:20.454400pt;}
._13{width:21.536000pt;}
._5{width:22.993920pt;}
._7{width:24.083200pt;}
._d{width:25.529600pt;}
._8{width:27.040000pt;}
._23{width:28.183424pt;}
._f{width:29.171200pt;}
._12{width:30.796800pt;}
._2a{width:31.744000pt;}
._29{width:33.497600pt;}
._25{width:35.276800pt;}
._2d{width:39.481600pt;}
._43{width:40.803840pt;}
._35{width:42.255360pt;}
._2b{width:44.108800pt;}
._4e{width:47.040000pt;}
._b{width:47.961600pt;}
._2f{width:49.405440pt;}
._51{width:50.749440pt;}
._4f{width:52.523520pt;}
._5e{width:53.733248pt;}
._28{width:54.783616pt;}
._4d{width:55.800704pt;}
._46{width:56.770560pt;}
._2c{width:58.547200pt;}
._4a{width:61.017600pt;}
._45{width:62.443520pt;}
._30{width:64.107520pt;}
._57{width:65.292800pt;}
._3e{width:68.974080pt;}
._5b{width:69.995520pt;}
._50{width:71.662080pt;}
._31{width:73.730560pt;}
._55{width:74.887680pt;}
._59{width:80.532480pt;}
._54{width:82.951680pt;}
._34{width:85.908480pt;}
._3c{width:89.564160pt;}
._5a{width:90.478080pt;}
._49{width:98.488320pt;}
._3a{width:107.491840pt;}
._44{width:108.864000pt;}
._52{width:110.853120pt;}
._53{width:116.229120pt;}
._3f{width:118.863360pt;}
._47{width:120.583680pt;}
._39{width:123.164160pt;}
._41{width:127.142400pt;}
._58{width:134.292480pt;}
._37{width:139.077120pt;}
._3b{width:141.227520pt;}
._40{width:149.775360pt;}
._38{width:152.893440pt;}
._36{width:156.172800pt;}
._32{width:163.215360pt;}
._48{width:166.440960pt;}
._3d{width:170.849280pt;}
._42{width:180.042240pt;}
._2e{width:185.149440pt;}
._5c{width:186.501120pt;}
._56{width:192.084480pt;}
._4c{width:200.363520pt;}
._4b{width:204.556800pt;}
._33{width:216.814080pt;}
._19{width:752.000000pt;}
._5d{width:1582.517760pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:80.640000pt;}
.fs9{font-size:85.760000pt;}
.fsa{font-size:90.880000pt;}
.fs1{font-size:149.760000pt;}
.y19{bottom:-27.413333pt;}
.y0{bottom:0.000000pt;}
.y1fa{bottom:0.160000pt;}
.y200{bottom:0.640000pt;}
.y208{bottom:0.800000pt;}
.y1ed{bottom:0.960000pt;}
.y24c{bottom:1.013333pt;}
.y1f3{bottom:1.333333pt;}
.y1d9{bottom:5.013333pt;}
.y1be{bottom:5.066667pt;}
.y1d0{bottom:5.120000pt;}
.y1b5{bottom:5.280000pt;}
.y1dc{bottom:5.386667pt;}
.y1b8{bottom:5.653333pt;}
.y1c8{bottom:5.813333pt;}
.y1b1{bottom:5.866667pt;}
.y1d5{bottom:5.920000pt;}
.y1bb{bottom:6.026667pt;}
.y28b{bottom:6.293333pt;}
.y2bd{bottom:6.720000pt;}
.y2a3{bottom:6.826667pt;}
.y27b{bottom:7.200000pt;}
.y1cb{bottom:8.853333pt;}
.y18{bottom:10.666667pt;}
.y1c4{bottom:11.466667pt;}
.y1c1{bottom:15.360000pt;}
.y1f9{bottom:15.520000pt;}
.y264{bottom:15.733333pt;}
.y217{bottom:15.786667pt;}
.y244{bottom:15.840000pt;}
.y232{bottom:15.893333pt;}
.y234{bottom:15.946667pt;}
.y1ad{bottom:16.000000pt;}
.y257{bottom:16.053333pt;}
.y210{bottom:16.213333pt;}
.y1e9{bottom:16.266667pt;}
.y1ec{bottom:16.320000pt;}
.y238{bottom:16.373333pt;}
.y206{bottom:16.480000pt;}
.y20b{bottom:16.533333pt;}
.y226{bottom:16.640000pt;}
.y1f2{bottom:16.693333pt;}
.y22e{bottom:16.746667pt;}
.y240{bottom:16.800000pt;}
.y296{bottom:16.906667pt;}
.y229{bottom:17.013333pt;}
.y1e{bottom:17.280000pt;}
.y271{bottom:17.386667pt;}
.y2a7{bottom:17.973333pt;}
.y2b1{bottom:18.026667pt;}
.y1b4{bottom:22.240000pt;}
.y1d8{bottom:22.293333pt;}
.y1bd{bottom:22.346667pt;}
.y1cf{bottom:22.400000pt;}
.y1db{bottom:22.666667pt;}
.y1b7{bottom:22.933333pt;}
.y1c7{bottom:23.093333pt;}
.y1b0{bottom:23.146667pt;}
.y1d4{bottom:23.200000pt;}
.y1ba{bottom:23.306667pt;}
.y28a{bottom:24.853333pt;}
.y2bc{bottom:25.280000pt;}
.y2a2{bottom:25.386667pt;}
.y27a{bottom:25.440000pt;}
.y1ca{bottom:26.133333pt;}
.y1c3{bottom:28.746667pt;}
.y1c0{bottom:32.640000pt;}
.y1f8{bottom:32.800000pt;}
.y17{bottom:33.066667pt;}
.y243{bottom:33.120000pt;}
.y211{bottom:33.173333pt;}
.y233{bottom:33.226667pt;}
.y1ac{bottom:33.280000pt;}
.y258{bottom:33.333333pt;}
.y205{bottom:33.440000pt;}
.y1e8{bottom:33.546667pt;}
.y1eb{bottom:33.600000pt;}
.y239{bottom:33.653333pt;}
.y23d{bottom:33.760000pt;}
.y20a{bottom:33.813333pt;}
.y1d{bottom:33.920000pt;}
.y1f1{bottom:33.973333pt;}
.y22f{bottom:34.026667pt;}
.y23f{bottom:34.080000pt;}
.y295{bottom:35.466667pt;}
.y2b0{bottom:36.586667pt;}
.y1b3{bottom:39.520000pt;}
.y1d7{bottom:39.573333pt;}
.y1ce{bottom:39.680000pt;}
.y1c6{bottom:40.373333pt;}
.y1af{bottom:40.426667pt;}
.y1d3{bottom:40.480000pt;}
.y289{bottom:43.093333pt;}
.y2bb{bottom:43.520000pt;}
.y2a1{bottom:43.626667pt;}
.y1ff{bottom:43.840000pt;}
.y279{bottom:44.000000pt;}
.y207{bottom:44.320000pt;}
.y270{bottom:46.506667pt;}
.y2a6{bottom:47.093333pt;}
.y1f7{bottom:50.080000pt;}
.y1c{bottom:50.240000pt;}
.y21e{bottom:50.346667pt;}
.y242{bottom:50.400000pt;}
.y20f{bottom:50.453333pt;}
.y1e7{bottom:50.506667pt;}
.y1fe{bottom:50.560000pt;}
.y256{bottom:50.613333pt;}
.y204{bottom:50.720000pt;}
.y22a{bottom:50.826667pt;}
.y2{bottom:50.880000pt;}
.y237{bottom:50.933333pt;}
.y23c{bottom:51.040000pt;}
.y20c{bottom:51.093333pt;}
.y227{bottom:51.200000pt;}
.y1f0{bottom:51.253333pt;}
.y22d{bottom:51.306667pt;}
.y248{bottom:51.360000pt;}
.y294{bottom:53.706667pt;}
.y2af{bottom:54.826667pt;}
.y1cd{bottom:56.960000pt;}
.y1d2{bottom:57.760000pt;}
.y288{bottom:61.653333pt;}
.y2ba{bottom:62.080000pt;}
.y2a0{bottom:62.186667pt;}
.y278{bottom:62.240000pt;}
.y26f{bottom:65.066667pt;}
.y2a5{bottom:65.653333pt;}
.y1{bottom:65.920000pt;}
.y1b{bottom:66.880000pt;}
.y1f6{bottom:67.360000pt;}
.y21d{bottom:67.626667pt;}
.y20e{bottom:67.733333pt;}
.y1e6{bottom:67.786667pt;}
.y1fd{bottom:67.840000pt;}
.y255{bottom:67.893333pt;}
.y203{bottom:68.000000pt;}
.y213{bottom:68.160000pt;}
.y236{bottom:68.213333pt;}
.y23b{bottom:68.320000pt;}
.y225{bottom:68.480000pt;}
.y22c{bottom:68.586667pt;}
.y252{bottom:68.640000pt;}
.y286{bottom:69.333333pt;}
.y293{bottom:72.266667pt;}
.y2ae{bottom:73.386667pt;}
.y287{bottom:79.893333pt;}
.y2b9{bottom:80.320000pt;}
.y29f{bottom:80.426667pt;}
.y277{bottom:80.800000pt;}
.y19e{bottom:82.240000pt;}
.y26e{bottom:83.306667pt;}
.y1a{bottom:83.840000pt;}
.y1a5{bottom:84.480000pt;}
.y1f5{bottom:84.640000pt;}
.y21c{bottom:84.906667pt;}
.y1e5{bottom:85.066667pt;}
.y1fc{bottom:85.120000pt;}
.y202{bottom:85.280000pt;}
.y245{bottom:85.440000pt;}
.yfd{bottom:85.760000pt;}
.y251{bottom:85.920000pt;}
.y16e{bottom:88.000000pt;}
.y44{bottom:89.280000pt;}
.y292{bottom:90.506667pt;}
.y2ad{bottom:91.626667pt;}
.y23e{bottom:92.000000pt;}
.y25b{bottom:92.480000pt;}
.y2c2{bottom:96.320000pt;}
.y8b{bottom:97.600000pt;}
.y285{bottom:98.453333pt;}
.y1e3{bottom:98.560000pt;}
.y137{bottom:98.880000pt;}
.y29e{bottom:98.986667pt;}
.y276{bottom:99.040000pt;}
.y297{bottom:101.333333pt;}
.y26d{bottom:101.866667pt;}
.y21b{bottom:102.186667pt;}
.y223{bottom:102.560000pt;}
.y250{bottom:103.200000pt;}
.y2e9{bottom:103.360000pt;}
.y193{bottom:103.680000pt;}
.yfc{bottom:104.640000pt;}
.y43{bottom:105.280000pt;}
.y11e{bottom:106.240000pt;}
.y18c{bottom:107.200000pt;}
.y15f{bottom:108.480000pt;}
.y291{bottom:109.066667pt;}
.y24d{bottom:109.333333pt;}
.y2ac{bottom:110.186667pt;}
.y228{bottom:110.666667pt;}
.ye1{bottom:111.360000pt;}
.y1a4{bottom:113.280000pt;}
.yc3{bottom:115.200000pt;}
.y8a{bottom:116.160000pt;}
.y136{bottom:116.480000pt;}
.y284{bottom:116.693333pt;}
.y15{bottom:116.800000pt;}
.y2b8{bottom:117.120000pt;}
.y29d{bottom:117.226667pt;}
.y275{bottom:117.600000pt;}
.y21a{bottom:119.466667pt;}
.y222{bottom:119.840000pt;}
.y26c{bottom:120.106667pt;}
.y2e8{bottom:120.960000pt;}
.y42{bottom:121.280000pt;}
.y209{bottom:122.666667pt;}
.yfb{bottom:123.840000pt;}
.y2c1{bottom:125.120000pt;}
.y290{bottom:127.306667pt;}
.y1e2{bottom:127.360000pt;}
.y2ab{bottom:128.426667pt;}
.y2c5{bottom:129.280000pt;}
.ye0{bottom:130.560000pt;}
.y25a{bottom:131.200000pt;}
.y2d4{bottom:131.520000pt;}
.y192{bottom:132.480000pt;}
.y11d{bottom:133.440000pt;}
.yc2{bottom:134.080000pt;}
.y89{bottom:134.720000pt;}
.y283{bottom:135.253333pt;}
.y2b7{bottom:135.680000pt;}
.y29c{bottom:135.786667pt;}
.y274{bottom:135.840000pt;}
.y18b{bottom:136.000000pt;}
.y219{bottom:136.746667pt;}
.y221{bottom:137.120000pt;}
.y15e{bottom:137.280000pt;}
.y1bc{bottom:137.333333pt;}
.y41{bottom:137.600000pt;}
.y26b{bottom:138.666667pt;}
.y23a{bottom:140.000000pt;}
.y135{bottom:142.080000pt;}
.y111{bottom:143.680000pt;}
.y17f{bottom:145.280000pt;}
.y16d{bottom:145.600000pt;}
.y28f{bottom:145.866667pt;}
.y2aa{bottom:146.986667pt;}
.y14c{bottom:148.480000pt;}
.y2d3{bottom:149.120000pt;}
.ydf{bottom:149.440000pt;}
.y88{bottom:152.960000pt;}
.yc1{bottom:153.280000pt;}
.y282{bottom:153.493333pt;}
.y40{bottom:153.600000pt;}
.y218{bottom:153.706667pt;}
.y19d{bottom:153.920000pt;}
.y29b{bottom:154.026667pt;}
.y220{bottom:154.400000pt;}
.y1e1{bottom:156.160000pt;}
.y26a{bottom:156.906667pt;}
.y2e7{bottom:157.120000pt;}
.y1a3{bottom:158.080000pt;}
.y134{bottom:159.680000pt;}
.y11c{bottom:160.640000pt;}
.y191{bottom:161.280000pt;}
.y2c0{bottom:162.240000pt;}
.y110{bottom:162.880000pt;}
.y14{bottom:163.840000pt;}
.y28e{bottom:164.106667pt;}
.y18a{bottom:164.800000pt;}
.y2a9{bottom:165.226667pt;}
.y15d{bottom:166.080000pt;}
.y259{bottom:166.400000pt;}
.y2d2{bottom:166.720000pt;}
.yf7{bottom:168.320000pt;}
.y3f{bottom:169.600000pt;}
.y216{bottom:170.986667pt;}
.y87{bottom:171.520000pt;}
.y281{bottom:172.053333pt;}
.y2b6{bottom:172.480000pt;}
.y29a{bottom:172.586667pt;}
.y273{bottom:172.640000pt;}
.y17e{bottom:174.080000pt;}
.y16c{bottom:174.400000pt;}
.y24b{bottom:174.666667pt;}
.y2e6{bottom:174.720000pt;}
.yde{bottom:175.040000pt;}
.y269{bottom:175.466667pt;}
.y224{bottom:176.000000pt;}
.y133{bottom:177.280000pt;}
.yc0{bottom:178.880000pt;}
.y28d{bottom:182.666667pt;}
.y2a8{bottom:183.786667pt;}
.y13{bottom:184.000000pt;}
.y1a2{bottom:184.320000pt;}
.y1b9{bottom:185.333333pt;}
.y3e{bottom:185.600000pt;}
.y11b{bottom:187.840000pt;}
.y201{bottom:188.000000pt;}
.y215{bottom:188.266667pt;}
.y10f{bottom:188.480000pt;}
.y86{bottom:189.760000pt;}
.y190{bottom:190.080000pt;}
.y280{bottom:190.293333pt;}
.y2b5{bottom:190.720000pt;}
.y299{bottom:190.826667pt;}
.y19c{bottom:191.040000pt;}
.y272{bottom:191.200000pt;}
.y1e0{bottom:192.320000pt;}
.y66{bottom:193.600000pt;}
.y268{bottom:193.706667pt;}
.ydd{bottom:194.240000pt;}
.y132{bottom:194.880000pt;}
.ybf{bottom:197.760000pt;}
.y2bf{bottom:200.640000pt;}
.y3d{bottom:201.920000pt;}
.y17d{bottom:202.880000pt;}
.y10e{bottom:207.360000pt;}
.y85{bottom:208.320000pt;}
.y2f7{bottom:208.640000pt;}
.y27f{bottom:208.853333pt;}
.y2b4{bottom:209.280000pt;}
.y298{bottom:209.386667pt;}
.y2e5{bottom:209.920000pt;}
.y1df{bottom:211.520000pt;}
.y267{bottom:212.266667pt;}
.y131{bottom:212.480000pt;}
.yf6{bottom:213.120000pt;}
.y1a1{bottom:214.080000pt;}
.y11a{bottom:215.040000pt;}
.y65{bottom:216.640000pt;}
.ybe{bottom:216.960000pt;}
.y3c{bottom:217.920000pt;}
.y18f{bottom:218.880000pt;}
.y16b{bottom:219.200000pt;}
.ydc{bottom:219.840000pt;}
.y2d1{bottom:220.480000pt;}
.y12{bottom:221.440000pt;}
.y189{bottom:222.400000pt;}
.y235{bottom:222.666667pt;}
.y15c{bottom:223.680000pt;}
.y14b{bottom:224.960000pt;}
.y84{bottom:226.560000pt;}
.y27e{bottom:227.093333pt;}
.y2b3{bottom:227.520000pt;}
.y19b{bottom:228.480000pt;}
.y130{bottom:230.080000pt;}
.y266{bottom:230.506667pt;}
.y17c{bottom:231.680000pt;}
.yfa{bottom:232.000000pt;}
.y3b{bottom:233.920000pt;}
.y1b6{bottom:234.666667pt;}
.ybd{bottom:235.840000pt;}
.y2be{bottom:236.160000pt;}
.y2d0{bottom:238.080000pt;}
.y64{bottom:238.720000pt;}
.ya4{bottom:240.000000pt;}
.y119{bottom:242.240000pt;}
.y83{bottom:245.120000pt;}
.y27d{bottom:245.653333pt;}
.y1de{bottom:245.760000pt;}
.y2f6{bottom:246.080000pt;}
.y18e{bottom:247.680000pt;}
.y16a{bottom:248.000000pt;}
.y188{bottom:251.200000pt;}
.y10d{bottom:252.160000pt;}
.y14a{bottom:253.760000pt;}
.y63{bottom:257.280000pt;}
.y24a{bottom:257.333333pt;}
.ydb{bottom:257.600000pt;}
.y11{bottom:258.880000pt;}
.y2c4{bottom:260.480000pt;}
.ybc{bottom:261.440000pt;}
.y2e4{bottom:263.680000pt;}
.y2b2{bottom:264.000000pt;}
.y12f{bottom:265.600000pt;}
.y118{bottom:269.440000pt;}
.y254{bottom:270.666667pt;}
.y82{bottom:271.040000pt;}
.y2cf{bottom:274.240000pt;}
.y62{bottom:275.520000pt;}
.y21f{bottom:276.000000pt;}
.y17b{bottom:276.480000pt;}
.yf9{bottom:276.800000pt;}
.ya3{bottom:277.120000pt;}
.y1dd{bottom:277.760000pt;}
.y187{bottom:280.000000pt;}
.ybb{bottom:280.320000pt;}
.y2e3{bottom:281.280000pt;}
.y149{bottom:282.560000pt;}
.yda{bottom:283.520000pt;}
.y1b2{bottom:284.000000pt;}
.y1fb{bottom:288.000000pt;}
.y2c3{bottom:289.280000pt;}
.y81{bottom:289.920000pt;}
.y2ce{bottom:291.840000pt;}
.y61{bottom:294.080000pt;}
.ya2{bottom:295.680000pt;}
.y10{bottom:296.000000pt;}
.y117{bottom:296.640000pt;}
.y12e{bottom:298.240000pt;}
.y2e2{bottom:298.880000pt;}
.y15b{bottom:299.840000pt;}
.y3a{bottom:300.800000pt;}
.yd9{bottom:302.400000pt;}
.y19a{bottom:303.040000pt;}
.y17a{bottom:305.280000pt;}
.y1da{bottom:305.333333pt;}
.y169{bottom:305.600000pt;}
.yba{bottom:306.240000pt;}
.y80{bottom:308.160000pt;}
.y265{bottom:309.333333pt;}
.y2cd{bottom:309.440000pt;}
.y60{bottom:312.320000pt;}
.ya1{bottom:313.920000pt;}
.y10c{bottom:315.840000pt;}
.y186{bottom:316.160000pt;}
.y2e1{bottom:316.480000pt;}
.y39{bottom:317.120000pt;}
.y2f5{bottom:317.760000pt;}
.y12d{bottom:320.320000pt;}
.yf5{bottom:321.280000pt;}
.y249{bottom:322.666667pt;}
.y116{bottom:323.840000pt;}
.yb9{bottom:325.120000pt;}
.y7f{bottom:326.720000pt;}
.yd8{bottom:328.000000pt;}
.y15a{bottom:328.640000pt;}
.y148{bottom:329.920000pt;}
.y5f{bottom:330.880000pt;}
.ya0{bottom:332.480000pt;}
.yf{bottom:333.440000pt;}
.y38{bottom:333.760000pt;}
.y179{bottom:334.080000pt;}
.y168{bottom:334.400000pt;}
.y10b{bottom:334.720000pt;}
.y185{bottom:335.360000pt;}
.y28c{bottom:337.333333pt;}
.y199{bottom:340.160000pt;}
.yf4{bottom:340.480000pt;}
.y12c{bottom:342.720000pt;}
.yb8{bottom:344.000000pt;}
.y7e{bottom:344.960000pt;}
.y2cc{bottom:345.920000pt;}
.yd7{bottom:346.880000pt;}
.y5e{bottom:349.120000pt;}
.y1ae{bottom:349.333333pt;}
.y18d{bottom:350.080000pt;}
.y9f{bottom:350.720000pt;}
.y115{bottom:351.040000pt;}
.y37{bottom:352.320000pt;}
.y253{bottom:353.333333pt;}
.y10a{bottom:353.600000pt;}
.y2f4{bottom:353.920000pt;}
.y1d6{bottom:354.666667pt;}
.y159{bottom:357.440000pt;}
.y147{bottom:358.720000pt;}
.y178{bottom:362.880000pt;}
.y7d{bottom:363.520000pt;}
.y12b{bottom:365.760000pt;}
.yf3{bottom:366.080000pt;}
.y5d{bottom:367.680000pt;}
.yb7{bottom:369.920000pt;}
.y36{bottom:370.560000pt;}
.y231{bottom:370.666667pt;}
.ye{bottom:370.880000pt;}
.y2f3{bottom:371.520000pt;}
.yd6{bottom:372.800000pt;}
.y9e{bottom:376.960000pt;}
.y198{bottom:377.600000pt;}
.y184{bottom:378.880000pt;}
.y167{bottom:379.200000pt;}
.y109{bottom:379.520000pt;}
.y2cb{bottom:381.120000pt;}
.y7c{bottom:381.760000pt;}
.yf2{bottom:384.960000pt;}
.y5c{bottom:385.280000pt;}
.y158{bottom:386.240000pt;}
.y146{bottom:387.520000pt;}
.y1f4{bottom:388.000000pt;}
.y114{bottom:388.160000pt;}
.yb6{bottom:388.800000pt;}
.y35{bottom:389.120000pt;}
.yd5{bottom:391.680000pt;}
.y12a{bottom:392.320000pt;}
.y9d{bottom:395.520000pt;}
.y108{bottom:398.400000pt;}
.y2ca{bottom:398.720000pt;}
.y7b{bottom:400.320000pt;}
.y2e0{bottom:405.760000pt;}
.y34{bottom:407.360000pt;}
.yb5{bottom:407.680000pt;}
.yd{bottom:408.000000pt;}
.yf1{bottom:410.560000pt;}
.y5b{bottom:412.800000pt;}
.y9c{bottom:414.080000pt;}
.y157{bottom:415.040000pt;}
.y1ab{bottom:416.000000pt;}
.y145{bottom:416.320000pt;}
.yd4{bottom:417.280000pt;}
.y113{bottom:417.920000pt;}
.y129{bottom:418.240000pt;}
.y1d1{bottom:420.000000pt;}
.y177{bottom:420.480000pt;}
.y2df{bottom:423.360000pt;}
.y2f2{bottom:425.280000pt;}
.y33{bottom:425.920000pt;}
.y7a{bottom:426.240000pt;}
.y5a{bottom:429.120000pt;}
.yf0{bottom:429.760000pt;}
.y9b{bottom:432.320000pt;}
.yb4{bottom:433.280000pt;}
.y2c9{bottom:434.880000pt;}
.y230{bottom:436.000000pt;}
.yd3{bottom:436.480000pt;}
.y166{bottom:436.800000pt;}
.y112{bottom:438.080000pt;}
.y128{bottom:441.280000pt;}
.y107{bottom:442.880000pt;}
.y156{bottom:443.840000pt;}
.y32{bottom:444.160000pt;}
.y79{bottom:445.120000pt;}
.y214{bottom:445.333333pt;}
.yc{bottom:445.440000pt;}
.yef{bottom:448.640000pt;}
.y176{bottom:449.280000pt;}
.y9a{bottom:450.880000pt;}
.y247{bottom:452.000000pt;}
.yb3{bottom:452.480000pt;}
.yd2{bottom:455.360000pt;}
.y2de{bottom:459.520000pt;}
.y31{bottom:459.840000pt;}
.y2f1{bottom:460.480000pt;}
.y59{bottom:461.440000pt;}
.y106{bottom:462.080000pt;}
.y78{bottom:463.360000pt;}
.y183{bottom:465.280000pt;}
.y165{bottom:465.600000pt;}
.y127{bottom:467.840000pt;}
.y99{bottom:469.120000pt;}
.y2c8{bottom:470.080000pt;}
.yb2{bottom:471.360000pt;}
.y155{bottom:472.640000pt;}
.yee{bottom:474.240000pt;}
.y30{bottom:475.520000pt;}
.y2dd{bottom:477.120000pt;}
.y58{bottom:477.440000pt;}
.y2f0{bottom:478.080000pt;}
.yd1{bottom:480.960000pt;}
.y197{bottom:481.280000pt;}
.y77{bottom:481.920000pt;}
.yb{bottom:482.880000pt;}
.y144{bottom:485.120000pt;}
.y1ef{bottom:486.666667pt;}
.y98{bottom:487.680000pt;}
.y2f{bottom:491.520000pt;}
.yed{bottom:493.440000pt;}
.y57{bottom:493.760000pt;}
.y175{bottom:494.080000pt;}
.y164{bottom:494.400000pt;}
.yb1{bottom:496.960000pt;}
.yd0{bottom:499.840000pt;}
.y24f{bottom:500.000000pt;}
.y76{bottom:500.160000pt;}
.y154{bottom:501.440000pt;}
.y1cc{bottom:504.000000pt;}
.y1aa{bottom:504.960000pt;}
.y105{bottom:506.560000pt;}
.y2e{bottom:507.520000pt;}
.y56{bottom:509.760000pt;}
.y196{bottom:510.080000pt;}
.yec{bottom:512.320000pt;}
.y2dc{bottom:513.280000pt;}
.y97{bottom:513.600000pt;}
.y2ef{bottom:514.560000pt;}
.yb0{bottom:516.160000pt;}
.y126{bottom:516.800000pt;}
.y22b{bottom:517.333333pt;}
.y75{bottom:518.720000pt;}
.ycf{bottom:519.040000pt;}
.ya{bottom:520.000000pt;}
.y143{bottom:521.920000pt;}
.y174{bottom:522.880000pt;}
.y163{bottom:523.200000pt;}
.y2d{bottom:523.840000pt;}
.y55{bottom:525.760000pt;}
.y2ee{bottom:532.160000pt;}
.y96{bottom:532.480000pt;}
.y74{bottom:536.960000pt;}
.yeb{bottom:537.920000pt;}
.y195{bottom:538.880000pt;}
.y2c{bottom:540.480000pt;}
.y2c7{bottom:541.440000pt;}
.yaf{bottom:541.760000pt;}
.y54{bottom:542.080000pt;}
.y125{bottom:543.360000pt;}
.yce{bottom:544.640000pt;}
.y1a9{bottom:546.560000pt;}
.y27c{bottom:546.666667pt;}
.y153{bottom:548.800000pt;}
.y2db{bottom:549.760000pt;}
.y95{bottom:550.720000pt;}
.y104{bottom:551.360000pt;}
.y173{bottom:551.680000pt;}
.y1ee{bottom:552.000000pt;}
.y142{bottom:554.560000pt;}
.y73{bottom:555.520000pt;}
.y2b{bottom:556.800000pt;}
.yea{bottom:557.120000pt;}
.y9{bottom:557.440000pt;}
.y53{bottom:558.080000pt;}
.y162{bottom:560.320000pt;}
.yae{bottom:560.640000pt;}
.ycd{bottom:563.520000pt;}
.y263{bottom:566.666667pt;}
.y2da{bottom:567.360000pt;}
.y194{bottom:567.680000pt;}
.y94{bottom:569.280000pt;}
.y103{bottom:570.240000pt;}
.y141{bottom:572.160000pt;}
.y1a8{bottom:572.800000pt;}
.y2a{bottom:573.440000pt;}
.y72{bottom:573.760000pt;}
.y52{bottom:574.080000pt;}
.ye9{bottom:576.000000pt;}
.y152{bottom:577.600000pt;}
.yad{bottom:579.840000pt;}
.y172{bottom:580.480000pt;}
.y246{bottom:582.666667pt;}
.yf8{bottom:582.720000pt;}
.y2d9{bottom:584.960000pt;}
.y2ed{bottom:585.920000pt;}
.y1c9{bottom:586.666667pt;}
.y93{bottom:587.520000pt;}
.ycc{bottom:589.440000pt;}
.y140{bottom:589.760000pt;}
.y29{bottom:590.400000pt;}
.y71{bottom:592.320000pt;}
.y8{bottom:594.880000pt;}
.y102{bottom:595.840000pt;}
.y182{bottom:596.480000pt;}
.y1a7{bottom:599.360000pt;}
.y1ea{bottom:600.000000pt;}
.ye8{bottom:601.600000pt;}
.y2d8{bottom:602.560000pt;}
.y2ec{bottom:603.520000pt;}
.yac{bottom:605.440000pt;}
.y92{bottom:606.080000pt;}
.y51{bottom:606.400000pt;}
.ycb{bottom:608.320000pt;}
.y28{bottom:609.280000pt;}
.y262{bottom:614.400000pt;}
.y101{bottom:615.040000pt;}
.y13f{bottom:615.360000pt;}
.y24e{bottom:617.333333pt;}
.y70{bottom:618.240000pt;}
.y124{bottom:618.880000pt;}
.ye7{bottom:620.480000pt;}
.y2eb{bottom:621.120000pt;}
.y50{bottom:622.400000pt;}
.y91{bottom:624.320000pt;}
.y181{bottom:625.280000pt;}
.y1a6{bottom:625.600000pt;}
.y27{bottom:625.920000pt;}
.yca{bottom:627.200000pt;}
.y7{bottom:632.000000pt;}
.y13e{bottom:632.960000pt;}
.y100{bottom:633.920000pt;}
.y151{bottom:635.200000pt;}
.y6f{bottom:637.120000pt;}
.y171{bottom:638.080000pt;}
.y261{bottom:638.400000pt;}
.y1c5{bottom:638.666667pt;}
.y4f{bottom:638.720000pt;}
.ye6{bottom:639.680000pt;}
.y26{bottom:642.240000pt;}
.y2c6{bottom:644.160000pt;}
.y123{bottom:647.680000pt;}
.y212{bottom:648.000000pt;}
.yab{bottom:649.920000pt;}
.y90{bottom:650.560000pt;}
.yc9{bottom:652.800000pt;}
.y180{bottom:654.080000pt;}
.y4e{bottom:654.720000pt;}
.y6e{bottom:655.360000pt;}
.y2d7{bottom:656.320000pt;}
.y150{bottom:664.000000pt;}
.ye5{bottom:665.280000pt;}
.y1e4{bottom:665.333333pt;}
.y170{bottom:666.880000pt;}
.y13d{bottom:668.160000pt;}
.y8f{bottom:669.120000pt;}
.y6{bottom:669.440000pt;}
.y4d{bottom:670.720000pt;}
.yc8{bottom:672.000000pt;}
.y260{bottom:672.960000pt;}
.y6d{bottom:673.920000pt;}
.yff{bottom:678.720000pt;}
.y25{bottom:680.640000pt;}
.y122{bottom:682.880000pt;}
.ye4{bottom:684.160000pt;}
.y13c{bottom:685.760000pt;}
.y4c{bottom:686.720000pt;}
.y8e{bottom:687.680000pt;}
.yaa{bottom:688.000000pt;}
.yc7{bottom:690.880000pt;}
.y6c{bottom:692.160000pt;}
.y2d6{bottom:692.480000pt;}
.y161{bottom:692.800000pt;}
.y16f{bottom:695.680000pt;}
.yfe{bottom:697.600000pt;}
.y25f{bottom:701.760000pt;}
.y4b{bottom:703.040000pt;}
.y24{bottom:703.360000pt;}
.y1c2{bottom:705.333333pt;}
.y8d{bottom:705.920000pt;}
.y5{bottom:706.880000pt;}
.ye3{bottom:710.080000pt;}
.y6b{bottom:710.720000pt;}
.y14f{bottom:711.680000pt;}
.ya9{bottom:713.600000pt;}
.yc6{bottom:716.480000pt;}
.y4a{bottom:719.040000pt;}
.y13b{bottom:720.960000pt;}
.y160{bottom:721.600000pt;}
.y8c{bottom:724.480000pt;}
.y2a4{bottom:726.666667pt;}
.y2d5{bottom:727.680000pt;}
.y6a{bottom:728.960000pt;}
.y25e{bottom:730.560000pt;}
.y20d{bottom:730.666667pt;}
.ya8{bottom:732.800000pt;}
.y49{bottom:735.040000pt;}
.yc5{bottom:735.680000pt;}
.y121{bottom:737.280000pt;}
.y14e{bottom:740.480000pt;}
.y23{bottom:742.720000pt;}
.y4{bottom:744.000000pt;}
.y1f{bottom:744.320000pt;}
.y2ea{bottom:745.280000pt;}
.y13a{bottom:746.560000pt;}
.y69{bottom:747.520000pt;}
.y241{bottom:748.000000pt;}
.y48{bottom:751.360000pt;}
.ya7{bottom:751.680000pt;}
.ye2{bottom:754.560000pt;}
.y25d{bottom:759.360000pt;}
.y1bf{bottom:760.000000pt;}
.y22{bottom:761.280000pt;}
.y139{bottom:764.160000pt;}
.y120{bottom:764.480000pt;}
.y68{bottom:765.760000pt;}
.y47{bottom:767.360000pt;}
.y14d{bottom:769.280000pt;}
.y1a0{bottom:776.320000pt;}
.y21{bottom:779.520000pt;}
.yc4{bottom:780.160000pt;}
.ya6{bottom:781.120000pt;}
.y3{bottom:781.440000pt;}
.y138{bottom:781.760000pt;}
.y46{bottom:783.360000pt;}
.y11f{bottom:791.680000pt;}
.y67{bottom:794.240000pt;}
.y25c{bottom:796.800000pt;}
.y20{bottom:798.080000pt;}
.ya5{bottom:799.360000pt;}
.y45{bottom:799.680000pt;}
.y19f{bottom:800.320000pt;}
.y16{bottom:829.333333pt;}
.h30{height:29.333333pt;}
.hd{height:33.202500pt;}
.h2{height:35.831250pt;}
.h21{height:36.000000pt;}
.hb{height:37.537500pt;}
.h24{height:38.666667pt;}
.hc{height:39.132500pt;}
.h9{height:39.243750pt;}
.h17{height:39.787520pt;}
.h23{height:41.333333pt;}
.h4{height:42.262500pt;}
.h1a{height:42.656250pt;}
.h1f{height:43.975680pt;}
.h1b{height:44.029440pt;}
.h1c{height:44.336250pt;}
.h18{height:45.212160pt;}
.h22{height:45.333333pt;}
.h8{height:46.068750pt;}
.h1d{height:46.666667pt;}
.h11{height:48.163840pt;}
.h13{height:48.222720pt;}
.h10{height:49.047040pt;}
.h5{height:50.666667pt;}
.h20{height:52.000000pt;}
.h12{height:52.352000pt;}
.h16{height:53.312000pt;}
.h1e{height:53.333333pt;}
.he{height:53.746875pt;}
.ha{height:56.156250pt;}
.h14{height:57.159375pt;}
.h19{height:58.129920pt;}
.h6{height:61.841920pt;}
.h2f{height:62.666667pt;}
.h28{height:64.000000pt;}
.hf{height:67.818240pt;}
.h25{height:69.333333pt;}
.h26{height:70.666667pt;}
.h15{height:76.430080pt;}
.h36{height:78.666667pt;}
.h2d{height:80.000000pt;}
.h2a{height:81.333333pt;}
.h29{height:97.333333pt;}
.h27{height:98.666667pt;}
.h3{height:99.815625pt;}
.h7{height:100.000000pt;}
.h2e{height:116.000000pt;}
.h2c{height:168.000000pt;}
.h34{height:196.000000pt;}
.h37{height:197.333333pt;}
.h2b{height:201.333333pt;}
.h32{height:204.000000pt;}
.h35{height:222.666667pt;}
.h38{height:240.000000pt;}
.h31{height:244.000000pt;}
.h33{height:258.666667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w7{width:46.666667pt;}
.wb{width:66.666667pt;}
.w8{width:68.000000pt;}
.w9{width:94.666667pt;}
.wa{width:104.000000pt;}
.w5{width:133.333333pt;}
.w4{width:198.666667pt;}
.w6{width:200.000000pt;}
.w3{width:217.333333pt;}
.wc{width:292.000000pt;}
.w2{width:432.000000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:2.666667pt;}
.x32{left:4.639968pt;}
.x30{left:6.026699pt;}
.x31{left:7.093397pt;}
.x7{left:9.599936pt;}
.x39{left:15.546987pt;}
.xd{left:16.825845pt;}
.x3c{left:19.573888pt;}
.x5{left:21.237952pt;}
.x37{left:27.573227pt;}
.xb{left:29.430005pt;}
.x2f{left:30.559893pt;}
.xa{left:37.214517pt;}
.xc{left:44.171861pt;}
.x2d{left:49.220693pt;}
.x9{left:54.946933pt;}
.x2a{left:57.333333pt;}
.x2b{left:66.647787pt;}
.x3{left:75.519872pt;}
.x1b{left:77.079744pt;}
.x6{left:90.480480pt;}
.x3b{left:99.506667pt;}
.x3f{left:102.747733pt;}
.x26{left:103.853184pt;}
.x4{left:112.000000pt;}
.xf{left:114.200864pt;}
.x33{left:121.333333pt;}
.x27{left:132.253248pt;}
.x28{left:141.653312pt;}
.x3d{left:180.000000pt;}
.x34{left:189.333333pt;}
.x10{left:208.624032pt;}
.x21{left:225.411456pt;}
.x15{left:229.105472pt;}
.x13{left:241.709632pt;}
.x12{left:249.494144pt;}
.x16{left:253.773120pt;}
.x2c{left:254.666667pt;}
.x14{left:256.451488pt;}
.x11{left:267.226560pt;}
.x18{left:270.380224pt;}
.x3e{left:274.666667pt;}
.x1c{left:276.079424pt;}
.x35{left:282.666667pt;}
.x25{left:283.756512pt;}
.x19{left:295.450848pt;}
.x1a{left:298.303040pt;}
.x2{left:301.428032pt;}
.xe{left:319.219712pt;}
.x1{left:321.219840pt;}
.x36{left:349.333333pt;}
.x22{left:359.404800pt;}
.x1f{left:364.395840pt;}
.x23{left:385.413120pt;}
.x2e{left:386.666667pt;}
.x20{left:399.067840pt;}
.x1e{left:414.224000pt;}
.x17{left:431.469760pt;}
.x1d{left:437.035520pt;}
.x38{left:453.333333pt;}
.x3a{left:520.000000pt;}
.x29{left:556.799680pt;}
.x24{left:566.920000pt;}
}




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