
    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_c25c511194f0f2d3959244ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_a643f2b2da0673f4ae065db7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_98bbd58f063f139c2e98b4d8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0087ee8be16f3d40f8a96f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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_16f62c5116912b2bc3384cdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.330566;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_e357521a8a94d8d72f5b36d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959473;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_20df94df85a1bc986f2075ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_1b2c59a7241681a55f2396d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_b81ad0d3d4b3fcb4f1a6d637.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_966303ceb9c488adf0b5e637.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_12d7b2b04f318e912f891532.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_cae8b6551771a5c8cada2741.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959473;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_30ca2c576f7801190d22bf8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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_d01cfd184c08778a979c4f2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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_6656ecf75c65870c0346ebb4.woff2')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_01c8ece8ba1af57d68bd5088.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_59d70f07549c70ce7b83ed6b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959473;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_358256eb1b8c65c2d5a4d360.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940430;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_301ca35084f186935354483e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958008;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_45909d7ff084b9fef808b430.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_65830b8bdf5162acec099cc7.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_adad8c81e216723613e46d75.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.959473;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_07931cf7c7aa59874211d9e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940430;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_68f4ddb9bd9b40aeef0b08f9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958008;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_d79c148025d645d21cd66479.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.957031;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_842750e2b07a0e4b13705e24.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_2e48ba5b880972c8ef4eb6be.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_a7f4a325d939e5b1cf2933c9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959473;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_b358cc8d60bd50ca65f7bf9b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940430;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_f344933df2fbc31258a68689.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958008;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_6d3574fe1a8b92cc9052ecef.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_0847c5fcf94c9dd305e97f4d.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_96814d4700ec5678f4cca57e.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_fc1bcfce63e23807f89df8e2.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.959473;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_00c939ad5767d08f18dc4368.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958008;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_6a05dd77806722a1d1634065.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_6ca3ed401ae22e215b82d456.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_e1e05695632a8789db0ec5d8.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.959473;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_5c40ff57049558e9e2095712.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.958008;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_72df73fb0041118ec8e56bb9.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.940430;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_111a74ae896c785c21ec4d00.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_5e2a00b485b633790d12bc24.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.950195;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_6df94a76a55bbcff20fafc63.woff2')format("woff");}.ff2b{font-family:ff2b;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;}
