
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_07adf673c508c3a7dc358578.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_2331c4d61de7061dea28bc65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_28a854a67a96c3368f16fe58.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60ec7b7d4b14ab84670fafc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.813477;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_4e87c955ecf5d0dcec4dc0a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_2abcbe1bf95bc275b913535d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_670ba6035372a6e4440ecd70.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_89ae06a814badf2fcfefee60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_5ab862bfa4f2c085cafbcd24.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_1bdda57898c2fd6d88d7040b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937988;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_80f9722e17c14f2a22e01399.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.548000px;}
.ls11{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.ls13{letter-spacing:1.620000px;}
.ls4{letter-spacing:3.780000px;}
.ls3{letter-spacing:4.500000px;}
.ls18{letter-spacing:22.986720px;}
.ls19{letter-spacing:23.130720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.wse{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws11{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-7.289280px;}
._4{margin-left:-4.292880px;}
._1{margin-left:-3.179520px;}
._5{margin-left:-2.063040px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._6{width:2.426400px;}
._8{width:3.581520px;}
._7{width:4.794240px;}
._d{width:5.848320px;}
._10{width:7.300080px;}
._e{width:8.567040px;}
._9{width:9.740880px;}
._11{width:10.825920px;}
._12{width:12.021120px;}
._f{width:13.185600px;}
._16{width:16.084800px;}
._15{width:17.091360px;}
._c{width:18.893520px;}
._b{width:19.990560px;}
._a{width:21.413280px;}
._3{width:22.828080px;}
._14{width:37.126800px;}
._13{width:254.699760px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs8{font-size:23.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y101{bottom:5.805000px;}
.yee{bottom:5.940000px;}
.y81{bottom:6.120000px;}
.y88{bottom:6.300000px;}
.ya8{bottom:6.330000px;}
.y80{bottom:6.480000px;}
.ydb{bottom:7.380000px;}
.y10f{bottom:7.560000px;}
.ybb{bottom:9.720000px;}
.ybd{bottom:9.900000px;}
.y7{bottom:14.760000px;}
.yfe{bottom:15.840000px;}
.yeb{bottom:16.020000px;}
.yd9{bottom:17.670000px;}
.ydd{bottom:18.720000px;}
.y25{bottom:25.560000px;}
.yff{bottom:25.740000px;}
.y6{bottom:43.920000px;}
.y24{bottom:45.540000px;}
.y99{bottom:51.300000px;}
.yd{bottom:55.260000px;}
.ya3{bottom:60.480000px;}
.y5{bottom:64.080000px;}
.y23{bottom:65.340000px;}
.y98{bottom:71.100000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y146{bottom:78.840000px;}
.yf7{bottom:79.740000px;}
.ya2{bottom:80.310000px;}
.y72{bottom:81.720000px;}
.ya1{bottom:83.520000px;}
.y22{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.y3c{bottom:87.480000px;}
.y97{bottom:91.080000px;}
.yd3{bottom:92.700000px;}
.y145{bottom:98.640000px;}
.yf6{bottom:99.720000px;}
.y71{bottom:101.520000px;}
.yaa{bottom:104.940000px;}
.y21{bottom:104.970000px;}
.y3b{bottom:107.460000px;}
.y9{bottom:107.490000px;}
.y96{bottom:110.880000px;}
.yd2{bottom:112.680000px;}
.y86{bottom:115.560000px;}
.y144{bottom:118.440000px;}
.yf5{bottom:119.520000px;}
.y70{bottom:121.320000px;}
.y3{bottom:122.610000px;}
.y20{bottom:124.770000px;}
.ya9{bottom:126.360000px;}
.y3a{bottom:127.260000px;}
.y127{bottom:130.680000px;}
.yd1{bottom:132.480000px;}
.y85{bottom:135.360000px;}
.y8{bottom:136.650000px;}
.y143{bottom:138.240000px;}
.yf4{bottom:139.320000px;}
.y6f{bottom:141.120000px;}
.y1f{bottom:144.750000px;}
.y39{bottom:147.060000px;}
.ya7{bottom:147.600000px;}
.y126{bottom:150.480000px;}
.yd0{bottom:152.310000px;}
.y84{bottom:155.160000px;}
.y142{bottom:158.070000px;}
.yf3{bottom:159.150000px;}
.y6e{bottom:161.130000px;}
.y1e{bottom:164.550000px;}
.y38{bottom:166.890000px;}
.ya6{bottom:169.050000px;}
.y125{bottom:170.310000px;}
.ycf{bottom:172.110000px;}
.y83{bottom:174.960000px;}
.yf2{bottom:175.530000px;}
.y141{bottom:178.050000px;}
.y6d{bottom:180.930000px;}
.y1d{bottom:184.350000px;}
.y37{bottom:186.690000px;}
.yf1{bottom:186.870000px;}
.y124{bottom:190.290000px;}
.ya5{bottom:190.470000px;}
.y140{bottom:197.850000px;}
.y6c{bottom:200.730000px;}
.yce{bottom:200.910000px;}
.yf0{bottom:201.810000px;}
.y1c{bottom:204.150000px;}
.y36{bottom:206.670000px;}
.y123{bottom:210.090000px;}
.ya4{bottom:211.890000px;}
.y13f{bottom:217.650000px;}
.y6b{bottom:220.530000px;}
.ycd{bottom:220.890000px;}
.yef{bottom:222.330000px;}
.y1b{bottom:223.950000px;}
.y35{bottom:226.470000px;}
.y122{bottom:229.890000px;}
.y95{bottom:233.130000px;}
.y13e{bottom:234.930000px;}
.y6a{bottom:240.330000px;}
.ycc{bottom:240.690000px;}
.yed{bottom:242.850000px;}
.y1a{bottom:243.930000px;}
.y34{bottom:246.270000px;}
.y121{bottom:249.690000px;}
.ya0{bottom:254.550000px;}
.y13d{bottom:254.730000px;}
.y69{bottom:260.310000px;}
.ycb{bottom:260.490000px;}
.yea{bottom:263.550000px;}
.y19{bottom:263.730000px;}
.y33{bottom:266.070000px;}
.y120{bottom:269.490000px;}
.y13c{bottom:274.530000px;}
.y9f{bottom:275.970000px;}
.y68{bottom:280.110000px;}
.yca{bottom:280.290000px;}
.y18{bottom:283.530000px;}
.yec{bottom:284.070000px;}
.y11f{bottom:284.430000px;}
.y32{bottom:285.870000px;}
.y13b{bottom:294.330000px;}
.y9e{bottom:297.390000px;}
.yc9{bottom:300.090000px;}
.y11e{bottom:304.950000px;}
.y31{bottom:305.850000px;}
.y67{bottom:308.910000px;}
.ye9{bottom:310.530000px;}
.y13a{bottom:314.310000px;}
.y9d{bottom:318.630000px;}
.yc8{bottom:320.070000px;}
.y30{bottom:325.650000px;}
.ye8{bottom:327.810000px;}
.y66{bottom:328.710000px;}
.y11d{bottom:331.230000px;}
.y139{bottom:334.110000px;}
.y9c{bottom:340.050000px;}
.y2f{bottom:345.450000px;}
.ye7{bottom:347.610000px;}
.y65{bottom:348.510000px;}
.y11c{bottom:351.210000px;}
.y138{bottom:353.910000px;}
.y9b{bottom:361.470000px;}
.y2e{bottom:365.250000px;}
.ye6{bottom:367.410000px;}
.y11b{bottom:371.010000px;}
.y137{bottom:373.710000px;}
.y64{bottom:377.490000px;}
.y9a{bottom:382.890000px;}
.y2d{bottom:385.050000px;}
.ye5{bottom:387.210000px;}
.y11a{bottom:390.810000px;}
.y136{bottom:393.510000px;}
.y63{bottom:397.290000px;}
.y82{bottom:404.175000px;}
.y2c{bottom:404.895000px;}
.ye4{bottom:407.055000px;}
.y119{bottom:410.655000px;}
.y135{bottom:413.535000px;}
.y62{bottom:417.135000px;}
.y2b{bottom:424.875000px;}
.y94{bottom:425.595000px;}
.ye3{bottom:426.855000px;}
.y118{bottom:430.455000px;}
.y134{bottom:433.335000px;}
.y61{bottom:436.935000px;}
.y2a{bottom:444.675000px;}
.y93{bottom:447.015000px;}
.y117{bottom:450.435000px;}
.y133{bottom:453.135000px;}
.ye2{bottom:455.835000px;}
.y29{bottom:464.475000px;}
.y60{bottom:465.735000px;}
.y92{bottom:468.435000px;}
.y132{bottom:472.935000px;}
.ye1{bottom:475.635000px;}
.y116{bottom:479.235000px;}
.y28{bottom:484.275000px;}
.y5f{bottom:485.715000px;}
.y91{bottom:489.675000px;}
.y131{bottom:492.735000px;}
.ye0{bottom:495.435000px;}
.y115{bottom:499.035000px;}
.y27{bottom:504.075000px;}
.y5e{bottom:505.515000px;}
.y90{bottom:511.095000px;}
.ydf{bottom:512.715000px;}
.y114{bottom:518.835000px;}
.y5d{bottom:525.315000px;}
.y8f{bottom:532.515000px;}
.y26{bottom:535.215000px;}
.y113{bottom:538.635000px;}
.y17{bottom:544.755000px;}
.y5c{bottom:545.115000px;}
.yde{bottom:547.275000px;}
.y130{bottom:552.315000px;}
.y8e{bottom:553.935000px;}
.y112{bottom:558.615000px;}
.y5b{bottom:564.915000px;}
.y12f{bottom:572.115000px;}
.y111{bottom:573.375000px;}
.y8d{bottom:575.175000px;}
.y5a{bottom:584.895000px;}
.ydc{bottom:585.615000px;}
.y12e{bottom:591.915000px;}
.y8c{bottom:596.595000px;}
.y110{bottom:597.315000px;}
.yc7{bottom:599.655000px;}
.y59{bottom:604.695000px;}
.y12d{bottom:611.895000px;}
.y8b{bottom:618.015000px;}
.yc6{bottom:619.455000px;}
.y10e{bottom:621.255000px;}
.y58{bottom:624.495000px;}
.y12c{bottom:631.695000px;}
.yd8{bottom:632.055000px;}
.yc5{bottom:639.255000px;}
.y8a{bottom:639.435000px;}
.y10d{bottom:651.165000px;}
.y12b{bottom:651.525000px;}
.yda{bottom:652.605000px;}
.y57{bottom:653.325000px;}
.yc4{bottom:659.085000px;}
.y89{bottom:660.705000px;}
.y10c{bottom:670.965000px;}
.y12a{bottom:671.325000px;}
.y56{bottom:673.125000px;}
.yc3{bottom:679.065000px;}
.y87{bottom:682.125000px;}
.y10b{bottom:690.765000px;}
.y129{bottom:691.125000px;}
.y55{bottom:693.105000px;}
.yd7{bottom:702.105000px;}
.y7f{bottom:703.725000px;}
.yc2{bottom:707.865000px;}
.y10a{bottom:710.565000px;}
.y128{bottom:711.105000px;}
.y54{bottom:712.905000px;}
.yd6{bottom:721.905000px;}
.yc1{bottom:727.665000px;}
.y109{bottom:730.365000px;}
.y7e{bottom:730.905000px;}
.y53{bottom:732.705000px;}
.yd5{bottom:741.705000px;}
.yc0{bottom:747.465000px;}
.y108{bottom:750.345000px;}
.y7d{bottom:750.705000px;}
.y52{bottom:752.505000px;}
.yd4{bottom:761.505000px;}
.ybf{bottom:767.265000px;}
.y107{bottom:770.145000px;}
.y7c{bottom:770.505000px;}
.y51{bottom:781.305000px;}
.ybe{bottom:782.025000px;}
.y106{bottom:789.945000px;}
.y7b{bottom:790.305000px;}
.y50{bottom:801.285000px;}
.y7a{bottom:810.285000px;}
.ybc{bottom:810.825000px;}
.y105{bottom:818.745000px;}
.y4f{bottom:821.085000px;}
.y79{bottom:830.085000px;}
.y104{bottom:838.545000px;}
.yba{bottom:839.625000px;}
.y4e{bottom:840.885000px;}
.y15{bottom:843.045000px;}
.y78{bottom:849.885000px;}
.y103{bottom:858.525000px;}
.y4d{bottom:860.685000px;}
.yb9{bottom:868.065000px;}
.y14{bottom:868.605000px;}
.y77{bottom:869.685000px;}
.y102{bottom:878.325000px;}
.y4c{bottom:880.485000px;}
.y76{bottom:889.485000px;}
.y100{bottom:893.085000px;}
.y13{bottom:893.805000px;}
.yb8{bottom:895.065000px;}
.y4b{bottom:900.510000px;}
.y75{bottom:909.510000px;}
.y12{bottom:913.650000px;}
.yb7{bottom:914.910000px;}
.y4a{bottom:920.310000px;}
.y11{bottom:928.770000px;}
.y74{bottom:929.310000px;}
.yb6{bottom:934.710000px;}
.y49{bottom:940.110000px;}
.y73{bottom:949.110000px;}
.y10{bottom:950.010000px;}
.yb5{bottom:954.510000px;}
.yfd{bottom:959.910000px;}
.y48{bottom:968.910000px;}
.yf{bottom:973.590000px;}
.yb4{bottom:974.310000px;}
.yfc{bottom:979.710000px;}
.y47{bottom:988.710000px;}
.yb3{bottom:994.290000px;}
.yfb{bottom:999.510000px;}
.ye{bottom:1005.270000px;}
.y46{bottom:1008.510000px;}
.yb2{bottom:1014.090000px;}
.yfa{bottom:1019.490000px;}
.y45{bottom:1028.490000px;}
.yc{bottom:1030.830000px;}
.yf9{bottom:1039.290000px;}
.yb1{bottom:1042.890000px;}
.y1{bottom:1045.590000px;}
.y44{bottom:1048.290000px;}
.yf8{bottom:1059.090000px;}
.yb0{bottom:1062.690000px;}
.y43{bottom:1068.090000px;}
.yaf{bottom:1082.490000px;}
.y42{bottom:1087.890000px;}
.yae{bottom:1102.470000px;}
.y41{bottom:1107.690000px;}
.yad{bottom:1117.230000px;}
.y40{bottom:1127.670000px;}
.yac{bottom:1138.650000px;}
.y3f{bottom:1147.500000px;}
.yab{bottom:1159.920000px;}
.y3e{bottom:1167.300000px;}
.y3d{bottom:1193.580000px;}
.h3{height:2.864531px;}
.h22{height:16.590234px;}
.hc{height:19.800000px;}
.h1d{height:19.836000px;}
.h21{height:19.980000px;}
.h16{height:20.340000px;}
.he{height:20.520000px;}
.h12{height:20.556000px;}
.h11{height:20.700000px;}
.h15{height:20.736000px;}
.h10{height:20.880000px;}
.h1c{height:23.040000px;}
.h24{height:23.220000px;}
.hb{height:27.147656px;}
.h18{height:27.720000px;}
.h19{height:27.900000px;}
.h1a{height:28.080000px;}
.h1f{height:37.620000px;}
.h23{height:39.780000px;}
.h20{height:40.320000px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h17{height:43.156758px;}
.h25{height:43.506914px;}
.h1b{height:43.596000px;}
.h1e{height:45.540000px;}
.h7{height:46.251562px;}
.ha{height:53.224453px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h14{height:148.896000px;}
.h2{height:161.310000px;}
.h13{height:170.310000px;}
.hd{height:297.570000px;}
.hf{height:298.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:42.300000px;}
.w27{width:49.140000px;}
.wc{width:53.100000px;}
.we{width:53.136000px;}
.w12{width:63.036000px;}
.w23{width:63.900000px;}
.w26{width:64.260000px;}
.w25{width:64.296000px;}
.wb{width:67.860000px;}
.wa{width:68.976000px;}
.w11{width:73.800000px;}
.w19{width:73.980000px;}
.w21{width:76.860000px;}
.w17{width:78.120000px;}
.w16{width:79.776000px;}
.w1b{width:84.456000px;}
.w22{width:85.536000px;}
.w1c{width:87.660000px;}
.w1e{width:94.860000px;}
.w1d{width:95.076000px;}
.w1f{width:116.496000px;}
.w10{width:120.096000px;}
.w1a{width:126.576000px;}
.w28{width:128.916000px;}
.w15{width:141.516000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w14{width:158.610000px;}
.w24{width:158.790000px;}
.w29{width:165.630000px;}
.w9{width:173.010000px;}
.wf{width:186.870000px;}
.w20{width:194.070000px;}
.w13{width:194.970000px;}
.w18{width:201.270000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:1.080000px;}
.xa{left:8.100000px;}
.x14{left:14.400000px;}
.x2a{left:16.560000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x36{left:71.099987px;}
.x35{left:75.239987px;}
.x37{left:92.375987px;}
.xc{left:96.515987px;}
.x1b{left:108.035987px;}
.x8{left:110.205000px;}
.x7{left:117.225000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x2b{left:149.795987px;}
.x2c{left:155.550000px;}
.x1e{left:198.210000px;}
.x1d{left:202.889987px;}
.x26{left:205.770000px;}
.x3{left:208.470000px;}
.x32{left:213.509987px;}
.xe{left:216.029987px;}
.x15{left:224.129987px;}
.xd{left:231.869987px;}
.x22{left:234.749987px;}
.x6{left:236.385000px;}
.x23{left:245.369987px;}
.x1a{left:274.394987px;}
.x27{left:290.955000px;}
.x1c{left:316.334987px;}
.x33{left:338.835000px;}
.xb{left:343.875000px;}
.x19{left:344.954987px;}
.x2d{left:350.355000px;}
.x28{left:379.335000px;}
.xf{left:389.235000px;}
.x1f{left:393.915000px;}
.x16{left:411.195000px;}
.x2e{left:427.935000px;}
.x24{left:446.865000px;}
.x10{left:458.925000px;}
.x21{left:474.405000px;}
.x2f{left:514.185000px;}
.x34{left:518.505000px;}
.x25{left:521.565000px;}
.x11{left:527.505000px;}
.x17{left:532.005000px;}
.x20{left:553.425000px;}
.x29{left:570.705000px;}
.x30{left:578.805000px;}
.x12{left:581.325000px;}
.x18{left:606.525000px;}
.x13{left:624.525000px;}
.x9{left:681.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.376000pt;}
.ls11{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls13{letter-spacing:1.440000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls18{letter-spacing:20.432640pt;}
.ls19{letter-spacing:20.560640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws11{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-6.479360pt;}
._4{margin-left:-3.815893pt;}
._1{margin-left:-2.826240pt;}
._5{margin-left:-1.833813pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._6{width:2.156800pt;}
._8{width:3.183573pt;}
._7{width:4.261547pt;}
._d{width:5.198507pt;}
._10{width:6.488960pt;}
._e{width:7.615147pt;}
._9{width:8.658560pt;}
._11{width:9.623040pt;}
._12{width:10.685440pt;}
._f{width:11.720533pt;}
._16{width:14.297600pt;}
._15{width:15.192320pt;}
._c{width:16.794240pt;}
._b{width:17.769387pt;}
._a{width:19.034027pt;}
._3{width:20.291627pt;}
._14{width:33.001600pt;}
._13{width:226.399787pt;}
.fs0{font-size:2.560000pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y101{bottom:5.160000pt;}
.yee{bottom:5.280000pt;}
.y81{bottom:5.440000pt;}
.y88{bottom:5.600000pt;}
.ya8{bottom:5.626667pt;}
.y80{bottom:5.760000pt;}
.ydb{bottom:6.560000pt;}
.y10f{bottom:6.720000pt;}
.ybb{bottom:8.640000pt;}
.ybd{bottom:8.800000pt;}
.y7{bottom:13.120000pt;}
.yfe{bottom:14.080000pt;}
.yeb{bottom:14.240000pt;}
.yd9{bottom:15.706667pt;}
.ydd{bottom:16.640000pt;}
.y25{bottom:22.720000pt;}
.yff{bottom:22.880000pt;}
.y6{bottom:39.040000pt;}
.y24{bottom:40.480000pt;}
.y99{bottom:45.600000pt;}
.yd{bottom:49.120000pt;}
.ya3{bottom:53.760000pt;}
.y5{bottom:56.960000pt;}
.y23{bottom:58.080000pt;}
.y98{bottom:63.200000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y146{bottom:70.080000pt;}
.yf7{bottom:70.880000pt;}
.ya2{bottom:71.386667pt;}
.y72{bottom:72.640000pt;}
.ya1{bottom:74.240000pt;}
.y22{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.y3c{bottom:77.760000pt;}
.y97{bottom:80.960000pt;}
.yd3{bottom:82.400000pt;}
.y145{bottom:87.680000pt;}
.yf6{bottom:88.640000pt;}
.y71{bottom:90.240000pt;}
.yaa{bottom:93.280000pt;}
.y21{bottom:93.306667pt;}
.y3b{bottom:95.520000pt;}
.y9{bottom:95.546667pt;}
.y96{bottom:98.560000pt;}
.yd2{bottom:100.160000pt;}
.y86{bottom:102.720000pt;}
.y144{bottom:105.280000pt;}
.yf5{bottom:106.240000pt;}
.y70{bottom:107.840000pt;}
.y3{bottom:108.986667pt;}
.y20{bottom:110.906667pt;}
.ya9{bottom:112.320000pt;}
.y3a{bottom:113.120000pt;}
.y127{bottom:116.160000pt;}
.yd1{bottom:117.760000pt;}
.y85{bottom:120.320000pt;}
.y8{bottom:121.466667pt;}
.y143{bottom:122.880000pt;}
.yf4{bottom:123.840000pt;}
.y6f{bottom:125.440000pt;}
.y1f{bottom:128.666667pt;}
.y39{bottom:130.720000pt;}
.ya7{bottom:131.200000pt;}
.y126{bottom:133.760000pt;}
.yd0{bottom:135.386667pt;}
.y84{bottom:137.920000pt;}
.y142{bottom:140.506667pt;}
.yf3{bottom:141.466667pt;}
.y6e{bottom:143.226667pt;}
.y1e{bottom:146.266667pt;}
.y38{bottom:148.346667pt;}
.ya6{bottom:150.266667pt;}
.y125{bottom:151.386667pt;}
.ycf{bottom:152.986667pt;}
.y83{bottom:155.520000pt;}
.yf2{bottom:156.026667pt;}
.y141{bottom:158.266667pt;}
.y6d{bottom:160.826667pt;}
.y1d{bottom:163.866667pt;}
.y37{bottom:165.946667pt;}
.yf1{bottom:166.106667pt;}
.y124{bottom:169.146667pt;}
.ya5{bottom:169.306667pt;}
.y140{bottom:175.866667pt;}
.y6c{bottom:178.426667pt;}
.yce{bottom:178.586667pt;}
.yf0{bottom:179.386667pt;}
.y1c{bottom:181.466667pt;}
.y36{bottom:183.706667pt;}
.y123{bottom:186.746667pt;}
.ya4{bottom:188.346667pt;}
.y13f{bottom:193.466667pt;}
.y6b{bottom:196.026667pt;}
.ycd{bottom:196.346667pt;}
.yef{bottom:197.626667pt;}
.y1b{bottom:199.066667pt;}
.y35{bottom:201.306667pt;}
.y122{bottom:204.346667pt;}
.y95{bottom:207.226667pt;}
.y13e{bottom:208.826667pt;}
.y6a{bottom:213.626667pt;}
.ycc{bottom:213.946667pt;}
.yed{bottom:215.866667pt;}
.y1a{bottom:216.826667pt;}
.y34{bottom:218.906667pt;}
.y121{bottom:221.946667pt;}
.ya0{bottom:226.266667pt;}
.y13d{bottom:226.426667pt;}
.y69{bottom:231.386667pt;}
.ycb{bottom:231.546667pt;}
.yea{bottom:234.266667pt;}
.y19{bottom:234.426667pt;}
.y33{bottom:236.506667pt;}
.y120{bottom:239.546667pt;}
.y13c{bottom:244.026667pt;}
.y9f{bottom:245.306667pt;}
.y68{bottom:248.986667pt;}
.yca{bottom:249.146667pt;}
.y18{bottom:252.026667pt;}
.yec{bottom:252.506667pt;}
.y11f{bottom:252.826667pt;}
.y32{bottom:254.106667pt;}
.y13b{bottom:261.626667pt;}
.y9e{bottom:264.346667pt;}
.yc9{bottom:266.746667pt;}
.y11e{bottom:271.066667pt;}
.y31{bottom:271.866667pt;}
.y67{bottom:274.586667pt;}
.ye9{bottom:276.026667pt;}
.y13a{bottom:279.386667pt;}
.y9d{bottom:283.226667pt;}
.yc8{bottom:284.506667pt;}
.y30{bottom:289.466667pt;}
.ye8{bottom:291.386667pt;}
.y66{bottom:292.186667pt;}
.y11d{bottom:294.426667pt;}
.y139{bottom:296.986667pt;}
.y9c{bottom:302.266667pt;}
.y2f{bottom:307.066667pt;}
.ye7{bottom:308.986667pt;}
.y65{bottom:309.786667pt;}
.y11c{bottom:312.186667pt;}
.y138{bottom:314.586667pt;}
.y9b{bottom:321.306667pt;}
.y2e{bottom:324.666667pt;}
.ye6{bottom:326.586667pt;}
.y11b{bottom:329.786667pt;}
.y137{bottom:332.186667pt;}
.y64{bottom:335.546667pt;}
.y9a{bottom:340.346667pt;}
.y2d{bottom:342.266667pt;}
.ye5{bottom:344.186667pt;}
.y11a{bottom:347.386667pt;}
.y136{bottom:349.786667pt;}
.y63{bottom:353.146667pt;}
.y82{bottom:359.266667pt;}
.y2c{bottom:359.906667pt;}
.ye4{bottom:361.826667pt;}
.y119{bottom:365.026667pt;}
.y135{bottom:367.586667pt;}
.y62{bottom:370.786667pt;}
.y2b{bottom:377.666667pt;}
.y94{bottom:378.306667pt;}
.ye3{bottom:379.426667pt;}
.y118{bottom:382.626667pt;}
.y134{bottom:385.186667pt;}
.y61{bottom:388.386667pt;}
.y2a{bottom:395.266667pt;}
.y93{bottom:397.346667pt;}
.y117{bottom:400.386667pt;}
.y133{bottom:402.786667pt;}
.ye2{bottom:405.186667pt;}
.y29{bottom:412.866667pt;}
.y60{bottom:413.986667pt;}
.y92{bottom:416.386667pt;}
.y132{bottom:420.386667pt;}
.ye1{bottom:422.786667pt;}
.y116{bottom:425.986667pt;}
.y28{bottom:430.466667pt;}
.y5f{bottom:431.746667pt;}
.y91{bottom:435.266667pt;}
.y131{bottom:437.986667pt;}
.ye0{bottom:440.386667pt;}
.y115{bottom:443.586667pt;}
.y27{bottom:448.066667pt;}
.y5e{bottom:449.346667pt;}
.y90{bottom:454.306667pt;}
.ydf{bottom:455.746667pt;}
.y114{bottom:461.186667pt;}
.y5d{bottom:466.946667pt;}
.y8f{bottom:473.346667pt;}
.y26{bottom:475.746667pt;}
.y113{bottom:478.786667pt;}
.y17{bottom:484.226667pt;}
.y5c{bottom:484.546667pt;}
.yde{bottom:486.466667pt;}
.y130{bottom:490.946667pt;}
.y8e{bottom:492.386667pt;}
.y112{bottom:496.546667pt;}
.y5b{bottom:502.146667pt;}
.y12f{bottom:508.546667pt;}
.y111{bottom:509.666667pt;}
.y8d{bottom:511.266667pt;}
.y5a{bottom:519.906667pt;}
.ydc{bottom:520.546667pt;}
.y12e{bottom:526.146667pt;}
.y8c{bottom:530.306667pt;}
.y110{bottom:530.946667pt;}
.yc7{bottom:533.026667pt;}
.y59{bottom:537.506667pt;}
.y12d{bottom:543.906667pt;}
.y8b{bottom:549.346667pt;}
.yc6{bottom:550.626667pt;}
.y10e{bottom:552.226667pt;}
.y58{bottom:555.106667pt;}
.y12c{bottom:561.506667pt;}
.yd8{bottom:561.826667pt;}
.yc5{bottom:568.226667pt;}
.y8a{bottom:568.386667pt;}
.y10d{bottom:578.813333pt;}
.y12b{bottom:579.133333pt;}
.yda{bottom:580.093333pt;}
.y57{bottom:580.733333pt;}
.yc4{bottom:585.853333pt;}
.y89{bottom:587.293333pt;}
.y10c{bottom:596.413333pt;}
.y12a{bottom:596.733333pt;}
.y56{bottom:598.333333pt;}
.yc3{bottom:603.613333pt;}
.y87{bottom:606.333333pt;}
.y10b{bottom:614.013333pt;}
.y129{bottom:614.333333pt;}
.y55{bottom:616.093333pt;}
.yd7{bottom:624.093333pt;}
.y7f{bottom:625.533333pt;}
.yc2{bottom:629.213333pt;}
.y10a{bottom:631.613333pt;}
.y128{bottom:632.093333pt;}
.y54{bottom:633.693333pt;}
.yd6{bottom:641.693333pt;}
.yc1{bottom:646.813333pt;}
.y109{bottom:649.213333pt;}
.y7e{bottom:649.693333pt;}
.y53{bottom:651.293333pt;}
.yd5{bottom:659.293333pt;}
.yc0{bottom:664.413333pt;}
.y108{bottom:666.973333pt;}
.y7d{bottom:667.293333pt;}
.y52{bottom:668.893333pt;}
.yd4{bottom:676.893333pt;}
.ybf{bottom:682.013333pt;}
.y107{bottom:684.573333pt;}
.y7c{bottom:684.893333pt;}
.y51{bottom:694.493333pt;}
.ybe{bottom:695.133333pt;}
.y106{bottom:702.173333pt;}
.y7b{bottom:702.493333pt;}
.y50{bottom:712.253333pt;}
.y7a{bottom:720.253333pt;}
.ybc{bottom:720.733333pt;}
.y105{bottom:727.773333pt;}
.y4f{bottom:729.853333pt;}
.y79{bottom:737.853333pt;}
.y104{bottom:745.373333pt;}
.yba{bottom:746.333333pt;}
.y4e{bottom:747.453333pt;}
.y15{bottom:749.373333pt;}
.y78{bottom:755.453333pt;}
.y103{bottom:763.133333pt;}
.y4d{bottom:765.053333pt;}
.yb9{bottom:771.613333pt;}
.y14{bottom:772.093333pt;}
.y77{bottom:773.053333pt;}
.y102{bottom:780.733333pt;}
.y4c{bottom:782.653333pt;}
.y76{bottom:790.653333pt;}
.y100{bottom:793.853333pt;}
.y13{bottom:794.493333pt;}
.yb8{bottom:795.613333pt;}
.y4b{bottom:800.453333pt;}
.y75{bottom:808.453333pt;}
.y12{bottom:812.133333pt;}
.yb7{bottom:813.253333pt;}
.y4a{bottom:818.053333pt;}
.y11{bottom:825.573333pt;}
.y74{bottom:826.053333pt;}
.yb6{bottom:830.853333pt;}
.y49{bottom:835.653333pt;}
.y73{bottom:843.653333pt;}
.y10{bottom:844.453333pt;}
.yb5{bottom:848.453333pt;}
.yfd{bottom:853.253333pt;}
.y48{bottom:861.253333pt;}
.yf{bottom:865.413333pt;}
.yb4{bottom:866.053333pt;}
.yfc{bottom:870.853333pt;}
.y47{bottom:878.853333pt;}
.yb3{bottom:883.813333pt;}
.yfb{bottom:888.453333pt;}
.ye{bottom:893.573333pt;}
.y46{bottom:896.453333pt;}
.yb2{bottom:901.413333pt;}
.yfa{bottom:906.213333pt;}
.y45{bottom:914.213333pt;}
.yc{bottom:916.293333pt;}
.yf9{bottom:923.813333pt;}
.yb1{bottom:927.013333pt;}
.y1{bottom:929.413333pt;}
.y44{bottom:931.813333pt;}
.yf8{bottom:941.413333pt;}
.yb0{bottom:944.613333pt;}
.y43{bottom:949.413333pt;}
.yaf{bottom:962.213333pt;}
.y42{bottom:967.013333pt;}
.yae{bottom:979.973333pt;}
.y41{bottom:984.613333pt;}
.yad{bottom:993.093333pt;}
.y40{bottom:1002.373333pt;}
.yac{bottom:1012.133333pt;}
.y3f{bottom:1020.000000pt;}
.yab{bottom:1031.040000pt;}
.y3e{bottom:1037.600000pt;}
.y3d{bottom:1060.960000pt;}
.h3{height:2.546250pt;}
.h22{height:14.746875pt;}
.hc{height:17.600000pt;}
.h1d{height:17.632000pt;}
.h21{height:17.760000pt;}
.h16{height:18.080000pt;}
.he{height:18.240000pt;}
.h12{height:18.272000pt;}
.h11{height:18.400000pt;}
.h15{height:18.432000pt;}
.h10{height:18.560000pt;}
.h1c{height:20.480000pt;}
.h24{height:20.640000pt;}
.hb{height:24.131250pt;}
.h18{height:24.640000pt;}
.h19{height:24.800000pt;}
.h1a{height:24.960000pt;}
.h1f{height:33.440000pt;}
.h23{height:35.360000pt;}
.h20{height:35.840000pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h17{height:38.361562pt;}
.h25{height:38.672812pt;}
.h1b{height:38.752000pt;}
.h1e{height:40.480000pt;}
.h7{height:41.112500pt;}
.ha{height:47.310625pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h14{height:132.352000pt;}
.h2{height:143.386667pt;}
.h13{height:151.386667pt;}
.hd{height:264.506667pt;}
.hf{height:265.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:37.600000pt;}
.w27{width:43.680000pt;}
.wc{width:47.200000pt;}
.we{width:47.232000pt;}
.w12{width:56.032000pt;}
.w23{width:56.800000pt;}
.w26{width:57.120000pt;}
.w25{width:57.152000pt;}
.wb{width:60.320000pt;}
.wa{width:61.312000pt;}
.w11{width:65.600000pt;}
.w19{width:65.760000pt;}
.w21{width:68.320000pt;}
.w17{width:69.440000pt;}
.w16{width:70.912000pt;}
.w1b{width:75.072000pt;}
.w22{width:76.032000pt;}
.w1c{width:77.920000pt;}
.w1e{width:84.320000pt;}
.w1d{width:84.512000pt;}
.w1f{width:103.552000pt;}
.w10{width:106.752000pt;}
.w1a{width:112.512000pt;}
.w28{width:114.592000pt;}
.w15{width:125.792000pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w14{width:140.986667pt;}
.w24{width:141.146667pt;}
.w29{width:147.226667pt;}
.w9{width:153.786667pt;}
.wf{width:166.106667pt;}
.w20{width:172.506667pt;}
.w13{width:173.306667pt;}
.w18{width:178.906667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:0.960000pt;}
.xa{left:7.200000pt;}
.x14{left:12.800000pt;}
.x2a{left:14.720000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x36{left:63.199988pt;}
.x35{left:66.879988pt;}
.x37{left:82.111988pt;}
.xc{left:85.791988pt;}
.x1b{left:96.031988pt;}
.x8{left:97.960000pt;}
.x7{left:104.200000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x2b{left:133.151988pt;}
.x2c{left:138.266667pt;}
.x1e{left:176.186667pt;}
.x1d{left:180.346655pt;}
.x26{left:182.906667pt;}
.x3{left:185.306667pt;}
.x32{left:189.786655pt;}
.xe{left:192.026655pt;}
.x15{left:199.226655pt;}
.xd{left:206.106655pt;}
.x22{left:208.666655pt;}
.x6{left:210.120000pt;}
.x23{left:218.106655pt;}
.x1a{left:243.906655pt;}
.x27{left:258.626667pt;}
.x1c{left:281.186655pt;}
.x33{left:301.186667pt;}
.xb{left:305.666667pt;}
.x19{left:306.626655pt;}
.x2d{left:311.426667pt;}
.x28{left:337.186667pt;}
.xf{left:345.986667pt;}
.x1f{left:350.146667pt;}
.x16{left:365.506667pt;}
.x2e{left:380.386667pt;}
.x24{left:397.213333pt;}
.x10{left:407.933333pt;}
.x21{left:421.693333pt;}
.x2f{left:457.053333pt;}
.x34{left:460.893333pt;}
.x25{left:463.613333pt;}
.x11{left:468.893333pt;}
.x17{left:472.893333pt;}
.x20{left:491.933333pt;}
.x29{left:507.293333pt;}
.x30{left:514.493333pt;}
.x12{left:516.733333pt;}
.x18{left:539.133333pt;}
.x13{left:555.133333pt;}
.x9{left:605.573333pt;}
}




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