
    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_0545fa432fd6219e1524eb02.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30f92cb4e83893f559a50fb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_a7f64fc4faaceccc347653f4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dbaff7e027a592d0fe10b4c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_8e390ea1a7a1706a9007baae.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_45ac118769655e1921832cc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b2ce1d000c60c90351649a9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a3418e997e4019468da59342.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.181200px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.033840px;}
.ls6{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.223800px;}
.ls3{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.900000px;}
.ls16{letter-spacing:16.506720px;}
.ls11{letter-spacing:21.960000px;}
.ls14{letter-spacing:38.106720px;}
.ls10{letter-spacing:43.380000px;}
.lsc{letter-spacing:46.026720px;}
.lse{letter-spacing:46.170720px;}
.ls4{letter-spacing:859.260000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-27.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws0{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.wse{word-spacing:-11.878800px;}
.ws6{word-spacing:-10.440000px;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-6.372000px;}
._3{margin-left:-1.242960px;}
._0{width:1.048320px;}
._9{width:2.694000px;}
._8{width:3.944160px;}
._5{width:5.704560px;}
._6{width:6.817680px;}
._d{width:8.366400px;}
._c{width:9.681120px;}
._7{width:10.903680px;}
._1c{width:12.039120px;}
._19{width:13.386240px;}
._14{width:14.629920px;}
._f{width:16.029360px;}
._e{width:17.341920px;}
._29{width:18.354960px;}
._4{width:19.362240px;}
._b{width:21.214800px;}
._a{width:22.616640px;}
._1e{width:23.931360px;}
._1d{width:25.126560px;}
._20{width:26.174880px;}
._1a{width:28.293840px;}
._18{width:30.119040px;}
._1f{width:31.494000px;}
._26{width:32.830080px;}
._1b{width:33.962640px;}
._11{width:34.974000px;}
._16{width:36.480960px;}
._17{width:37.589040px;}
._21{width:39.087120px;}
._27{width:40.484880px;}
._28{width:41.804640px;}
._23{width:43.086960px;}
._15{width:44.815680px;}
._12{width:46.440000px;}
._13{width:47.574000px;}
._22{width:49.150080px;}
._25{width:50.166000px;}
._2b{width:54.285360px;}
._2a{width:55.314480px;}
._24{width:61.190640px;}
._2c{width:63.552240px;}
._1{width:303.471120px;}
._2{width:371.948880px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.360000px;}
.y132{bottom:1.440000px;}
.y7{bottom:2.520000px;}
.y3e{bottom:2.880000px;}
.y24{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y25{bottom:4.680000px;}
.y5{bottom:8.460000px;}
.y71{bottom:8.496000px;}
.yad{bottom:9.360000px;}
.yab{bottom:9.540000px;}
.yb7{bottom:9.585000px;}
.yb3{bottom:16.200000px;}
.y6{bottom:16.380000px;}
.y72{bottom:16.416000px;}
.yb8{bottom:16.425000px;}
.y12f{bottom:18.360000px;}
.y3d{bottom:18.540000px;}
.y35{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yb4{bottom:23.220000px;}
.y46{bottom:28.980000px;}
.yb5{bottom:30.060000px;}
.yf9{bottom:30.240000px;}
.ye{bottom:33.120000px;}
.y3c{bottom:34.020000px;}
.y73{bottom:35.640000px;}
.yfa{bottom:37.080000px;}
.y34{bottom:37.800000px;}
.yf8{bottom:43.920000px;}
.y45{bottom:44.460000px;}
.y8{bottom:49.140000px;}
.y3b{bottom:49.500000px;}
.y12e{bottom:49.530000px;}
.yd{bottom:51.480000px;}
.y33{bottom:54.900000px;}
.y135{bottom:57.600000px;}
.y70{bottom:59.940000px;}
.y44{bottom:60.120000px;}
.y3a{bottom:64.980000px;}
.yc{bottom:65.700000px;}
.y134{bottom:71.460000px;}
.y32{bottom:72.180000px;}
.y4{bottom:73.476000px;}
.y43{bottom:75.600000px;}
.y39{bottom:80.640000px;}
.y133{bottom:85.320000px;}
.y31{bottom:89.460000px;}
.y42{bottom:91.080000px;}
.y38{bottom:96.150000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y41{bottom:106.560000px;}
.y30{bottom:106.740000px;}
.y37{bottom:111.630000px;}
.y108{bottom:111.816000px;}
.y12b{bottom:120.636000px;}
.y40{bottom:122.220000px;}
.ya9{bottom:123.876000px;}
.y2f{bottom:124.020000px;}
.y120{bottom:126.216000px;}
.ydb{bottom:127.296000px;}
.y107{bottom:129.096000px;}
.yf3{bottom:129.456000px;}
.ya{bottom:136.110000px;}
.yef{bottom:136.476000px;}
.y6f{bottom:137.016000px;}
.y51{bottom:137.556000px;}
.y12a{bottom:137.736000px;}
.ya8{bottom:141.156000px;}
.y2e{bottom:141.300000px;}
.y11f{bottom:143.316000px;}
.yda{bottom:144.396000px;}
.y106{bottom:146.376000px;}
.yf2{bottom:150.150000px;}
.yee{bottom:153.570000px;}
.y6e{bottom:154.110000px;}
.y129{bottom:155.010000px;}
.y50{bottom:156.450000px;}
.y2d{bottom:158.400000px;}
.ya7{bottom:158.430000px;}
.y105{bottom:160.230000px;}
.y11e{bottom:160.590000px;}
.yd9{bottom:161.670000px;}
.yed{bottom:170.850000px;}
.y6d{bottom:171.390000px;}
.y128{bottom:172.290000px;}
.y4f{bottom:173.550000px;}
.y2c{bottom:175.680000px;}
.ya6{bottom:175.710000px;}
.y11d{bottom:177.870000px;}
.yd8{bottom:178.950000px;}
.yec{bottom:188.130000px;}
.y6c{bottom:188.670000px;}
.y127{bottom:189.570000px;}
.y4e{bottom:190.830000px;}
.yf1{bottom:191.550000px;}
.y2b{bottom:192.960000px;}
.ya5{bottom:192.990000px;}
.y11c{bottom:195.150000px;}
.yd7{bottom:196.230000px;}
.yeb{bottom:205.410000px;}
.y6b{bottom:205.950000px;}
.y126{bottom:206.850000px;}
.y4d{bottom:208.110000px;}
.ya4{bottom:210.090000px;}
.y2a{bottom:210.240000px;}
.yf0{bottom:212.250000px;}
.y11b{bottom:212.430000px;}
.yd6{bottom:213.510000px;}
.yea{bottom:222.690000px;}
.y6a{bottom:223.230000px;}
.y125{bottom:224.130000px;}
.y4c{bottom:225.390000px;}
.ya3{bottom:227.370000px;}
.y29{bottom:227.520000px;}
.y11a{bottom:229.530000px;}
.yd5{bottom:230.790000px;}
.ye9{bottom:239.970000px;}
.y69{bottom:240.510000px;}
.y124{bottom:241.230000px;}
.y4b{bottom:242.670000px;}
.y28{bottom:244.650000px;}
.y119{bottom:246.810000px;}
.yd4{bottom:247.890000px;}
.ye8{bottom:257.070000px;}
.y68{bottom:257.610000px;}
.y123{bottom:258.510000px;}
.y4a{bottom:259.770000px;}
.y27{bottom:261.930000px;}
.y118{bottom:264.090000px;}
.yd3{bottom:265.170000px;}
.ye7{bottom:274.350000px;}
.y67{bottom:274.890000px;}
.y122{bottom:275.790000px;}
.y49{bottom:277.050000px;}
.ya2{bottom:279.210000px;}
.y117{bottom:281.370000px;}
.yd2{bottom:282.450000px;}
.y121{bottom:289.830000px;}
.ye6{bottom:291.630000px;}
.y66{bottom:292.170000px;}
.y48{bottom:294.330000px;}
.ya1{bottom:296.490000px;}
.y116{bottom:298.650000px;}
.yd1{bottom:299.730000px;}
.ye5{bottom:308.910000px;}
.y65{bottom:309.450000px;}
.y47{bottom:311.610000px;}
.ya0{bottom:313.590000px;}
.y115{bottom:315.930000px;}
.yd0{bottom:317.055000px;}
.ye4{bottom:326.235000px;}
.y26{bottom:326.415000px;}
.y64{bottom:326.775000px;}
.y9f{bottom:330.915000px;}
.y114{bottom:333.075000px;}
.ycf{bottom:334.335000px;}
.ye3{bottom:343.335000px;}
.y63{bottom:344.055000px;}
.y9e{bottom:348.195000px;}
.y113{bottom:350.355000px;}
.yce{bottom:351.435000px;}
.ye2{bottom:360.615000px;}
.y62{bottom:361.155000px;}
.y9d{bottom:365.475000px;}
.y112{bottom:367.635000px;}
.ycd{bottom:368.715000px;}
.ye1{bottom:377.895000px;}
.y61{bottom:378.435000px;}
.y9c{bottom:382.755000px;}
.y111{bottom:384.915000px;}
.ycc{bottom:385.995000px;}
.ye0{bottom:395.175000px;}
.y60{bottom:395.715000px;}
.y9b{bottom:399.855000px;}
.y110{bottom:402.195000px;}
.ycb{bottom:403.275000px;}
.y131{bottom:406.335000px;}
.ydf{bottom:412.455000px;}
.y5f{bottom:412.995000px;}
.y9a{bottom:417.135000px;}
.y10f{bottom:419.475000px;}
.yca{bottom:420.555000px;}
.yde{bottom:429.735000px;}
.y5e{bottom:430.275000px;}
.y99{bottom:434.415000px;}
.y10e{bottom:436.575000px;}
.yc9{bottom:437.655000px;}
.ydd{bottom:446.835000px;}
.y5d{bottom:447.375000px;}
.y98{bottom:451.695000px;}
.y10d{bottom:453.855000px;}
.yc8{bottom:454.935000px;}
.y3f{bottom:461.955000px;}
.ydc{bottom:464.115000px;}
.y5c{bottom:464.655000px;}
.y97{bottom:468.975000px;}
.y10c{bottom:471.135000px;}
.yc7{bottom:472.215000px;}
.y36{bottom:478.155000px;}
.y5b{bottom:481.935000px;}
.y96{bottom:486.255000px;}
.y10b{bottom:488.415000px;}
.yc6{bottom:489.495000px;}
.y5a{bottom:499.215000px;}
.y95{bottom:503.355000px;}
.y130{bottom:503.715000px;}
.y10a{bottom:505.695000px;}
.yc5{bottom:506.775000px;}
.y59{bottom:516.495000px;}
.y109{bottom:519.555000px;}
.y12d{bottom:519.915000px;}
.y94{bottom:520.635000px;}
.yc4{bottom:524.055000px;}
.y93{bottom:537.915000px;}
.yc3{bottom:541.155000px;}
.y92{bottom:555.195000px;}
.yc2{bottom:558.435000px;}
.y91{bottom:572.505000px;}
.yc1{bottom:575.745000px;}
.y12c{bottom:582.765000px;}
.y90{bottom:589.785000px;}
.yc0{bottom:593.025000px;}
.y23{bottom:603.105000px;}
.y8f{bottom:606.885000px;}
.ybf{bottom:610.305000px;}
.y8e{bottom:624.165000px;}
.ybe{bottom:627.585000px;}
.y22{bottom:634.065000px;}
.y20{bottom:636.945000px;}
.y8d{bottom:641.445000px;}
.ybd{bottom:642.345000px;}
.y1f{bottom:642.525000px;}
.y8c{bottom:658.725000px;}
.y1e{bottom:659.805000px;}
.y8b{bottom:676.005000px;}
.y1d{bottom:679.785000px;}
.ybc{bottom:684.465000px;}
.y8a{bottom:693.285000px;}
.y89{bottom:710.385000px;}
.y1c{bottom:714.525000px;}
.ybb{bottom:726.585000px;}
.y88{bottom:727.665000px;}
.y1b{bottom:733.425000px;}
.y104{bottom:737.385000px;}
.y87{bottom:744.945000px;}
.y1a{bottom:746.565000px;}
.y103{bottom:752.145000px;}
.yba{bottom:754.845000px;}
.y86{bottom:762.225000px;}
.y102{bottom:766.725000px;}
.y19{bottom:771.405000px;}
.y85{bottom:779.505000px;}
.y101{bottom:781.305000px;}
.yb9{bottom:783.285000px;}
.y18{bottom:784.545000px;}
.y100{bottom:795.885000px;}
.y84{bottom:796.605000px;}
.y17{bottom:805.605000px;}
.yb6{bottom:811.545000px;}
.yff{bottom:813.705000px;}
.y83{bottom:813.885000px;}
.yfe{bottom:830.850000px;}
.y82{bottom:831.210000px;}
.y16{bottom:836.790000px;}
.yb2{bottom:840.030000px;}
.yfd{bottom:848.130000px;}
.y81{bottom:848.490000px;}
.yfc{bottom:862.890000px;}
.y80{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.yb1{bottom:882.150000px;}
.y7f{bottom:883.050000px;}
.y14{bottom:898.890000px;}
.y7e{bottom:900.150000px;}
.yb0{bottom:910.410000px;}
.y7d{bottom:917.430000px;}
.yfb{bottom:918.870000px;}
.y13{bottom:927.330000px;}
.y7c{bottom:934.710000px;}
.yaf{bottom:938.850000px;}
.y7b{bottom:951.990000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.yf7{bottom:960.990000px;}
.yae{bottom:967.110000px;}
.y7a{bottom:969.270000px;}
.y58{bottom:981.510000px;}
.y79{bottom:986.550000px;}
.yac{bottom:995.550000px;}
.y57{bottom:998.790000px;}
.y78{bottom:1003.650000px;}
.y56{bottom:1016.070000px;}
.yf6{bottom:1016.970000px;}
.y77{bottom:1020.930000px;}
.yaa{bottom:1023.810000px;}
.y55{bottom:1033.350000px;}
.y76{bottom:1038.210000px;}
.yf5{bottom:1049.370000px;}
.y54{bottom:1050.450000px;}
.y75{bottom:1055.490000px;}
.y53{bottom:1067.730000px;}
.yf4{bottom:1070.070000px;}
.y74{bottom:1072.800000px;}
.y52{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h15{height:1.620000px;}
.h16{height:4.021875px;}
.hf{height:4.064063px;}
.h17{height:8.636133px;}
.h28{height:13.680000px;}
.h29{height:13.860000px;}
.h1d{height:15.480000px;}
.h18{height:17.280000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h4{height:27.540000px;}
.h21{height:27.576000px;}
.h23{height:27.720000px;}
.h26{height:27.756000px;}
.h12{height:29.158594px;}
.h6{height:33.683203px;}
.h24{height:34.036523px;}
.h1f{height:37.705078px;}
.h19{height:38.100586px;}
.h7{height:39.336328px;}
.h22{height:39.480328px;}
.h1c{height:41.343750px;}
.h25{height:41.400000px;}
.h5{height:41.726953px;}
.h3{height:42.164648px;}
.h20{height:43.506914px;}
.h2{height:45.024258px;}
.h2b{height:45.461953px;}
.h2a{height:45.753750px;}
.h13{height:46.251562px;}
.h1{height:50.800781px;}
.h11{height:53.224453px;}
.h27{height:55.260000px;}
.h2c{height:62.136000px;}
.h8{height:65.884219px;}
.hd{height:72.147305px;}
.h14{height:75.410156px;}
.h10{height:76.201172px;}
.hb{height:92.965430px;}
.h2d{height:96.480000px;}
.he{height:118.365820px;}
.h1b{height:124.236000px;}
.h1e{height:134.820000px;}
.h9{height:143.136000px;}
.h1a{height:275.970000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w10{width:49.356000px;}
.wa{width:49.896000px;}
.w16{width:77.400000px;}
.w1d{width:81.720000px;}
.w13{width:84.060000px;}
.w17{width:93.096000px;}
.w15{width:99.576000px;}
.wc{width:102.816000px;}
.w12{width:114.696000px;}
.we{width:133.380000px;}
.w1b{width:133.776000px;}
.w14{width:135.756000px;}
.wb{width:137.880000px;}
.w11{width:156.060000px;}
.wd{width:159.870000px;}
.w5{width:165.960000px;}
.w18{width:181.830000px;}
.w19{width:203.070000px;}
.w8{width:228.495000px;}
.wf{width:244.875000px;}
.w1a{width:294.735000px;}
.w1e{width:318.315000px;}
.w1c{width:400.755000px;}
.w7{width:592.485000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x16{left:3.240000px;}
.x4{left:4.320000px;}
.x1d{left:6.839986px;}
.x17{left:8.100000px;}
.x4b{left:9.180000px;}
.x3e{left:10.260000px;}
.x36{left:11.520000px;}
.x32{left:13.140000px;}
.x38{left:14.580000px;}
.x43{left:15.660000px;}
.x37{left:16.740000px;}
.x27{left:18.900000px;}
.x2e{left:20.160000px;}
.x2d{left:21.960000px;}
.x25{left:23.220000px;}
.x31{left:25.020000px;}
.x3b{left:26.280000px;}
.x2f{left:27.720000px;}
.x39{left:28.980000px;}
.x28{left:30.960000px;}
.x2a{left:32.400000px;}
.x44{left:33.660000px;}
.x3f{left:34.920000px;}
.x45{left:37.080000px;}
.x34{left:39.060000px;}
.x3c{left:40.185000px;}
.x2c{left:41.445000px;}
.x3d{left:42.525000px;}
.x1b{left:43.605000px;}
.x6{left:45.540000px;}
.x18{left:46.800000px;}
.x42{left:49.005000px;}
.x1e{left:52.200000px;}
.x1{left:53.999986px;}
.x30{left:56.160000px;}
.x41{left:57.465000px;}
.x35{left:58.860000px;}
.x15{left:59.939986px;}
.x4e{left:62.496000px;}
.x1a{left:65.025000px;}
.xf{left:66.419986px;}
.x50{left:68.805000px;}
.xa{left:70.416000px;}
.x57{left:72.765000px;}
.x55{left:74.925000px;}
.x54{left:77.805000px;}
.x33{left:78.885000px;}
.x3a{left:80.505000px;}
.x14{left:83.519986px;}
.x1f{left:87.300000px;}
.x46{left:92.195986px;}
.xe{left:94.175986px;}
.x58{left:95.250000px;}
.x40{left:96.345000px;}
.x3{left:99.396000px;}
.x24{left:103.716000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x56{left:127.470000px;}
.x52{left:131.070000px;}
.x5{left:134.496000px;}
.x12{left:155.189986px;}
.x13{left:179.309986px;}
.x11{left:189.029986px;}
.x8{left:200.190000px;}
.xb{left:231.690000px;}
.x4f{left:235.650000px;}
.x26{left:242.310000px;}
.x47{left:259.950000px;}
.x7{left:324.075000px;}
.x29{left:345.855000px;}
.x48{left:375.375000px;}
.x51{left:439.455000px;}
.x49{left:460.155000px;}
.x10{left:464.294986px;}
.x23{left:477.614986px;}
.x5d{left:484.665000px;}
.x1c{left:486.104986px;}
.x21{left:490.424986px;}
.x5c{left:498.884986px;}
.x2b{left:506.445000px;}
.x20{left:513.104986px;}
.x22{left:517.424986px;}
.x5e{left:567.105000px;}
.x4a{left:596.805000px;}
.x19{left:640.005000px;}
.xc{left:693.690000px;}
.x4c{left:697.110000px;}
.x53{left:734.910000px;}
.x4d{left:775.410000px;}
.x5b{left:780.989986px;}
.x5a{left:815.729986px;}
.x59{left:871.379986px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.030080pt;}
.ls6{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.198933pt;}
.ls3{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls11{letter-spacing:19.520000pt;}
.ls14{letter-spacing:33.872640pt;}
.ls10{letter-spacing:38.560000pt;}
.lsc{letter-spacing:40.912640pt;}
.lse{letter-spacing:41.040640pt;}
.ls4{letter-spacing:763.786667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-24.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws0{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.558933pt;}
.ws6{word-spacing:-9.280000pt;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-5.664000pt;}
._3{margin-left:-1.104853pt;}
._0{width:0.931840pt;}
._9{width:2.394667pt;}
._8{width:3.505920pt;}
._5{width:5.070720pt;}
._6{width:6.060160pt;}
._d{width:7.436800pt;}
._c{width:8.605440pt;}
._7{width:9.692160pt;}
._1c{width:10.701440pt;}
._19{width:11.898880pt;}
._14{width:13.004373pt;}
._f{width:14.248320pt;}
._e{width:15.415040pt;}
._29{width:16.315520pt;}
._4{width:17.210880pt;}
._b{width:18.857600pt;}
._a{width:20.103680pt;}
._1e{width:21.272320pt;}
._1d{width:22.334720pt;}
._20{width:23.266560pt;}
._1a{width:25.150080pt;}
._18{width:26.772480pt;}
._1f{width:27.994667pt;}
._26{width:29.182293pt;}
._1b{width:30.189013pt;}
._11{width:31.088000pt;}
._16{width:32.427520pt;}
._17{width:33.412480pt;}
._21{width:34.744107pt;}
._27{width:35.986560pt;}
._28{width:37.159680pt;}
._23{width:38.299520pt;}
._15{width:39.836160pt;}
._12{width:41.280000pt;}
._13{width:42.288000pt;}
._22{width:43.688960pt;}
._25{width:44.592000pt;}
._2b{width:48.253653pt;}
._2a{width:49.168427pt;}
._24{width:54.391680pt;}
._2c{width:56.490880pt;}
._1{width:269.752107pt;}
._2{width:330.621227pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.320000pt;}
.y132{bottom:1.280000pt;}
.y7{bottom:2.240000pt;}
.y3e{bottom:2.560000pt;}
.y24{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y25{bottom:4.160000pt;}
.y5{bottom:7.520000pt;}
.y71{bottom:7.552000pt;}
.yad{bottom:8.320000pt;}
.yab{bottom:8.480000pt;}
.yb7{bottom:8.520000pt;}
.yb3{bottom:14.400000pt;}
.y6{bottom:14.560000pt;}
.y72{bottom:14.592000pt;}
.yb8{bottom:14.600000pt;}
.y12f{bottom:16.320000pt;}
.y3d{bottom:16.480000pt;}
.y35{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yb4{bottom:20.640000pt;}
.y46{bottom:25.760000pt;}
.yb5{bottom:26.720000pt;}
.yf9{bottom:26.880000pt;}
.ye{bottom:29.440000pt;}
.y3c{bottom:30.240000pt;}
.y73{bottom:31.680000pt;}
.yfa{bottom:32.960000pt;}
.y34{bottom:33.600000pt;}
.yf8{bottom:39.040000pt;}
.y45{bottom:39.520000pt;}
.y8{bottom:43.680000pt;}
.y3b{bottom:44.000000pt;}
.y12e{bottom:44.026667pt;}
.yd{bottom:45.760000pt;}
.y33{bottom:48.800000pt;}
.y135{bottom:51.200000pt;}
.y70{bottom:53.280000pt;}
.y44{bottom:53.440000pt;}
.y3a{bottom:57.760000pt;}
.yc{bottom:58.400000pt;}
.y134{bottom:63.520000pt;}
.y32{bottom:64.160000pt;}
.y4{bottom:65.312000pt;}
.y43{bottom:67.200000pt;}
.y39{bottom:71.680000pt;}
.y133{bottom:75.840000pt;}
.y31{bottom:79.520000pt;}
.y42{bottom:80.960000pt;}
.y38{bottom:85.466667pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y41{bottom:94.720000pt;}
.y30{bottom:94.880000pt;}
.y37{bottom:99.226667pt;}
.y108{bottom:99.392000pt;}
.y12b{bottom:107.232000pt;}
.y40{bottom:108.640000pt;}
.ya9{bottom:110.112000pt;}
.y2f{bottom:110.240000pt;}
.y120{bottom:112.192000pt;}
.ydb{bottom:113.152000pt;}
.y107{bottom:114.752000pt;}
.yf3{bottom:115.072000pt;}
.ya{bottom:120.986667pt;}
.yef{bottom:121.312000pt;}
.y6f{bottom:121.792000pt;}
.y51{bottom:122.272000pt;}
.y12a{bottom:122.432000pt;}
.ya8{bottom:125.472000pt;}
.y2e{bottom:125.600000pt;}
.y11f{bottom:127.392000pt;}
.yda{bottom:128.352000pt;}
.y106{bottom:130.112000pt;}
.yf2{bottom:133.466667pt;}
.yee{bottom:136.506667pt;}
.y6e{bottom:136.986667pt;}
.y129{bottom:137.786667pt;}
.y50{bottom:139.066667pt;}
.y2d{bottom:140.800000pt;}
.ya7{bottom:140.826667pt;}
.y105{bottom:142.426667pt;}
.y11e{bottom:142.746667pt;}
.yd9{bottom:143.706667pt;}
.yed{bottom:151.866667pt;}
.y6d{bottom:152.346667pt;}
.y128{bottom:153.146667pt;}
.y4f{bottom:154.266667pt;}
.y2c{bottom:156.160000pt;}
.ya6{bottom:156.186667pt;}
.y11d{bottom:158.106667pt;}
.yd8{bottom:159.066667pt;}
.yec{bottom:167.226667pt;}
.y6c{bottom:167.706667pt;}
.y127{bottom:168.506667pt;}
.y4e{bottom:169.626667pt;}
.yf1{bottom:170.266667pt;}
.y2b{bottom:171.520000pt;}
.ya5{bottom:171.546667pt;}
.y11c{bottom:173.466667pt;}
.yd7{bottom:174.426667pt;}
.yeb{bottom:182.586667pt;}
.y6b{bottom:183.066667pt;}
.y126{bottom:183.866667pt;}
.y4d{bottom:184.986667pt;}
.ya4{bottom:186.746667pt;}
.y2a{bottom:186.880000pt;}
.yf0{bottom:188.666667pt;}
.y11b{bottom:188.826667pt;}
.yd6{bottom:189.786667pt;}
.yea{bottom:197.946667pt;}
.y6a{bottom:198.426667pt;}
.y125{bottom:199.226667pt;}
.y4c{bottom:200.346667pt;}
.ya3{bottom:202.106667pt;}
.y29{bottom:202.240000pt;}
.y11a{bottom:204.026667pt;}
.yd5{bottom:205.146667pt;}
.ye9{bottom:213.306667pt;}
.y69{bottom:213.786667pt;}
.y124{bottom:214.426667pt;}
.y4b{bottom:215.706667pt;}
.y28{bottom:217.466667pt;}
.y119{bottom:219.386667pt;}
.yd4{bottom:220.346667pt;}
.ye8{bottom:228.506667pt;}
.y68{bottom:228.986667pt;}
.y123{bottom:229.786667pt;}
.y4a{bottom:230.906667pt;}
.y27{bottom:232.826667pt;}
.y118{bottom:234.746667pt;}
.yd3{bottom:235.706667pt;}
.ye7{bottom:243.866667pt;}
.y67{bottom:244.346667pt;}
.y122{bottom:245.146667pt;}
.y49{bottom:246.266667pt;}
.ya2{bottom:248.186667pt;}
.y117{bottom:250.106667pt;}
.yd2{bottom:251.066667pt;}
.y121{bottom:257.626667pt;}
.ye6{bottom:259.226667pt;}
.y66{bottom:259.706667pt;}
.y48{bottom:261.626667pt;}
.ya1{bottom:263.546667pt;}
.y116{bottom:265.466667pt;}
.yd1{bottom:266.426667pt;}
.ye5{bottom:274.586667pt;}
.y65{bottom:275.066667pt;}
.y47{bottom:276.986667pt;}
.ya0{bottom:278.746667pt;}
.y115{bottom:280.826667pt;}
.yd0{bottom:281.826667pt;}
.ye4{bottom:289.986667pt;}
.y26{bottom:290.146667pt;}
.y64{bottom:290.466667pt;}
.y9f{bottom:294.146667pt;}
.y114{bottom:296.066667pt;}
.ycf{bottom:297.186667pt;}
.ye3{bottom:305.186667pt;}
.y63{bottom:305.826667pt;}
.y9e{bottom:309.506667pt;}
.y113{bottom:311.426667pt;}
.yce{bottom:312.386667pt;}
.ye2{bottom:320.546667pt;}
.y62{bottom:321.026667pt;}
.y9d{bottom:324.866667pt;}
.y112{bottom:326.786667pt;}
.ycd{bottom:327.746667pt;}
.ye1{bottom:335.906667pt;}
.y61{bottom:336.386667pt;}
.y9c{bottom:340.226667pt;}
.y111{bottom:342.146667pt;}
.ycc{bottom:343.106667pt;}
.ye0{bottom:351.266667pt;}
.y60{bottom:351.746667pt;}
.y9b{bottom:355.426667pt;}
.y110{bottom:357.506667pt;}
.ycb{bottom:358.466667pt;}
.y131{bottom:361.186667pt;}
.ydf{bottom:366.626667pt;}
.y5f{bottom:367.106667pt;}
.y9a{bottom:370.786667pt;}
.y10f{bottom:372.866667pt;}
.yca{bottom:373.826667pt;}
.yde{bottom:381.986667pt;}
.y5e{bottom:382.466667pt;}
.y99{bottom:386.146667pt;}
.y10e{bottom:388.066667pt;}
.yc9{bottom:389.026667pt;}
.ydd{bottom:397.186667pt;}
.y5d{bottom:397.666667pt;}
.y98{bottom:401.506667pt;}
.y10d{bottom:403.426667pt;}
.yc8{bottom:404.386667pt;}
.y3f{bottom:410.626667pt;}
.ydc{bottom:412.546667pt;}
.y5c{bottom:413.026667pt;}
.y97{bottom:416.866667pt;}
.y10c{bottom:418.786667pt;}
.yc7{bottom:419.746667pt;}
.y36{bottom:425.026667pt;}
.y5b{bottom:428.386667pt;}
.y96{bottom:432.226667pt;}
.y10b{bottom:434.146667pt;}
.yc6{bottom:435.106667pt;}
.y5a{bottom:443.746667pt;}
.y95{bottom:447.426667pt;}
.y130{bottom:447.746667pt;}
.y10a{bottom:449.506667pt;}
.yc5{bottom:450.466667pt;}
.y59{bottom:459.106667pt;}
.y109{bottom:461.826667pt;}
.y12d{bottom:462.146667pt;}
.y94{bottom:462.786667pt;}
.yc4{bottom:465.826667pt;}
.y93{bottom:478.146667pt;}
.yc3{bottom:481.026667pt;}
.y92{bottom:493.506667pt;}
.yc2{bottom:496.386667pt;}
.y91{bottom:508.893333pt;}
.yc1{bottom:511.773333pt;}
.y12c{bottom:518.013333pt;}
.y90{bottom:524.253333pt;}
.yc0{bottom:527.133333pt;}
.y23{bottom:536.093333pt;}
.y8f{bottom:539.453333pt;}
.ybf{bottom:542.493333pt;}
.y8e{bottom:554.813333pt;}
.ybe{bottom:557.853333pt;}
.y22{bottom:563.613333pt;}
.y20{bottom:566.173333pt;}
.y8d{bottom:570.173333pt;}
.ybd{bottom:570.973333pt;}
.y1f{bottom:571.133333pt;}
.y8c{bottom:585.533333pt;}
.y1e{bottom:586.493333pt;}
.y8b{bottom:600.893333pt;}
.y1d{bottom:604.253333pt;}
.ybc{bottom:608.413333pt;}
.y8a{bottom:616.253333pt;}
.y89{bottom:631.453333pt;}
.y1c{bottom:635.133333pt;}
.ybb{bottom:645.853333pt;}
.y88{bottom:646.813333pt;}
.y1b{bottom:651.933333pt;}
.y104{bottom:655.453333pt;}
.y87{bottom:662.173333pt;}
.y1a{bottom:663.613333pt;}
.y103{bottom:668.573333pt;}
.yba{bottom:670.973333pt;}
.y86{bottom:677.533333pt;}
.y102{bottom:681.533333pt;}
.y19{bottom:685.693333pt;}
.y85{bottom:692.893333pt;}
.y101{bottom:694.493333pt;}
.yb9{bottom:696.253333pt;}
.y18{bottom:697.373333pt;}
.y100{bottom:707.453333pt;}
.y84{bottom:708.093333pt;}
.y17{bottom:716.093333pt;}
.yb6{bottom:721.373333pt;}
.yff{bottom:723.293333pt;}
.y83{bottom:723.453333pt;}
.yfe{bottom:738.533333pt;}
.y82{bottom:738.853333pt;}
.y16{bottom:743.813333pt;}
.yb2{bottom:746.693333pt;}
.yfd{bottom:753.893333pt;}
.y81{bottom:754.213333pt;}
.yfc{bottom:767.013333pt;}
.y80{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.yb1{bottom:784.133333pt;}
.y7f{bottom:784.933333pt;}
.y14{bottom:799.013333pt;}
.y7e{bottom:800.133333pt;}
.yb0{bottom:809.253333pt;}
.y7d{bottom:815.493333pt;}
.yfb{bottom:816.773333pt;}
.y13{bottom:824.293333pt;}
.y7c{bottom:830.853333pt;}
.yaf{bottom:834.533333pt;}
.y7b{bottom:846.213333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.yf7{bottom:854.213333pt;}
.yae{bottom:859.653333pt;}
.y7a{bottom:861.573333pt;}
.y58{bottom:872.453333pt;}
.y79{bottom:876.933333pt;}
.yac{bottom:884.933333pt;}
.y57{bottom:887.813333pt;}
.y78{bottom:892.133333pt;}
.y56{bottom:903.173333pt;}
.yf6{bottom:903.973333pt;}
.y77{bottom:907.493333pt;}
.yaa{bottom:910.053333pt;}
.y55{bottom:918.533333pt;}
.y76{bottom:922.853333pt;}
.yf5{bottom:932.773333pt;}
.y54{bottom:933.733333pt;}
.y75{bottom:938.213333pt;}
.y53{bottom:949.093333pt;}
.yf4{bottom:951.173333pt;}
.y74{bottom:953.600000pt;}
.y52{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h15{height:1.440000pt;}
.h16{height:3.575000pt;}
.hf{height:3.612500pt;}
.h17{height:7.676562pt;}
.h28{height:12.160000pt;}
.h29{height:12.320000pt;}
.h1d{height:13.760000pt;}
.h18{height:15.360000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h4{height:24.480000pt;}
.h21{height:24.512000pt;}
.h23{height:24.640000pt;}
.h26{height:24.672000pt;}
.h12{height:25.918750pt;}
.h6{height:29.940625pt;}
.h24{height:30.254687pt;}
.h1f{height:33.515625pt;}
.h19{height:33.867188pt;}
.h7{height:34.965625pt;}
.h22{height:35.093625pt;}
.h1c{height:36.750000pt;}
.h25{height:36.800000pt;}
.h5{height:37.090625pt;}
.h3{height:37.479688pt;}
.h20{height:38.672812pt;}
.h2{height:40.021563pt;}
.h2b{height:40.410625pt;}
.h2a{height:40.670000pt;}
.h13{height:41.112500pt;}
.h1{height:45.156250pt;}
.h11{height:47.310625pt;}
.h27{height:49.120000pt;}
.h2c{height:55.232000pt;}
.h8{height:58.563750pt;}
.hd{height:64.130938pt;}
.h14{height:67.031250pt;}
.h10{height:67.734375pt;}
.hb{height:82.635937pt;}
.h2d{height:85.760000pt;}
.he{height:105.214062pt;}
.h1b{height:110.432000pt;}
.h1e{height:119.840000pt;}
.h9{height:127.232000pt;}
.h1a{height:245.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w10{width:43.872000pt;}
.wa{width:44.352000pt;}
.w16{width:68.800000pt;}
.w1d{width:72.640000pt;}
.w13{width:74.720000pt;}
.w17{width:82.752000pt;}
.w15{width:88.512000pt;}
.wc{width:91.392000pt;}
.w12{width:101.952000pt;}
.we{width:118.560000pt;}
.w1b{width:118.912000pt;}
.w14{width:120.672000pt;}
.wb{width:122.560000pt;}
.w11{width:138.720000pt;}
.wd{width:142.106667pt;}
.w5{width:147.520000pt;}
.w18{width:161.626667pt;}
.w19{width:180.506667pt;}
.w8{width:203.106667pt;}
.wf{width:217.666667pt;}
.w1a{width:261.986667pt;}
.w1e{width:282.946667pt;}
.w1c{width:356.226667pt;}
.w7{width:526.653333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x16{left:2.880000pt;}
.x4{left:3.840000pt;}
.x1d{left:6.079988pt;}
.x17{left:7.200000pt;}
.x4b{left:8.160000pt;}
.x3e{left:9.120000pt;}
.x36{left:10.240000pt;}
.x32{left:11.680000pt;}
.x38{left:12.960000pt;}
.x43{left:13.920000pt;}
.x37{left:14.880000pt;}
.x27{left:16.800000pt;}
.x2e{left:17.920000pt;}
.x2d{left:19.520000pt;}
.x25{left:20.640000pt;}
.x31{left:22.240000pt;}
.x3b{left:23.360000pt;}
.x2f{left:24.640000pt;}
.x39{left:25.760000pt;}
.x28{left:27.520000pt;}
.x2a{left:28.800000pt;}
.x44{left:29.920000pt;}
.x3f{left:31.040000pt;}
.x45{left:32.960000pt;}
.x34{left:34.720000pt;}
.x3c{left:35.720000pt;}
.x2c{left:36.840000pt;}
.x3d{left:37.800000pt;}
.x1b{left:38.760000pt;}
.x6{left:40.480000pt;}
.x18{left:41.600000pt;}
.x42{left:43.560000pt;}
.x1e{left:46.400000pt;}
.x1{left:47.999988pt;}
.x30{left:49.920000pt;}
.x41{left:51.080000pt;}
.x35{left:52.320000pt;}
.x15{left:53.279988pt;}
.x4e{left:55.552000pt;}
.x1a{left:57.800000pt;}
.xf{left:59.039988pt;}
.x50{left:61.160000pt;}
.xa{left:62.592000pt;}
.x57{left:64.680000pt;}
.x55{left:66.600000pt;}
.x54{left:69.160000pt;}
.x33{left:70.120000pt;}
.x3a{left:71.560000pt;}
.x14{left:74.239988pt;}
.x1f{left:77.600000pt;}
.x46{left:81.951988pt;}
.xe{left:83.711988pt;}
.x58{left:84.666667pt;}
.x40{left:85.640000pt;}
.x3{left:88.352000pt;}
.x24{left:92.192000pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x56{left:113.306667pt;}
.x52{left:116.506667pt;}
.x5{left:119.552000pt;}
.x12{left:137.946655pt;}
.x13{left:159.386655pt;}
.x11{left:168.026655pt;}
.x8{left:177.946667pt;}
.xb{left:205.946667pt;}
.x4f{left:209.466667pt;}
.x26{left:215.386667pt;}
.x47{left:231.066667pt;}
.x7{left:288.066667pt;}
.x29{left:307.426667pt;}
.x48{left:333.666667pt;}
.x51{left:390.626667pt;}
.x49{left:409.026667pt;}
.x10{left:412.706655pt;}
.x23{left:424.546655pt;}
.x5d{left:430.813333pt;}
.x1c{left:432.093321pt;}
.x21{left:435.933321pt;}
.x5c{left:443.453321pt;}
.x2b{left:450.173333pt;}
.x20{left:456.093321pt;}
.x22{left:459.933321pt;}
.x5e{left:504.093333pt;}
.x4a{left:530.493333pt;}
.x19{left:568.893333pt;}
.xc{left:616.613333pt;}
.x4c{left:619.653333pt;}
.x53{left:653.253333pt;}
.x4d{left:689.253333pt;}
.x5b{left:694.213321pt;}
.x5a{left:725.093321pt;}
.x59{left:774.559988pt;}
}




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