
    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_e1f29cc4c2bdce824dcfde3e.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_0900325abb51bb50a0345ee9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_bf3732e8fd00acd2f028563a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_f4e1ad77c099567b439f7ea2.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_8312d112845d1c96b1aa2731.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70e6d53274c3aef17797a030.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_af388428ddef98b0ebadc60e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_93a2ad2aec4a76bd64019663.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3747ef1ae58a34e0c1596111.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_17a3dd40a30382aa18bc8256.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_c9c7ee445304d0ca634bf148.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.201172;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_3a5717837aa7c49d3b922385.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.884277;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.355200px;}
.lse{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.354960px;}
.lsa{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.460080px;}
.lsc{letter-spacing:0.534960px;}
.ls5{letter-spacing:0.900000px;}
.ls1b{letter-spacing:3.780000px;}
.ls18{letter-spacing:3.960000px;}
.ls8{letter-spacing:15.300000px;}
.ls16{letter-spacing:16.506720px;}
.ls1{letter-spacing:17.280000px;}
.ls15{letter-spacing:46.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;}
}
.wsd{word-spacing:-54.000000px;}
.wse{word-spacing:-53.982000px;}
.wsb{word-spacing:-27.174240px;}
.ws9{word-spacing:-24.408000px;}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.304544px;}
.wsa{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.479800px;}
.ws8{word-spacing:-13.447440px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._34{margin-left:-12.953760px;}
._7{margin-left:-8.618400px;}
._15{margin-left:-7.612560px;}
._e{margin-left:-6.519120px;}
._c{margin-left:-5.500800px;}
._d{margin-left:-4.434720px;}
._b{margin-left:-2.952960px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._10{width:2.900160px;}
._8{width:4.755600px;}
._14{width:6.172320px;}
._1b{width:7.470000px;}
._13{width:8.952960px;}
._a{width:10.644960px;}
._9{width:11.874240px;}
._5{width:12.960000px;}
._19{width:16.493760px;}
._1a{width:18.146400px;}
._11{width:19.650000px;}
._12{width:20.938080px;}
._1d{width:22.601760px;}
._20{width:24.431760px;}
._28{width:25.876080px;}
._2a{width:27.549360px;}
._29{width:28.625040px;}
._3b{width:29.688720px;}
._21{width:30.836160px;}
._1c{width:32.270400px;}
._1f{width:33.764400px;}
._2d{width:34.964880px;}
._32{width:36.005520px;}
._26{width:38.032080px;}
._27{width:39.046560px;}
._24{width:40.929840px;}
._23{width:42.190560px;}
._1e{width:43.706640px;}
._35{width:44.868720px;}
._25{width:46.238160px;}
._22{width:47.612640px;}
._2b{width:49.769040px;}
._2c{width:51.046080px;}
._3d{width:54.130080px;}
._3c{width:55.828320px;}
._4{width:57.204000px;}
._2f{width:58.348320px;}
._2e{width:59.354160px;}
._3f{width:61.338000px;}
._39{width:80.084400px;}
._38{width:85.450800px;}
._3{width:87.120000px;}
._18{width:110.784000px;}
._3a{width:158.532240px;}
._16{width:162.833040px;}
._41{width:166.832880px;}
._40{width:169.875840px;}
._42{width:189.697200px;}
._37{width:191.261760px;}
._36{width:192.486960px;}
._6{width:199.416000px;}
._3e{width:202.944960px;}
._2{width:233.273760px;}
._17{width:269.338320px;}
._f{width:1023.282960px;}
._30{width:2195.021760px;}
._33{width:2375.021760px;}
._31{width:2645.450880px;}
.fc9{color:transparent;}
.fc5{color:rgb(209,52,56);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y97{bottom:4.965000px;}
.yab{bottom:5.070000px;}
.yad{bottom:5.295000px;}
.y10d{bottom:5.370000px;}
.yb1{bottom:5.475000px;}
.y10f{bottom:5.550000px;}
.yaf{bottom:5.655000px;}
.y114{bottom:5.730000px;}
.y2b{bottom:5.760000px;}
.yde{bottom:5.940000px;}
.y99{bottom:6.270000px;}
.y9b{bottom:6.450000px;}
.yb8{bottom:6.555000px;}
.y11b{bottom:6.630000px;}
.yb4{bottom:6.735000px;}
.y119{bottom:6.810000px;}
.yb6{bottom:6.915000px;}
.y9f{bottom:7.350000px;}
.y90{bottom:7.380000px;}
.ya8{bottom:7.530000px;}
.y14{bottom:7.560000px;}
.y81{bottom:8.280000px;}
.y8e{bottom:8.460000px;}
.y85{bottom:9.180000px;}
.ybe{bottom:10.695000px;}
.y9d{bottom:10.770000px;}
.yd7{bottom:11.880000px;}
.ya5{bottom:12.030000px;}
.yc0{bottom:12.960000px;}
.y6{bottom:13.860000px;}
.yd8{bottom:18.000000px;}
.y2a{bottom:25.560000px;}
.y80{bottom:28.080000px;}
.y8d{bottom:28.260000px;}
.y84{bottom:29.010000px;}
.ydb{bottom:32.040000px;}
.y5{bottom:45.000000px;}
.y29{bottom:45.540000px;}
.y83{bottom:48.810000px;}
.y9{bottom:60.480000px;}
.y28{bottom:65.385000px;}
.y4{bottom:76.320000px;}
.y27{bottom:85.185000px;}
.y78{bottom:88.560000px;}
.y38{bottom:95.040000px;}
.y95{bottom:98.460000px;}
.y10a{bottom:100.080000px;}
.y40{bottom:101.700000px;}
.y26{bottom:104.985000px;}
.y3{bottom:107.670000px;}
.y77{bottom:108.360000px;}
.y37{bottom:114.300000px;}
.y94{bottom:118.260000px;}
.y109{bottom:119.880000px;}
.y3f{bottom:121.680000px;}
.y25{bottom:124.785000px;}
.y76{bottom:128.160000px;}
.y36{bottom:133.380000px;}
.y93{bottom:138.060000px;}
.y108{bottom:139.860000px;}
.y2{bottom:140.430000px;}
.y3e{bottom:141.480000px;}
.y24{bottom:144.765000px;}
.y75{bottom:147.960000px;}
.y35{bottom:152.670000px;}
.y92{bottom:157.890000px;}
.y107{bottom:159.690000px;}
.y3d{bottom:161.310000px;}
.y23{bottom:164.565000px;}
.y74{bottom:167.790000px;}
.y34{bottom:171.930000px;}
.y91{bottom:172.830000px;}
.y106{bottom:179.490000px;}
.y3c{bottom:181.110000px;}
.y22{bottom:184.365000px;}
.y73{bottom:187.770000px;}
.y33{bottom:191.010000px;}
.y105{bottom:199.290000px;}
.y8f{bottom:199.830000px;}
.y3b{bottom:200.910000px;}
.y21{bottom:204.165000px;}
.y72{bottom:207.570000px;}
.y32{bottom:210.270000px;}
.y104{bottom:219.090000px;}
.y3a{bottom:220.890000px;}
.y20{bottom:223.965000px;}
.y8c{bottom:226.650000px;}
.y71{bottom:227.370000px;}
.y31{bottom:238.350000px;}
.y103{bottom:239.070000px;}
.y39{bottom:240.690000px;}
.y1f{bottom:243.945000px;}
.y70{bottom:247.170000px;}
.y102{bottom:258.870000px;}
.y30{bottom:260.490000px;}
.y1e{bottom:263.745000px;}
.y6f{bottom:266.970000px;}
.y101{bottom:278.670000px;}
.y8b{bottom:280.110000px;}
.y2f{bottom:280.290000px;}
.y1d{bottom:283.545000px;}
.y6e{bottom:286.950000px;}
.ye3{bottom:294.150000px;}
.y100{bottom:298.470000px;}
.y2e{bottom:300.090000px;}
.y1c{bottom:303.375000px;}
.y6d{bottom:306.750000px;}
.ye2{bottom:308.910000px;}
.yff{bottom:318.270000px;}
.y8a{bottom:319.890000px;}
.y2d{bottom:320.070000px;}
.y1b{bottom:323.175000px;}
.y6c{bottom:326.550000px;}
.ydf{bottom:335.010000px;}
.yfe{bottom:338.250000px;}
.y89{bottom:339.690000px;}
.y2c{bottom:339.870000px;}
.y1a{bottom:343.155000px;}
.y6b{bottom:346.350000px;}
.yaa{bottom:350.820000px;}
.y15{bottom:354.630000px;}
.y88{bottom:356.250000px;}
.yfd{bottom:358.050000px;}
.ye1{bottom:361.290000px;}
.y19{bottom:362.955000px;}
.y6a{bottom:366.150000px;}
.yfc{bottom:377.850000px;}
.y18{bottom:382.755000px;}
.y69{bottom:386.130000px;}
.ye0{bottom:387.570000px;}
.yfb{bottom:397.650000px;}
.y17{bottom:402.555000px;}
.y68{bottom:405.975000px;}
.yda{bottom:413.715000px;}
.yfa{bottom:417.495000px;}
.y16{bottom:422.355000px;}
.y67{bottom:425.775000px;}
.yf9{bottom:437.475000px;}
.ydd{bottom:439.995000px;}
.y66{bottom:445.575000px;}
.yac{bottom:456.480000px;}
.yf8{bottom:457.275000px;}
.y65{bottom:465.375000px;}
.ydc{bottom:466.275000px;}
.yae{bottom:470.340000px;}
.ybc{bottom:474.300000px;}
.ybb{bottom:475.020000px;}
.yf7{bottom:477.075000px;}
.yba{bottom:477.540000px;}
.yb9{bottom:478.260000px;}
.yb0{bottom:484.740000px;}
.y64{bottom:485.355000px;}
.yb7{bottom:490.500000px;}
.yd9{bottom:492.375000px;}
.yb5{bottom:493.200000px;}
.yf6{bottom:496.875000px;}
.yb2{bottom:498.960000px;}
.yb3{bottom:501.840000px;}
.y63{bottom:505.155000px;}
.yf5{bottom:516.675000px;}
.yd6{bottom:518.655000px;}
.y62{bottom:524.955000px;}
.yf4{bottom:536.655000px;}
.ybd{bottom:538.740000px;}
.y61{bottom:544.755000px;}
.yf3{bottom:556.455000px;}
.yd5{bottom:562.755000px;}
.y60{bottom:564.555000px;}
.yf2{bottom:576.255000px;}
.yd4{bottom:582.735000px;}
.y5f{bottom:584.355000px;}
.yf1{bottom:596.055000px;}
.y87{bottom:597.855000px;}
.yd3{bottom:602.535000px;}
.y5e{bottom:604.335000px;}
.yf0{bottom:615.855000px;}
.y86{bottom:617.655000px;}
.yd2{bottom:622.335000px;}
.y5d{bottom:624.135000px;}
.y82{bottom:632.415000px;}
.yef{bottom:635.835000px;}
.yd1{bottom:642.135000px;}
.y5c{bottom:643.935000px;}
.yee{bottom:655.665000px;}
.yd0{bottom:661.965000px;}
.y5b{bottom:663.765000px;}
.yed{bottom:675.465000px;}
.ycf{bottom:681.945000px;}
.y5a{bottom:683.565000px;}
.yec{bottom:695.265000px;}
.y7f{bottom:700.845000px;}
.yce{bottom:701.745000px;}
.y59{bottom:703.545000px;}
.yeb{bottom:715.065000px;}
.ycd{bottom:716.865000px;}
.y58{bottom:723.345000px;}
.yea{bottom:735.045000px;}
.ycc{bottom:741.165000px;}
.y57{bottom:743.145000px;}
.y7e{bottom:754.125000px;}
.ye9{bottom:754.845000px;}
.y56{bottom:762.945000px;}
.ycb{bottom:765.285000px;}
.y7d{bottom:774.105000px;}
.ye8{bottom:774.645000px;}
.y55{bottom:782.745000px;}
.yca{bottom:789.585000px;}
.y13{bottom:791.925000px;}
.y7c{bottom:793.905000px;}
.ye7{bottom:794.445000px;}
.y54{bottom:802.725000px;}
.y7b{bottom:813.705000px;}
.ye6{bottom:814.245000px;}
.y53{bottom:822.525000px;}
.y12{bottom:824.505000px;}
.y7a{bottom:833.505000px;}
.ye5{bottom:834.225000px;}
.yc9{bottom:838.005000px;}
.y52{bottom:842.325000px;}
.y96{bottom:844.740000px;}
.y10b{bottom:845.460000px;}
.y11{bottom:849.525000px;}
.y79{bottom:850.065000px;}
.ye4{bottom:850.605000px;}
.y51{bottom:862.125000px;}
.y10{bottom:864.105000px;}
.y50{bottom:881.925000px;}
.yc8{bottom:886.425000px;}
.yf{bottom:889.125000px;}
.ya9{bottom:890.460000px;}
.y4f{bottom:901.950000px;}
.ye{bottom:904.470000px;}
.ya0{bottom:909.900000px;}
.yc7{bottom:910.770000px;}
.ya2{bottom:919.080000px;}
.ya7{bottom:921.240000px;}
.y4e{bottom:921.750000px;}
.yd{bottom:926.250000px;}
.yc6{bottom:934.890000px;}
.y9e{bottom:940.680000px;}
.y4d{bottom:941.550000px;}
.ya1{bottom:942.660000px;}
.y98{bottom:947.160000px;}
.yc{bottom:947.490000px;}
.ya6{bottom:952.200000px;}
.y9a{bottom:954.720000px;}
.yc5{bottom:959.190000px;}
.y4c{bottom:961.350000px;}
.ya3{bottom:962.100000px;}
.y10c{bottom:968.040000px;}
.yb{bottom:970.890000px;}
.y4b{bottom:981.150000px;}
.y10e{bottom:981.360000px;}
.yc4{bottom:983.310000px;}
.y11a{bottom:992.340000px;}
.y118{bottom:993.420000px;}
.y110{bottom:994.860000px;}
.y4a{bottom:1001.130000px;}
.ya{bottom:1002.750000px;}
.yc3{bottom:1007.610000px;}
.y111{bottom:1008.540000px;}
.ya4{bottom:1012.140000px;}
.y120{bottom:1012.500000px;}
.y11d{bottom:1013.940000px;}
.y11e{bottom:1018.620000px;}
.y49{bottom:1020.930000px;}
.y112{bottom:1022.040000px;}
.y9c{bottom:1027.260000px;}
.y8{bottom:1029.030000px;}
.yc2{bottom:1031.910000px;}
.y113{bottom:1035.360000px;}
.y11f{bottom:1035.900000px;}
.y48{bottom:1040.730000px;}
.y1{bottom:1046.490000px;}
.y115{bottom:1049.220000px;}
.yc1{bottom:1056.030000px;}
.y47{bottom:1060.530000px;}
.y116{bottom:1062.540000px;}
.y117{bottom:1076.040000px;}
.y11c{bottom:1076.760000px;}
.y46{bottom:1080.330000px;}
.y45{bottom:1100.310000px;}
.y121{bottom:1100.700000px;}
.ybf{bottom:1104.450000px;}
.y44{bottom:1120.110000px;}
.y43{bottom:1139.910000px;}
.y42{bottom:1169.820000px;}
.y41{bottom:1192.680000px;}
.h21{height:18.360000px;}
.h22{height:18.540000px;}
.h2b{height:19.800000px;}
.h2f{height:19.836000px;}
.h2d{height:19.980000px;}
.h15{height:20.520000px;}
.h17{height:20.700000px;}
.h13{height:21.420000px;}
.h28{height:21.600000px;}
.h29{height:21.636000px;}
.h14{height:21.780000px;}
.h20{height:21.960000px;}
.h26{height:22.320000px;}
.h23{height:22.500000px;}
.h25{height:22.680000px;}
.h1c{height:24.480000px;}
.h1a{height:24.660000px;}
.hb{height:26.100000px;}
.h27{height:27.000000px;}
.ha{height:28.115859px;}
.h2a{height:32.040000px;}
.h18{height:36.720000px;}
.h1d{height:40.860000px;}
.h10{height:42.120000px;}
.hd{height:42.164648px;}
.h12{height:42.300000px;}
.h8{height:43.215117px;}
.h30{height:43.506914px;}
.he{height:48.496641px;}
.h4{height:48.774375px;}
.h31{height:48.995859px;}
.hf{height:51.706406px;}
.h5{height:52.066406px;}
.h9{height:53.224453px;}
.h16{height:61.189805px;}
.h3{height:62.028281px;}
.h11{height:62.856000px;}
.h7{height:67.565039px;}
.h24{height:67.824844px;}
.h2c{height:72.360000px;}
.h2e{height:72.396000px;}
.h1b{height:73.722656px;}
.h1f{height:73.870102px;}
.h6{height:74.039062px;}
.h19{height:110.583984px;}
.h1e{height:123.116836px;}
.h2{height:162.390000px;}
.hc{height:436.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:6.120000px;}
.w24{width:6.300000px;}
.w25{width:9.360000px;}
.w16{width:12.060000px;}
.w1f{width:14.580000px;}
.w19{width:14.760000px;}
.w1b{width:14.940000px;}
.w26{width:18.180000px;}
.w1a{width:20.520000px;}
.w3{width:21.060000px;}
.w28{width:22.500000px;}
.w2a{width:28.260000px;}
.w2b{width:28.440000px;}
.w40{width:31.860000px;}
.w17{width:36.000000px;}
.w29{width:39.240000px;}
.w27{width:39.420000px;}
.w41{width:39.600000px;}
.w21{width:41.940000px;}
.w1d{width:50.760000px;}
.w22{width:60.480000px;}
.w23{width:65.340000px;}
.w35{width:68.040000px;}
.w38{width:68.076000px;}
.w37{width:68.220000px;}
.w3f{width:68.796000px;}
.w3b{width:69.156000px;}
.w9{width:69.480000px;}
.we{width:69.840000px;}
.wf{width:69.876000px;}
.wd{width:71.640000px;}
.w3c{width:71.820000px;}
.w1e{width:72.360000px;}
.wc{width:74.016000px;}
.w2d{width:79.920000px;}
.wb{width:86.760000px;}
.w31{width:87.696000px;}
.w30{width:101.700000px;}
.w11{width:106.920000px;}
.wa{width:107.316000px;}
.w1c{width:110.520000px;}
.w10{width:121.500000px;}
.w36{width:125.316000px;}
.w15{width:127.440000px;}
.w12{width:127.476000px;}
.w14{width:134.316000px;}
.w33{width:137.340000px;}
.w4{width:144.576000px;}
.w8{width:153.390000px;}
.w13{width:154.650000px;}
.w2e{width:156.810000px;}
.w42{width:170.100000px;}
.w34{width:170.850000px;}
.w20{width:174.240000px;}
.w32{width:194.610000px;}
.w2c{width:195.840000px;}
.w3d{width:210.630000px;}
.w39{width:210.990000px;}
.w3e{width:282.270000px;}
.w3a{width:282.630000px;}
.w2f{width:333.075000px;}
.w2{width:619.530000px;}
.w7{width:626.730000px;}
.w6{width:780.120000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:2.700000px;}
.x3f{left:3.780000px;}
.x7{left:7.020000px;}
.x2{left:8.100000px;}
.x14{left:9.360000px;}
.x16{left:10.620000px;}
.xe{left:11.700000px;}
.x11{left:16.740000px;}
.x9{left:52.919987px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.x4b{left:80.999987px;}
.xb{left:108.756000px;}
.x17{left:119.736000px;}
.x3b{left:129.456000px;}
.x5{left:136.290000px;}
.x2e{left:145.800000px;}
.x2d{left:152.280000px;}
.x1c{left:158.940000px;}
.xc{left:178.950000px;}
.x36{left:190.110000px;}
.x42{left:198.180000px;}
.x18{left:227.370000px;}
.x2f{left:236.880000px;}
.x21{left:242.640000px;}
.x22{left:274.860000px;}
.x38{left:278.895000px;}
.x43{left:284.760000px;}
.xd{left:287.175000px;}
.x30{left:313.560000px;}
.x20{left:328.320000px;}
.x3c{left:340.095000px;}
.x1f{left:343.440000px;}
.x44{left:345.420000px;}
.x37{left:348.195000px;}
.x19{left:355.575000px;}
.x23{left:359.460000px;}
.xf{left:374.655000px;}
.x31{left:377.820000px;}
.x34{left:379.800000px;}
.x4a{left:396.900000px;}
.x45{left:406.440000px;}
.x1d{left:431.280000px;}
.x10{left:449.385000px;}
.x32{left:452.520000px;}
.x46{left:467.460000px;}
.xa{left:472.424987px;}
.x40{left:473.504987px;}
.x39{left:474.585000px;}
.x4c{left:500.504987px;}
.x1a{left:510.945000px;}
.x2a{left:514.440000px;}
.x12{left:521.745000px;}
.x47{left:528.480000px;}
.x3a{left:543.885000px;}
.x48{left:589.500000px;}
.x13{left:592.305000px;}
.x33{left:593.460000px;}
.x29{left:597.600000px;}
.x26{left:605.160000px;}
.x28{left:613.080000px;}
.x27{left:620.460000px;}
.x3d{left:622.725000px;}
.x2b{left:637.560000px;}
.x1b{left:645.990000px;}
.x49{left:650.520000px;}
.x24{left:656.100000px;}
.x15{left:662.910000px;}
.x25{left:671.400000px;}
.x3{left:673.530000px;}
.x8{left:683.250000px;}
.x3e{left:691.890000px;}
.x4{left:694.590000px;}
.x1e{left:703.620000px;}
.x41{left:756.000000px;}
.x2c{left:782.280000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.315733pt;}
.lse{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.315520pt;}
.lsa{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.408960pt;}
.lsc{letter-spacing:0.475520pt;}
.ls5{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:3.360000pt;}
.ls18{letter-spacing:3.520000pt;}
.ls8{letter-spacing:13.600000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls1{letter-spacing:15.360000pt;}
.ls15{letter-spacing:40.912640pt;}
.wsd{word-spacing:-48.000000pt;}
.wse{word-spacing:-47.984000pt;}
.wsb{word-spacing:-24.154880pt;}
.ws9{word-spacing:-21.696000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.492928pt;}
.wsa{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.870933pt;}
.ws8{word-spacing:-11.953280pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._34{margin-left:-11.514453pt;}
._7{margin-left:-7.660800pt;}
._15{margin-left:-6.766720pt;}
._e{margin-left:-5.794773pt;}
._c{margin-left:-4.889600pt;}
._d{margin-left:-3.941973pt;}
._b{margin-left:-2.624853pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._10{width:2.577920pt;}
._8{width:4.227200pt;}
._14{width:5.486507pt;}
._1b{width:6.640000pt;}
._13{width:7.958187pt;}
._a{width:9.462187pt;}
._9{width:10.554880pt;}
._5{width:11.520000pt;}
._19{width:14.661120pt;}
._1a{width:16.130133pt;}
._11{width:17.466667pt;}
._12{width:18.611627pt;}
._1d{width:20.090453pt;}
._20{width:21.717120pt;}
._28{width:23.000960pt;}
._2a{width:24.488320pt;}
._29{width:25.444480pt;}
._3b{width:26.389973pt;}
._21{width:27.409920pt;}
._1c{width:28.684800pt;}
._1f{width:30.012800pt;}
._2d{width:31.079893pt;}
._32{width:32.004907pt;}
._26{width:33.806293pt;}
._27{width:34.708053pt;}
._24{width:36.382080pt;}
._23{width:37.502720pt;}
._1e{width:38.850347pt;}
._35{width:39.883307pt;}
._25{width:41.100587pt;}
._22{width:42.322347pt;}
._2b{width:44.239147pt;}
._2c{width:45.374293pt;}
._3d{width:48.115627pt;}
._3c{width:49.625173pt;}
._4{width:50.848000pt;}
._2f{width:51.865173pt;}
._2e{width:52.759253pt;}
._3f{width:54.522667pt;}
._39{width:71.186133pt;}
._38{width:75.956267pt;}
._3{width:77.440000pt;}
._18{width:98.474667pt;}
._3a{width:140.917547pt;}
._16{width:144.740480pt;}
._41{width:148.295893pt;}
._40{width:151.000747pt;}
._42{width:168.619733pt;}
._37{width:170.010453pt;}
._36{width:171.099520pt;}
._6{width:177.258667pt;}
._3e{width:180.395520pt;}
._2{width:207.354453pt;}
._17{width:239.411840pt;}
._f{width:909.584853pt;}
._30{width:1951.130453pt;}
._33{width:2111.130453pt;}
._31{width:2351.511893pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y97{bottom:4.413333pt;}
.yab{bottom:4.506667pt;}
.yad{bottom:4.706667pt;}
.y10d{bottom:4.773333pt;}
.yb1{bottom:4.866667pt;}
.y10f{bottom:4.933333pt;}
.yaf{bottom:5.026667pt;}
.y114{bottom:5.093333pt;}
.y2b{bottom:5.120000pt;}
.yde{bottom:5.280000pt;}
.y99{bottom:5.573333pt;}
.y9b{bottom:5.733333pt;}
.yb8{bottom:5.826667pt;}
.y11b{bottom:5.893333pt;}
.yb4{bottom:5.986667pt;}
.y119{bottom:6.053333pt;}
.yb6{bottom:6.146667pt;}
.y9f{bottom:6.533333pt;}
.y90{bottom:6.560000pt;}
.ya8{bottom:6.693333pt;}
.y14{bottom:6.720000pt;}
.y81{bottom:7.360000pt;}
.y8e{bottom:7.520000pt;}
.y85{bottom:8.160000pt;}
.ybe{bottom:9.506667pt;}
.y9d{bottom:9.573333pt;}
.yd7{bottom:10.560000pt;}
.ya5{bottom:10.693333pt;}
.yc0{bottom:11.520000pt;}
.y6{bottom:12.320000pt;}
.yd8{bottom:16.000000pt;}
.y2a{bottom:22.720000pt;}
.y80{bottom:24.960000pt;}
.y8d{bottom:25.120000pt;}
.y84{bottom:25.786667pt;}
.ydb{bottom:28.480000pt;}
.y5{bottom:40.000000pt;}
.y29{bottom:40.480000pt;}
.y83{bottom:43.386667pt;}
.y9{bottom:53.760000pt;}
.y28{bottom:58.120000pt;}
.y4{bottom:67.840000pt;}
.y27{bottom:75.720000pt;}
.y78{bottom:78.720000pt;}
.y38{bottom:84.480000pt;}
.y95{bottom:87.520000pt;}
.y10a{bottom:88.960000pt;}
.y40{bottom:90.400000pt;}
.y26{bottom:93.320000pt;}
.y3{bottom:95.706667pt;}
.y77{bottom:96.320000pt;}
.y37{bottom:101.600000pt;}
.y94{bottom:105.120000pt;}
.y109{bottom:106.560000pt;}
.y3f{bottom:108.160000pt;}
.y25{bottom:110.920000pt;}
.y76{bottom:113.920000pt;}
.y36{bottom:118.560000pt;}
.y93{bottom:122.720000pt;}
.y108{bottom:124.320000pt;}
.y2{bottom:124.826667pt;}
.y3e{bottom:125.760000pt;}
.y24{bottom:128.680000pt;}
.y75{bottom:131.520000pt;}
.y35{bottom:135.706667pt;}
.y92{bottom:140.346667pt;}
.y107{bottom:141.946667pt;}
.y3d{bottom:143.386667pt;}
.y23{bottom:146.280000pt;}
.y74{bottom:149.146667pt;}
.y34{bottom:152.826667pt;}
.y91{bottom:153.626667pt;}
.y106{bottom:159.546667pt;}
.y3c{bottom:160.986667pt;}
.y22{bottom:163.880000pt;}
.y73{bottom:166.906667pt;}
.y33{bottom:169.786667pt;}
.y105{bottom:177.146667pt;}
.y8f{bottom:177.626667pt;}
.y3b{bottom:178.586667pt;}
.y21{bottom:181.480000pt;}
.y72{bottom:184.506667pt;}
.y32{bottom:186.906667pt;}
.y104{bottom:194.746667pt;}
.y3a{bottom:196.346667pt;}
.y20{bottom:199.080000pt;}
.y8c{bottom:201.466667pt;}
.y71{bottom:202.106667pt;}
.y31{bottom:211.866667pt;}
.y103{bottom:212.506667pt;}
.y39{bottom:213.946667pt;}
.y1f{bottom:216.840000pt;}
.y70{bottom:219.706667pt;}
.y102{bottom:230.106667pt;}
.y30{bottom:231.546667pt;}
.y1e{bottom:234.440000pt;}
.y6f{bottom:237.306667pt;}
.y101{bottom:247.706667pt;}
.y8b{bottom:248.986667pt;}
.y2f{bottom:249.146667pt;}
.y1d{bottom:252.040000pt;}
.y6e{bottom:255.066667pt;}
.ye3{bottom:261.466667pt;}
.y100{bottom:265.306667pt;}
.y2e{bottom:266.746667pt;}
.y1c{bottom:269.666667pt;}
.y6d{bottom:272.666667pt;}
.ye2{bottom:274.586667pt;}
.yff{bottom:282.906667pt;}
.y8a{bottom:284.346667pt;}
.y2d{bottom:284.506667pt;}
.y1b{bottom:287.266667pt;}
.y6c{bottom:290.266667pt;}
.ydf{bottom:297.786667pt;}
.yfe{bottom:300.666667pt;}
.y89{bottom:301.946667pt;}
.y2c{bottom:302.106667pt;}
.y1a{bottom:305.026667pt;}
.y6b{bottom:307.866667pt;}
.yaa{bottom:311.840000pt;}
.y15{bottom:315.226667pt;}
.y88{bottom:316.666667pt;}
.yfd{bottom:318.266667pt;}
.ye1{bottom:321.146667pt;}
.y19{bottom:322.626667pt;}
.y6a{bottom:325.466667pt;}
.yfc{bottom:335.866667pt;}
.y18{bottom:340.226667pt;}
.y69{bottom:343.226667pt;}
.ye0{bottom:344.506667pt;}
.yfb{bottom:353.466667pt;}
.y17{bottom:357.826667pt;}
.y68{bottom:360.866667pt;}
.yda{bottom:367.746667pt;}
.yfa{bottom:371.106667pt;}
.y16{bottom:375.426667pt;}
.y67{bottom:378.466667pt;}
.yf9{bottom:388.866667pt;}
.ydd{bottom:391.106667pt;}
.y66{bottom:396.066667pt;}
.yac{bottom:405.760000pt;}
.yf8{bottom:406.466667pt;}
.y65{bottom:413.666667pt;}
.ydc{bottom:414.466667pt;}
.yae{bottom:418.080000pt;}
.ybc{bottom:421.600000pt;}
.ybb{bottom:422.240000pt;}
.yf7{bottom:424.066667pt;}
.yba{bottom:424.480000pt;}
.yb9{bottom:425.120000pt;}
.yb0{bottom:430.880000pt;}
.y64{bottom:431.426667pt;}
.yb7{bottom:436.000000pt;}
.yd9{bottom:437.666667pt;}
.yb5{bottom:438.400000pt;}
.yf6{bottom:441.666667pt;}
.yb2{bottom:443.520000pt;}
.yb3{bottom:446.080000pt;}
.y63{bottom:449.026667pt;}
.yf5{bottom:459.266667pt;}
.yd6{bottom:461.026667pt;}
.y62{bottom:466.626667pt;}
.yf4{bottom:477.026667pt;}
.ybd{bottom:478.880000pt;}
.y61{bottom:484.226667pt;}
.yf3{bottom:494.626667pt;}
.yd5{bottom:500.226667pt;}
.y60{bottom:501.826667pt;}
.yf2{bottom:512.226667pt;}
.yd4{bottom:517.986667pt;}
.y5f{bottom:519.426667pt;}
.yf1{bottom:529.826667pt;}
.y87{bottom:531.426667pt;}
.yd3{bottom:535.586667pt;}
.y5e{bottom:537.186667pt;}
.yf0{bottom:547.426667pt;}
.y86{bottom:549.026667pt;}
.yd2{bottom:553.186667pt;}
.y5d{bottom:554.786667pt;}
.y82{bottom:562.146667pt;}
.yef{bottom:565.186667pt;}
.yd1{bottom:570.786667pt;}
.y5c{bottom:572.386667pt;}
.yee{bottom:582.813333pt;}
.yd0{bottom:588.413333pt;}
.y5b{bottom:590.013333pt;}
.yed{bottom:600.413333pt;}
.ycf{bottom:606.173333pt;}
.y5a{bottom:607.613333pt;}
.yec{bottom:618.013333pt;}
.y7f{bottom:622.973333pt;}
.yce{bottom:623.773333pt;}
.y59{bottom:625.373333pt;}
.yeb{bottom:635.613333pt;}
.ycd{bottom:637.213333pt;}
.y58{bottom:642.973333pt;}
.yea{bottom:653.373333pt;}
.ycc{bottom:658.813333pt;}
.y57{bottom:660.573333pt;}
.y7e{bottom:670.333333pt;}
.ye9{bottom:670.973333pt;}
.y56{bottom:678.173333pt;}
.ycb{bottom:680.253333pt;}
.y7d{bottom:688.093333pt;}
.ye8{bottom:688.573333pt;}
.y55{bottom:695.773333pt;}
.yca{bottom:701.853333pt;}
.y13{bottom:703.933333pt;}
.y7c{bottom:705.693333pt;}
.ye7{bottom:706.173333pt;}
.y54{bottom:713.533333pt;}
.y7b{bottom:723.293333pt;}
.ye6{bottom:723.773333pt;}
.y53{bottom:731.133333pt;}
.y12{bottom:732.893333pt;}
.y7a{bottom:740.893333pt;}
.ye5{bottom:741.533333pt;}
.yc9{bottom:744.893333pt;}
.y52{bottom:748.733333pt;}
.y96{bottom:750.880000pt;}
.y10b{bottom:751.520000pt;}
.y11{bottom:755.133333pt;}
.y79{bottom:755.613333pt;}
.ye4{bottom:756.093333pt;}
.y51{bottom:766.333333pt;}
.y10{bottom:768.093333pt;}
.y50{bottom:783.933333pt;}
.yc8{bottom:787.933333pt;}
.yf{bottom:790.333333pt;}
.ya9{bottom:791.520000pt;}
.y4f{bottom:801.733333pt;}
.ye{bottom:803.973333pt;}
.ya0{bottom:808.800000pt;}
.yc7{bottom:809.573333pt;}
.ya2{bottom:816.960000pt;}
.ya7{bottom:818.880000pt;}
.y4e{bottom:819.333333pt;}
.yd{bottom:823.333333pt;}
.yc6{bottom:831.013333pt;}
.y9e{bottom:836.160000pt;}
.y4d{bottom:836.933333pt;}
.ya1{bottom:837.920000pt;}
.y98{bottom:841.920000pt;}
.yc{bottom:842.213333pt;}
.ya6{bottom:846.400000pt;}
.y9a{bottom:848.640000pt;}
.yc5{bottom:852.613333pt;}
.y4c{bottom:854.533333pt;}
.ya3{bottom:855.200000pt;}
.y10c{bottom:860.480000pt;}
.yb{bottom:863.013333pt;}
.y4b{bottom:872.133333pt;}
.y10e{bottom:872.320000pt;}
.yc4{bottom:874.053333pt;}
.y11a{bottom:882.080000pt;}
.y118{bottom:883.040000pt;}
.y110{bottom:884.320000pt;}
.y4a{bottom:889.893333pt;}
.ya{bottom:891.333333pt;}
.yc3{bottom:895.653333pt;}
.y111{bottom:896.480000pt;}
.ya4{bottom:899.680000pt;}
.y120{bottom:900.000000pt;}
.y11d{bottom:901.280000pt;}
.y11e{bottom:905.440000pt;}
.y49{bottom:907.493333pt;}
.y112{bottom:908.480000pt;}
.y9c{bottom:913.120000pt;}
.y8{bottom:914.693333pt;}
.yc2{bottom:917.253333pt;}
.y113{bottom:920.320000pt;}
.y11f{bottom:920.800000pt;}
.y48{bottom:925.093333pt;}
.y1{bottom:930.213333pt;}
.y115{bottom:932.640000pt;}
.yc1{bottom:938.693333pt;}
.y47{bottom:942.693333pt;}
.y116{bottom:944.480000pt;}
.y117{bottom:956.480000pt;}
.y11c{bottom:957.120000pt;}
.y46{bottom:960.293333pt;}
.y45{bottom:978.053333pt;}
.y121{bottom:978.400000pt;}
.ybf{bottom:981.733333pt;}
.y44{bottom:995.653333pt;}
.y43{bottom:1013.253333pt;}
.y42{bottom:1039.840000pt;}
.y41{bottom:1060.160000pt;}
.h21{height:16.320000pt;}
.h22{height:16.480000pt;}
.h2b{height:17.600000pt;}
.h2f{height:17.632000pt;}
.h2d{height:17.760000pt;}
.h15{height:18.240000pt;}
.h17{height:18.400000pt;}
.h13{height:19.040000pt;}
.h28{height:19.200000pt;}
.h29{height:19.232000pt;}
.h14{height:19.360000pt;}
.h20{height:19.520000pt;}
.h26{height:19.840000pt;}
.h23{height:20.000000pt;}
.h25{height:20.160000pt;}
.h1c{height:21.760000pt;}
.h1a{height:21.920000pt;}
.hb{height:23.200000pt;}
.h27{height:24.000000pt;}
.ha{height:24.991875pt;}
.h2a{height:28.480000pt;}
.h18{height:32.640000pt;}
.h1d{height:36.320000pt;}
.h10{height:37.440000pt;}
.hd{height:37.479688pt;}
.h12{height:37.600000pt;}
.h8{height:38.413438pt;}
.h30{height:38.672812pt;}
.he{height:43.108125pt;}
.h4{height:43.355000pt;}
.h31{height:43.551875pt;}
.hf{height:45.961250pt;}
.h5{height:46.281250pt;}
.h9{height:47.310625pt;}
.h16{height:54.390938pt;}
.h3{height:55.136250pt;}
.h11{height:55.872000pt;}
.h7{height:60.057813pt;}
.h24{height:60.288750pt;}
.h2c{height:64.320000pt;}
.h2e{height:64.352000pt;}
.h1b{height:65.531250pt;}
.h1f{height:65.662312pt;}
.h6{height:65.812500pt;}
.h19{height:98.296875pt;}
.h1e{height:109.437187pt;}
.h2{height:144.346667pt;}
.hc{height:387.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:5.440000pt;}
.w24{width:5.600000pt;}
.w25{width:8.320000pt;}
.w16{width:10.720000pt;}
.w1f{width:12.960000pt;}
.w19{width:13.120000pt;}
.w1b{width:13.280000pt;}
.w26{width:16.160000pt;}
.w1a{width:18.240000pt;}
.w3{width:18.720000pt;}
.w28{width:20.000000pt;}
.w2a{width:25.120000pt;}
.w2b{width:25.280000pt;}
.w40{width:28.320000pt;}
.w17{width:32.000000pt;}
.w29{width:34.880000pt;}
.w27{width:35.040000pt;}
.w41{width:35.200000pt;}
.w21{width:37.280000pt;}
.w1d{width:45.120000pt;}
.w22{width:53.760000pt;}
.w23{width:58.080000pt;}
.w35{width:60.480000pt;}
.w38{width:60.512000pt;}
.w37{width:60.640000pt;}
.w3f{width:61.152000pt;}
.w3b{width:61.472000pt;}
.w9{width:61.760000pt;}
.we{width:62.080000pt;}
.wf{width:62.112000pt;}
.wd{width:63.680000pt;}
.w3c{width:63.840000pt;}
.w1e{width:64.320000pt;}
.wc{width:65.792000pt;}
.w2d{width:71.040000pt;}
.wb{width:77.120000pt;}
.w31{width:77.952000pt;}
.w30{width:90.400000pt;}
.w11{width:95.040000pt;}
.wa{width:95.392000pt;}
.w1c{width:98.240000pt;}
.w10{width:108.000000pt;}
.w36{width:111.392000pt;}
.w15{width:113.280000pt;}
.w12{width:113.312000pt;}
.w14{width:119.392000pt;}
.w33{width:122.080000pt;}
.w4{width:128.512000pt;}
.w8{width:136.346667pt;}
.w13{width:137.466667pt;}
.w2e{width:139.386667pt;}
.w42{width:151.200000pt;}
.w34{width:151.866667pt;}
.w20{width:154.880000pt;}
.w32{width:172.986667pt;}
.w2c{width:174.080000pt;}
.w3d{width:187.226667pt;}
.w39{width:187.546667pt;}
.w3e{width:250.906667pt;}
.w3a{width:251.226667pt;}
.w2f{width:296.066667pt;}
.w2{width:550.693333pt;}
.w7{width:557.093333pt;}
.w6{width:693.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:2.400000pt;}
.x3f{left:3.360000pt;}
.x7{left:6.240000pt;}
.x2{left:7.200000pt;}
.x14{left:8.320000pt;}
.x16{left:9.440000pt;}
.xe{left:10.400000pt;}
.x11{left:14.880000pt;}
.x9{left:47.039988pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.x4b{left:71.999988pt;}
.xb{left:96.672000pt;}
.x17{left:106.432000pt;}
.x3b{left:115.072000pt;}
.x5{left:121.146667pt;}
.x2e{left:129.600000pt;}
.x2d{left:135.360000pt;}
.x1c{left:141.280000pt;}
.xc{left:159.066667pt;}
.x36{left:168.986667pt;}
.x42{left:176.160000pt;}
.x18{left:202.106667pt;}
.x2f{left:210.560000pt;}
.x21{left:215.680000pt;}
.x22{left:244.320000pt;}
.x38{left:247.906667pt;}
.x43{left:253.120000pt;}
.xd{left:255.266667pt;}
.x30{left:278.720000pt;}
.x20{left:291.840000pt;}
.x3c{left:302.306667pt;}
.x1f{left:305.280000pt;}
.x44{left:307.040000pt;}
.x37{left:309.506667pt;}
.x19{left:316.066667pt;}
.x23{left:319.520000pt;}
.xf{left:333.026667pt;}
.x31{left:335.840000pt;}
.x34{left:337.600000pt;}
.x4a{left:352.800000pt;}
.x45{left:361.280000pt;}
.x1d{left:383.360000pt;}
.x10{left:399.453333pt;}
.x32{left:402.240000pt;}
.x46{left:415.520000pt;}
.xa{left:419.933322pt;}
.x40{left:420.893322pt;}
.x39{left:421.853333pt;}
.x4c{left:444.893322pt;}
.x1a{left:454.173333pt;}
.x2a{left:457.280000pt;}
.x12{left:463.773333pt;}
.x47{left:469.760000pt;}
.x3a{left:483.453333pt;}
.x48{left:524.000000pt;}
.x13{left:526.493333pt;}
.x33{left:527.520000pt;}
.x29{left:531.200000pt;}
.x26{left:537.920000pt;}
.x28{left:544.960000pt;}
.x27{left:551.520000pt;}
.x3d{left:553.533333pt;}
.x2b{left:566.720000pt;}
.x1b{left:574.213333pt;}
.x49{left:578.240000pt;}
.x24{left:583.200000pt;}
.x15{left:589.253333pt;}
.x25{left:596.800000pt;}
.x3{left:598.693333pt;}
.x8{left:607.333333pt;}
.x3e{left:615.013333pt;}
.x4{left:617.413333pt;}
.x1e{left:625.440000pt;}
.x41{left:672.000000pt;}
.x2c{left:695.360000pt;}
}




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