
    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_fac1117da14ae9dfe1fd212e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_837057c96b2d819ef0dea4e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bf2a1b2af0d9e4d9292cf495.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_836da5bfbaf5d329ca239350.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_9ede419ca7309299efeea0fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_d3ad61b9be4b750e2d2bfec6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-14.400000px;}
.v7{vertical-align:-12.240000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v5{vertical-align:17.280000px;}
.v9{vertical-align:23.760000px;}
.v8{vertical-align:26.640000px;}
.ls6{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.056880px;}
.ls8{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.385200px;}
.ls9{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:0.776880px;}
.ls1a{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.896880px;}
.ls16{letter-spacing:1.496880px;}
.lsd{letter-spacing:2.801520px;}
.ls15{letter-spacing:16.200000px;}
.ls10{letter-spacing:18.385200px;}
.lsc{letter-spacing:18.641520px;}
.ls1{letter-spacing:197.976000px;}
.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;}
}
.ws9{word-spacing:-72.360000px;}
.wsa{word-spacing:-72.000000px;}
.ws18{word-spacing:-71.784000px;}
.ws19{word-spacing:-56.664000px;}
.wsd{word-spacing:-55.944000px;}
.ws16{word-spacing:-55.764000px;}
.ws12{word-spacing:-52.344000px;}
.wsc{word-spacing:-52.164000px;}
.ws10{word-spacing:-51.176880px;}
.wse{word-spacing:-51.120000px;}
.ws14{word-spacing:-31.966560px;}
.ws13{word-spacing:-31.246560px;}
.wsf{word-spacing:-31.126560px;}
.ws15{word-spacing:-31.066560px;}
.ws17{word-spacing:-29.797920px;}
.ws11{word-spacing:-26.926560px;}
.wsb{word-spacing:-26.812800px;}
.ws7{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws1a{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.280000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1c{word-spacing:-12.014640px;}
.ws1d{word-spacing:-11.878800px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-9.864000px;}
._19{margin-left:-8.856000px;}
._18{margin-left:-7.145280px;}
._13{margin-left:-5.040000px;}
._8{margin-left:-3.888000px;}
._4{margin-left:-2.304000px;}
._0{margin-left:-1.008000px;}
._1{width:1.296000px;}
._f{width:2.448000px;}
._e{width:3.888000px;}
._9{width:5.400000px;}
._a{width:6.408000px;}
._11{width:7.968000px;}
._5{width:9.072000px;}
._10{width:10.968000px;}
._6{width:12.000000px;}
._2{width:13.608000px;}
._3{width:15.048000px;}
._b{width:16.968000px;}
._20{width:19.008000px;}
._7{width:20.160000px;}
._12{width:21.456000px;}
._17{width:23.112000px;}
._16{width:24.180000px;}
._c{width:25.392000px;}
._d{width:26.916000px;}
._14{width:28.512000px;}
._15{width:29.736000px;}
._21{width:31.752000px;}
._1f{width:35.208000px;}
._1b{width:40.392000px;}
._1d{width:97.272000px;}
._1e{width:120.312000px;}
._1c{width:183.936000px;}
.fc1{color:rgb(209,52,56);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y87{bottom:3.960000px;}
.yef{bottom:3.990000px;}
.y8d{bottom:4.005000px;}
.yae{bottom:4.860000px;}
.yb6{bottom:5.400000px;}
.yab{bottom:14.400000px;}
.ya9{bottom:24.660000px;}
.y10e{bottom:24.690000px;}
.ye5{bottom:24.705000px;}
.yaa{bottom:35.100000px;}
.yac{bottom:45.360000px;}
.y25{bottom:58.320000px;}
.y5{bottom:66.525004px;}
.y24{bottom:78.480000px;}
.y4{bottom:97.125005px;}
.yb1{bottom:109.440000px;}
.y107{bottom:112.140000px;}
.y139{bottom:115.740000px;}
.ydd{bottom:117.180000px;}
.y5e{bottom:126.720000px;}
.y51{bottom:131.760000px;}
.y106{bottom:132.840000px;}
.y138{bottom:136.440000px;}
.ydc{bottom:138.780000px;}
.y20{bottom:139.264499px;}
.y111{bottom:140.580000px;}
.y85{bottom:146.700000px;}
.y5d{bottom:147.420000px;}
.yb0{bottom:150.840000px;}
.y50{bottom:152.460000px;}
.y105{bottom:153.540000px;}
.y137{bottom:157.140000px;}
.y110{bottom:162.180000px;}
.y155{bottom:164.160000px;}
.ydb{bottom:165.060000px;}
.y84{bottom:167.400000px;}
.y5c{bottom:168.120000px;}
.y4f{bottom:173.160000px;}
.y104{bottom:174.240000px;}
.y136{bottom:177.840000px;}
.y10f{bottom:183.780000px;}
.yda{bottom:185.760000px;}
.y83{bottom:188.100000px;}
.y5b{bottom:188.820000px;}
.yaf{bottom:192.240000px;}
.y4e{bottom:193.860000px;}
.y103{bottom:194.940000px;}
.y17{bottom:196.933500px;}
.y135{bottom:198.540000px;}
.y10d{bottom:205.380000px;}
.y154{bottom:205.560000px;}
.yd9{bottom:206.460000px;}
.y82{bottom:208.800000px;}
.y1f{bottom:209.518500px;}
.y5a{bottom:209.520000px;}
.y16{bottom:209.533503px;}
.y4d{bottom:214.560000px;}
.yad{bottom:214.740000px;}
.y102{bottom:215.640000px;}
.y134{bottom:219.240000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yd8{bottom:227.190000px;}
.y81{bottom:229.530000px;}
.y59{bottom:230.610000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y4c{bottom:235.290000px;}
.y101{bottom:236.370000px;}
.ya8{bottom:238.710000px;}
.y133{bottom:239.970000px;}
.y10c{bottom:246.810000px;}
.yd7{bottom:247.890000px;}
.y153{bottom:248.790000px;}
.y80{bottom:250.230000px;}
.y58{bottom:253.290000px;}
.y4b{bottom:255.990000px;}
.y100{bottom:257.070000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y132{bottom:260.490000px;}
.y10b{bottom:268.410000px;}
.yd6{bottom:268.590000px;}
.y152{bottom:270.390000px;}
.y7f{bottom:270.930000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y57{bottom:274.350000px;}
.y4a{bottom:276.690000px;}
.yff{bottom:277.770000px;}
.y131{bottom:281.190000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yd5{bottom:289.290000px;}
.y10a{bottom:290.010000px;}
.y7e{bottom:291.630000px;}
.y151{bottom:292.710000px;}
.y56{bottom:295.050000px;}
.y49{bottom:297.390000px;}
.yfe{bottom:298.470000px;}
.y130{bottom:301.890000px;}
.ya7{bottom:304.770000px;}
.yd4{bottom:309.990000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y7d{bottom:312.330000px;}
.y109{bottom:312.510000px;}
.y150{bottom:314.310000px;}
.y55{bottom:315.750000px;}
.y48{bottom:318.090000px;}
.yfd{bottom:319.170000px;}
.y12f{bottom:322.590000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ya6{bottom:325.470000px;}
.yd3{bottom:330.690000px;}
.y7c{bottom:333.030000px;}
.y14f{bottom:335.910000px;}
.y54{bottom:336.450000px;}
.y47{bottom:338.790000px;}
.y12e{bottom:343.290000px;}
.ya5{bottom:346.170000px;}
.ye{bottom:348.133500px;}
.yd2{bottom:351.390000px;}
.y7b{bottom:353.730000px;}
.y108{bottom:353.910000px;}
.y14e{bottom:357.510000px;}
.y53{bottom:359.130000px;}
.y46{bottom:359.490000px;}
.yfc{bottom:360.570000px;}
.y12d{bottom:363.990000px;}
.ya4{bottom:366.870000px;}
.yd1{bottom:372.090000px;}
.y7a{bottom:374.430000px;}
.y14d{bottom:379.110000px;}
.y45{bottom:380.190000px;}
.yfb{bottom:381.270000px;}
.y12c{bottom:384.690000px;}
.yd{bottom:386.785499px;}
.ya3{bottom:387.570000px;}
.yd0{bottom:392.790000px;}
.y79{bottom:395.130000px;}
.y14c{bottom:400.710000px;}
.y44{bottom:400.890000px;}
.yfa{bottom:401.970000px;}
.y12b{bottom:405.390000px;}
.yc{bottom:408.044999px;}
.ya2{bottom:408.270000px;}
.ycf{bottom:413.490000px;}
.y78{bottom:415.830000px;}
.y43{bottom:421.590000px;}
.yf9{bottom:422.670000px;}
.y12a{bottom:426.090000px;}
.ya1{bottom:428.970000px;}
.yce{bottom:434.190000px;}
.y77{bottom:436.530000px;}
.y14b{bottom:442.155000px;}
.y42{bottom:442.335000px;}
.yf8{bottom:443.415000px;}
.y129{bottom:446.835000px;}
.ya0{bottom:449.715000px;}
.ycd{bottom:454.935000px;}
.y76{bottom:457.275000px;}
.yf7{bottom:460.155000px;}
.y41{bottom:463.035000px;}
.y14a{bottom:463.755000px;}
.y128{bottom:467.535000px;}
.y9f{bottom:470.415000px;}
.ycc{bottom:475.635000px;}
.y75{bottom:477.975000px;}
.y40{bottom:483.735000px;}
.y149{bottom:485.355000px;}
.y127{bottom:488.235000px;}
.y9e{bottom:491.115000px;}
.ycb{bottom:496.335000px;}
.y74{bottom:498.675000px;}
.yf6{bottom:501.555000px;}
.y3f{bottom:504.435000px;}
.y148{bottom:506.955000px;}
.y126{bottom:508.935000px;}
.y9d{bottom:511.815000px;}
.yca{bottom:517.035000px;}
.y73{bottom:519.375000px;}
.yb{bottom:520.864502px;}
.yf5{bottom:523.875000px;}
.y3e{bottom:525.135000px;}
.y147{bottom:528.555000px;}
.y9c{bottom:532.515000px;}
.yc9{bottom:537.735000px;}
.ya{bottom:538.864499px;}
.y72{bottom:540.075000px;}
.yf4{bottom:545.475000px;}
.y3d{bottom:545.835000px;}
.y146{bottom:550.155000px;}
.y125{bottom:550.335000px;}
.y9b{bottom:553.215000px;}
.y9{bottom:556.864499px;}
.yc8{bottom:558.435000px;}
.y3c{bottom:566.535000px;}
.yf3{bottom:567.075000px;}
.y145{bottom:571.755000px;}
.y9a{bottom:573.915000px;}
.yc7{bottom:579.135000px;}
.y71{bottom:581.475000px;}
.y3b{bottom:587.235000px;}
.yf2{bottom:588.675000px;}
.y144{bottom:593.355000px;}
.y99{bottom:594.615000px;}
.yc6{bottom:599.835000px;}
.y70{bottom:602.175000px;}
.y3a{bottom:607.935000px;}
.y124{bottom:608.475000px;}
.yf1{bottom:610.275000px;}
.y143{bottom:614.955000px;}
.y98{bottom:615.315000px;}
.yc5{bottom:620.535000px;}
.y6f{bottom:622.875000px;}
.y39{bottom:628.635000px;}
.y123{bottom:630.795000px;}
.yf0{bottom:631.875000px;}
.y97{bottom:636.015000px;}
.y142{bottom:636.555000px;}
.yc4{bottom:641.235000px;}
.y6e{bottom:643.575000px;}
.y8{bottom:645.510000px;}
.y38{bottom:649.335000px;}
.y122{bottom:652.395000px;}
.yee{bottom:653.475000px;}
.y96{bottom:656.745000px;}
.yc3{bottom:661.965000px;}
.y6d{bottom:664.305000px;}
.y7{bottom:666.771000px;}
.y37{bottom:670.065000px;}
.y121{bottom:674.025000px;}
.yed{bottom:675.105000px;}
.y141{bottom:677.985000px;}
.yc2{bottom:682.665000px;}
.y6c{bottom:685.005000px;}
.y36{bottom:690.765000px;}
.y120{bottom:695.625000px;}
.y95{bottom:698.145000px;}
.y140{bottom:699.585000px;}
.yc1{bottom:703.365000px;}
.y6b{bottom:705.705000px;}
.y35{bottom:711.465000px;}
.y94{bottom:715.605000px;}
.yec{bottom:716.505000px;}
.y11f{bottom:717.225000px;}
.y13f{bottom:721.185000px;}
.yc0{bottom:724.065000px;}
.y6{bottom:726.298500px;}
.y6a{bottom:726.405000px;}
.y34{bottom:732.165000px;}
.y93{bottom:737.205000px;}
.yeb{bottom:738.105000px;}
.y11e{bottom:738.825000px;}
.y13e{bottom:742.785000px;}
.ybf{bottom:744.765000px;}
.y69{bottom:747.105000px;}
.y3{bottom:752.599495px;}
.y33{bottom:752.865000px;}
.y92{bottom:758.805000px;}
.yea{bottom:759.705000px;}
.y11d{bottom:760.425000px;}
.ybe{bottom:765.465000px;}
.y68{bottom:767.805000px;}
.y32{bottom:773.565000px;}
.y91{bottom:780.405000px;}
.ye9{bottom:781.305000px;}
.y11c{bottom:782.025000px;}
.y13d{bottom:784.185000px;}
.ybd{bottom:786.165000px;}
.y67{bottom:788.505000px;}
.y31{bottom:794.265000px;}
.y90{bottom:802.005000px;}
.ye8{bottom:802.905000px;}
.y13c{bottom:805.785000px;}
.y52{bottom:814.965000px;}
.y11b{bottom:823.425000px;}
.y8f{bottom:823.605000px;}
.ye7{bottom:824.505000px;}
.y13b{bottom:827.385000px;}
.ybc{bottom:827.565000px;}
.y66{bottom:829.905000px;}
.y30{bottom:835.665000px;}
.y11a{bottom:845.025000px;}
.y8e{bottom:845.205000px;}
.ye6{bottom:846.105000px;}
.ybb{bottom:848.265000px;}
.y13a{bottom:849.705000px;}
.y65{bottom:850.605000px;}
.y2f{bottom:856.365000px;}
.y119{bottom:866.625000px;}
.y8c{bottom:866.805000px;}
.ye4{bottom:867.705000px;}
.yba{bottom:868.965000px;}
.y64{bottom:871.350000px;}
.y2e{bottom:877.110000px;}
.y2{bottom:879.369000px;}
.y118{bottom:888.270000px;}
.y8b{bottom:888.450000px;}
.yb9{bottom:889.710000px;}
.y63{bottom:892.050000px;}
.y2d{bottom:897.810000px;}
.ye3{bottom:909.150000px;}
.y117{bottom:909.870000px;}
.y8a{bottom:910.050000px;}
.yb8{bottom:910.410000px;}
.y62{bottom:912.750000px;}
.y2c{bottom:918.510000px;}
.ye2{bottom:930.750000px;}
.yb7{bottom:931.110000px;}
.y116{bottom:931.470000px;}
.y89{bottom:931.650000px;}
.y61{bottom:933.450000px;}
.y2b{bottom:939.210000px;}
.yb5{bottom:949.290000px;}
.ye1{bottom:952.350000px;}
.y115{bottom:953.070000px;}
.y88{bottom:953.250000px;}
.y60{bottom:954.510000px;}
.y2a{bottom:959.730000px;}
.y1{bottom:966.726000px;}
.yb4{bottom:972.870000px;}
.ye0{bottom:973.950000px;}
.y114{bottom:974.670000px;}
.y86{bottom:975.570000px;}
.y5f{bottom:980.070000px;}
.y29{bottom:980.430000px;}
.yb3{bottom:995.370000px;}
.y113{bottom:996.270000px;}
.y28{bottom:1001.130000px;}
.ydf{bottom:1015.350000px;}
.y112{bottom:1017.870000px;}
.y27{bottom:1021.830000px;}
.yb2{bottom:1036.770000px;}
.yde{bottom:1036.950000px;}
.y26{bottom:1042.530000px;}
.y23{bottom:1063.770000px;}
.y22{bottom:1083.930000px;}
.y21{bottom:1117.260000px;}
.he{height:21.600000px;}
.hf{height:21.636000px;}
.h12{height:22.500000px;}
.h11{height:22.536000px;}
.h14{height:23.580000px;}
.h7{height:32.130000px;}
.h13{height:41.400000px;}
.h15{height:41.436000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hc{height:60.046875px;}
.h10{height:62.100000px;}
.ha{height:65.884219px;}
.hd{height:70.628906px;}
.hb{height:70.664062px;}
.h9{height:72.562500px;}
.h16{height:74.704922px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wd{width:71.640000px;}
.wf{width:71.676000px;}
.wb{width:71.820000px;}
.wc{width:77.976000px;}
.w10{width:82.800000px;}
.we{width:85.860000px;}
.w9{width:94.536000px;}
.wa{width:96.840000px;}
.w14{width:109.440000px;}
.w13{width:109.476000px;}
.w12{width:109.656000px;}
.w1c{width:110.916000px;}
.w1d{width:111.060000px;}
.w1e{width:111.096000px;}
.w11{width:111.240000px;}
.w19{width:112.500000px;}
.w18{width:112.536000px;}
.w17{width:116.856000px;}
.w16{width:117.000000px;}
.w1b{width:117.036000px;}
.w6{width:117.576000px;}
.w7{width:121.536000px;}
.w8{width:174.780000px;}
.w5{width:179.460000px;}
.w15{width:220.890000px;}
.w1a{width:233.850000px;}
.w1f{width:234.030000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035986px;}
.x11{left:154.829986px;}
.xe{left:162.029986px;}
.x24{left:173.370000px;}
.x29{left:175.530000px;}
.x20{left:184.350000px;}
.x7{left:201.449986px;}
.x4{left:203.484001px;}
.x18{left:204.870000px;}
.x12{left:210.629986px;}
.x10{left:242.489986px;}
.x19{left:276.690000px;}
.x14{left:287.490000px;}
.x25{left:290.370000px;}
.x2a{left:292.530000px;}
.x21{left:295.590000px;}
.xb{left:333.254986px;}
.x1a{left:354.675000px;}
.xd{left:363.314986px;}
.xa{left:376.094986px;}
.xc{left:392.294986px;}
.x15{left:405.075000px;}
.x26{left:407.235000px;}
.x2b{left:409.575000px;}
.x9{left:423.794986px;}
.x1b{left:426.315000px;}
.x3{left:454.959000px;}
.x8{left:459.074986px;}
.x1c{left:512.175000px;}
.x22{left:514.725000px;}
.x27{left:519.765000px;}
.x16{left:526.605000px;}
.x1d{left:583.845000px;}
.x23{left:624.165000px;}
.x28{left:632.265000px;}
.x1e{left:655.665000px;}
.x17{left:701.385000px;}
.x1f{left:727.350000px;}
.xf{left:785.129986px;}
.x6{left:793.409986px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-12.800000pt;}
.v7{vertical-align:-10.880000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v5{vertical-align:15.360000pt;}
.v9{vertical-align:21.120000pt;}
.v8{vertical-align:23.680000pt;}
.ls6{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.050560pt;}
.ls8{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.342400pt;}
.ls9{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.690560pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.797227pt;}
.ls16{letter-spacing:1.330560pt;}
.lsd{letter-spacing:2.490240pt;}
.ls15{letter-spacing:14.400000pt;}
.ls10{letter-spacing:16.342400pt;}
.lsc{letter-spacing:16.570240pt;}
.ls1{letter-spacing:175.978667pt;}
.ws9{word-spacing:-64.320000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws18{word-spacing:-63.808000pt;}
.ws19{word-spacing:-50.368000pt;}
.wsd{word-spacing:-49.728000pt;}
.ws16{word-spacing:-49.568000pt;}
.ws12{word-spacing:-46.528000pt;}
.wsc{word-spacing:-46.368000pt;}
.ws10{word-spacing:-45.490560pt;}
.wse{word-spacing:-45.440000pt;}
.ws14{word-spacing:-28.414720pt;}
.ws13{word-spacing:-27.774720pt;}
.wsf{word-spacing:-27.668053pt;}
.ws15{word-spacing:-27.614720pt;}
.ws17{word-spacing:-26.487040pt;}
.ws11{word-spacing:-23.934720pt;}
.wsb{word-spacing:-23.833600pt;}
.ws7{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.360000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1c{word-spacing:-10.679680pt;}
.ws1d{word-spacing:-10.558933pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-8.768000pt;}
._19{margin-left:-7.872000pt;}
._18{margin-left:-6.351360pt;}
._13{margin-left:-4.480000pt;}
._8{margin-left:-3.456000pt;}
._4{margin-left:-2.048000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.152000pt;}
._f{width:2.176000pt;}
._e{width:3.456000pt;}
._9{width:4.800000pt;}
._a{width:5.696000pt;}
._11{width:7.082667pt;}
._5{width:8.064000pt;}
._10{width:9.749333pt;}
._6{width:10.666667pt;}
._2{width:12.096000pt;}
._3{width:13.376000pt;}
._b{width:15.082667pt;}
._20{width:16.896000pt;}
._7{width:17.920000pt;}
._12{width:19.072000pt;}
._17{width:20.544000pt;}
._16{width:21.493333pt;}
._c{width:22.570667pt;}
._d{width:23.925333pt;}
._14{width:25.344000pt;}
._15{width:26.432000pt;}
._21{width:28.224000pt;}
._1f{width:31.296000pt;}
._1b{width:35.904000pt;}
._1d{width:86.464000pt;}
._1e{width:106.944000pt;}
._1c{width:163.498667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:3.520000pt;}
.yef{bottom:3.546667pt;}
.y8d{bottom:3.560000pt;}
.yae{bottom:4.320000pt;}
.yb6{bottom:4.800000pt;}
.yab{bottom:12.800000pt;}
.ya9{bottom:21.920000pt;}
.y10e{bottom:21.946667pt;}
.ye5{bottom:21.960000pt;}
.yaa{bottom:31.200000pt;}
.yac{bottom:40.320000pt;}
.y25{bottom:51.840000pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:69.760000pt;}
.y4{bottom:86.333337pt;}
.yb1{bottom:97.280000pt;}
.y107{bottom:99.680000pt;}
.y139{bottom:102.880000pt;}
.ydd{bottom:104.160000pt;}
.y5e{bottom:112.640000pt;}
.y51{bottom:117.120000pt;}
.y106{bottom:118.080000pt;}
.y138{bottom:121.280000pt;}
.ydc{bottom:123.360000pt;}
.y20{bottom:123.790666pt;}
.y111{bottom:124.960000pt;}
.y85{bottom:130.400000pt;}
.y5d{bottom:131.040000pt;}
.yb0{bottom:134.080000pt;}
.y50{bottom:135.520000pt;}
.y105{bottom:136.480000pt;}
.y137{bottom:139.680000pt;}
.y110{bottom:144.160000pt;}
.y155{bottom:145.920000pt;}
.ydb{bottom:146.720000pt;}
.y84{bottom:148.800000pt;}
.y5c{bottom:149.440000pt;}
.y4f{bottom:153.920000pt;}
.y104{bottom:154.880000pt;}
.y136{bottom:158.080000pt;}
.y10f{bottom:163.360000pt;}
.yda{bottom:165.120000pt;}
.y83{bottom:167.200000pt;}
.y5b{bottom:167.840000pt;}
.yaf{bottom:170.880000pt;}
.y4e{bottom:172.320000pt;}
.y103{bottom:173.280000pt;}
.y17{bottom:175.052000pt;}
.y135{bottom:176.480000pt;}
.y10d{bottom:182.560000pt;}
.y154{bottom:182.720000pt;}
.yd9{bottom:183.520000pt;}
.y82{bottom:185.600000pt;}
.y1f{bottom:186.238666pt;}
.y5a{bottom:186.240000pt;}
.y16{bottom:186.252002pt;}
.y4d{bottom:190.720000pt;}
.yad{bottom:190.880000pt;}
.y102{bottom:191.680000pt;}
.y134{bottom:194.880000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yd8{bottom:201.946667pt;}
.y81{bottom:204.026667pt;}
.y59{bottom:204.986667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y4c{bottom:209.146667pt;}
.y101{bottom:210.106667pt;}
.ya8{bottom:212.186667pt;}
.y133{bottom:213.306667pt;}
.y10c{bottom:219.386667pt;}
.yd7{bottom:220.346667pt;}
.y153{bottom:221.146667pt;}
.y80{bottom:222.426667pt;}
.y58{bottom:225.146667pt;}
.y4b{bottom:227.546667pt;}
.y100{bottom:228.506667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y132{bottom:231.546667pt;}
.y10b{bottom:238.586667pt;}
.yd6{bottom:238.746667pt;}
.y152{bottom:240.346667pt;}
.y7f{bottom:240.826667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y57{bottom:243.866667pt;}
.y4a{bottom:245.946667pt;}
.yff{bottom:246.906667pt;}
.y131{bottom:249.946667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yd5{bottom:257.146667pt;}
.y10a{bottom:257.786667pt;}
.y7e{bottom:259.226667pt;}
.y151{bottom:260.186667pt;}
.y56{bottom:262.266667pt;}
.y49{bottom:264.346667pt;}
.yfe{bottom:265.306667pt;}
.y130{bottom:268.346667pt;}
.ya7{bottom:270.906667pt;}
.yd4{bottom:275.546667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y7d{bottom:277.626667pt;}
.y109{bottom:277.786667pt;}
.y150{bottom:279.386667pt;}
.y55{bottom:280.666667pt;}
.y48{bottom:282.746667pt;}
.yfd{bottom:283.706667pt;}
.y12f{bottom:286.746667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ya6{bottom:289.306667pt;}
.yd3{bottom:293.946667pt;}
.y7c{bottom:296.026667pt;}
.y14f{bottom:298.586667pt;}
.y54{bottom:299.066667pt;}
.y47{bottom:301.146667pt;}
.y12e{bottom:305.146667pt;}
.ya5{bottom:307.706667pt;}
.ye{bottom:309.452000pt;}
.yd2{bottom:312.346667pt;}
.y7b{bottom:314.426667pt;}
.y108{bottom:314.586667pt;}
.y14e{bottom:317.786667pt;}
.y53{bottom:319.226667pt;}
.y46{bottom:319.546667pt;}
.yfc{bottom:320.506667pt;}
.y12d{bottom:323.546667pt;}
.ya4{bottom:326.106667pt;}
.yd1{bottom:330.746667pt;}
.y7a{bottom:332.826667pt;}
.y14d{bottom:336.986667pt;}
.y45{bottom:337.946667pt;}
.yfb{bottom:338.906667pt;}
.y12c{bottom:341.946667pt;}
.yd{bottom:343.809333pt;}
.ya3{bottom:344.506667pt;}
.yd0{bottom:349.146667pt;}
.y79{bottom:351.226667pt;}
.y14c{bottom:356.186667pt;}
.y44{bottom:356.346667pt;}
.yfa{bottom:357.306667pt;}
.y12b{bottom:360.346667pt;}
.yc{bottom:362.706666pt;}
.ya2{bottom:362.906667pt;}
.ycf{bottom:367.546667pt;}
.y78{bottom:369.626667pt;}
.y43{bottom:374.746667pt;}
.yf9{bottom:375.706667pt;}
.y12a{bottom:378.746667pt;}
.ya1{bottom:381.306667pt;}
.yce{bottom:385.946667pt;}
.y77{bottom:388.026667pt;}
.y14b{bottom:393.026667pt;}
.y42{bottom:393.186667pt;}
.yf8{bottom:394.146667pt;}
.y129{bottom:397.186667pt;}
.ya0{bottom:399.746667pt;}
.ycd{bottom:404.386667pt;}
.y76{bottom:406.466667pt;}
.yf7{bottom:409.026667pt;}
.y41{bottom:411.586667pt;}
.y14a{bottom:412.226667pt;}
.y128{bottom:415.586667pt;}
.y9f{bottom:418.146667pt;}
.ycc{bottom:422.786667pt;}
.y75{bottom:424.866667pt;}
.y40{bottom:429.986667pt;}
.y149{bottom:431.426667pt;}
.y127{bottom:433.986667pt;}
.y9e{bottom:436.546667pt;}
.ycb{bottom:441.186667pt;}
.y74{bottom:443.266667pt;}
.yf6{bottom:445.826667pt;}
.y3f{bottom:448.386667pt;}
.y148{bottom:450.626667pt;}
.y126{bottom:452.386667pt;}
.y9d{bottom:454.946667pt;}
.yca{bottom:459.586667pt;}
.y73{bottom:461.666667pt;}
.yb{bottom:462.990669pt;}
.yf5{bottom:465.666667pt;}
.y3e{bottom:466.786667pt;}
.y147{bottom:469.826667pt;}
.y9c{bottom:473.346667pt;}
.yc9{bottom:477.986667pt;}
.ya{bottom:478.990666pt;}
.y72{bottom:480.066667pt;}
.yf4{bottom:484.866667pt;}
.y3d{bottom:485.186667pt;}
.y146{bottom:489.026667pt;}
.y125{bottom:489.186667pt;}
.y9b{bottom:491.746667pt;}
.y9{bottom:494.990666pt;}
.yc8{bottom:496.386667pt;}
.y3c{bottom:503.586667pt;}
.yf3{bottom:504.066667pt;}
.y145{bottom:508.226667pt;}
.y9a{bottom:510.146667pt;}
.yc7{bottom:514.786667pt;}
.y71{bottom:516.866667pt;}
.y3b{bottom:521.986667pt;}
.yf2{bottom:523.266667pt;}
.y144{bottom:527.426667pt;}
.y99{bottom:528.546667pt;}
.yc6{bottom:533.186667pt;}
.y70{bottom:535.266667pt;}
.y3a{bottom:540.386667pt;}
.y124{bottom:540.866667pt;}
.yf1{bottom:542.466667pt;}
.y143{bottom:546.626667pt;}
.y98{bottom:546.946667pt;}
.yc5{bottom:551.586667pt;}
.y6f{bottom:553.666667pt;}
.y39{bottom:558.786667pt;}
.y123{bottom:560.706667pt;}
.yf0{bottom:561.666667pt;}
.y97{bottom:565.346667pt;}
.y142{bottom:565.826667pt;}
.yc4{bottom:569.986667pt;}
.y6e{bottom:572.066667pt;}
.y8{bottom:573.786667pt;}
.y38{bottom:577.186667pt;}
.y122{bottom:579.906667pt;}
.yee{bottom:580.866667pt;}
.y96{bottom:583.773333pt;}
.yc3{bottom:588.413333pt;}
.y6d{bottom:590.493333pt;}
.y7{bottom:592.685334pt;}
.y37{bottom:595.613333pt;}
.y121{bottom:599.133333pt;}
.yed{bottom:600.093333pt;}
.y141{bottom:602.653333pt;}
.yc2{bottom:606.813333pt;}
.y6c{bottom:608.893333pt;}
.y36{bottom:614.013333pt;}
.y120{bottom:618.333333pt;}
.y95{bottom:620.573333pt;}
.y140{bottom:621.853333pt;}
.yc1{bottom:625.213333pt;}
.y6b{bottom:627.293333pt;}
.y35{bottom:632.413333pt;}
.y94{bottom:636.093333pt;}
.yec{bottom:636.893333pt;}
.y11f{bottom:637.533333pt;}
.y13f{bottom:641.053333pt;}
.yc0{bottom:643.613333pt;}
.y6{bottom:645.598667pt;}
.y6a{bottom:645.693333pt;}
.y34{bottom:650.813333pt;}
.y93{bottom:655.293333pt;}
.yeb{bottom:656.093333pt;}
.y11e{bottom:656.733333pt;}
.y13e{bottom:660.253333pt;}
.ybf{bottom:662.013333pt;}
.y69{bottom:664.093333pt;}
.y3{bottom:668.977329pt;}
.y33{bottom:669.213333pt;}
.y92{bottom:674.493333pt;}
.yea{bottom:675.293333pt;}
.y11d{bottom:675.933333pt;}
.ybe{bottom:680.413333pt;}
.y68{bottom:682.493333pt;}
.y32{bottom:687.613333pt;}
.y91{bottom:693.693333pt;}
.ye9{bottom:694.493333pt;}
.y11c{bottom:695.133333pt;}
.y13d{bottom:697.053333pt;}
.ybd{bottom:698.813333pt;}
.y67{bottom:700.893333pt;}
.y31{bottom:706.013333pt;}
.y90{bottom:712.893333pt;}
.ye8{bottom:713.693333pt;}
.y13c{bottom:716.253333pt;}
.y52{bottom:724.413333pt;}
.y11b{bottom:731.933333pt;}
.y8f{bottom:732.093333pt;}
.ye7{bottom:732.893333pt;}
.y13b{bottom:735.453333pt;}
.ybc{bottom:735.613333pt;}
.y66{bottom:737.693333pt;}
.y30{bottom:742.813333pt;}
.y11a{bottom:751.133333pt;}
.y8e{bottom:751.293333pt;}
.ye6{bottom:752.093333pt;}
.ybb{bottom:754.013333pt;}
.y13a{bottom:755.293333pt;}
.y65{bottom:756.093333pt;}
.y2f{bottom:761.213333pt;}
.y119{bottom:770.333333pt;}
.y8c{bottom:770.493333pt;}
.ye4{bottom:771.293333pt;}
.yba{bottom:772.413333pt;}
.y64{bottom:774.533333pt;}
.y2e{bottom:779.653333pt;}
.y2{bottom:781.661334pt;}
.y118{bottom:789.573333pt;}
.y8b{bottom:789.733333pt;}
.yb9{bottom:790.853333pt;}
.y63{bottom:792.933333pt;}
.y2d{bottom:798.053333pt;}
.ye3{bottom:808.133333pt;}
.y117{bottom:808.773333pt;}
.y8a{bottom:808.933333pt;}
.yb8{bottom:809.253333pt;}
.y62{bottom:811.333333pt;}
.y2c{bottom:816.453333pt;}
.ye2{bottom:827.333333pt;}
.yb7{bottom:827.653333pt;}
.y116{bottom:827.973333pt;}
.y89{bottom:828.133333pt;}
.y61{bottom:829.733333pt;}
.y2b{bottom:834.853333pt;}
.yb5{bottom:843.813333pt;}
.ye1{bottom:846.533333pt;}
.y115{bottom:847.173333pt;}
.y88{bottom:847.333333pt;}
.y60{bottom:848.453333pt;}
.y2a{bottom:853.093333pt;}
.y1{bottom:859.312000pt;}
.yb4{bottom:864.773333pt;}
.ye0{bottom:865.733333pt;}
.y114{bottom:866.373333pt;}
.y86{bottom:867.173333pt;}
.y5f{bottom:871.173333pt;}
.y29{bottom:871.493333pt;}
.yb3{bottom:884.773333pt;}
.y113{bottom:885.573333pt;}
.y28{bottom:889.893333pt;}
.ydf{bottom:902.533333pt;}
.y112{bottom:904.773333pt;}
.y27{bottom:908.293333pt;}
.yb2{bottom:921.573333pt;}
.yde{bottom:921.733333pt;}
.y26{bottom:926.693333pt;}
.y23{bottom:945.573333pt;}
.y22{bottom:963.493333pt;}
.y21{bottom:993.120000pt;}
.he{height:19.200000pt;}
.hf{height:19.232000pt;}
.h12{height:20.000000pt;}
.h11{height:20.032000pt;}
.h14{height:20.960000pt;}
.h7{height:28.560000pt;}
.h13{height:36.800000pt;}
.h15{height:36.832000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hc{height:53.375000pt;}
.h10{height:55.200000pt;}
.ha{height:58.563750pt;}
.hd{height:62.781250pt;}
.hb{height:62.812500pt;}
.h9{height:64.500000pt;}
.h16{height:66.404375pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wd{width:63.680000pt;}
.wf{width:63.712000pt;}
.wb{width:63.840000pt;}
.wc{width:69.312000pt;}
.w10{width:73.600000pt;}
.we{width:76.320000pt;}
.w9{width:84.032000pt;}
.wa{width:86.080000pt;}
.w14{width:97.280000pt;}
.w13{width:97.312000pt;}
.w12{width:97.472000pt;}
.w1c{width:98.592000pt;}
.w1d{width:98.720000pt;}
.w1e{width:98.752000pt;}
.w11{width:98.880000pt;}
.w19{width:100.000000pt;}
.w18{width:100.032000pt;}
.w17{width:103.872000pt;}
.w16{width:104.000000pt;}
.w1b{width:104.032000pt;}
.w6{width:104.512000pt;}
.w7{width:108.032000pt;}
.w8{width:155.360000pt;}
.w5{width:159.520000pt;}
.w15{width:196.346667pt;}
.w1a{width:207.866667pt;}
.w1f{width:208.026667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.x11{left:137.626655pt;}
.xe{left:144.026655pt;}
.x24{left:154.106667pt;}
.x29{left:156.026667pt;}
.x20{left:163.866667pt;}
.x7{left:179.066655pt;}
.x4{left:180.874667pt;}
.x18{left:182.106667pt;}
.x12{left:187.226655pt;}
.x10{left:215.546655pt;}
.x19{left:245.946667pt;}
.x14{left:255.546667pt;}
.x25{left:258.106667pt;}
.x2a{left:260.026667pt;}
.x21{left:262.746667pt;}
.xb{left:296.226655pt;}
.x1a{left:315.266667pt;}
.xd{left:322.946655pt;}
.xa{left:334.306655pt;}
.xc{left:348.706655pt;}
.x15{left:360.066667pt;}
.x26{left:361.986667pt;}
.x2b{left:364.066667pt;}
.x9{left:376.706655pt;}
.x1b{left:378.946667pt;}
.x3{left:404.408000pt;}
.x8{left:408.066655pt;}
.x1c{left:455.266667pt;}
.x22{left:457.533333pt;}
.x27{left:462.013333pt;}
.x16{left:468.093333pt;}
.x1d{left:518.973333pt;}
.x23{left:554.813333pt;}
.x28{left:562.013333pt;}
.x1e{left:582.813333pt;}
.x17{left:623.453333pt;}
.x1f{left:646.533333pt;}
.xf{left:697.893321pt;}
.x6{left:705.253321pt;}
}




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