.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);}
.v1{vertical-align:-4.079918px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.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;}
}
.ws14{word-spacing:-35.958000px;}
.ws10{word-spacing:-35.942400px;}
.ws11{word-spacing:-35.926200px;}
.ws15{word-spacing:-35.915400px;}
.wsf{word-spacing:-35.873400px;}
.wse{word-spacing:-35.853000px;}
.ws18{word-spacing:-35.815200px;}
.ws17{word-spacing:-35.688600px;}
.wsd{word-spacing:-35.630400px;}
.ws0{word-spacing:-18.347166px;}
.ws1a{word-spacing:-17.560200px;}
.ws2{word-spacing:-16.679666px;}
.wsa{word-spacing:-14.389800px;}
.ws7{word-spacing:-14.294400px;}
.ws8{word-spacing:-14.289000px;}
.ws4{word-spacing:-14.220600px;}
.ws5{word-spacing:-14.173200px;}
.ws3{word-spacing:-14.167800px;}
.wsb{word-spacing:-14.131200px;}
.ws6{word-spacing:-14.031000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:4.076400px;}
.ws19{word-spacing:17.960706px;}
.ws16{word-spacing:18.019047px;}
.ws13{word-spacing:18.026703px;}
.ws12{word-spacing:18.039969px;}
.ws9{word-spacing:1248.035039px;}
._4b{margin-left:-8.280000px;}
._2{margin-left:-6.732000px;}
._3{margin-left:-5.170079px;}
._0{margin-left:-3.963600px;}
._1{margin-left:-2.660400px;}
._4{margin-left:-1.325980px;}
._4c{width:1.011962px;}
._21{width:2.225955px;}
._14{width:18.348000px;}
._4d{width:36.352107px;}
._9{width:96.958061px;}
._30{width:174.296514px;}
._e{width:183.656327px;}
._6{width:212.105940px;}
._7{width:213.595728px;}
._32{width:218.279314px;}
._1c{width:220.795584px;}
._36{width:234.295314px;}
._b{width:266.355126px;}
._2e{width:274.254515px;}
._37{width:317.933641px;}
._f{width:369.673060px;}
._c{width:383.632327px;}
._2d{width:385.015979px;}
._8{width:399.792457px;}
._3b{width:424.191516px;}
._a{width:433.091791px;}
._d{width:443.691126px;}
._3e{width:454.130917px;}
._12{width:470.270594px;}
._13{width:474.234194px;}
._48{width:480.950381px;}
._11{width:487.070258px;}
._10{width:489.610661px;}
._40{width:497.450051px;}
._5{width:500.389992px;}
._1d{width:507.709846px;}
._49{width:510.889782px;}
._26{width:531.953040px;}
._3a{width:564.168716px;}
._44{width:587.568248px;}
._3d{width:610.967780px;}
._39{width:630.887382px;}
._47{width:644.327113px;}
._20{width:694.426111px;}
._1f{width:710.985780px;}
._38{width:730.965380px;}
._2c{width:763.285640px;}
._3c{width:764.324713px;}
._45{width:797.684046px;}
._24{width:804.463910px;}
._17{width:814.483710px;}
._3f{width:821.083578px;}
._1b{width:824.443511px;}
._43{width:831.043379px;}
._46{width:844.483110px;}
._31{width:864.402712px;}
._16{width:881.262374px;}
._2b{width:887.868248px;}
._18{width:891.162176px;}
._29{width:897.762044px;}
._22{width:911.141777px;}
._2a{width:924.701506px;}
._42{width:931.121377px;}
._35{width:964.480710px;}
._34{width:997.840043px;}
._2f{width:1021.239575px;}
._33{width:1044.639107px;}
._1e{width:1058.018839px;}
._23{width:1064.558708px;}
._19{width:1077.938441px;}
._41{width:1097.918041px;}
._28{width:1101.337973px;}
._1a{width:1111.297774px;}
._27{width:1158.036839px;}
._4a{width:1164.636707px;}
._25{width:1211.375772px;}
._15{width:1234.775304px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:56.997000px;}
.fs4{font-size:59.998800px;}
.fs2{font-size:65.997000px;}
.fs3{font-size:77.998800px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:2.526000px;}
.y1c{bottom:37.711950px;}
.y7c{bottom:37.712100px;}
.y1d{bottom:40.799927px;}
.yfa{bottom:103.708485px;}
.y1d6{bottom:108.515550px;}
.y12c{bottom:109.327050px;}
.ye4{bottom:109.330785px;}
.y18a{bottom:109.331685px;}
.y251{bottom:114.567600px;}
.y1a4{bottom:118.712220px;}
.yf9{bottom:126.208035px;}
.y1a{bottom:130.469850px;}
.y12b{bottom:131.826600px;}
.ye3{bottom:131.830335px;}
.y189{bottom:131.831235px;}
.y1d5{bottom:133.264425px;}
.y1ff{bottom:137.220975px;}
.y1af{bottom:137.460870px;}
.y250{bottom:139.316475px;}
.y11f{bottom:141.211770px;}
.y14b{bottom:144.206685px;}
.yf8{bottom:148.707585px;}
.y12a{bottom:154.326150px;}
.ye2{bottom:154.329885px;}
.y188{bottom:154.330785px;}
.y19{bottom:155.218725px;}
.y164{bottom:155.836477px;}
.y160{bottom:157.703243px;}
.y1b3{bottom:157.920461px;}
.y1d4{bottom:158.013300px;}
.y1ae{bottom:159.960420px;}
.y1fe{bottom:161.969850px;}
.y20c{bottom:162.002848px;}
.y11e{bottom:163.711320px;}
.y24f{bottom:164.065350px;}
.y14a{bottom:166.706235px;}
.yf7{bottom:171.207135px;}
.y1a3{bottom:174.585128px;}
.y129{bottom:176.825700px;}
.ye1{bottom:176.829435px;}
.y187{bottom:176.830335px;}
.y177{bottom:178.321028px;}
.y163{bottom:178.336027px;}
.y18{bottom:179.967600px;}
.y15f{bottom:180.202793px;}
.y1b2{bottom:180.420011px;}
.y1ad{bottom:182.459970px;}
.y1d3{bottom:182.762175px;}
.y1df{bottom:182.778674px;}
.y68{bottom:185.966475px;}
.y11d{bottom:186.210870px;}
.y1fd{bottom:186.718725px;}
.yd3{bottom:187.703243px;}
.y149{bottom:189.205785px;}
.yf6{bottom:193.706685px;}
.y1a2{bottom:197.084678px;}
.y128{bottom:199.325250px;}
.ye0{bottom:199.328985px;}
.y186{bottom:199.329885px;}
.ya5{bottom:199.815598px;}
.y176{bottom:200.820578px;}
.y162{bottom:200.835577px;}
.y15e{bottom:202.702343px;}
.y1b1{bottom:202.919561px;}
.y17{bottom:204.716475px;}
.y1ac{bottom:204.959520px;}
.y24e{bottom:205.194900px;}
.y1d2{bottom:207.511050px;}
.y11c{bottom:208.710420px;}
.yd2{bottom:210.202793px;}
.y3f{bottom:210.492600px;}
.y67{bottom:210.715350px;}
.y1fc{bottom:211.467600px;}
.y20b{bottom:211.500599px;}
.y148{bottom:211.705335px;}
.y10e{bottom:215.457442px;}
.yf5{bottom:216.206235px;}
.y1a1{bottom:219.584228px;}
.y127{bottom:221.824800px;}
.ydf{bottom:221.828535px;}
.y185{bottom:221.829435px;}
.ya4{bottom:222.315148px;}
.y175{bottom:223.320128px;}
.yad{bottom:223.335127px;}
.y15d{bottom:225.201893px;}
.y1b0{bottom:226.439090px;}
.y1ab{bottom:227.459070px;}
.y16{bottom:229.465350px;}
.y11b{bottom:231.209970px;}
.y1d1{bottom:232.259925px;}
.yd1{bottom:232.702343px;}
.y147{bottom:234.204885px;}
.y3e{bottom:235.241475px;}
.y1fb{bottom:236.216475px;}
.y7a{bottom:237.579592px;}
.y10d{bottom:237.956992px;}
.yf4{bottom:238.705785px;}
.y1a0{bottom:242.083778px;}
.y126{bottom:244.324350px;}
.y184{bottom:244.328985px;}
.ya3{bottom:244.814698px;}
.y174{bottom:245.819678px;}
.y94{bottom:245.834677px;}
.y15c{bottom:247.701443px;}
.y1aa{bottom:249.958620px;}
.y11a{bottom:253.709520px;}
.yd0{bottom:255.201893px;}
.y146{bottom:256.704435px;}
.y1d0{bottom:257.008800px;}
.y1de{bottom:257.025299px;}
.y66{bottom:257.637255px;}
.yde{bottom:258.952792px;}
.y3d{bottom:259.990350px;}
.y79{bottom:260.079142px;}
.y10c{bottom:260.456542px;}
.y18e{bottom:260.459385px;}
.y1fa{bottom:260.965350px;}
.y20a{bottom:260.998349px;}
.yf3{bottom:261.205335px;}
.y19f{bottom:264.583327px;}
.y125{bottom:266.823900px;}
.y183{bottom:266.828535px;}
.ya2{bottom:267.314248px;}
.y173{bottom:268.319228px;}
.y93{bottom:268.334227px;}
.y15b{bottom:270.200993px;}
.y15{bottom:273.594900px;}
.y119{bottom:276.209070px;}
.ycf{bottom:277.701442px;}
.y145{bottom:279.203985px;}
.y65{bottom:280.136805px;}
.ydd{bottom:281.452343px;}
.y1cf{bottom:281.757675px;}
.y24d{bottom:281.816475px;}
.y78{bottom:282.578693px;}
.y10b{bottom:282.956092px;}
.y18d{bottom:282.958935px;}
.yf2{bottom:283.704885px;}
.y19e{bottom:287.082878px;}
.y124{bottom:289.325542px;}
.ya1{bottom:289.813798px;}
.y172{bottom:290.818778px;}
.y92{bottom:290.833777px;}
.y15a{bottom:292.700543px;}
.y118{bottom:298.708620px;}
.yce{bottom:300.200993px;}
.y144{bottom:301.703535px;}
.y64{bottom:302.636355px;}
.ydc{bottom:303.951893px;}
.y182{bottom:303.952792px;}
.y77{bottom:305.078243px;}
.y1f9{bottom:305.094900px;}
.y10a{bottom:305.455642px;}
.y18c{bottom:305.458485px;}
.y1ce{bottom:306.506550px;}
.y24c{bottom:306.565350px;}
.y25e{bottom:306.599971px;}
.y3c{bottom:308.401628px;}
.y19d{bottom:309.582428px;}
.y123{bottom:311.825092px;}
.ya0{bottom:312.313348px;}
.y91{bottom:313.333327px;}
.y159{bottom:315.200093px;}
.yf1{bottom:320.829142px;}
.y19c{bottom:321.208170px;}
.ycd{bottom:322.700543px;}
.yc8{bottom:324.207135px;}
.y63{bottom:325.135905px;}
.ydb{bottom:326.451442px;}
.y181{bottom:326.452343px;}
.y76{bottom:327.577792px;}
.y171{bottom:327.943035px;}
.y109{bottom:327.955192px;}
.yac{bottom:327.958035px;}
.y3b{bottom:330.901178px;}
.y1cd{bottom:331.255425px;}
.y1dd{bottom:331.271924px;}
.y24b{bottom:331.315350px;}
.y1a9{bottom:332.081977px;}
.y122{bottom:334.324642px;}
.y19a{bottom:334.327343px;}
.y90{bottom:335.832877px;}
.y143{bottom:338.827792px;}
.y14{bottom:341.966475px;}
.yf0{bottom:343.328693px;}
.ycc{bottom:345.200093px;}
.yc7{bottom:346.706685px;}
.y62{bottom:347.635455px;}
.yda{bottom:348.950993px;}
.y180{bottom:348.951893px;}
.y9f{bottom:349.437605px;}
.y75{bottom:350.077343px;}
.y170{bottom:350.442585px;}
.y108{bottom:350.454742px;}
.yab{bottom:350.457585px;}
.y158{bottom:352.324350px;}
.y156{bottom:352.327792px;}
.y3a{bottom:353.400728px;}
.y1a8{bottom:354.581528px;}
.y1cc{bottom:356.004300px;}
.y24a{bottom:356.065350px;}
.y25d{bottom:356.097721px;}
.y199{bottom:356.826893px;}
.y8f{bottom:358.332427px;}
.y142{bottom:361.327343px;}
.ybf{bottom:361.331392px;}
.y1f8{bottom:362.979000px;}
.yef{bottom:365.828243px;}
.y13{bottom:366.715350px;}
.ycb{bottom:367.699643px;}
.yc6{bottom:369.206235px;}
.y121{bottom:371.448900px;}
.yd9{bottom:371.450543px;}
.y17f{bottom:371.451442px;}
.y9e{bottom:371.937155px;}
.y74{bottom:372.576893px;}
.y16f{bottom:372.942135px;}
.y107{bottom:372.954292px;}
.yaa{bottom:372.957135px;}
.y157{bottom:374.823900px;}
.y155{bottom:374.827343px;}
.y39{bottom:375.900278px;}
.y1a7{bottom:377.081078px;}
.y198{bottom:379.326442px;}
.y1cb{bottom:380.753175px;}
.y249{bottom:380.815350px;}
.y8e{bottom:380.831977px;}
.y141{bottom:383.826893px;}
.ybe{bottom:383.830942px;}
.y61{bottom:384.759712px;}
.y1f7{bottom:387.727875px;}
.yee{bottom:388.327792px;}
.yc5{bottom:391.705785px;}
.yd8{bottom:393.950092px;}
.y17e{bottom:393.950993px;}
.y9d{bottom:394.436705px;}
.y73{bottom:395.076442px;}
.y16e{bottom:395.441685px;}
.ya9{bottom:395.456685px;}
.y154{bottom:397.326892px;}
.y197{bottom:401.825993px;}
.y117{bottom:403.331527px;}
.y12{bottom:404.605200px;}
.yca{bottom:404.823900px;}
.y1ca{bottom:405.502050px;}
.y1dc{bottom:405.518549px;}
.y248{bottom:405.565350px;}
.y25c{bottom:405.595471px;}
.y140{bottom:406.326442px;}
.ybd{bottom:406.330492px;}
.y60{bottom:407.259262px;}
.y106{bottom:410.078550px;}
.yed{bottom:410.827343px;}
.y1f6{bottom:412.476750px;}
.y209{bottom:412.494462px;}
.y38{bottom:413.024535px;}
.yc4{bottom:414.205335px;}
.yd7{bottom:416.449643px;}
.y17d{bottom:416.450543px;}
.y9c{bottom:416.936255px;}
.y72{bottom:417.575993px;}
.y16d{bottom:417.941235px;}
.y8d{bottom:417.956235px;}
.y153{bottom:419.826442px;}
.y120{bottom:420.423600px;}
.y196{bottom:424.325543px;}
.y116{bottom:425.831077px;}
.y13f{bottom:428.825993px;}
.ybc{bottom:428.830043px;}
.y5f{bottom:429.758812px;}
.y1c9{bottom:430.250925px;}
.y247{bottom:430.315350px;}
.y137{bottom:432.577650px;}
.y105{bottom:432.578100px;}
.yec{bottom:433.326892px;}
.y37{bottom:435.524085px;}
.yc3{bottom:436.704885px;}
.y1f5{bottom:437.225625px;}
.y17c{bottom:438.950092px;}
.y9b{bottom:439.435805px;}
.y71{bottom:440.075543px;}
.y224{bottom:440.235600px;}
.y16c{bottom:440.440785px;}
.y8c{bottom:440.455785px;}
.y152{bottom:442.325993px;}
.y195{bottom:446.825092px;}
.y115{bottom:448.330627px;}
.y13e{bottom:451.325543px;}
.ybb{bottom:451.329592px;}
.y5e{bottom:452.258362px;}
.yd6{bottom:453.573900px;}
.yc9{bottom:453.798600px;}
.y1c8{bottom:454.999800px;}
.y1db{bottom:455.016299px;}
.y246{bottom:455.065350px;}
.y136{bottom:455.077200px;}
.y104{bottom:455.077650px;}
.y11{bottom:455.817600px;}
.yeb{bottom:455.826442px;}
.y36{bottom:458.023635px;}
.yc2{bottom:459.204435px;}
.y17b{bottom:461.449643px;}
.y9a{bottom:461.935355px;}
.y1f4{bottom:461.974500px;}
.y208{bottom:461.992212px;}
.y70{bottom:462.575092px;}
.y8b{bottom:462.955335px;}
.y151{bottom:464.825543px;}
.y223{bottom:464.984475px;}
.y194{bottom:469.324643px;}
.y114{bottom:470.830177px;}
.y13d{bottom:473.825092px;}
.yba{bottom:473.829142px;}
.y5d{bottom:474.757912px;}
.y135{bottom:477.576750px;}
.y103{bottom:477.577200px;}
.y166{bottom:477.580042px;}
.yea{bottom:478.325993px;}
.y245{bottom:479.815350px;}
.y25b{bottom:479.842096px;}
.y10{bottom:480.566475px;}
.yc1{bottom:481.703985px;}
.y99{bottom:484.434905px;}
.y6f{bottom:485.074643px;}
.y8a{bottom:485.454885px;}
.y1f3{bottom:486.723375px;}
.y150{bottom:487.325092px;}
.y222{bottom:489.733350px;}
.y22f{bottom:489.766348px;}
.y113{bottom:493.329727px;}
.y35{bottom:495.147893px;}
.y13c{bottom:496.324643px;}
.yb9{bottom:496.328693px;}
.y17a{bottom:498.573900px;}
.y1c7{bottom:499.129200px;}
.y134{bottom:500.076300px;}
.y102{bottom:500.076750px;}
.y165{bottom:500.079592px;}
.ye9{bottom:500.825543px;}
.yd5{bottom:502.548600px;}
.y1a6{bottom:504.203535px;}
.y244{bottom:504.565350px;}
.y25a{bottom:504.590971px;}
.yf{bottom:505.315350px;}
.y193{bottom:506.448900px;}
.y98{bottom:506.934455px;}
.y89{bottom:507.954435px;}
.y14f{bottom:509.824643px;}
.y1f2{bottom:511.472250px;}
.y5c{bottom:511.882170px;}
.y221{bottom:514.482225px;}
.y34{bottom:517.647443px;}
.yb8{bottom:518.828242px;}
.y6e{bottom:522.198900px;}
.y133{bottom:522.575850px;}
.y101{bottom:522.576300px;}
.ya8{bottom:522.579142px;}
.ye8{bottom:523.325092px;}
.y1a5{bottom:526.703085px;}
.y243{bottom:529.315350px;}
.y259{bottom:529.339846px;}
.y97{bottom:529.434005px;}
.y88{bottom:530.453985px;}
.y13b{bottom:533.448900px;}
.y5b{bottom:534.381720px;}
.y1f1{bottom:536.221125px;}
.y207{bottom:536.238837px;}
.y220{bottom:539.231100px;}
.y22e{bottom:539.264098px;}
.y33{bottom:540.146993px;}
.yb7{bottom:541.327792px;}
.y132{bottom:545.075400px;}
.y100{bottom:545.075850px;}
.ya7{bottom:545.078692px;}
.ye7{bottom:545.824642px;}
.ye{bottom:546.444900px;}
.y14e{bottom:546.948900px;}
.y179{bottom:547.548600px;}
.y87{bottom:552.953535px;}
.y192{bottom:555.423600px;}
.y5a{bottom:556.881270px;}
.y1c6{bottom:557.004651px;}
.y242{bottom:560.665350px;}
.y1f0{bottom:560.970000px;}
.y32{bottom:562.646543px;}
.yb6{bottom:563.827342px;}
.y21f{bottom:563.979975px;}
.y96{bottom:566.558263px;}
.y131{bottom:567.574950px;}
.yff{bottom:567.575400px;}
.ya6{bottom:567.578242px;}
.y6d{bottom:571.173600px;}
.y112{bottom:575.453085px;}
.y59{bottom:579.380820px;}
.y13a{bottom:579.545175px;}
.y1c5{bottom:582.875475px;}
.ye6{bottom:582.948900px;}
.y241{bottom:585.415350px;}
.y258{bottom:585.437296px;}
.y1ef{bottom:585.718875px;}
.yb5{bottom:586.326892px;}
.y21e{bottom:588.728850px;}
.y22d{bottom:588.761848px;}
.y130{bottom:590.074500px;}
.yfe{bottom:590.074950px;}
.y86{bottom:590.077792px;}
.y14d{bottom:595.923600px;}
.y111{bottom:597.952635px;}
.y31{bottom:599.770800px;}
.y58{bottom:601.880370px;}
.y139{bottom:604.294050px;}
.yd{bottom:604.316475px;}
.y1c4{bottom:607.624350px;}
.y1da{bottom:607.634362px;}
.yb4{bottom:608.826442px;}
.y1ee{bottom:610.467750px;}
.y206{bottom:610.485462px;}
.y12f{bottom:612.574050px;}
.yfd{bottom:612.574500px;}
.y85{bottom:612.577342px;}
.y191{bottom:613.294050px;}
.y21d{bottom:613.477725px;}
.y240{bottom:616.765500px;}
.y110{bottom:620.452185px;}
.y30{bottom:622.270350px;}
.y6c{bottom:629.044050px;}
.yc{bottom:629.065350px;}
.yb3{bottom:631.325992px;}
.y1c3{bottom:632.373225px;}
.y16b{bottom:634.056913px;}
.yfc{bottom:635.074050px;}
.y84{bottom:635.076892px;}
.y1ed{bottom:635.216625px;}
.y21c{bottom:638.226600px;}
.y22c{bottom:638.259599px;}
.y57{bottom:639.004627px;}
.y23f{bottom:641.516625px;}
.y190{bottom:651.183900px;}
.y6b{bottom:653.794050px;}
.yb2{bottom:653.825543px;}
.y16a{bottom:656.556463px;}
.y1c2{bottom:657.122100px;}
.y1d9{bottom:657.132112px;}
.y12e{bottom:657.574050px;}
.y83{bottom:657.576442px;}
.y1ec{bottom:659.965500px;}
.y205{bottom:659.983212px;}
.y56{bottom:661.504177px;}
.y21b{bottom:662.975475px;}
.y23e{bottom:666.265500px;}
.y257{bottom:666.283621px;}
.yb{bottom:670.194900px;}
.y2f{bottom:671.244900px;}
.yb1{bottom:676.325092px;}
.y169{bottom:679.056013px;}
.y82{bottom:680.075992px;}
.y1c1{bottom:681.870975px;}
.y55{bottom:684.003728px;}
.y21a{bottom:687.724350px;}
.y22b{bottom:687.757348px;}
.y6a{bottom:691.683900px;}
.y23d{bottom:697.615350px;}
.yb0{bottom:698.824642px;}
.y168{bottom:701.555563px;}
.y81{bottom:702.575542px;}
.y1eb{bottom:704.094900px;}
.y54{bottom:706.503277px;}
.y1c0{bottom:706.619850px;}
.y18f{bottom:707.433600px;}
.y219{bottom:712.473225px;}
.y23c{bottom:722.365350px;}
.y167{bottom:724.055113px;}
.y80{bottom:725.075092px;}
.ya{bottom:728.066475px;}
.y53{bottom:729.002827px;}
.y1bf{bottom:731.368725px;}
.y1d8{bottom:731.378737px;}
.yaf{bottom:735.948900px;}
.y218{bottom:737.222100px;}
.y2e{bottom:739.625775px;}
.y23b{bottom:747.115350px;}
.y256{bottom:747.129946px;}
.y7f{bottom:747.574642px;}
.y69{bottom:747.933600px;}
.y52{bottom:751.502378px;}
.y9{bottom:752.815350px;}
.y1be{bottom:756.117600px;}
.y217{bottom:761.970975px;}
.y1ea{bottom:761.975475px;}
.y22a{bottom:762.003973px;}
.y2d{bottom:764.374650px;}
.y23a{bottom:771.865350px;}
.y1bd{bottom:780.866475px;}
.y7e{bottom:784.698900px;}
.yae{bottom:784.923600px;}
.y216{bottom:786.719850px;}
.y1e9{bottom:786.724350px;}
.y204{bottom:786.730451px;}
.y51{bottom:788.626635px;}
.y2c{bottom:789.123525px;}
.y8{bottom:793.944900px;}
.y239{bottom:796.615350px;}
.y1bc{bottom:805.615350px;}
.y1d7{bottom:805.625362px;}
.y50{bottom:811.126185px;}
.y215{bottom:811.468725px;}
.y1e8{bottom:811.473225px;}
.y229{bottom:811.501723px;}
.y2b{bottom:813.872400px;}
.y238{bottom:821.365350px;}
.y255{bottom:821.376571px;}
.y7{bottom:827.694900px;}
.y4f{bottom:833.625735px;}
.y214{bottom:836.217600px;}
.y1e7{bottom:836.222100px;}
.y203{bottom:836.228200px;}
.y2a{bottom:838.621275px;}
.y7d{bottom:838.913361px;}
.y178{bottom:845.327687px;}
.y12d{bottom:845.332330px;}
.y161{bottom:845.334490px;}
.yd4{bottom:845.335090px;}
.ye5{bottom:845.336065px;}
.y18b{bottom:845.336965px;}
.y19b{bottom:845.337122px;}
.y7b{bottom:845.337437px;}
.y14c{bottom:845.337662px;}
.yfb{bottom:845.338652px;}
.y138{bottom:845.339395px;}
.y10f{bottom:845.339845px;}
.yc0{bottom:845.341712px;}
.y95{bottom:845.342687px;}
.y237{bottom:846.115350px;}
.y254{bottom:846.125446px;}
.y1bb{bottom:849.744900px;}
.y4e{bottom:856.125285px;}
.y213{bottom:860.966475px;}
.y1e6{bottom:860.970975px;}
.y29{bottom:863.370150px;}
.y236{bottom:870.865350px;}
.y253{bottom:870.874321px;}
.y4d{bottom:878.624835px;}
.y6{bottom:885.565350px;}
.y212{bottom:885.715350px;}
.y1e5{bottom:885.719850px;}
.y228{bottom:885.748348px;}
.y28{bottom:894.718725px;}
.y235{bottom:895.615350px;}
.y1ba{bottom:907.620975px;}
.y1e4{bottom:910.468725px;}
.y202{bottom:910.474825px;}
.y4c{bottom:915.749093px;}
.y27{bottom:919.467600px;}
.y234{bottom:920.365350px;}
.y5{bottom:926.694900px;}
.y211{bottom:929.844900px;}
.y1b9{bottom:932.369850px;}
.y1e3{bottom:935.217600px;}
.y4b{bottom:938.248642px;}
.y26{bottom:944.216475px;}
.y233{bottom:945.115350px;}
.y252{bottom:945.120946px;}
.y1b8{bottom:957.118725px;}
.y1e2{bottom:959.966475px;}
.y4{bottom:960.444900px;}
.y4a{bottom:960.748192px;}
.y25{bottom:968.965350px;}
.y263{bottom:981.116475px;}
.y1b7{bottom:981.867600px;}
.y49{bottom:983.247743px;}
.y1e1{bottom:984.715350px;}
.y201{bottom:984.721450px;}
.y210{bottom:987.723225px;}
.y232{bottom:989.244900px;}
.y48{bottom:1005.747292px;}
.y262{bottom:1005.869025px;}
.y1b6{bottom:1006.616475px;}
.y24{bottom:1010.094900px;}
.y20f{bottom:1012.472100px;}
.y227{bottom:1012.495587px;}
.y3{bottom:1021.194900px;}
.y47{bottom:1028.246842px;}
.y1e0{bottom:1028.844900px;}
.y261{bottom:1030.617900px;}
.y1b5{bottom:1031.365350px;}
.y20e{bottom:1037.220975px;}
.y231{bottom:1047.116475px;}
.y46{bottom:1050.746393px;}
.y2{bottom:1054.944900px;}
.y260{bottom:1055.366775px;}
.y20d{bottom:1061.969850px;}
.y230{bottom:1071.865350px;}
.y1b4{bottom:1077.354900px;}
.y25f{bottom:1086.716475px;}
.y42{bottom:1086.718270px;}
.y23{bottom:1086.718725px;}
.y226{bottom:1086.742212px;}
.y45{bottom:1087.870650px;}
.y44{bottom:1110.370200px;}
.y41{bottom:1111.467145px;}
.y22{bottom:1111.467600px;}
.y1{bottom:1117.854900px;}
.y21{bottom:1136.216475px;}
.y43{bottom:1157.905200px;}
.y40{bottom:1160.964895px;}
.y20{bottom:1160.965350px;}
.y200{bottom:1160.966439px;}
.y225{bottom:1160.988837px;}
.y1f{bottom:1208.834656px;}
.y1b{bottom:1215.254100px;}
.h9{height:13.200074px;}
.h10{height:35.991211px;}
.h8{height:39.575065px;}
.h7{height:41.659323px;}
.hc{height:44.208100px;}
.hb{height:44.501063px;}
.h11{height:48.112071px;}
.ha{height:48.281250px;}
.h5{height:48.627672px;}
.h4{height:48.949923px;}
.h6{height:57.851649px;}
.h3{height:66.752930px;}
.hf{height:79.998047px;}
.h2{height:80.103516px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:68.056500px;}
.w6{width:74.730000px;}
.w3{width:129.375000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:94.039350px;}
.xc{left:98.539350px;}
.x8{left:104.164350px;}
.x7{left:108.000000px;}
.x3{left:153.427821px;}
.x2{left:163.789350px;}
.x5{left:244.352250px;}
.xb{left:280.125831px;}
.x4{left:305.224200px;}
.x10{left:429.312750px;}
.xa{left:456.042312px;}
.xd{left:462.042192px;}
.xf{left:490.181630px;}
.x9{left:631.958794px;}
.x14{left:710.183350px;}
.x6{left:716.856857px;}
.xe{left:819.920035px;}
.x13{left:824.418300px;}
.x12{left:1080.104645px;}
.x11{left:1086.778198px;}
@media print{
.v1{vertical-align:-3.626594pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws14{word-spacing:-31.962667pt;}
.ws10{word-spacing:-31.948800pt;}
.ws11{word-spacing:-31.934400pt;}
.ws15{word-spacing:-31.924800pt;}
.wsf{word-spacing:-31.887467pt;}
.wse{word-spacing:-31.869333pt;}
.ws18{word-spacing:-31.835733pt;}
.ws17{word-spacing:-31.723200pt;}
.wsd{word-spacing:-31.671467pt;}
.ws0{word-spacing:-16.308592pt;}
.ws1a{word-spacing:-15.609067pt;}
.ws2{word-spacing:-14.826370pt;}
.wsa{word-spacing:-12.790933pt;}
.ws7{word-spacing:-12.706133pt;}
.ws8{word-spacing:-12.701333pt;}
.ws4{word-spacing:-12.640533pt;}
.ws5{word-spacing:-12.598400pt;}
.ws3{word-spacing:-12.593600pt;}
.wsb{word-spacing:-12.561067pt;}
.ws6{word-spacing:-12.472000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:3.623467pt;}
.ws19{word-spacing:15.965072pt;}
.ws16{word-spacing:16.016931pt;}
.ws13{word-spacing:16.023736pt;}
.ws12{word-spacing:16.035528pt;}
.ws9{word-spacing:1109.364479pt;}
._4b{margin-left:-7.360000pt;}
._2{margin-left:-5.984000pt;}
._3{margin-left:-4.595626pt;}
._0{margin-left:-3.523200pt;}
._1{margin-left:-2.364800pt;}
._4{margin-left:-1.178649pt;}
._4c{width:0.899522pt;}
._21{width:1.978627pt;}
._14{width:16.309333pt;}
._4d{width:32.312984pt;}
._9{width:86.184943pt;}
._30{width:154.930235pt;}
._e{width:163.250068pt;}
._6{width:188.538613pt;}
._7{width:189.862869pt;}
._32{width:194.026057pt;}
._1c{width:196.262741pt;}
._36{width:208.262501pt;}
._b{width:236.760112pt;}
._2e{width:243.781791pt;}
._37{width:282.607681pt;}
._f{width:328.598275pt;}
._c{width:341.006513pt;}
._2d{width:342.236426pt;}
._8{width:355.371073pt;}
._3b{width:377.059125pt;}
._a{width:384.970481pt;}
._d{width:394.392112pt;}
._3e{width:403.671926pt;}
._12{width:418.018306pt;}
._13{width:421.541506pt;}
._48{width:427.511450pt;}
._11{width:432.951341pt;}
._10{width:435.209476pt;}
._40{width:442.177823pt;}
._5{width:444.791104pt;}
._1d{width:451.297641pt;}
._49{width:454.124251pt;}
._26{width:472.847147pt;}
._3a{width:501.483303pt;}
._44{width:522.282887pt;}
._3d{width:543.082471pt;}
._39{width:560.788784pt;}
._47{width:572.735212pt;}
._20{width:617.267654pt;}
._1f{width:631.987360pt;}
._38{width:649.747005pt;}
._2c{width:678.476125pt;}
._3c{width:679.399745pt;}
._45{width:709.052485pt;}
._24{width:715.079031pt;}
._17{width:723.985520pt;}
._3f{width:729.852069pt;}
._1b{width:732.838676pt;}
._43{width:738.705226pt;}
._46{width:750.651653pt;}
._31{width:768.357966pt;}
._16{width:783.344333pt;}
._2b{width:789.216221pt;}
._18{width:792.144157pt;}
._29{width:798.010706pt;}
._22{width:809.903802pt;}
._2a{width:821.956894pt;}
._42{width:827.663446pt;}
._35{width:857.316187pt;}
._34{width:886.968927pt;}
._2f{width:907.768511pt;}
._33{width:928.568095pt;}
._1e{width:940.461190pt;}
._23{width:946.274407pt;}
._19{width:958.167503pt;}
._41{width:975.927148pt;}
._28{width:978.967087pt;}
._1a{width:987.820243pt;}
._27{width:1029.366079pt;}
._4a{width:1035.232628pt;}
._25{width:1076.778464pt;}
._15{width:1097.578048pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:50.664000pt;}
.fs4{font-size:53.332267pt;}
.fs2{font-size:58.664000pt;}
.fs3{font-size:69.332267pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:2.245333pt;}
.y1c{bottom:33.521733pt;}
.y7c{bottom:33.521867pt;}
.y1d{bottom:36.266602pt;}
.yfa{bottom:92.185320pt;}
.y1d6{bottom:96.458267pt;}
.y12c{bottom:97.179600pt;}
.ye4{bottom:97.182920pt;}
.y18a{bottom:97.183720pt;}
.y251{bottom:101.837867pt;}
.y1a4{bottom:105.521973pt;}
.yf9{bottom:112.184920pt;}
.y1a{bottom:115.973200pt;}
.y12b{bottom:117.179200pt;}
.ye3{bottom:117.182520pt;}
.y189{bottom:117.183320pt;}
.y1d5{bottom:118.457267pt;}
.y1ff{bottom:121.974200pt;}
.y1af{bottom:122.187440pt;}
.y250{bottom:123.836867pt;}
.y11f{bottom:125.521573pt;}
.y14b{bottom:128.183720pt;}
.yf8{bottom:132.184520pt;}
.y12a{bottom:137.178800pt;}
.ye2{bottom:137.182120pt;}
.y188{bottom:137.182920pt;}
.y19{bottom:137.972200pt;}
.y164{bottom:138.521313pt;}
.y160{bottom:140.180660pt;}
.y1b3{bottom:140.373743pt;}
.y1d4{bottom:140.456267pt;}
.y1ae{bottom:142.187040pt;}
.y1fe{bottom:143.973200pt;}
.y20c{bottom:144.002532pt;}
.y11e{bottom:145.521173pt;}
.y24f{bottom:145.835867pt;}
.y14a{bottom:148.183320pt;}
.yf7{bottom:152.184120pt;}
.y1a3{bottom:155.186780pt;}
.y129{bottom:157.178400pt;}
.ye1{bottom:157.181720pt;}
.y187{bottom:157.182520pt;}
.y177{bottom:158.507580pt;}
.y163{bottom:158.520913pt;}
.y18{bottom:159.971200pt;}
.y15f{bottom:160.180260pt;}
.y1b2{bottom:160.373343pt;}
.y1ad{bottom:162.186640pt;}
.y1d3{bottom:162.455267pt;}
.y1df{bottom:162.469933pt;}
.y68{bottom:165.303533pt;}
.y11d{bottom:165.520773pt;}
.y1fd{bottom:165.972200pt;}
.yd3{bottom:166.847327pt;}
.y149{bottom:168.182920pt;}
.yf6{bottom:172.183720pt;}
.y1a2{bottom:175.186380pt;}
.y128{bottom:177.178000pt;}
.ye0{bottom:177.181320pt;}
.y186{bottom:177.182120pt;}
.ya5{bottom:177.613865pt;}
.y176{bottom:178.507180pt;}
.y162{bottom:178.520513pt;}
.y15e{bottom:180.179860pt;}
.y1b1{bottom:180.372943pt;}
.y17{bottom:181.970200pt;}
.y1ac{bottom:182.186240pt;}
.y24e{bottom:182.395467pt;}
.y1d2{bottom:184.454267pt;}
.y11c{bottom:185.520373pt;}
.yd2{bottom:186.846927pt;}
.y3f{bottom:187.104533pt;}
.y67{bottom:187.302533pt;}
.y1fc{bottom:187.971200pt;}
.y20b{bottom:188.000532pt;}
.y148{bottom:188.182520pt;}
.y10e{bottom:191.517727pt;}
.yf5{bottom:192.183320pt;}
.y1a1{bottom:195.185980pt;}
.y127{bottom:197.177600pt;}
.ydf{bottom:197.180920pt;}
.y185{bottom:197.181720pt;}
.ya4{bottom:197.613465pt;}
.y175{bottom:198.506780pt;}
.yad{bottom:198.520113pt;}
.y15d{bottom:200.179460pt;}
.y1b0{bottom:201.279191pt;}
.y1ab{bottom:202.185840pt;}
.y16{bottom:203.969200pt;}
.y11b{bottom:205.519973pt;}
.y1d1{bottom:206.453267pt;}
.yd1{bottom:206.846527pt;}
.y147{bottom:208.182120pt;}
.y3e{bottom:209.103533pt;}
.y1fb{bottom:209.970200pt;}
.y7a{bottom:211.181860pt;}
.y10d{bottom:211.517327pt;}
.yf4{bottom:212.182920pt;}
.y1a0{bottom:215.185580pt;}
.y126{bottom:217.177200pt;}
.y184{bottom:217.181320pt;}
.ya3{bottom:217.613065pt;}
.y174{bottom:218.506380pt;}
.y94{bottom:218.519713pt;}
.y15c{bottom:220.179060pt;}
.y1aa{bottom:222.185440pt;}
.y11a{bottom:225.519573pt;}
.yd0{bottom:226.846127pt;}
.y146{bottom:228.181720pt;}
.y1d0{bottom:228.452267pt;}
.y1de{bottom:228.466933pt;}
.y66{bottom:229.010893pt;}
.yde{bottom:230.180260pt;}
.y3d{bottom:231.102533pt;}
.y79{bottom:231.181460pt;}
.y10c{bottom:231.516927pt;}
.y18e{bottom:231.519453pt;}
.y1fa{bottom:231.969200pt;}
.y20a{bottom:231.998532pt;}
.yf3{bottom:232.182520pt;}
.y19f{bottom:235.185180pt;}
.y125{bottom:237.176800pt;}
.y183{bottom:237.180920pt;}
.ya2{bottom:237.612665pt;}
.y173{bottom:238.505980pt;}
.y93{bottom:238.519313pt;}
.y15b{bottom:240.178660pt;}
.y15{bottom:243.195467pt;}
.y119{bottom:245.519173pt;}
.ycf{bottom:246.845727pt;}
.y145{bottom:248.181320pt;}
.y65{bottom:249.010493pt;}
.ydd{bottom:250.179860pt;}
.y1cf{bottom:250.451267pt;}
.y24d{bottom:250.503533pt;}
.y78{bottom:251.181060pt;}
.y10b{bottom:251.516527pt;}
.y18d{bottom:251.519053pt;}
.yf2{bottom:252.182120pt;}
.y19e{bottom:255.184780pt;}
.y124{bottom:257.178260pt;}
.ya1{bottom:257.612265pt;}
.y172{bottom:258.505580pt;}
.y92{bottom:258.518913pt;}
.y15a{bottom:260.178260pt;}
.y118{bottom:265.518773pt;}
.yce{bottom:266.845327pt;}
.y144{bottom:268.180920pt;}
.y64{bottom:269.010093pt;}
.ydc{bottom:270.179460pt;}
.y182{bottom:270.180260pt;}
.y77{bottom:271.180660pt;}
.y1f9{bottom:271.195467pt;}
.y10a{bottom:271.516127pt;}
.y18c{bottom:271.518653pt;}
.y1ce{bottom:272.450267pt;}
.y24c{bottom:272.502533pt;}
.y25e{bottom:272.533307pt;}
.y3c{bottom:274.134780pt;}
.y19d{bottom:275.184380pt;}
.y123{bottom:277.177860pt;}
.ya0{bottom:277.611865pt;}
.y91{bottom:278.518513pt;}
.y159{bottom:280.177860pt;}
.yf1{bottom:285.181460pt;}
.y19c{bottom:285.518373pt;}
.ycd{bottom:286.844927pt;}
.yc8{bottom:288.184120pt;}
.y63{bottom:289.009693pt;}
.ydb{bottom:290.179060pt;}
.y181{bottom:290.179860pt;}
.y76{bottom:291.180260pt;}
.y171{bottom:291.504920pt;}
.y109{bottom:291.515727pt;}
.yac{bottom:291.518253pt;}
.y3b{bottom:294.134380pt;}
.y1cd{bottom:294.449267pt;}
.y1dd{bottom:294.463933pt;}
.y24b{bottom:294.502533pt;}
.y1a9{bottom:295.183980pt;}
.y122{bottom:297.177460pt;}
.y19a{bottom:297.179860pt;}
.y90{bottom:298.518113pt;}
.y143{bottom:301.180260pt;}
.y14{bottom:303.970200pt;}
.yf0{bottom:305.181060pt;}
.ycc{bottom:306.844527pt;}
.yc7{bottom:308.183720pt;}
.y62{bottom:309.009293pt;}
.yda{bottom:310.178660pt;}
.y180{bottom:310.179460pt;}
.y9f{bottom:310.611205pt;}
.y75{bottom:311.179860pt;}
.y170{bottom:311.504520pt;}
.y108{bottom:311.515327pt;}
.yab{bottom:311.517853pt;}
.y158{bottom:313.177200pt;}
.y156{bottom:313.180260pt;}
.y3a{bottom:314.133980pt;}
.y1a8{bottom:315.183580pt;}
.y1cc{bottom:316.448267pt;}
.y24a{bottom:316.502533pt;}
.y25d{bottom:316.531307pt;}
.y199{bottom:317.179460pt;}
.y8f{bottom:318.517713pt;}
.y142{bottom:321.179860pt;}
.ybf{bottom:321.183460pt;}
.y1f8{bottom:322.648000pt;}
.yef{bottom:325.180660pt;}
.y13{bottom:325.969200pt;}
.ycb{bottom:326.844127pt;}
.yc6{bottom:328.183320pt;}
.y121{bottom:330.176800pt;}
.yd9{bottom:330.178260pt;}
.y17f{bottom:330.179060pt;}
.y9e{bottom:330.610805pt;}
.y74{bottom:331.179460pt;}
.y16f{bottom:331.504120pt;}
.y107{bottom:331.514927pt;}
.yaa{bottom:331.517453pt;}
.y157{bottom:333.176800pt;}
.y155{bottom:333.179860pt;}
.y39{bottom:334.133580pt;}
.y1a7{bottom:335.183180pt;}
.y198{bottom:337.179060pt;}
.y1cb{bottom:338.447267pt;}
.y249{bottom:338.502533pt;}
.y8e{bottom:338.517313pt;}
.y141{bottom:341.179460pt;}
.ybe{bottom:341.183060pt;}
.y61{bottom:342.008633pt;}
.y1f7{bottom:344.647000pt;}
.yee{bottom:345.180260pt;}
.yc5{bottom:348.182920pt;}
.yd8{bottom:350.177860pt;}
.y17e{bottom:350.178660pt;}
.y9d{bottom:350.610405pt;}
.y73{bottom:351.179060pt;}
.y16e{bottom:351.503720pt;}
.ya9{bottom:351.517053pt;}
.y154{bottom:353.179460pt;}
.y197{bottom:357.178660pt;}
.y117{bottom:358.516913pt;}
.y12{bottom:359.649067pt;}
.yca{bottom:359.843467pt;}
.y1ca{bottom:360.446267pt;}
.y1dc{bottom:360.460933pt;}
.y248{bottom:360.502533pt;}
.y25c{bottom:360.529307pt;}
.y140{bottom:361.179060pt;}
.ybd{bottom:361.182660pt;}
.y60{bottom:362.008233pt;}
.y106{bottom:364.514267pt;}
.yed{bottom:365.179860pt;}
.y1f6{bottom:366.646000pt;}
.y209{bottom:366.661744pt;}
.y38{bottom:367.132920pt;}
.yc4{bottom:368.182520pt;}
.yd7{bottom:370.177460pt;}
.y17d{bottom:370.178260pt;}
.y9c{bottom:370.610005pt;}
.y72{bottom:371.178660pt;}
.y16d{bottom:371.503320pt;}
.y8d{bottom:371.516653pt;}
.y153{bottom:373.179060pt;}
.y120{bottom:373.709867pt;}
.y196{bottom:377.178260pt;}
.y116{bottom:378.516513pt;}
.y13f{bottom:381.178660pt;}
.ybc{bottom:381.182260pt;}
.y5f{bottom:382.007833pt;}
.y1c9{bottom:382.445267pt;}
.y247{bottom:382.502533pt;}
.y137{bottom:384.513467pt;}
.y105{bottom:384.513867pt;}
.yec{bottom:385.179460pt;}
.y37{bottom:387.132520pt;}
.yc3{bottom:388.182120pt;}
.y1f5{bottom:388.645000pt;}
.y17c{bottom:390.177860pt;}
.y9b{bottom:390.609605pt;}
.y71{bottom:391.178260pt;}
.y224{bottom:391.320533pt;}
.y16c{bottom:391.502920pt;}
.y8c{bottom:391.516253pt;}
.y152{bottom:393.178660pt;}
.y195{bottom:397.177860pt;}
.y115{bottom:398.516113pt;}
.y13e{bottom:401.178260pt;}
.ybb{bottom:401.181860pt;}
.y5e{bottom:402.007433pt;}
.yd6{bottom:403.176800pt;}
.yc9{bottom:403.376533pt;}
.y1c8{bottom:404.444267pt;}
.y1db{bottom:404.458933pt;}
.y246{bottom:404.502533pt;}
.y136{bottom:404.513067pt;}
.y104{bottom:404.513467pt;}
.y11{bottom:405.171200pt;}
.yeb{bottom:405.179060pt;}
.y36{bottom:407.132120pt;}
.yc2{bottom:408.181720pt;}
.y17b{bottom:410.177460pt;}
.y9a{bottom:410.609205pt;}
.y1f4{bottom:410.644000pt;}
.y208{bottom:410.659744pt;}
.y70{bottom:411.177860pt;}
.y8b{bottom:411.515853pt;}
.y151{bottom:413.178260pt;}
.y223{bottom:413.319533pt;}
.y194{bottom:417.177460pt;}
.y114{bottom:418.515713pt;}
.y13d{bottom:421.177860pt;}
.yba{bottom:421.181460pt;}
.y5d{bottom:422.007033pt;}
.y135{bottom:424.512667pt;}
.y103{bottom:424.513067pt;}
.y166{bottom:424.515593pt;}
.yea{bottom:425.178660pt;}
.y245{bottom:426.502533pt;}
.y25b{bottom:426.526307pt;}
.y10{bottom:427.170200pt;}
.yc1{bottom:428.181320pt;}
.y99{bottom:430.608805pt;}
.y6f{bottom:431.177460pt;}
.y8a{bottom:431.515453pt;}
.y1f3{bottom:432.643000pt;}
.y150{bottom:433.177860pt;}
.y222{bottom:435.318533pt;}
.y22f{bottom:435.347865pt;}
.y113{bottom:438.515313pt;}
.y35{bottom:440.131460pt;}
.y13c{bottom:441.177460pt;}
.yb9{bottom:441.181060pt;}
.y17a{bottom:443.176800pt;}
.y1c7{bottom:443.670400pt;}
.y134{bottom:444.512267pt;}
.y102{bottom:444.512667pt;}
.y165{bottom:444.515193pt;}
.ye9{bottom:445.178260pt;}
.yd5{bottom:446.709867pt;}
.y1a6{bottom:448.180920pt;}
.y244{bottom:448.502533pt;}
.y25a{bottom:448.525307pt;}
.yf{bottom:449.169200pt;}
.y193{bottom:450.176800pt;}
.y98{bottom:450.608405pt;}
.y89{bottom:451.515053pt;}
.y14f{bottom:453.177460pt;}
.y1f2{bottom:454.642000pt;}
.y5c{bottom:455.006373pt;}
.y221{bottom:457.317533pt;}
.y34{bottom:460.131060pt;}
.yb8{bottom:461.180660pt;}
.y6e{bottom:464.176800pt;}
.y133{bottom:464.511867pt;}
.y101{bottom:464.512267pt;}
.ya8{bottom:464.514793pt;}
.ye8{bottom:465.177860pt;}
.y1a5{bottom:468.180520pt;}
.y243{bottom:470.502533pt;}
.y259{bottom:470.524307pt;}
.y97{bottom:470.608005pt;}
.y88{bottom:471.514653pt;}
.y13b{bottom:474.176800pt;}
.y5b{bottom:475.005973pt;}
.y1f1{bottom:476.641000pt;}
.y207{bottom:476.656744pt;}
.y220{bottom:479.316533pt;}
.y22e{bottom:479.345865pt;}
.y33{bottom:480.130660pt;}
.yb7{bottom:481.180260pt;}
.y132{bottom:484.511467pt;}
.y100{bottom:484.511867pt;}
.ya7{bottom:484.514393pt;}
.ye7{bottom:485.177460pt;}
.ye{bottom:485.728800pt;}
.y14e{bottom:486.176800pt;}
.y179{bottom:486.709867pt;}
.y87{bottom:491.514253pt;}
.y192{bottom:493.709867pt;}
.y5a{bottom:495.005573pt;}
.y1c6{bottom:495.115245pt;}
.y242{bottom:498.369200pt;}
.y1f0{bottom:498.640000pt;}
.y32{bottom:500.130260pt;}
.yb6{bottom:501.179860pt;}
.y21f{bottom:501.315533pt;}
.y96{bottom:503.607345pt;}
.y131{bottom:504.511067pt;}
.yff{bottom:504.511467pt;}
.ya6{bottom:504.513993pt;}
.y6d{bottom:507.709867pt;}
.y112{bottom:511.513853pt;}
.y59{bottom:515.005173pt;}
.y13a{bottom:515.151267pt;}
.y1c5{bottom:518.111533pt;}
.ye6{bottom:518.176800pt;}
.y241{bottom:520.369200pt;}
.y258{bottom:520.388707pt;}
.y1ef{bottom:520.639000pt;}
.yb5{bottom:521.179460pt;}
.y21e{bottom:523.314533pt;}
.y22d{bottom:523.343865pt;}
.y130{bottom:524.510667pt;}
.yfe{bottom:524.511067pt;}
.y86{bottom:524.513593pt;}
.y14d{bottom:529.709867pt;}
.y111{bottom:531.513453pt;}
.y31{bottom:533.129600pt;}
.y58{bottom:535.004773pt;}
.y139{bottom:537.150267pt;}
.yd{bottom:537.170200pt;}
.y1c4{bottom:540.110533pt;}
.y1da{bottom:540.119433pt;}
.yb4{bottom:541.179060pt;}
.y1ee{bottom:542.638000pt;}
.y206{bottom:542.653744pt;}
.y12f{bottom:544.510267pt;}
.yfd{bottom:544.510667pt;}
.y85{bottom:544.513193pt;}
.y191{bottom:545.150267pt;}
.y21d{bottom:545.313533pt;}
.y240{bottom:548.236000pt;}
.y110{bottom:551.513053pt;}
.y30{bottom:553.129200pt;}
.y6c{bottom:559.150267pt;}
.yc{bottom:559.169200pt;}
.yb3{bottom:561.178660pt;}
.y1c3{bottom:562.109533pt;}
.y16b{bottom:563.606145pt;}
.yfc{bottom:564.510267pt;}
.y84{bottom:564.512793pt;}
.y1ed{bottom:564.637000pt;}
.y21c{bottom:567.312533pt;}
.y22c{bottom:567.341865pt;}
.y57{bottom:568.004113pt;}
.y23f{bottom:570.237000pt;}
.y190{bottom:578.830133pt;}
.y6b{bottom:581.150267pt;}
.yb2{bottom:581.178260pt;}
.y16a{bottom:583.605745pt;}
.y1c2{bottom:584.108533pt;}
.y1d9{bottom:584.117433pt;}
.y12e{bottom:584.510267pt;}
.y83{bottom:584.512393pt;}
.y1ec{bottom:586.636000pt;}
.y205{bottom:586.651744pt;}
.y56{bottom:588.003713pt;}
.y21b{bottom:589.311533pt;}
.y23e{bottom:592.236000pt;}
.y257{bottom:592.252107pt;}
.yb{bottom:595.728800pt;}
.y2f{bottom:596.662133pt;}
.yb1{bottom:601.177860pt;}
.y169{bottom:603.605345pt;}
.y82{bottom:604.511993pt;}
.y1c1{bottom:606.107533pt;}
.y55{bottom:608.003313pt;}
.y21a{bottom:611.310533pt;}
.y22b{bottom:611.339865pt;}
.y6a{bottom:614.830133pt;}
.y23d{bottom:620.102533pt;}
.yb0{bottom:621.177460pt;}
.y168{bottom:623.604945pt;}
.y81{bottom:624.511593pt;}
.y1eb{bottom:625.862133pt;}
.y54{bottom:628.002913pt;}
.y1c0{bottom:628.106533pt;}
.y18f{bottom:628.829867pt;}
.y219{bottom:633.309533pt;}
.y23c{bottom:642.102533pt;}
.y167{bottom:643.604545pt;}
.y80{bottom:644.511193pt;}
.ya{bottom:647.170200pt;}
.y53{bottom:648.002513pt;}
.y1bf{bottom:650.105533pt;}
.y1d8{bottom:650.114433pt;}
.yaf{bottom:654.176800pt;}
.y218{bottom:655.308533pt;}
.y2e{bottom:657.445133pt;}
.y23b{bottom:664.102533pt;}
.y256{bottom:664.115507pt;}
.y7f{bottom:664.510793pt;}
.y69{bottom:664.829867pt;}
.y52{bottom:668.002113pt;}
.y9{bottom:669.169200pt;}
.y1be{bottom:672.104533pt;}
.y217{bottom:677.307533pt;}
.y1ea{bottom:677.311533pt;}
.y22a{bottom:677.336865pt;}
.y2d{bottom:679.444133pt;}
.y23a{bottom:686.102533pt;}
.y1bd{bottom:694.103533pt;}
.y7e{bottom:697.510133pt;}
.yae{bottom:697.709867pt;}
.y216{bottom:699.306533pt;}
.y1e9{bottom:699.310533pt;}
.y204{bottom:699.315956pt;}
.y51{bottom:701.001453pt;}
.y2c{bottom:701.443133pt;}
.y8{bottom:705.728800pt;}
.y239{bottom:708.102533pt;}
.y1bc{bottom:716.102533pt;}
.y1d7{bottom:716.111433pt;}
.y50{bottom:721.001053pt;}
.y215{bottom:721.305533pt;}
.y1e8{bottom:721.309533pt;}
.y229{bottom:721.334865pt;}
.y2b{bottom:723.442133pt;}
.y238{bottom:730.102533pt;}
.y255{bottom:730.112507pt;}
.y7{bottom:735.728800pt;}
.y4f{bottom:741.000653pt;}
.y214{bottom:743.304533pt;}
.y1e7{bottom:743.308533pt;}
.y203{bottom:743.313956pt;}
.y2a{bottom:745.441133pt;}
.y7d{bottom:745.700765pt;}
.y178{bottom:751.402389pt;}
.y12d{bottom:751.406515pt;}
.y161{bottom:751.408435pt;}
.yd4{bottom:751.408969pt;}
.ye5{bottom:751.409835pt;}
.y18b{bottom:751.410635pt;}
.y19b{bottom:751.410775pt;}
.y7b{bottom:751.411055pt;}
.y14c{bottom:751.411255pt;}
.yfb{bottom:751.412135pt;}
.y138{bottom:751.412795pt;}
.y10f{bottom:751.413195pt;}
.yc0{bottom:751.414855pt;}
.y95{bottom:751.415722pt;}
.y237{bottom:752.102533pt;}
.y254{bottom:752.111507pt;}
.y1bb{bottom:755.328800pt;}
.y4e{bottom:761.000253pt;}
.y213{bottom:765.303533pt;}
.y1e6{bottom:765.307533pt;}
.y29{bottom:767.440133pt;}
.y236{bottom:774.102533pt;}
.y253{bottom:774.110507pt;}
.y4d{bottom:780.999853pt;}
.y6{bottom:787.169200pt;}
.y212{bottom:787.302533pt;}
.y1e5{bottom:787.306533pt;}
.y228{bottom:787.331865pt;}
.y28{bottom:795.305533pt;}
.y235{bottom:796.102533pt;}
.y1ba{bottom:806.774200pt;}
.y1e4{bottom:809.305533pt;}
.y202{bottom:809.310956pt;}
.y4c{bottom:813.999193pt;}
.y27{bottom:817.304533pt;}
.y234{bottom:818.102533pt;}
.y5{bottom:823.728800pt;}
.y211{bottom:826.528800pt;}
.y1b9{bottom:828.773200pt;}
.y1e3{bottom:831.304533pt;}
.y4b{bottom:833.998793pt;}
.y26{bottom:839.303533pt;}
.y233{bottom:840.102533pt;}
.y252{bottom:840.107507pt;}
.y1b8{bottom:850.772200pt;}
.y1e2{bottom:853.303533pt;}
.y4{bottom:853.728800pt;}
.y4a{bottom:853.998393pt;}
.y25{bottom:861.302533pt;}
.y263{bottom:872.103533pt;}
.y1b7{bottom:872.771200pt;}
.y49{bottom:873.997993pt;}
.y1e1{bottom:875.302533pt;}
.y201{bottom:875.307956pt;}
.y210{bottom:877.976200pt;}
.y232{bottom:879.328800pt;}
.y48{bottom:893.997593pt;}
.y262{bottom:894.105800pt;}
.y1b6{bottom:894.770200pt;}
.y24{bottom:897.862133pt;}
.y20f{bottom:899.975200pt;}
.y227{bottom:899.996077pt;}
.y3{bottom:907.728800pt;}
.y47{bottom:913.997193pt;}
.y1e0{bottom:914.528800pt;}
.y261{bottom:916.104800pt;}
.y1b5{bottom:916.769200pt;}
.y20e{bottom:921.974200pt;}
.y231{bottom:930.770200pt;}
.y46{bottom:933.996793pt;}
.y2{bottom:937.728800pt;}
.y260{bottom:938.103800pt;}
.y20d{bottom:943.973200pt;}
.y230{bottom:952.769200pt;}
.y1b4{bottom:957.648800pt;}
.y25f{bottom:965.970200pt;}
.y42{bottom:965.971795pt;}
.y23{bottom:965.972200pt;}
.y226{bottom:965.993077pt;}
.y45{bottom:966.996133pt;}
.y44{bottom:986.995733pt;}
.y41{bottom:987.970795pt;}
.y22{bottom:987.971200pt;}
.y1{bottom:993.648800pt;}
.y21{bottom:1009.970200pt;}
.y43{bottom:1029.249067pt;}
.y40{bottom:1031.968795pt;}
.y20{bottom:1031.969200pt;}
.y200{bottom:1031.970168pt;}
.y225{bottom:1031.990077pt;}
.y1f{bottom:1074.519694pt;}
.y1b{bottom:1080.225867pt;}
.h9{height:11.733399pt;}
.h10{height:31.992188pt;}
.h8{height:35.177836pt;}
.h7{height:37.030509pt;}
.hc{height:39.296089pt;}
.hb{height:39.556501pt;}
.h11{height:42.766285pt;}
.ha{height:42.916667pt;}
.h5{height:43.224598pt;}
.h4{height:43.511043pt;}
.h6{height:51.423688pt;}
.h3{height:59.335938pt;}
.hf{height:71.109375pt;}
.h2{height:71.203125pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:60.494667pt;}
.w6{width:66.426667pt;}
.w3{width:115.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:83.590533pt;}
.xc{left:87.590533pt;}
.x8{left:92.590533pt;}
.x7{left:96.000000pt;}
.x3{left:136.380285pt;}
.x2{left:145.590533pt;}
.x5{left:217.202000pt;}
.xb{left:249.000738pt;}
.x4{left:271.310400pt;}
.x10{left:381.611333pt;}
.xa{left:405.370944pt;}
.xd{left:410.704171pt;}
.xf{left:435.717004pt;}
.x9{left:561.741150pt;}
.x14{left:631.274089pt;}
.x6{left:637.206095pt;}
.xe{left:728.817809pt;}
.x13{left:732.816267pt;}
.x12{left:960.093018pt;}
.x11{left:966.025065pt;}
}




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