
    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_275dbe538815db9d9abba790.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_cc52e45e2299f696498002c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_76b61d967c117f91914bc406.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_2c9c3038354716f23fedbf98.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74f7d2f303416471ac50de68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3d1d3b65283ef62f6ce5458b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_3976aab525499113589e5376.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_1a6f467104f2d4c9ae29d114.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_6a31e06a5481fa2c9742f979.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909180;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_26ef829fdf6e265f8c096252.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694824;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_656747afcd18d925c7e4bd2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986328;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_61d769a371ff25ce905fe774.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.728027;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_7b920538691a65b2100e7f4b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_185c9e665e189183985454df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e60c4198e80b3ed351578d5e.woff2')format("woff");}.fff{font-family:fff;line-height:0.700195;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_f13dde96047f997d442a6c5d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.869629;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_7bd7fbd48df6b5440d985b09.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.691895;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_4def3bf948318e899adb08ce.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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_d365b4178545d3a692703938.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8a2a8daeca15db5bbab49be3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.674316;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_11a6512ffb1c1a978ff44a15.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_96582dc69a6e72a599a1b00b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.867676;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_5fd208c32c6f291e29082b3d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9d44fd7cb53f09b2ac4d581d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.740234;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_06eb728f87bc054e4672db79.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2657190be527a1b3a8d0458d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.722656;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_ac312616aea62efa6ac62073.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.692871;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_da57f0e29995d8bedb3c96c2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-18.720570px;}
