
    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_3948566929d2d42b52c8dbbd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.867000;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_bbc0af0c93986dabb669de1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.867000;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_3c87ab0cd9a81cc23c65a1d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_cf9991fa21ba1f134b574aeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_c207c674df55adc63bd1520a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_e0cb91115792a2f123802f87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878000;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_3da2079c9470849f918b58c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_3948566929d2d42b52c8dbbd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.867000;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_2edd21e45f32cbf7f408dab9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.678223;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_bbc0af0c93986dabb669de1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.867000;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_dcc987bbdd187e3c731d6258.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_e9e83fa87288541997691df6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.781000;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.233136,0.000000,-0.047702,0.245407,0,0);-ms-transform:matrix(0.233136,0.000000,-0.047702,0.245407,0,0);-webkit-transform:matrix(0.233136,0.000000,-0.047702,0.245407,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-19.580400px;}
.v6{vertical-align:-15.984000px;}
.v4{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.912000px;}
.v3{vertical-align:16.977000px;}
.v1{vertical-align:19.580400px;}
.ls1e{letter-spacing:-1.528800px;}
.ls42{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-1.176000px;}
.ls43{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.999600px;}
.ls13{letter-spacing:-0.940800px;}
.ls6{letter-spacing:-0.840000px;}
.ls3f{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.705600px;}
.ls16{letter-spacing:-0.646800px;}
.ls10{letter-spacing:-0.588000px;}
.ls11{letter-spacing:-0.529200px;}
.ls3a{letter-spacing:-0.528000px;}
.ls14{letter-spacing:-0.470400px;}
.ls1d{letter-spacing:-0.411600px;}
.ls2c{letter-spacing:-0.352800px;}
.ls22{letter-spacing:-0.294000px;}
.ls3b{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.235200px;}
.ls3d{letter-spacing:-0.192000px;}
.ls17{letter-spacing:-0.176400px;}
.ls3c{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.117600px;}
.ls39{letter-spacing:-0.096000px;}
.ls7{letter-spacing:-0.060000px;}
.lsf{letter-spacing:-0.058800px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.029400px;}
.lsc{letter-spacing:0.058800px;}
.ls0{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.117600px;}
.ls37{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.144000px;}
.lse{letter-spacing:0.176400px;}
.ls36{letter-spacing:0.211200px;}
.ls1a{letter-spacing:0.235200px;}
.ls31{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.294000px;}
.ls38{letter-spacing:0.336000px;}
.ls30{letter-spacing:0.352800px;}
.lsd{letter-spacing:0.411600px;}
.ls41{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.470400px;}
.ls32{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.499800px;}
.ls18{letter-spacing:0.529200px;}
.ls33{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.588000px;}
.ls29{letter-spacing:0.617400px;}
.ls40{letter-spacing:0.624000px;}
.ls2f{letter-spacing:0.646800px;}
.ls35{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.705600px;}
.ls1{letter-spacing:0.735000px;}
.ls19{letter-spacing:0.764400px;}
.ls2a{letter-spacing:0.823200px;}
.ls28{letter-spacing:0.882000px;}
.ls8{letter-spacing:0.940800px;}
.ls2b{letter-spacing:0.999600px;}
.ls5{letter-spacing:6.480000px;}
.ls2d{letter-spacing:126.252000px;}
.ls2e{letter-spacing:131.172000px;}
.ls23{letter-spacing:381.455289px;}
.ls26{letter-spacing:477.280974px;}
.ls27{letter-spacing:484.983079px;}
.ls25{letter-spacing:586.266868px;}
.ls24{letter-spacing:768.792553px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws56{word-spacing:-15.750000px;}
.ws1{word-spacing:-15.280750px;}
.ws3c{word-spacing:-14.700000px;}
.ws58{word-spacing:-12.750000px;}
.ws5a{word-spacing:-7.350000px;}
.ws69{word-spacing:-4.821600px;}
.ws4{word-spacing:-3.780000px;}
.ws23{word-spacing:-3.704400px;}
.ws18{word-spacing:-3.645600px;}
.ws9e{word-spacing:-3.586800px;}
.ws95{word-spacing:-3.528000px;}
.ws6a{word-spacing:-3.469200px;}
.ws9a{word-spacing:-3.234000px;}
.ws60{word-spacing:-3.175200px;}
.ws4f{word-spacing:-3.116400px;}
.ws4e{word-spacing:-3.057600px;}
.wsb1{word-spacing:-3.024000px;}
.wsa{word-spacing:-3.000000px;}
.ws45{word-spacing:-2.998800px;}
.wsad{word-spacing:-2.976000px;}
.ws8e{word-spacing:-2.881200px;}
.ws96{word-spacing:-2.822400px;}
.ws19{word-spacing:-2.763600px;}
.ws61{word-spacing:-2.704800px;}
.ws91{word-spacing:-2.646000px;}
.wsae{word-spacing:-2.544000px;}
.ws80{word-spacing:-2.410800px;}
.ws24{word-spacing:-2.352000px;}
.wsa8{word-spacing:-2.293200px;}
.ws32{word-spacing:-2.234400px;}
.ws93{word-spacing:-2.175600px;}
.wsd{word-spacing:-2.100000px;}
.ws6f{word-spacing:-2.058000px;}
.ws34{word-spacing:-1.999200px;}
.ws68{word-spacing:-1.940400px;}
.ws2b{word-spacing:-1.881600px;}
.ws38{word-spacing:-1.822800px;}
.ws5{word-spacing:-1.800000px;}
.ws15{word-spacing:-1.764000px;}
.ws44{word-spacing:-1.705200px;}
.wsc3{word-spacing:-1.680000px;}
.wsa9{word-spacing:-1.646400px;}
.wsc7{word-spacing:-1.632000px;}
.ws81{word-spacing:-1.587600px;}
.wsb2{word-spacing:-1.488000px;}
.ws2c{word-spacing:-1.470000px;}
.wsaf{word-spacing:-1.440000px;}
.ws92{word-spacing:-1.411200px;}
.ws4b{word-spacing:-1.293600px;}
.ws85{word-spacing:-1.234800px;}
.ws6b{word-spacing:-1.058400px;}
.ws6c{word-spacing:-0.999600px;}
.ws4c{word-spacing:-0.940800px;}
.ws6{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.882000px;}
.ws3e{word-spacing:-0.823200px;}
.ws46{word-spacing:-0.705600px;}
.ws52{word-spacing:-0.588000px;}
.ws9b{word-spacing:-0.529200px;}
.ws11{word-spacing:-0.480000px;}
.ws20{word-spacing:-0.470400px;}
.wsc6{word-spacing:-0.432000px;}
.ws7b{word-spacing:-0.411600px;}
.wsa4{word-spacing:-0.294000px;}
.wsa2{word-spacing:-0.235200px;}
.ws29{word-spacing:-0.176400px;}
.ws14{word-spacing:-0.117600px;}
.ws21{word-spacing:-0.108000px;}
.ws35{word-spacing:-0.058800px;}
.wsc1{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws3d{word-spacing:0.058800px;}
.ws7a{word-spacing:0.117600px;}
.ws7f{word-spacing:0.176400px;}
.ws1a{word-spacing:0.235200px;}
.ws1f{word-spacing:0.294000px;}
.ws66{word-spacing:0.352800px;}
.ws2a{word-spacing:0.411600px;}
.ws5e{word-spacing:0.470400px;}
.ws28{word-spacing:0.529200px;}
.ws8a{word-spacing:0.646800px;}
.ws78{word-spacing:0.705600px;}
.wsbb{word-spacing:0.720000px;}
.ws67{word-spacing:0.764400px;}
.ws42{word-spacing:0.882000px;}
.ws49{word-spacing:0.940800px;}
.ws5d{word-spacing:0.999600px;}
.wsc{word-spacing:1.020000px;}
.ws1b{word-spacing:1.117200px;}
.wsc2{word-spacing:1.200000px;}
.ws4a{word-spacing:1.234800px;}
.wsb6{word-spacing:1.248000px;}
.ws2f{word-spacing:1.293600px;}
.wsac{word-spacing:1.392000px;}
.ws94{word-spacing:1.411200px;}
.ws8f{word-spacing:1.470000px;}
.ws22{word-spacing:1.512000px;}
.ws41{word-spacing:1.528800px;}
.wsbf{word-spacing:1.680000px;}
.ws47{word-spacing:1.705200px;}
.ws48{word-spacing:1.764000px;}
.wsb8{word-spacing:1.776000px;}
.wsa6{word-spacing:1.881600px;}
.ws36{word-spacing:1.940400px;}
.wsb4{word-spacing:1.968000px;}
.wsb7{word-spacing:2.016000px;}
.ws6d{word-spacing:2.058000px;}
.ws53{word-spacing:2.116800px;}
.wsa1{word-spacing:2.175600px;}
.ws8c{word-spacing:2.234400px;}
.wsb{word-spacing:2.340000px;}
.ws7c{word-spacing:2.352000px;}
.ws3b{word-spacing:2.469600px;}
.wsbd{word-spacing:2.496000px;}
.ws3f{word-spacing:2.528400px;}
.wsf{word-spacing:2.640000px;}
.ws7d{word-spacing:2.704800px;}
.wsb3{word-spacing:2.736000px;}
.ws89{word-spacing:2.763600px;}
.wsc4{word-spacing:2.880000px;}
.wsa5{word-spacing:2.940000px;}
.ws13{word-spacing:3.057600px;}
.wsa0{word-spacing:3.116400px;}
.ws98{word-spacing:3.234000px;}
.ws10{word-spacing:3.240000px;}
.ws54{word-spacing:3.292800px;}
.ws64{word-spacing:3.351600px;}
.wsbe{word-spacing:3.360000px;}
.ws2d{word-spacing:3.410400px;}
.ws3{word-spacing:3.480000px;}
.ws8{word-spacing:3.540000px;}
.ws88{word-spacing:3.586800px;}
.wsb5{word-spacing:3.600000px;}
.ws7{word-spacing:3.606257px;}
.ws1d{word-spacing:3.645600px;}
.ws83{word-spacing:3.763200px;}
.ws31{word-spacing:3.939600px;}
.ws65{word-spacing:4.057200px;}
.wsb9{word-spacing:4.080000px;}
.ws37{word-spacing:4.116000px;}
.ws5f{word-spacing:4.174800px;}
.ws1c{word-spacing:4.292400px;}
.ws8d{word-spacing:4.351200px;}
.ws40{word-spacing:4.410000px;}
.ws9d{word-spacing:4.527600px;}
.wsaa{word-spacing:4.608000px;}
.wse{word-spacing:4.620000px;}
.ws87{word-spacing:4.704000px;}
.wsba{word-spacing:4.752000px;}
.wsc5{word-spacing:4.800000px;}
.ws9c{word-spacing:4.821600px;}
.wsbc{word-spacing:4.848000px;}
.ws51{word-spacing:4.880400px;}
.ws76{word-spacing:4.939200px;}
.wsc8{word-spacing:4.944000px;}
.ws50{word-spacing:5.056800px;}
.ws39{word-spacing:5.115600px;}
.ws2e{word-spacing:5.174400px;}
.wsb0{word-spacing:5.184000px;}
.wsc9{word-spacing:5.232000px;}
.ws86{word-spacing:5.233200px;}
.ws79{word-spacing:5.350800px;}
.ws97{word-spacing:5.409600px;}
.ws12{word-spacing:5.460000px;}
.ws27{word-spacing:5.468400px;}
.wsc0{word-spacing:5.616000px;}
.ws1e{word-spacing:5.644800px;}
.wsa7{word-spacing:5.703600px;}
.ws16{word-spacing:5.821200px;}
.ws84{word-spacing:5.880000px;}
.ws63{word-spacing:5.997600px;}
.wsab{word-spacing:6.000000px;}
.ws62{word-spacing:6.115200px;}
.ws30{word-spacing:6.174000px;}
.ws7e{word-spacing:6.350400px;}
.ws4d{word-spacing:6.526800px;}
.ws90{word-spacing:6.585600px;}
.ws82{word-spacing:6.644400px;}
.ws33{word-spacing:6.703200px;}
.ws99{word-spacing:6.820800px;}
.ws6e{word-spacing:6.938400px;}
.ws55{word-spacing:6.997200px;}
.ws3a{word-spacing:7.056000px;}
.ws9f{word-spacing:7.173600px;}
.ws8b{word-spacing:7.291200px;}
.ws17{word-spacing:7.350000px;}
.ws43{word-spacing:7.467600px;}
.ws9{word-spacing:7.500000px;}
.ws75{word-spacing:7.879200px;}
.ws77{word-spacing:8.526000px;}
.ws25{word-spacing:9.702000px;}
.wsa3{word-spacing:9.996000px;}
.ws5b{word-spacing:58.599000px;}
.ws71{word-spacing:69.795000px;}
.ws57{word-spacing:82.416000px;}
.ws72{word-spacing:88.485000px;}
.ws5c{word-spacing:88.536000px;}
.ws73{word-spacing:100.827000px;}
.ws59{word-spacing:112.353000px;}
.ws74{word-spacing:117.402000px;}
.ws70{word-spacing:559.737000px;}
._4{margin-left:-25.311537px;}
._1f{margin-left:-23.782737px;}
._20{margin-left:-20.548737px;}
._10{margin-left:-16.373937px;}
._6{margin-left:-13.002057px;}
._0{margin-left:-10.804421px;}
._5{margin-left:-3.672000px;}
._3{margin-left:-2.592000px;}
._2{margin-left:-1.308000px;}
._1{width:1.008000px;}
._22{width:8.112000px;}
._23{width:10.272000px;}
._21{width:36.288000px;}
._14{width:71.349000px;}
._18{width:76.143000px;}
._c{width:85.731000px;}
._a{width:95.166000px;}
._16{width:101.286000px;}
._e{width:110.670000px;}
._d{width:125.103000px;}
._12{width:126.252000px;}
._1e{width:129.897000px;}
._1a{width:131.223000px;}
._8{width:150.120000px;}
._9{width:151.776000px;}
._13{width:168.096000px;}
._17{width:186.966000px;}
._b{width:188.394000px;}
._19{width:213.843000px;}
._1c{width:227.103000px;}
._1d{width:258.366000px;}
._15{width:314.313000px;}
._7{width:572.196000px;}
._1b{width:591.243000px;}
._11{width:778.788000px;}
._f{width:847.977000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,96,156);}
.fsf{font-size:29.400000px;}
.fs10{font-size:33.600000px;}
.fse{font-size:35.700000px;}
.fsc{font-size:41.160000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:43.200000px;}
.fsa{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:58.800000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:61.122998px;}
.fsb{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:72.305400px;}
.fs4{font-size:120.000000px;}
.y27{bottom:-0.009300px;}
.y0{bottom:0.000000px;}
.y2{bottom:50.025000px;}
.y1{bottom:51.195000px;}
.y26{bottom:100.321500px;}
.ya{bottom:104.901150px;}
.y5f{bottom:107.987400px;}
.ye6{bottom:108.015000px;}
.ya9{bottom:108.063300px;}
.y94{bottom:108.077100px;}
.y7b{bottom:108.084000px;}
.ycc{bottom:108.108000px;}
.y127{bottom:117.799500px;}
.y118{bottom:118.272000px;}
.y149{bottom:127.487400px;}
.y5e{bottom:127.494300px;}
.y193{bottom:127.508100px;}
.ye5{bottom:127.521900px;}
.y7a{bottom:127.528800px;}
.y172{bottom:127.542600px;}
.ya8{bottom:127.570200px;}
.y93{bottom:127.584000px;}
.ycb{bottom:127.614900px;}
.y1ce{bottom:132.233850px;}
.y126{bottom:137.306400px;}
.y117{bottom:137.772000px;}
.y148{bottom:146.994300px;}
.y5d{bottom:147.001200px;}
.y192{bottom:147.015000px;}
.ye4{bottom:147.028800px;}
.y79{bottom:147.035700px;}
.y171{bottom:147.049500px;}
.y92{bottom:147.056400px;}
.ya7{bottom:147.077100px;}
.yca{bottom:147.121800px;}
.y1cd{bottom:148.277850px;}
.y125{bottom:156.813300px;}
.y116{bottom:157.272000px;}
.y32{bottom:163.652100px;}
.y1cc{bottom:164.321850px;}
.y3d{bottom:164.789700px;}
.y147{bottom:166.501200px;}
.y5c{bottom:166.508100px;}
.y191{bottom:166.521900px;}
.ye3{bottom:166.535700px;}
.y78{bottom:166.542600px;}
.y170{bottom:166.556400px;}
.y91{bottom:166.563300px;}
.ya6{bottom:166.584000px;}
.yc9{bottom:166.628700px;}
.y124{bottom:176.320200px;}
.y1cb{bottom:180.377850px;}
.y31{bottom:183.159000px;}
.y3c{bottom:184.296600px;}
.y146{bottom:186.008100px;}
.y5b{bottom:186.015000px;}
.y190{bottom:186.028800px;}
.ye2{bottom:186.042600px;}
.y77{bottom:186.049500px;}
.y16f{bottom:186.063300px;}
.y90{bottom:186.070200px;}
.yc8{bottom:186.135600px;}
.y123{bottom:195.827100px;}
.y115{bottom:196.265100px;}
.y1ca{bottom:196.421850px;}
.y30{bottom:202.665900px;}
.y3b{bottom:203.803500px;}
.y145{bottom:205.515000px;}
.y5a{bottom:205.521900px;}
.y18f{bottom:205.535700px;}
.ye1{bottom:205.549500px;}
.y76{bottom:205.556400px;}
.y16e{bottom:205.570200px;}
.y8f{bottom:205.577100px;}
.yc7{bottom:205.642500px;}
.y1c9{bottom:212.561850px;}
.y122{bottom:215.334000px;}
.y114{bottom:215.772000px;}
.y2f{bottom:222.172800px;}
.y3a{bottom:223.310400px;}
.y144{bottom:225.021900px;}
.y59{bottom:225.028800px;}
.y18e{bottom:225.042600px;}
.ye0{bottom:225.056400px;}
.y75{bottom:225.063300px;}
.y16d{bottom:225.077100px;}
.y8e{bottom:225.084000px;}
.yc6{bottom:225.149400px;}
.y1c8{bottom:228.605850px;}
.y121{bottom:234.827100px;}
.y113{bottom:235.272000px;}
.y2e{bottom:241.679700px;}
.y39{bottom:242.817300px;}
.y143{bottom:244.528800px;}
.y58{bottom:244.535700px;}
.y18d{bottom:244.549500px;}
.ydf{bottom:244.563300px;}
.y74{bottom:244.570200px;}
.y8c{bottom:244.577100px;}
.y8d{bottom:244.584000px;}
.y1c7{bottom:244.649850px;}
.yc5{bottom:244.656300px;}
.y120{bottom:254.334000px;}
.y111{bottom:254.730600px;}
.y112{bottom:254.772000px;}
.y1c6{bottom:260.693850px;}
.y2d{bottom:261.186600px;}
.y38{bottom:262.324200px;}
.y142{bottom:264.035700px;}
.y57{bottom:264.042600px;}
.y18c{bottom:264.056400px;}
.yde{bottom:264.070200px;}
.y73{bottom:264.077100px;}
.y8b{bottom:264.084000px;}
.yc4{bottom:264.163200px;}
.y11f{bottom:273.806400px;}
.y110{bottom:274.237500px;}
.y1c5{bottom:276.737850px;}
.y2c{bottom:280.679700px;}
.y37{bottom:281.803500px;}
.y141{bottom:283.542600px;}
.y56{bottom:283.549500px;}
.y18b{bottom:283.563300px;}
.ydd{bottom:283.577100px;}
.y72{bottom:283.584000px;}
.yc3{bottom:283.670100px;}
.y1c4{bottom:292.781850px;}
.y11e{bottom:293.313300px;}
.y10f{bottom:293.744400px;}
.y2b{bottom:300.186600px;}
.y36{bottom:301.310400px;}
.y16c{bottom:302.952900px;}
.ya5{bottom:303.049500px;}
.y55{bottom:303.056400px;}
.y71{bottom:303.063300px;}
.y8a{bottom:303.070200px;}
.ydc{bottom:303.084000px;}
.yc2{bottom:303.177000px;}
.y1c3{bottom:308.825850px;}
.y11d{bottom:312.820200px;}
.y10e{bottom:313.251300px;}
.y2a{bottom:319.679700px;}
.y35{bottom:320.817300px;}
.y16b{bottom:322.459800px;}
.ya4{bottom:322.556400px;}
.y54{bottom:322.563300px;}
.y70{bottom:322.570200px;}
.y89{bottom:322.577100px;}
.ydb{bottom:322.584000px;}
.yc1{bottom:322.683900px;}
.y1c2{bottom:324.869850px;}
.y11c{bottom:332.327100px;}
.y10d{bottom:332.758200px;}
.y29{bottom:339.186600px;}
.y34{bottom:340.324200px;}
.y1c1{bottom:340.913850px;}
.y16a{bottom:341.966700px;}
.ya3{bottom:342.063300px;}
.y53{bottom:342.070200px;}
.y6f{bottom:342.077100px;}
.y88{bottom:342.084000px;}
.yc0{bottom:342.183900px;}
.y11b{bottom:351.834000px;}
.y10c{bottom:352.265100px;}
.y1c0{bottom:356.957850px;}
.y28{bottom:358.686600px;}
.y33{bottom:359.794200px;}
.y169{bottom:361.473600px;}
.y18a{bottom:361.535700px;}
.ya2{bottom:361.570200px;}
.y52{bottom:361.577100px;}
.y6e{bottom:361.584000px;}
.y11a{bottom:371.332500px;}
.y10b{bottom:371.772000px;}
.y1bf{bottom:373.001850px;}
.y168{bottom:380.980500px;}
.y189{bottom:381.042600px;}
.y6d{bottom:381.070200px;}
.ya1{bottom:381.077100px;}
.y51{bottom:381.084000px;}
.ybf{bottom:381.142500px;}
.y1be{bottom:389.045850px;}
.y119{bottom:390.839400px;}
.y10a{bottom:391.272000px;}
.y167{bottom:400.487400px;}
.y188{bottom:400.549500px;}
.y50{bottom:400.577100px;}
.ya0{bottom:400.584000px;}
.ybe{bottom:400.649400px;}
.y1bd{bottom:405.089850px;}
.y166{bottom:419.994300px;}
.y140{bottom:420.028800px;}
.y187{bottom:420.056400px;}
.y4f{bottom:420.084000px;}
.ybd{bottom:420.156300px;}
.y1bc{bottom:421.133850px;}
.y1bb{bottom:437.177850px;}
.y25{bottom:439.044000px;}
.y6c{bottom:439.398900px;}
.y165{bottom:439.501200px;}
.y9f{bottom:439.535700px;}
.y186{bottom:439.563300px;}
.y87{bottom:439.570200px;}
.y4e{bottom:439.584000px;}
.ybc{bottom:439.663200px;}
.y1ba{bottom:453.221850px;}
.y6b{bottom:458.905800px;}
.y164{bottom:459.008100px;}
.y9e{bottom:459.042600px;}
.y185{bottom:459.070200px;}
.y86{bottom:459.077100px;}
.ybb{bottom:459.170100px;}
.y109{bottom:459.198900px;}
.y24{bottom:467.019000px;}
.y1b9{bottom:469.283850px;}
.yda{bottom:471.411600px;}
.y6a{bottom:478.412700px;}
.y163{bottom:478.515000px;}
.y4d{bottom:478.535700px;}
.y9d{bottom:478.549500px;}
.y184{bottom:478.577100px;}
.y85{bottom:478.584000px;}
.yba{bottom:478.677000px;}
.y108{bottom:481.893900px;}
.y1b8{bottom:485.327850px;}
.yd9{bottom:486.068400px;}
.y23{bottom:494.994000px;}
.y107{bottom:497.193900px;}
.y69{bottom:497.919600px;}
.y162{bottom:498.021900px;}
.y4c{bottom:498.042600px;}
.y9c{bottom:498.056400px;}
.y84{bottom:498.084000px;}
.yb9{bottom:498.183900px;}
.y1b7{bottom:501.371850px;}
.yd8{bottom:509.693400px;}
.y106{bottom:512.493900px;}
.y22{bottom:514.494000px;}
.y68{bottom:517.426500px;}
.y1b6{bottom:517.439850px;}
.y161{bottom:517.528800px;}
.y4b{bottom:517.549500px;}
.y9b{bottom:517.563300px;}
.y183{bottom:517.577100px;}
.yb8{bottom:517.642500px;}
.yd7{bottom:533.318400px;}
.y1b5{bottom:533.483850px;}
.y21{bottom:533.994000px;}
.y104{bottom:535.188900px;}
.y67{bottom:536.933400px;}
.y160{bottom:537.035700px;}
.y4a{bottom:537.056400px;}
.y9a{bottom:537.070200px;}
.y83{bottom:537.084000px;}
.yb7{bottom:537.149400px;}
.y1b4{bottom:549.527850px;}
.y105{bottom:550.488900px;}
.y103{bottom:550.494900px;}
.y20{bottom:553.494000px;}
.y66{bottom:556.440300px;}
.y15f{bottom:556.542600px;}
.y49{bottom:556.563300px;}
.y99{bottom:556.577100px;}
.yb6{bottom:556.656300px;}
.yd6{bottom:556.941900px;}
.y1b3{bottom:565.589850px;}
.y1f{bottom:572.994000px;}
.y102{bottom:573.189900px;}
.y65{bottom:575.947200px;}
.y82{bottom:576.049500px;}
.y48{bottom:576.070200px;}
.y98{bottom:576.084000px;}
.yb5{bottom:576.163200px;}
.yd5{bottom:580.567650px;}
.y1b2{bottom:581.633850px;}
.y100{bottom:588.489900px;}
.y1e{bottom:592.494000px;}
.y64{bottom:595.454100px;}
.y182{bottom:595.515000px;}
.y81{bottom:595.556400px;}
.y47{bottom:595.577100px;}
.y97{bottom:595.584000px;}
.yb4{bottom:595.670100px;}
.y1b1{bottom:597.677850px;}
.y101{bottom:603.789900px;}
.yff{bottom:603.795750px;}
.yd4{bottom:604.193400px;}
.y1d{bottom:611.994000px;}
.y1b0{bottom:613.721850px;}
.y63{bottom:614.961000px;}
.y181{bottom:615.021900px;}
.y80{bottom:615.063300px;}
.y46{bottom:615.084000px;}
.yb3{bottom:615.177000px;}
.yfe{bottom:626.490750px;}
.yd3{bottom:627.818400px;}
.y1af{bottom:629.825850px;}
.y1c{bottom:631.494000px;}
.y62{bottom:634.467900px;}
.y180{bottom:634.528800px;}
.y7f{bottom:634.570200px;}
.y13f{bottom:634.577100px;}
.y45{bottom:634.584000px;}
.yb2{bottom:634.683900px;}
.yfd{bottom:641.796600px;}
.y1ae{bottom:645.869850px;}
.y1b{bottom:650.994000px;}
.yd2{bottom:651.445650px;}
.y61{bottom:653.974800px;}
.y17f{bottom:654.035700px;}
.y96{bottom:654.064500px;}
.y43{bottom:654.077100px;}
.y44{bottom:654.084000px;}
.yb1{bottom:654.135600px;}
.yfc{bottom:657.096600px;}
.y1ad{bottom:661.913850px;}
.y1a{bottom:670.494000px;}
.yfb{bottom:672.396600px;}
.y60{bottom:673.481700px;}
.y17e{bottom:673.542600px;}
.y95{bottom:673.571400px;}
.y42{bottom:673.584000px;}
.yb0{bottom:673.642500px;}
.yd1{bottom:675.071400px;}
.y1ac{bottom:677.957850px;}
.y19{bottom:689.994000px;}
.y13d{bottom:693.049500px;}
.y13e{bottom:693.084000px;}
.yaf{bottom:693.149400px;}
.y1ab{bottom:694.001850px;}
.yfa{bottom:695.091600px;}
.yd0{bottom:699.819150px;}
.y18{bottom:709.494000px;}
.y1aa{bottom:710.045850px;}
.yf9{bottom:710.391600px;}
.y13c{bottom:712.556400px;}
.y15e{bottom:712.577100px;}
.yae{bottom:712.656300px;}
.y41{bottom:722.085000px;}
.ycf{bottom:724.314450px;}
.y7e{bottom:725.066700px;}
.yf8{bottom:725.691600px;}
.y1a9{bottom:726.089850px;}
.y17{bottom:728.994000px;}
.y13b{bottom:732.063300px;}
.y15d{bottom:732.084000px;}
.yad{bottom:732.163200px;}
.y40{bottom:738.285000px;}
.yf7{bottom:740.991600px;}
.y1a8{bottom:742.133850px;}
.y16{bottom:748.494000px;}
.y15c{bottom:751.535700px;}
.y13a{bottom:751.570200px;}
.yac{bottom:751.670100px;}
.yce{bottom:752.523900px;}
.y3f{bottom:754.485000px;}
.y1a7{bottom:758.177850px;}
.yf6{bottom:763.314450px;}
.y15{bottom:767.994000px;}
.y15b{bottom:771.042600px;}
.y139{bottom:771.077100px;}
.yab{bottom:771.177000px;}
.y1a6{bottom:774.221850px;}
.y14{bottom:787.494000px;}
.y1a5{bottom:790.283850px;}
.y15a{bottom:790.549500px;}
.y138{bottom:790.584000px;}
.yaa{bottom:790.683900px;}
.yf5{bottom:791.518500px;}
.ycd{bottom:802.149900px;}
.y1a4{bottom:806.327850px;}
.y13{bottom:806.994000px;}
.y137{bottom:810.049500px;}
.y159{bottom:810.056400px;}
.y17d{bottom:810.084000px;}
.y1a3{bottom:822.371850px;}
.y12{bottom:826.494000px;}
.y136{bottom:829.556400px;}
.y158{bottom:829.563300px;}
.y17c{bottom:829.577100px;}
.y1a2{bottom:838.433850px;}
.yf4{bottom:841.050000px;}
.y11{bottom:845.994000px;}
.y135{bottom:849.063300px;}
.y157{bottom:849.070200px;}
.y17b{bottom:849.084000px;}
.y1a1{bottom:854.477850px;}
.yf3{bottom:856.695150px;}
.y10{bottom:865.494000px;}
.y134{bottom:868.570200px;}
.y156{bottom:868.577100px;}
.y17a{bottom:868.584000px;}
.y1a0{bottom:870.521850px;}
.yf2{bottom:880.320900px;}
.yf{bottom:884.994000px;}
.y19f{bottom:887.021850px;}
.y133{bottom:888.077100px;}
.y155{bottom:888.084000px;}
.y19e{bottom:903.521850px;}
.yf1{bottom:903.946650px;}
.y154{bottom:907.528800px;}
.y132{bottom:907.584000px;}
.y19d{bottom:920.021850px;}
.y153{bottom:927.035700px;}
.y179{bottom:927.042600px;}
.y131{bottom:927.056400px;}
.yf0{bottom:927.572400px;}
.y19c{bottom:936.521850px;}
.y152{bottom:946.542600px;}
.y178{bottom:946.549500px;}
.y130{bottom:946.563300px;}
.yef{bottom:951.198150px;}
.y19b{bottom:953.021850px;}
.y151{bottom:966.049500px;}
.y177{bottom:966.056400px;}
.y12f{bottom:966.070200px;}
.ye{bottom:968.244000px;}
.y19a{bottom:969.521850px;}
.yed{bottom:973.893150px;}
.y150{bottom:985.556400px;}
.y176{bottom:985.563300px;}
.y12e{bottom:985.577100px;}
.y199{bottom:986.021850px;}
.yee{bottom:989.193150px;}
.yec{bottom:989.198250px;}
.y1de{bottom:991.902000px;}
.y1d6{bottom:992.339850px;}
.yd{bottom:997.194000px;}
.y14f{bottom:1005.063300px;}
.y175{bottom:1005.070200px;}
.y12d{bottom:1005.084000px;}
.y1dd{bottom:1008.402000px;}
.y1d5{bottom:1008.426000px;}
.yeb{bottom:1012.824000px;}
.y1dc{bottom:1024.446000px;}
.y1d4{bottom:1024.470000px;}
.y12c{bottom:1024.556400px;}
.y14e{bottom:1024.570200px;}
.y174{bottom:1024.577100px;}
.y198{bottom:1025.008050px;}
.yea{bottom:1035.519000px;}
.y1db{bottom:1040.490000px;}
.y1d3{bottom:1040.514000px;}
.y12b{bottom:1044.063300px;}
.y14d{bottom:1044.077100px;}
.y173{bottom:1044.084000px;}
.y197{bottom:1044.514950px;}
.ye9{bottom:1050.819000px;}
.yc{bottom:1051.044000px;}
.y1da{bottom:1056.551850px;}
.y1d2{bottom:1056.558000px;}
.y12a{bottom:1063.570200px;}
.y14c{bottom:1063.584000px;}
.y196{bottom:1064.021850px;}
.y1d9{bottom:1072.595850px;}
.y1d1{bottom:1072.602000px;}
.ye8{bottom:1075.314300px;}
.y14b{bottom:1082.987400px;}
.y129{bottom:1083.077100px;}
.y195{bottom:1083.521850px;}
.y1d8{bottom:1088.639850px;}
.y1d0{bottom:1088.646000px;}
.yb{bottom:1093.044000px;}
.y14a{bottom:1102.494300px;}
.y128{bottom:1102.584000px;}
.y194{bottom:1103.021850px;}
.ye7{bottom:1103.519850px;}
.y1cf{bottom:1104.690000px;}
.y1d7{bottom:1104.695850px;}
.y8{bottom:1132.926150px;}
.y7d{bottom:1140.765000px;}
.y9{bottom:1141.320000px;}
.y7{bottom:1145.676150px;}
.y6{bottom:1158.426150px;}
.y7c{bottom:1160.265000px;}
.y3e{bottom:1160.340000px;}
.y5{bottom:1171.176150px;}
.y4{bottom:1183.926150px;}
.y3{bottom:1196.676150px;}
.hc{height:13.500000px;}
.h23{height:20.021400px;}
.h5{height:28.602000px;}
.h4{height:29.419200px;}
.h12{height:32.688000px;}
.h1f{height:34.731000px;}
.h24{height:35.088000px;}
.h2b{height:35.568000px;}
.h2{height:36.774000px;}
.h2a{height:38.793600px;}
.he{height:40.042800px;}
.h26{height:40.048800px;}
.hf{height:40.070400px;}
.h15{height:40.098000px;}
.h11{height:40.125600px;}
.h1b{height:40.153200px;}
.h10{height:40.162800px;}
.h1d{height:40.180800px;}
.h1e{height:40.208400px;}
.h1c{height:40.236000px;}
.h16{height:40.263600px;}
.h29{height:40.318800px;}
.h28{height:40.429200px;}
.h25{height:40.454400px;}
.h13{height:40.500000px;}
.h14{height:40.783200px;}
.h3{height:40.860000px;}
.ha{height:41.280000px;}
.h20{height:41.288700px;}
.h21{height:41.297700px;}
.h22{height:41.303700px;}
.h27{height:41.454000px;}
.h18{height:44.100000px;}
.hb{height:45.000000px;}
.h9{height:45.842249px;}
.h17{height:47.250000px;}
.h19{height:47.610360px;}
.h1a{height:47.665560px;}
.h7{height:49.500000px;}
.hd{height:52.276804px;}
.h8{height:54.000000px;}
.h6{height:90.000000px;}
.h1{height:1233.000000px;}
.h0{height:1233.075000px;}
.w2{width:19.500000px;}
.w1{width:871.500000px;}
.w0{width:871.650000px;}
.x0{left:0.000000px;}
.x1b{left:72.300000px;}
.x34{left:74.685750px;}
.x27{left:76.551900px;}
.x26{left:78.300000px;}
.x13{left:83.775000px;}
.x16{left:85.048200px;}
.x23{left:86.456700px;}
.x2c{left:89.301900px;}
.x2b{left:91.050000px;}
.x1d{left:93.037800px;}
.x35{left:95.684550px;}
.x15{left:106.275000px;}
.xa{left:110.550000px;}
.xe{left:127.574850px;}
.x1e{left:134.295300px;}
.xb{left:164.634000px;}
.x11{left:179.970750px;}
.x21{left:183.664050px;}
.x14{left:194.828250px;}
.x30{left:197.306850px;}
.xf{left:204.551400px;}
.x24{left:219.217950px;}
.xc{left:256.293150px;}
.x10{left:277.922250px;}
.x2d{left:280.630950px;}
.xd{left:298.761450px;}
.x19{left:335.184900px;}
.x2e{left:338.746725px;}
.x1a{left:373.841700px;}
.x2f{left:377.007900px;}
.x9{left:383.279850px;}
.x1{left:386.591850px;}
.x1c{left:411.936000px;}
.x25{left:425.175000px;}
.x22{left:439.354650px;}
.x20{left:447.050550px;}
.x36{left:448.857750px;}
.x29{left:450.726900px;}
.x28{left:452.475000px;}
.x18{left:459.225000px;}
.x32{left:461.610750px;}
.x1f{left:468.277350px;}
.x38{left:469.860750px;}
.x17{left:480.455010px;}
.x33{left:482.609550px;}
.x12{left:512.599650px;}
.x31{left:575.265450px;}
.x5{left:664.443750px;}
.x7{left:681.228600px;}
.x2a{left:688.810200px;}
.x4{left:699.696750px;}
.x6{left:710.377050px;}
.x8{left:721.601250px;}
.x3{left:731.891550px;}
.x2{left:772.935450px;}
.x37{left:786.600000px;}
@media print{
.v2{vertical-align:-17.404800pt;}
.v6{vertical-align:-14.208000pt;}
.v4{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.144000pt;}
.v3{vertical-align:15.090667pt;}
.v1{vertical-align:17.404800pt;}
.ls1e{letter-spacing:-1.358933pt;}
.ls42{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-1.045333pt;}
.ls43{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.888533pt;}
.ls13{letter-spacing:-0.836267pt;}
.ls6{letter-spacing:-0.746667pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.627200pt;}
.ls16{letter-spacing:-0.574933pt;}
.ls10{letter-spacing:-0.522667pt;}
.ls11{letter-spacing:-0.470400pt;}
.ls3a{letter-spacing:-0.469333pt;}
.ls14{letter-spacing:-0.418133pt;}
.ls1d{letter-spacing:-0.365867pt;}
.ls2c{letter-spacing:-0.313600pt;}
.ls22{letter-spacing:-0.261333pt;}
.ls3b{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.209067pt;}
.ls3d{letter-spacing:-0.170667pt;}
.ls17{letter-spacing:-0.156800pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.104533pt;}
.ls39{letter-spacing:-0.085333pt;}
.ls7{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:-0.052267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.026133pt;}
.lsc{letter-spacing:0.052267pt;}
.ls0{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.104533pt;}
.ls37{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.156800pt;}
.ls36{letter-spacing:0.187733pt;}
.ls1a{letter-spacing:0.209067pt;}
.ls31{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.261333pt;}
.ls38{letter-spacing:0.298667pt;}
.ls30{letter-spacing:0.313600pt;}
.lsd{letter-spacing:0.365867pt;}
.ls41{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.418133pt;}
.ls32{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.444267pt;}
.ls18{letter-spacing:0.470400pt;}
.ls33{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.522667pt;}
.ls29{letter-spacing:0.548800pt;}
.ls40{letter-spacing:0.554667pt;}
.ls2f{letter-spacing:0.574933pt;}
.ls35{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.627200pt;}
.ls1{letter-spacing:0.653333pt;}
.ls19{letter-spacing:0.679467pt;}
.ls2a{letter-spacing:0.731733pt;}
.ls28{letter-spacing:0.784000pt;}
.ls8{letter-spacing:0.836267pt;}
.ls2b{letter-spacing:0.888533pt;}
.ls5{letter-spacing:5.760000pt;}
.ls2d{letter-spacing:112.224000pt;}
.ls2e{letter-spacing:116.597333pt;}
.ls23{letter-spacing:339.071368pt;}
.ls26{letter-spacing:424.249754pt;}
.ls27{letter-spacing:431.096070pt;}
.ls25{letter-spacing:521.126105pt;}
.ls24{letter-spacing:683.371158pt;}
.ws0{word-spacing:-16.000000pt;}
.ws56{word-spacing:-14.000000pt;}
.ws1{word-spacing:-13.582888pt;}
.ws3c{word-spacing:-13.066667pt;}
.ws58{word-spacing:-11.333333pt;}
.ws5a{word-spacing:-6.533333pt;}
.ws69{word-spacing:-4.285867pt;}
.ws4{word-spacing:-3.360000pt;}
.ws23{word-spacing:-3.292800pt;}
.ws18{word-spacing:-3.240533pt;}
.ws9e{word-spacing:-3.188267pt;}
.ws95{word-spacing:-3.136000pt;}
.ws6a{word-spacing:-3.083733pt;}
.ws9a{word-spacing:-2.874667pt;}
.ws60{word-spacing:-2.822400pt;}
.ws4f{word-spacing:-2.770133pt;}
.ws4e{word-spacing:-2.717867pt;}
.wsb1{word-spacing:-2.688000pt;}
.wsa{word-spacing:-2.666667pt;}
.ws45{word-spacing:-2.665600pt;}
.wsad{word-spacing:-2.645333pt;}
.ws8e{word-spacing:-2.561067pt;}
.ws96{word-spacing:-2.508800pt;}
.ws19{word-spacing:-2.456533pt;}
.ws61{word-spacing:-2.404267pt;}
.ws91{word-spacing:-2.352000pt;}
.wsae{word-spacing:-2.261333pt;}
.ws80{word-spacing:-2.142933pt;}
.ws24{word-spacing:-2.090667pt;}
.wsa8{word-spacing:-2.038400pt;}
.ws32{word-spacing:-1.986133pt;}
.ws93{word-spacing:-1.933867pt;}
.wsd{word-spacing:-1.866667pt;}
.ws6f{word-spacing:-1.829333pt;}
.ws34{word-spacing:-1.777067pt;}
.ws68{word-spacing:-1.724800pt;}
.ws2b{word-spacing:-1.672533pt;}
.ws38{word-spacing:-1.620267pt;}
.ws5{word-spacing:-1.600000pt;}
.ws15{word-spacing:-1.568000pt;}
.ws44{word-spacing:-1.515733pt;}
.wsc3{word-spacing:-1.493333pt;}
.wsa9{word-spacing:-1.463467pt;}
.wsc7{word-spacing:-1.450667pt;}
.ws81{word-spacing:-1.411200pt;}
.wsb2{word-spacing:-1.322667pt;}
.ws2c{word-spacing:-1.306667pt;}
.wsaf{word-spacing:-1.280000pt;}
.ws92{word-spacing:-1.254400pt;}
.ws4b{word-spacing:-1.149867pt;}
.ws85{word-spacing:-1.097600pt;}
.ws6b{word-spacing:-0.940800pt;}
.ws6c{word-spacing:-0.888533pt;}
.ws4c{word-spacing:-0.836267pt;}
.ws6{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.784000pt;}
.ws3e{word-spacing:-0.731733pt;}
.ws46{word-spacing:-0.627200pt;}
.ws52{word-spacing:-0.522667pt;}
.ws9b{word-spacing:-0.470400pt;}
.ws11{word-spacing:-0.426667pt;}
.ws20{word-spacing:-0.418133pt;}
.wsc6{word-spacing:-0.384000pt;}
.ws7b{word-spacing:-0.365867pt;}
.wsa4{word-spacing:-0.261333pt;}
.wsa2{word-spacing:-0.209067pt;}
.ws29{word-spacing:-0.156800pt;}
.ws14{word-spacing:-0.104533pt;}
.ws21{word-spacing:-0.096000pt;}
.ws35{word-spacing:-0.052267pt;}
.wsc1{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.052267pt;}
.ws7a{word-spacing:0.104533pt;}
.ws7f{word-spacing:0.156800pt;}
.ws1a{word-spacing:0.209067pt;}
.ws1f{word-spacing:0.261333pt;}
.ws66{word-spacing:0.313600pt;}
.ws2a{word-spacing:0.365867pt;}
.ws5e{word-spacing:0.418133pt;}
.ws28{word-spacing:0.470400pt;}
.ws8a{word-spacing:0.574933pt;}
.ws78{word-spacing:0.627200pt;}
.wsbb{word-spacing:0.640000pt;}
.ws67{word-spacing:0.679467pt;}
.ws42{word-spacing:0.784000pt;}
.ws49{word-spacing:0.836267pt;}
.ws5d{word-spacing:0.888533pt;}
.wsc{word-spacing:0.906667pt;}
.ws1b{word-spacing:0.993067pt;}
.wsc2{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.097600pt;}
.wsb6{word-spacing:1.109333pt;}
.ws2f{word-spacing:1.149867pt;}
.wsac{word-spacing:1.237333pt;}
.ws94{word-spacing:1.254400pt;}
.ws8f{word-spacing:1.306667pt;}
.ws22{word-spacing:1.344000pt;}
.ws41{word-spacing:1.358933pt;}
.wsbf{word-spacing:1.493333pt;}
.ws47{word-spacing:1.515733pt;}
.ws48{word-spacing:1.568000pt;}
.wsb8{word-spacing:1.578667pt;}
.wsa6{word-spacing:1.672533pt;}
.ws36{word-spacing:1.724800pt;}
.wsb4{word-spacing:1.749333pt;}
.wsb7{word-spacing:1.792000pt;}
.ws6d{word-spacing:1.829333pt;}
.ws53{word-spacing:1.881600pt;}
.wsa1{word-spacing:1.933867pt;}
.ws8c{word-spacing:1.986133pt;}
.wsb{word-spacing:2.080000pt;}
.ws7c{word-spacing:2.090667pt;}
.ws3b{word-spacing:2.195200pt;}
.wsbd{word-spacing:2.218667pt;}
.ws3f{word-spacing:2.247467pt;}
.wsf{word-spacing:2.346667pt;}
.ws7d{word-spacing:2.404267pt;}
.wsb3{word-spacing:2.432000pt;}
.ws89{word-spacing:2.456533pt;}
.wsc4{word-spacing:2.560000pt;}
.wsa5{word-spacing:2.613333pt;}
.ws13{word-spacing:2.717867pt;}
.wsa0{word-spacing:2.770133pt;}
.ws98{word-spacing:2.874667pt;}
.ws10{word-spacing:2.880000pt;}
.ws54{word-spacing:2.926933pt;}
.ws64{word-spacing:2.979200pt;}
.wsbe{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.031467pt;}
.ws3{word-spacing:3.093333pt;}
.ws8{word-spacing:3.146667pt;}
.ws88{word-spacing:3.188267pt;}
.wsb5{word-spacing:3.200000pt;}
.ws7{word-spacing:3.205562pt;}
.ws1d{word-spacing:3.240533pt;}
.ws83{word-spacing:3.345067pt;}
.ws31{word-spacing:3.501867pt;}
.ws65{word-spacing:3.606400pt;}
.wsb9{word-spacing:3.626667pt;}
.ws37{word-spacing:3.658667pt;}
.ws5f{word-spacing:3.710933pt;}
.ws1c{word-spacing:3.815467pt;}
.ws8d{word-spacing:3.867733pt;}
.ws40{word-spacing:3.920000pt;}
.ws9d{word-spacing:4.024533pt;}
.wsaa{word-spacing:4.096000pt;}
.wse{word-spacing:4.106667pt;}
.ws87{word-spacing:4.181333pt;}
.wsba{word-spacing:4.224000pt;}
.wsc5{word-spacing:4.266667pt;}
.ws9c{word-spacing:4.285867pt;}
.wsbc{word-spacing:4.309333pt;}
.ws51{word-spacing:4.338133pt;}
.ws76{word-spacing:4.390400pt;}
.wsc8{word-spacing:4.394667pt;}
.ws50{word-spacing:4.494933pt;}
.ws39{word-spacing:4.547200pt;}
.ws2e{word-spacing:4.599467pt;}
.wsb0{word-spacing:4.608000pt;}
.wsc9{word-spacing:4.650667pt;}
.ws86{word-spacing:4.651733pt;}
.ws79{word-spacing:4.756267pt;}
.ws97{word-spacing:4.808533pt;}
.ws12{word-spacing:4.853333pt;}
.ws27{word-spacing:4.860800pt;}
.wsc0{word-spacing:4.992000pt;}
.ws1e{word-spacing:5.017600pt;}
.wsa7{word-spacing:5.069867pt;}
.ws16{word-spacing:5.174400pt;}
.ws84{word-spacing:5.226667pt;}
.ws63{word-spacing:5.331200pt;}
.wsab{word-spacing:5.333333pt;}
.ws62{word-spacing:5.435733pt;}
.ws30{word-spacing:5.488000pt;}
.ws7e{word-spacing:5.644800pt;}
.ws4d{word-spacing:5.801600pt;}
.ws90{word-spacing:5.853867pt;}
.ws82{word-spacing:5.906133pt;}
.ws33{word-spacing:5.958400pt;}
.ws99{word-spacing:6.062933pt;}
.ws6e{word-spacing:6.167467pt;}
.ws55{word-spacing:6.219733pt;}
.ws3a{word-spacing:6.272000pt;}
.ws9f{word-spacing:6.376533pt;}
.ws8b{word-spacing:6.481067pt;}
.ws17{word-spacing:6.533333pt;}
.ws43{word-spacing:6.637867pt;}
.ws9{word-spacing:6.666667pt;}
.ws75{word-spacing:7.003733pt;}
.ws77{word-spacing:7.578667pt;}
.ws25{word-spacing:8.624000pt;}
.wsa3{word-spacing:8.885333pt;}
.ws5b{word-spacing:52.088000pt;}
.ws71{word-spacing:62.040000pt;}
.ws57{word-spacing:73.258667pt;}
.ws72{word-spacing:78.653333pt;}
.ws5c{word-spacing:78.698667pt;}
.ws73{word-spacing:89.624000pt;}
.ws59{word-spacing:99.869333pt;}
.ws74{word-spacing:104.357333pt;}
.ws70{word-spacing:497.544000pt;}
._4{margin-left:-22.499144pt;}
._1f{margin-left:-21.140211pt;}
._20{margin-left:-18.265544pt;}
._10{margin-left:-14.554611pt;}
._6{margin-left:-11.557384pt;}
._0{margin-left:-9.603930pt;}
._5{margin-left:-3.264000pt;}
._3{margin-left:-2.304000pt;}
._2{margin-left:-1.162667pt;}
._1{width:0.896000pt;}
._22{width:7.210667pt;}
._23{width:9.130667pt;}
._21{width:32.256000pt;}
._14{width:63.421333pt;}
._18{width:67.682667pt;}
._c{width:76.205333pt;}
._a{width:84.592000pt;}
._16{width:90.032000pt;}
._e{width:98.373333pt;}
._d{width:111.202667pt;}
._12{width:112.224000pt;}
._1e{width:115.464000pt;}
._1a{width:116.642667pt;}
._8{width:133.440000pt;}
._9{width:134.912000pt;}
._13{width:149.418667pt;}
._17{width:166.192000pt;}
._b{width:167.461333pt;}
._19{width:190.082667pt;}
._1c{width:201.869333pt;}
._1d{width:229.658667pt;}
._15{width:279.389333pt;}
._7{width:508.618667pt;}
._1b{width:525.549333pt;}
._11{width:692.256000pt;}
._f{width:753.757333pt;}
.fsf{font-size:26.133333pt;}
.fs10{font-size:29.866667pt;}
.fse{font-size:31.733333pt;}
.fsc{font-size:36.586667pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:38.400000pt;}
.fsa{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:52.266667pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:54.331554pt;}
.fsb{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:64.271467pt;}
.fs4{font-size:106.666667pt;}
.y27{bottom:-0.008267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:44.466667pt;}
.y1{bottom:45.506667pt;}
.y26{bottom:89.174667pt;}
.ya{bottom:93.245467pt;}
.y5f{bottom:95.988800pt;}
.ye6{bottom:96.013333pt;}
.ya9{bottom:96.056267pt;}
.y94{bottom:96.068533pt;}
.y7b{bottom:96.074667pt;}
.ycc{bottom:96.096000pt;}
.y127{bottom:104.710667pt;}
.y118{bottom:105.130667pt;}
.y149{bottom:113.322133pt;}
.y5e{bottom:113.328267pt;}
.y193{bottom:113.340533pt;}
.ye5{bottom:113.352800pt;}
.y7a{bottom:113.358933pt;}
.y172{bottom:113.371200pt;}
.ya8{bottom:113.395733pt;}
.y93{bottom:113.408000pt;}
.ycb{bottom:113.435467pt;}
.y1ce{bottom:117.541200pt;}
.y126{bottom:122.050133pt;}
.y117{bottom:122.464000pt;}
.y148{bottom:130.661600pt;}
.y5d{bottom:130.667733pt;}
.y192{bottom:130.680000pt;}
.ye4{bottom:130.692267pt;}
.y79{bottom:130.698400pt;}
.y171{bottom:130.710667pt;}
.y92{bottom:130.716800pt;}
.ya7{bottom:130.735200pt;}
.yca{bottom:130.774933pt;}
.y1cd{bottom:131.802533pt;}
.y125{bottom:139.389600pt;}
.y116{bottom:139.797333pt;}
.y32{bottom:145.468533pt;}
.y1cc{bottom:146.063867pt;}
.y3d{bottom:146.479733pt;}
.y147{bottom:148.001067pt;}
.y5c{bottom:148.007200pt;}
.y191{bottom:148.019467pt;}
.ye3{bottom:148.031733pt;}
.y78{bottom:148.037867pt;}
.y170{bottom:148.050133pt;}
.y91{bottom:148.056267pt;}
.ya6{bottom:148.074667pt;}
.yc9{bottom:148.114400pt;}
.y124{bottom:156.729067pt;}
.y1cb{bottom:160.335867pt;}
.y31{bottom:162.808000pt;}
.y3c{bottom:163.819200pt;}
.y146{bottom:165.340533pt;}
.y5b{bottom:165.346667pt;}
.y190{bottom:165.358933pt;}
.ye2{bottom:165.371200pt;}
.y77{bottom:165.377333pt;}
.y16f{bottom:165.389600pt;}
.y90{bottom:165.395733pt;}
.yc8{bottom:165.453867pt;}
.y123{bottom:174.068533pt;}
.y115{bottom:174.457867pt;}
.y1ca{bottom:174.597200pt;}
.y30{bottom:180.147467pt;}
.y3b{bottom:181.158667pt;}
.y145{bottom:182.680000pt;}
.y5a{bottom:182.686133pt;}
.y18f{bottom:182.698400pt;}
.ye1{bottom:182.710667pt;}
.y76{bottom:182.716800pt;}
.y16e{bottom:182.729067pt;}
.y8f{bottom:182.735200pt;}
.yc7{bottom:182.793333pt;}
.y1c9{bottom:188.943867pt;}
.y122{bottom:191.408000pt;}
.y114{bottom:191.797333pt;}
.y2f{bottom:197.486933pt;}
.y3a{bottom:198.498133pt;}
.y144{bottom:200.019467pt;}
.y59{bottom:200.025600pt;}
.y18e{bottom:200.037867pt;}
.ye0{bottom:200.050133pt;}
.y75{bottom:200.056267pt;}
.y16d{bottom:200.068533pt;}
.y8e{bottom:200.074667pt;}
.yc6{bottom:200.132800pt;}
.y1c8{bottom:203.205200pt;}
.y121{bottom:208.735200pt;}
.y113{bottom:209.130667pt;}
.y2e{bottom:214.826400pt;}
.y39{bottom:215.837600pt;}
.y143{bottom:217.358933pt;}
.y58{bottom:217.365067pt;}
.y18d{bottom:217.377333pt;}
.ydf{bottom:217.389600pt;}
.y74{bottom:217.395733pt;}
.y8c{bottom:217.401867pt;}
.y8d{bottom:217.408000pt;}
.y1c7{bottom:217.466533pt;}
.yc5{bottom:217.472267pt;}
.y120{bottom:226.074667pt;}
.y111{bottom:226.427200pt;}
.y112{bottom:226.464000pt;}
.y1c6{bottom:231.727867pt;}
.y2d{bottom:232.165867pt;}
.y38{bottom:233.177067pt;}
.y142{bottom:234.698400pt;}
.y57{bottom:234.704533pt;}
.y18c{bottom:234.716800pt;}
.yde{bottom:234.729067pt;}
.y73{bottom:234.735200pt;}
.y8b{bottom:234.741333pt;}
.yc4{bottom:234.811733pt;}
.y11f{bottom:243.383467pt;}
.y110{bottom:243.766667pt;}
.y1c5{bottom:245.989200pt;}
.y2c{bottom:249.493067pt;}
.y37{bottom:250.492000pt;}
.y141{bottom:252.037867pt;}
.y56{bottom:252.044000pt;}
.y18b{bottom:252.056267pt;}
.ydd{bottom:252.068533pt;}
.y72{bottom:252.074667pt;}
.yc3{bottom:252.151200pt;}
.y1c4{bottom:260.250533pt;}
.y11e{bottom:260.722933pt;}
.y10f{bottom:261.106133pt;}
.y2b{bottom:266.832533pt;}
.y36{bottom:267.831467pt;}
.y16c{bottom:269.291467pt;}
.ya5{bottom:269.377333pt;}
.y55{bottom:269.383467pt;}
.y71{bottom:269.389600pt;}
.y8a{bottom:269.395733pt;}
.ydc{bottom:269.408000pt;}
.yc2{bottom:269.490667pt;}
.y1c3{bottom:274.511867pt;}
.y11d{bottom:278.062400pt;}
.y10e{bottom:278.445600pt;}
.y2a{bottom:284.159733pt;}
.y35{bottom:285.170933pt;}
.y16b{bottom:286.630933pt;}
.ya4{bottom:286.716800pt;}
.y54{bottom:286.722933pt;}
.y70{bottom:286.729067pt;}
.y89{bottom:286.735200pt;}
.ydb{bottom:286.741333pt;}
.yc1{bottom:286.830133pt;}
.y1c2{bottom:288.773200pt;}
.y11c{bottom:295.401867pt;}
.y10d{bottom:295.785067pt;}
.y29{bottom:301.499200pt;}
.y34{bottom:302.510400pt;}
.y1c1{bottom:303.034533pt;}
.y16a{bottom:303.970400pt;}
.ya3{bottom:304.056267pt;}
.y53{bottom:304.062400pt;}
.y6f{bottom:304.068533pt;}
.y88{bottom:304.074667pt;}
.yc0{bottom:304.163467pt;}
.y11b{bottom:312.741333pt;}
.y10c{bottom:313.124533pt;}
.y1c0{bottom:317.295867pt;}
.y28{bottom:318.832533pt;}
.y33{bottom:319.817067pt;}
.y169{bottom:321.309867pt;}
.y18a{bottom:321.365067pt;}
.ya2{bottom:321.395733pt;}
.y52{bottom:321.401867pt;}
.y6e{bottom:321.408000pt;}
.y11a{bottom:330.073333pt;}
.y10b{bottom:330.464000pt;}
.y1bf{bottom:331.557200pt;}
.y168{bottom:338.649333pt;}
.y189{bottom:338.704533pt;}
.y6d{bottom:338.729067pt;}
.ya1{bottom:338.735200pt;}
.y51{bottom:338.741333pt;}
.ybf{bottom:338.793333pt;}
.y1be{bottom:345.818533pt;}
.y119{bottom:347.412800pt;}
.y10a{bottom:347.797333pt;}
.y167{bottom:355.988800pt;}
.y188{bottom:356.044000pt;}
.y50{bottom:356.068533pt;}
.ya0{bottom:356.074667pt;}
.ybe{bottom:356.132800pt;}
.y1bd{bottom:360.079867pt;}
.y166{bottom:373.328267pt;}
.y140{bottom:373.358933pt;}
.y187{bottom:373.383467pt;}
.y4f{bottom:373.408000pt;}
.ybd{bottom:373.472267pt;}
.y1bc{bottom:374.341200pt;}
.y1bb{bottom:388.602533pt;}
.y25{bottom:390.261333pt;}
.y6c{bottom:390.576800pt;}
.y165{bottom:390.667733pt;}
.y9f{bottom:390.698400pt;}
.y186{bottom:390.722933pt;}
.y87{bottom:390.729067pt;}
.y4e{bottom:390.741333pt;}
.ybc{bottom:390.811733pt;}
.y1ba{bottom:402.863867pt;}
.y6b{bottom:407.916267pt;}
.y164{bottom:408.007200pt;}
.y9e{bottom:408.037867pt;}
.y185{bottom:408.062400pt;}
.y86{bottom:408.068533pt;}
.ybb{bottom:408.151200pt;}
.y109{bottom:408.176800pt;}
.y24{bottom:415.128000pt;}
.y1b9{bottom:417.141200pt;}
.yda{bottom:419.032533pt;}
.y6a{bottom:425.255733pt;}
.y163{bottom:425.346667pt;}
.y4d{bottom:425.365067pt;}
.y9d{bottom:425.377333pt;}
.y184{bottom:425.401867pt;}
.y85{bottom:425.408000pt;}
.yba{bottom:425.490667pt;}
.y108{bottom:428.350133pt;}
.y1b8{bottom:431.402533pt;}
.yd9{bottom:432.060800pt;}
.y23{bottom:439.994667pt;}
.y107{bottom:441.950133pt;}
.y69{bottom:442.595200pt;}
.y162{bottom:442.686133pt;}
.y4c{bottom:442.704533pt;}
.y9c{bottom:442.716800pt;}
.y84{bottom:442.741333pt;}
.yb9{bottom:442.830133pt;}
.y1b7{bottom:445.663867pt;}
.yd8{bottom:453.060800pt;}
.y106{bottom:455.550133pt;}
.y22{bottom:457.328000pt;}
.y68{bottom:459.934667pt;}
.y1b6{bottom:459.946533pt;}
.y161{bottom:460.025600pt;}
.y4b{bottom:460.044000pt;}
.y9b{bottom:460.056267pt;}
.y183{bottom:460.068533pt;}
.yb8{bottom:460.126667pt;}
.yd7{bottom:474.060800pt;}
.y1b5{bottom:474.207867pt;}
.y21{bottom:474.661333pt;}
.y104{bottom:475.723467pt;}
.y67{bottom:477.274133pt;}
.y160{bottom:477.365067pt;}
.y4a{bottom:477.383467pt;}
.y9a{bottom:477.395733pt;}
.y83{bottom:477.408000pt;}
.yb7{bottom:477.466133pt;}
.y1b4{bottom:488.469200pt;}
.y105{bottom:489.323467pt;}
.y103{bottom:489.328800pt;}
.y20{bottom:491.994667pt;}
.y66{bottom:494.613600pt;}
.y15f{bottom:494.704533pt;}
.y49{bottom:494.722933pt;}
.y99{bottom:494.735200pt;}
.yb6{bottom:494.805600pt;}
.yd6{bottom:495.059467pt;}
.y1b3{bottom:502.746533pt;}
.y1f{bottom:509.328000pt;}
.y102{bottom:509.502133pt;}
.y65{bottom:511.953067pt;}
.y82{bottom:512.044000pt;}
.y48{bottom:512.062400pt;}
.y98{bottom:512.074667pt;}
.yb5{bottom:512.145067pt;}
.yd5{bottom:516.060133pt;}
.y1b2{bottom:517.007867pt;}
.y100{bottom:523.102133pt;}
.y1e{bottom:526.661333pt;}
.y64{bottom:529.292533pt;}
.y182{bottom:529.346667pt;}
.y81{bottom:529.383467pt;}
.y47{bottom:529.401867pt;}
.y97{bottom:529.408000pt;}
.yb4{bottom:529.484533pt;}
.y1b1{bottom:531.269200pt;}
.y101{bottom:536.702133pt;}
.yff{bottom:536.707333pt;}
.yd4{bottom:537.060800pt;}
.y1d{bottom:543.994667pt;}
.y1b0{bottom:545.530533pt;}
.y63{bottom:546.632000pt;}
.y181{bottom:546.686133pt;}
.y80{bottom:546.722933pt;}
.y46{bottom:546.741333pt;}
.yb3{bottom:546.824000pt;}
.yfe{bottom:556.880667pt;}
.yd3{bottom:558.060800pt;}
.y1af{bottom:559.845200pt;}
.y1c{bottom:561.328000pt;}
.y62{bottom:563.971467pt;}
.y180{bottom:564.025600pt;}
.y7f{bottom:564.062400pt;}
.y13f{bottom:564.068533pt;}
.y45{bottom:564.074667pt;}
.yb2{bottom:564.163467pt;}
.yfd{bottom:570.485867pt;}
.y1ae{bottom:574.106533pt;}
.y1b{bottom:578.661333pt;}
.yd2{bottom:579.062800pt;}
.y61{bottom:581.310933pt;}
.y17f{bottom:581.365067pt;}
.y96{bottom:581.390667pt;}
.y43{bottom:581.401867pt;}
.y44{bottom:581.408000pt;}
.yb1{bottom:581.453867pt;}
.yfc{bottom:584.085867pt;}
.y1ad{bottom:588.367867pt;}
.y1a{bottom:595.994667pt;}
.yfb{bottom:597.685867pt;}
.y60{bottom:598.650400pt;}
.y17e{bottom:598.704533pt;}
.y95{bottom:598.730133pt;}
.y42{bottom:598.741333pt;}
.yb0{bottom:598.793333pt;}
.yd1{bottom:600.063467pt;}
.y1ac{bottom:602.629200pt;}
.y19{bottom:613.328000pt;}
.y13d{bottom:616.044000pt;}
.y13e{bottom:616.074667pt;}
.yaf{bottom:616.132800pt;}
.y1ab{bottom:616.890533pt;}
.yfa{bottom:617.859200pt;}
.yd0{bottom:622.061467pt;}
.y18{bottom:630.661333pt;}
.y1aa{bottom:631.151867pt;}
.yf9{bottom:631.459200pt;}
.y13c{bottom:633.383467pt;}
.y15e{bottom:633.401867pt;}
.yae{bottom:633.472267pt;}
.y41{bottom:641.853333pt;}
.ycf{bottom:643.835067pt;}
.y7e{bottom:644.503733pt;}
.yf8{bottom:645.059200pt;}
.y1a9{bottom:645.413200pt;}
.y17{bottom:647.994667pt;}
.y13b{bottom:650.722933pt;}
.y15d{bottom:650.741333pt;}
.yad{bottom:650.811733pt;}
.y40{bottom:656.253333pt;}
.yf7{bottom:658.659200pt;}
.y1a8{bottom:659.674533pt;}
.y16{bottom:665.328000pt;}
.y15c{bottom:668.031733pt;}
.y13a{bottom:668.062400pt;}
.yac{bottom:668.151200pt;}
.yce{bottom:668.910133pt;}
.y3f{bottom:670.653333pt;}
.y1a7{bottom:673.935867pt;}
.yf6{bottom:678.501733pt;}
.y15{bottom:682.661333pt;}
.y15b{bottom:685.371200pt;}
.y139{bottom:685.401867pt;}
.yab{bottom:685.490667pt;}
.y1a6{bottom:688.197200pt;}
.y14{bottom:699.994667pt;}
.y1a5{bottom:702.474533pt;}
.y15a{bottom:702.710667pt;}
.y138{bottom:702.741333pt;}
.yaa{bottom:702.830133pt;}
.yf5{bottom:703.572000pt;}
.ycd{bottom:713.022133pt;}
.y1a4{bottom:716.735867pt;}
.y13{bottom:717.328000pt;}
.y137{bottom:720.044000pt;}
.y159{bottom:720.050133pt;}
.y17d{bottom:720.074667pt;}
.y1a3{bottom:730.997200pt;}
.y12{bottom:734.661333pt;}
.y136{bottom:737.383467pt;}
.y158{bottom:737.389600pt;}
.y17c{bottom:737.401867pt;}
.y1a2{bottom:745.274533pt;}
.yf4{bottom:747.600000pt;}
.y11{bottom:751.994667pt;}
.y135{bottom:754.722933pt;}
.y157{bottom:754.729067pt;}
.y17b{bottom:754.741333pt;}
.y1a1{bottom:759.535867pt;}
.yf3{bottom:761.506800pt;}
.y10{bottom:769.328000pt;}
.y134{bottom:772.062400pt;}
.y156{bottom:772.068533pt;}
.y17a{bottom:772.074667pt;}
.y1a0{bottom:773.797200pt;}
.yf2{bottom:782.507467pt;}
.yf{bottom:786.661333pt;}
.y19f{bottom:788.463867pt;}
.y133{bottom:789.401867pt;}
.y155{bottom:789.408000pt;}
.y19e{bottom:803.130533pt;}
.yf1{bottom:803.508133pt;}
.y154{bottom:806.692267pt;}
.y132{bottom:806.741333pt;}
.y19d{bottom:817.797200pt;}
.y153{bottom:824.031733pt;}
.y179{bottom:824.037867pt;}
.y131{bottom:824.050133pt;}
.yf0{bottom:824.508800pt;}
.y19c{bottom:832.463867pt;}
.y152{bottom:841.371200pt;}
.y178{bottom:841.377333pt;}
.y130{bottom:841.389600pt;}
.yef{bottom:845.509467pt;}
.y19b{bottom:847.130533pt;}
.y151{bottom:858.710667pt;}
.y177{bottom:858.716800pt;}
.y12f{bottom:858.729067pt;}
.ye{bottom:860.661333pt;}
.y19a{bottom:861.797200pt;}
.yed{bottom:865.682800pt;}
.y150{bottom:876.050133pt;}
.y176{bottom:876.056267pt;}
.y12e{bottom:876.068533pt;}
.y199{bottom:876.463867pt;}
.yee{bottom:879.282800pt;}
.yec{bottom:879.287333pt;}
.y1de{bottom:881.690667pt;}
.y1d6{bottom:882.079867pt;}
.yd{bottom:886.394667pt;}
.y14f{bottom:893.389600pt;}
.y175{bottom:893.395733pt;}
.y12d{bottom:893.408000pt;}
.y1dd{bottom:896.357333pt;}
.y1d5{bottom:896.378667pt;}
.yeb{bottom:900.288000pt;}
.y1dc{bottom:910.618667pt;}
.y1d4{bottom:910.640000pt;}
.y12c{bottom:910.716800pt;}
.y14e{bottom:910.729067pt;}
.y174{bottom:910.735200pt;}
.y198{bottom:911.118267pt;}
.yea{bottom:920.461333pt;}
.y1db{bottom:924.880000pt;}
.y1d3{bottom:924.901333pt;}
.y12b{bottom:928.056267pt;}
.y14d{bottom:928.068533pt;}
.y173{bottom:928.074667pt;}
.y197{bottom:928.457733pt;}
.ye9{bottom:934.061333pt;}
.yc{bottom:934.261333pt;}
.y1da{bottom:939.157200pt;}
.y1d2{bottom:939.162667pt;}
.y12a{bottom:945.395733pt;}
.y14c{bottom:945.408000pt;}
.y196{bottom:945.797200pt;}
.y1d9{bottom:953.418533pt;}
.y1d1{bottom:953.424000pt;}
.ye8{bottom:955.834933pt;}
.y14b{bottom:962.655467pt;}
.y129{bottom:962.735200pt;}
.y195{bottom:963.130533pt;}
.y1d8{bottom:967.679867pt;}
.y1d0{bottom:967.685333pt;}
.yb{bottom:971.594667pt;}
.y14a{bottom:979.994933pt;}
.y128{bottom:980.074667pt;}
.y194{bottom:980.463867pt;}
.ye7{bottom:980.906533pt;}
.y1cf{bottom:981.946667pt;}
.y1d7{bottom:981.951867pt;}
.y8{bottom:1007.045467pt;}
.y7d{bottom:1014.013333pt;}
.y9{bottom:1014.506667pt;}
.y7{bottom:1018.378800pt;}
.y6{bottom:1029.712133pt;}
.y7c{bottom:1031.346667pt;}
.y3e{bottom:1031.413333pt;}
.y5{bottom:1041.045467pt;}
.y4{bottom:1052.378800pt;}
.y3{bottom:1063.712133pt;}
.hc{height:12.000000pt;}
.h23{height:17.796800pt;}
.h5{height:25.424000pt;}
.h4{height:26.150400pt;}
.h12{height:29.056000pt;}
.h1f{height:30.872000pt;}
.h24{height:31.189333pt;}
.h2b{height:31.616000pt;}
.h2{height:32.688000pt;}
.h2a{height:34.483200pt;}
.he{height:35.593600pt;}
.h26{height:35.598933pt;}
.hf{height:35.618133pt;}
.h15{height:35.642667pt;}
.h11{height:35.667200pt;}
.h1b{height:35.691733pt;}
.h10{height:35.700267pt;}
.h1d{height:35.716267pt;}
.h1e{height:35.740800pt;}
.h1c{height:35.765333pt;}
.h16{height:35.789867pt;}
.h29{height:35.838933pt;}
.h28{height:35.937067pt;}
.h25{height:35.959467pt;}
.h13{height:36.000000pt;}
.h14{height:36.251733pt;}
.h3{height:36.320000pt;}
.ha{height:36.693333pt;}
.h20{height:36.701067pt;}
.h21{height:36.709067pt;}
.h22{height:36.714400pt;}
.h27{height:36.848000pt;}
.h18{height:39.200000pt;}
.hb{height:40.000000pt;}
.h9{height:40.748665pt;}
.h17{height:42.000000pt;}
.h19{height:42.320320pt;}
.h1a{height:42.369387pt;}
.h7{height:44.000000pt;}
.hd{height:46.468270pt;}
.h8{height:48.000000pt;}
.h6{height:80.000000pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.066667pt;}
.w2{width:17.333333pt;}
.w1{width:774.666667pt;}
.w0{width:774.800000pt;}
.x0{left:0.000000pt;}
.x1b{left:64.266667pt;}
.x34{left:66.387333pt;}
.x27{left:68.046133pt;}
.x26{left:69.600000pt;}
.x13{left:74.466667pt;}
.x16{left:75.598400pt;}
.x23{left:76.850400pt;}
.x2c{left:79.379467pt;}
.x2b{left:80.933333pt;}
.x1d{left:82.700267pt;}
.x35{left:85.052933pt;}
.x15{left:94.466667pt;}
.xa{left:98.266667pt;}
.xe{left:113.399867pt;}
.x1e{left:119.373600pt;}
.xb{left:146.341333pt;}
.x11{left:159.974000pt;}
.x21{left:163.256933pt;}
.x14{left:173.180667pt;}
.x30{left:175.383867pt;}
.xf{left:181.823467pt;}
.x24{left:194.860400pt;}
.xc{left:227.816133pt;}
.x10{left:247.042000pt;}
.x2d{left:249.449733pt;}
.xd{left:265.565733pt;}
.x19{left:297.942133pt;}
.x2e{left:301.108200pt;}
.x1a{left:332.303733pt;}
.x2f{left:335.118133pt;}
.x9{left:340.693200pt;}
.x1{left:343.637200pt;}
.x1c{left:366.165333pt;}
.x25{left:377.933333pt;}
.x22{left:390.537467pt;}
.x20{left:397.378267pt;}
.x36{left:398.984667pt;}
.x29{left:400.646133pt;}
.x28{left:402.200000pt;}
.x18{left:408.200000pt;}
.x32{left:410.320667pt;}
.x1f{left:416.246533pt;}
.x38{left:417.654000pt;}
.x17{left:427.071120pt;}
.x33{left:428.986267pt;}
.x12{left:455.644133pt;}
.x31{left:511.347067pt;}
.x5{left:590.616667pt;}
.x7{left:605.536533pt;}
.x2a{left:612.275733pt;}
.x4{left:621.952667pt;}
.x6{left:631.446267pt;}
.x8{left:641.423333pt;}
.x3{left:650.570267pt;}
.x2{left:687.053733pt;}
.x37{left:699.200000pt;}
}




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