
    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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f99f6b5d6d12eadcb0a70a9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_6d83535666feb383c2d49419.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5a7d93eb95ae0221a16eca6d.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_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_193f118072c6d22f37ab190f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_78fe60f07da250e07cdec2b8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6f1553fa371b74f9a22d3cdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_1ea8af4c594b98ae9c0093b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_e5cf43d7e93a1e0b45fbdc42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v3{vertical-align:-75.600000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.292200px;}
.ls25{letter-spacing:-0.272400px;}
.ls8{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.149760px;}
.ls23{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.177840px;}
.ls15{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.214560px;}
.ls0{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.869760px;}
.ls17{letter-spacing:0.900000px;}
.ls14{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.749760px;}
.ls22{letter-spacing:4.469760px;}
.ls1a{letter-spacing:5.189760px;}
.ls1e{letter-spacing:5.909760px;}
.ls1d{letter-spacing:6.629760px;}
.ls16{letter-spacing:7.380000px;}
.ls12{letter-spacing:38.106720px;}
.ls21{letter-spacing:43.866720px;}
.lsc{letter-spacing:44.586720px;}
.ls26{letter-spacing:46.026720px;}
.lse{letter-spacing:55.386720px;}
.ls10{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._9{width:3.054000px;}
._a{width:4.089600px;}
._c{width:5.400480px;}
._d{width:6.491760px;}
._b{width:8.424000px;}
._4{width:9.580800px;}
._3{width:10.800000px;}
._8{width:11.803200px;}
._12{width:13.321200px;}
._2{width:15.876000px;}
._5{width:17.496000px;}
._7{width:18.711360px;}
._6{width:19.764000px;}
._e{width:21.036480px;}
._f{width:22.170000px;}
._13{width:23.220000px;}
._11{width:24.280560px;}
._10{width:25.577280px;}
._21{width:27.810480px;}
._20{width:28.983600px;}
._16{width:31.097280px;}
._15{width:32.270400px;}
._1f{width:36.654960px;}
._1e{width:43.027200px;}
._19{width:44.262480px;}
._18{width:46.194480px;}
._14{width:47.226000px;}
._1b{width:56.316000px;}
._1d{width:98.843040px;}
._1c{width:99.858960px;}
._1a{width:109.221840px;}
._17{width:403.461840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.340000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5d{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4e{bottom:10.260000px;}
.yd4{bottom:20.340000px;}
.y43{bottom:20.520000px;}
.y5b{bottom:20.880000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:36.360000px;}
.yd8{bottom:37.620000px;}
.y42{bottom:37.800000px;}
.y4d{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:51.120000px;}
.y59{bottom:54.180000px;}
.y41{bottom:54.900000px;}
.y7{bottom:57.060000px;}
.y4b{bottom:63.000000px;}
.y58{bottom:69.660000px;}
.y40{bottom:72.180000px;}
.y4a{bottom:75.960000px;}
.y57{bottom:85.320000px;}
.y49{bottom:88.920000px;}
.y3f{bottom:89.460000px;}
.yd2{bottom:91.980000px;}
.y45{bottom:94.860000px;}
.yd1{bottom:97.920000px;}
.y56{bottom:98.280000px;}
.yb5{bottom:104.040000px;}
.y55{bottom:104.760000px;}
.y97{bottom:105.120000px;}
.y3e{bottom:106.740000px;}
.yb4{bottom:109.980000px;}
.y48{bottom:111.090000px;}
.yd0{bottom:112.320000px;}
.y54{bottom:120.270000px;}
.y96{bottom:122.220000px;}
.y108{bottom:123.660000px;}
.y3d{bottom:124.020000px;}
.y107{bottom:128.880000px;}
.ycf{bottom:132.120000px;}
.y53{bottom:135.750000px;}
.yb3{bottom:137.520000px;}
.yce{bottom:138.060000px;}
.y95{bottom:139.500000px;}
.y3c{bottom:141.345000px;}
.y106{bottom:142.020000px;}
.yb2{bottom:143.460000px;}
.y105{bottom:147.240000px;}
.y52{bottom:151.410000px;}
.ycd{bottom:153.720000px;}
.y94{bottom:156.780000px;}
.y3b{bottom:158.445000px;}
.ycc{bottom:159.660000px;}
.y51{bottom:166.890000px;}
.yb1{bottom:171.000000px;}
.y104{bottom:172.980000px;}
.y47{bottom:173.010000px;}
.ycb{bottom:173.880000px;}
.y93{bottom:174.060000px;}
.y3a{bottom:175.725000px;}
.yb0{bottom:176.940000px;}
.y50{bottom:182.370000px;}
.y46{bottom:183.630000px;}
.y92{bottom:191.340000px;}
.y103{bottom:192.780000px;}
.y39{bottom:193.005000px;}
.yca{bottom:193.860000px;}
.y102{bottom:198.720000px;}
.yc9{bottom:199.800000px;}
.yaf{bottom:204.510000px;}
.y91{bottom:208.650000px;}
.y38{bottom:210.285000px;}
.yae{bottom:210.450000px;}
.yc8{bottom:214.050000px;}
.y90{bottom:225.750000px;}
.y101{bottom:226.290000px;}
.y10b{bottom:226.830000px;}
.y37{bottom:227.565000px;}
.y100{bottom:232.230000px;}
.yc7{bottom:233.850000px;}
.yad{bottom:238.170000px;}
.yc6{bottom:239.790000px;}
.y8f{bottom:243.030000px;}
.yac{bottom:244.110000px;}
.y36{bottom:244.665000px;}
.yff{bottom:246.450000px;}
.yc5{bottom:254.190000px;}
.y21{bottom:257.625000px;}
.y8e{bottom:260.310000px;}
.y10a{bottom:261.390000px;}
.y35{bottom:261.945000px;}
.yab{bottom:271.650000px;}
.yc4{bottom:273.990000px;}
.yfe{bottom:274.170000px;}
.y8d{bottom:277.590000px;}
.y109{bottom:278.670000px;}
.y34{bottom:279.225000px;}
.yc3{bottom:279.930000px;}
.y20{bottom:281.745000px;}
.yfd{bottom:291.450000px;}
.y8c{bottom:295.950000px;}
.y33{bottom:296.505000px;}
.yaa{bottom:303.870000px;}
.y1f{bottom:306.045000px;}
.yc2{bottom:306.210000px;}
.y13{bottom:308.550000px;}
.y8b{bottom:313.050000px;}
.y32{bottom:313.785000px;}
.ya9{bottom:322.410000px;}
.yfc{bottom:325.830000px;}
.yc1{bottom:326.190000px;}
.y1e{bottom:330.165000px;}
.y8a{bottom:330.330000px;}
.y31{bottom:331.065000px;}
.yc0{bottom:332.130000px;}
.ya8{bottom:342.390000px;}
.yfb{bottom:343.110000px;}
.y89{bottom:347.610000px;}
.y30{bottom:348.165000px;}
.ya7{bottom:348.330000px;}
.y1d{bottom:354.285000px;}
.ybf{bottom:359.670000px;}
.yfa{bottom:360.390000px;}
.y88{bottom:364.890000px;}
.y2f{bottom:365.475000px;}
.ybe{bottom:365.610000px;}
.ya6{bottom:374.610000px;}
.yf9{bottom:377.670000px;}
.y1c{bottom:378.435000px;}
.ybd{bottom:379.830000px;}
.y87{bottom:382.170000px;}
.y2e{bottom:382.395000px;}
.ya5{bottom:394.410000px;}
.yf8{bottom:394.950000px;}
.y2d{bottom:398.055000px;}
.y86{bottom:399.450000px;}
.ya4{bottom:400.350000px;}
.y1b{bottom:402.555000px;}
.yf7{bottom:412.050000px;}
.y2c{bottom:413.535000px;}
.y85{bottom:416.550000px;}
.ya3{bottom:426.630000px;}
.y1a{bottom:426.675000px;}
.y2b{bottom:429.015000px;}
.yf6{bottom:429.330000px;}
.y84{bottom:433.830000px;}
.y2a{bottom:444.495000px;}
.ya2{bottom:446.655000px;}
.y19{bottom:450.795000px;}
.y83{bottom:451.155000px;}
.ya1{bottom:452.595000px;}
.y29{bottom:460.155000px;}
.yf5{bottom:463.935000px;}
.y82{bottom:468.435000px;}
.y18{bottom:475.095000px;}
.y28{bottom:475.635000px;}
.yf3{bottom:481.215000px;}
.y81{bottom:485.715000px;}
.yf4{bottom:486.435000px;}
.y27{bottom:491.115000px;}
.yf2{bottom:498.495000px;}
.y17{bottom:499.215000px;}
.y80{bottom:502.995000px;}
.y26{bottom:506.595000px;}
.yf1{bottom:515.595000px;}
.y7f{bottom:520.095000px;}
.y25{bottom:522.255000px;}
.y16{bottom:523.335000px;}
.ybc{bottom:525.315000px;}
.yf0{bottom:532.875000px;}
.y7e{bottom:537.375000px;}
.y24{bottom:537.735000px;}
.y15{bottom:547.455000px;}
.yee{bottom:550.155000px;}
.y23{bottom:553.215000px;}
.y7d{bottom:554.655000px;}
.yef{bottom:555.375000px;}
.ya0{bottom:559.875000px;}
.yed{bottom:567.435000px;}
.y22{bottom:568.695000px;}
.y14{bottom:571.575000px;}
.y7c{bottom:571.935000px;}
.yeb{bottom:584.715000px;}
.y7b{bottom:589.215000px;}
.yec{bottom:589.935000px;}
.ybb{bottom:594.435000px;}
.yea{bottom:601.815000px;}
.y7a{bottom:606.315000px;}
.ye8{bottom:619.095000px;}
.y79{bottom:623.595000px;}
.ye9{bottom:624.315000px;}
.ye7{bottom:636.375000px;}
.y78{bottom:640.875000px;}
.y9f{bottom:646.095000px;}
.ye6{bottom:653.655000px;}
.y77{bottom:658.155000px;}
.y9e{bottom:663.375000px;}
.ye5{bottom:670.935000px;}
.y76{bottom:675.465000px;}
.yba{bottom:680.685000px;}
.ye4{bottom:688.245000px;}
.y75{bottom:692.745000px;}
.y9d{bottom:697.965000px;}
.ye3{bottom:705.345000px;}
.y74{bottom:709.845000px;}
.ye1{bottom:722.625000px;}
.y73{bottom:727.125000px;}
.ye2{bottom:727.845000px;}
.y9c{bottom:732.345000px;}
.ye0{bottom:739.905000px;}
.y72{bottom:744.405000px;}
.yb9{bottom:749.625000px;}
.ydf{bottom:757.185000px;}
.y71{bottom:761.685000px;}
.yde{bottom:774.465000px;}
.y70{bottom:778.965000px;}
.ydd{bottom:791.745000px;}
.y6f{bottom:796.245000px;}
.y9b{bottom:801.465000px;}
.ydc{bottom:808.845000px;}
.y6e{bottom:813.345000px;}
.yb8{bottom:818.565000px;}
.ydb{bottom:826.125000px;}
.y6d{bottom:830.625000px;}
.y9a{bottom:835.845000px;}
.yda{bottom:843.405000px;}
.y6c{bottom:847.905000px;}
.yb7{bottom:853.125000px;}
.yd9{bottom:858.165000px;}
.y6b{bottom:865.185000px;}
.y6a{bottom:882.465000px;}
.y99{bottom:887.685000px;}
.y12{bottom:892.365000px;}
.y11{bottom:897.045000px;}
.y69{bottom:899.565000px;}
.yd7{bottom:910.770000px;}
.y10{bottom:914.370000px;}
.y68{bottom:916.890000px;}
.y67{bottom:934.170000px;}
.yf{bottom:936.870000px;}
.y98{bottom:939.390000px;}
.ye{bottom:948.930000px;}
.y66{bottom:951.450000px;}
.yd6{bottom:963.150000px;}
.y65{bottom:968.730000px;}
.yd{bottom:971.430000px;}
.yc{bottom:983.310000px;}
.y64{bottom:986.010000px;}
.yb{bottom:1000.590000px;}
.y63{bottom:1003.110000px;}
.yd5{bottom:1015.710000px;}
.ya{bottom:1019.130000px;}
.y62{bottom:1020.390000px;}
.yb6{bottom:1025.610000px;}
.y61{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y60{bottom:1054.950000px;}
.yd3{bottom:1068.270000px;}
.y8{bottom:1071.870000px;}
.y5f{bottom:1072.230000px;}
.y5c{bottom:1075.140000px;}
.y5e{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.064063px;}
.h16{height:4.747500px;}
.h14{height:21.705469px;}
.h13{height:25.839844px;}
.h18{height:27.720000px;}
.hb{height:27.907031px;}
.h12{height:29.464453px;}
.he{height:29.974219px;}
.h1e{height:34.380000px;}
.h15{height:38.100586px;}
.h22{height:38.671172px;}
.h17{height:38.759766px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h1c{height:41.535703px;}
.h9{height:42.164648px;}
.h6{height:42.894141px;}
.h1b{height:43.506914px;}
.h10{height:44.507812px;}
.h1a{height:45.753750px;}
.h5{height:47.545312px;}
.ha{height:48.312422px;}
.h1d{height:49.255313px;}
.h1f{height:51.660000px;}
.h21{height:51.696000px;}
.h20{height:51.840000px;}
.h8{height:59.436914px;}
.h23{height:59.439023px;}
.h19{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:212.970000px;}
.hd{height:581.295000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w9{width:117.180000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.wa{width:246.495000px;}
.wb{width:266.610000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w8{width:893.159973px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1e{left:18.216000px;}
.x19{left:19.656000px;}
.x18{left:22.536000px;}
.x17{left:28.116000px;}
.x20{left:29.196000px;}
.x11{left:43.776000px;}
.x1f{left:47.736000px;}
.x12{left:50.796000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x1c{left:62.145000px;}
.x16{left:67.170000px;}
.x14{left:71.850000px;}
.x1{left:78.300000px;}
.x15{left:83.730000px;}
.x9{left:86.399987px;}
.x35{left:91.655987px;}
.x2{left:95.790000px;}
.x46{left:96.875987px;}
.x22{left:102.810000px;}
.x1d{left:106.770000px;}
.x24{left:113.435987px;}
.x13{left:124.590000px;}
.x27{left:128.015973px;}
.x47{left:130.716000px;}
.x28{left:132.875987px;}
.x4a{left:134.855987px;}
.x5{left:141.345000px;}
.x4f{left:143.495973px;}
.x50{left:153.209987px;}
.x3{left:182.370000px;}
.x3a{left:202.529973px;}
.x3b{left:212.249987px;}
.x1a{left:219.090000px;}
.x3c{left:224.489973px;}
.x3d{left:234.209987px;}
.x42{left:243.749973px;}
.x48{left:248.610000px;}
.x38{left:252.569973px;}
.x39{left:262.289987px;}
.x45{left:302.474987px;}
.x30{left:303.914973px;}
.x31{left:308.774987px;}
.x4d{left:347.114973px;}
.x4e{left:356.834987px;}
.xc{left:414.614987px;}
.x43{left:430.454973px;}
.x44{left:440.174987px;}
.xd{left:483.944987px;}
.x49{left:496.005000px;}
.x36{left:497.984973px;}
.x37{left:507.704987px;}
.x29{left:530.564973px;}
.xe{left:533.624987px;}
.x2a{left:535.424987px;}
.x40{left:557.384973px;}
.x3e{left:560.804973px;}
.x41{left:567.104987px;}
.x3f{left:570.524987px;}
.x4b{left:586.184973px;}
.xb{left:589.964987px;}
.x4c{left:595.904987px;}
.xf{left:618.404987px;}
.x2e{left:650.309973px;}
.x2f{left:655.169987px;}
.x32{left:659.849987px;}
.x25{left:698.729973px;}
.x26{left:703.589987px;}
.x2b{left:717.989973px;}
.x2c{left:722.849987px;}
.x51{left:755.609973px;}
.x8{left:766.049987px;}
.x7{left:791.969987px;}
.x33{left:794.309973px;}
.x2d{left:797.549987px;}
.x34{left:799.169987px;}
.xa{left:806.939987px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.259733pt;}
.ls25{letter-spacing:-0.242133pt;}
.ls8{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.133120pt;}
.ls23{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.158080pt;}
.ls15{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.190720pt;}
.ls0{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.773120pt;}
.ls17{letter-spacing:0.800000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:3.333120pt;}
.ls22{letter-spacing:3.973120pt;}
.ls1a{letter-spacing:4.613120pt;}
.ls1e{letter-spacing:5.253120pt;}
.ls1d{letter-spacing:5.893120pt;}
.ls16{letter-spacing:6.560000pt;}
.ls12{letter-spacing:33.872640pt;}
.ls21{letter-spacing:38.992640pt;}
.lsc{letter-spacing:39.632640pt;}
.ls26{letter-spacing:40.912640pt;}
.lse{letter-spacing:49.232640pt;}
.ls10{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._9{width:2.714667pt;}
._a{width:3.635200pt;}
._c{width:4.800427pt;}
._d{width:5.770453pt;}
._b{width:7.488000pt;}
._4{width:8.516267pt;}
._3{width:9.600000pt;}
._8{width:10.491733pt;}
._12{width:11.841067pt;}
._2{width:14.112000pt;}
._5{width:15.552000pt;}
._7{width:16.632320pt;}
._6{width:17.568000pt;}
._e{width:18.699093pt;}
._f{width:19.706667pt;}
._13{width:20.640000pt;}
._11{width:21.582720pt;}
._10{width:22.735360pt;}
._21{width:24.720427pt;}
._20{width:25.763200pt;}
._16{width:27.642027pt;}
._15{width:28.684800pt;}
._1f{width:32.582187pt;}
._1e{width:38.246400pt;}
._19{width:39.344427pt;}
._18{width:41.061760pt;}
._14{width:41.978667pt;}
._1b{width:50.058667pt;}
._1d{width:87.860480pt;}
._1c{width:88.763520pt;}
._1a{width:97.086080pt;}
._17{width:358.632747pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.080000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5d{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4e{bottom:9.120000pt;}
.yd4{bottom:18.080000pt;}
.y43{bottom:18.240000pt;}
.y5b{bottom:18.560000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:32.320000pt;}
.yd8{bottom:33.440000pt;}
.y42{bottom:33.600000pt;}
.y4d{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:45.440000pt;}
.y59{bottom:48.160000pt;}
.y41{bottom:48.800000pt;}
.y7{bottom:50.720000pt;}
.y4b{bottom:56.000000pt;}
.y58{bottom:61.920000pt;}
.y40{bottom:64.160000pt;}
.y4a{bottom:67.520000pt;}
.y57{bottom:75.840000pt;}
.y49{bottom:79.040000pt;}
.y3f{bottom:79.520000pt;}
.yd2{bottom:81.760000pt;}
.y45{bottom:84.320000pt;}
.yd1{bottom:87.040000pt;}
.y56{bottom:87.360000pt;}
.yb5{bottom:92.480000pt;}
.y55{bottom:93.120000pt;}
.y97{bottom:93.440000pt;}
.y3e{bottom:94.880000pt;}
.yb4{bottom:97.760000pt;}
.y48{bottom:98.746667pt;}
.yd0{bottom:99.840000pt;}
.y54{bottom:106.906667pt;}
.y96{bottom:108.640000pt;}
.y108{bottom:109.920000pt;}
.y3d{bottom:110.240000pt;}
.y107{bottom:114.560000pt;}
.ycf{bottom:117.440000pt;}
.y53{bottom:120.666667pt;}
.yb3{bottom:122.240000pt;}
.yce{bottom:122.720000pt;}
.y95{bottom:124.000000pt;}
.y3c{bottom:125.640000pt;}
.y106{bottom:126.240000pt;}
.yb2{bottom:127.520000pt;}
.y105{bottom:130.880000pt;}
.y52{bottom:134.586667pt;}
.ycd{bottom:136.640000pt;}
.y94{bottom:139.360000pt;}
.y3b{bottom:140.840000pt;}
.ycc{bottom:141.920000pt;}
.y51{bottom:148.346667pt;}
.yb1{bottom:152.000000pt;}
.y104{bottom:153.760000pt;}
.y47{bottom:153.786667pt;}
.ycb{bottom:154.560000pt;}
.y93{bottom:154.720000pt;}
.y3a{bottom:156.200000pt;}
.yb0{bottom:157.280000pt;}
.y50{bottom:162.106667pt;}
.y46{bottom:163.226667pt;}
.y92{bottom:170.080000pt;}
.y103{bottom:171.360000pt;}
.y39{bottom:171.560000pt;}
.yca{bottom:172.320000pt;}
.y102{bottom:176.640000pt;}
.yc9{bottom:177.600000pt;}
.yaf{bottom:181.786667pt;}
.y91{bottom:185.466667pt;}
.y38{bottom:186.920000pt;}
.yae{bottom:187.066667pt;}
.yc8{bottom:190.266667pt;}
.y90{bottom:200.666667pt;}
.y101{bottom:201.146667pt;}
.y10b{bottom:201.626667pt;}
.y37{bottom:202.280000pt;}
.y100{bottom:206.426667pt;}
.yc7{bottom:207.866667pt;}
.yad{bottom:211.706667pt;}
.yc6{bottom:213.146667pt;}
.y8f{bottom:216.026667pt;}
.yac{bottom:216.986667pt;}
.y36{bottom:217.480000pt;}
.yff{bottom:219.066667pt;}
.yc5{bottom:225.946667pt;}
.y21{bottom:229.000000pt;}
.y8e{bottom:231.386667pt;}
.y10a{bottom:232.346667pt;}
.y35{bottom:232.840000pt;}
.yab{bottom:241.466667pt;}
.yc4{bottom:243.546667pt;}
.yfe{bottom:243.706667pt;}
.y8d{bottom:246.746667pt;}
.y109{bottom:247.706667pt;}
.y34{bottom:248.200000pt;}
.yc3{bottom:248.826667pt;}
.y20{bottom:250.440000pt;}
.yfd{bottom:259.066667pt;}
.y8c{bottom:263.066667pt;}
.y33{bottom:263.560000pt;}
.yaa{bottom:270.106667pt;}
.y1f{bottom:272.040000pt;}
.yc2{bottom:272.186667pt;}
.y13{bottom:274.266667pt;}
.y8b{bottom:278.266667pt;}
.y32{bottom:278.920000pt;}
.ya9{bottom:286.586667pt;}
.yfc{bottom:289.626667pt;}
.yc1{bottom:289.946667pt;}
.y1e{bottom:293.480000pt;}
.y8a{bottom:293.626667pt;}
.y31{bottom:294.280000pt;}
.yc0{bottom:295.226667pt;}
.ya8{bottom:304.346667pt;}
.yfb{bottom:304.986667pt;}
.y89{bottom:308.986667pt;}
.y30{bottom:309.480000pt;}
.ya7{bottom:309.626667pt;}
.y1d{bottom:314.920000pt;}
.ybf{bottom:319.706667pt;}
.yfa{bottom:320.346667pt;}
.y88{bottom:324.346667pt;}
.y2f{bottom:324.866667pt;}
.ybe{bottom:324.986667pt;}
.ya6{bottom:332.986667pt;}
.yf9{bottom:335.706667pt;}
.y1c{bottom:336.386667pt;}
.ybd{bottom:337.626667pt;}
.y87{bottom:339.706667pt;}
.y2e{bottom:339.906667pt;}
.ya5{bottom:350.586667pt;}
.yf8{bottom:351.066667pt;}
.y2d{bottom:353.826667pt;}
.y86{bottom:355.066667pt;}
.ya4{bottom:355.866667pt;}
.y1b{bottom:357.826667pt;}
.yf7{bottom:366.266667pt;}
.y2c{bottom:367.586667pt;}
.y85{bottom:370.266667pt;}
.ya3{bottom:379.226667pt;}
.y1a{bottom:379.266667pt;}
.y2b{bottom:381.346667pt;}
.yf6{bottom:381.626667pt;}
.y84{bottom:385.626667pt;}
.y2a{bottom:395.106667pt;}
.ya2{bottom:397.026667pt;}
.y19{bottom:400.706667pt;}
.y83{bottom:401.026667pt;}
.ya1{bottom:402.306667pt;}
.y29{bottom:409.026667pt;}
.yf5{bottom:412.386667pt;}
.y82{bottom:416.386667pt;}
.y18{bottom:422.306667pt;}
.y28{bottom:422.786667pt;}
.yf3{bottom:427.746667pt;}
.y81{bottom:431.746667pt;}
.yf4{bottom:432.386667pt;}
.y27{bottom:436.546667pt;}
.yf2{bottom:443.106667pt;}
.y17{bottom:443.746667pt;}
.y80{bottom:447.106667pt;}
.y26{bottom:450.306667pt;}
.yf1{bottom:458.306667pt;}
.y7f{bottom:462.306667pt;}
.y25{bottom:464.226667pt;}
.y16{bottom:465.186667pt;}
.ybc{bottom:466.946667pt;}
.yf0{bottom:473.666667pt;}
.y7e{bottom:477.666667pt;}
.y24{bottom:477.986667pt;}
.y15{bottom:486.626667pt;}
.yee{bottom:489.026667pt;}
.y23{bottom:491.746667pt;}
.y7d{bottom:493.026667pt;}
.yef{bottom:493.666667pt;}
.ya0{bottom:497.666667pt;}
.yed{bottom:504.386667pt;}
.y22{bottom:505.506667pt;}
.y14{bottom:508.066667pt;}
.y7c{bottom:508.386667pt;}
.yeb{bottom:519.746667pt;}
.y7b{bottom:523.746667pt;}
.yec{bottom:524.386667pt;}
.ybb{bottom:528.386667pt;}
.yea{bottom:534.946667pt;}
.y7a{bottom:538.946667pt;}
.ye8{bottom:550.306667pt;}
.y79{bottom:554.306667pt;}
.ye9{bottom:554.946667pt;}
.ye7{bottom:565.666667pt;}
.y78{bottom:569.666667pt;}
.y9f{bottom:574.306667pt;}
.ye6{bottom:581.026667pt;}
.y77{bottom:585.026667pt;}
.y9e{bottom:589.666667pt;}
.ye5{bottom:596.386667pt;}
.y76{bottom:600.413333pt;}
.yba{bottom:605.053333pt;}
.ye4{bottom:611.773333pt;}
.y75{bottom:615.773333pt;}
.y9d{bottom:620.413333pt;}
.ye3{bottom:626.973333pt;}
.y74{bottom:630.973333pt;}
.ye1{bottom:642.333333pt;}
.y73{bottom:646.333333pt;}
.ye2{bottom:646.973333pt;}
.y9c{bottom:650.973333pt;}
.ye0{bottom:657.693333pt;}
.y72{bottom:661.693333pt;}
.yb9{bottom:666.333333pt;}
.ydf{bottom:673.053333pt;}
.y71{bottom:677.053333pt;}
.yde{bottom:688.413333pt;}
.y70{bottom:692.413333pt;}
.ydd{bottom:703.773333pt;}
.y6f{bottom:707.773333pt;}
.y9b{bottom:712.413333pt;}
.ydc{bottom:718.973333pt;}
.y6e{bottom:722.973333pt;}
.yb8{bottom:727.613333pt;}
.ydb{bottom:734.333333pt;}
.y6d{bottom:738.333333pt;}
.y9a{bottom:742.973333pt;}
.yda{bottom:749.693333pt;}
.y6c{bottom:753.693333pt;}
.yb7{bottom:758.333333pt;}
.yd9{bottom:762.813333pt;}
.y6b{bottom:769.053333pt;}
.y6a{bottom:784.413333pt;}
.y99{bottom:789.053333pt;}
.y12{bottom:793.213333pt;}
.y11{bottom:797.373333pt;}
.y69{bottom:799.613333pt;}
.yd7{bottom:809.573333pt;}
.y10{bottom:812.773333pt;}
.y68{bottom:815.013333pt;}
.y67{bottom:830.373333pt;}
.yf{bottom:832.773333pt;}
.y98{bottom:835.013333pt;}
.ye{bottom:843.493333pt;}
.y66{bottom:845.733333pt;}
.yd6{bottom:856.133333pt;}
.y65{bottom:861.093333pt;}
.yd{bottom:863.493333pt;}
.yc{bottom:874.053333pt;}
.y64{bottom:876.453333pt;}
.yb{bottom:889.413333pt;}
.y63{bottom:891.653333pt;}
.yd5{bottom:902.853333pt;}
.ya{bottom:905.893333pt;}
.y62{bottom:907.013333pt;}
.yb6{bottom:911.653333pt;}
.y61{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y60{bottom:937.733333pt;}
.yd3{bottom:949.573333pt;}
.y8{bottom:952.773333pt;}
.y5f{bottom:953.093333pt;}
.y5c{bottom:955.680000pt;}
.y5e{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.612500pt;}
.h16{height:4.220000pt;}
.h14{height:19.293750pt;}
.h13{height:22.968750pt;}
.h18{height:24.640000pt;}
.hb{height:24.806250pt;}
.h12{height:26.190625pt;}
.he{height:26.643750pt;}
.h1e{height:30.560000pt;}
.h15{height:33.867188pt;}
.h22{height:34.374375pt;}
.h17{height:34.453125pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h1c{height:36.920625pt;}
.h9{height:37.479688pt;}
.h6{height:38.128125pt;}
.h1b{height:38.672812pt;}
.h10{height:39.562500pt;}
.h1a{height:40.670000pt;}
.h5{height:42.262500pt;}
.ha{height:42.944375pt;}
.h1d{height:43.782500pt;}
.h1f{height:45.920000pt;}
.h21{height:45.952000pt;}
.h20{height:46.080000pt;}
.h8{height:52.832812pt;}
.h23{height:52.834688pt;}
.h19{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:189.306667pt;}
.hd{height:516.706667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w9{width:104.160000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.wa{width:219.106667pt;}
.wb{width:236.986667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w8{width:793.919976pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1e{left:16.192000pt;}
.x19{left:17.472000pt;}
.x18{left:20.032000pt;}
.x17{left:24.992000pt;}
.x20{left:25.952000pt;}
.x11{left:38.912000pt;}
.x1f{left:42.432000pt;}
.x12{left:45.152000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1c{left:55.240000pt;}
.x16{left:59.706667pt;}
.x14{left:63.866667pt;}
.x1{left:69.600000pt;}
.x15{left:74.426667pt;}
.x9{left:76.799988pt;}
.x35{left:81.471988pt;}
.x2{left:85.146667pt;}
.x46{left:86.111988pt;}
.x22{left:91.386667pt;}
.x1d{left:94.906667pt;}
.x24{left:100.831988pt;}
.x13{left:110.746667pt;}
.x27{left:113.791976pt;}
.x47{left:116.192000pt;}
.x28{left:118.111988pt;}
.x4a{left:119.871988pt;}
.x5{left:125.640000pt;}
.x4f{left:127.551976pt;}
.x50{left:136.186655pt;}
.x3{left:162.106667pt;}
.x3a{left:180.026643pt;}
.x3b{left:188.666655pt;}
.x1a{left:194.746667pt;}
.x3c{left:199.546643pt;}
.x3d{left:208.186655pt;}
.x42{left:216.666643pt;}
.x48{left:220.986667pt;}
.x38{left:224.506643pt;}
.x39{left:233.146655pt;}
.x45{left:268.866655pt;}
.x30{left:270.146643pt;}
.x31{left:274.466655pt;}
.x4d{left:308.546643pt;}
.x4e{left:317.186655pt;}
.xc{left:368.546655pt;}
.x43{left:382.626643pt;}
.x44{left:391.266655pt;}
.xd{left:430.173322pt;}
.x49{left:440.893333pt;}
.x36{left:442.653310pt;}
.x37{left:451.293322pt;}
.x29{left:471.613310pt;}
.xe{left:474.333322pt;}
.x2a{left:475.933322pt;}
.x40{left:495.453310pt;}
.x3e{left:498.493310pt;}
.x41{left:504.093322pt;}
.x3f{left:507.133322pt;}
.x4b{left:521.053310pt;}
.xb{left:524.413322pt;}
.x4c{left:529.693322pt;}
.xf{left:549.693322pt;}
.x2e{left:578.053310pt;}
.x2f{left:582.373322pt;}
.x32{left:586.533322pt;}
.x25{left:621.093310pt;}
.x26{left:625.413322pt;}
.x2b{left:638.213310pt;}
.x2c{left:642.533322pt;}
.x51{left:671.653310pt;}
.x8{left:680.933322pt;}
.x7{left:703.973322pt;}
.x33{left:706.053310pt;}
.x2d{left:708.933322pt;}
.x34{left:710.373322pt;}
.xa{left:717.279988pt;}
}




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