.v9{vertical-align:-8.207987px;}
.v8{vertical-align:-2.602796px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.136248px;}
.v2{vertical-align:2.294996px;}
.v4{vertical-align:5.759991px;}
.v6{vertical-align:18.720570px;}
.v3{vertical-align:102.365836px;}
.v5{vertical-align:196.143286px;}
.ls1c{letter-spacing:-0.335999px;}
.ls17{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.205800px;}
.ls1f{letter-spacing:-0.011940px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.029064px;}
.ls6{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.077904px;}
.ls1d{letter-spacing:0.089280px;}
.ls19{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.143400px;}
.ls15{letter-spacing:0.159609px;}
.ls13{letter-spacing:0.206928px;}
.ls7{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.216288px;}
.ls1a{letter-spacing:0.323999px;}
.ls1b{letter-spacing:0.359999px;}
.lsd{letter-spacing:0.365039px;}
.ls9{letter-spacing:0.501119px;}
.ls1e{letter-spacing:30.471551px;}
.ls8{letter-spacing:42.045629px;}
.ls2{letter-spacing:57.548908px;}
.ls1{letter-spacing:57.599308px;}
.lsa{letter-spacing:66.050894px;}
.lsb{letter-spacing:70.334887px;}
.ls23{letter-spacing:84.959864px;}
.ls26{letter-spacing:93.275851px;}
.ls24{letter-spacing:93.371851px;}
.ls25{letter-spacing:93.422251px;}
.lsf{letter-spacing:111.549422px;}
.ls10{letter-spacing:111.599821px;}
.ls4{letter-spacing:111.734821px;}
.lse{letter-spacing:119.865408px;}
.lsc{letter-spacing:119.915808px;}
.ls21{letter-spacing:157.233348px;}
.ls20{letter-spacing:157.283748px;}
.ls22{letter-spacing:157.463748px;}
.ls18{letter-spacing:2232.140429px;}
.ls14{letter-spacing:3508.486706px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(20,20,20),0 0.015em rgb(20,20,20),0.015em 0 rgb(20,20,20),0 -0.015em  rgb(20,20,20);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(20,20,20);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-119.715360px;}
.ws1e{word-spacing:-64.367897px;}
.ws20{word-spacing:-52.883915px;}
.ws2{word-spacing:-52.778796px;}
.wse{word-spacing:-48.815922px;}
.ws4{word-spacing:-47.519924px;}
.ws3c{word-spacing:-43.446170px;}
.ws10{word-spacing:-39.378177px;}
.ws2f{word-spacing:-37.913699px;}
.wsb{word-spacing:-37.189092px;}
.wsc{word-spacing:-32.576492px;}
.ws3{word-spacing:-32.543948px;}
.ws1d{word-spacing:-30.238512px;}
.ws26{word-spacing:-30.063984px;}
.wsa{word-spacing:-27.206740px;}
.ws9{word-spacing:-27.174197px;}
.ws16{word-spacing:-26.686037px;}
.ws17{word-spacing:-24.440505px;}
.ws6{word-spacing:-24.407961px;}
.ws15{word-spacing:-23.138747px;}
.ws39{word-spacing:-19.070753px;}
.wsd{word-spacing:-18.149731px;}
.ws18{word-spacing:-17.573732px;}
.wsf{word-spacing:-16.613253px;}
.ws13{word-spacing:-16.304518px;}
.ws1c{word-spacing:-16.271974px;}
.ws1{word-spacing:-15.839975px;}
.ws21{word-spacing:-15.052008px;}
.ws14{word-spacing:-15.011976px;}
.ws19{word-spacing:-14.970216px;}
.ws1f{word-spacing:-13.410699px;}
.ws2e{word-spacing:-12.203980px;}
.ws3b{word-spacing:-11.609261px;}
.ws1b{word-spacing:-10.902223px;}
.ws1a{word-spacing:-9.437745px;}
.ws22{word-spacing:-1.080069px;}
.ws3d{word-spacing:-0.859535px;}
.ws2c{word-spacing:-0.611927px;}
.ws32{word-spacing:-0.539978px;}
.ws23{word-spacing:-0.372801px;}
.ws31{word-spacing:-0.359845px;}
.ws29{word-spacing:-0.123962px;}
.ws2b{word-spacing:-0.072036px;}
.ws0{word-spacing:0.000000px;}
.ws35{word-spacing:0.009738px;}
.ws5{word-spacing:0.069753px;}
.ws30{word-spacing:0.267806px;}
.ws28{word-spacing:0.403376px;}
.ws2d{word-spacing:0.455097px;}
.ws25{word-spacing:0.494219px;}
.ws37{word-spacing:0.511667px;}
.ws38{word-spacing:0.806589px;}
.ws24{word-spacing:0.861695px;}
.ws36{word-spacing:1.034407px;}
.ws33{word-spacing:1.263734px;}
.ws34{word-spacing:1.371604px;}
.ws2a{word-spacing:1.698837px;}
.ws27{word-spacing:100.979274px;}
.ws3a{word-spacing:101.694983px;}
.ws7{word-spacing:707.938690px;}
.ws11{word-spacing:733.651872px;}
.ws12{word-spacing:1158.771712px;}
._f{margin-left:-5451.268019px;}
._1e{margin-left:-2257.765829px;}
._34{margin-left:-21.884295px;}
._27{margin-left:-18.719970px;}
._11{margin-left:-16.858103px;}
._b{margin-left:-14.079861px;}
._9{margin-left:-10.771027px;}
._10{margin-left:-9.071985px;}
._7{margin-left:-7.775988px;}
._2e{margin-left:-6.491237px;}
._e{margin-left:-4.893746px;}
._8{margin-left:-3.597150px;}
._4{margin-left:-2.186503px;}
._1{margin-left:-1.148202px;}
._3{width:1.004202px;}
._a{width:2.394559px;}
._1a{width:3.664822px;}
._33{width:5.382515px;}
._22{width:12.427180px;}
._29{width:13.631117px;}
._1c{width:15.417859px;}
._1b{width:19.475094px;}
._2b{width:23.127715px;}
._31{width:25.301291px;}
._17{width:28.583101px;}
._32{width:30.238820px;}
._2c{width:31.262908px;}
._28{width:32.796888px;}
._2f{width:39.397268px;}
._2{width:41.096650px;}
._30{width:47.667437px;}
._13{width:50.948622px;}
._2a{width:52.672940px;}
._0{width:54.072806px;}
._16{width:83.548666px;}
._15{width:102.523047px;}
._1f{width:127.563460px;}
._21{width:129.502053px;}
._12{width:157.699774px;}
._20{width:175.736632px;}
._23{width:234.819413px;}
._24{width:238.315635px;}
._18{width:241.740813px;}
._1d{width:258.699793px;}
._26{width:276.342338px;}
._25{width:290.167150px;}
._2d{width:371.831405px;}
._14{width:654.540153px;}
._c{width:930.101689px;}
._d{width:1573.414078px;}
._5{width:1687.412735px;}
._19{width:1987.664820px;}
._6{width:2001.700478px;}
.fc7{color:rgb(11,28,46);}
.fc9{color:rgb(54,91,157);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(11,27,46);}
.fc3{color:transparent;}
.fca{color:rgb(90,138,57);}
.fc2{color:rgb(0,152,58);}
.fcc{color:rgb(254,68,82);}
.fcb{color:rgb(128,128,128);}
.fc8{color:rgb(20,20,20);}
.fc6{color:rgb(173,186,199);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs21{font-size:30.239952px;}
.fs22{font-size:35.999942px;}
.fs1b{font-size:41.759933px;}
.fs1c{font-size:48.239923px;}
.fs1d{font-size:48.383923px;}
.fs15{font-size:53.999914px;}
.fs24{font-size:54.143913px;}
.fs12{font-size:59.759904px;}
.fs20{font-size:59.903904px;}
.fse{font-size:66.239894px;}
.fsf{font-size:66.383894px;}
.fs4{font-size:71.999885px;}
.fs14{font-size:72.143885px;}
.fs11{font-size:77.759876px;}
.fs19{font-size:79.919872px;}
.fs28{font-size:84.239865px;}
.fs27{font-size:84.383865px;}
.fs18{font-size:89.999856px;}
.fs16{font-size:102.239836px;}
.fs17{font-size:102.383836px;}
.fs9{font-size:107.999827px;}
.fsa{font-size:108.143827px;}
.fs1a{font-size:118.079811px;}
.fsb{font-size:120.239808px;}
.fsc{font-size:120.383807px;}
.fs2{font-size:143.999770px;}
.fs3{font-size:144.143769px;}
.fs26{font-size:151.787774px;}
.fs25{font-size:151.939573px;}
.fs10{font-size:156.239750px;}
.fs5{font-size:167.759732px;}
.fs7{font-size:167.903731px;}
.fs13{font-size:174.239721px;}
.fs29{font-size:192.239692px;}
.fs1{font-size:192.383692px;}
.fs23{font-size:210.383663px;}
.fs8{font-size:215.999654px;}
.fsd{font-size:216.143654px;}
.fs1e{font-size:233.999626px;}
.fs0{font-size:239.759616px;}
.fs6{font-size:239.903616px;}
.fs1f{font-size:431.999309px;}
.y0{bottom:0.000000px;}
.yf2{bottom:2.233121px;}
.y7d{bottom:3.133120px;}
.ydb{bottom:12.886854px;}
.yda{bottom:13.033104px;}
.y8{bottom:13.786853px;}
.y7{bottom:13.933103px;}
.y7c{bottom:24.733085px;}
.y6{bottom:32.292998px;}
.y13d{bottom:45.216528px;}
.y64{bottom:48.382423px;}
.yab{bottom:49.066721px;}
.y6e{bottom:50.400482px;}
.ya0{bottom:50.472969px;}
.yf1{bottom:50.651919px;}
.y144{bottom:52.416966px;}
.y104{bottom:55.726861px;}
.y13c{bottom:57.456508px;}
.y10f{bottom:57.706708px;}
.ycb{bottom:61.272952px;}
.y95{bottom:62.459900px;}
.y5f{bottom:64.546397px;}
.ya5{bottom:65.052946px;}
.y53{bottom:68.579890px;}
.y11b{bottom:68.722690px;}
.ye4{bottom:69.766688px;}
.y103{bottom:71.926385px;}
.yd0{bottom:73.906682px;}
.y10e{bottom:76.066678px;}
.y3b{bottom:76.139878px;}
.y11c{bottom:76.966827px;}
.y9a{bottom:78.766674px;}
.y76{bottom:80.565434px;}
.y13e{bottom:82.692918px;}
.ye0{bottom:83.016917px;}
.y82{bottom:83.626666px;}
.y13a{bottom:84.600315px;}
.y2f{bottom:87.406210px;}
.ycf{bottom:88.057359px;}
.y102{bottom:88.126359px;}
.y84{bottom:88.126659px;}
.ye3{bottom:89.566657px;}
.y101{bottom:91.153054px;}
.y1e{bottom:95.616447px;}
.y143{bottom:95.616897px;}
.y15{bottom:96.623245px;}
.yf8{bottom:97.379844px;}
.y74{bottom:99.861965px;}
.y22{bottom:100.043240px;}
.y75{bottom:100.295090px;}
.y70{bottom:101.592887px;}
.y71{bottom:101.663237px;}
.yd9{bottom:103.032885px;}
.yd1{bottom:103.642334px;}
.yd2{bottom:104.256433px;}
.y52{bottom:104.399833px;}
.y83{bottom:106.126630px;}
.y81{bottom:107.026779px;}
.ye2{bottom:109.366625px;}
.y46{bottom:110.376423px;}
.yf7{bottom:113.579818px;}
.y12b{bottom:113.939818px;}
.y11a{bottom:119.122609px;}
.yd8{bottom:119.266759px;}
.y5e{bottom:119.520409px;}
.y2e{bottom:119.806158px;}
.ydf{bottom:126.216848px;}
.y139{bottom:127.836845px;}
.ye1{bottom:129.166593px;}
.yf6{bottom:129.779792px;}
.y80{bottom:130.426741px;}
.yee{bottom:132.875337px;}
.y14{bottom:135.503183px;}
.y142{bottom:138.853428px;}
.y57{bottom:140.579775px;}
.y5{bottom:140.686125px;}
.y100{bottom:141.586723px;}
.y45{bottom:148.176363px;}
.y1d{bottom:149.436361px;}
.y12a{bottom:151.559758px;}
.yd7{bottom:151.663257px;}
.y2d{bottom:152.248256px;}
.y9e{bottom:153.179755px;}
.yc6{bottom:153.869454px;}
.y134{bottom:154.619753px;}
.yaa{bottom:157.891247px;}
.y3a{bottom:159.691244px;}
.yd6{bottom:167.863231px;}
.yde{bottom:169.411229px;}
.y119{bottom:169.559129px;}
.y138{bottom:171.031226px;}
.ybc{bottom:174.779720px;}
.y51{bottom:176.579717px;}
.yed{bottom:181.469710px;}
.y141{bottom:182.056209px;}
.yc5{bottom:183.060307px;}
.yd5{bottom:184.063205px;}
.y2c{bottom:184.648205px;}
.y13{bottom:189.359697px;}
.yff{bottom:191.983793px;}
.y39{bottom:192.091193px;}
.ybb{bottom:192.779692px;}
.y129{bottom:193.169991px;}
.y93{bottom:194.474989px;}
.y92{bottom:194.476189px;}
.y4{bottom:194.548189px;}
.ya9{bottom:196.051186px;}
.y94{bottom:199.876180px;}
.y67{bottom:203.219675px;}
.y6f{bottom:203.220237px;}
.y1c{bottom:203.476174px;}
.yba{bottom:210.779663px;}
.yc4{bottom:212.220260px;}
.y50{bottom:212.611160px;}
.ydd{bottom:212.656160px;}
.y137{bottom:214.231157px;}
.ya8{bottom:215.851155px;}
.y10b{bottom:215.924055px;}
.y118{bottom:219.959048px;}
.y7f{bottom:221.143146px;}
.y38{bottom:224.491141px;}
.y140{bottom:225.256140px;}
.y44{bottom:226.156138px;}
.y12{bottom:228.239635px;}
.yb9{bottom:228.811134px;}
.y128{bottom:229.169933px;}
.y3{bottom:233.428127px;}
.y8f{bottom:233.536126px;}
.yc3{bottom:241.380214px;}
.yfe{bottom:242.383712px;}
.y12d{bottom:242.999611px;}
.y5d{bottom:243.000211px;}
.yb8{bottom:246.811105px;}
.y4f{bottom:248.611102px;}
.y43{bottom:252.076097px;}
.ya7{bottom:255.811091px;}
.ydc{bottom:255.856091px;}
.y91{bottom:255.883091px;}
.y136{bottom:257.476088px;}
.y8e{bottom:261.283082px;}
.yb7{bottom:264.811076px;}
.y127{bottom:265.169876px;}
.y10a{bottom:266.368974px;}
.y13f{bottom:268.456070px;}
.y117{bottom:270.389867px;}
.yc2{bottom:270.540167px;}
.y7e{bottom:272.263064px;}
.y63{bottom:277.994555px;}
.y6b{bottom:278.460117px;}
.y11{bottom:282.060149px;}
.yb6{bottom:282.811048px;}
.y56{bottom:284.611045px;}
.y5c{bottom:286.231042px;}
.y90{bottom:286.483042px;}
.y42{bottom:287.536040px;}
.y2{bottom:291.163034px;}
.y8d{bottom:291.883033px;}
.yf0{bottom:292.423032px;}
.yfd{bottom:292.828631px;}
.y20{bottom:295.411027px;}
.yc1{bottom:299.520121px;}
.yb5{bottom:300.811019px;}
.y126{bottom:301.169818px;}
.y86{bottom:302.039517px;}
.y9f{bottom:306.796009px;}
.ya6{bottom:314.895996px;}
.y109{bottom:316.768893px;}
.y6d{bottom:317.879491px;}
.yb4{bottom:318.810990px;}
.y4e{bottom:320.610987px;}
.y116{bottom:320.789787px;}
.y10{bottom:320.970986px;}
.y73{bottom:325.829479px;}
.yc0{bottom:328.890974px;}
.y34{bottom:332.850967px;}
.y87{bottom:333.282967px;}
.y1f{bottom:334.290965px;}
.yb3{bottom:336.810961px;}
.y125{bottom:337.214760px;}
.yef{bottom:341.022954px;}
.yd4{bottom:341.787953px;}
.y79{bottom:341.968553px;}
.yfc{bottom:343.228551px;}
.y1{bottom:346.242946px;}
.y85{bottom:354.239433px;}
.yb2{bottom:354.810932px;}
.y55{bottom:356.655929px;}
.ybf{bottom:358.050927px;}
.y131{bottom:363.990918px;}
.y108{bottom:367.168813px;}
.y9c{bottom:368.562910px;}
.y115{bottom:371.189706px;}
.y41{bottom:371.982905px;}
.yb1{bottom:372.810904px;}
.y124{bottom:373.214703px;}
.yf{bottom:376.590897px;}
.y12c{bottom:385.482883px;}
.ybe{bottom:387.210880px;}
.y12e{bottom:390.675875px;}
.yb0{bottom:390.855875px;}
.y4d{bottom:392.655872px;}
.yfb{bottom:393.628470px;}
.yad{bottom:395.819367px;}
.yd3{bottom:406.407850px;}
.y78{bottom:406.799349px;}
.y40{bottom:408.342847px;}
.yaf{bottom:408.855846px;}
.y123{bottom:409.214645px;}
.ybd{bottom:416.370834px;}
.y107{bottom:417.599632px;}
.y8c{bottom:421.559326px;}
.y114{bottom:421.634625px;}
.y6c{bottom:422.383987px;}
.yae{bottom:426.855817px;}
.yea{bottom:427.530816px;}
.y4c{bottom:428.655814px;}
.y5b{bottom:429.735812px;}
.y66{bottom:430.347811px;}
.y1a{bottom:431.279910px;}
.y132{bottom:434.802804px;}
.y8b{bottom:437.759300px;}
.y9d{bottom:439.275797px;}
.yfa{bottom:444.059290px;}
.y122{bottom:445.214588px;}
.y3f{bottom:446.142786px;}
.yca{bottom:449.355781px;}
.ya4{bottom:451.470778px;}
.y133{bottom:459.179265px;}
.ye9{bottom:459.975764px;}
.y9b{bottom:467.490752px;}
.yd{bottom:467.670752px;}
.y106{bottom:467.999551px;}
.y8a{bottom:470.159248px;}
.y19{bottom:470.190748px;}
.yce{bottom:471.135746px;}
.y146{bottom:471.630745px;}
.y113{bottom:472.034545px;}
.y5a{bottom:472.935743px;}
.y26{bottom:477.899235px;}
.y121{bottom:481.242730px;}
.y89{bottom:486.359222px;}
.yc9{bottom:492.555712px;}
.yf9{bottom:494.459209px;}
.ya3{bottom:494.670709px;}
.y2b{bottom:498.207703px;}
.y4b{bottom:500.682699px;}
.y62{bottom:501.987697px;}
.yc{bottom:502.230696px;}
.y88{bottom:502.559196px;}
.y68{bottom:502.950695px;}
.y130{bottom:503.459194px;}
.y25{bottom:510.299184px;}
.yc8{bottom:514.155677px;}
.ycd{bottom:514.335677px;}
.ya2{bottom:516.270674px;}
.y120{bottom:517.242672px;}
.y105{bottom:518.399471px;}
.y145{bottom:522.210664px;}
.y112{bottom:522.434464px;}
.y18{bottom:524.010662px;}
.y2a{bottom:530.607651px;}
.y33{bottom:533.415647px;}
.y4a{bottom:536.682641px;}
.y72{bottom:536.835041px;}
.y77{bottom:536.835641px;}
.y6a{bottom:539.459137px;}
.y98{bottom:540.930635px;}
.y24{bottom:542.699732px;}
.ya1{bottom:549.687620px;}
.yb{bottom:551.910617px;}
.y11f{bottom:554.862612px;}
.y7b{bottom:557.535008px;}
.y59{bottom:559.334405px;}
.y29{bottom:563.008199px;}
.ycc{bottom:565.199096px;}
.y32{bottom:565.815595px;}
.y13b{bottom:566.427594px;}
.y3e{bottom:566.787593px;}
.y97{bottom:568.695590px;}
.y37{bottom:569.802588px;}
.ye8{bottom:570.598487px;}
.y54{bottom:572.682584px;}
.y111{bottom:572.862583px;}
.y23{bottom:575.130580px;}
.y17{bottom:577.830575px;}
.yac{bottom:578.055575px;}
.yf5{bottom:580.575571px;}
.ya{bottom:586.470562px;}
.y7a{bottom:589.963156px;}
.y28{bottom:595.439047px;}
.y10d{bottom:595.470547px;}
.y3d{bottom:595.587547px;}
.y61{bottom:596.054346px;}
.y11e{bottom:596.487546px;}
.y31{bottom:598.215543px;}
.y36{bottom:602.202536px;}
.y58{bottom:602.562536px;}
.yec{bottom:602.967535px;}
.y96{bottom:603.255535px;}
.y49{bottom:608.682526px;}
.ye7{bottom:608.758426px;}
.y135{bottom:611.787521px;}
.y99{bottom:615.855515px;}
.y110{bottom:623.262503px;}
.yf4{bottom:625.755499px;}
.yc7{bottom:628.049295px;}
.y30{bottom:630.642491px;}
.y3c{bottom:633.387487px;}
.y16{bottom:633.495486px;}
.y11d{bottom:634.107485px;}
.y35{bottom:634.602485px;}
.yeb{bottom:635.367483px;}
.y9{bottom:637.455480px;}
.y65{bottom:638.202479px;}
.y69{bottom:638.203679px;}
.y60{bottom:639.282477px;}
.y10c{bottom:640.695475px;}
.y48{bottom:644.682469px;}
.ye6{bottom:646.949265px;}
.y12f{bottom:651.990457px;}
.ye5{bottom:719.967348px;}
.y47{bottom:721.587345px;}
.y1b{bottom:721.587945px;}
.ye{bottom:721.588845px;}
.y21{bottom:723.090343px;}
.y27{bottom:724.647341px;}
.yf3{bottom:728.202335px;}
.h4c{height:26.226521px;}
.h39{height:29.036204px;}
.h43{height:30.422764px;}
.h6b{height:30.944110px;}
.h3a{height:33.541821px;}
.h3f{height:35.143538px;}
.h3c{height:35.248444px;}
.h5b{height:38.759704px;}
.h5f{height:38.761504px;}
.h2f{height:39.313414px;}
.h4e{height:39.418249px;}
.h4a{height:40.750847px;}
.h42{height:42.894072px;}
.h2b{height:43.506844px;}
.h45{height:44.440593px;}
.h46{height:44.547679px;}
.h38{height:46.057426px;}
.h53{height:47.545236px;}
.h40{height:49.259452px;}
.h22{height:49.809295px;}
.h21{height:49.917576px;}
.h36{height:50.062420px;}
.h24{height:50.090545px;}
.h3b{height:50.162545px;}
.h1f{height:50.405544px;}
.h3e{height:50.413982px;}
.h4b{height:50.514810px;}
.h1d{height:50.945543px;}
.h4f{height:51.679605px;}
.h63{height:51.782964px;}
.h23{height:51.823042px;}
.h20{height:52.104292px;}
.h6{height:52.415916px;}
.h27{height:53.000915px;}
.h3d{height:53.542883px;}
.h37{height:54.067413px;}
.h2e{height:55.126529px;}
.h34{height:55.257099px;}
.h2a{height:57.826314px;}
.h68{height:58.673156px;}
.h32{height:66.928604px;}
.h69{height:69.311420px;}
.h33{height:71.587854px;}
.h10{height:75.093630px;}
.hf{height:75.193755px;}
.h30{height:76.030894px;}
.h31{height:76.137980px;}
.h57{height:77.519407px;}
.h48{height:78.623874px;}
.h56{height:78.679562px;}
.h12{height:78.728706px;}
.h55{height:78.784468px;}
.hd{height:80.314325px;}
.h11{height:80.421410px;}
.h35{height:80.718621px;}
.h47{height:80.999870px;}
.h1a{height:81.105339px;}
.h49{height:81.107870px;}
.h1c{height:81.213479px;}
.h67{height:86.304940px;}
.h66{height:87.537868px;}
.h65{height:87.642704px;}
.h14{height:89.416615px;}
.h16{height:89.523701px;}
.h61{height:99.773278px;}
.h50{height:99.873051px;}
.h18{height:100.124840px;}
.h17{height:100.224965px;}
.h51{height:103.359210px;}
.h52{height:103.462569px;}
.h4{height:104.831832px;}
.h64{height:104.835770px;}
.h5{height:104.936664px;}
.h6a{height:104.940606px;}
.h8{height:107.085766px;}
.h9{height:107.192852px;}
.h60{height:109.690383px;}
.h5a{height:109.800082px;}
.h29{height:117.332390px;}
.h28{height:117.484968px;}
.h59{height:120.413479px;}
.h5e{height:120.516838px;}
.h5c{height:122.133672px;}
.h13{height:122.233916px;}
.h5d{height:122.238508px;}
.h7{height:124.754918px;}
.hb{height:124.862003px;}
.h2c{height:129.573777px;}
.h3{height:136.977189px;}
.h6c{height:137.984545px;}
.he{height:144.287769px;}
.h1e{height:154.616940px;}
.h1b{height:154.720018px;}
.h6d{height:155.038814px;}
.h62{height:155.142174px;}
.h4d{height:156.452304px;}
.hc{height:157.247748px;}
.h26{height:160.628649px;}
.h25{height:160.735735px;}
.h19{height:161.999741px;}
.h41{height:162.702865px;}
.h2{height:170.708847px;}
.h58{height:172.093084px;}
.h54{height:172.196443px;}
.ha{height:174.649833px;}
.h15{height:179.927712px;}
.h2d{height:209.451602px;}
.h44{height:299.319834px;}
.h0{height:809.999850px;}
.h1{height:810.000000px;}
.w0{width:1439.999850px;}
.w1{width:1440.000000px;}
.x0{left:0.000000px;}
.x86{left:17.893021px;}
.x3d{left:23.866762px;}
.x54{left:25.993008px;}
.x56{left:29.261803px;}
.x73{left:31.896429px;}
.x25{left:35.496543px;}
.x53{left:36.826741px;}
.x9{left:38.593438px;}
.x64{left:39.923336px;}
.xa{left:41.653133px;}
.x66{left:42.766732px;}
.x67{left:46.512976px;}
.x70{left:50.075920px;}
.x6a{left:53.567914px;}
.x7b{left:56.159910px;}
.x2b{left:57.886707px;}
.xb{left:68.652940px;}
.x26{left:75.996928px;}
.x43{left:84.816464px;}
.xc{left:95.652897px;}
.x7e{left:102.526636px;}
.x6{left:109.799824px;}
.x3b{left:119.159809px;}
.x24{left:122.686604px;}
.x30{left:125.676399px;}
.x12{left:128.302295px;}
.x10{left:132.803188px;}
.x32{left:135.826283px;}
.x13{left:140.722275px;}
.x7c{left:144.036370px;}
.x11{left:151.888257px;}
.x76{left:154.111253px;}
.x1{left:155.519751px;}
.x7d{left:164.190787px;}
.x3{left:167.759732px;}
.x82{left:174.091221px;}
.x5d{left:175.648219px;}
.x41{left:178.168215px;}
.x1c{left:189.256197px;}
.x7f{left:191.128194px;}
.x77{left:197.491184px;}
.x57{left:201.856177px;}
.x6d{left:211.108162px;}
.x3e{left:226.831137px;}
.x2c{left:239.069917px;}
.x33{left:241.199614px;}
.x31{left:246.568105px;}
.x2{left:248.399603px;}
.x48{left:285.839543px;}
.x5b{left:315.327995px;}
.x42{left:317.550992px;}
.x5c{left:326.910977px;}
.x47{left:348.915942px;}
.x89{left:353.699434px;}
.x58{left:357.299428px;}
.x34{left:361.362922px;}
.x80{left:367.950911px;}
.x75{left:374.655901px;}
.x5a{left:386.922881px;}
.x88{left:396.327866px;}
.x5e{left:402.195406px;}
.x3f{left:426.342818px;}
.x16{left:451.047778px;}
.x6e{left:456.659269px;}
.x40{left:474.042742px;}
.x17{left:489.567717px;}
.x6f{left:500.039200px;}
.x3c{left:514.259777px;}
.x15{left:529.347653px;}
.x14{left:549.687620px;}
.x2a{left:559.408205px;}
.x27{left:574.919080px;}
.x83{left:584.850564px;}
.x29{left:590.323155px;}
.x44{left:612.975519px;}
.x28{left:615.419015px;}
.x8{left:616.890513px;}
.x63{left:619.049010px;}
.x84{left:625.350499px;}
.x4d{left:630.075492px;}
.x81{left:632.338988px;}
.x4c{left:635.907483px;}
.xf{left:650.622459px;}
.x21{left:655.230452px;}
.xe{left:665.742435px;}
.x20{left:687.270400px;}
.x22{left:697.170385px;}
.x68{left:707.578868px;}
.x69{left:718.770350px;}
.xd{left:733.422327px;}
.x2d{left:754.168343px;}
.x2e{left:755.999285px;}
.x60{left:759.269835px;}
.x2f{left:761.610221px;}
.x85{left:778.035255px;}
.x4b{left:814.602197px;}
.x74{left:845.850147px;}
.x87{left:861.870121px;}
.x1a{left:872.638604px;}
.x45{left:877.035097px;}
.x4{left:878.295095px;}
.x5f{left:880.409641px;}
.x36{left:892.722072px;}
.x35{left:899.128561px;}
.x38{left:907.918547px;}
.x1b{left:909.718544px;}
.x19{left:931.318510px;}
.x65{left:952.346976px;}
.x59{left:960.478463px;}
.x4f{left:961.661961px;}
.x18{left:969.838448px;}
.x79{left:988.409919px;}
.x39{left:1002.089297px;}
.x61{left:1006.166890px;}
.x52{left:1013.038379px;}
.x55{left:1031.186850px;}
.x7a{left:1042.454832px;}
.x71{left:1047.883323px;}
.x51{left:1059.298305px;}
.x50{left:1061.669801px;}
.x72{left:1101.883237px;}
.x1d{left:1103.321735px;}
.x37{left:1135.721683px;}
.x46{left:1141.121674px;}
.x4e{left:1146.386666px;}
.x3a{left:1151.098158px;}
.x5{left:1152.643156px;}
.x1f{left:1166.501634px;}
.x1e{left:1176.221618px;}
.x23{left:1181.698109px;}
.x4a{left:1187.354600px;}
.x49{left:1193.654590px;}
.x6b{left:1195.558087px;}
.x78{left:1233.281527px;}
.x7{left:1312.994399px;}
.x62{left:1319.141389px;}
.x6c{left:1346.906345px;}
@media print{
.v7{vertical-align:-16.640507pt;}
.v9{vertical-align:-7.295988pt;}
.v8{vertical-align:-2.313596pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.009998pt;}
.v2{vertical-align:2.039997pt;}
.v4{vertical-align:5.119992pt;}
.v6{vertical-align:16.640507pt;}
.v3{vertical-align:90.991854pt;}
.v5{vertical-align:174.349588pt;}
.ls1c{letter-spacing:-0.298666pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.182933pt;}
.ls1f{letter-spacing:-0.010613pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.025835pt;}
.ls6{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.069248pt;}
.ls1d{letter-spacing:0.079360pt;}
.ls19{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.127466pt;}
.ls15{letter-spacing:0.141875pt;}
.ls13{letter-spacing:0.183936pt;}
.ls7{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.192256pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.319999pt;}
.lsd{letter-spacing:0.324479pt;}
.ls9{letter-spacing:0.445439pt;}
.ls1e{letter-spacing:27.085823pt;}
.ls8{letter-spacing:37.373892pt;}
.ls2{letter-spacing:51.154585pt;}
.ls1{letter-spacing:51.199385pt;}
.lsa{letter-spacing:58.711906pt;}
.lsb{letter-spacing:62.519900pt;}
.ls23{letter-spacing:75.519879pt;}
.ls26{letter-spacing:82.911867pt;}
.ls24{letter-spacing:82.997201pt;}
.ls25{letter-spacing:83.042000pt;}
.lsf{letter-spacing:99.155041pt;}
.ls10{letter-spacing:99.199841pt;}
.ls4{letter-spacing:99.319841pt;}
.lse{letter-spacing:106.547030pt;}
.lsc{letter-spacing:106.591829pt;}
.ls21{letter-spacing:139.762976pt;}
.ls20{letter-spacing:139.807776pt;}
.ls22{letter-spacing:139.967776pt;}
.ls18{letter-spacing:1984.124825pt;}
.ls14{letter-spacing:3118.654850pt;}
.ws8{word-spacing:-106.413654pt;}
.ws1e{word-spacing:-57.215908pt;}
.ws20{word-spacing:-47.007925pt;}
.ws2{word-spacing:-46.914485pt;}
.wse{word-spacing:-43.391931pt;}
.ws4{word-spacing:-42.239932pt;}
.ws3c{word-spacing:-38.618818pt;}
.ws10{word-spacing:-35.002824pt;}
.ws2f{word-spacing:-33.701066pt;}
.wsb{word-spacing:-33.056971pt;}
.wsc{word-spacing:-28.956882pt;}
.ws3{word-spacing:-28.927954pt;}
.ws1d{word-spacing:-26.878677pt;}
.ws26{word-spacing:-26.723541pt;}
.wsa{word-spacing:-24.183769pt;}
.ws9{word-spacing:-24.154841pt;}
.ws16{word-spacing:-23.720922pt;}
.ws17{word-spacing:-21.724893pt;}
.ws6{word-spacing:-21.695965pt;}
.ws15{word-spacing:-20.567775pt;}
.ws39{word-spacing:-16.951781pt;}
.wsd{word-spacing:-16.133094pt;}
.ws18{word-spacing:-15.621095pt;}
.wsf{word-spacing:-14.767336pt;}
.ws13{word-spacing:-14.492905pt;}
.ws1c{word-spacing:-14.463977pt;}
.ws1{word-spacing:-14.079977pt;}
.ws21{word-spacing:-13.379563pt;}
.ws14{word-spacing:-13.343979pt;}
.ws19{word-spacing:-13.306859pt;}
.ws1f{word-spacing:-11.920621pt;}
.ws2e{word-spacing:-10.847983pt;}
.ws3b{word-spacing:-10.319343pt;}
.ws1b{word-spacing:-9.690864pt;}
.ws1a{word-spacing:-8.389107pt;}
.ws22{word-spacing:-0.960062pt;}
.ws3d{word-spacing:-0.764031pt;}
.ws2c{word-spacing:-0.543935pt;}
.ws32{word-spacing:-0.479981pt;}
.ws23{word-spacing:-0.331378pt;}
.ws31{word-spacing:-0.319862pt;}
.ws29{word-spacing:-0.110188pt;}
.ws2b{word-spacing:-0.064032pt;}
.ws0{word-spacing:0.000000pt;}
.ws35{word-spacing:0.008656pt;}
.ws5{word-spacing:0.062003pt;}
.ws30{word-spacing:0.238050pt;}
.ws28{word-spacing:0.358557pt;}
.ws2d{word-spacing:0.404531pt;}
.ws25{word-spacing:0.439306pt;}
.ws37{word-spacing:0.454815pt;}
.ws38{word-spacing:0.716968pt;}
.ws24{word-spacing:0.765951pt;}
.ws36{word-spacing:0.919472pt;}
.ws33{word-spacing:1.123319pt;}
.ws34{word-spacing:1.219203pt;}
.ws2a{word-spacing:1.510078pt;}
.ws27{word-spacing:89.759355pt;}
.ws3a{word-spacing:90.395540pt;}
.ws7{word-spacing:629.278836pt;}
.ws11{word-spacing:652.134997pt;}
.ws12{word-spacing:1030.019299pt;}
._f{margin-left:-4845.571573pt;}
._1e{margin-left:-2006.902959pt;}
._34{margin-left:-19.452707pt;}
._27{margin-left:-16.639973pt;}
._11{margin-left:-14.984980pt;}
._b{margin-left:-12.515432pt;}
._9{margin-left:-9.574246pt;}
._10{margin-left:-8.063987pt;}
._7{margin-left:-6.911989pt;}
._2e{margin-left:-5.769988pt;}
._e{margin-left:-4.349996pt;}
._8{margin-left:-3.197467pt;}
._4{margin-left:-1.943558pt;}
._1{margin-left:-1.020624pt;}
._3{width:0.892624pt;}
._a{width:2.128497pt;}
._1a{width:3.257619pt;}
._33{width:4.784457pt;}
._22{width:11.046382pt;}
._29{width:12.116548pt;}
._1c{width:13.704763pt;}
._1b{width:17.311195pt;}
._2b{width:20.557968pt;}
._31{width:22.490037pt;}
._17{width:25.407201pt;}
._32{width:26.878951pt;}
._2c{width:27.789252pt;}
._28{width:29.152789pt;}
._2f{width:35.019794pt;}
._2{width:36.530356pt;}
._30{width:42.371055pt;}
._13{width:45.287664pt;}
._2a{width:46.820391pt;}
._0{width:48.064716pt;}
._16{width:74.265481pt;}
._15{width:91.131597pt;}
._1f{width:113.389742pt;}
._21{width:115.112936pt;}
._12{width:140.177577pt;}
._20{width:156.210340pt;}
._23{width:208.728367pt;}
._24{width:211.836120pt;}
._18{width:214.880723pt;}
._1d{width:229.955371pt;}
._26{width:245.637634pt;}
._25{width:257.926355pt;}
._2d{width:330.516805pt;}
._14{width:581.813469pt;}
._c{width:826.757057pt;}
._d{width:1398.590292pt;}
._5{width:1499.922431pt;}
._19{width:1766.813173pt;}
._6{width:1779.289314pt;}
.fs21{font-size:26.879957pt;}
.fs22{font-size:31.999949pt;}
.fs1b{font-size:37.119941pt;}
.fs1c{font-size:42.879931pt;}
.fs1d{font-size:43.007931pt;}
.fs15{font-size:47.999923pt;}
.fs24{font-size:48.127923pt;}
.fs12{font-size:53.119915pt;}
.fs20{font-size:53.247915pt;}
.fse{font-size:58.879906pt;}
.fsf{font-size:59.007906pt;}
.fs4{font-size:63.999898pt;}
.fs14{font-size:64.127897pt;}
.fs11{font-size:69.119889pt;}
.fs19{font-size:71.039886pt;}
.fs28{font-size:74.879880pt;}
.fs27{font-size:75.007880pt;}
.fs18{font-size:79.999872pt;}
.fs16{font-size:90.879855pt;}
.fs17{font-size:91.007854pt;}
.fs9{font-size:95.999846pt;}
.fsa{font-size:96.127846pt;}
.fs1a{font-size:104.959832pt;}
.fsb{font-size:106.879829pt;}
.fsc{font-size:107.007829pt;}
.fs2{font-size:127.999795pt;}
.fs3{font-size:128.127795pt;}
.fs26{font-size:134.922465pt;}
.fs25{font-size:135.057398pt;}
.fs10{font-size:138.879778pt;}
.fs5{font-size:149.119761pt;}
.fs7{font-size:149.247761pt;}
.fs13{font-size:154.879752pt;}
.fs29{font-size:170.879727pt;}
.fs1{font-size:171.007726pt;}
.fs23{font-size:187.007701pt;}
.fs8{font-size:191.999693pt;}
.fsd{font-size:192.127693pt;}
.fs1e{font-size:207.999667pt;}
.fs0{font-size:213.119659pt;}
.fs6{font-size:213.247659pt;}
.fs1f{font-size:383.999386pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:1.984997pt;}
.y7d{bottom:2.784996pt;}
.ydb{bottom:11.454982pt;}
.yda{bottom:11.584981pt;}
.y8{bottom:12.254980pt;}
.y7{bottom:12.384980pt;}
.y7c{bottom:21.984965pt;}
.y6{bottom:28.704887pt;}
.y13d{bottom:40.192469pt;}
.y64{bottom:43.006598pt;}
.yab{bottom:43.614864pt;}
.y6e{bottom:44.800428pt;}
.ya0{bottom:44.864862pt;}
.yf1{bottom:45.023928pt;}
.y144{bottom:46.592859pt;}
.y104{bottom:49.534987pt;}
.y13c{bottom:51.072452pt;}
.y10f{bottom:51.294851pt;}
.ycb{bottom:54.464846pt;}
.y95{bottom:55.519911pt;}
.y5f{bottom:57.374575pt;}
.ya5{bottom:57.824841pt;}
.y53{bottom:60.959902pt;}
.y11b{bottom:61.086836pt;}
.ye4{bottom:62.014834pt;}
.y103{bottom:63.934564pt;}
.yd0{bottom:65.694828pt;}
.y10e{bottom:67.614825pt;}
.y3b{bottom:67.679892pt;}
.y11c{bottom:68.414957pt;}
.y9a{bottom:70.014821pt;}
.y76{bottom:71.613719pt;}
.y13e{bottom:73.504816pt;}
.ye0{bottom:73.792815pt;}
.y82{bottom:74.334814pt;}
.y13a{bottom:75.200280pt;}
.y2f{bottom:77.694409pt;}
.ycf{bottom:78.273208pt;}
.y102{bottom:78.334541pt;}
.y84{bottom:78.334808pt;}
.ye3{bottom:79.614806pt;}
.y101{bottom:81.024937pt;}
.y1e{bottom:84.992397pt;}
.y143{bottom:84.992797pt;}
.y15{bottom:85.887329pt;}
.yf8{bottom:86.559862pt;}
.y74{bottom:88.766191pt;}
.y22{bottom:88.927324pt;}
.y75{bottom:89.151191pt;}
.y70{bottom:90.304789pt;}
.y71{bottom:90.367322pt;}
.yd9{bottom:91.584787pt;}
.yd1{bottom:92.126519pt;}
.yd2{bottom:92.672385pt;}
.y52{bottom:92.799852pt;}
.y83{bottom:94.334782pt;}
.y81{bottom:95.134914pt;}
.ye2{bottom:97.214778pt;}
.y46{bottom:98.112376pt;}
.yf7{bottom:100.959838pt;}
.y12b{bottom:101.279838pt;}
.y11a{bottom:105.886764pt;}
.yd8{bottom:106.014897pt;}
.y5e{bottom:106.240363pt;}
.y2e{bottom:106.494363pt;}
.ydf{bottom:112.192754pt;}
.y139{bottom:113.632752pt;}
.ye1{bottom:114.814750pt;}
.yf6{bottom:115.359815pt;}
.y80{bottom:115.934881pt;}
.yee{bottom:118.111411pt;}
.y14{bottom:120.447274pt;}
.y142{bottom:123.425269pt;}
.y57{bottom:124.959800pt;}
.y5{bottom:125.054333pt;}
.y100{bottom:125.854865pt;}
.y45{bottom:131.712323pt;}
.y1d{bottom:132.832321pt;}
.y12a{bottom:134.719784pt;}
.yd7{bottom:134.811784pt;}
.y2d{bottom:135.331783pt;}
.y9e{bottom:136.159782pt;}
.yc6{bottom:136.772848pt;}
.y134{bottom:137.439780pt;}
.yaa{bottom:140.347775pt;}
.y3a{bottom:141.947773pt;}
.yd6{bottom:149.211761pt;}
.yde{bottom:150.587759pt;}
.y119{bottom:150.719226pt;}
.y138{bottom:152.027757pt;}
.ybc{bottom:155.359751pt;}
.y51{bottom:156.959749pt;}
.yed{bottom:161.306409pt;}
.y141{bottom:161.827741pt;}
.yc5{bottom:162.720273pt;}
.yd5{bottom:163.611738pt;}
.y2c{bottom:164.131737pt;}
.y13{bottom:168.319731pt;}
.yff{bottom:170.652260pt;}
.y39{bottom:170.747727pt;}
.ybb{bottom:171.359726pt;}
.y129{bottom:171.706659pt;}
.y93{bottom:172.866657pt;}
.y92{bottom:172.867723pt;}
.y4{bottom:172.931723pt;}
.ya9{bottom:174.267721pt;}
.y94{bottom:177.667716pt;}
.y67{bottom:180.639711pt;}
.y6f{bottom:180.640211pt;}
.y1c{bottom:180.867711pt;}
.yba{bottom:187.359700pt;}
.yc4{bottom:188.640232pt;}
.y50{bottom:188.987698pt;}
.ydd{bottom:189.027698pt;}
.y137{bottom:190.427695pt;}
.ya8{bottom:191.867693pt;}
.y10b{bottom:191.932493pt;}
.y118{bottom:195.519154pt;}
.y7f{bottom:196.571685pt;}
.y38{bottom:199.547681pt;}
.y140{bottom:200.227680pt;}
.y44{bottom:201.027678pt;}
.y12{bottom:202.879675pt;}
.yb9{bottom:203.387675pt;}
.y128{bottom:203.706607pt;}
.y3{bottom:207.491668pt;}
.y8f{bottom:207.587668pt;}
.yc3{bottom:214.560190pt;}
.yfe{bottom:215.452189pt;}
.y12d{bottom:215.999654pt;}
.y5d{bottom:216.000188pt;}
.yb8{bottom:219.387649pt;}
.y4f{bottom:220.987646pt;}
.y43{bottom:224.067641pt;}
.ya7{bottom:227.387636pt;}
.ydc{bottom:227.427636pt;}
.y91{bottom:227.451636pt;}
.y136{bottom:228.867634pt;}
.y8e{bottom:232.251628pt;}
.yb7{bottom:235.387623pt;}
.y127{bottom:235.706556pt;}
.y10a{bottom:236.772421pt;}
.y13f{bottom:238.627618pt;}
.y117{bottom:240.346549pt;}
.yc2{bottom:240.480149pt;}
.y7e{bottom:242.011613pt;}
.y63{bottom:247.106271pt;}
.y6b{bottom:247.520104pt;}
.y11{bottom:250.720132pt;}
.yb6{bottom:251.387598pt;}
.y56{bottom:252.987595pt;}
.y5c{bottom:254.427593pt;}
.y90{bottom:254.651593pt;}
.y42{bottom:255.587591pt;}
.y2{bottom:258.811586pt;}
.y8d{bottom:259.451585pt;}
.yf0{bottom:259.931584pt;}
.yfd{bottom:260.292117pt;}
.y20{bottom:262.587580pt;}
.yc1{bottom:266.240107pt;}
.yb5{bottom:267.387572pt;}
.y126{bottom:267.706505pt;}
.y86{bottom:268.479570pt;}
.y9f{bottom:272.707564pt;}
.ya6{bottom:279.907552pt;}
.y109{bottom:281.572349pt;}
.y6d{bottom:282.559548pt;}
.yb4{bottom:283.387547pt;}
.y4e{bottom:284.987544pt;}
.y116{bottom:285.146477pt;}
.y10{bottom:285.307544pt;}
.y73{bottom:289.626203pt;}
.yc0{bottom:292.347532pt;}
.y34{bottom:295.867527pt;}
.y87{bottom:296.251526pt;}
.y1f{bottom:297.147525pt;}
.yb3{bottom:299.387521pt;}
.y125{bottom:299.746454pt;}
.yef{bottom:303.131515pt;}
.yd4{bottom:303.811514pt;}
.y79{bottom:303.972047pt;}
.yfc{bottom:305.092045pt;}
.y1{bottom:307.771508pt;}
.y85{bottom:314.879496pt;}
.yb2{bottom:315.387495pt;}
.y55{bottom:317.027493pt;}
.ybf{bottom:318.267491pt;}
.y131{bottom:323.547482pt;}
.y108{bottom:326.372278pt;}
.y9c{bottom:327.611476pt;}
.y115{bottom:329.946405pt;}
.y41{bottom:330.651471pt;}
.yb1{bottom:331.387470pt;}
.y124{bottom:331.746403pt;}
.yf{bottom:334.747464pt;}
.y12c{bottom:342.651452pt;}
.ybe{bottom:344.187449pt;}
.y12e{bottom:347.267444pt;}
.yb0{bottom:347.427444pt;}
.y4d{bottom:349.027442pt;}
.yfb{bottom:349.891974pt;}
.yad{bottom:351.839437pt;}
.yd3{bottom:361.251422pt;}
.y78{bottom:361.599421pt;}
.y40{bottom:362.971419pt;}
.yaf{bottom:363.427419pt;}
.y123{bottom:363.746351pt;}
.ybd{bottom:370.107408pt;}
.y107{bottom:371.199673pt;}
.y8c{bottom:374.719400pt;}
.y114{bottom:374.786334pt;}
.y6c{bottom:375.452433pt;}
.yae{bottom:379.427393pt;}
.yea{bottom:380.027392pt;}
.y4c{bottom:381.027390pt;}
.y5b{bottom:381.987389pt;}
.y66{bottom:382.531388pt;}
.y1a{bottom:383.359920pt;}
.y132{bottom:386.491382pt;}
.y8b{bottom:389.119377pt;}
.y9d{bottom:390.467375pt;}
.yfa{bottom:394.719368pt;}
.y122{bottom:395.746300pt;}
.y3f{bottom:396.571365pt;}
.yca{bottom:399.427361pt;}
.ya4{bottom:401.307358pt;}
.y133{bottom:408.159347pt;}
.ye9{bottom:408.867346pt;}
.y9b{bottom:415.547335pt;}
.yd{bottom:415.707335pt;}
.y106{bottom:415.999601pt;}
.y8a{bottom:417.919331pt;}
.y19{bottom:417.947331pt;}
.yce{bottom:418.787330pt;}
.y146{bottom:419.227329pt;}
.y113{bottom:419.586262pt;}
.y5a{bottom:420.387327pt;}
.y26{bottom:424.799320pt;}
.y121{bottom:427.771316pt;}
.y89{bottom:432.319308pt;}
.yc9{bottom:437.827299pt;}
.yf9{bottom:439.519297pt;}
.ya3{bottom:439.707296pt;}
.y2b{bottom:442.851291pt;}
.y4b{bottom:445.051288pt;}
.y62{bottom:446.211286pt;}
.yc{bottom:446.427286pt;}
.y88{bottom:446.719285pt;}
.y68{bottom:447.067285pt;}
.y130{bottom:447.519284pt;}
.y25{bottom:453.599274pt;}
.yc8{bottom:457.027269pt;}
.ycd{bottom:457.187268pt;}
.ya2{bottom:458.907266pt;}
.y120{bottom:459.771264pt;}
.y105{bottom:460.799529pt;}
.y145{bottom:464.187257pt;}
.y112{bottom:464.386190pt;}
.y18{bottom:465.787255pt;}
.y2a{bottom:471.651245pt;}
.y33{bottom:474.147241pt;}
.y4a{bottom:477.051237pt;}
.y72{bottom:477.186703pt;}
.y77{bottom:477.187236pt;}
.y6a{bottom:479.519233pt;}
.y98{bottom:480.827231pt;}
.y24{bottom:482.399761pt;}
.ya1{bottom:488.611218pt;}
.yb{bottom:490.587215pt;}
.y11f{bottom:493.211211pt;}
.y7b{bottom:495.586674pt;}
.y59{bottom:497.186138pt;}
.y29{bottom:500.451733pt;}
.ycc{bottom:502.399196pt;}
.y32{bottom:502.947195pt;}
.y13b{bottom:503.491194pt;}
.y3e{bottom:503.811194pt;}
.y97{bottom:505.507191pt;}
.y37{bottom:506.491190pt;}
.ye8{bottom:507.198655pt;}
.y54{bottom:509.051186pt;}
.y111{bottom:509.211185pt;}
.y23{bottom:511.227182pt;}
.y17{bottom:513.627178pt;}
.yac{bottom:513.827178pt;}
.yf5{bottom:516.067174pt;}
.ya{bottom:521.307166pt;}
.y7a{bottom:524.411694pt;}
.y28{bottom:529.279153pt;}
.y10d{bottom:529.307153pt;}
.y3d{bottom:529.411153pt;}
.y61{bottom:529.826086pt;}
.y11e{bottom:530.211152pt;}
.y31{bottom:531.747149pt;}
.y36{bottom:535.291144pt;}
.y58{bottom:535.611143pt;}
.yec{bottom:535.971142pt;}
.y96{bottom:536.227142pt;}
.y49{bottom:541.051134pt;}
.ye7{bottom:541.118601pt;}
.y135{bottom:543.811130pt;}
.y99{bottom:547.427124pt;}
.y110{bottom:554.011114pt;}
.yf4{bottom:556.227110pt;}
.yc7{bottom:558.266040pt;}
.y30{bottom:560.571103pt;}
.y3c{bottom:563.011099pt;}
.y16{bottom:563.107099pt;}
.y11d{bottom:563.651098pt;}
.y35{bottom:564.091097pt;}
.yeb{bottom:564.771096pt;}
.y9{bottom:566.627093pt;}
.y65{bottom:567.291092pt;}
.y69{bottom:567.292159pt;}
.y60{bottom:568.251091pt;}
.y10c{bottom:569.507089pt;}
.y48{bottom:573.051083pt;}
.ye6{bottom:575.066013pt;}
.y12f{bottom:579.547073pt;}
.ye5{bottom:639.970976pt;}
.y47{bottom:641.410974pt;}
.y1b{bottom:641.411507pt;}
.ye{bottom:641.412307pt;}
.y21{bottom:642.746972pt;}
.y27{bottom:644.130969pt;}
.yf3{bottom:647.290964pt;}
.h4c{height:23.312463pt;}
.h39{height:25.809959pt;}
.h43{height:27.042457pt;}
.h6b{height:27.505876pt;}
.h3a{height:29.814952pt;}
.h3f{height:31.238700pt;}
.h3c{height:31.331950pt;}
.h5b{height:34.453070pt;}
.h5f{height:34.454670pt;}
.h2f{height:34.945257pt;}
.h4e{height:35.038444pt;}
.h4a{height:36.222975pt;}
.h42{height:38.128064pt;}
.h2b{height:38.672751pt;}
.h45{height:39.502749pt;}
.h46{height:39.597937pt;}
.h38{height:40.939934pt;}
.h53{height:42.262432pt;}
.h40{height:43.786180pt;}
.h22{height:44.274929pt;}
.h21{height:44.371179pt;}
.h36{height:44.499929pt;}
.h24{height:44.524929pt;}
.h3b{height:44.588929pt;}
.h1f{height:44.804928pt;}
.h3e{height:44.812428pt;}
.h4b{height:44.902053pt;}
.h1d{height:45.284928pt;}
.h4f{height:45.937427pt;}
.h63{height:46.029301pt;}
.h23{height:46.064926pt;}
.h20{height:46.314926pt;}
.h6{height:46.591925pt;}
.h27{height:47.111925pt;}
.h3d{height:47.593674pt;}
.h37{height:48.059923pt;}
.h2e{height:49.001359pt;}
.h34{height:49.117421pt;}
.h2a{height:51.401168pt;}
.h68{height:52.153917pt;}
.h32{height:59.492092pt;}
.h69{height:61.610151pt;}
.h33{height:63.633648pt;}
.h10{height:66.749893pt;}
.hf{height:66.838893pt;}
.h30{height:67.583017pt;}
.h31{height:67.678204pt;}
.h57{height:68.906140pt;}
.h48{height:69.887888pt;}
.h56{height:69.937388pt;}
.h12{height:69.981072pt;}
.h55{height:70.030638pt;}
.hd{height:71.390511pt;}
.h11{height:71.485698pt;}
.h35{height:71.749885pt;}
.h47{height:71.999885pt;}
.h1a{height:72.093635pt;}
.h49{height:72.095885pt;}
.h1c{height:72.189759pt;}
.h67{height:76.715502pt;}
.h66{height:77.811438pt;}
.h65{height:77.904625pt;}
.h14{height:79.481435pt;}
.h16{height:79.576623pt;}
.h61{height:88.687358pt;}
.h50{height:88.776045pt;}
.h18{height:88.999858pt;}
.h17{height:89.088857pt;}
.h51{height:91.874853pt;}
.h52{height:91.966728pt;}
.h4{height:93.183851pt;}
.h64{height:93.187351pt;}
.h5{height:93.277035pt;}
.h6a{height:93.280538pt;}
.h8{height:95.187348pt;}
.h9{height:95.282535pt;}
.h60{height:97.502563pt;}
.h5a{height:97.600073pt;}
.h29{height:104.295458pt;}
.h28{height:104.431083pt;}
.h59{height:107.034204pt;}
.h5e{height:107.126079pt;}
.h5c{height:108.563264pt;}
.h13{height:108.652370pt;}
.h5d{height:108.656451pt;}
.h7{height:110.893260pt;}
.hb{height:110.988447pt;}
.h2c{height:115.176691pt;}
.h3{height:121.757501pt;}
.h6c{height:122.652929pt;}
.he{height:128.255795pt;}
.h1e{height:137.437280pt;}
.h1b{height:137.528905pt;}
.h6d{height:137.812280pt;}
.h62{height:137.904154pt;}
.h4d{height:139.068715pt;}
.hc{height:139.775776pt;}
.h26{height:142.781022pt;}
.h25{height:142.876209pt;}
.h19{height:143.999770pt;}
.h41{height:144.624769pt;}
.h2{height:151.741197pt;}
.h58{height:152.971630pt;}
.h54{height:153.063505pt;}
.ha{height:155.244296pt;}
.h15{height:159.935744pt;}
.h2d{height:186.179202pt;}
.h44{height:266.062074pt;}
.h0{height:719.999867pt;}
.h1{height:720.000000pt;}
.w0{width:1279.999867pt;}
.w1{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x86{left:15.904908pt;}
.x3d{left:21.214899pt;}
.x54{left:23.104896pt;}
.x56{left:26.010492pt;}
.x73{left:28.352381pt;}
.x25{left:31.552483pt;}
.x53{left:32.734881pt;}
.x9{left:34.305278pt;}
.x64{left:35.487410pt;}
.xa{left:37.025007pt;}
.x66{left:38.014873pt;}
.x67{left:41.344867pt;}
.x70{left:44.511929pt;}
.x6a{left:47.615924pt;}
.x7b{left:49.919920pt;}
.x2b{left:51.454851pt;}
.xb{left:61.024836pt;}
.x26{left:67.552825pt;}
.x43{left:75.392413pt;}
.xc{left:85.024797pt;}
.x7e{left:91.134788pt;}
.x6{left:97.599844pt;}
.x3b{left:105.919831pt;}
.x24{left:109.054759pt;}
.x30{left:111.712355pt;}
.x12{left:114.046484pt;}
.x10{left:118.047278pt;}
.x32{left:120.734473pt;}
.x13{left:125.086467pt;}
.x7c{left:128.032328pt;}
.x11{left:135.011784pt;}
.x76{left:136.987781pt;}
.x1{left:138.239779pt;}
.x7d{left:145.947366pt;}
.x3{left:149.119761pt;}
.x82{left:154.747752pt;}
.x5d{left:156.131750pt;}
.x41{left:158.371747pt;}
.x1c{left:168.227731pt;}
.x7f{left:169.891728pt;}
.x77{left:175.547719pt;}
.x57{left:179.427713pt;}
.x6d{left:187.651700pt;}
.x3e{left:201.627677pt;}
.x2c{left:212.506593pt;}
.x33{left:214.399657pt;}
.x31{left:219.171649pt;}
.x2{left:220.799647pt;}
.x48{left:254.079593pt;}
.x5b{left:280.291552pt;}
.x42{left:282.267548pt;}
.x5c{left:290.587535pt;}
.x47{left:310.147504pt;}
.x89{left:314.399497pt;}
.x58{left:317.599492pt;}
.x34{left:321.211486pt;}
.x80{left:327.067477pt;}
.x75{left:333.027467pt;}
.x5a{left:343.931450pt;}
.x88{left:352.291436pt;}
.x5e{left:357.507028pt;}
.x3f{left:378.971394pt;}
.x16{left:400.931359pt;}
.x6e{left:405.919351pt;}
.x40{left:421.371326pt;}
.x17{left:435.171304pt;}
.x6f{left:444.479289pt;}
.x3c{left:457.119802pt;}
.x15{left:470.531247pt;}
.x14{left:488.611218pt;}
.x2a{left:497.251738pt;}
.x27{left:511.039182pt;}
.x83{left:519.867168pt;}
.x29{left:524.731694pt;}
.x44{left:544.867128pt;}
.x28{left:547.039125pt;}
.x8{left:548.347123pt;}
.x63{left:550.265786pt;}
.x84{left:555.867111pt;}
.x4d{left:560.067104pt;}
.x81{left:562.079101pt;}
.x4c{left:565.251096pt;}
.xf{left:578.331075pt;}
.x21{left:582.427068pt;}
.xe{left:591.771053pt;}
.x20{left:610.907023pt;}
.x22{left:619.707008pt;}
.x68{left:628.958994pt;}
.x69{left:638.906978pt;}
.xd{left:651.930957pt;}
.x2d{left:670.371861pt;}
.x2e{left:671.999365pt;}
.x60{left:674.906520pt;}
.x2f{left:676.986863pt;}
.x85{left:691.586893pt;}
.x4b{left:724.090841pt;}
.x74{left:751.866797pt;}
.x87{left:766.106774pt;}
.x1a{left:775.678759pt;}
.x45{left:779.586753pt;}
.x4{left:780.706751pt;}
.x5f{left:782.586348pt;}
.x36{left:793.530730pt;}
.x35{left:799.225388pt;}
.x38{left:807.038709pt;}
.x1b{left:808.638706pt;}
.x19{left:827.838675pt;}
.x65{left:846.530646pt;}
.x59{left:853.758634pt;}
.x4f{left:854.810632pt;}
.x18{left:862.078621pt;}
.x79{left:878.586594pt;}
.x39{left:890.746041pt;}
.x61{left:894.370569pt;}
.x52{left:900.478559pt;}
.x55{left:916.610533pt;}
.x7a{left:926.626517pt;}
.x71{left:931.451843pt;}
.x51{left:941.598493pt;}
.x50{left:943.706490pt;}
.x72{left:979.451766pt;}
.x1d{left:980.730431pt;}
.x37{left:1009.530385pt;}
.x46{left:1014.330377pt;}
.x4e{left:1019.010370pt;}
.x3a{left:1023.198363pt;}
.x5{left:1024.571694pt;}
.x1f{left:1036.890341pt;}
.x1e{left:1045.530327pt;}
.x23{left:1050.398319pt;}
.x4a{left:1055.426311pt;}
.x49{left:1061.026302pt;}
.x6b{left:1062.718300pt;}
.x78{left:1096.250246pt;}
.x7{left:1167.106133pt;}
.x62{left:1172.570124pt;}
.x6c{left:1197.250084pt;}
}




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