
    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_90ae1bf9fae3371fb8632fde.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5569096992930aba55a3a363.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975098;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_1ae928d339d4be7737e78c1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_ac7c2a9e72963cd5c8518c31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5e47fdd0874c2c22d25fa0fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975098;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_e1b8a9f19c4a5b50b0f54964.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_4356e21a149d710181d4b9a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c084554799fca6e222ee22f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_4b4b0ddda42016155b9cc8f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_59df67e10665c66f7efcfd73.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_268386bbe9fb81d0ed2f7c20.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_560090bdbd93e3d460181dbf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_553a47f1c14618efad67fc97.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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_0a614b42fad68f814cdfda02.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.983398;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_086188f4c07292d7151b7042.woff2')format("woff");}.fff{font-family:fff;line-height:0.940918;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_15705f67a6733c43fc360d5f.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v4{vertical-align:-92.880000px;}
.v2{vertical-align:-32.400000px;}
.v3{vertical-align:-1.620000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.008000px;}
.v9{vertical-align:2.160000px;}
.v8{vertical-align:14.820000px;}
.v1{vertical-align:32.400000px;}
.v7{vertical-align:67.392000px;}
.va{vertical-align:70.416000px;}
.v5{vertical-align:129.720000px;}
.ls20{letter-spacing:-4.350000px;}
.ls19{letter-spacing:-2.130000px;}
.ls14{letter-spacing:-1.332000px;}
.ls15{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.612000px;}
.ls43{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.357600px;}
.ls49{letter-spacing:-0.306600px;}
.ls1a{letter-spacing:-0.306000px;}
.ls3c{letter-spacing:-0.292200px;}
.ls34{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.259200px;}
.ls36{letter-spacing:-0.229200px;}
.ls33{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.144000px;}
.ls4e{letter-spacing:-0.112200px;}
.ls55{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.096600px;}
.ls53{letter-spacing:-0.091200px;}
.ls27{letter-spacing:-0.090000px;}
.ls1{letter-spacing:-0.039180px;}
.ls21{letter-spacing:-0.037440px;}
.ls3{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.026640px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.005040px;}
.lsc{letter-spacing:0.030360px;}
.ls10{letter-spacing:0.036000px;}
.ls44{letter-spacing:0.072288px;}
.ls41{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.131400px;}
.ls52{letter-spacing:0.141000px;}
.ls45{letter-spacing:0.142800px;}
.ls24{letter-spacing:0.154800px;}
.ls3d{letter-spacing:0.177000px;}
.ls3a{letter-spacing:0.181440px;}
.ls39{letter-spacing:0.184200px;}
.ls54{letter-spacing:0.189600px;}
.ls4a{letter-spacing:0.202800px;}
.ls23{letter-spacing:0.212400px;}
.lsb{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.229200px;}
.ls2e{letter-spacing:0.245400px;}
.ls22{letter-spacing:0.247800px;}
.lsa{letter-spacing:0.269400px;}
.ls6{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.298200px;}
.ls2c{letter-spacing:0.306600px;}
.ls25{letter-spacing:0.324000px;}
.ls4d{letter-spacing:0.332400px;}
.ls29{letter-spacing:0.335400px;}
.ls1f{letter-spacing:0.341400px;}
.ls28{letter-spacing:0.357000px;}
.ls42{letter-spacing:0.360000px;}
.ls51{letter-spacing:16.200000px;}
.ls4{letter-spacing:16.560000px;}
.ls38{letter-spacing:45.845280px;}
.ls37{letter-spacing:45.910800px;}
.ls50{letter-spacing:53.265600px;}
.ls4f{letter-spacing:53.316000px;}
.ls7{letter-spacing:97.509600px;}
.ls8{letter-spacing:97.560000px;}
.ls2f{letter-spacing:97.689600px;}
.ls9{letter-spacing:97.740000px;}
.ls31{letter-spacing:114.048000px;}
.ls1c{letter-spacing:119.865600px;}
.ls1b{letter-spacing:119.916000px;}
.ls3e{letter-spacing:120.060000px;}
.ls2d{letter-spacing:127.800000px;}
.ls1e{letter-spacing:129.549600px;}
.ls1d{letter-spacing:129.600000px;}
.ls2a{letter-spacing:157.233600px;}
.ls2b{letter-spacing:157.284000px;}
.ls4c{letter-spacing:157.377600px;}
.ls4b{letter-spacing:157.428000px;}
.ls40{letter-spacing:173.865600px;}
.ls47{letter-spacing:173.904000px;}
.ls3f{letter-spacing:173.916000px;}
.ls48{letter-spacing:174.009600px;}
.ls46{letter-spacing:174.060000px;}
.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;}
}
.ws2e{word-spacing:-65.694240px;}
.ws7e{word-spacing:-60.801696px;}
.ws47{word-spacing:-48.816000px;}
.ws85{word-spacing:-46.677312px;}
.ws7f{word-spacing:-46.637280px;}
.ws92{word-spacing:-46.005696px;}
.ws57{word-spacing:-43.478784px;}
.ws69{word-spacing:-43.446240px;}
.ws93{word-spacing:-42.849216px;}
.ws86{word-spacing:-42.809760px;}
.ws3a{word-spacing:-40.072032px;}
.ws39{word-spacing:-40.032000px;}
.ws41{word-spacing:-37.946304px;}
.ws40{word-spacing:-37.913760px;}
.ws7d{word-spacing:-35.642640px;}
.ws79{word-spacing:-33.669552px;}
.ws75{word-spacing:-33.533520px;}
.ws7a{word-spacing:-33.466752px;}
.ws71{word-spacing:-33.426720px;}
.ws84{word-spacing:-33.400080px;}
.ws48{word-spacing:-32.576544px;}
.ws4a{word-spacing:-30.064032px;}
.ws49{word-spacing:-30.024000px;}
.ws3f{word-spacing:-29.592000px;}
.ws6a{word-spacing:-27.206784px;}
.ws5b{word-spacing:-27.174240px;}
.ws2f{word-spacing:-24.440544px;}
.ws37{word-spacing:-24.419520px;}
.ws32{word-spacing:-24.408000px;}
.ws4{word-spacing:-24.372000px;}
.ws36{word-spacing:-23.458752px;}
.ws34{word-spacing:-23.418720px;}
.ws6c{word-spacing:-20.430000px;}
.ws66{word-spacing:-20.340000px;}
.ws50{word-spacing:-19.851840px;}
.ws4f{word-spacing:-19.283640px;}
.ws45{word-spacing:-19.070784px;}
.ws2d{word-spacing:-19.038240px;}
.ws55{word-spacing:-16.653312px;}
.wsd{word-spacing:-16.506480px;}
.ws4e{word-spacing:-16.488000px;}
.ws6d{word-spacing:-16.447344px;}
.ws0{word-spacing:-16.413696px;}
.ws3{word-spacing:-16.374240px;}
.ws6e{word-spacing:-16.304544px;}
.ws4d{word-spacing:-16.272000px;}
.ws68{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.796000px;}
.ws2c{word-spacing:-14.490000px;}
.ws28{word-spacing:-13.450752px;}
.wsa{word-spacing:-13.410720px;}
.ws63{word-spacing:-12.854880px;}
.ws3e{word-spacing:-12.114000px;}
.ws5f{word-spacing:-9.621960px;}
.ws60{word-spacing:-9.437760px;}
.ws61{word-spacing:-9.145560px;}
.ws80{word-spacing:-3.294000px;}
.ws73{word-spacing:-2.829840px;}
.ws5d{word-spacing:-2.550480px;}
.ws5e{word-spacing:-2.528640px;}
.ws6f{word-spacing:-2.373600px;}
.ws87{word-spacing:-2.308704px;}
.ws83{word-spacing:-2.147280px;}
.ws78{word-spacing:-2.134080px;}
.ws81{word-spacing:-2.067840px;}
.ws7b{word-spacing:-2.001840px;}
.ws72{word-spacing:-1.836768px;}
.ws77{word-spacing:-1.813680px;}
.ws70{word-spacing:-1.547280px;}
.ws82{word-spacing:-1.332480px;}
.ws51{word-spacing:-1.267440px;}
.ws3c{word-spacing:-1.242528px;}
.ws67{word-spacing:-1.242432px;}
.ws59{word-spacing:-1.132560px;}
.ws74{word-spacing:-1.073520px;}
.ws5c{word-spacing:-1.044240px;}
.ws35{word-spacing:-1.010160px;}
.ws30{word-spacing:-0.992160px;}
.ws3b{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.733200px;}
.ws52{word-spacing:-0.693360px;}
.ws31{word-spacing:-0.673200px;}
.ws7c{word-spacing:-0.440640px;}
.ws3d{word-spacing:-0.332736px;}
.ws76{word-spacing:-0.307080px;}
.ws8a{word-spacing:-0.219960px;}
.ws10{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.098640px;}
.ws6{word-spacing:0.000000px;}
.ws44{word-spacing:0.016608px;}
.ws56{word-spacing:0.093192px;}
.ws4c{word-spacing:0.137376px;}
.ws1{word-spacing:0.140040px;}
.ws2{word-spacing:0.140544px;}
.ws90{word-spacing:0.144000px;}
.ws8b{word-spacing:0.154368px;}
.ws8f{word-spacing:0.198000px;}
.ws46{word-spacing:0.253200px;}
.ws7{word-spacing:0.264000px;}
.ws43{word-spacing:0.300720px;}
.ws58{word-spacing:0.325152px;}
.ws2b{word-spacing:0.411552px;}
.ws4b{word-spacing:0.433440px;}
.ws89{word-spacing:0.467280px;}
.ws29{word-spacing:0.491136px;}
.ws27{word-spacing:0.531000px;}
.ws5a{word-spacing:0.681840px;}
.ws8{word-spacing:0.828000px;}
.ws9{word-spacing:1.152000px;}
.ws38{word-spacing:1.428000px;}
.ws91{word-spacing:1.476000px;}
.ws53{word-spacing:1.620000px;}
.ws65{word-spacing:1.743840px;}
.ws8c{word-spacing:4.134000px;}
.ws8d{word-spacing:4.554000px;}
.ws8e{word-spacing:4.572000px;}
.ws2a{word-spacing:4.705104px;}
.ws62{word-spacing:11.823840px;}
.ws1b{word-spacing:27.792000px;}
.ws25{word-spacing:28.188000px;}
.ws14{word-spacing:29.106144px;}
.ws1d{word-spacing:29.118864px;}
.ws16{word-spacing:29.381568px;}
.ws15{word-spacing:29.411472px;}
.ws17{word-spacing:29.485152px;}
.wse{word-spacing:30.528000px;}
.wsf{word-spacing:31.428000px;}
.ws13{word-spacing:52.236000px;}
.ws12{word-spacing:52.452000px;}
.ws11{word-spacing:53.760000px;}
.ws21{word-spacing:63.396000px;}
.ws1e{word-spacing:63.828000px;}
.ws20{word-spacing:64.224000px;}
.ws22{word-spacing:64.344000px;}
.ws24{word-spacing:65.268000px;}
.ws1f{word-spacing:65.280000px;}
.ws23{word-spacing:66.708000px;}
.ws54{word-spacing:74.016000px;}
.ws26{word-spacing:91.994256px;}
.ws1c{word-spacing:92.052000px;}
.ws18{word-spacing:106.968000px;}
.ws1a{word-spacing:108.372000px;}
.ws19{word-spacing:109.080000px;}
.ws88{word-spacing:224.712000px;}
.ws64{word-spacing:376.983600px;}
.ws42{word-spacing:968.826960px;}
.wsb{word-spacing:1283.592000px;}
.ws6b{word-spacing:2081.246160px;}
._24{margin-left:-4713.617280px;}
._2d{margin-left:-1497.660000px;}
._1b{margin-left:-564.360000px;}
._19{margin-left:-535.560000px;}
._20{margin-left:-506.340000px;}
._1c{margin-left:-482.700000px;}
._13{margin-left:-468.606000px;}
._2{margin-left:-23.736960px;}
._28{margin-left:-17.527920px;}
._35{margin-left:-16.213680px;}
._22{margin-left:-12.582000px;}
._14{margin-left:-11.030880px;}
._6{margin-left:-8.847360px;}
._9{margin-left:-7.672320px;}
._23{margin-left:-5.672160px;}
._0{margin-left:-4.613760px;}
._17{margin-left:-3.485520px;}
._5{margin-left:-2.358720px;}
._1{margin-left:-1.345680px;}
._4{width:1.400400px;}
._7{width:2.779920px;}
._3{width:3.905280px;}
._2e{width:7.633440px;}
._a{width:9.461280px;}
._2a{width:11.748720px;}
._1d{width:13.621680px;}
._1f{width:14.706000px;}
._34{width:16.567680px;}
._8{width:18.406800px;}
._33{width:19.944960px;}
._15{width:23.566800px;}
._25{width:25.848000px;}
._11{width:29.100000px;}
._2f{width:30.900000px;}
._f{width:32.079120px;}
._30{width:33.281520px;}
._32{width:34.525200px;}
._31{width:39.012000px;}
._16{width:41.604000px;}
._1a{width:60.043728px;}
._26{width:61.156560px;}
._29{width:63.949392px;}
._e{width:67.548720px;}
._21{width:68.926800px;}
._1e{width:77.316960px;}
._12{width:92.102400px;}
._10{width:108.180000px;}
._27{width:114.000048px;}
._2b{width:674.222400px;}
._18{width:718.546080px;}
._d{width:737.445840px;}
._2c{width:773.155920px;}
._c{width:869.794320px;}
._b{width:1181.498160px;}
.fcf{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(28,74,134);}
.fc8{color:rgb(255,255,255);}
.fc2{color:rgb(0,152,217);}
.fc11{color:rgb(0,176,80);}
.fce{color:rgb(40,73,131);}
.fcd{color:rgb(231,230,230);}
.fc0{color:rgb(11,27,46);}
.fc5{color:rgb(69,90,100);}
.fc7{color:rgb(30,76,135);}
.fc3{color:rgb(0,114,163);}
.fc4{color:rgb(255,0,0);}
.fc9{color:rgb(63,67,80);}
.fca{color:transparent;}
.fcb{color:rgb(0,71,185);}
.fc10{color:rgb(128,128,128);}
.fcc{color:rgb(15,28,46);}
.fs1d{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs1c{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fsf{font-size:48.384000px;}
.fs8{font-size:54.000000px;}
.fs1e{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs9{font-size:63.360000px;}
.fs23{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs25{font-size:72.144000px;}
.fs1f{font-size:74.880000px;}
.fs20{font-size:75.024000px;}
.fs5{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs14{font-size:87.840000px;}
.fs22{font-size:90.000000px;}
.fs1a{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs11{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fs21{font-size:126.000000px;}
.fsd{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fs27{font-size:156.240000px;}
.fs28{font-size:156.384000px;}
.fs18{font-size:167.760000px;}
.fs17{font-size:167.904000px;}
.fs26{font-size:180.000000px;}
.fs0{font-size:192.240000px;}
.fs1b{font-size:192.384000px;}
.fs19{font-size:216.000000px;}
.fs16{font-size:216.144000px;}
.fs24{font-size:221.904000px;}
.fs2{font-size:228.240000px;}
.fs1{font-size:228.384000px;}
.fsa{font-size:239.760000px;}
.fs10{font-size:239.904000px;}
.fs29{font-size:257.760000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:5.580000px;}
.yc5{bottom:11.340000px;}
.y80{bottom:12.312000px;}
.y87{bottom:22.248000px;}
.ya5{bottom:22.968000px;}
.y88{bottom:23.472000px;}
.yb6{bottom:28.836000px;}
.y5f{bottom:29.052000px;}
.y11{bottom:29.664000px;}
.y31{bottom:30.024000px;}
.yd{bottom:30.564000px;}
.yc{bottom:30.816000px;}
.yb1{bottom:31.284000px;}
.y60{bottom:31.500000px;}
.y22{bottom:32.976000px;}
.yc4{bottom:33.084000px;}
.y14{bottom:33.336000px;}
.yd2{bottom:36.252000px;}
.y73{bottom:36.900000px;}
.y7b{bottom:38.664000px;}
.y10{bottom:40.464000px;}
.y125{bottom:40.500000px;}
.yd9{bottom:42.948000px;}
.y30{bottom:44.424000px;}
.yc3{bottom:45.684000px;}
.yb5{bottom:46.476000px;}
.y13{bottom:47.772000px;}
.yd1{bottom:48.852000px;}
.yb0{bottom:48.960000px;}
.yf{bottom:51.264000px;}
.y97{bottom:53.856000px;}
.y107{bottom:57.564000px;}
.y124{bottom:58.500000px;}
.y2f{bottom:58.824000px;}
.y99{bottom:59.436000px;}
.ye1{bottom:60.228000px;}
.y113{bottom:61.128000px;}
.y72{bottom:62.136000px;}
.y12{bottom:62.172000px;}
.y7a{bottom:63.900000px;}
.y85{bottom:65.808000px;}
.yb{bottom:67.392000px;}
.ya{bottom:68.832000px;}
.yc7{bottom:71.568000px;}
.yda{bottom:73.944000px;}
.y123{bottom:76.536000px;}
.yf7{bottom:80.424000px;}
.yaa{bottom:86.724000px;}
.y9{bottom:86.832000px;}
.y128{bottom:89.676000px;}
.y122{bottom:94.536000px;}
.yf6{bottom:95.220000px;}
.ye2{bottom:104.508000px;}
.y8{bottom:104.868000px;}
.ybe{bottom:105.372000px;}
.y127{bottom:105.876000px;}
.y4b{bottom:107.316000px;}
.y106{bottom:109.296000px;}
.yfa{bottom:111.096000px;}
.y121{bottom:112.536000px;}
.y8c{bottom:121.680000px;}
.y126{bottom:122.076000px;}
.y7{bottom:122.868000px;}
.y112{bottom:129.204000px;}
.ycf{bottom:129.852000px;}
.ya9{bottom:129.960000px;}
.ybd{bottom:130.572000px;}
.y105{bottom:130.896000px;}
.yf5{bottom:131.256000px;}
.y6b{bottom:132.084000px;}
.yd6{bottom:133.092000px;}
.ye9{bottom:133.740000px;}
.ycc{bottom:142.380000px;}
.y94{bottom:146.916000px;}
.yf9{bottom:147.096000px;}
.y5a{bottom:147.708000px;}
.y6f{bottom:149.760000px;}
.y4a{bottom:150.510000px;}
.yc2{bottom:152.640000px;}
.ybc{bottom:155.775000px;}
.yb4{bottom:162.795000px;}
.y8b{bottom:164.880000px;}
.y120{bottom:165.495000px;}
.yf4{bottom:167.250000px;}
.yed{bottom:169.815000px;}
.y77{bottom:173.595000px;}
.yc1{bottom:177.840000px;}
.y93{bottom:177.870000px;}
.y21{bottom:178.485000px;}
.y69{bottom:179.490000px;}
.ybb{bottom:180.975000px;}
.ya8{bottom:182.160000px;}
.y19{bottom:184.650000px;}
.y1b{bottom:187.200000px;}
.y39{bottom:187.635000px;}
.yb3{bottom:188.025000px;}
.y7f{bottom:190.800000px;}
.y49{bottom:193.710000px;}
.y3e{bottom:195.450000px;}
.y20{bottom:196.485000px;}
.y11b{bottom:201.390000px;}
.y9e{bottom:202.350000px;}
.yc0{bottom:203.070000px;}
.ya0{bottom:203.190000px;}
.y6{bottom:205.950000px;}
.yba{bottom:206.175000px;}
.yfb{bottom:208.515000px;}
.yee{bottom:208.590000px;}
.y92{bottom:209.010000px;}
.yaf{bottom:212.400000px;}
.y2d{bottom:213.090000px;}
.y1f{bottom:214.485000px;}
.y100{bottom:216.510000px;}
.y18{bottom:217.050000px;}
.y59{bottom:217.155000px;}
.y11f{bottom:217.905000px;}
.y1a{bottom:219.600000px;}
.y68{bottom:220.110000px;}
.y38{bottom:223.635000px;}
.ybf{bottom:228.270000px;}
.y136{bottom:228.600000px;}
.y5{bottom:228.630000px;}
.yb9{bottom:231.375000px;}
.y3d{bottom:231.450000px;}
.y1e{bottom:232.485000px;}
.y65{bottom:233.460000px;}
.y9d{bottom:234.750000px;}
.y86{bottom:235.230000px;}
.y9f{bottom:235.590000px;}
.yca{bottom:236.310000px;}
.y48{bottom:236.910000px;}
.y91{bottom:240.015000px;}
.y2c{bottom:245.490000px;}
.yff{bottom:248.910000px;}
.y1d{bottom:250.485000px;}
.y6e{bottom:250.590000px;}
.y11a{bottom:255.390000px;}
.y37{bottom:259.635000px;}
.y135{bottom:261.000000px;}
.yb2{bottom:265.215000px;}
.y33{bottom:265.425000px;}
.y4f{bottom:266.145000px;}
.y9c{bottom:267.195000px;}
.y111{bottom:267.300000px;}
.y3c{bottom:267.480000px;}
.y11e{bottom:270.465000px;}
.y90{bottom:271.155000px;}
.y4{bottom:275.430000px;}
.y64{bottom:276.045000px;}
.yae{bottom:277.200000px;}
.y2b{bottom:277.890000px;}
.y47{bottom:280.155000px;}
.y42{bottom:280.365000px;}
.yfe{bottom:281.340000px;}
.yb8{bottom:281.805000px;}
.ye4{bottom:283.530000px;}
.y58{bottom:291.090000px;}
.y134{bottom:293.400000px;}
.y9b{bottom:299.595000px;}
.y8f{bottom:302.115000px;}
.yb7{bottom:307.005000px;}
.y2a{bottom:310.290000px;}
.y119{bottom:314.820000px;}
.y63{bottom:317.010000px;}
.y11d{bottom:322.845000px;}
.y46{bottom:323.355000px;}
.y17{bottom:328.035000px;}
.ye3{bottom:332.130000px;}
.y8e{bottom:333.255000px;}
.ya3{bottom:335.670000px;}
.yad{bottom:342.030000px;}
.y10b{bottom:342.435000px;}
.y104{bottom:343.590000px;}
.yf8{bottom:343.950000px;}
.yf0{bottom:344.670000px;}
.y6d{bottom:351.435000px;}
.yeb{bottom:351.930000px;}
.yd8{bottom:356.145000px;}
.y16{bottom:360.465000px;}
.y57{bottom:360.540000px;}
.yd5{bottom:363.060000px;}
.y8d{bottom:364.215000px;}
.y45{bottom:366.555000px;}
.y8a{bottom:367.095000px;}
.ya2{bottom:368.070000px;}
.y7e{bottom:370.800000px;}
.y4e{bottom:374.580000px;}
.y29{bottom:375.120000px;}
.y110{bottom:375.330000px;}
.y75{bottom:377.385000px;}
.y78{bottom:380.880000px;}
.y118{bottom:385.020000px;}
.yea{bottom:385.305000px;}
.y11c{bottom:385.560000px;}
.ycb{bottom:386.565000px;}
.y84{bottom:388.155000px;}
.yd7{bottom:388.545000px;}
.y3{bottom:391.530000px;}
.ya1{bottom:400.470000px;}
.ycd{bottom:404.205000px;}
.yac{bottom:406.830000px;}
.y28{bottom:407.520000px;}
.y44{bottom:409.755000px;}
.y133{bottom:415.080000px;}
.ydd{bottom:427.470000px;}
.y10f{bottom:429.330000px;}
.y117{bottom:439.020000px;}
.y27{bottom:439.920000px;}
.y43{bottom:442.230000px;}
.ye7{bottom:443.415000px;}
.y56{bottom:449.460000px;}
.y10a{bottom:450.435000px;}
.yf3{bottom:452.055000px;}
.y6c{bottom:452.235000px;}
.y2{bottom:453.135000px;}
.y132{bottom:457.200000px;}
.yc9{bottom:466.095000px;}
.yab{bottom:471.630000px;}
.y26{bottom:472.320000px;}
.ydc{bottom:476.070000px;}
.y4d{bottom:480.090000px;}
.y10e{bottom:483.330000px;}
.yfd{bottom:485.610000px;}
.yf2{bottom:488.085000px;}
.y67{bottom:490.110000px;}
.y41{bottom:491.550000px;}
.y36{bottom:491.580000px;}
.ye6{bottom:492.045000px;}
.y12d{bottom:492.945000px;}
.y116{bottom:493.050000px;}
.y62{bottom:496.365000px;}
.y6a{bottom:498.780000px;}
.y131{bottom:499.320000px;}
.y109{bottom:504.465000px;}
.y55{bottom:507.030000px;}
.y1{bottom:512.535000px;}
.y40{bottom:516.750000px;}
.ydb{bottom:520.020000px;}
.y61{bottom:528.765000px;}
.y103{bottom:532.830000px;}
.y3b{bottom:533.415000px;}
.yef{bottom:533.445000px;}
.ye5{bottom:535.965000px;}
.y7d{bottom:537.120000px;}
.y25{bottom:537.150000px;}
.y12c{bottom:538.305000px;}
.y83{bottom:539.355000px;}
.y115{bottom:547.050000px;}
.ya7{bottom:559.545000px;}
.y74{bottom:564.300000px;}
.y102{bottom:565.230000px;}
.y76{bottom:567.615000px;}
.y130{bottom:569.370000px;}
.y24{bottom:569.550000px;}
.yce{bottom:570.960000px;}
.y34{bottom:575.745000px;}
.y54{bottom:578.775000px;}
.y5b{bottom:582.870000px;}
.y12b{bottom:583.665000px;}
.y51{bottom:585.540000px;}
.y3a{bottom:587.130000px;}
.y7c{bottom:587.520000px;}
.y10d{bottom:591.375000px;}
.y101{bottom:597.630000px;}
.y23{bottom:601.950000px;}
.y114{bottom:606.450000px;}
.y53{bottom:611.175000px;}
.y12f{bottom:611.490000px;}
.ydf{bottom:611.925000px;}
.y108{bottom:612.465000px;}
.y15{bottom:622.335000px;}
.y12a{bottom:629.070000px;}
.y70{bottom:630.570000px;}
.y50{bottom:641.730000px;}
.yd0{bottom:641.805000px;}
.ya6{bottom:641.910000px;}
.y52{bottom:643.605000px;}
.y10c{bottom:645.375000px;}
.y12e{bottom:653.610000px;}
.yde{bottom:655.380000px;}
.yec{bottom:655.920000px;}
.yd4{bottom:670.680000px;}
.yf1{bottom:670.860000px;}
.yfc{bottom:675.000000px;}
.y3f{bottom:675.255000px;}
.y5e{bottom:676.110000px;}
.y79{bottom:677.415000px;}
.y82{bottom:679.860000px;}
.y89{bottom:684.750000px;}
.y129{bottom:700.590000px;}
.ya4{bottom:707.835000px;}
.ye{bottom:717.225000px;}
.y1c{bottom:718.890000px;}
.y35{bottom:729.030000px;}
.y66{bottom:729.255000px;}
.y5d{bottom:737.490000px;}
.y5c{bottom:738.975000px;}
.y32{bottom:741.570000px;}
.yc8{bottom:741.810000px;}
.y81{bottom:742.035000px;}
.y71{bottom:743.940000px;}
.y9a{bottom:744.405000px;}
.y98{bottom:746.355000px;}
.y4c{bottom:747.435000px;}
.y95{bottom:748.260000px;}
.yd3{bottom:750.165000px;}
.y96{bottom:750.420000px;}
.ye8{bottom:750.630000px;}
.ye0{bottom:750.705000px;}
.y2e{bottom:750.855000px;}
.h3c{height:24.780937px;}
.h3b{height:33.603750px;}
.hc{height:35.806641px;}
.h9{height:40.552734px;}
.h7{height:44.878359px;}
.h6{height:44.986500px;}
.ha{height:46.901250px;}
.hd{height:50.312812px;}
.h16{height:50.463000px;}
.h24{height:53.709961px;}
.h3d{height:58.240898px;}
.h40{height:60.400898px;}
.h12{height:62.327813px;}
.h38{height:62.478000px;}
.h5{height:63.262266px;}
.h43{height:67.824844px;}
.h33{height:71.613281px;}
.h13{height:73.722656px;}
.h47{height:73.870102px;}
.h2d{height:75.093750px;}
.h3e{height:76.671562px;}
.h3f{height:76.819008px;}
.h14{height:81.105469px;}
.h15{height:81.213609px;}
.h18{height:83.787539px;}
.h2c{height:83.930766px;}
.h4{height:85.696875px;}
.h35{height:87.368203px;}
.h1b{height:87.859687px;}
.h1c{height:88.009875px;}
.h42{height:89.516602px;}
.h1d{height:91.614375px;}
.h37{height:99.874688px;}
.h36{height:105.257812px;}
.h11{height:107.419922px;}
.hf{height:107.563148px;}
.h8{height:110.583984px;}
.h21{height:110.731430px;}
.h31{height:112.640625px;}
.h32{height:112.790813px;}
.h4c{height:117.332578px;}
.h4d{height:117.440719px;}
.h23{height:117.704813px;}
.h20{height:119.594180px;}
.h3a{height:119.737406px;}
.h41{height:125.323242px;}
.h19{height:125.406562px;}
.h1a{height:125.556750px;}
.h49{height:125.724375px;}
.h50{height:125.983828px;}
.h4f{height:126.091969px;}
.h2f{height:143.226562px;}
.h30{height:143.369789px;}
.h1{height:144.367734px;}
.he{height:147.445312px;}
.h1e{height:150.187500px;}
.h1f{height:150.337688px;}
.h22{height:162.319078px;}
.h44{height:166.644703px;}
.h27{height:166.858945px;}
.h26{height:167.002172px;}
.h3{height:171.402891px;}
.h2{height:171.511031px;}
.h29{height:171.773789px;}
.h2a{height:171.921234px;}
.h4a{height:174.968437px;}
.h4b{height:175.118625px;}
.h46{height:177.835922px;}
.hb{height:180.054141px;}
.h17{height:180.162281px;}
.h48{height:184.306641px;}
.h2b{height:186.593789px;}
.h45{height:191.207461px;}
.h39{height:191.350688px;}
.h4e{height:193.571719px;}
.h2e{height:214.839844px;}
.h34{height:225.281250px;}
.h10{height:237.283148px;}
.h28{height:250.062187px;}
.h25{height:250.212375px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:10.799979px;}
.x12{left:13.787979px;}
.x3e{left:15.443979px;}
.x5f{left:17.891979px;}
.x2c{left:19.547979px;}
.x80{left:22.571979px;}
.x87{left:24.515979px;}
.x48{left:29.411979px;}
.x43{left:31.391979px;}
.x9{left:33.479979px;}
.x79{left:34.955979px;}
.x73{left:36.071979px;}
.x10{left:37.151979px;}
.x85{left:38.699979px;}
.x59{left:40.031979px;}
.x11{left:44.135979px;}
.x16{left:46.007979px;}
.x8{left:47.627979px;}
.xe{left:49.895979px;}
.x74{left:52.235979px;}
.x62{left:55.583979px;}
.x63{left:56.807979px;}
.x36{left:61.199979px;}
.x51{left:62.891979px;}
.x5a{left:69.371979px;}
.x37{left:71.567979px;}
.x84{left:73.007979px;}
.x75{left:77.687979px;}
.x21{left:79.091979px;}
.x66{left:81.467979px;}
.x54{left:84.455979px;}
.x30{left:87.155979px;}
.x82{left:88.379979px;}
.x2e{left:94.715979px;}
.x1e{left:98.819979px;}
.x81{left:103.607979px;}
.x6{left:109.799979px;}
.x83{left:123.551979px;}
.x4a{left:129.815979px;}
.x4c{left:162.974979px;}
.x4e{left:167.429979px;}
.x70{left:178.664979px;}
.x53{left:179.924979px;}
.x33{left:193.349979px;}
.xc{left:196.844979px;}
.x19{left:201.929979px;}
.x32{left:210.449979px;}
.x40{left:215.309979px;}
.x4f{left:223.559979px;}
.x3a{left:225.104979px;}
.x3f{left:236.159979px;}
.x1{left:239.969979px;}
.x5{left:247.784979px;}
.x4b{left:250.169979px;}
.x6f{left:256.964979px;}
.x7b{left:266.249979px;}
.x50{left:276.764979px;}
.x1a{left:287.744979px;}
.x78{left:290.339979px;}
.x7a{left:293.684979px;}
.x64{left:301.109979px;}
.x77{left:317.774979px;}
.x3d{left:320.969979px;}
.x2b{left:324.869979px;}
.x61{left:347.399979px;}
.x14{left:348.449979px;}
.x60{left:364.574979px;}
.x22{left:369.434979px;}
.x23{left:382.934979px;}
.x17{left:392.789979px;}
.x24{left:396.794979px;}
.x1b{left:404.354979px;}
.x4d{left:452.729979px;}
.x5b{left:497.879979px;}
.xa{left:505.874979px;}
.x1d{left:519.689979px;}
.x47{left:558.509979px;}
.x39{left:596.909979px;}
.x7f{left:622.589979px;}
.x41{left:645.869979px;}
.x15{left:656.429979px;}
.x42{left:662.039979px;}
.x7e{left:666.104979px;}
.x72{left:678.989979px;}
.x31{left:684.614979px;}
.x55{left:686.909979px;}
.x71{left:692.489979px;}
.x56{left:696.089979px;}
.x26{left:704.669979px;}
.x76{left:708.554979px;}
.x25{left:722.129979px;}
.x89{left:741.704979px;}
.xd{left:759.674979px;}
.x1f{left:772.949979px;}
.x7d{left:776.414979px;}
.x4{left:798.509979px;}
.x6c{left:817.919979px;}
.x7c{left:826.949979px;}
.x69{left:838.004979px;}
.x6e{left:839.009979px;}
.x6d{left:842.789979px;}
.x3b{left:851.324979px;}
.x88{left:868.289979px;}
.x38{left:872.819979px;}
.x1c{left:888.479979px;}
.x5c{left:909.509979px;}
.x67{left:912.569979px;}
.x49{left:923.069979px;}
.x46{left:961.814979px;}
.x5d{left:970.709979px;}
.x68{left:973.049979px;}
.x2{left:984.929979px;}
.xb{left:992.159979px;}
.x44{left:1017.149979px;}
.x58{left:1018.649979px;}
.x6b{left:1026.074979px;}
.x45{left:1039.319979px;}
.x18{left:1040.969979px;}
.x27{left:1056.134979px;}
.x65{left:1070.639979px;}
.x6a{left:1078.739979px;}
.x3c{left:1163.669979px;}
.xf{left:1165.934979px;}
.x34{left:1184.939979px;}
.x35{left:1189.439979px;}
.x20{left:1200.269979px;}
.x57{left:1203.989979px;}
.x3{left:1211.759979px;}
.x86{left:1218.959979px;}
.x52{left:1226.984979px;}
.x28{left:1247.399979px;}
.x29{left:1251.899979px;}
.x2a{left:1254.389979px;}
.x2f{left:1332.539979px;}
.x13{left:1336.139979px;}
.x2d{left:1338.449979px;}
.x5e{left:1410.044979px;}
@media print{
.v4{vertical-align:-82.560000pt;}
.v2{vertical-align:-28.800000pt;}
.v3{vertical-align:-1.440000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.896000pt;}
.v9{vertical-align:1.920000pt;}
.v8{vertical-align:13.173333pt;}
.v1{vertical-align:28.800000pt;}
.v7{vertical-align:59.904000pt;}
.va{vertical-align:62.592000pt;}
.v5{vertical-align:115.306667pt;}
.ls20{letter-spacing:-3.866667pt;}
.ls19{letter-spacing:-1.893333pt;}
.ls14{letter-spacing:-1.184000pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls43{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.317867pt;}
.ls49{letter-spacing:-0.272533pt;}
.ls1a{letter-spacing:-0.272000pt;}
.ls3c{letter-spacing:-0.259733pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.230400pt;}
.ls36{letter-spacing:-0.203733pt;}
.ls33{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls4e{letter-spacing:-0.099733pt;}
.ls55{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.085867pt;}
.ls53{letter-spacing:-0.081067pt;}
.ls27{letter-spacing:-0.080000pt;}
.ls1{letter-spacing:-0.034827pt;}
.ls21{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.023680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.004480pt;}
.lsc{letter-spacing:0.026987pt;}
.ls10{letter-spacing:0.032000pt;}
.ls44{letter-spacing:0.064256pt;}
.ls41{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.116800pt;}
.ls52{letter-spacing:0.125333pt;}
.ls45{letter-spacing:0.126933pt;}
.ls24{letter-spacing:0.137600pt;}
.ls3d{letter-spacing:0.157333pt;}
.ls3a{letter-spacing:0.161280pt;}
.ls39{letter-spacing:0.163733pt;}
.ls54{letter-spacing:0.168533pt;}
.ls4a{letter-spacing:0.180267pt;}
.ls23{letter-spacing:0.188800pt;}
.lsb{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.203733pt;}
.ls2e{letter-spacing:0.218133pt;}
.ls22{letter-spacing:0.220267pt;}
.lsa{letter-spacing:0.239467pt;}
.ls6{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.265067pt;}
.ls2c{letter-spacing:0.272533pt;}
.ls25{letter-spacing:0.288000pt;}
.ls4d{letter-spacing:0.295467pt;}
.ls29{letter-spacing:0.298133pt;}
.ls1f{letter-spacing:0.303467pt;}
.ls28{letter-spacing:0.317333pt;}
.ls42{letter-spacing:0.320000pt;}
.ls51{letter-spacing:14.400000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls38{letter-spacing:40.751360pt;}
.ls37{letter-spacing:40.809600pt;}
.ls50{letter-spacing:47.347200pt;}
.ls4f{letter-spacing:47.392000pt;}
.ls7{letter-spacing:86.675200pt;}
.ls8{letter-spacing:86.720000pt;}
.ls2f{letter-spacing:86.835200pt;}
.ls9{letter-spacing:86.880000pt;}
.ls31{letter-spacing:101.376000pt;}
.ls1c{letter-spacing:106.547200pt;}
.ls1b{letter-spacing:106.592000pt;}
.ls3e{letter-spacing:106.720000pt;}
.ls2d{letter-spacing:113.600000pt;}
.ls1e{letter-spacing:115.155200pt;}
.ls1d{letter-spacing:115.200000pt;}
.ls2a{letter-spacing:139.763200pt;}
.ls2b{letter-spacing:139.808000pt;}
.ls4c{letter-spacing:139.891200pt;}
.ls4b{letter-spacing:139.936000pt;}
.ls40{letter-spacing:154.547200pt;}
.ls47{letter-spacing:154.581333pt;}
.ls3f{letter-spacing:154.592000pt;}
.ls48{letter-spacing:154.675200pt;}
.ls46{letter-spacing:154.720000pt;}
.ws2e{word-spacing:-58.394880pt;}
.ws7e{word-spacing:-54.045952pt;}
.ws47{word-spacing:-43.392000pt;}
.ws85{word-spacing:-41.490944pt;}
.ws7f{word-spacing:-41.455360pt;}
.ws92{word-spacing:-40.893952pt;}
.ws57{word-spacing:-38.647808pt;}
.ws69{word-spacing:-38.618880pt;}
.ws93{word-spacing:-38.088192pt;}
.ws86{word-spacing:-38.053120pt;}
.ws3a{word-spacing:-35.619584pt;}
.ws39{word-spacing:-35.584000pt;}
.ws41{word-spacing:-33.730048pt;}
.ws40{word-spacing:-33.701120pt;}
.ws7d{word-spacing:-31.682347pt;}
.ws79{word-spacing:-29.928491pt;}
.ws75{word-spacing:-29.807573pt;}
.ws7a{word-spacing:-29.748224pt;}
.ws71{word-spacing:-29.712640pt;}
.ws84{word-spacing:-29.688960pt;}
.ws48{word-spacing:-28.956928pt;}
.ws4a{word-spacing:-26.723584pt;}
.ws49{word-spacing:-26.688000pt;}
.ws3f{word-spacing:-26.304000pt;}
.ws6a{word-spacing:-24.183808pt;}
.ws5b{word-spacing:-24.154880pt;}
.ws2f{word-spacing:-21.724928pt;}
.ws37{word-spacing:-21.706240pt;}
.ws32{word-spacing:-21.696000pt;}
.ws4{word-spacing:-21.664000pt;}
.ws36{word-spacing:-20.852224pt;}
.ws34{word-spacing:-20.816640pt;}
.ws6c{word-spacing:-18.160000pt;}
.ws66{word-spacing:-18.080000pt;}
.ws50{word-spacing:-17.646080pt;}
.ws4f{word-spacing:-17.141013pt;}
.ws45{word-spacing:-16.951808pt;}
.ws2d{word-spacing:-16.922880pt;}
.ws55{word-spacing:-14.802944pt;}
.wsd{word-spacing:-14.672427pt;}
.ws4e{word-spacing:-14.656000pt;}
.ws6d{word-spacing:-14.619861pt;}
.ws0{word-spacing:-14.589952pt;}
.ws3{word-spacing:-14.554880pt;}
.ws6e{word-spacing:-14.492928pt;}
.ws4d{word-spacing:-14.464000pt;}
.ws68{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.152000pt;}
.ws2c{word-spacing:-12.880000pt;}
.ws28{word-spacing:-11.956224pt;}
.wsa{word-spacing:-11.920640pt;}
.ws63{word-spacing:-11.426560pt;}
.ws3e{word-spacing:-10.768000pt;}
.ws5f{word-spacing:-8.552853pt;}
.ws60{word-spacing:-8.389120pt;}
.ws61{word-spacing:-8.129387pt;}
.ws80{word-spacing:-2.928000pt;}
.ws73{word-spacing:-2.515413pt;}
.ws5d{word-spacing:-2.267093pt;}
.ws5e{word-spacing:-2.247680pt;}
.ws6f{word-spacing:-2.109867pt;}
.ws87{word-spacing:-2.052181pt;}
.ws83{word-spacing:-1.908693pt;}
.ws78{word-spacing:-1.896960pt;}
.ws81{word-spacing:-1.838080pt;}
.ws7b{word-spacing:-1.779413pt;}
.ws72{word-spacing:-1.632683pt;}
.ws77{word-spacing:-1.612160pt;}
.ws70{word-spacing:-1.375360pt;}
.ws82{word-spacing:-1.184427pt;}
.ws51{word-spacing:-1.126613pt;}
.ws3c{word-spacing:-1.104469pt;}
.ws67{word-spacing:-1.104384pt;}
.ws59{word-spacing:-1.006720pt;}
.ws74{word-spacing:-0.954240pt;}
.ws5c{word-spacing:-0.928213pt;}
.ws35{word-spacing:-0.897920pt;}
.ws30{word-spacing:-0.881920pt;}
.ws3b{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.651733pt;}
.ws52{word-spacing:-0.616320pt;}
.ws31{word-spacing:-0.598400pt;}
.ws7c{word-spacing:-0.391680pt;}
.ws3d{word-spacing:-0.295765pt;}
.ws76{word-spacing:-0.272960pt;}
.ws8a{word-spacing:-0.195520pt;}
.ws10{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.087680pt;}
.ws6{word-spacing:0.000000pt;}
.ws44{word-spacing:0.014763pt;}
.ws56{word-spacing:0.082837pt;}
.ws4c{word-spacing:0.122112pt;}
.ws1{word-spacing:0.124480pt;}
.ws2{word-spacing:0.124928pt;}
.ws90{word-spacing:0.128000pt;}
.ws8b{word-spacing:0.137216pt;}
.ws8f{word-spacing:0.176000pt;}
.ws46{word-spacing:0.225067pt;}
.ws7{word-spacing:0.234667pt;}
.ws43{word-spacing:0.267307pt;}
.ws58{word-spacing:0.289024pt;}
.ws2b{word-spacing:0.365824pt;}
.ws4b{word-spacing:0.385280pt;}
.ws89{word-spacing:0.415360pt;}
.ws29{word-spacing:0.436565pt;}
.ws27{word-spacing:0.472000pt;}
.ws5a{word-spacing:0.606080pt;}
.ws8{word-spacing:0.736000pt;}
.ws9{word-spacing:1.024000pt;}
.ws38{word-spacing:1.269333pt;}
.ws91{word-spacing:1.312000pt;}
.ws53{word-spacing:1.440000pt;}
.ws65{word-spacing:1.550080pt;}
.ws8c{word-spacing:3.674667pt;}
.ws8d{word-spacing:4.048000pt;}
.ws8e{word-spacing:4.064000pt;}
.ws2a{word-spacing:4.182315pt;}
.ws62{word-spacing:10.510080pt;}
.ws1b{word-spacing:24.704000pt;}
.ws25{word-spacing:25.056000pt;}
.ws14{word-spacing:25.872128pt;}
.ws1d{word-spacing:25.883435pt;}
.ws16{word-spacing:26.116949pt;}
.ws15{word-spacing:26.143531pt;}
.ws17{word-spacing:26.209024pt;}
.wse{word-spacing:27.136000pt;}
.wsf{word-spacing:27.936000pt;}
.ws13{word-spacing:46.432000pt;}
.ws12{word-spacing:46.624000pt;}
.ws11{word-spacing:47.786667pt;}
.ws21{word-spacing:56.352000pt;}
.ws1e{word-spacing:56.736000pt;}
.ws20{word-spacing:57.088000pt;}
.ws22{word-spacing:57.194667pt;}
.ws24{word-spacing:58.016000pt;}
.ws1f{word-spacing:58.026667pt;}
.ws23{word-spacing:59.296000pt;}
.ws54{word-spacing:65.792000pt;}
.ws26{word-spacing:81.772672pt;}
.ws1c{word-spacing:81.824000pt;}
.ws18{word-spacing:95.082667pt;}
.ws1a{word-spacing:96.330667pt;}
.ws19{word-spacing:96.960000pt;}
.ws88{word-spacing:199.744000pt;}
.ws64{word-spacing:335.096533pt;}
.ws42{word-spacing:861.179520pt;}
.wsb{word-spacing:1140.970667pt;}
.ws6b{word-spacing:1849.996587pt;}
._24{margin-left:-4189.882027pt;}
._2d{margin-left:-1331.253333pt;}
._1b{margin-left:-501.653333pt;}
._19{margin-left:-476.053333pt;}
._20{margin-left:-450.080000pt;}
._1c{margin-left:-429.066667pt;}
._13{margin-left:-416.538667pt;}
._2{margin-left:-21.099520pt;}
._28{margin-left:-15.580373pt;}
._35{margin-left:-14.412160pt;}
._22{margin-left:-11.184000pt;}
._14{margin-left:-9.805227pt;}
._6{margin-left:-7.864320pt;}
._9{margin-left:-6.819840pt;}
._23{margin-left:-5.041920pt;}
._0{margin-left:-4.101120pt;}
._17{margin-left:-3.098240pt;}
._5{margin-left:-2.096640pt;}
._1{margin-left:-1.196160pt;}
._4{width:1.244800pt;}
._7{width:2.471040pt;}
._3{width:3.471360pt;}
._2e{width:6.785280pt;}
._a{width:8.410027pt;}
._2a{width:10.443307pt;}
._1d{width:12.108160pt;}
._1f{width:13.072000pt;}
._34{width:14.726827pt;}
._8{width:16.361600pt;}
._33{width:17.728853pt;}
._15{width:20.948267pt;}
._25{width:22.976000pt;}
._11{width:25.866667pt;}
._2f{width:27.466667pt;}
._f{width:28.514773pt;}
._30{width:29.583573pt;}
._32{width:30.689067pt;}
._31{width:34.677333pt;}
._16{width:36.981333pt;}
._1a{width:53.372203pt;}
._26{width:54.361387pt;}
._29{width:56.843904pt;}
._e{width:60.043307pt;}
._21{width:61.268267pt;}
._1e{width:68.726187pt;}
._12{width:81.868800pt;}
._10{width:96.160000pt;}
._27{width:101.333376pt;}
._2b{width:599.308800pt;}
._18{width:638.707627pt;}
._d{width:655.507413pt;}
._2c{width:687.249707pt;}
._c{width:773.150507pt;}
._b{width:1050.220587pt;}
.fs1d{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs1c{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fsf{font-size:43.008000pt;}
.fs8{font-size:48.000000pt;}
.fs1e{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs9{font-size:56.320000pt;}
.fs23{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs25{font-size:64.128000pt;}
.fs1f{font-size:66.560000pt;}
.fs20{font-size:66.688000pt;}
.fs5{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs14{font-size:78.080000pt;}
.fs22{font-size:80.000000pt;}
.fs1a{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs11{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fs21{font-size:112.000000pt;}
.fsd{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fs27{font-size:138.880000pt;}
.fs28{font-size:139.008000pt;}
.fs18{font-size:149.120000pt;}
.fs17{font-size:149.248000pt;}
.fs26{font-size:160.000000pt;}
.fs0{font-size:170.880000pt;}
.fs1b{font-size:171.008000pt;}
.fs19{font-size:192.000000pt;}
.fs16{font-size:192.128000pt;}
.fs24{font-size:197.248000pt;}
.fs2{font-size:202.880000pt;}
.fs1{font-size:203.008000pt;}
.fsa{font-size:213.120000pt;}
.fs10{font-size:213.248000pt;}
.fs29{font-size:229.120000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:4.960000pt;}
.yc5{bottom:10.080000pt;}
.y80{bottom:10.944000pt;}
.y87{bottom:19.776000pt;}
.ya5{bottom:20.416000pt;}
.y88{bottom:20.864000pt;}
.yb6{bottom:25.632000pt;}
.y5f{bottom:25.824000pt;}
.y11{bottom:26.368000pt;}
.y31{bottom:26.688000pt;}
.yd{bottom:27.168000pt;}
.yc{bottom:27.392000pt;}
.yb1{bottom:27.808000pt;}
.y60{bottom:28.000000pt;}
.y22{bottom:29.312000pt;}
.yc4{bottom:29.408000pt;}
.y14{bottom:29.632000pt;}
.yd2{bottom:32.224000pt;}
.y73{bottom:32.800000pt;}
.y7b{bottom:34.368000pt;}
.y10{bottom:35.968000pt;}
.y125{bottom:36.000000pt;}
.yd9{bottom:38.176000pt;}
.y30{bottom:39.488000pt;}
.yc3{bottom:40.608000pt;}
.yb5{bottom:41.312000pt;}
.y13{bottom:42.464000pt;}
.yd1{bottom:43.424000pt;}
.yb0{bottom:43.520000pt;}
.yf{bottom:45.568000pt;}
.y97{bottom:47.872000pt;}
.y107{bottom:51.168000pt;}
.y124{bottom:52.000000pt;}
.y2f{bottom:52.288000pt;}
.y99{bottom:52.832000pt;}
.ye1{bottom:53.536000pt;}
.y113{bottom:54.336000pt;}
.y72{bottom:55.232000pt;}
.y12{bottom:55.264000pt;}
.y7a{bottom:56.800000pt;}
.y85{bottom:58.496000pt;}
.yb{bottom:59.904000pt;}
.ya{bottom:61.184000pt;}
.yc7{bottom:63.616000pt;}
.yda{bottom:65.728000pt;}
.y123{bottom:68.032000pt;}
.yf7{bottom:71.488000pt;}
.yaa{bottom:77.088000pt;}
.y9{bottom:77.184000pt;}
.y128{bottom:79.712000pt;}
.y122{bottom:84.032000pt;}
.yf6{bottom:84.640000pt;}
.ye2{bottom:92.896000pt;}
.y8{bottom:93.216000pt;}
.ybe{bottom:93.664000pt;}
.y127{bottom:94.112000pt;}
.y4b{bottom:95.392000pt;}
.y106{bottom:97.152000pt;}
.yfa{bottom:98.752000pt;}
.y121{bottom:100.032000pt;}
.y8c{bottom:108.160000pt;}
.y126{bottom:108.512000pt;}
.y7{bottom:109.216000pt;}
.y112{bottom:114.848000pt;}
.ycf{bottom:115.424000pt;}
.ya9{bottom:115.520000pt;}
.ybd{bottom:116.064000pt;}
.y105{bottom:116.352000pt;}
.yf5{bottom:116.672000pt;}
.y6b{bottom:117.408000pt;}
.yd6{bottom:118.304000pt;}
.ye9{bottom:118.880000pt;}
.ycc{bottom:126.560000pt;}
.y94{bottom:130.592000pt;}
.yf9{bottom:130.752000pt;}
.y5a{bottom:131.296000pt;}
.y6f{bottom:133.120000pt;}
.y4a{bottom:133.786667pt;}
.yc2{bottom:135.680000pt;}
.ybc{bottom:138.466667pt;}
.yb4{bottom:144.706667pt;}
.y8b{bottom:146.560000pt;}
.y120{bottom:147.106667pt;}
.yf4{bottom:148.666667pt;}
.yed{bottom:150.946667pt;}
.y77{bottom:154.306667pt;}
.yc1{bottom:158.080000pt;}
.y93{bottom:158.106667pt;}
.y21{bottom:158.653333pt;}
.y69{bottom:159.546667pt;}
.ybb{bottom:160.866667pt;}
.ya8{bottom:161.920000pt;}
.y19{bottom:164.133333pt;}
.y1b{bottom:166.400000pt;}
.y39{bottom:166.786667pt;}
.yb3{bottom:167.133333pt;}
.y7f{bottom:169.600000pt;}
.y49{bottom:172.186667pt;}
.y3e{bottom:173.733333pt;}
.y20{bottom:174.653333pt;}
.y11b{bottom:179.013333pt;}
.y9e{bottom:179.866667pt;}
.yc0{bottom:180.506667pt;}
.ya0{bottom:180.613333pt;}
.y6{bottom:183.066667pt;}
.yba{bottom:183.266667pt;}
.yfb{bottom:185.346667pt;}
.yee{bottom:185.413333pt;}
.y92{bottom:185.786667pt;}
.yaf{bottom:188.800000pt;}
.y2d{bottom:189.413333pt;}
.y1f{bottom:190.653333pt;}
.y100{bottom:192.453333pt;}
.y18{bottom:192.933333pt;}
.y59{bottom:193.026667pt;}
.y11f{bottom:193.693333pt;}
.y1a{bottom:195.200000pt;}
.y68{bottom:195.653333pt;}
.y38{bottom:198.786667pt;}
.ybf{bottom:202.906667pt;}
.y136{bottom:203.200000pt;}
.y5{bottom:203.226667pt;}
.yb9{bottom:205.666667pt;}
.y3d{bottom:205.733333pt;}
.y1e{bottom:206.653333pt;}
.y65{bottom:207.520000pt;}
.y9d{bottom:208.666667pt;}
.y86{bottom:209.093333pt;}
.y9f{bottom:209.413333pt;}
.yca{bottom:210.053333pt;}
.y48{bottom:210.586667pt;}
.y91{bottom:213.346667pt;}
.y2c{bottom:218.213333pt;}
.yff{bottom:221.253333pt;}
.y1d{bottom:222.653333pt;}
.y6e{bottom:222.746667pt;}
.y11a{bottom:227.013333pt;}
.y37{bottom:230.786667pt;}
.y135{bottom:232.000000pt;}
.yb2{bottom:235.746667pt;}
.y33{bottom:235.933333pt;}
.y4f{bottom:236.573333pt;}
.y9c{bottom:237.506667pt;}
.y111{bottom:237.600000pt;}
.y3c{bottom:237.760000pt;}
.y11e{bottom:240.413333pt;}
.y90{bottom:241.026667pt;}
.y4{bottom:244.826667pt;}
.y64{bottom:245.373333pt;}
.yae{bottom:246.400000pt;}
.y2b{bottom:247.013333pt;}
.y47{bottom:249.026667pt;}
.y42{bottom:249.213333pt;}
.yfe{bottom:250.080000pt;}
.yb8{bottom:250.493333pt;}
.ye4{bottom:252.026667pt;}
.y58{bottom:258.746667pt;}
.y134{bottom:260.800000pt;}
.y9b{bottom:266.306667pt;}
.y8f{bottom:268.546667pt;}
.yb7{bottom:272.893333pt;}
.y2a{bottom:275.813333pt;}
.y119{bottom:279.840000pt;}
.y63{bottom:281.786667pt;}
.y11d{bottom:286.973333pt;}
.y46{bottom:287.426667pt;}
.y17{bottom:291.586667pt;}
.ye3{bottom:295.226667pt;}
.y8e{bottom:296.226667pt;}
.ya3{bottom:298.373333pt;}
.yad{bottom:304.026667pt;}
.y10b{bottom:304.386667pt;}
.y104{bottom:305.413333pt;}
.yf8{bottom:305.733333pt;}
.yf0{bottom:306.373333pt;}
.y6d{bottom:312.386667pt;}
.yeb{bottom:312.826667pt;}
.yd8{bottom:316.573333pt;}
.y16{bottom:320.413333pt;}
.y57{bottom:320.480000pt;}
.yd5{bottom:322.720000pt;}
.y8d{bottom:323.746667pt;}
.y45{bottom:325.826667pt;}
.y8a{bottom:326.306667pt;}
.ya2{bottom:327.173333pt;}
.y7e{bottom:329.600000pt;}
.y4e{bottom:332.960000pt;}
.y29{bottom:333.440000pt;}
.y110{bottom:333.626667pt;}
.y75{bottom:335.453333pt;}
.y78{bottom:338.560000pt;}
.y118{bottom:342.240000pt;}
.yea{bottom:342.493333pt;}
.y11c{bottom:342.720000pt;}
.ycb{bottom:343.613333pt;}
.y84{bottom:345.026667pt;}
.yd7{bottom:345.373333pt;}
.y3{bottom:348.026667pt;}
.ya1{bottom:355.973333pt;}
.ycd{bottom:359.293333pt;}
.yac{bottom:361.626667pt;}
.y28{bottom:362.240000pt;}
.y44{bottom:364.226667pt;}
.y133{bottom:368.960000pt;}
.ydd{bottom:379.973333pt;}
.y10f{bottom:381.626667pt;}
.y117{bottom:390.240000pt;}
.y27{bottom:391.040000pt;}
.y43{bottom:393.093333pt;}
.ye7{bottom:394.146667pt;}
.y56{bottom:399.520000pt;}
.y10a{bottom:400.386667pt;}
.yf3{bottom:401.826667pt;}
.y6c{bottom:401.986667pt;}
.y2{bottom:402.786667pt;}
.y132{bottom:406.400000pt;}
.yc9{bottom:414.306667pt;}
.yab{bottom:419.226667pt;}
.y26{bottom:419.840000pt;}
.ydc{bottom:423.173333pt;}
.y4d{bottom:426.746667pt;}
.y10e{bottom:429.626667pt;}
.yfd{bottom:431.653333pt;}
.yf2{bottom:433.853333pt;}
.y67{bottom:435.653333pt;}
.y41{bottom:436.933333pt;}
.y36{bottom:436.960000pt;}
.ye6{bottom:437.373333pt;}
.y12d{bottom:438.173333pt;}
.y116{bottom:438.266667pt;}
.y62{bottom:441.213333pt;}
.y6a{bottom:443.360000pt;}
.y131{bottom:443.840000pt;}
.y109{bottom:448.413333pt;}
.y55{bottom:450.693333pt;}
.y1{bottom:455.586667pt;}
.y40{bottom:459.333333pt;}
.ydb{bottom:462.240000pt;}
.y61{bottom:470.013333pt;}
.y103{bottom:473.626667pt;}
.y3b{bottom:474.146667pt;}
.yef{bottom:474.173333pt;}
.ye5{bottom:476.413333pt;}
.y7d{bottom:477.440000pt;}
.y25{bottom:477.466667pt;}
.y12c{bottom:478.493333pt;}
.y83{bottom:479.426667pt;}
.y115{bottom:486.266667pt;}
.ya7{bottom:497.373333pt;}
.y74{bottom:501.600000pt;}
.y102{bottom:502.426667pt;}
.y76{bottom:504.546667pt;}
.y130{bottom:506.106667pt;}
.y24{bottom:506.266667pt;}
.yce{bottom:507.520000pt;}
.y34{bottom:511.773333pt;}
.y54{bottom:514.466667pt;}
.y5b{bottom:518.106667pt;}
.y12b{bottom:518.813333pt;}
.y51{bottom:520.480000pt;}
.y3a{bottom:521.893333pt;}
.y7c{bottom:522.240000pt;}
.y10d{bottom:525.666667pt;}
.y101{bottom:531.226667pt;}
.y23{bottom:535.066667pt;}
.y114{bottom:539.066667pt;}
.y53{bottom:543.266667pt;}
.y12f{bottom:543.546667pt;}
.ydf{bottom:543.933333pt;}
.y108{bottom:544.413333pt;}
.y15{bottom:553.186667pt;}
.y12a{bottom:559.173333pt;}
.y70{bottom:560.506667pt;}
.y50{bottom:570.426667pt;}
.yd0{bottom:570.493333pt;}
.ya6{bottom:570.586667pt;}
.y52{bottom:572.093333pt;}
.y10c{bottom:573.666667pt;}
.y12e{bottom:580.986667pt;}
.yde{bottom:582.560000pt;}
.yec{bottom:583.040000pt;}
.yd4{bottom:596.160000pt;}
.yf1{bottom:596.320000pt;}
.yfc{bottom:600.000000pt;}
.y3f{bottom:600.226667pt;}
.y5e{bottom:600.986667pt;}
.y79{bottom:602.146667pt;}
.y82{bottom:604.320000pt;}
.y89{bottom:608.666667pt;}
.y129{bottom:622.746667pt;}
.ya4{bottom:629.186667pt;}
.ye{bottom:637.533333pt;}
.y1c{bottom:639.013333pt;}
.y35{bottom:648.026667pt;}
.y66{bottom:648.226667pt;}
.y5d{bottom:655.546667pt;}
.y5c{bottom:656.866667pt;}
.y32{bottom:659.173333pt;}
.yc8{bottom:659.386667pt;}
.y81{bottom:659.586667pt;}
.y71{bottom:661.280000pt;}
.y9a{bottom:661.693333pt;}
.y98{bottom:663.426667pt;}
.y4c{bottom:664.386667pt;}
.y95{bottom:665.120000pt;}
.yd3{bottom:666.813333pt;}
.y96{bottom:667.040000pt;}
.ye8{bottom:667.226667pt;}
.ye0{bottom:667.293333pt;}
.y2e{bottom:667.426667pt;}
.h3c{height:22.027500pt;}
.h3b{height:29.870000pt;}
.hc{height:31.828125pt;}
.h9{height:36.046875pt;}
.h7{height:39.891875pt;}
.h6{height:39.988000pt;}
.ha{height:41.690000pt;}
.hd{height:44.722500pt;}
.h16{height:44.856000pt;}
.h24{height:47.742188pt;}
.h3d{height:51.769687pt;}
.h40{height:53.689687pt;}
.h12{height:55.402500pt;}
.h38{height:55.536000pt;}
.h5{height:56.233125pt;}
.h43{height:60.288750pt;}
.h33{height:63.656250pt;}
.h13{height:65.531250pt;}
.h47{height:65.662312pt;}
.h2d{height:66.750000pt;}
.h3e{height:68.152500pt;}
.h3f{height:68.283563pt;}
.h14{height:72.093750pt;}
.h15{height:72.189875pt;}
.h18{height:74.477812pt;}
.h2c{height:74.605125pt;}
.h4{height:76.175000pt;}
.h35{height:77.660625pt;}
.h1b{height:78.097500pt;}
.h1c{height:78.231000pt;}
.h42{height:79.570312pt;}
.h1d{height:81.435000pt;}
.h37{height:88.777500pt;}
.h36{height:93.562500pt;}
.h11{height:95.484375pt;}
.hf{height:95.611688pt;}
.h8{height:98.296875pt;}
.h21{height:98.427937pt;}
.h31{height:100.125000pt;}
.h32{height:100.258500pt;}
.h4c{height:104.295625pt;}
.h4d{height:104.391750pt;}
.h23{height:104.626500pt;}
.h20{height:106.305937pt;}
.h3a{height:106.433250pt;}
.h41{height:111.398438pt;}
.h19{height:111.472500pt;}
.h1a{height:111.606000pt;}
.h49{height:111.755000pt;}
.h50{height:111.985625pt;}
.h4f{height:112.081750pt;}
.h2f{height:127.312500pt;}
.h30{height:127.439813pt;}
.h1{height:128.326875pt;}
.he{height:131.062500pt;}
.h1e{height:133.500000pt;}
.h1f{height:133.633500pt;}
.h22{height:144.283625pt;}
.h44{height:148.128625pt;}
.h27{height:148.319063pt;}
.h26{height:148.446375pt;}
.h3{height:152.358125pt;}
.h2{height:152.454250pt;}
.h29{height:152.687812pt;}
.h2a{height:152.818875pt;}
.h4a{height:155.527500pt;}
.h4b{height:155.661000pt;}
.h46{height:158.076375pt;}
.hb{height:160.048125pt;}
.h17{height:160.144250pt;}
.h48{height:163.828125pt;}
.h2b{height:165.861146pt;}
.h45{height:169.962187pt;}
.h39{height:170.089500pt;}
.h4e{height:172.063750pt;}
.h2e{height:190.968750pt;}
.h34{height:200.250000pt;}
.h10{height:210.918354pt;}
.h28{height:222.277500pt;}
.h25{height:222.411000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.599981pt;}
.x12{left:12.255981pt;}
.x3e{left:13.727981pt;}
.x5f{left:15.903981pt;}
.x2c{left:17.375981pt;}
.x80{left:20.063981pt;}
.x87{left:21.791981pt;}
.x48{left:26.143981pt;}
.x43{left:27.903981pt;}
.x9{left:29.759981pt;}
.x79{left:31.071981pt;}
.x73{left:32.063981pt;}
.x10{left:33.023981pt;}
.x85{left:34.399981pt;}
.x59{left:35.583981pt;}
.x11{left:39.231981pt;}
.x16{left:40.895981pt;}
.x8{left:42.335981pt;}
.xe{left:44.351981pt;}
.x74{left:46.431981pt;}
.x62{left:49.407981pt;}
.x63{left:50.495981pt;}
.x36{left:54.399981pt;}
.x51{left:55.903981pt;}
.x5a{left:61.663981pt;}
.x37{left:63.615981pt;}
.x84{left:64.895981pt;}
.x75{left:69.055981pt;}
.x21{left:70.303981pt;}
.x66{left:72.415981pt;}
.x54{left:75.071981pt;}
.x30{left:77.471981pt;}
.x82{left:78.559981pt;}
.x2e{left:84.191981pt;}
.x1e{left:87.839981pt;}
.x81{left:92.095981pt;}
.x6{left:97.599981pt;}
.x83{left:109.823981pt;}
.x4a{left:115.391981pt;}
.x4c{left:144.866648pt;}
.x4e{left:148.826648pt;}
.x70{left:158.813314pt;}
.x53{left:159.933314pt;}
.x33{left:171.866648pt;}
.xc{left:174.973314pt;}
.x19{left:179.493314pt;}
.x32{left:187.066648pt;}
.x40{left:191.386648pt;}
.x4f{left:198.719981pt;}
.x3a{left:200.093314pt;}
.x3f{left:209.919981pt;}
.x1{left:213.306648pt;}
.x5{left:220.253314pt;}
.x4b{left:222.373314pt;}
.x6f{left:228.413314pt;}
.x7b{left:236.666648pt;}
.x50{left:246.013314pt;}
.x1a{left:255.773314pt;}
.x78{left:258.079981pt;}
.x7a{left:261.053314pt;}
.x64{left:267.653314pt;}
.x77{left:282.466648pt;}
.x3d{left:285.306648pt;}
.x2b{left:288.773314pt;}
.x61{left:308.799981pt;}
.x14{left:309.733314pt;}
.x60{left:324.066648pt;}
.x22{left:328.386648pt;}
.x23{left:340.386648pt;}
.x17{left:349.146648pt;}
.x24{left:352.706648pt;}
.x1b{left:359.426648pt;}
.x4d{left:402.426648pt;}
.x5b{left:442.559981pt;}
.xa{left:449.666648pt;}
.x1d{left:461.946648pt;}
.x47{left:496.453314pt;}
.x39{left:530.586648pt;}
.x7f{left:553.413314pt;}
.x41{left:574.106648pt;}
.x15{left:583.493314pt;}
.x42{left:588.479981pt;}
.x7e{left:592.093314pt;}
.x72{left:603.546648pt;}
.x31{left:608.546648pt;}
.x55{left:610.586648pt;}
.x71{left:615.546648pt;}
.x56{left:618.746648pt;}
.x26{left:626.373314pt;}
.x76{left:629.826648pt;}
.x25{left:641.893314pt;}
.x89{left:659.293314pt;}
.xd{left:675.266648pt;}
.x1f{left:687.066648pt;}
.x7d{left:690.146648pt;}
.x4{left:709.786648pt;}
.x6c{left:727.039981pt;}
.x7c{left:735.066648pt;}
.x69{left:744.893314pt;}
.x6e{left:745.786648pt;}
.x6d{left:749.146648pt;}
.x3b{left:756.733314pt;}
.x88{left:771.813314pt;}
.x38{left:775.839981pt;}
.x1c{left:789.759981pt;}
.x5c{left:808.453314pt;}
.x67{left:811.173314pt;}
.x49{left:820.506648pt;}
.x46{left:854.946648pt;}
.x5d{left:862.853314pt;}
.x68{left:864.933314pt;}
.x2{left:875.493314pt;}
.xb{left:881.919981pt;}
.x44{left:904.133314pt;}
.x58{left:905.466648pt;}
.x6b{left:912.066648pt;}
.x45{left:923.839981pt;}
.x18{left:925.306648pt;}
.x27{left:938.786648pt;}
.x65{left:951.679981pt;}
.x6a{left:958.879981pt;}
.x3c{left:1034.373314pt;}
.xf{left:1036.386648pt;}
.x34{left:1053.279981pt;}
.x35{left:1057.279981pt;}
.x20{left:1066.906648pt;}
.x57{left:1070.213314pt;}
.x3{left:1077.119981pt;}
.x86{left:1083.519981pt;}
.x52{left:1090.653314pt;}
.x28{left:1108.799981pt;}
.x29{left:1112.799981pt;}
.x2a{left:1115.013314pt;}
.x2f{left:1184.479981pt;}
.x13{left:1187.679981pt;}
.x2d{left:1189.733314pt;}
.x5e{left:1253.373314pt;}
}




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