
    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_f8a8bd07208d410931ad331d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_c78f8a8b4b45dc41c035f286.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.736816;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_391287076fd9d14e60ba1e13.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_3d12235630c40aac51145651.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_cb6440b0f933388cd49e52a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_7909c833211d72c3768cbe56.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_b9d572e19598ea1ffb2b6a28.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_f702f75f63a273dbf78f00df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_f8248880f60aa260ce890046.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5369b5d5bad3be3a2f6f69e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_8e2ae2e973393dbbc5e26af9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_39fb3c32245bf80a9b4ad9c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsf{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.217200px;}
.ls7{letter-spacing:-0.018720px;}
.ls14{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.109200px;}
.ls12{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.312000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.360720px;}
.ls3{letter-spacing:0.900000px;}
.ls15{letter-spacing:3.060000px;}
.lsc{letter-spacing:8.820000px;}
.ls4{letter-spacing:13.860000px;}
.lse{letter-spacing:15.840000px;}
.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:-17.531520px;}
.ws9{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.669200px;}
.ws11{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.145400px;}
.ws14{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.252000px;}
.wsc{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.075600px;}
.ws2{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wse{word-spacing:-14.580000px;}
.ws10{word-spacing:-12.780000px;}
.wsf{word-spacing:-8.280000px;}
.ws4{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-6.454080px;}
._16{margin-left:-5.100480px;}
._12{margin-left:-4.040640px;}
._a{margin-left:-2.666880px;}
._1{margin-left:-1.028000px;}
._0{width:1.015920px;}
._c{width:2.062560px;}
._10{width:3.107520px;}
._b{width:4.517280px;}
._11{width:5.686000px;}
._7{width:6.690800px;}
._6{width:8.194320px;}
._8{width:9.860400px;}
._9{width:10.909200px;}
._4{width:11.952000px;}
._5{width:13.505760px;}
._17{width:15.056800px;}
._13{width:17.887360px;}
._1a{width:19.209600px;}
._15{width:20.998080px;}
._14{width:22.383120px;}
._e{width:23.690640px;}
._d{width:24.704640px;}
._f{width:26.007840px;}
._1c{width:27.116640px;}
._1d{width:28.217280px;}
._22{width:36.365760px;}
._23{width:38.388560px;}
._26{width:44.513280px;}
._25{width:60.691360px;}
._24{width:62.066880px;}
._2{width:65.064000px;}
._21{width:66.340640px;}
._20{width:67.366080px;}
._19{width:108.108000px;}
._1b{width:128.778000px;}
._1e{width:144.866880px;}
._1f{width:145.918560px;}
._3{width:197.604000px;}
.fc5{color:rgb(73,74,76);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,102);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(192,0,0);}
.fc0{color:rgb(31,73,125);}
.fs1{font-size:5.760000px;}
.fsa{font-size:33.120000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.360000px;}
.y12d{bottom:2.700000px;}
.ye9{bottom:3.240000px;}
.y94{bottom:4.320000px;}
.y4a{bottom:4.860000px;}
.y96{bottom:6.480000px;}
.y99{bottom:6.660000px;}
.y9c{bottom:6.840000px;}
.ya1{bottom:7.020000px;}
.y31{bottom:12.060000px;}
.y19{bottom:12.240000px;}
.yee{bottom:12.630000px;}
.ye5{bottom:14.760000px;}
.yde{bottom:17.715000px;}
.y111{bottom:17.745000px;}
.y1b{bottom:19.440000px;}
.ye8{bottom:20.520000px;}
.y49{bottom:22.140000px;}
.ye1{bottom:25.740000px;}
.y2f{bottom:29.520000px;}
.ya{bottom:30.420000px;}
.y8{bottom:33.330000px;}
.y39{bottom:34.380000px;}
.y10a{bottom:36.150000px;}
.y125{bottom:37.800000px;}
.yc5{bottom:38.520000px;}
.yc3{bottom:38.880000px;}
.y48{bottom:39.420000px;}
.y2e{bottom:46.800000px;}
.yd2{bottom:46.875000px;}
.y47{bottom:56.700000px;}
.y4{bottom:57.636000px;}
.y38{bottom:60.660000px;}
.y2d{bottom:64.080000px;}
.yd3{bottom:66.420000px;}
.y10b{bottom:66.675000px;}
.y3{bottom:76.536000px;}
.y2c{bottom:81.180000px;}
.yd4{bottom:85.965000px;}
.y37{bottom:86.760000px;}
.yeb{bottom:93.636000px;}
.y45{bottom:93.816000px;}
.yc0{bottom:95.796000px;}
.y10c{bottom:97.200000px;}
.y2b{bottom:98.460000px;}
.y70{bottom:102.816000px;}
.yd5{bottom:105.555000px;}
.y44{bottom:112.176000px;}
.y36{bottom:113.040000px;}
.y136{bottom:114.516000px;}
.y2a{bottom:115.740000px;}
.y8e{bottom:119.736000px;}
.yea{bottom:120.636000px;}
.ybf{bottom:124.236000px;}
.yd6{bottom:125.100000px;}
.y10d{bottom:127.695000px;}
.y43{bottom:129.456000px;}
.y6f{bottom:131.256000px;}
.y6{bottom:132.510000px;}
.y29{bottom:133.020000px;}
.y42{bottom:134.676000px;}
.yd1{bottom:137.370000px;}
.y35{bottom:139.320000px;}
.y106{bottom:140.436000px;}
.yb2{bottom:142.596000px;}
.y135{bottom:142.956000px;}
.yd7{bottom:144.645000px;}
.y41{bottom:147.996000px;}
.y8d{bottom:148.176000px;}
.y28{bottom:150.300000px;}
.ybe{bottom:152.670000px;}
.ye7{bottom:155.910000px;}
.y10e{bottom:158.220000px;}
.y6e{bottom:159.690000px;}
.yd8{bottom:164.190000px;}
.y34{bottom:165.630000px;}
.y27{bottom:167.610000px;}
.y105{bottom:168.870000px;}
.y109{bottom:170.025000px;}
.yb1{bottom:171.210000px;}
.y134{bottom:171.390000px;}
.y8c{bottom:176.610000px;}
.ybd{bottom:181.110000px;}
.yd9{bottom:183.750000px;}
.y26{bottom:184.710000px;}
.y6d{bottom:188.130000px;}
.y10f{bottom:188.745000px;}
.ye6{bottom:191.190000px;}
.y33{bottom:191.910000px;}
.y40{bottom:192.630000px;}
.y104{bottom:197.310000px;}
.yb0{bottom:199.650000px;}
.y133{bottom:199.830000px;}
.y25{bottom:201.990000px;}
.yda{bottom:203.295000px;}
.y8b{bottom:205.050000px;}
.ybc{bottom:209.550000px;}
.y6c{bottom:216.570000px;}
.ye4{bottom:218.190000px;}
.y24{bottom:219.270000px;}
.y3f{bottom:221.070000px;}
.ydb{bottom:222.840000px;}
.y103{bottom:225.750000px;}
.yaf{bottom:228.090000px;}
.y132{bottom:228.270000px;}
.y8a{bottom:233.490000px;}
.y108{bottom:235.950000px;}
.y23{bottom:236.550000px;}
.ybb{bottom:238.170000px;}
.ydc{bottom:242.430000px;}
.y6b{bottom:245.190000px;}
.ye3{bottom:247.710000px;}
.y110{bottom:249.810000px;}
.y22{bottom:253.830000px;}
.y102{bottom:254.190000px;}
.yae{bottom:256.530000px;}
.y131{bottom:256.710000px;}
.yd0{bottom:258.630000px;}
.y3e{bottom:259.770000px;}
.y89{bottom:261.930000px;}
.ydd{bottom:261.975000px;}
.y14b{bottom:264.630000px;}
.yba{bottom:266.610000px;}
.y21{bottom:270.930000px;}
.y6a{bottom:273.675000px;}
.ye0{bottom:274.755000px;}
.y101{bottom:282.675000px;}
.yad{bottom:285.015000px;}
.y130{bottom:285.195000px;}
.y20{bottom:288.210000px;}
.y3d{bottom:289.515000px;}
.y88{bottom:290.415000px;}
.y14a{bottom:294.375000px;}
.yb9{bottom:295.095000px;}
.ye2{bottom:301.755000px;}
.y69{bottom:302.115000px;}
.y1f{bottom:305.490000px;}
.y100{bottom:311.115000px;}
.yac{bottom:313.455000px;}
.y12f{bottom:313.815000px;}
.y3c{bottom:316.875000px;}
.y1d{bottom:318.270000px;}
.y87{bottom:319.035000px;}
.y46{bottom:320.115000px;}
.y1e{bottom:322.770000px;}
.y149{bottom:322.815000px;}
.yb8{bottom:323.535000px;}
.yab{bottom:329.655000px;}
.y68{bottom:330.555000px;}
.ydf{bottom:331.995000px;}
.y3b{bottom:339.015000px;}
.yff{bottom:339.735000px;}
.y12e{bottom:342.255000px;}
.y86{bottom:347.475000px;}
.yaa{bottom:350.355000px;}
.y148{bottom:351.255000px;}
.yb7{bottom:351.975000px;}
.y12c{bottom:357.735000px;}
.y67{bottom:358.995000px;}
.y3a{bottom:361.155000px;}
.yfe{bottom:368.175000px;}
.ya9{bottom:371.055000px;}
.y12b{bottom:373.035000px;}
.y85{bottom:375.915000px;}
.y147{bottom:379.695000px;}
.y66{bottom:387.435000px;}
.yb6{bottom:388.335000px;}
.y12a{bottom:390.315000px;}
.ya8{bottom:391.755000px;}
.yfd{bottom:396.615000px;}
.y1c{bottom:399.495000px;}
.ycf{bottom:402.480000px;}
.y84{bottom:404.355000px;}
.y129{bottom:407.595000px;}
.y146{bottom:408.135000px;}
.ya7{bottom:412.455000px;}
.y65{bottom:415.875000px;}
.y128{bottom:424.875000px;}
.yfc{bottom:425.055000px;}
.y83{bottom:432.795000px;}
.ya6{bottom:433.155000px;}
.y145{bottom:436.575000px;}
.y127{bottom:442.155000px;}
.y64{bottom:444.315000px;}
.yfb{bottom:453.495000px;}
.ya5{bottom:453.675000px;}
.y126{bottom:459.255000px;}
.y82{bottom:461.235000px;}
.y144{bottom:465.015000px;}
.y63{bottom:472.755000px;}
.ya4{bottom:474.555000px;}
.y124{bottom:476.535000px;}
.yfa{bottom:481.935000px;}
.y81{bottom:489.675000px;}
.y143{bottom:493.455000px;}
.ya3{bottom:495.255000px;}
.y62{bottom:501.375000px;}
.yf9{bottom:510.375000px;}
.ya2{bottom:515.955000px;}
.y80{bottom:518.115000px;}
.y142{bottom:522.075000px;}
.y123{bottom:528.375000px;}
.y61{bottom:529.815000px;}
.ya0{bottom:536.475000px;}
.yf8{bottom:538.815000px;}
.y122{bottom:545.655000px;}
.y7f{bottom:546.555000px;}
.y141{bottom:550.515000px;}
.y9f{bottom:557.565000px;}
.y60{bottom:558.285000px;}
.y121{bottom:562.785000px;}
.yf7{bottom:567.285000px;}
.y7e{bottom:575.205000px;}
.y9e{bottom:578.265000px;}
.y140{bottom:578.985000px;}
.y120{bottom:580.065000px;}
.y5f{bottom:586.725000px;}
.yf6{bottom:595.905000px;}
.y11f{bottom:597.345000px;}
.y9d{bottom:598.965000px;}
.y7d{bottom:603.645000px;}
.y13f{bottom:607.425000px;}
.y11e{bottom:614.625000px;}
.y5e{bottom:615.165000px;}
.y32{bottom:618.945000px;}
.y9b{bottom:619.485000px;}
.yf5{bottom:624.345000px;}
.y11d{bottom:631.905000px;}
.y7c{bottom:632.085000px;}
.y13e{bottom:635.865000px;}
.y9a{bottom:640.365000px;}
.y5d{bottom:643.605000px;}
.y11c{bottom:649.185000px;}
.yf4{bottom:652.785000px;}
.y30{bottom:658.725000px;}
.y7b{bottom:660.525000px;}
.y98{bottom:661.065000px;}
.y13d{bottom:665.745000px;}
.y11b{bottom:666.285000px;}
.y5c{bottom:672.045000px;}
.yf3{bottom:681.225000px;}
.y97{bottom:681.765000px;}
.y11a{bottom:683.565000px;}
.y7a{bottom:688.965000px;}
.y13c{bottom:695.445000px;}
.y1a{bottom:698.325000px;}
.y5b{bottom:700.485000px;}
.y119{bottom:700.845000px;}
.y95{bottom:702.285000px;}
.yb5{bottom:703.005000px;}
.yf2{bottom:709.665000px;}
.y79{bottom:717.405000px;}
.y118{bottom:718.125000px;}
.y93{bottom:723.525000px;}
.y13b{bottom:723.885000px;}
.y90{bottom:728.745000px;}
.y5a{bottom:728.925000px;}
.yb4{bottom:731.445000px;}
.y117{bottom:735.405000px;}
.y18{bottom:745.305000px;}
.y78{bottom:745.845000px;}
.yf1{bottom:746.025000px;}
.y92{bottom:747.285000px;}
.yb3{bottom:750.705000px;}
.y13a{bottom:752.325000px;}
.y116{bottom:752.505000px;}
.y137{bottom:756.285000px;}
.y59{bottom:757.545000px;}
.y107{bottom:760.140000px;}
.yce{bottom:766.725000px;}
.y115{bottom:770.505000px;}
.y77{bottom:774.285000px;}
.y139{bottom:782.025000px;}
.y58{bottom:785.985000px;}
.y17{bottom:788.325000px;}
.ycd{bottom:793.725000px;}
.y76{bottom:802.725000px;}
.y16{bottom:805.425000px;}
.y114{bottom:805.785000px;}
.y138{bottom:813.165000px;}
.y57{bottom:814.425000px;}
.ycc{bottom:820.725000px;}
.y113{bottom:823.065000px;}
.y15{bottom:823.425000px;}
.y75{bottom:831.345000px;}
.y56{bottom:842.910000px;}
.y13{bottom:844.170000px;}
.y112{bottom:844.350000px;}
.ycb{bottom:847.770000px;}
.y14{bottom:851.010000px;}
.y74{bottom:859.830000px;}
.y12{bottom:864.690000px;}
.y55{bottom:871.350000px;}
.yca{bottom:874.770000px;}
.y11{bottom:883.590000px;}
.y73{bottom:888.270000px;}
.y54{bottom:899.790000px;}
.yc9{bottom:901.770000px;}
.y10{bottom:902.490000px;}
.y72{bottom:916.710000px;}
.yf{bottom:922.470000px;}
.y91{bottom:926.970000px;}
.y53{bottom:928.230000px;}
.yc8{bottom:928.770000px;}
.ye{bottom:946.590000px;}
.y71{bottom:955.410000px;}
.yc7{bottom:955.770000px;}
.y52{bottom:956.670000px;}
.yd{bottom:970.170000px;}
.yc6{bottom:982.770000px;}
.y51{bottom:985.110000px;}
.yc{bottom:990.870000px;}
.yc2{bottom:1009.770000px;}
.yb{bottom:1011.570000px;}
.y8f{bottom:1013.550000px;}
.y50{bottom:1013.730000px;}
.y5{bottom:1032.810000px;}
.y4f{bottom:1042.170000px;}
.yc4{bottom:1063.050000px;}
.y4e{bottom:1070.610000px;}
.yf0{bottom:1072.410000px;}
.yc1{bottom:1090.050000px;}
.y7{bottom:1095.990000px;}
.y4d{bottom:1099.050000px;}
.yef{bottom:1100.850000px;}
.yed{bottom:1117.050000px;}
.y4c{bottom:1127.520000px;}
.yec{bottom:1144.440000px;}
.y4b{bottom:1155.960000px;}
.y2{bottom:1176.120000px;}
.y1{bottom:1195.380000px;}
.h6{height:4.165313px;}
.h31{height:14.580000px;}
.h2e{height:17.100000px;}
.h2f{height:17.136000px;}
.h2d{height:17.280000px;}
.h2c{height:17.316000px;}
.h20{height:20.325000px;}
.h1c{height:20.520000px;}
.h1d{height:20.700000px;}
.h1e{height:20.880000px;}
.h1f{height:21.096000px;}
.h22{height:26.280000px;}
.h24{height:26.316000px;}
.h2a{height:26.676000px;}
.h28{height:28.800000px;}
.h29{height:34.560000px;}
.h18{height:34.855313px;}
.h15{height:35.100000px;}
.h12{height:35.280000px;}
.hf{height:39.760312px;}
.h11{height:42.164648px;}
.h13{height:42.480000px;}
.h2{height:43.146720px;}
.h3{height:43.215117px;}
.h17{height:46.736719px;}
.h32{height:47.691562px;}
.h10{height:49.255313px;}
.ha{height:50.800781px;}
.h30{height:51.840000px;}
.h23{height:52.560000px;}
.h27{height:53.280000px;}
.h4{height:53.573906px;}
.h26{height:53.709961px;}
.h1a{height:54.596250px;}
.he{height:59.343750px;}
.hd{height:59.383125px;}
.hc{height:59.436914px;}
.h1b{height:60.103125px;}
.h9{height:63.180000px;}
.hb{height:64.546875px;}
.h8{height:70.510781px;}
.h19{height:70.560000px;}
.h7{height:70.956000px;}
.h21{height:79.560000px;}
.h5{height:134.136000px;}
.h16{height:214.950000px;}
.h25{height:282.420000px;}
.h2b{height:293.580000px;}
.h14{height:341.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:23.040000px;}
.w1c{width:70.776000px;}
.w17{width:84.600000px;}
.w16{width:85.176000px;}
.w1f{width:94.860000px;}
.w20{width:94.896000px;}
.w12{width:95.040000px;}
.w11{width:95.976000px;}
.w1b{width:99.540000px;}
.w5{width:108.540000px;}
.w19{width:125.316000px;}
.w1e{width:139.896000px;}
.w1d{width:140.040000px;}
.w15{width:169.770000px;}
.wc{width:178.770000px;}
.w1a{width:189.750000px;}
.w10{width:191.010000px;}
.wd{width:229.530000px;}
.w7{width:261.435000px;}
.w3{width:308.775000px;}
.w4{width:348.015000px;}
.wb{width:357.015000px;}
.w9{width:481.035000px;}
.wa{width:487.515000px;}
.w13{width:555.120000px;}
.w18{width:570.060000px;}
.wf{width:574.305000px;}
.w14{width:595.545000px;}
.we{width:765.330000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.020000px;}
.x5{left:8.100000px;}
.x14{left:10.800000px;}
.x3f{left:13.860000px;}
.x35{left:14.940000px;}
.x2a{left:16.560000px;}
.x34{left:18.720000px;}
.x2b{left:19.980000px;}
.x36{left:21.780000px;}
.x4d{left:23.400000px;}
.x7{left:26.460000px;}
.x32{left:27.540000px;}
.x47{left:29.700000px;}
.x28{left:30.960000px;}
.x4a{left:32.760000px;}
.x45{left:35.310000px;}
.x27{left:37.080000px;}
.x26{left:38.160000px;}
.x19{left:45.540000px;}
.x49{left:47.340000px;}
.x44{left:49.680000px;}
.x4b{left:56.880000px;}
.x2{left:63.899987px;}
.x1b{left:64.980000px;}
.x4c{left:67.365000px;}
.x12{left:68.759987px;}
.x46{left:70.020000px;}
.xa{left:76.679987px;}
.x1c{left:77.940000px;}
.x1e{left:81.750000px;}
.x21{left:85.350000px;}
.x1f{left:89.130000px;}
.x43{left:94.860000px;}
.x4f{left:99.899987px;}
.x1d{left:101.520000px;}
.x22{left:105.345000px;}
.x4e{left:106.415987px;}
.x20{left:114.705000px;}
.x17{left:176.249987px;}
.x3b{left:186.330000px;}
.x38{left:189.000000px;}
.x24{left:194.250000px;}
.x2f{left:195.870000px;}
.x2c{left:197.820000px;}
.x2d{left:203.940000px;}
.x39{left:209.955000px;}
.x10{left:214.769987px;}
.x23{left:218.009987px;}
.x37{left:227.009987px;}
.x3d{left:230.969987px;}
.x30{left:266.429987px;}
.x11{left:279.929987px;}
.x48{left:284.070000px;}
.xb{left:298.469987px;}
.xe{left:325.335000px;}
.x1{left:343.334987px;}
.x13{left:345.855000px;}
.x2e{left:347.070000px;}
.xf{left:348.375000px;}
.x3a{left:359.025000px;}
.x6{left:372.675000px;}
.x3e{left:378.975000px;}
.x18{left:420.915000px;}
.x15{left:438.014987px;}
.x3c{left:439.094987px;}
.x3{left:442.874987px;}
.x4{left:446.654987px;}
.x40{left:478.515000px;}
.x41{left:549.285000px;}
.x1a{left:599.685000px;}
.x25{left:638.205000px;}
.x16{left:641.084987px;}
.x31{left:659.445000px;}
.x42{left:689.325000px;}
.x8{left:720.690000px;}
.x29{left:734.190000px;}
.x33{left:744.630000px;}
.xc{left:778.649973px;}
.xd{left:784.769987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.193067pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.097067pt;}
.ls12{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.277333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.320640pt;}
.ls3{letter-spacing:0.800000pt;}
.ls15{letter-spacing:2.720000pt;}
.lsc{letter-spacing:7.840000pt;}
.ls4{letter-spacing:12.320000pt;}
.lse{letter-spacing:14.080000pt;}
.ws0{word-spacing:-15.583573pt;}
.ws9{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.817067pt;}
.ws11{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.351467pt;}
.ws14{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.557333pt;}
.wsc{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.400533pt;}
.ws2{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.960000pt;}
.ws10{word-spacing:-11.360000pt;}
.wsf{word-spacing:-7.360000pt;}
.ws4{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-5.736960pt;}
._16{margin-left:-4.533760pt;}
._12{margin-left:-3.591680pt;}
._a{margin-left:-2.370560pt;}
._1{margin-left:-0.913778pt;}
._0{width:0.903040pt;}
._c{width:1.833387pt;}
._10{width:2.762240pt;}
._b{width:4.015360pt;}
._11{width:5.054222pt;}
._7{width:5.947378pt;}
._6{width:7.283840pt;}
._8{width:8.764800pt;}
._9{width:9.697067pt;}
._4{width:10.624000pt;}
._5{width:12.005120pt;}
._17{width:13.383822pt;}
._13{width:15.899876pt;}
._1a{width:17.075200pt;}
._15{width:18.664960pt;}
._14{width:19.896107pt;}
._e{width:21.058347pt;}
._d{width:21.959680pt;}
._f{width:23.118080pt;}
._1c{width:24.103680pt;}
._1d{width:25.082027pt;}
._22{width:32.325120pt;}
._23{width:34.123164pt;}
._26{width:39.567360pt;}
._25{width:53.947876pt;}
._24{width:55.170560pt;}
._2{width:57.834667pt;}
._21{width:58.969458pt;}
._20{width:59.880960pt;}
._19{width:96.096000pt;}
._1b{width:114.469333pt;}
._1e{width:128.770560pt;}
._1f{width:129.705387pt;}
._3{width:175.648000pt;}
.fs1{font-size:5.120000pt;}
.fsa{font-size:29.440000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.320000pt;}
.y12d{bottom:2.400000pt;}
.ye9{bottom:2.880000pt;}
.y94{bottom:3.840000pt;}
.y4a{bottom:4.320000pt;}
.y96{bottom:5.760000pt;}
.y99{bottom:5.920000pt;}
.y9c{bottom:6.080000pt;}
.ya1{bottom:6.240000pt;}
.y31{bottom:10.720000pt;}
.y19{bottom:10.880000pt;}
.yee{bottom:11.226667pt;}
.ye5{bottom:13.120000pt;}
.yde{bottom:15.746667pt;}
.y111{bottom:15.773333pt;}
.y1b{bottom:17.280000pt;}
.ye8{bottom:18.240000pt;}
.y49{bottom:19.680000pt;}
.ye1{bottom:22.880000pt;}
.y2f{bottom:26.240000pt;}
.ya{bottom:27.040000pt;}
.y8{bottom:29.626667pt;}
.y39{bottom:30.560000pt;}
.y10a{bottom:32.133333pt;}
.y125{bottom:33.600000pt;}
.yc5{bottom:34.240000pt;}
.yc3{bottom:34.560000pt;}
.y48{bottom:35.040000pt;}
.y2e{bottom:41.600000pt;}
.yd2{bottom:41.666667pt;}
.y47{bottom:50.400000pt;}
.y4{bottom:51.232000pt;}
.y38{bottom:53.920000pt;}
.y2d{bottom:56.960000pt;}
.yd3{bottom:59.040000pt;}
.y10b{bottom:59.266667pt;}
.y3{bottom:68.032000pt;}
.y2c{bottom:72.160000pt;}
.yd4{bottom:76.413333pt;}
.y37{bottom:77.120000pt;}
.yeb{bottom:83.232000pt;}
.y45{bottom:83.392000pt;}
.yc0{bottom:85.152000pt;}
.y10c{bottom:86.400000pt;}
.y2b{bottom:87.520000pt;}
.y70{bottom:91.392000pt;}
.yd5{bottom:93.826667pt;}
.y44{bottom:99.712000pt;}
.y36{bottom:100.480000pt;}
.y136{bottom:101.792000pt;}
.y2a{bottom:102.880000pt;}
.y8e{bottom:106.432000pt;}
.yea{bottom:107.232000pt;}
.ybf{bottom:110.432000pt;}
.yd6{bottom:111.200000pt;}
.y10d{bottom:113.506667pt;}
.y43{bottom:115.072000pt;}
.y6f{bottom:116.672000pt;}
.y6{bottom:117.786667pt;}
.y29{bottom:118.240000pt;}
.y42{bottom:119.712000pt;}
.yd1{bottom:122.106667pt;}
.y35{bottom:123.840000pt;}
.y106{bottom:124.832000pt;}
.yb2{bottom:126.752000pt;}
.y135{bottom:127.072000pt;}
.yd7{bottom:128.573333pt;}
.y41{bottom:131.552000pt;}
.y8d{bottom:131.712000pt;}
.y28{bottom:133.600000pt;}
.ybe{bottom:135.706667pt;}
.ye7{bottom:138.586667pt;}
.y10e{bottom:140.640000pt;}
.y6e{bottom:141.946667pt;}
.yd8{bottom:145.946667pt;}
.y34{bottom:147.226667pt;}
.y27{bottom:148.986667pt;}
.y105{bottom:150.106667pt;}
.y109{bottom:151.133333pt;}
.yb1{bottom:152.186667pt;}
.y134{bottom:152.346667pt;}
.y8c{bottom:156.986667pt;}
.ybd{bottom:160.986667pt;}
.yd9{bottom:163.333333pt;}
.y26{bottom:164.186667pt;}
.y6d{bottom:167.226667pt;}
.y10f{bottom:167.773333pt;}
.ye6{bottom:169.946667pt;}
.y33{bottom:170.586667pt;}
.y40{bottom:171.226667pt;}
.y104{bottom:175.386667pt;}
.yb0{bottom:177.466667pt;}
.y133{bottom:177.626667pt;}
.y25{bottom:179.546667pt;}
.yda{bottom:180.706667pt;}
.y8b{bottom:182.266667pt;}
.ybc{bottom:186.266667pt;}
.y6c{bottom:192.506667pt;}
.ye4{bottom:193.946667pt;}
.y24{bottom:194.906667pt;}
.y3f{bottom:196.506667pt;}
.ydb{bottom:198.080000pt;}
.y103{bottom:200.666667pt;}
.yaf{bottom:202.746667pt;}
.y132{bottom:202.906667pt;}
.y8a{bottom:207.546667pt;}
.y108{bottom:209.733333pt;}
.y23{bottom:210.266667pt;}
.ybb{bottom:211.706667pt;}
.ydc{bottom:215.493333pt;}
.y6b{bottom:217.946667pt;}
.ye3{bottom:220.186667pt;}
.y110{bottom:222.053333pt;}
.y22{bottom:225.626667pt;}
.y102{bottom:225.946667pt;}
.yae{bottom:228.026667pt;}
.y131{bottom:228.186667pt;}
.yd0{bottom:229.893333pt;}
.y3e{bottom:230.906667pt;}
.y89{bottom:232.826667pt;}
.ydd{bottom:232.866667pt;}
.y14b{bottom:235.226667pt;}
.yba{bottom:236.986667pt;}
.y21{bottom:240.826667pt;}
.y6a{bottom:243.266667pt;}
.ye0{bottom:244.226667pt;}
.y101{bottom:251.266667pt;}
.yad{bottom:253.346667pt;}
.y130{bottom:253.506667pt;}
.y20{bottom:256.186667pt;}
.y3d{bottom:257.346667pt;}
.y88{bottom:258.146667pt;}
.y14a{bottom:261.666667pt;}
.yb9{bottom:262.306667pt;}
.ye2{bottom:268.226667pt;}
.y69{bottom:268.546667pt;}
.y1f{bottom:271.546667pt;}
.y100{bottom:276.546667pt;}
.yac{bottom:278.626667pt;}
.y12f{bottom:278.946667pt;}
.y3c{bottom:281.666667pt;}
.y1d{bottom:282.906667pt;}
.y87{bottom:283.586667pt;}
.y46{bottom:284.546667pt;}
.y1e{bottom:286.906667pt;}
.y149{bottom:286.946667pt;}
.yb8{bottom:287.586667pt;}
.yab{bottom:293.026667pt;}
.y68{bottom:293.826667pt;}
.ydf{bottom:295.106667pt;}
.y3b{bottom:301.346667pt;}
.yff{bottom:301.986667pt;}
.y12e{bottom:304.226667pt;}
.y86{bottom:308.866667pt;}
.yaa{bottom:311.426667pt;}
.y148{bottom:312.226667pt;}
.yb7{bottom:312.866667pt;}
.y12c{bottom:317.986667pt;}
.y67{bottom:319.106667pt;}
.y3a{bottom:321.026667pt;}
.yfe{bottom:327.266667pt;}
.ya9{bottom:329.826667pt;}
.y12b{bottom:331.586667pt;}
.y85{bottom:334.146667pt;}
.y147{bottom:337.506667pt;}
.y66{bottom:344.386667pt;}
.yb6{bottom:345.186667pt;}
.y12a{bottom:346.946667pt;}
.ya8{bottom:348.226667pt;}
.yfd{bottom:352.546667pt;}
.y1c{bottom:355.106667pt;}
.ycf{bottom:357.760000pt;}
.y84{bottom:359.426667pt;}
.y129{bottom:362.306667pt;}
.y146{bottom:362.786667pt;}
.ya7{bottom:366.626667pt;}
.y65{bottom:369.666667pt;}
.y128{bottom:377.666667pt;}
.yfc{bottom:377.826667pt;}
.y83{bottom:384.706667pt;}
.ya6{bottom:385.026667pt;}
.y145{bottom:388.066667pt;}
.y127{bottom:393.026667pt;}
.y64{bottom:394.946667pt;}
.yfb{bottom:403.106667pt;}
.ya5{bottom:403.266667pt;}
.y126{bottom:408.226667pt;}
.y82{bottom:409.986667pt;}
.y144{bottom:413.346667pt;}
.y63{bottom:420.226667pt;}
.ya4{bottom:421.826667pt;}
.y124{bottom:423.586667pt;}
.yfa{bottom:428.386667pt;}
.y81{bottom:435.266667pt;}
.y143{bottom:438.626667pt;}
.ya3{bottom:440.226667pt;}
.y62{bottom:445.666667pt;}
.yf9{bottom:453.666667pt;}
.ya2{bottom:458.626667pt;}
.y80{bottom:460.546667pt;}
.y142{bottom:464.066667pt;}
.y123{bottom:469.666667pt;}
.y61{bottom:470.946667pt;}
.ya0{bottom:476.866667pt;}
.yf8{bottom:478.946667pt;}
.y122{bottom:485.026667pt;}
.y7f{bottom:485.826667pt;}
.y141{bottom:489.346667pt;}
.y9f{bottom:495.613333pt;}
.y60{bottom:496.253333pt;}
.y121{bottom:500.253333pt;}
.yf7{bottom:504.253333pt;}
.y7e{bottom:511.293333pt;}
.y9e{bottom:514.013333pt;}
.y140{bottom:514.653333pt;}
.y120{bottom:515.613333pt;}
.y5f{bottom:521.533333pt;}
.yf6{bottom:529.693333pt;}
.y11f{bottom:530.973333pt;}
.y9d{bottom:532.413333pt;}
.y7d{bottom:536.573333pt;}
.y13f{bottom:539.933333pt;}
.y11e{bottom:546.333333pt;}
.y5e{bottom:546.813333pt;}
.y32{bottom:550.173333pt;}
.y9b{bottom:550.653333pt;}
.yf5{bottom:554.973333pt;}
.y11d{bottom:561.693333pt;}
.y7c{bottom:561.853333pt;}
.y13e{bottom:565.213333pt;}
.y9a{bottom:569.213333pt;}
.y5d{bottom:572.093333pt;}
.y11c{bottom:577.053333pt;}
.yf4{bottom:580.253333pt;}
.y30{bottom:585.533333pt;}
.y7b{bottom:587.133333pt;}
.y98{bottom:587.613333pt;}
.y13d{bottom:591.773333pt;}
.y11b{bottom:592.253333pt;}
.y5c{bottom:597.373333pt;}
.yf3{bottom:605.533333pt;}
.y97{bottom:606.013333pt;}
.y11a{bottom:607.613333pt;}
.y7a{bottom:612.413333pt;}
.y13c{bottom:618.173333pt;}
.y1a{bottom:620.733333pt;}
.y5b{bottom:622.653333pt;}
.y119{bottom:622.973333pt;}
.y95{bottom:624.253333pt;}
.yb5{bottom:624.893333pt;}
.yf2{bottom:630.813333pt;}
.y79{bottom:637.693333pt;}
.y118{bottom:638.333333pt;}
.y93{bottom:643.133333pt;}
.y13b{bottom:643.453333pt;}
.y90{bottom:647.773333pt;}
.y5a{bottom:647.933333pt;}
.yb4{bottom:650.173333pt;}
.y117{bottom:653.693333pt;}
.y18{bottom:662.493333pt;}
.y78{bottom:662.973333pt;}
.yf1{bottom:663.133333pt;}
.y92{bottom:664.253333pt;}
.yb3{bottom:667.293333pt;}
.y13a{bottom:668.733333pt;}
.y116{bottom:668.893333pt;}
.y137{bottom:672.253333pt;}
.y59{bottom:673.373333pt;}
.y107{bottom:675.680000pt;}
.yce{bottom:681.533333pt;}
.y115{bottom:684.893333pt;}
.y77{bottom:688.253333pt;}
.y139{bottom:695.133333pt;}
.y58{bottom:698.653333pt;}
.y17{bottom:700.733333pt;}
.ycd{bottom:705.533333pt;}
.y76{bottom:713.533333pt;}
.y16{bottom:715.933333pt;}
.y114{bottom:716.253333pt;}
.y138{bottom:722.813333pt;}
.y57{bottom:723.933333pt;}
.ycc{bottom:729.533333pt;}
.y113{bottom:731.613333pt;}
.y15{bottom:731.933333pt;}
.y75{bottom:738.973333pt;}
.y56{bottom:749.253333pt;}
.y13{bottom:750.373333pt;}
.y112{bottom:750.533333pt;}
.ycb{bottom:753.573333pt;}
.y14{bottom:756.453333pt;}
.y74{bottom:764.293333pt;}
.y12{bottom:768.613333pt;}
.y55{bottom:774.533333pt;}
.yca{bottom:777.573333pt;}
.y11{bottom:785.413333pt;}
.y73{bottom:789.573333pt;}
.y54{bottom:799.813333pt;}
.yc9{bottom:801.573333pt;}
.y10{bottom:802.213333pt;}
.y72{bottom:814.853333pt;}
.yf{bottom:819.973333pt;}
.y91{bottom:823.973333pt;}
.y53{bottom:825.093333pt;}
.yc8{bottom:825.573333pt;}
.ye{bottom:841.413333pt;}
.y71{bottom:849.253333pt;}
.yc7{bottom:849.573333pt;}
.y52{bottom:850.373333pt;}
.yd{bottom:862.373333pt;}
.yc6{bottom:873.573333pt;}
.y51{bottom:875.653333pt;}
.yc{bottom:880.773333pt;}
.yc2{bottom:897.573333pt;}
.yb{bottom:899.173333pt;}
.y8f{bottom:900.933333pt;}
.y50{bottom:901.093333pt;}
.y5{bottom:918.053333pt;}
.y4f{bottom:926.373333pt;}
.yc4{bottom:944.933333pt;}
.y4e{bottom:951.653333pt;}
.yf0{bottom:953.253333pt;}
.yc1{bottom:968.933333pt;}
.y7{bottom:974.213333pt;}
.y4d{bottom:976.933333pt;}
.yef{bottom:978.533333pt;}
.yed{bottom:992.933333pt;}
.y4c{bottom:1002.240000pt;}
.yec{bottom:1017.280000pt;}
.y4b{bottom:1027.520000pt;}
.y2{bottom:1045.440000pt;}
.y1{bottom:1062.560000pt;}
.h6{height:3.702500pt;}
.h31{height:12.960000pt;}
.h2e{height:15.200000pt;}
.h2f{height:15.232000pt;}
.h2d{height:15.360000pt;}
.h2c{height:15.392000pt;}
.h20{height:18.066667pt;}
.h1c{height:18.240000pt;}
.h1d{height:18.400000pt;}
.h1e{height:18.560000pt;}
.h1f{height:18.752000pt;}
.h22{height:23.360000pt;}
.h24{height:23.392000pt;}
.h2a{height:23.712000pt;}
.h28{height:25.600000pt;}
.h29{height:30.720000pt;}
.h18{height:30.982500pt;}
.h15{height:31.200000pt;}
.h12{height:31.360000pt;}
.hf{height:35.342500pt;}
.h11{height:37.479688pt;}
.h13{height:37.760000pt;}
.h2{height:38.352640pt;}
.h3{height:38.413438pt;}
.h17{height:41.543750pt;}
.h32{height:42.392500pt;}
.h10{height:43.782500pt;}
.ha{height:45.156250pt;}
.h30{height:46.080000pt;}
.h23{height:46.720000pt;}
.h27{height:47.360000pt;}
.h4{height:47.621250pt;}
.h26{height:47.742188pt;}
.h1a{height:48.530000pt;}
.he{height:52.750000pt;}
.hd{height:52.785000pt;}
.hc{height:52.832812pt;}
.h1b{height:53.425000pt;}
.h9{height:56.160000pt;}
.hb{height:57.375000pt;}
.h8{height:62.676250pt;}
.h19{height:62.720000pt;}
.h7{height:63.072000pt;}
.h21{height:70.720000pt;}
.h5{height:119.232000pt;}
.h16{height:191.066667pt;}
.h25{height:251.040000pt;}
.h2b{height:260.960000pt;}
.h14{height:303.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:20.480000pt;}
.w1c{width:62.912000pt;}
.w17{width:75.200000pt;}
.w16{width:75.712000pt;}
.w1f{width:84.320000pt;}
.w20{width:84.352000pt;}
.w12{width:84.480000pt;}
.w11{width:85.312000pt;}
.w1b{width:88.480000pt;}
.w5{width:96.480000pt;}
.w19{width:111.392000pt;}
.w1e{width:124.352000pt;}
.w1d{width:124.480000pt;}
.w15{width:150.906667pt;}
.wc{width:158.906667pt;}
.w1a{width:168.666667pt;}
.w10{width:169.786667pt;}
.wd{width:204.026667pt;}
.w7{width:232.386667pt;}
.w3{width:274.466667pt;}
.w4{width:309.346667pt;}
.wb{width:317.346667pt;}
.w9{width:427.586667pt;}
.wa{width:433.346667pt;}
.w13{width:493.440000pt;}
.w18{width:506.720000pt;}
.wf{width:510.493333pt;}
.w14{width:529.373333pt;}
.we{width:680.293333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.240000pt;}
.x5{left:7.200000pt;}
.x14{left:9.600000pt;}
.x3f{left:12.320000pt;}
.x35{left:13.280000pt;}
.x2a{left:14.720000pt;}
.x34{left:16.640000pt;}
.x2b{left:17.760000pt;}
.x36{left:19.360000pt;}
.x4d{left:20.800000pt;}
.x7{left:23.520000pt;}
.x32{left:24.480000pt;}
.x47{left:26.400000pt;}
.x28{left:27.520000pt;}
.x4a{left:29.120000pt;}
.x45{left:31.386667pt;}
.x27{left:32.960000pt;}
.x26{left:33.920000pt;}
.x19{left:40.480000pt;}
.x49{left:42.080000pt;}
.x44{left:44.160000pt;}
.x4b{left:50.560000pt;}
.x2{left:56.799988pt;}
.x1b{left:57.760000pt;}
.x4c{left:59.880000pt;}
.x12{left:61.119988pt;}
.x46{left:62.240000pt;}
.xa{left:68.159988pt;}
.x1c{left:69.280000pt;}
.x1e{left:72.666667pt;}
.x21{left:75.866667pt;}
.x1f{left:79.226667pt;}
.x43{left:84.320000pt;}
.x4f{left:88.799988pt;}
.x1d{left:90.240000pt;}
.x22{left:93.640000pt;}
.x4e{left:94.591988pt;}
.x20{left:101.960000pt;}
.x17{left:156.666655pt;}
.x3b{left:165.626667pt;}
.x38{left:168.000000pt;}
.x24{left:172.666667pt;}
.x2f{left:174.106667pt;}
.x2c{left:175.840000pt;}
.x2d{left:181.280000pt;}
.x39{left:186.626667pt;}
.x10{left:190.906655pt;}
.x23{left:193.786655pt;}
.x37{left:201.786655pt;}
.x3d{left:205.306655pt;}
.x30{left:236.826655pt;}
.x11{left:248.826655pt;}
.x48{left:252.506667pt;}
.xb{left:265.306655pt;}
.xe{left:289.186667pt;}
.x1{left:305.186655pt;}
.x13{left:307.426667pt;}
.x2e{left:308.506667pt;}
.xf{left:309.666667pt;}
.x3a{left:319.133333pt;}
.x6{left:331.266667pt;}
.x3e{left:336.866667pt;}
.x18{left:374.146667pt;}
.x15{left:389.346655pt;}
.x3c{left:390.306655pt;}
.x3{left:393.666655pt;}
.x4{left:397.026655pt;}
.x40{left:425.346667pt;}
.x41{left:488.253333pt;}
.x1a{left:533.053333pt;}
.x25{left:567.293333pt;}
.x16{left:569.853322pt;}
.x31{left:586.173333pt;}
.x42{left:612.733333pt;}
.x8{left:640.613333pt;}
.x29{left:652.613333pt;}
.x33{left:661.893333pt;}
.xc{left:692.133310pt;}
.xd{left:697.573322pt;}
}




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