
    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_50a7cff37dfabfb5616965fc.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_7996fea290a414a7abf5a7f5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_63f4b3464cc07d10bafe6b4d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_de35a8da0a6de30189b4ed84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_450916daa87cb73b5ba84b82.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37f48bc3f940bf9c31b270b6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff77d747fa075c155efe93ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_a3deb51827e93fabce62cca8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_b0430f438e677be98ef0f52d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4beeba0f193f95cf65c625b5.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106560px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.828000px;}
.ls12{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.512000px;}
.ls13{letter-spacing:1.620000px;}
.ls10{letter-spacing:3.060000px;}
.ls1c{letter-spacing:11.466720px;}
.ls9{letter-spacing:22.986720px;}
.lsb{letter-spacing:27.540000px;}
.ls1a{letter-spacing:41.706720px;}
.lse{letter-spacing:114.570720px;}
.ls19{letter-spacing:118.170720px;}
.lsa{letter-spacing:137.610720px;}
.ls2{letter-spacing:161.370720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.274000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-2785.768320px;}
._9{margin-left:-1572.181200px;}
._6{margin-left:-1402.989120px;}
._8{margin-left:-994.028400px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.421680px;}
._a{margin-left:-572.482080px;}
._15{margin-left:-554.814240px;}
._1b{margin-left:-508.440000px;}
._1c{margin-left:-506.736000px;}
._16{margin-left:-428.114160px;}
._14{margin-left:-317.487360px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._3{margin-left:-4.721040px;}
._22{margin-left:-3.669840px;}
._1{margin-left:-2.445840px;}
._5{margin-left:-1.059840px;}
._0{width:1.365120px;}
._2{width:2.550720px;}
._1d{width:3.618480px;}
._21{width:4.736400px;}
._1f{width:5.942160px;}
._20{width:7.068960px;}
._1e{width:8.306640px;}
._2e{width:9.750240px;}
._24{width:10.995840px;}
._25{width:12.191040px;}
._28{width:13.540080px;}
._33{width:16.600800px;}
._34{width:18.887520px;}
._27{width:27.540000px;}
._30{width:42.190560px;}
._32{width:43.992720px;}
._29{width:71.763840px;}
._2a{width:105.133440px;}
._2b{width:141.084000px;}
._31{width:143.364240px;}
._2d{width:146.246880px;}
._2c{width:156.586800px;}
._26{width:197.604000px;}
._23{width:201.204000px;}
._2f{width:202.825440px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.240000px;}
.y136{bottom:5.220000px;}
.y13a{bottom:8.820000px;}
.y10b{bottom:18.720000px;}
.y108{bottom:20.520000px;}
.y13c{bottom:23.220000px;}
.y139{bottom:25.920000px;}
.y138{bottom:43.200000px;}
.y6{bottom:59.976000px;}
.ya4{bottom:88.416000px;}
.yfd{bottom:91.656000px;}
.y6c{bottom:92.736000px;}
.y124{bottom:92.916000px;}
.y88{bottom:94.356000px;}
.y34{bottom:97.956000px;}
.ya3{bottom:108.396000px;}
.yfc{bottom:109.656000px;}
.y6b{bottom:112.536000px;}
.y123{bottom:112.716000px;}
.y15a{bottom:113.256000px;}
.y87{bottom:114.156000px;}
.yda{bottom:116.496000px;}
.y33{bottom:117.936000px;}
.yfb{bottom:127.656000px;}
.ya2{bottom:128.196000px;}
.y6a{bottom:132.336000px;}
.y122{bottom:132.696000px;}
.y159{bottom:133.056000px;}
.y86{bottom:133.956000px;}
.yd9{bottom:136.476000px;}
.y32{bottom:137.736000px;}
.ya1{bottom:147.996000px;}
.yfa{bottom:151.410000px;}
.y69{bottom:152.310000px;}
.y121{bottom:152.490000px;}
.y158{bottom:153.030000px;}
.y85{bottom:153.750000px;}
.yd8{bottom:156.270000px;}
.y31{bottom:157.530000px;}
.ya0{bottom:167.790000px;}
.yf9{bottom:171.210000px;}
.y68{bottom:172.110000px;}
.y120{bottom:172.290000px;}
.y157{bottom:172.830000px;}
.y84{bottom:173.730000px;}
.yd7{bottom:176.070000px;}
.y30{bottom:177.330000px;}
.y9f{bottom:187.590000px;}
.yf8{bottom:191.190000px;}
.y67{bottom:191.910000px;}
.y11f{bottom:192.090000px;}
.y156{bottom:192.630000px;}
.y83{bottom:193.530000px;}
.yd6{bottom:195.870000px;}
.y2f{bottom:197.130000px;}
.y9e{bottom:207.570000px;}
.yd5{bottom:210.630000px;}
.yf7{bottom:210.990000px;}
.y66{bottom:211.710000px;}
.y11e{bottom:211.890000px;}
.y155{bottom:212.430000px;}
.y82{bottom:213.330000px;}
.y2e{bottom:217.110000px;}
.y9d{bottom:227.370000px;}
.yd4{bottom:228.630000px;}
.yf6{bottom:230.790000px;}
.y65{bottom:231.510000px;}
.y11d{bottom:231.870000px;}
.y154{bottom:232.230000px;}
.y81{bottom:233.130000px;}
.y2d{bottom:236.910000px;}
.y9c{bottom:242.130000px;}
.yd3{bottom:246.630000px;}
.yf5{bottom:250.590000px;}
.y64{bottom:251.490000px;}
.y11c{bottom:251.670000px;}
.y153{bottom:252.210000px;}
.y80{bottom:252.930000px;}
.y2c{bottom:256.710000px;}
.y9b{bottom:260.130000px;}
.y11b{bottom:266.430000px;}
.yd2{bottom:270.390000px;}
.y63{bottom:271.290000px;}
.y152{bottom:272.010000px;}
.y7f{bottom:272.910000px;}
.y2b{bottom:276.510000px;}
.y99{bottom:278.130000px;}
.y11a{bottom:284.475000px;}
.yd1{bottom:290.415000px;}
.y62{bottom:291.135000px;}
.y151{bottom:291.855000px;}
.y7e{bottom:292.755000px;}
.y2a{bottom:296.355000px;}
.y98{bottom:301.935000px;}
.y119{bottom:302.475000px;}
.yd0{bottom:310.215000px;}
.y61{bottom:310.935000px;}
.y150{bottom:311.655000px;}
.y7d{bottom:312.555000px;}
.y29{bottom:316.335000px;}
.y118{bottom:320.475000px;}
.y97{bottom:321.735000px;}
.ycf{bottom:330.015000px;}
.y60{bottom:330.735000px;}
.y14f{bottom:331.455000px;}
.y7c{bottom:332.355000px;}
.y28{bottom:336.135000px;}
.y117{bottom:338.475000px;}
.y96{bottom:341.715000px;}
.yf4{bottom:344.775000px;}
.yce{bottom:349.815000px;}
.y5f{bottom:350.715000px;}
.y14e{bottom:351.435000px;}
.y7b{bottom:352.155000px;}
.y27{bottom:355.935000px;}
.y116{bottom:356.475000px;}
.y95{bottom:361.515000px;}
.yf3{bottom:362.775000px;}
.ycd{bottom:369.615000px;}
.y5e{bottom:370.515000px;}
.y14d{bottom:371.235000px;}
.y7a{bottom:372.135000px;}
.y26{bottom:375.735000px;}
.yf2{bottom:380.775000px;}
.y94{bottom:381.315000px;}
.ycc{bottom:389.595000px;}
.y5d{bottom:390.315000px;}
.y14c{bottom:391.035000px;}
.y25{bottom:395.535000px;}
.y115{bottom:397.515000px;}
.y79{bottom:400.935000px;}
.y93{bottom:401.115000px;}
.yf1{bottom:404.535000px;}
.ycb{bottom:409.395000px;}
.y5c{bottom:410.115000px;}
.y14b{bottom:410.835000px;}
.y24{bottom:415.515000px;}
.y114{bottom:417.315000px;}
.y78{bottom:420.735000px;}
.y92{bottom:420.915000px;}
.yf0{bottom:424.515000px;}
.yca{bottom:429.195000px;}
.y5b{bottom:429.915000px;}
.y14a{bottom:430.635000px;}
.y23{bottom:435.315000px;}
.y113{bottom:437.115000px;}
.y77{bottom:440.535000px;}
.y91{bottom:440.895000px;}
.yc9{bottom:443.955000px;}
.yef{bottom:444.315000px;}
.y5a{bottom:449.895000px;}
.y149{bottom:450.615000px;}
.y22{bottom:455.115000px;}
.y112{bottom:457.095000px;}
.y76{bottom:460.335000px;}
.y90{bottom:460.695000px;}
.yc8{bottom:461.955000px;}
.yee{bottom:464.115000px;}
.y147{bottom:465.375000px;}
.y59{bottom:469.695000px;}
.y21{bottom:474.915000px;}
.y111{bottom:476.895000px;}
.yc7{bottom:479.955000px;}
.y75{bottom:480.315000px;}
.y8f{bottom:480.495000px;}
.y148{bottom:483.375000px;}
.yed{bottom:483.915000px;}
.y58{bottom:489.495000px;}
.y20{bottom:494.715000px;}
.y110{bottom:496.695000px;}
.y8e{bottom:500.295000px;}
.y146{bottom:503.355000px;}
.yc6{bottom:503.715000px;}
.y74{bottom:509.115000px;}
.y57{bottom:509.295000px;}
.y1f{bottom:514.695000px;}
.y10f{bottom:516.495000px;}
.y8d{bottom:520.095000px;}
.y145{bottom:523.335000px;}
.yc5{bottom:523.695000px;}
.y73{bottom:528.915000px;}
.y56{bottom:529.095000px;}
.y1e{bottom:534.495000px;}
.y10e{bottom:536.295000px;}
.y8c{bottom:540.075000px;}
.yc4{bottom:543.495000px;}
.y72{bottom:548.715000px;}
.y55{bottom:549.075000px;}
.y1d{bottom:554.295000px;}
.y10d{bottom:556.275000px;}
.y8b{bottom:559.875000px;}
.yc3{bottom:563.295000px;}
.y144{bottom:564.375000px;}
.y71{bottom:568.545000px;}
.y54{bottom:568.905000px;}
.y10c{bottom:571.065000px;}
.y1c{bottom:574.125000px;}
.yec{bottom:578.085000px;}
.y8a{bottom:579.705000px;}
.yc2{bottom:583.125000px;}
.y143{bottom:584.205000px;}
.y70{bottom:588.525000px;}
.y53{bottom:588.705000px;}
.y10a{bottom:589.065000px;}
.y1b{bottom:593.925000px;}
.yeb{bottom:596.085000px;}
.y89{bottom:599.505000px;}
.yc1{bottom:602.925000px;}
.y142{bottom:604.185000px;}
.y6f{bottom:608.325000px;}
.y52{bottom:608.505000px;}
.y1a{bottom:613.905000px;}
.yea{bottom:614.085000px;}
.y109{bottom:622.545000px;}
.yc0{bottom:622.905000px;}
.y141{bottom:623.985000px;}
.y6e{bottom:628.125000px;}
.y51{bottom:628.305000px;}
.y19{bottom:633.705000px;}
.ye9{bottom:637.845000px;}
.ybf{bottom:642.705000px;}
.y140{bottom:643.785000px;}
.y6d{bottom:644.685000px;}
.y50{bottom:648.285000px;}
.y18{bottom:653.505000px;}
.ye8{bottom:657.825000px;}
.ybe{bottom:662.505000px;}
.y13f{bottom:663.585000px;}
.y4f{bottom:668.085000px;}
.y17{bottom:673.305000px;}
.ybd{bottom:677.265000px;}
.ye7{bottom:677.625000px;}
.y13e{bottom:683.385000px;}
.y4e{bottom:687.885000px;}
.y16{bottom:693.105000px;}
.ybc{bottom:695.265000px;}
.ye6{bottom:697.425000px;}
.y13d{bottom:703.365000px;}
.y4d{bottom:707.685000px;}
.y15{bottom:713.085000px;}
.ybb{bottom:713.265000px;}
.ye5{bottom:717.225000px;}
.y137{bottom:718.125000px;}
.y4c{bottom:727.485000px;}
.y107{bottom:728.385000px;}
.y14{bottom:732.885000px;}
.y13b{bottom:736.125000px;}
.yba{bottom:737.025000px;}
.y4b{bottom:747.465000px;}
.y106{bottom:752.145000px;}
.y135{bottom:756.105000px;}
.yb9{bottom:757.005000px;}
.y4a{bottom:767.265000px;}
.y105{bottom:771.945000px;}
.y13{bottom:774.825000px;}
.y134{bottom:776.085000px;}
.yb8{bottom:776.805000px;}
.y49{bottom:787.065000px;}
.y104{bottom:791.745000px;}
.yb7{bottom:796.605000px;}
.y12{bottom:803.625000px;}
.y48{bottom:806.865000px;}
.ye4{bottom:811.365000px;}
.y103{bottom:811.725000px;}
.yb6{bottom:816.405000px;}
.y133{bottom:817.125000px;}
.y11{bottom:823.425000px;}
.y47{bottom:826.665000px;}
.ye3{bottom:829.365000px;}
.y102{bottom:831.525000px;}
.yb5{bottom:836.205000px;}
.y132{bottom:836.925000px;}
.y10{bottom:843.225000px;}
.y46{bottom:846.645000px;}
.ye2{bottom:847.410000px;}
.y101{bottom:851.370000px;}
.yb4{bottom:856.230000px;}
.y131{bottom:856.950000px;}
.yf{bottom:863.070000px;}
.y45{bottom:866.490000px;}
.ye1{bottom:871.170000px;}
.yb3{bottom:876.030000px;}
.y130{bottom:876.750000px;}
.ye{bottom:883.050000px;}
.y44{bottom:886.290000px;}
.yb2{bottom:890.790000px;}
.ye0{bottom:890.970000px;}
.y12f{bottom:896.550000px;}
.yd{bottom:902.850000px;}
.y43{bottom:906.090000px;}
.yb1{bottom:908.790000px;}
.ydf{bottom:910.950000px;}
.y12e{bottom:916.350000px;}
.yc{bottom:922.650000px;}
.y42{bottom:925.890000px;}
.yb0{bottom:926.790000px;}
.yde{bottom:930.750000px;}
.y12d{bottom:936.150000px;}
.yb{bottom:944.790000px;}
.y41{bottom:945.870000px;}
.yaf{bottom:950.550000px;}
.y12c{bottom:956.130000px;}
.ya{bottom:964.590000px;}
.y100{bottom:965.310000px;}
.y40{bottom:965.670000px;}
.yae{bottom:970.350000px;}
.y12b{bottom:975.930000px;}
.yff{bottom:983.310000px;}
.y9{bottom:984.930000px;}
.y3f{bottom:985.470000px;}
.yad{bottom:990.150000px;}
.y12a{bottom:995.730000px;}
.yfe{bottom:1001.310000px;}
.y3e{bottom:1005.270000px;}
.y8{bottom:1006.170000px;}
.yac{bottom:1010.130000px;}
.y129{bottom:1015.530000px;}
.y3d{bottom:1025.070000px;}
.y7{bottom:1029.750000px;}
.yab{bottom:1029.930000px;}
.y128{bottom:1035.330000px;}
.ydd{bottom:1044.690000px;}
.y3c{bottom:1045.050000px;}
.yaa{bottom:1049.730000px;}
.y127{bottom:1050.270000px;}
.ydc{bottom:1062.690000px;}
.y3b{bottom:1064.850000px;}
.y5{bottom:1068.090000px;}
.y126{bottom:1068.270000px;}
.ya9{bottom:1069.530000px;}
.ydb{bottom:1080.690000px;}
.y3a{bottom:1084.650000px;}
.y125{bottom:1086.270000px;}
.ya8{bottom:1089.330000px;}
.y4{bottom:1098.870000px;}
.ya7{bottom:1104.270000px;}
.y39{bottom:1104.450000px;}
.ya6{bottom:1122.270000px;}
.y38{bottom:1124.250000px;}
.y3{bottom:1129.830000px;}
.ya5{bottom:1140.300000px;}
.y37{bottom:1144.260000px;}
.y2{bottom:1160.640000px;}
.y36{bottom:1164.060000px;}
.y1{bottom:1192.140000px;}
.y35{bottom:1193.400000px;}
.hd{height:17.100000px;}
.he{height:17.136000px;}
.hc{height:17.280000px;}
.hb{height:17.316000px;}
.h11{height:19.260000px;}
.h10{height:32.760000px;}
.hf{height:34.560000px;}
.h13{height:37.260000px;}
.h12{height:57.240000px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:73.620000px;}
.w1b{width:73.800000px;}
.w1d{width:88.200000px;}
.w23{width:90.720000px;}
.w22{width:94.896000px;}
.w19{width:105.480000px;}
.w1c{width:105.516000px;}
.w20{width:105.696000px;}
.wf{width:117.576000px;}
.w15{width:120.636000px;}
.w17{width:126.576000px;}
.w12{width:126.756000px;}
.w13{width:133.200000px;}
.w1a{width:137.376000px;}
.w18{width:137.556000px;}
.w1f{width:147.996000px;}
.w9{width:148.140000px;}
.w1e{width:158.430000px;}
.wb{width:158.790000px;}
.w7{width:169.230000px;}
.w10{width:169.380000px;}
.w16{width:169.560000px;}
.wd{width:190.650000px;}
.w6{width:201.270000px;}
.w3{width:232.950000px;}
.w4{width:233.130000px;}
.w5{width:328.530000px;}
.wc{width:339.150000px;}
.wa{width:371.010000px;}
.w8{width:381.675000px;}
.w14{width:491.685000px;}
.we{width:505.185000px;}
.w11{width:519.945000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.xe{left:49.860000px;}
.x1{left:54.179987px;}
.x11{left:55.800000px;}
.x16{left:57.060000px;}
.x22{left:80.999987px;}
.x5{left:96.336000px;}
.x3{left:108.035987px;}
.x17{left:184.350000px;}
.x1d{left:215.130000px;}
.x18{left:322.635000px;}
.x7{left:330.015000px;}
.x1e{left:363.855000px;}
.x9{left:425.595000px;}
.x19{left:429.015000px;}
.xd{left:436.215000px;}
.xc{left:468.075000px;}
.x1f{left:470.265000px;}
.xb{left:478.725000px;}
.x14{left:547.305000px;}
.xf{left:555.765000px;}
.x8{left:563.865000px;}
.x1a{left:567.105000px;}
.x12{left:576.645000px;}
.xa{left:627.585000px;}
.x1b{left:641.625000px;}
.x20{left:650.985000px;}
.x15{left:668.850000px;}
.x10{left:674.070000px;}
.x4{left:689.549987px;}
.x13{left:704.130000px;}
.x21{left:746.610000px;}
.x1c{left:747.870000px;}
.x2{left:804.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094720pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.344000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls10{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:10.192640pt;}
.ls9{letter-spacing:20.432640pt;}
.lsb{letter-spacing:24.480000pt;}
.ls1a{letter-spacing:37.072640pt;}
.lse{letter-spacing:101.840640pt;}
.ls19{letter-spacing:105.040640pt;}
.lsa{letter-spacing:122.320640pt;}
.ls2{letter-spacing:143.440640pt;}
.ws0{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.240000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.688000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-2476.238507pt;}
._9{margin-left:-1397.494400pt;}
._6{margin-left:-1247.101440pt;}
._8{margin-left:-883.580800pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.708160pt;}
._a{margin-left:-508.872960pt;}
._15{margin-left:-493.168213pt;}
._1b{margin-left:-451.946667pt;}
._1c{margin-left:-450.432000pt;}
._16{margin-left:-380.545920pt;}
._14{margin-left:-282.210987pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._3{margin-left:-4.196480pt;}
._22{margin-left:-3.262080pt;}
._1{margin-left:-2.174080pt;}
._5{margin-left:-0.942080pt;}
._0{width:1.213440pt;}
._2{width:2.267307pt;}
._1d{width:3.216427pt;}
._21{width:4.210133pt;}
._1f{width:5.281920pt;}
._20{width:6.283520pt;}
._1e{width:7.383680pt;}
._2e{width:8.666880pt;}
._24{width:9.774080pt;}
._25{width:10.836480pt;}
._28{width:12.035627pt;}
._33{width:14.756267pt;}
._34{width:16.788907pt;}
._27{width:24.480000pt;}
._30{width:37.502720pt;}
._32{width:39.104640pt;}
._29{width:63.790080pt;}
._2a{width:93.451947pt;}
._2b{width:125.408000pt;}
._31{width:127.434880pt;}
._2d{width:129.997227pt;}
._2c{width:139.188267pt;}
._26{width:175.648000pt;}
._23{width:178.848000pt;}
._2f{width:180.289280pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.880000pt;}
.y136{bottom:4.640000pt;}
.y13a{bottom:7.840000pt;}
.y10b{bottom:16.640000pt;}
.y108{bottom:18.240000pt;}
.y13c{bottom:20.640000pt;}
.y139{bottom:23.040000pt;}
.y138{bottom:38.400000pt;}
.y6{bottom:53.312000pt;}
.ya4{bottom:78.592000pt;}
.yfd{bottom:81.472000pt;}
.y6c{bottom:82.432000pt;}
.y124{bottom:82.592000pt;}
.y88{bottom:83.872000pt;}
.y34{bottom:87.072000pt;}
.ya3{bottom:96.352000pt;}
.yfc{bottom:97.472000pt;}
.y6b{bottom:100.032000pt;}
.y123{bottom:100.192000pt;}
.y15a{bottom:100.672000pt;}
.y87{bottom:101.472000pt;}
.yda{bottom:103.552000pt;}
.y33{bottom:104.832000pt;}
.yfb{bottom:113.472000pt;}
.ya2{bottom:113.952000pt;}
.y6a{bottom:117.632000pt;}
.y122{bottom:117.952000pt;}
.y159{bottom:118.272000pt;}
.y86{bottom:119.072000pt;}
.yd9{bottom:121.312000pt;}
.y32{bottom:122.432000pt;}
.ya1{bottom:131.552000pt;}
.yfa{bottom:134.586667pt;}
.y69{bottom:135.386667pt;}
.y121{bottom:135.546667pt;}
.y158{bottom:136.026667pt;}
.y85{bottom:136.666667pt;}
.yd8{bottom:138.906667pt;}
.y31{bottom:140.026667pt;}
.ya0{bottom:149.146667pt;}
.yf9{bottom:152.186667pt;}
.y68{bottom:152.986667pt;}
.y120{bottom:153.146667pt;}
.y157{bottom:153.626667pt;}
.y84{bottom:154.426667pt;}
.yd7{bottom:156.506667pt;}
.y30{bottom:157.626667pt;}
.y9f{bottom:166.746667pt;}
.yf8{bottom:169.946667pt;}
.y67{bottom:170.586667pt;}
.y11f{bottom:170.746667pt;}
.y156{bottom:171.226667pt;}
.y83{bottom:172.026667pt;}
.yd6{bottom:174.106667pt;}
.y2f{bottom:175.226667pt;}
.y9e{bottom:184.506667pt;}
.yd5{bottom:187.226667pt;}
.yf7{bottom:187.546667pt;}
.y66{bottom:188.186667pt;}
.y11e{bottom:188.346667pt;}
.y155{bottom:188.826667pt;}
.y82{bottom:189.626667pt;}
.y2e{bottom:192.986667pt;}
.y9d{bottom:202.106667pt;}
.yd4{bottom:203.226667pt;}
.yf6{bottom:205.146667pt;}
.y65{bottom:205.786667pt;}
.y11d{bottom:206.106667pt;}
.y154{bottom:206.426667pt;}
.y81{bottom:207.226667pt;}
.y2d{bottom:210.586667pt;}
.y9c{bottom:215.226667pt;}
.yd3{bottom:219.226667pt;}
.yf5{bottom:222.746667pt;}
.y64{bottom:223.546667pt;}
.y11c{bottom:223.706667pt;}
.y153{bottom:224.186667pt;}
.y80{bottom:224.826667pt;}
.y2c{bottom:228.186667pt;}
.y9b{bottom:231.226667pt;}
.y11b{bottom:236.826667pt;}
.yd2{bottom:240.346667pt;}
.y63{bottom:241.146667pt;}
.y152{bottom:241.786667pt;}
.y7f{bottom:242.586667pt;}
.y2b{bottom:245.786667pt;}
.y99{bottom:247.226667pt;}
.y11a{bottom:252.866667pt;}
.yd1{bottom:258.146667pt;}
.y62{bottom:258.786667pt;}
.y151{bottom:259.426667pt;}
.y7e{bottom:260.226667pt;}
.y2a{bottom:263.426667pt;}
.y98{bottom:268.386667pt;}
.y119{bottom:268.866667pt;}
.yd0{bottom:275.746667pt;}
.y61{bottom:276.386667pt;}
.y150{bottom:277.026667pt;}
.y7d{bottom:277.826667pt;}
.y29{bottom:281.186667pt;}
.y118{bottom:284.866667pt;}
.y97{bottom:285.986667pt;}
.ycf{bottom:293.346667pt;}
.y60{bottom:293.986667pt;}
.y14f{bottom:294.626667pt;}
.y7c{bottom:295.426667pt;}
.y28{bottom:298.786667pt;}
.y117{bottom:300.866667pt;}
.y96{bottom:303.746667pt;}
.yf4{bottom:306.466667pt;}
.yce{bottom:310.946667pt;}
.y5f{bottom:311.746667pt;}
.y14e{bottom:312.386667pt;}
.y7b{bottom:313.026667pt;}
.y27{bottom:316.386667pt;}
.y116{bottom:316.866667pt;}
.y95{bottom:321.346667pt;}
.yf3{bottom:322.466667pt;}
.ycd{bottom:328.546667pt;}
.y5e{bottom:329.346667pt;}
.y14d{bottom:329.986667pt;}
.y7a{bottom:330.786667pt;}
.y26{bottom:333.986667pt;}
.yf2{bottom:338.466667pt;}
.y94{bottom:338.946667pt;}
.ycc{bottom:346.306667pt;}
.y5d{bottom:346.946667pt;}
.y14c{bottom:347.586667pt;}
.y25{bottom:351.586667pt;}
.y115{bottom:353.346667pt;}
.y79{bottom:356.386667pt;}
.y93{bottom:356.546667pt;}
.yf1{bottom:359.586667pt;}
.ycb{bottom:363.906667pt;}
.y5c{bottom:364.546667pt;}
.y14b{bottom:365.186667pt;}
.y24{bottom:369.346667pt;}
.y114{bottom:370.946667pt;}
.y78{bottom:373.986667pt;}
.y92{bottom:374.146667pt;}
.yf0{bottom:377.346667pt;}
.yca{bottom:381.506667pt;}
.y5b{bottom:382.146667pt;}
.y14a{bottom:382.786667pt;}
.y23{bottom:386.946667pt;}
.y113{bottom:388.546667pt;}
.y77{bottom:391.586667pt;}
.y91{bottom:391.906667pt;}
.yc9{bottom:394.626667pt;}
.yef{bottom:394.946667pt;}
.y5a{bottom:399.906667pt;}
.y149{bottom:400.546667pt;}
.y22{bottom:404.546667pt;}
.y112{bottom:406.306667pt;}
.y76{bottom:409.186667pt;}
.y90{bottom:409.506667pt;}
.yc8{bottom:410.626667pt;}
.yee{bottom:412.546667pt;}
.y147{bottom:413.666667pt;}
.y59{bottom:417.506667pt;}
.y21{bottom:422.146667pt;}
.y111{bottom:423.906667pt;}
.yc7{bottom:426.626667pt;}
.y75{bottom:426.946667pt;}
.y8f{bottom:427.106667pt;}
.y148{bottom:429.666667pt;}
.yed{bottom:430.146667pt;}
.y58{bottom:435.106667pt;}
.y20{bottom:439.746667pt;}
.y110{bottom:441.506667pt;}
.y8e{bottom:444.706667pt;}
.y146{bottom:447.426667pt;}
.yc6{bottom:447.746667pt;}
.y74{bottom:452.546667pt;}
.y57{bottom:452.706667pt;}
.y1f{bottom:457.506667pt;}
.y10f{bottom:459.106667pt;}
.y8d{bottom:462.306667pt;}
.y145{bottom:465.186667pt;}
.yc5{bottom:465.506667pt;}
.y73{bottom:470.146667pt;}
.y56{bottom:470.306667pt;}
.y1e{bottom:475.106667pt;}
.y10e{bottom:476.706667pt;}
.y8c{bottom:480.066667pt;}
.yc4{bottom:483.106667pt;}
.y72{bottom:487.746667pt;}
.y55{bottom:488.066667pt;}
.y1d{bottom:492.706667pt;}
.y10d{bottom:494.466667pt;}
.y8b{bottom:497.666667pt;}
.yc3{bottom:500.706667pt;}
.y144{bottom:501.666667pt;}
.y71{bottom:505.373333pt;}
.y54{bottom:505.693333pt;}
.y10c{bottom:507.613333pt;}
.y1c{bottom:510.333333pt;}
.yec{bottom:513.853333pt;}
.y8a{bottom:515.293333pt;}
.yc2{bottom:518.333333pt;}
.y143{bottom:519.293333pt;}
.y70{bottom:523.133333pt;}
.y53{bottom:523.293333pt;}
.y10a{bottom:523.613333pt;}
.y1b{bottom:527.933333pt;}
.yeb{bottom:529.853333pt;}
.y89{bottom:532.893333pt;}
.yc1{bottom:535.933333pt;}
.y142{bottom:537.053333pt;}
.y6f{bottom:540.733333pt;}
.y52{bottom:540.893333pt;}
.y1a{bottom:545.693333pt;}
.yea{bottom:545.853333pt;}
.y109{bottom:553.373333pt;}
.yc0{bottom:553.693333pt;}
.y141{bottom:554.653333pt;}
.y6e{bottom:558.333333pt;}
.y51{bottom:558.493333pt;}
.y19{bottom:563.293333pt;}
.ye9{bottom:566.973333pt;}
.ybf{bottom:571.293333pt;}
.y140{bottom:572.253333pt;}
.y6d{bottom:573.053333pt;}
.y50{bottom:576.253333pt;}
.y18{bottom:580.893333pt;}
.ye8{bottom:584.733333pt;}
.ybe{bottom:588.893333pt;}
.y13f{bottom:589.853333pt;}
.y4f{bottom:593.853333pt;}
.y17{bottom:598.493333pt;}
.ybd{bottom:602.013333pt;}
.ye7{bottom:602.333333pt;}
.y13e{bottom:607.453333pt;}
.y4e{bottom:611.453333pt;}
.y16{bottom:616.093333pt;}
.ybc{bottom:618.013333pt;}
.ye6{bottom:619.933333pt;}
.y13d{bottom:625.213333pt;}
.y4d{bottom:629.053333pt;}
.y15{bottom:633.853333pt;}
.ybb{bottom:634.013333pt;}
.ye5{bottom:637.533333pt;}
.y137{bottom:638.333333pt;}
.y4c{bottom:646.653333pt;}
.y107{bottom:647.453333pt;}
.y14{bottom:651.453333pt;}
.y13b{bottom:654.333333pt;}
.yba{bottom:655.133333pt;}
.y4b{bottom:664.413333pt;}
.y106{bottom:668.573333pt;}
.y135{bottom:672.093333pt;}
.yb9{bottom:672.893333pt;}
.y4a{bottom:682.013333pt;}
.y105{bottom:686.173333pt;}
.y13{bottom:688.733333pt;}
.y134{bottom:689.853333pt;}
.yb8{bottom:690.493333pt;}
.y49{bottom:699.613333pt;}
.y104{bottom:703.773333pt;}
.yb7{bottom:708.093333pt;}
.y12{bottom:714.333333pt;}
.y48{bottom:717.213333pt;}
.ye4{bottom:721.213333pt;}
.y103{bottom:721.533333pt;}
.yb6{bottom:725.693333pt;}
.y133{bottom:726.333333pt;}
.y11{bottom:731.933333pt;}
.y47{bottom:734.813333pt;}
.ye3{bottom:737.213333pt;}
.y102{bottom:739.133333pt;}
.yb5{bottom:743.293333pt;}
.y132{bottom:743.933333pt;}
.y10{bottom:749.533333pt;}
.y46{bottom:752.573333pt;}
.ye2{bottom:753.253333pt;}
.y101{bottom:756.773333pt;}
.yb4{bottom:761.093333pt;}
.y131{bottom:761.733333pt;}
.yf{bottom:767.173333pt;}
.y45{bottom:770.213333pt;}
.ye1{bottom:774.373333pt;}
.yb3{bottom:778.693333pt;}
.y130{bottom:779.333333pt;}
.ye{bottom:784.933333pt;}
.y44{bottom:787.813333pt;}
.yb2{bottom:791.813333pt;}
.ye0{bottom:791.973333pt;}
.y12f{bottom:796.933333pt;}
.yd{bottom:802.533333pt;}
.y43{bottom:805.413333pt;}
.yb1{bottom:807.813333pt;}
.ydf{bottom:809.733333pt;}
.y12e{bottom:814.533333pt;}
.yc{bottom:820.133333pt;}
.y42{bottom:823.013333pt;}
.yb0{bottom:823.813333pt;}
.yde{bottom:827.333333pt;}
.y12d{bottom:832.133333pt;}
.yb{bottom:839.813333pt;}
.y41{bottom:840.773333pt;}
.yaf{bottom:844.933333pt;}
.y12c{bottom:849.893333pt;}
.ya{bottom:857.413333pt;}
.y100{bottom:858.053333pt;}
.y40{bottom:858.373333pt;}
.yae{bottom:862.533333pt;}
.y12b{bottom:867.493333pt;}
.yff{bottom:874.053333pt;}
.y9{bottom:875.493333pt;}
.y3f{bottom:875.973333pt;}
.yad{bottom:880.133333pt;}
.y12a{bottom:885.093333pt;}
.yfe{bottom:890.053333pt;}
.y3e{bottom:893.573333pt;}
.y8{bottom:894.373333pt;}
.yac{bottom:897.893333pt;}
.y129{bottom:902.693333pt;}
.y3d{bottom:911.173333pt;}
.y7{bottom:915.333333pt;}
.yab{bottom:915.493333pt;}
.y128{bottom:920.293333pt;}
.ydd{bottom:928.613333pt;}
.y3c{bottom:928.933333pt;}
.yaa{bottom:933.093333pt;}
.y127{bottom:933.573333pt;}
.ydc{bottom:944.613333pt;}
.y3b{bottom:946.533333pt;}
.y5{bottom:949.413333pt;}
.y126{bottom:949.573333pt;}
.ya9{bottom:950.693333pt;}
.ydb{bottom:960.613333pt;}
.y3a{bottom:964.133333pt;}
.y125{bottom:965.573333pt;}
.ya8{bottom:968.293333pt;}
.y4{bottom:976.773333pt;}
.ya7{bottom:981.573333pt;}
.y39{bottom:981.733333pt;}
.ya6{bottom:997.573333pt;}
.y38{bottom:999.333333pt;}
.y3{bottom:1004.293333pt;}
.ya5{bottom:1013.600000pt;}
.y37{bottom:1017.120000pt;}
.y2{bottom:1031.680000pt;}
.y36{bottom:1034.720000pt;}
.y1{bottom:1059.680000pt;}
.y35{bottom:1060.800000pt;}
.hd{height:15.200000pt;}
.he{height:15.232000pt;}
.hc{height:15.360000pt;}
.hb{height:15.392000pt;}
.h11{height:17.120000pt;}
.h10{height:29.120000pt;}
.hf{height:30.720000pt;}
.h13{height:33.120000pt;}
.h12{height:50.880000pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:65.440000pt;}
.w1b{width:65.600000pt;}
.w1d{width:78.400000pt;}
.w23{width:80.640000pt;}
.w22{width:84.352000pt;}
.w19{width:93.760000pt;}
.w1c{width:93.792000pt;}
.w20{width:93.952000pt;}
.wf{width:104.512000pt;}
.w15{width:107.232000pt;}
.w17{width:112.512000pt;}
.w12{width:112.672000pt;}
.w13{width:118.400000pt;}
.w1a{width:122.112000pt;}
.w18{width:122.272000pt;}
.w1f{width:131.552000pt;}
.w9{width:131.680000pt;}
.w1e{width:140.826667pt;}
.wb{width:141.146667pt;}
.w7{width:150.426667pt;}
.w10{width:150.560000pt;}
.w16{width:150.720000pt;}
.wd{width:169.466667pt;}
.w6{width:178.906667pt;}
.w3{width:207.066667pt;}
.w4{width:207.226667pt;}
.w5{width:292.026667pt;}
.wc{width:301.466667pt;}
.wa{width:329.786667pt;}
.w8{width:339.266667pt;}
.w14{width:437.053333pt;}
.we{width:449.053333pt;}
.w11{width:462.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.xe{left:44.320000pt;}
.x1{left:48.159988pt;}
.x11{left:49.600000pt;}
.x16{left:50.720000pt;}
.x22{left:71.999988pt;}
.x5{left:85.632000pt;}
.x3{left:96.031988pt;}
.x17{left:163.866667pt;}
.x1d{left:191.226667pt;}
.x18{left:286.786667pt;}
.x7{left:293.346667pt;}
.x1e{left:323.426667pt;}
.x9{left:378.306667pt;}
.x19{left:381.346667pt;}
.xd{left:387.746667pt;}
.xc{left:416.066667pt;}
.x1f{left:418.013333pt;}
.xb{left:425.533333pt;}
.x14{left:486.493333pt;}
.xf{left:494.013333pt;}
.x8{left:501.213333pt;}
.x1a{left:504.093333pt;}
.x12{left:512.573333pt;}
.xa{left:557.853333pt;}
.x1b{left:570.333333pt;}
.x20{left:578.653333pt;}
.x15{left:594.533333pt;}
.x10{left:599.173333pt;}
.x4{left:612.933322pt;}
.x13{left:625.893333pt;}
.x21{left:663.653333pt;}
.x1c{left:664.773333pt;}
.x2{left:714.853322pt;}
}




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