
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_7570b9ab0960208b1149e505.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_564bf12a5abc5672ec8c563d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8aa9d4982601657f8d0e0d70.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.751953;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_5ad189b37a58e274b8a07206.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0d94e17cae0e3f58fa9f75e4.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.161760px;}
.ls4{letter-spacing:0.169920px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.562800px;}
.ls5{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.ls7{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.ls14{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws14{word-spacing:-56.880000px;}
.ws7{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.wse{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1.411920px;}
._1{width:1.135440px;}
._a{width:2.560800px;}
._8{width:4.460160px;}
._9{width:5.745600px;}
._7{width:7.035840px;}
._6{width:8.046000px;}
._b{width:9.450000px;}
._15{width:10.583280px;}
._c{width:11.610000px;}
._13{width:13.565520px;}
._e{width:15.390000px;}
._1b{width:16.553520px;}
._1c{width:17.708160px;}
._17{width:19.422000px;}
._16{width:20.497680px;}
._1d{width:21.991680px;}
._22{width:23.904000px;}
._14{width:25.039440px;}
._21{width:27.076560px;}
._20{width:28.141680px;}
._19{width:29.820240px;}
._18{width:31.417200px;}
._1f{width:32.638800px;}
._1e{width:33.824160px;}
._24{width:39.919680px;}
._23{width:40.935600px;}
._f{width:43.632000px;}
._11{width:45.360000px;}
._10{width:46.386000px;}
._1a{width:48.721680px;}
._d{width:49.788000px;}
._25{width:51.984480px;}
._28{width:57.250080px;}
._2a{width:62.100000px;}
._29{width:63.186480px;}
._26{width:68.484960px;}
._27{width:69.500880px;}
._12{width:87.804000px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:997.571040px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y45{bottom:2.556000px;}
.y39{bottom:2.880000px;}
.y128{bottom:3.060000px;}
.y18{bottom:3.240000px;}
.y32{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y43{bottom:8.496000px;}
.ya6{bottom:9.720000px;}
.yc{bottom:14.040000px;}
.y122{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y44{bottom:16.416000px;}
.yb0{bottom:16.920000px;}
.yac{bottom:17.100000px;}
.y38{bottom:18.540000px;}
.y30{bottom:19.440000px;}
.ya9{bottom:24.300000px;}
.y121{bottom:30.060000px;}
.ye8{bottom:31.725000px;}
.y37{bottom:34.020000px;}
.ya{bottom:35.460000px;}
.y2f{bottom:35.820000px;}
.y46{bottom:41.400000px;}
.y120{bottom:43.920000px;}
.yd5{bottom:46.260000px;}
.y36{bottom:49.500000px;}
.y2e{bottom:51.300000px;}
.y12b{bottom:52.200000px;}
.y127{bottom:52.380000px;}
.y11f{bottom:57.600000px;}
.y6{bottom:58.140000px;}
.y42{bottom:64.080000px;}
.y35{bottom:64.980000px;}
.y2d{bottom:66.780000px;}
.y12a{bottom:68.580000px;}
.y126{bottom:68.940000px;}
.y34{bottom:80.640000px;}
.y2c{bottom:82.440000px;}
.y125{bottom:85.545000px;}
.y2b{bottom:97.920000px;}
.y124{bottom:102.285000px;}
.y3a{bottom:106.245000px;}
.y2a{bottom:113.430000px;}
.y41{bottom:118.296000px;}
.y7b{bottom:124.416000px;}
.yc1{bottom:125.136000px;}
.ya2{bottom:125.496000px;}
.y29{bottom:128.910000px;}
.y40{bottom:135.576000px;}
.y11c{bottom:139.536000px;}
.y7a{bottom:141.696000px;}
.yc0{bottom:142.416000px;}
.ya1{bottom:142.776000px;}
.y3f{bottom:152.670000px;}
.y129{bottom:153.570000px;}
.yf5{bottom:158.790000px;}
.y27{bottom:158.985000px;}
.ybf{bottom:159.690000px;}
.y79{bottom:160.050000px;}
.y3e{bottom:169.950000px;}
.ybc{bottom:174.450000px;}
.y26{bottom:174.465000px;}
.yf4{bottom:176.070000px;}
.y78{bottom:177.150000px;}
.y3d{bottom:186.510000px;}
.ybe{bottom:188.850000px;}
.y25{bottom:189.945000px;}
.yf3{bottom:193.350000px;}
.y77{bottom:194.430000px;}
.y3c{bottom:201.630000px;}
.ybd{bottom:203.430000px;}
.y24{bottom:205.425000px;}
.yf2{bottom:210.630000px;}
.y76{bottom:211.710000px;}
.ybb{bottom:219.630000px;}
.y3b{bottom:220.710000px;}
.y23{bottom:221.085000px;}
.yf1{bottom:227.910000px;}
.y75{bottom:228.990000px;}
.yba{bottom:229.890000px;}
.y19{bottom:234.030000px;}
.y123{bottom:236.190000px;}
.y22{bottom:236.565000px;}
.yf0{bottom:245.190000px;}
.y74{bottom:246.270000px;}
.yb9{bottom:247.170000px;}
.y21{bottom:252.045000px;}
.yef{bottom:262.290000px;}
.ya0{bottom:263.370000px;}
.y73{bottom:264.450000px;}
.y20{bottom:267.525000px;}
.yee{bottom:279.570000px;}
.y9f{bottom:280.650000px;}
.yb8{bottom:281.550000px;}
.y72{bottom:281.730000px;}
.y1f{bottom:283.185000px;}
.yed{bottom:296.850000px;}
.y9e{bottom:297.930000px;}
.y1e{bottom:298.665000px;}
.yb7{bottom:298.830000px;}
.y71{bottom:299.010000px;}
.ye7{bottom:311.610000px;}
.y1d{bottom:314.145000px;}
.y9d{bottom:315.210000px;}
.yb6{bottom:316.110000px;}
.y70{bottom:316.290000px;}
.yec{bottom:326.235000px;}
.y1c{bottom:329.625000px;}
.y9c{bottom:332.535000px;}
.yb5{bottom:333.435000px;}
.y6f{bottom:333.615000px;}
.yeb{bottom:340.815000px;}
.y1b{bottom:345.315000px;}
.yb4{bottom:348.195000px;}
.y9b{bottom:349.815000px;}
.y6e{bottom:350.895000px;}
.y33{bottom:353.595000px;}
.yea{bottom:355.395000px;}
.y1a{bottom:361.335000px;}
.yb3{bottom:362.775000px;}
.y9a{bottom:366.915000px;}
.y11b{bottom:368.535000px;}
.y6d{bottom:369.075000px;}
.ye9{bottom:369.795000px;}
.yaf{bottom:377.355000px;}
.y99{bottom:384.195000px;}
.y11a{bottom:385.815000px;}
.y6c{bottom:386.355000px;}
.ye6{bottom:387.615000px;}
.yb2{bottom:391.755000px;}
.y98{bottom:401.475000px;}
.y119{bottom:403.095000px;}
.y6b{bottom:403.635000px;}
.ye5{bottom:404.895000px;}
.yb1{bottom:406.335000px;}
.y97{bottom:418.755000px;}
.y118{bottom:420.375000px;}
.y6a{bottom:420.915000px;}
.ye4{bottom:422.175000px;}
.y11e{bottom:435.135000px;}
.yae{bottom:435.495000px;}
.y96{bottom:436.035000px;}
.y69{bottom:438.195000px;}
.ye3{bottom:439.455000px;}
.y31{bottom:447.555000px;}
.yad{bottom:450.075000px;}
.y95{bottom:453.315000px;}
.y68{bottom:455.475000px;}
.ye2{bottom:456.555000px;}
.ya8{bottom:464.655000px;}
.y28{bottom:468.255000px;}
.y116{bottom:469.335000px;}
.y94{bottom:470.415000px;}
.y67{bottom:473.655000px;}
.ye1{bottom:473.835000px;}
.yab{bottom:479.055000px;}
.y115{bottom:486.615000px;}
.y93{bottom:487.695000px;}
.y66{bottom:490.935000px;}
.ye0{bottom:491.115000px;}
.yaa{bottom:493.635000px;}
.y114{bottom:503.895000px;}
.y11d{bottom:504.795000px;}
.y92{bottom:504.975000px;}
.y65{bottom:508.215000px;}
.ydf{bottom:508.395000px;}
.y113{bottom:521.175000px;}
.y91{bottom:522.255000px;}
.ya5{bottom:522.795000px;}
.y64{bottom:525.495000px;}
.yde{bottom:525.675000px;}
.y117{bottom:526.575000px;}
.ya7{bottom:537.375000px;}
.y112{bottom:538.455000px;}
.y90{bottom:540.615000px;}
.ydd{bottom:542.955000px;}
.y63{bottom:543.855000px;}
.ya4{bottom:551.955000px;}
.y111{bottom:555.735000px;}
.y8f{bottom:557.715000px;}
.ydc{bottom:560.055000px;}
.y62{bottom:560.955000px;}
.ya3{bottom:567.975000px;}
.y110{bottom:572.865000px;}
.yd4{bottom:574.845000px;}
.y8e{bottom:576.105000px;}
.y61{bottom:578.265000px;}
.ydb{bottom:589.425000px;}
.y10f{bottom:590.145000px;}
.y8d{bottom:593.385000px;}
.y60{bottom:595.545000px;}
.yda{bottom:604.005000px;}
.y10e{bottom:607.425000px;}
.y17{bottom:610.665000px;}
.y5f{bottom:612.825000px;}
.yd9{bottom:618.585000px;}
.y10d{bottom:624.705000px;}
.y8c{bottom:627.945000px;}
.y5e{bottom:630.105000px;}
.yd8{bottom:633.165000px;}
.y10c{bottom:641.985000px;}
.y16{bottom:645.225000px;}
.y5d{bottom:647.385000px;}
.yd7{bottom:647.745000px;}
.y10b{bottom:659.085000px;}
.yd6{bottom:662.145000px;}
.y8b{bottom:662.325000px;}
.y5c{bottom:664.485000px;}
.y15{bottom:665.025000px;}
.y10a{bottom:676.365000px;}
.y8a{bottom:679.605000px;}
.yd3{bottom:679.965000px;}
.y5b{bottom:681.765000px;}
.y109{bottom:693.645000px;}
.y89{bottom:696.885000px;}
.yd2{bottom:697.245000px;}
.y14{bottom:698.685000px;}
.y5a{bottom:699.045000px;}
.y108{bottom:710.925000px;}
.y88{bottom:714.165000px;}
.yd1{bottom:714.525000px;}
.y13{bottom:715.965000px;}
.y59{bottom:716.325000px;}
.y107{bottom:728.205000px;}
.y12{bottom:728.385000px;}
.y87{bottom:731.445000px;}
.yd0{bottom:731.805000px;}
.y58{bottom:733.605000px;}
.y106{bottom:745.485000px;}
.y86{bottom:748.725000px;}
.ycf{bottom:749.085000px;}
.y11{bottom:749.625000px;}
.y57{bottom:750.885000px;}
.y105{bottom:762.585000px;}
.y85{bottom:765.825000px;}
.yce{bottom:766.185000px;}
.y56{bottom:767.985000px;}
.y104{bottom:779.865000px;}
.y10{bottom:780.585000px;}
.y84{bottom:783.105000px;}
.ycd{bottom:783.465000px;}
.y55{bottom:785.265000px;}
.y103{bottom:797.145000px;}
.y83{bottom:800.385000px;}
.ycc{bottom:800.745000px;}
.y54{bottom:802.545000px;}
.yf{bottom:811.725000px;}
.y102{bottom:814.425000px;}
.y82{bottom:817.665000px;}
.ycb{bottom:818.025000px;}
.y53{bottom:819.870000px;}
.y101{bottom:831.750000px;}
.y81{bottom:834.990000px;}
.yca{bottom:835.350000px;}
.y52{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.y100{bottom:849.030000px;}
.y80{bottom:852.270000px;}
.yc9{bottom:852.450000px;}
.y51{bottom:854.250000px;}
.yff{bottom:866.130000px;}
.y7f{bottom:869.370000px;}
.yc8{bottom:869.730000px;}
.y50{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yfe{bottom:883.410000px;}
.yb{bottom:887.010000px;}
.y7e{bottom:887.730000px;}
.y4f{bottom:888.810000px;}
.yfd{bottom:900.690000px;}
.yc7{bottom:901.770000px;}
.y7d{bottom:905.010000px;}
.y4e{bottom:906.090000px;}
.yc6{bottom:916.350000px;}
.yfc{bottom:919.050000px;}
.y7c{bottom:922.290000px;}
.y4d{bottom:923.370000px;}
.yc5{bottom:930.930000px;}
.yfb{bottom:936.330000px;}
.y4c{bottom:940.650000px;}
.yc4{bottom:945.510000px;}
.yfa{bottom:954.510000px;}
.y4b{bottom:957.750000px;}
.yc3{bottom:959.910000px;}
.yf9{bottom:971.790000px;}
.yc2{bottom:974.490000px;}
.y4a{bottom:975.030000px;}
.yf8{bottom:990.150000px;}
.y49{bottom:992.310000px;}
.yf7{bottom:1008.510000px;}
.y48{bottom:1009.590000px;}
.yf6{bottom:1025.790000px;}
.y47{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1f{height:13.680000px;}
.h22{height:13.860000px;}
.h25{height:13.860150px;}
.h28{height:13.896000px;}
.h10{height:17.100000px;}
.h17{height:19.980000px;}
.h1e{height:21.114844px;}
.hd{height:27.147656px;}
.h4{height:27.576000px;}
.h21{height:28.260000px;}
.h6{height:33.683203px;}
.h20{height:34.036523px;}
.h13{height:37.705078px;}
.h19{height:38.100586px;}
.h7{height:39.336328px;}
.h2c{height:39.716016px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h2b{height:40.132617px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h24{height:42.840000px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:46.251562px;}
.h1d{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h23{height:57.420000px;}
.h1{height:58.429688px;}
.h29{height:68.940000px;}
.h27{height:72.036000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h2d{height:81.900000px;}
.h18{height:93.240000px;}
.h26{height:101.160000px;}
.h2a{height:115.590000px;}
.h1a{height:118.836000px;}
.h14{height:141.516000px;}
.h8{height:153.900000px;}
.h11{height:375.735000px;}
.h0{height:1188.000000px;}
.w18{width:19.800000px;}
.wd{width:21.240000px;}
.w14{width:22.500000px;}
.w19{width:43.740000px;}
.w2{width:45.036000px;}
.we{width:47.340000px;}
.w15{width:49.860000px;}
.w9{width:66.780000px;}
.wa{width:69.300000px;}
.w10{width:98.856000px;}
.w8{width:101.916000px;}
.w11{width:102.420000px;}
.wc{width:121.176000px;}
.w13{width:124.056000px;}
.w7{width:135.576000px;}
.w17{width:147.276000px;}
.w16{width:164.910000px;}
.wf{width:174.060000px;}
.w12{width:181.110000px;}
.wb{width:186.330000px;}
.w6{width:201.270000px;}
.w1a{width:344.010000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w1b{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:4.500000px;}
.x14{left:6.660000px;}
.x5{left:8.640000px;}
.x30{left:10.080000px;}
.x1e{left:12.240000px;}
.x3e{left:14.400000px;}
.x2a{left:16.920000px;}
.x17{left:18.045000px;}
.x13{left:20.205000px;}
.x34{left:22.185000px;}
.x15{left:24.705000px;}
.x16{left:26.505000px;}
.x24{left:27.720000px;}
.x28{left:28.800000px;}
.x26{left:30.420000px;}
.x27{left:31.500000px;}
.x23{left:33.120000px;}
.x40{left:34.785000px;}
.x25{left:36.720000px;}
.x37{left:37.800000px;}
.x20{left:38.880000px;}
.x3a{left:40.680000px;}
.x36{left:43.425000px;}
.x8{left:45.540000px;}
.x3f{left:46.665000px;}
.x22{left:48.456000px;}
.x3b{left:50.085000px;}
.x32{left:52.380000px;}
.x4{left:53.999986px;}
.x39{left:56.700000px;}
.x38{left:58.320000px;}
.x19{left:59.579986px;}
.x3{left:60.659986px;}
.x1d{left:61.920000px;}
.xb{left:64.079986px;}
.x18{left:65.519986px;}
.x29{left:67.716000px;}
.x44{left:70.919986px;}
.x1a{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x10{left:134.675986px;}
.xf{left:139.355986px;}
.x1{left:150.509986px;}
.x1f{left:198.210000px;}
.x2{left:220.709986px;}
.x2c{left:247.710000px;}
.x2b{left:252.569986px;}
.xe{left:300.494986px;}
.xc{left:345.674986px;}
.x21{left:368.355000px;}
.x2d{left:369.615000px;}
.x2f{left:391.575000px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x11{left:465.374986px;}
.x1c{left:478.334986px;}
.x31{left:479.805000px;}
.x45{left:487.905000px;}
.x1b{left:505.364986px;}
.x41{left:645.045000px;}
.x33{left:654.585000px;}
.x12{left:661.245000px;}
.x35{left:754.350000px;}
.x3c{left:785.130000px;}
.x42{left:793.050000px;}
.x3d{left:808.350000px;}
.x9{left:812.490000px;}
.x43{left:813.570000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.143787pt;}
.ls4{letter-spacing:0.151040pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.500267pt;}
.ls5{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.ls7{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.ls14{letter-spacing:57.040640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws14{word-spacing:-50.560000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1.255040pt;}
._1{width:1.009280pt;}
._a{width:2.276267pt;}
._8{width:3.964587pt;}
._9{width:5.107200pt;}
._7{width:6.254080pt;}
._6{width:7.152000pt;}
._b{width:8.400000pt;}
._15{width:9.407360pt;}
._c{width:10.320000pt;}
._13{width:12.058240pt;}
._e{width:13.680000pt;}
._1b{width:14.714240pt;}
._1c{width:15.740587pt;}
._17{width:17.264000pt;}
._16{width:18.220160pt;}
._1d{width:19.548160pt;}
._22{width:21.248000pt;}
._14{width:22.257280pt;}
._21{width:24.068053pt;}
._20{width:25.014827pt;}
._19{width:26.506880pt;}
._18{width:27.926400pt;}
._1f{width:29.012267pt;}
._1e{width:30.065920pt;}
._24{width:35.484160pt;}
._23{width:36.387200pt;}
._f{width:38.784000pt;}
._11{width:40.320000pt;}
._10{width:41.232000pt;}
._1a{width:43.308160pt;}
._d{width:44.256000pt;}
._25{width:46.208427pt;}
._28{width:50.888960pt;}
._2a{width:55.200000pt;}
._29{width:56.165760pt;}
._26{width:60.875520pt;}
._27{width:61.778560pt;}
._12{width:78.048000pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:886.729813pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y45{bottom:2.272000pt;}
.y39{bottom:2.560000pt;}
.y128{bottom:2.720000pt;}
.y18{bottom:2.880000pt;}
.y32{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y43{bottom:7.552000pt;}
.ya6{bottom:8.640000pt;}
.yc{bottom:12.480000pt;}
.y122{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y44{bottom:14.592000pt;}
.yb0{bottom:15.040000pt;}
.yac{bottom:15.200000pt;}
.y38{bottom:16.480000pt;}
.y30{bottom:17.280000pt;}
.ya9{bottom:21.600000pt;}
.y121{bottom:26.720000pt;}
.ye8{bottom:28.200000pt;}
.y37{bottom:30.240000pt;}
.ya{bottom:31.520000pt;}
.y2f{bottom:31.840000pt;}
.y46{bottom:36.800000pt;}
.y120{bottom:39.040000pt;}
.yd5{bottom:41.120000pt;}
.y36{bottom:44.000000pt;}
.y2e{bottom:45.600000pt;}
.y12b{bottom:46.400000pt;}
.y127{bottom:46.560000pt;}
.y11f{bottom:51.200000pt;}
.y6{bottom:51.680000pt;}
.y42{bottom:56.960000pt;}
.y35{bottom:57.760000pt;}
.y2d{bottom:59.360000pt;}
.y12a{bottom:60.960000pt;}
.y126{bottom:61.280000pt;}
.y34{bottom:71.680000pt;}
.y2c{bottom:73.280000pt;}
.y125{bottom:76.040000pt;}
.y2b{bottom:87.040000pt;}
.y124{bottom:90.920000pt;}
.y3a{bottom:94.440000pt;}
.y2a{bottom:100.826667pt;}
.y41{bottom:105.152000pt;}
.y7b{bottom:110.592000pt;}
.yc1{bottom:111.232000pt;}
.ya2{bottom:111.552000pt;}
.y29{bottom:114.586667pt;}
.y40{bottom:120.512000pt;}
.y11c{bottom:124.032000pt;}
.y7a{bottom:125.952000pt;}
.yc0{bottom:126.592000pt;}
.ya1{bottom:126.912000pt;}
.y3f{bottom:135.706667pt;}
.y129{bottom:136.506667pt;}
.yf5{bottom:141.146667pt;}
.y27{bottom:141.320000pt;}
.ybf{bottom:141.946667pt;}
.y79{bottom:142.266667pt;}
.y3e{bottom:151.066667pt;}
.ybc{bottom:155.066667pt;}
.y26{bottom:155.080000pt;}
.yf4{bottom:156.506667pt;}
.y78{bottom:157.466667pt;}
.y3d{bottom:165.786667pt;}
.ybe{bottom:167.866667pt;}
.y25{bottom:168.840000pt;}
.yf3{bottom:171.866667pt;}
.y77{bottom:172.826667pt;}
.y3c{bottom:179.226667pt;}
.ybd{bottom:180.826667pt;}
.y24{bottom:182.600000pt;}
.yf2{bottom:187.226667pt;}
.y76{bottom:188.186667pt;}
.ybb{bottom:195.226667pt;}
.y3b{bottom:196.186667pt;}
.y23{bottom:196.520000pt;}
.yf1{bottom:202.586667pt;}
.y75{bottom:203.546667pt;}
.yba{bottom:204.346667pt;}
.y19{bottom:208.026667pt;}
.y123{bottom:209.946667pt;}
.y22{bottom:210.280000pt;}
.yf0{bottom:217.946667pt;}
.y74{bottom:218.906667pt;}
.yb9{bottom:219.706667pt;}
.y21{bottom:224.040000pt;}
.yef{bottom:233.146667pt;}
.ya0{bottom:234.106667pt;}
.y73{bottom:235.066667pt;}
.y20{bottom:237.800000pt;}
.yee{bottom:248.506667pt;}
.y9f{bottom:249.466667pt;}
.yb8{bottom:250.266667pt;}
.y72{bottom:250.426667pt;}
.y1f{bottom:251.720000pt;}
.yed{bottom:263.866667pt;}
.y9e{bottom:264.826667pt;}
.y1e{bottom:265.480000pt;}
.yb7{bottom:265.626667pt;}
.y71{bottom:265.786667pt;}
.ye7{bottom:276.986667pt;}
.y1d{bottom:279.240000pt;}
.y9d{bottom:280.186667pt;}
.yb6{bottom:280.986667pt;}
.y70{bottom:281.146667pt;}
.yec{bottom:289.986667pt;}
.y1c{bottom:293.000000pt;}
.y9c{bottom:295.586667pt;}
.yb5{bottom:296.386667pt;}
.y6f{bottom:296.546667pt;}
.yeb{bottom:302.946667pt;}
.y1b{bottom:306.946667pt;}
.yb4{bottom:309.506667pt;}
.y9b{bottom:310.946667pt;}
.y6e{bottom:311.906667pt;}
.y33{bottom:314.306667pt;}
.yea{bottom:315.906667pt;}
.y1a{bottom:321.186667pt;}
.yb3{bottom:322.466667pt;}
.y9a{bottom:326.146667pt;}
.y11b{bottom:327.586667pt;}
.y6d{bottom:328.066667pt;}
.ye9{bottom:328.706667pt;}
.yaf{bottom:335.426667pt;}
.y99{bottom:341.506667pt;}
.y11a{bottom:342.946667pt;}
.y6c{bottom:343.426667pt;}
.ye6{bottom:344.546667pt;}
.yb2{bottom:348.226667pt;}
.y98{bottom:356.866667pt;}
.y119{bottom:358.306667pt;}
.y6b{bottom:358.786667pt;}
.ye5{bottom:359.906667pt;}
.yb1{bottom:361.186667pt;}
.y97{bottom:372.226667pt;}
.y118{bottom:373.666667pt;}
.y6a{bottom:374.146667pt;}
.ye4{bottom:375.266667pt;}
.y11e{bottom:386.786667pt;}
.yae{bottom:387.106667pt;}
.y96{bottom:387.586667pt;}
.y69{bottom:389.506667pt;}
.ye3{bottom:390.626667pt;}
.y31{bottom:397.826667pt;}
.yad{bottom:400.066667pt;}
.y95{bottom:402.946667pt;}
.y68{bottom:404.866667pt;}
.ye2{bottom:405.826667pt;}
.ya8{bottom:413.026667pt;}
.y28{bottom:416.226667pt;}
.y116{bottom:417.186667pt;}
.y94{bottom:418.146667pt;}
.y67{bottom:421.026667pt;}
.ye1{bottom:421.186667pt;}
.yab{bottom:425.826667pt;}
.y115{bottom:432.546667pt;}
.y93{bottom:433.506667pt;}
.y66{bottom:436.386667pt;}
.ye0{bottom:436.546667pt;}
.yaa{bottom:438.786667pt;}
.y114{bottom:447.906667pt;}
.y11d{bottom:448.706667pt;}
.y92{bottom:448.866667pt;}
.y65{bottom:451.746667pt;}
.ydf{bottom:451.906667pt;}
.y113{bottom:463.266667pt;}
.y91{bottom:464.226667pt;}
.ya5{bottom:464.706667pt;}
.y64{bottom:467.106667pt;}
.yde{bottom:467.266667pt;}
.y117{bottom:468.066667pt;}
.ya7{bottom:477.666667pt;}
.y112{bottom:478.626667pt;}
.y90{bottom:480.546667pt;}
.ydd{bottom:482.626667pt;}
.y63{bottom:483.426667pt;}
.ya4{bottom:490.626667pt;}
.y111{bottom:493.986667pt;}
.y8f{bottom:495.746667pt;}
.ydc{bottom:497.826667pt;}
.y62{bottom:498.626667pt;}
.ya3{bottom:504.866667pt;}
.y110{bottom:509.213333pt;}
.yd4{bottom:510.973333pt;}
.y8e{bottom:512.093333pt;}
.y61{bottom:514.013333pt;}
.ydb{bottom:523.933333pt;}
.y10f{bottom:524.573333pt;}
.y8d{bottom:527.453333pt;}
.y60{bottom:529.373333pt;}
.yda{bottom:536.893333pt;}
.y10e{bottom:539.933333pt;}
.y17{bottom:542.813333pt;}
.y5f{bottom:544.733333pt;}
.yd9{bottom:549.853333pt;}
.y10d{bottom:555.293333pt;}
.y8c{bottom:558.173333pt;}
.y5e{bottom:560.093333pt;}
.yd8{bottom:562.813333pt;}
.y10c{bottom:570.653333pt;}
.y16{bottom:573.533333pt;}
.y5d{bottom:575.453333pt;}
.yd7{bottom:575.773333pt;}
.y10b{bottom:585.853333pt;}
.yd6{bottom:588.573333pt;}
.y8b{bottom:588.733333pt;}
.y5c{bottom:590.653333pt;}
.y15{bottom:591.133333pt;}
.y10a{bottom:601.213333pt;}
.y8a{bottom:604.093333pt;}
.yd3{bottom:604.413333pt;}
.y5b{bottom:606.013333pt;}
.y109{bottom:616.573333pt;}
.y89{bottom:619.453333pt;}
.yd2{bottom:619.773333pt;}
.y14{bottom:621.053333pt;}
.y5a{bottom:621.373333pt;}
.y108{bottom:631.933333pt;}
.y88{bottom:634.813333pt;}
.yd1{bottom:635.133333pt;}
.y13{bottom:636.413333pt;}
.y59{bottom:636.733333pt;}
.y107{bottom:647.293333pt;}
.y12{bottom:647.453333pt;}
.y87{bottom:650.173333pt;}
.yd0{bottom:650.493333pt;}
.y58{bottom:652.093333pt;}
.y106{bottom:662.653333pt;}
.y86{bottom:665.533333pt;}
.ycf{bottom:665.853333pt;}
.y11{bottom:666.333333pt;}
.y57{bottom:667.453333pt;}
.y105{bottom:677.853333pt;}
.y85{bottom:680.733333pt;}
.yce{bottom:681.053333pt;}
.y56{bottom:682.653333pt;}
.y104{bottom:693.213333pt;}
.y10{bottom:693.853333pt;}
.y84{bottom:696.093333pt;}
.ycd{bottom:696.413333pt;}
.y55{bottom:698.013333pt;}
.y103{bottom:708.573333pt;}
.y83{bottom:711.453333pt;}
.ycc{bottom:711.773333pt;}
.y54{bottom:713.373333pt;}
.yf{bottom:721.533333pt;}
.y102{bottom:723.933333pt;}
.y82{bottom:726.813333pt;}
.ycb{bottom:727.133333pt;}
.y53{bottom:728.773333pt;}
.y101{bottom:739.333333pt;}
.y81{bottom:742.213333pt;}
.yca{bottom:742.533333pt;}
.y52{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.y100{bottom:754.693333pt;}
.y80{bottom:757.573333pt;}
.yc9{bottom:757.733333pt;}
.y51{bottom:759.333333pt;}
.yff{bottom:769.893333pt;}
.y7f{bottom:772.773333pt;}
.yc8{bottom:773.093333pt;}
.y50{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yfe{bottom:785.253333pt;}
.yb{bottom:788.453333pt;}
.y7e{bottom:789.093333pt;}
.y4f{bottom:790.053333pt;}
.yfd{bottom:800.613333pt;}
.yc7{bottom:801.573333pt;}
.y7d{bottom:804.453333pt;}
.y4e{bottom:805.413333pt;}
.yc6{bottom:814.533333pt;}
.yfc{bottom:816.933333pt;}
.y7c{bottom:819.813333pt;}
.y4d{bottom:820.773333pt;}
.yc5{bottom:827.493333pt;}
.yfb{bottom:832.293333pt;}
.y4c{bottom:836.133333pt;}
.yc4{bottom:840.453333pt;}
.yfa{bottom:848.453333pt;}
.y4b{bottom:851.333333pt;}
.yc3{bottom:853.253333pt;}
.yf9{bottom:863.813333pt;}
.yc2{bottom:866.213333pt;}
.y4a{bottom:866.693333pt;}
.yf8{bottom:880.133333pt;}
.y49{bottom:882.053333pt;}
.yf7{bottom:896.453333pt;}
.y48{bottom:897.413333pt;}
.yf6{bottom:911.813333pt;}
.y47{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1f{height:12.160000pt;}
.h22{height:12.320000pt;}
.h25{height:12.320133pt;}
.h28{height:12.352000pt;}
.h10{height:15.200000pt;}
.h17{height:17.760000pt;}
.h1e{height:18.768750pt;}
.hd{height:24.131250pt;}
.h4{height:24.512000pt;}
.h21{height:25.120000pt;}
.h6{height:29.940625pt;}
.h20{height:30.254687pt;}
.h13{height:33.515625pt;}
.h19{height:33.867188pt;}
.h7{height:34.965625pt;}
.h2c{height:35.303125pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h2b{height:35.673437pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h24{height:38.080000pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:41.112500pt;}
.h1d{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h23{height:51.040000pt;}
.h1{height:51.937500pt;}
.h29{height:61.280000pt;}
.h27{height:64.032000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h2d{height:72.800000pt;}
.h18{height:82.880000pt;}
.h26{height:89.920000pt;}
.h2a{height:102.746667pt;}
.h1a{height:105.632000pt;}
.h14{height:125.792000pt;}
.h8{height:136.800000pt;}
.h11{height:333.986667pt;}
.h0{height:1056.000000pt;}
.w18{width:17.600000pt;}
.wd{width:18.880000pt;}
.w14{width:20.000000pt;}
.w19{width:38.880000pt;}
.w2{width:40.032000pt;}
.we{width:42.080000pt;}
.w15{width:44.320000pt;}
.w9{width:59.360000pt;}
.wa{width:61.600000pt;}
.w10{width:87.872000pt;}
.w8{width:90.592000pt;}
.w11{width:91.040000pt;}
.wc{width:107.712000pt;}
.w13{width:110.272000pt;}
.w7{width:120.512000pt;}
.w17{width:130.912000pt;}
.w16{width:146.586667pt;}
.wf{width:154.720000pt;}
.w12{width:160.986667pt;}
.wb{width:165.626667pt;}
.w6{width:178.906667pt;}
.w1a{width:305.786667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w1b{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.000000pt;}
.x14{left:5.920000pt;}
.x5{left:7.680000pt;}
.x30{left:8.960000pt;}
.x1e{left:10.880000pt;}
.x3e{left:12.800000pt;}
.x2a{left:15.040000pt;}
.x17{left:16.040000pt;}
.x13{left:17.960000pt;}
.x34{left:19.720000pt;}
.x15{left:21.960000pt;}
.x16{left:23.560000pt;}
.x24{left:24.640000pt;}
.x28{left:25.600000pt;}
.x26{left:27.040000pt;}
.x27{left:28.000000pt;}
.x23{left:29.440000pt;}
.x40{left:30.920000pt;}
.x25{left:32.640000pt;}
.x37{left:33.600000pt;}
.x20{left:34.560000pt;}
.x3a{left:36.160000pt;}
.x36{left:38.600000pt;}
.x8{left:40.480000pt;}
.x3f{left:41.480000pt;}
.x22{left:43.072000pt;}
.x3b{left:44.520000pt;}
.x32{left:46.560000pt;}
.x4{left:47.999988pt;}
.x39{left:50.400000pt;}
.x38{left:51.840000pt;}
.x19{left:52.959988pt;}
.x3{left:53.919988pt;}
.x1d{left:55.040000pt;}
.xb{left:56.959988pt;}
.x18{left:58.239988pt;}
.x29{left:60.192000pt;}
.x44{left:63.039988pt;}
.x1a{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x10{left:119.711988pt;}
.xf{left:123.871988pt;}
.x1{left:133.786655pt;}
.x1f{left:176.186667pt;}
.x2{left:196.186655pt;}
.x2c{left:220.186667pt;}
.x2b{left:224.506655pt;}
.xe{left:267.106655pt;}
.xc{left:307.266655pt;}
.x21{left:327.426667pt;}
.x2d{left:328.546667pt;}
.x2f{left:348.066667pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x11{left:413.666655pt;}
.x1c{left:425.186655pt;}
.x31{left:426.493333pt;}
.x45{left:433.693333pt;}
.x1b{left:449.213321pt;}
.x41{left:573.373333pt;}
.x33{left:581.853333pt;}
.x12{left:587.773333pt;}
.x35{left:670.533333pt;}
.x3c{left:697.893333pt;}
.x42{left:704.933333pt;}
.x3d{left:718.533333pt;}
.x9{left:722.213333pt;}
.x43{left:723.173333pt;}
}




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