
    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_5ec744662422f1af41dde592.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b1b4ba5ac7386897a229eb69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119382;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_f2d32b251f7b6bf27e7e30d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096000;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_83448cd545469fb825a6c5a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_ed43579a3118132d3da23a61.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_2c61a57e13926102281f377b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_5052856032b63ca756ade3fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.831000;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_1824bf5c0f2559b5592ec13e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_9ce2c27dabc659c2c3671bb9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.188965;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_6c3d237e4341a8f57fad7818.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_506c9a2a6dea5abe816b7709.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_24efebfe036344afe2f0697b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.883301;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_ac333b5073b86c186b004c83.woff2')format("woff");}.fff{font-family:fff;line-height:0.738281;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_e7693dc0c9ec015f7308c7d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005859;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);}
.v7{vertical-align:-34.141200px;}
.v8{vertical-align:-18.157200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.904000px;}
.v3{vertical-align:8.519400px;}
.v9{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.v5{vertical-align:25.900200px;}
.v4{vertical-align:42.660000px;}
.v6{vertical-align:51.800400px;}
.lse{letter-spacing:-3.000000px;}
.ls9{letter-spacing:-2.700000px;}
.ls1c{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-1.620000px;}
.ls1d{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.006000px;}
.ls1b{letter-spacing:0.307896px;}
.ls5{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.356600px;}
.lsd{letter-spacing:1.620000px;}
.lsb{letter-spacing:2.419200px;}
.ls18{letter-spacing:3.433680px;}
.ls15{letter-spacing:4.764480px;}
.ls14{letter-spacing:8.495400px;}
.ls1{letter-spacing:15.586800px;}
.ls19{letter-spacing:173.720496px;}
.ls16{letter-spacing:218.742696px;}
.ls1a{letter-spacing:218.818896px;}
.ls11{letter-spacing:454.183200px;}
.ls12{letter-spacing:454.183800px;}
.lsf{letter-spacing:577.103400px;}
.ls13{letter-spacing:675.351600px;}
.ls10{letter-spacing:738.471000px;}
.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;}
}
.ws5{word-spacing:-17.880000px;}
.ws40{word-spacing:-17.280000px;}
.ws4{word-spacing:-16.980000px;}
.ws53{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.092000px;}
.ws1{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.932000px;}
.ws29{word-spacing:-12.480000px;}
.ws41{word-spacing:-8.185320px;}
.ws3c{word-spacing:-5.665200px;}
.ws44{word-spacing:-4.050000px;}
.wsb{word-spacing:-2.538000px;}
.ws4d{word-spacing:-2.322000px;}
.ws4b{word-spacing:-1.998000px;}
.ws47{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.872000px;}
.wsf{word-spacing:-1.824000px;}
.ws49{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.080000px;}
.ws52{word-spacing:-0.977400px;}
.ws8{word-spacing:-0.540000px;}
.ws54{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws51{word-spacing:0.027000px;}
.ws9{word-spacing:0.054000px;}
.ws7{word-spacing:0.540000px;}
.ws11{word-spacing:0.600000px;}
.ws6{word-spacing:1.080000px;}
.ws56{word-spacing:1.566000px;}
.ws57{word-spacing:1.620000px;}
.ws42{word-spacing:1.800000px;}
.ws46{word-spacing:2.052000px;}
.ws3d{word-spacing:2.646000px;}
.wsa{word-spacing:3.000000px;}
.ws3b{word-spacing:3.024000px;}
.ws50{word-spacing:3.348000px;}
.ws58{word-spacing:3.726000px;}
.ws45{word-spacing:4.968000px;}
.ws4a{word-spacing:5.832000px;}
.ws3f{word-spacing:8.100000px;}
.ws3e{word-spacing:8.478000px;}
.ws4c{word-spacing:10.584000px;}
.ws43{word-spacing:12.042000px;}
.ws48{word-spacing:12.420000px;}
.ws55{word-spacing:13.068000px;}
.ws4e{word-spacing:13.824000px;}
.ws1d{word-spacing:85.146600px;}
.ws1e{word-spacing:119.262000px;}
.ws3a{word-spacing:129.436200px;}
.ws2e{word-spacing:135.972000px;}
.ws2f{word-spacing:149.182800px;}
.ws1f{word-spacing:150.508800px;}
.ws2a{word-spacing:177.973800px;}
.ws33{word-spacing:178.049400px;}
.ws28{word-spacing:186.544200px;}
.ws32{word-spacing:186.620400px;}
.ws2b{word-spacing:200.266800px;}
.ws34{word-spacing:200.343000px;}
.ws38{word-spacing:201.797400px;}
.ws2d{word-spacing:252.742200px;}
.ws27{word-spacing:291.528600px;}
.ws31{word-spacing:291.565800px;}
.ws2c{word-spacing:325.916400px;}
.ws20{word-spacing:345.114000px;}
.ws39{word-spacing:369.178800px;}
.ws21{word-spacing:373.369800px;}
.wse{word-spacing:385.810200px;}
.ws37{word-spacing:388.666800px;}
.ws26{word-spacing:454.747200px;}
.ws30{word-spacing:454.937400px;}
.ws22{word-spacing:498.773400px;}
.ws12{word-spacing:503.495400px;}
.ws19{word-spacing:554.830800px;}
.ws1b{word-spacing:559.393800px;}
.ws23{word-spacing:562.092000px;}
.ws14{word-spacing:568.295400px;}
.ws1c{word-spacing:583.602600px;}
.wsc{word-spacing:584.112000px;}
.ws1a{word-spacing:585.043800px;}
.ws18{word-spacing:588.692400px;}
.ws16{word-spacing:601.934400px;}
.ws17{word-spacing:620.242800px;}
.ws24{word-spacing:622.279200px;}
.ws15{word-spacing:628.454400px;}
.ws36{word-spacing:655.729800px;}
.ws13{word-spacing:659.964600px;}
.ws35{word-spacing:703.932600px;}
.wsd{word-spacing:1178.707200px;}
._5b{margin-left:-14.750400px;}
._18{margin-left:-13.681800px;}
._32{margin-left:-8.235000px;}
._5e{margin-left:-7.018200px;}
._3{margin-left:-5.760000px;}
._15{margin-left:-4.692600px;}
._1{margin-left:-3.600000px;}
._8{margin-left:-2.518200px;}
._0{margin-left:-1.440000px;}
._2{width:1.432800px;}
._4{width:2.643600px;}
._f{width:4.482000px;}
._a{width:6.080400px;}
._7{width:7.533000px;}
._6{width:9.120600px;}
._9{width:10.551600px;}
._d{width:11.599200px;}
._b{width:12.965400px;}
._5{width:16.011000px;}
._17{width:17.134200px;}
._16{width:18.819000px;}
._1a{width:20.433600px;}
._e{width:21.799800px;}
._10{width:22.820400px;}
._12{width:24.159600px;}
._11{width:25.466400px;}
._13{width:27.070200px;}
._19{width:29.019600px;}
._14{width:31.087800px;}
._5d{width:33.296400px;}
._5a{width:34.538400px;}
._5c{width:38.811000px;}
._33{width:74.791800px;}
._53{width:78.703800px;}
._1b{width:140.736000px;}
._4c{width:152.294400px;}
._4d{width:161.650200px;}
._50{width:167.724600px;}
._26{width:169.624200px;}
._4e{width:171.645000px;}
._4b{width:175.248000px;}
._51{width:176.934000px;}
._54{width:179.444400px;}
._47{width:199.077600px;}
._43{width:206.673000px;}
._44{width:209.017800px;}
._46{width:212.746800px;}
._59{width:214.277400px;}
._52{width:215.758200px;}
._42{width:218.616600px;}
._41{width:220.270200px;}
._57{width:223.551600px;}
._45{width:227.353200px;}
._58{width:228.576600px;}
._48{width:235.208400px;}
._23{width:239.002800px;}
._4a{width:242.177400px;}
._22{width:245.476800px;}
._3b{width:275.586000px;}
._3c{width:283.600800px;}
._25{width:284.725800px;}
._40{width:292.749600px;}
._24{width:319.644600px;}
._38{width:332.036400px;}
._37{width:338.867400px;}
._4f{width:356.449800px;}
._3f{width:361.305600px;}
._39{width:369.346800px;}
._34{width:406.066200px;}
._35{width:423.149400px;}
._3d{width:431.505600px;}
._3a{width:441.157200px;}
._20{width:443.884800px;}
._49{width:445.380000px;}
._27{width:454.159800px;}
._3e{width:455.543400px;}
._56{width:477.147600px;}
._36{width:494.970600px;}
._55{width:496.635600px;}
._31{width:514.508400px;}
._2e{width:529.542600px;}
._30{width:531.082800px;}
._2c{width:558.510600px;}
._28{width:574.271400px;}
._2a{width:587.538000px;}
._2f{width:634.138200px;}
._29{width:647.895600px;}
._1c{width:651.499200px;}
._2b{width:661.618200px;}
._2d{width:675.351600px;}
._21{width:910.224000px;}
._1d{width:943.975800px;}
._1f{width:1043.453400px;}
._1e{width:1062.940800px;}
._c{width:2033.770800px;}
.fc6{color:rgb(48,88,159);}
.fc3{color:rgb(58,60,141);}
.fc2{color:rgb(5,6,6);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:56.737950px;}
.y5{bottom:66.525004px;}
.y38{bottom:89.114850px;}
.y4{bottom:97.125005px;}
.y110{bottom:97.795200px;}
.yfe{bottom:97.795350px;}
.y37{bottom:113.067600px;}
.yb1{bottom:115.795200px;}
.y88{bottom:115.795350px;}
.y36{bottom:128.067600px;}
.yb0{bottom:133.795200px;}
.y87{bottom:133.795350px;}
.y21{bottom:139.264499px;}
.yaf{bottom:151.795200px;}
.y86{bottom:151.795350px;}
.yae{bottom:169.795200px;}
.y35{bottom:169.795350px;}
.yad{bottom:187.795200px;}
.y34{bottom:187.795350px;}
.y18{bottom:196.933500px;}
.yac{bottom:205.795200px;}
.y33{bottom:205.795350px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yeb{bottom:209.859900px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yab{bottom:223.795200px;}
.y85{bottom:223.795350px;}
.yea{bottom:226.930200px;}
.yc1{bottom:227.365800px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yaa{bottom:241.795200px;}
.y84{bottom:241.795350px;}
.ye9{bottom:244.000500px;}
.ya9{bottom:259.795200px;}
.y52{bottom:259.795350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ye8{bottom:262.742700px;}
.yd9{bottom:270.273750px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya8{bottom:277.795200px;}
.y51{bottom:277.795350px;}
.y83{bottom:279.439500px;}
.ybf{bottom:283.719000px;}
.y1b{bottom:285.118502px;}
.yed{bottom:285.121800px;}
.y12{bottom:285.133499px;}
.yd8{bottom:293.819100px;}
.ya7{bottom:295.795200px;}
.y50{bottom:295.795350px;}
.ybe{bottom:300.789450px;}
.yec{bottom:303.121800px;}
.yd7{bottom:306.769050px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ya6{bottom:313.795200px;}
.y82{bottom:313.795350px;}
.y4f{bottom:317.365950px;}
.yc0{bottom:321.121800px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yd6{bottom:323.839350px;}
.yd5{bottom:330.314400px;}
.ya5{bottom:331.795200px;}
.y81{bottom:331.795350px;}
.yf{bottom:348.133500px;}
.y49{bottom:349.795200px;}
.y80{bottom:349.795350px;}
.yda{bottom:357.121800px;}
.ya4{bottom:367.795200px;}
.y7f{bottom:367.795350px;}
.y48{bottom:385.795200px;}
.y7e{bottom:385.795350px;}
.ye{bottom:386.785499px;}
.y47{bottom:403.795200px;}
.y7d{bottom:403.795350px;}
.yf8{bottom:407.718150px;}
.yd{bottom:408.044999px;}
.y46{bottom:421.795200px;}
.y7c{bottom:421.795350px;}
.yf7{bottom:424.788450px;}
.y45{bottom:439.795200px;}
.y7b{bottom:439.795350px;}
.yf6{bottom:441.858750px;}
.ybd{bottom:444.931200px;}
.y44{bottom:457.795200px;}
.y7a{bottom:457.795350px;}
.yf5{bottom:460.859250px;}
.ybc{bottom:462.001650px;}
.y43{bottom:475.795200px;}
.y79{bottom:475.795350px;}
.y10f{bottom:478.961550px;}
.ybb{bottom:479.071950px;}
.yf9{bottom:483.121800px;}
.y42{bottom:493.795200px;}
.y78{bottom:493.795350px;}
.y10e{bottom:495.161550px;}
.yba{bottom:496.142400px;}
.yc{bottom:502.864502px;}
.y10d{bottom:511.361550px;}
.y41{bottom:511.795200px;}
.y77{bottom:511.795350px;}
.yb9{bottom:515.001000px;}
.yb{bottom:520.864502px;}
.y10c{bottom:527.561400px;}
.y40{bottom:529.795200px;}
.y76{bottom:529.795350px;}
.yb8{bottom:537.121800px;}
.ya{bottom:538.864499px;}
.y3f{bottom:547.795200px;}
.y75{bottom:547.795350px;}
.y10b{bottom:548.013450px;}
.y9{bottom:556.864499px;}
.y3e{bottom:565.795200px;}
.y74{bottom:565.795350px;}
.y10a{bottom:568.465350px;}
.yfa{bottom:571.039500px;}
.y3d{bottom:583.795200px;}
.y73{bottom:583.795350px;}
.y109{bottom:584.665350px;}
.ye5{bottom:588.285000px;}
.y108{bottom:600.865500px;}
.y3c{bottom:601.795200px;}
.y72{bottom:601.795350px;}
.ye4{bottom:605.355450px;}
.yd3{bottom:605.598000px;}
.y107{bottom:617.065500px;}
.y3b{bottom:619.795200px;}
.y71{bottom:619.795350px;}
.yd0{bottom:620.538450px;}
.ye3{bottom:622.425750px;}
.yd2{bottom:622.668300px;}
.y106{bottom:637.517400px;}
.y3a{bottom:637.795200px;}
.y70{bottom:637.795350px;}
.yd1{bottom:639.738600px;}
.ye2{bottom:641.142750px;}
.y8{bottom:645.510000px;}
.y39{bottom:655.795200px;}
.y6f{bottom:655.795350px;}
.ycf{bottom:656.809050px;}
.y105{bottom:657.969300px;}
.ye7{bottom:663.121800px;}
.y7{bottom:666.771000px;}
.ya3{bottom:673.795200px;}
.y6e{bottom:673.795350px;}
.yce{bottom:673.879350px;}
.y104{bottom:674.169300px;}
.ye6{bottom:681.121800px;}
.y32{bottom:686.457600px;}
.yca{bottom:688.819800px;}
.y103{bottom:690.369300px;}
.ycd{bottom:690.949650px;}
.ya2{bottom:691.795200px;}
.y6d{bottom:691.795350px;}
.y31{bottom:702.657600px;}
.y102{bottom:706.569300px;}
.ycc{bottom:708.019950px;}
.ya1{bottom:709.795200px;}
.y6c{bottom:709.795350px;}
.y30{bottom:718.857450px;}
.ycb{bottom:725.090400px;}
.y6{bottom:726.298500px;}
.y101{bottom:727.021350px;}
.ya0{bottom:727.795200px;}
.y6b{bottom:727.795350px;}
.y2f{bottom:735.057600px;}
.yc9{bottom:742.160700px;}
.y9f{bottom:745.795200px;}
.y6a{bottom:745.795350px;}
.y3{bottom:752.599495px;}
.y2e{bottom:755.509500px;}
.yc8{bottom:759.231000px;}
.y9e{bottom:763.795200px;}
.y69{bottom:763.795350px;}
.y100{bottom:764.821350px;}
.yc5{bottom:765.636300px;}
.y2d{bottom:775.961550px;}
.yc7{bottom:776.301300px;}
.y9d{bottom:781.795200px;}
.y68{bottom:781.795350px;}
.yff{bottom:786.421350px;}
.y2c{bottom:792.161550px;}
.yc6{bottom:793.371750px;}
.y9c{bottom:799.795200px;}
.y67{bottom:799.795350px;}
.y2b{bottom:808.361550px;}
.yc4{bottom:810.442050px;}
.yc3{bottom:816.847350px;}
.y9b{bottom:817.795200px;}
.y66{bottom:817.795350px;}
.yf2{bottom:823.214700px;}
.y2a{bottom:824.561400px;}
.y9a{bottom:835.795200px;}
.y65{bottom:835.795350px;}
.yb7{bottom:838.543800px;}
.yf1{bottom:840.285000px;}
.y29{bottom:845.013450px;}
.yc2{bottom:849.556200px;}
.y99{bottom:853.795200px;}
.y64{bottom:853.795350px;}
.yb6{bottom:854.743800px;}
.yf0{bottom:857.355450px;}
.y28{bottom:869.717400px;}
.y98{bottom:871.795200px;}
.y63{bottom:871.795350px;}
.yef{bottom:874.425600px;}
.yb5{bottom:878.299800px;}
.yd4{bottom:879.121800px;}
.y2{bottom:879.369000px;}
.y97{bottom:889.795200px;}
.y62{bottom:889.795350px;}
.y27{bottom:890.169300px;}
.yee{bottom:893.142750px;}
.yb4{bottom:900.631800px;}
.y26{bottom:906.369300px;}
.y96{bottom:907.795200px;}
.y61{bottom:907.795350px;}
.yb3{bottom:908.191800px;}
.yf4{bottom:915.121800px;}
.y25{bottom:922.569450px;}
.y95{bottom:925.795200px;}
.y60{bottom:925.795350px;}
.yf3{bottom:933.121800px;}
.y24{bottom:943.021350px;}
.y94{bottom:943.795200px;}
.y5f{bottom:943.795350px;}
.ydf{bottom:948.426750px;}
.yb2{bottom:949.039500px;}
.y93{bottom:961.795200px;}
.y5e{bottom:961.795350px;}
.yfd{bottom:965.365950px;}
.yde{bottom:965.497050px;}
.y1{bottom:966.726000px;}
.y92{bottom:979.795200px;}
.y5d{bottom:979.795350px;}
.y23{bottom:980.821350px;}
.ydd{bottom:982.567350px;}
.y91{bottom:997.795200px;}
.y5c{bottom:997.795350px;}
.ydc{bottom:1000.693500px;}
.y22{bottom:1002.421350px;}
.y90{bottom:1015.795200px;}
.y5b{bottom:1015.795350px;}
.ydb{bottom:1019.875350px;}
.yfc{bottom:1021.039350px;}
.y8f{bottom:1033.795200px;}
.y5a{bottom:1033.795350px;}
.ye1{bottom:1041.263550px;}
.y8e{bottom:1051.795200px;}
.y4e{bottom:1051.795350px;}
.ye0{bottom:1059.263550px;}
.y8d{bottom:1069.795200px;}
.y59{bottom:1069.795350px;}
.yfb{bottom:1075.039350px;}
.y8c{bottom:1087.795200px;}
.y58{bottom:1087.795350px;}
.y4d{bottom:1088.415000px;}
.y8b{bottom:1105.795200px;}
.y57{bottom:1105.795350px;}
.y4c{bottom:1107.915000px;}
.y8a{bottom:1123.795200px;}
.y56{bottom:1123.795350px;}
.y4b{bottom:1127.415000px;}
.y4a{bottom:1154.052750px;}
.y89{bottom:1175.269800px;}
.y55{bottom:1176.367650px;}
.y53{bottom:1186.184700px;}
.h7{height:32.130000px;}
.h11{height:34.560000px;}
.h17{height:36.468750px;}
.he{height:36.726562px;}
.hd{height:36.773438px;}
.h1f{height:37.422914px;}
.h12{height:38.880000px;}
.h14{height:41.317383px;}
.hb{height:41.370117px;}
.hc{height:41.568000px;}
.h1e{height:42.100778px;}
.h18{height:42.372750px;}
.h10{height:43.200000px;}
.h15{height:43.260000px;}
.h19{height:45.539062px;}
.h6{height:45.900000px;}
.ha{height:46.764000px;}
.h3{height:48.195000px;}
.h16{height:51.231445px;}
.h13{height:51.960000px;}
.h2{height:55.080000px;}
.h9{height:62.352000px;}
.h1d{height:62.673037px;}
.h1b{height:71.439263px;}
.h5{height:78.030000px;}
.h1a{height:79.433438px;}
.h1c{height:97.339463px;}
.hf{height:111.510000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.661850px;}
.x5{left:85.039350px;}
.x2f{left:96.579000px;}
.x40{left:100.806750px;}
.x1{left:102.045000px;}
.x16{left:103.122600px;}
.x2{left:106.297500px;}
.xe{left:110.551200px;}
.x2d{left:114.655200px;}
.x37{left:115.863600px;}
.x2e{left:117.705000px;}
.x21{left:120.614400px;}
.x17{left:124.471200px;}
.x33{left:126.163200px;}
.x19{left:128.153550px;}
.x18{left:129.841050px;}
.xf{left:131.701350px;}
.x36{left:136.476900px;}
.x1b{left:150.705150px;}
.x1c{left:153.681750px;}
.x1d{left:164.506950px;}
.x3f{left:189.432600px;}
.x35{left:200.661750px;}
.x8{left:201.889500px;}
.x4{left:203.484001px;}
.x29{left:212.336100px;}
.x6{left:237.742950px;}
.x7{left:241.651200px;}
.x39{left:250.693500px;}
.x3c{left:255.862500px;}
.x38{left:264.579150px;}
.x3e{left:268.715400px;}
.x34{left:270.488700px;}
.x3b{left:271.721250px;}
.x15{left:276.006000px;}
.x28{left:281.055750px;}
.x30{left:289.525800px;}
.x32{left:303.195150px;}
.x27{left:307.668750px;}
.x3a{left:309.160950px;}
.x25{left:311.817150px;}
.x22{left:314.843550px;}
.x20{left:318.652200px;}
.x24{left:327.704850px;}
.x1e{left:329.336700px;}
.x26{left:331.466550px;}
.x23{left:332.738100px;}
.x1a{left:336.819600px;}
.x1f{left:340.636500px;}
.x2a{left:347.508900px;}
.x41{left:353.637600px;}
.x31{left:409.393200px;}
.x3{left:454.959000px;}
.x2b{left:456.050100px;}
.x9{left:457.086600px;}
.xd{left:482.598450px;}
.x13{left:484.700250px;}
.x12{left:489.212250px;}
.x3d{left:512.519850px;}
.x14{left:556.087950px;}
.xb{left:571.609800px;}
.x11{left:631.580250px;}
.x2c{left:659.174100px;}
.xa{left:694.496700px;}
.xc{left:799.316550px;}
.x42{left:800.524200px;}
@media print{
.v7{vertical-align:-30.347733pt;}
.v8{vertical-align:-16.139733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.248000pt;}
.v3{vertical-align:7.572800pt;}
.v9{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.v5{vertical-align:23.022400pt;}
.v4{vertical-align:37.920000pt;}
.v6{vertical-align:46.044800pt;}
.lse{letter-spacing:-2.666667pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-1.440000pt;}
.ls1d{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.005333pt;}
.ls1b{letter-spacing:0.273685pt;}
.ls5{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls3{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.205867pt;}
.lsd{letter-spacing:1.440000pt;}
.lsb{letter-spacing:2.150400pt;}
.ls18{letter-spacing:3.052160pt;}
.ls15{letter-spacing:4.235093pt;}
.ls14{letter-spacing:7.551467pt;}
.ls1{letter-spacing:13.854933pt;}
.ls19{letter-spacing:154.418219pt;}
.ls16{letter-spacing:194.437952pt;}
.ls1a{letter-spacing:194.505685pt;}
.ls11{letter-spacing:403.718400pt;}
.ls12{letter-spacing:403.718933pt;}
.lsf{letter-spacing:512.980800pt;}
.ls13{letter-spacing:600.312533pt;}
.ls10{letter-spacing:656.418667pt;}
.ws5{word-spacing:-15.893333pt;}
.ws40{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.093333pt;}
.ws53{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.304000pt;}
.ws1{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.384000pt;}
.ws29{word-spacing:-11.093333pt;}
.ws41{word-spacing:-7.275840pt;}
.ws3c{word-spacing:-5.035733pt;}
.ws44{word-spacing:-3.600000pt;}
.wsb{word-spacing:-2.256000pt;}
.ws4d{word-spacing:-2.064000pt;}
.ws4b{word-spacing:-1.776000pt;}
.ws47{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.664000pt;}
.wsf{word-spacing:-1.621333pt;}
.ws49{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws52{word-spacing:-0.868800pt;}
.ws8{word-spacing:-0.480000pt;}
.ws54{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws51{word-spacing:0.024000pt;}
.ws9{word-spacing:0.048000pt;}
.ws7{word-spacing:0.480000pt;}
.ws11{word-spacing:0.533333pt;}
.ws6{word-spacing:0.960000pt;}
.ws56{word-spacing:1.392000pt;}
.ws57{word-spacing:1.440000pt;}
.ws42{word-spacing:1.600000pt;}
.ws46{word-spacing:1.824000pt;}
.ws3d{word-spacing:2.352000pt;}
.wsa{word-spacing:2.666667pt;}
.ws3b{word-spacing:2.688000pt;}
.ws50{word-spacing:2.976000pt;}
.ws58{word-spacing:3.312000pt;}
.ws45{word-spacing:4.416000pt;}
.ws4a{word-spacing:5.184000pt;}
.ws3f{word-spacing:7.200000pt;}
.ws3e{word-spacing:7.536000pt;}
.ws4c{word-spacing:9.408000pt;}
.ws43{word-spacing:10.704000pt;}
.ws48{word-spacing:11.040000pt;}
.ws55{word-spacing:11.616000pt;}
.ws4e{word-spacing:12.288000pt;}
.ws1d{word-spacing:75.685867pt;}
.ws1e{word-spacing:106.010667pt;}
.ws3a{word-spacing:115.054400pt;}
.ws2e{word-spacing:120.864000pt;}
.ws2f{word-spacing:132.606933pt;}
.ws1f{word-spacing:133.785600pt;}
.ws2a{word-spacing:158.198933pt;}
.ws33{word-spacing:158.266133pt;}
.ws28{word-spacing:165.817067pt;}
.ws32{word-spacing:165.884800pt;}
.ws2b{word-spacing:178.014933pt;}
.ws34{word-spacing:178.082667pt;}
.ws38{word-spacing:179.375467pt;}
.ws2d{word-spacing:224.659733pt;}
.ws27{word-spacing:259.136533pt;}
.ws31{word-spacing:259.169600pt;}
.ws2c{word-spacing:289.703467pt;}
.ws20{word-spacing:306.768000pt;}
.ws39{word-spacing:328.158933pt;}
.ws21{word-spacing:331.884267pt;}
.wse{word-spacing:342.942400pt;}
.ws37{word-spacing:345.481600pt;}
.ws26{word-spacing:404.219733pt;}
.ws30{word-spacing:404.388800pt;}
.ws22{word-spacing:443.354133pt;}
.ws12{word-spacing:447.551467pt;}
.ws19{word-spacing:493.182933pt;}
.ws1b{word-spacing:497.238933pt;}
.ws23{word-spacing:499.637333pt;}
.ws14{word-spacing:505.151467pt;}
.ws1c{word-spacing:518.757867pt;}
.wsc{word-spacing:519.210667pt;}
.ws1a{word-spacing:520.038933pt;}
.ws18{word-spacing:523.282133pt;}
.ws16{word-spacing:535.052800pt;}
.ws17{word-spacing:551.326933pt;}
.ws24{word-spacing:553.137067pt;}
.ws15{word-spacing:558.626133pt;}
.ws36{word-spacing:582.870933pt;}
.ws13{word-spacing:586.635200pt;}
.ws35{word-spacing:625.717867pt;}
.wsd{word-spacing:1047.739733pt;}
._5b{margin-left:-13.111467pt;}
._18{margin-left:-12.161600pt;}
._32{margin-left:-7.320000pt;}
._5e{margin-left:-6.238400pt;}
._3{margin-left:-5.120000pt;}
._15{margin-left:-4.171200pt;}
._1{margin-left:-3.200000pt;}
._8{margin-left:-2.238400pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.273600pt;}
._4{width:2.349867pt;}
._f{width:3.984000pt;}
._a{width:5.404800pt;}
._7{width:6.696000pt;}
._6{width:8.107200pt;}
._9{width:9.379200pt;}
._d{width:10.310400pt;}
._b{width:11.524800pt;}
._5{width:14.232000pt;}
._17{width:15.230400pt;}
._16{width:16.728000pt;}
._1a{width:18.163200pt;}
._e{width:19.377600pt;}
._10{width:20.284800pt;}
._12{width:21.475200pt;}
._11{width:22.636800pt;}
._13{width:24.062400pt;}
._19{width:25.795200pt;}
._14{width:27.633600pt;}
._5d{width:29.596800pt;}
._5a{width:30.700800pt;}
._5c{width:34.498667pt;}
._33{width:66.481600pt;}
._53{width:69.958933pt;}
._1b{width:125.098667pt;}
._4c{width:135.372800pt;}
._4d{width:143.689067pt;}
._50{width:149.088533pt;}
._26{width:150.777067pt;}
._4e{width:152.573333pt;}
._4b{width:155.776000pt;}
._51{width:157.274667pt;}
._54{width:159.506133pt;}
._47{width:176.957867pt;}
._43{width:183.709333pt;}
._44{width:185.793600pt;}
._46{width:189.108267pt;}
._59{width:190.468800pt;}
._52{width:191.785067pt;}
._42{width:194.325867pt;}
._41{width:195.795733pt;}
._57{width:198.712533pt;}
._45{width:202.091733pt;}
._58{width:203.179200pt;}
._48{width:209.074133pt;}
._23{width:212.446933pt;}
._4a{width:215.268800pt;}
._22{width:218.201600pt;}
._3b{width:244.965333pt;}
._3c{width:252.089600pt;}
._25{width:253.089600pt;}
._40{width:260.221867pt;}
._24{width:284.128533pt;}
._38{width:295.143467pt;}
._37{width:301.215467pt;}
._4f{width:316.844267pt;}
._3f{width:321.160533pt;}
._39{width:328.308267pt;}
._34{width:360.947733pt;}
._35{width:376.132800pt;}
._3d{width:383.560533pt;}
._3a{width:392.139733pt;}
._20{width:394.564267pt;}
._49{width:395.893333pt;}
._27{width:403.697600pt;}
._3e{width:404.927467pt;}
._56{width:424.131200pt;}
._36{width:439.973867pt;}
._55{width:441.453867pt;}
._31{width:457.340800pt;}
._2e{width:470.704533pt;}
._30{width:472.073600pt;}
._2c{width:496.453867pt;}
._28{width:510.463467pt;}
._2a{width:522.256000pt;}
._2f{width:563.678400pt;}
._29{width:575.907200pt;}
._1c{width:579.110400pt;}
._2b{width:588.105067pt;}
._2d{width:600.312533pt;}
._21{width:809.088000pt;}
._1d{width:839.089600pt;}
._1f{width:927.514133pt;}
._1e{width:944.836267pt;}
._c{width:1807.796267pt;}
.fs9{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:50.433733pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:79.213200pt;}
.y4{bottom:86.333337pt;}
.y110{bottom:86.929067pt;}
.yfe{bottom:86.929200pt;}
.y37{bottom:100.504533pt;}
.yb1{bottom:102.929067pt;}
.y88{bottom:102.929200pt;}
.y36{bottom:113.837867pt;}
.yb0{bottom:118.929067pt;}
.y87{bottom:118.929200pt;}
.y21{bottom:123.790666pt;}
.yaf{bottom:134.929067pt;}
.y86{bottom:134.929200pt;}
.yae{bottom:150.929067pt;}
.y35{bottom:150.929200pt;}
.yad{bottom:166.929067pt;}
.y34{bottom:166.929200pt;}
.y18{bottom:175.052000pt;}
.yac{bottom:182.929067pt;}
.y33{bottom:182.929200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yeb{bottom:186.542133pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yab{bottom:198.929067pt;}
.y85{bottom:198.929200pt;}
.yea{bottom:201.715733pt;}
.yc1{bottom:202.102933pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yaa{bottom:214.929067pt;}
.y84{bottom:214.929200pt;}
.ye9{bottom:216.889333pt;}
.ya9{bottom:230.929067pt;}
.y52{bottom:230.929200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ye8{bottom:233.549067pt;}
.yd9{bottom:240.243333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya8{bottom:246.929067pt;}
.y51{bottom:246.929200pt;}
.y83{bottom:248.390667pt;}
.ybf{bottom:252.194667pt;}
.y1b{bottom:253.438668pt;}
.yed{bottom:253.441600pt;}
.y12{bottom:253.451999pt;}
.yd8{bottom:261.172533pt;}
.ya7{bottom:262.929067pt;}
.y50{bottom:262.929200pt;}
.ybe{bottom:267.368400pt;}
.yec{bottom:269.441600pt;}
.yd7{bottom:272.683600pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ya6{bottom:278.929067pt;}
.y82{bottom:278.929200pt;}
.y4f{bottom:282.103067pt;}
.yc0{bottom:285.441600pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yd6{bottom:287.857200pt;}
.yd5{bottom:293.612800pt;}
.ya5{bottom:294.929067pt;}
.y81{bottom:294.929200pt;}
.yf{bottom:309.452000pt;}
.y49{bottom:310.929067pt;}
.y80{bottom:310.929200pt;}
.yda{bottom:317.441600pt;}
.ya4{bottom:326.929067pt;}
.y7f{bottom:326.929200pt;}
.y48{bottom:342.929067pt;}
.y7e{bottom:342.929200pt;}
.ye{bottom:343.809333pt;}
.y47{bottom:358.929067pt;}
.y7d{bottom:358.929200pt;}
.yf8{bottom:362.416133pt;}
.yd{bottom:362.706666pt;}
.y46{bottom:374.929067pt;}
.y7c{bottom:374.929200pt;}
.yf7{bottom:377.589733pt;}
.y45{bottom:390.929067pt;}
.y7b{bottom:390.929200pt;}
.yf6{bottom:392.763333pt;}
.ybd{bottom:395.494400pt;}
.y44{bottom:406.929067pt;}
.y7a{bottom:406.929200pt;}
.yf5{bottom:409.652667pt;}
.ybc{bottom:410.668133pt;}
.y43{bottom:422.929067pt;}
.y79{bottom:422.929200pt;}
.y10f{bottom:425.743600pt;}
.ybb{bottom:425.841733pt;}
.yf9{bottom:429.441600pt;}
.y42{bottom:438.929067pt;}
.y78{bottom:438.929200pt;}
.y10e{bottom:440.143600pt;}
.yba{bottom:441.015467pt;}
.yc{bottom:446.990669pt;}
.y10d{bottom:454.543600pt;}
.y41{bottom:454.929067pt;}
.y77{bottom:454.929200pt;}
.yb9{bottom:457.778667pt;}
.yb{bottom:462.990669pt;}
.y10c{bottom:468.943467pt;}
.y40{bottom:470.929067pt;}
.y76{bottom:470.929200pt;}
.yb8{bottom:477.441600pt;}
.ya{bottom:478.990666pt;}
.y3f{bottom:486.929067pt;}
.y75{bottom:486.929200pt;}
.y10b{bottom:487.123067pt;}
.y9{bottom:494.990666pt;}
.y3e{bottom:502.929067pt;}
.y74{bottom:502.929200pt;}
.y10a{bottom:505.302533pt;}
.yfa{bottom:507.590667pt;}
.y3d{bottom:518.929067pt;}
.y73{bottom:518.929200pt;}
.y109{bottom:519.702533pt;}
.ye5{bottom:522.920000pt;}
.y108{bottom:534.102667pt;}
.y3c{bottom:534.929067pt;}
.y72{bottom:534.929200pt;}
.ye4{bottom:538.093733pt;}
.yd3{bottom:538.309333pt;}
.y107{bottom:548.502667pt;}
.y3b{bottom:550.929067pt;}
.y71{bottom:550.929200pt;}
.yd0{bottom:551.589733pt;}
.ye3{bottom:553.267333pt;}
.yd2{bottom:553.482933pt;}
.y106{bottom:566.682133pt;}
.y3a{bottom:566.929067pt;}
.y70{bottom:566.929200pt;}
.yd1{bottom:568.656533pt;}
.ye2{bottom:569.904667pt;}
.y8{bottom:573.786667pt;}
.y39{bottom:582.929067pt;}
.y6f{bottom:582.929200pt;}
.ycf{bottom:583.830267pt;}
.y105{bottom:584.861600pt;}
.ye7{bottom:589.441600pt;}
.y7{bottom:592.685334pt;}
.ya3{bottom:598.929067pt;}
.y6e{bottom:598.929200pt;}
.yce{bottom:599.003867pt;}
.y104{bottom:599.261600pt;}
.ye6{bottom:605.441600pt;}
.y32{bottom:610.184533pt;}
.yca{bottom:612.284267pt;}
.y103{bottom:613.661600pt;}
.ycd{bottom:614.177467pt;}
.ya2{bottom:614.929067pt;}
.y6d{bottom:614.929200pt;}
.y31{bottom:624.584533pt;}
.y102{bottom:628.061600pt;}
.ycc{bottom:629.351067pt;}
.ya1{bottom:630.929067pt;}
.y6c{bottom:630.929200pt;}
.y30{bottom:638.984400pt;}
.ycb{bottom:644.524800pt;}
.y6{bottom:645.598667pt;}
.y101{bottom:646.241200pt;}
.ya0{bottom:646.929067pt;}
.y6b{bottom:646.929200pt;}
.y2f{bottom:653.384533pt;}
.yc9{bottom:659.698400pt;}
.y9f{bottom:662.929067pt;}
.y6a{bottom:662.929200pt;}
.y3{bottom:668.977329pt;}
.y2e{bottom:671.564000pt;}
.yc8{bottom:674.872000pt;}
.y9e{bottom:678.929067pt;}
.y69{bottom:678.929200pt;}
.y100{bottom:679.841200pt;}
.yc5{bottom:680.565600pt;}
.y2d{bottom:689.743600pt;}
.yc7{bottom:690.045600pt;}
.y9d{bottom:694.929067pt;}
.y68{bottom:694.929200pt;}
.yff{bottom:699.041200pt;}
.y2c{bottom:704.143600pt;}
.yc6{bottom:705.219333pt;}
.y9c{bottom:710.929067pt;}
.y67{bottom:710.929200pt;}
.y2b{bottom:718.543600pt;}
.yc4{bottom:720.392933pt;}
.yc3{bottom:726.086533pt;}
.y9b{bottom:726.929067pt;}
.y66{bottom:726.929200pt;}
.yf2{bottom:731.746400pt;}
.y2a{bottom:732.943467pt;}
.y9a{bottom:742.929067pt;}
.y65{bottom:742.929200pt;}
.yb7{bottom:745.372267pt;}
.yf1{bottom:746.920000pt;}
.y29{bottom:751.123067pt;}
.yc2{bottom:755.161067pt;}
.y99{bottom:758.929067pt;}
.y64{bottom:758.929200pt;}
.yb6{bottom:759.772267pt;}
.yf0{bottom:762.093733pt;}
.y28{bottom:773.082133pt;}
.y98{bottom:774.929067pt;}
.y63{bottom:774.929200pt;}
.yef{bottom:777.267200pt;}
.yb5{bottom:780.710933pt;}
.yd4{bottom:781.441600pt;}
.y2{bottom:781.661334pt;}
.y97{bottom:790.929067pt;}
.y62{bottom:790.929200pt;}
.y27{bottom:791.261600pt;}
.yee{bottom:793.904667pt;}
.yb4{bottom:800.561600pt;}
.y26{bottom:805.661600pt;}
.y96{bottom:806.929067pt;}
.y61{bottom:806.929200pt;}
.yb3{bottom:807.281600pt;}
.yf4{bottom:813.441600pt;}
.y25{bottom:820.061733pt;}
.y95{bottom:822.929067pt;}
.y60{bottom:822.929200pt;}
.yf3{bottom:829.441600pt;}
.y24{bottom:838.241200pt;}
.y94{bottom:838.929067pt;}
.y5f{bottom:838.929200pt;}
.ydf{bottom:843.046000pt;}
.yb2{bottom:843.590667pt;}
.y93{bottom:854.929067pt;}
.y5e{bottom:854.929200pt;}
.yfd{bottom:858.103067pt;}
.yde{bottom:858.219600pt;}
.y1{bottom:859.312000pt;}
.y92{bottom:870.929067pt;}
.y5d{bottom:870.929200pt;}
.y23{bottom:871.841200pt;}
.ydd{bottom:873.393200pt;}
.y91{bottom:886.929067pt;}
.y5c{bottom:886.929200pt;}
.ydc{bottom:889.505333pt;}
.y22{bottom:891.041200pt;}
.y90{bottom:902.929067pt;}
.y5b{bottom:902.929200pt;}
.ydb{bottom:906.555867pt;}
.yfc{bottom:907.590533pt;}
.y8f{bottom:918.929067pt;}
.y5a{bottom:918.929200pt;}
.ye1{bottom:925.567600pt;}
.y8e{bottom:934.929067pt;}
.y4e{bottom:934.929200pt;}
.ye0{bottom:941.567600pt;}
.y8d{bottom:950.929067pt;}
.y59{bottom:950.929200pt;}
.yfb{bottom:955.590533pt;}
.y8c{bottom:966.929067pt;}
.y58{bottom:966.929200pt;}
.y4d{bottom:967.480000pt;}
.y8b{bottom:982.929067pt;}
.y57{bottom:982.929200pt;}
.y4c{bottom:984.813333pt;}
.y8a{bottom:998.929067pt;}
.y56{bottom:998.929200pt;}
.y4b{bottom:1002.146667pt;}
.y4a{bottom:1025.824667pt;}
.y89{bottom:1044.684267pt;}
.y55{bottom:1045.660133pt;}
.y53{bottom:1054.386400pt;}
.h7{height:28.560000pt;}
.h11{height:30.720000pt;}
.h17{height:32.416667pt;}
.he{height:32.645833pt;}
.hd{height:32.687500pt;}
.h1f{height:33.264812pt;}
.h12{height:34.560000pt;}
.h14{height:36.726562pt;}
.hb{height:36.773438pt;}
.hc{height:36.949333pt;}
.h1e{height:37.422914pt;}
.h18{height:37.664667pt;}
.h10{height:38.400000pt;}
.h15{height:38.453333pt;}
.h19{height:40.479167pt;}
.h6{height:40.800000pt;}
.ha{height:41.568000pt;}
.h3{height:42.840000pt;}
.h16{height:45.539062pt;}
.h13{height:46.186667pt;}
.h2{height:48.960000pt;}
.h9{height:55.424000pt;}
.h1d{height:55.709367pt;}
.h1b{height:63.501567pt;}
.h5{height:69.360000pt;}
.h1a{height:70.607500pt;}
.h1c{height:86.523967pt;}
.hf{height:99.120000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:68.143867pt;}
.x5{left:75.590533pt;}
.x2f{left:85.848000pt;}
.x40{left:89.606000pt;}
.x1{left:90.706667pt;}
.x16{left:91.664533pt;}
.x2{left:94.486667pt;}
.xe{left:98.267733pt;}
.x2d{left:101.915733pt;}
.x37{left:102.989867pt;}
.x2e{left:104.626667pt;}
.x21{left:107.212800pt;}
.x17{left:110.641067pt;}
.x33{left:112.145067pt;}
.x19{left:113.914267pt;}
.x18{left:115.414267pt;}
.xf{left:117.067867pt;}
.x36{left:121.312800pt;}
.x1b{left:133.960133pt;}
.x1c{left:136.606000pt;}
.x1d{left:146.228400pt;}
.x3f{left:168.384533pt;}
.x35{left:178.366000pt;}
.x8{left:179.457333pt;}
.x4{left:180.874667pt;}
.x29{left:188.743200pt;}
.x6{left:211.327067pt;}
.x7{left:214.801067pt;}
.x39{left:222.838667pt;}
.x3c{left:227.433333pt;}
.x38{left:235.181467pt;}
.x3e{left:238.858133pt;}
.x34{left:240.434400pt;}
.x3b{left:241.530000pt;}
.x15{left:245.338667pt;}
.x28{left:249.827333pt;}
.x30{left:257.356267pt;}
.x32{left:269.506800pt;}
.x27{left:273.483333pt;}
.x3a{left:274.809733pt;}
.x25{left:277.170800pt;}
.x22{left:279.860933pt;}
.x20{left:283.246400pt;}
.x24{left:291.293200pt;}
.x1e{left:292.743733pt;}
.x26{left:294.636933pt;}
.x23{left:295.767200pt;}
.x1a{left:299.395200pt;}
.x1f{left:302.788000pt;}
.x2a{left:308.896800pt;}
.x41{left:314.344533pt;}
.x31{left:363.905067pt;}
.x3{left:404.408000pt;}
.x2b{left:405.377867pt;}
.x9{left:406.299200pt;}
.xd{left:428.976400pt;}
.x13{left:430.844667pt;}
.x12{left:434.855333pt;}
.x3d{left:455.573200pt;}
.x14{left:494.300400pt;}
.xb{left:508.097600pt;}
.x11{left:561.404667pt;}
.x2c{left:585.932533pt;}
.xa{left:617.330400pt;}
.xc{left:710.503600pt;}
.x42{left:711.577067pt;}
}




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