
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_bc18b07e64c4d027250bc8fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48f5476823d78248a0ae6e1f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f9f41aced32e2940d3912f9.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_d818d685a6971fa8053e2a6e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94cb562d4bba58bcd2d5c2cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7e1ed3bbfcaa1b21521341e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_69370d81949ca43690041efc.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.274800px;}
.ls9{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls11{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:6.785280px;}
.ls5{letter-spacing:23.760000px;}
.lse{letter-spacing:39.905280px;}
.lsf{letter-spacing:42.865920px;}
.ls6{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.wsb{word-spacing:-28.987200px;}
.ws6{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.840000px;}
.ws5{word-spacing:-13.939200px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-2.051520px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._3{width:3.510720px;}
._9{width:5.186880px;}
._6{width:6.292800px;}
._4{width:7.750080px;}
._a{width:9.655680px;}
._b{width:10.993920px;}
._12{width:12.259200px;}
._5{width:13.512960px;}
._7{width:15.182400px;}
._1a{width:17.684160px;}
._1c{width:18.772800px;}
._1b{width:20.235840px;}
._15{width:21.594240px;}
._d{width:22.740480px;}
._e{width:24.713280px;}
._2a{width:25.767360px;}
._23{width:26.953920px;}
._27{width:28.218240px;}
._22{width:29.357760px;}
._c{width:30.404160px;}
._11{width:31.830720px;}
._14{width:33.346560px;}
._13{width:35.017920px;}
._2b{width:36.052800px;}
._1e{width:37.320960px;}
._1f{width:38.733120px;}
._1d{width:40.273920px;}
._18{width:41.333760px;}
._20{width:42.818880px;}
._2e{width:46.103040px;}
._29{width:47.626560px;}
._31{width:48.648000px;}
._24{width:49.780800px;}
._25{width:50.834880px;}
._21{width:52.528320px;}
._17{width:53.585280px;}
._2d{width:54.847680px;}
._16{width:56.904000px;}
._30{width:58.821120px;}
._28{width:60.675840px;}
._2c{width:62.110080px;}
._33{width:67.909440px;}
._f{width:69.154560px;}
._10{width:70.676160px;}
._2f{width:82.270080px;}
._19{width:85.714560px;}
._32{width:115.918080px;}
._26{width:185.137920px;}
._2{width:961.680000px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(13,13,13);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.yb8{bottom:13.500000px;}
.ydc{bottom:13.530000px;}
.yf6{bottom:13.545000px;}
.yb7{bottom:13.680000px;}
.y120{bottom:14.040000px;}
.y112{bottom:14.580000px;}
.y110{bottom:14.760000px;}
.y131{bottom:16.380000px;}
.yd8{bottom:16.554000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.yd7{bottom:41.940000px;}
.yc7{bottom:41.970000px;}
.y142{bottom:41.985000px;}
.yb6{bottom:42.120000px;}
.yc5{bottom:42.660000px;}
.yb4{bottom:42.840000px;}
.y11e{bottom:43.200000px;}
.y12f{bottom:45.720000px;}
.yd5{bottom:45.894000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y10d{bottom:71.100000px;}
.yc4{bottom:71.130000px;}
.yb3{bottom:71.280000px;}
.y11d{bottom:71.820000px;}
.y12e{bottom:74.160000px;}
.yd4{bottom:74.334000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.yfd{bottom:103.896000px;}
.y11b{bottom:104.616000px;}
.y13a{bottom:106.416000px;}
.y95{bottom:106.956000px;}
.y5d{bottom:109.836000px;}
.yd9{bottom:110.556000px;}
.y167{bottom:120.996000px;}
.y7e{bottom:125.316000px;}
.y2f{bottom:126.036000px;}
.yfc{bottom:133.056000px;}
.y11a{bottom:133.956000px;}
.y94{bottom:135.396000px;}
.y139{bottom:135.576000px;}
.y5c{bottom:138.456000px;}
.yd3{bottom:139.716000px;}
.y166{bottom:148.176000px;}
.y8a{bottom:152.850000px;}
.y7d{bottom:153.750000px;}
.y2e{bottom:154.470000px;}
.y93{bottom:159.870000px;}
.y158{bottom:160.050000px;}
.yfb{bottom:162.210000px;}
.yb1{bottom:162.750000px;}
.y119{bottom:163.110000px;}
.y138{bottom:164.730000px;}
.y5b{bottom:166.890000px;}
.yd6{bottom:172.110000px;}
.y165{bottom:175.350000px;}
.y89{bottom:181.290000px;}
.y7c{bottom:182.190000px;}
.y2d{bottom:182.910000px;}
.y157{bottom:188.490000px;}
.yb0{bottom:191.370000px;}
.yfa{bottom:191.550000px;}
.y118{bottom:192.270000px;}
.y5a{bottom:195.330000px;}
.y164{bottom:202.530000px;}
.y88{bottom:205.770000px;}
.y7b{bottom:210.450000px;}
.y2c{bottom:211.350000px;}
.y156{bottom:216.930000px;}
.yaf{bottom:219.810000px;}
.yf9{bottom:220.710000px;}
.y117{bottom:221.430000px;}
.y137{bottom:222.510000px;}
.y59{bottom:223.770000px;}
.y163{bottom:229.710000px;}
.y7a{bottom:239.250000px;}
.y2b{bottom:239.790000px;}
.yd2{bottom:243.210000px;}
.y155{bottom:245.550000px;}
.yae{bottom:248.250000px;}
.yf8{bottom:249.870000px;}
.y116{bottom:250.770000px;}
.y136{bottom:251.670000px;}
.y58{bottom:252.210000px;}
.y162{bottom:256.890000px;}
.y79{bottom:267.690000px;}
.y2a{bottom:268.230000px;}
.yd0{bottom:271.650000px;}
.y154{bottom:273.990000px;}
.yad{bottom:276.330000px;}
.yf7{bottom:279.030000px;}
.y115{bottom:279.930000px;}
.y57{bottom:280.650000px;}
.y161{bottom:283.890000px;}
.y78{bottom:296.130000px;}
.y29{bottom:296.850000px;}
.ycf{bottom:300.090000px;}
.y153{bottom:302.430000px;}
.yac{bottom:305.130000px;}
.yf5{bottom:308.370000px;}
.y56{bottom:309.090000px;}
.y135{bottom:309.450000px;}
.y160{bottom:311.070000px;}
.y77{bottom:324.615000px;}
.y28{bottom:325.335000px;}
.yce{bottom:328.575000px;}
.y152{bottom:330.915000px;}
.yab{bottom:333.615000px;}
.y55{bottom:337.575000px;}
.y15f{bottom:338.295000px;}
.y114{bottom:338.475000px;}
.y134{bottom:338.655000px;}
.y76{bottom:353.055000px;}
.y27{bottom:353.415000px;}
.y31{bottom:353.775000px;}
.ycd{bottom:357.015000px;}
.y151{bottom:359.355000px;}
.yaa{bottom:362.055000px;}
.y92{bottom:362.955000px;}
.y15e{bottom:365.655000px;}
.y54{bottom:366.015000px;}
.yf3{bottom:366.735000px;}
.y113{bottom:367.635000px;}
.y133{bottom:367.815000px;}
.y75{bottom:381.495000px;}
.ycc{bottom:385.635000px;}
.y26{bottom:385.995000px;}
.y150{bottom:387.795000px;}
.ya9{bottom:390.495000px;}
.y91{bottom:391.395000px;}
.y53{bottom:394.635000px;}
.yf4{bottom:396.075000px;}
.y111{bottom:396.795000px;}
.y132{bottom:396.975000px;}
.y74{bottom:409.935000px;}
.ycb{bottom:413.715000px;}
.yd1{bottom:414.075000px;}
.y25{bottom:414.435000px;}
.y90{bottom:416.055000px;}
.y14f{bottom:416.235000px;}
.ya8{bottom:418.935000px;}
.y52{bottom:423.075000px;}
.y12d{bottom:426.315000px;}
.y10f{bottom:427.035000px;}
.yca{bottom:429.735000px;}
.y87{bottom:437.475000px;}
.y73{bottom:438.375000px;}
.y24{bottom:442.875000px;}
.y14e{bottom:444.675000px;}
.ya7{bottom:447.555000px;}
.y51{bottom:451.155000px;}
.y81{bottom:451.515000px;}
.y10c{bottom:457.455000px;}
.y130{bottom:458.355000px;}
.yc9{bottom:458.895000px;}
.y86{bottom:466.095000px;}
.y72{bottom:466.635000px;}
.yf2{bottom:467.175000px;}
.y23{bottom:471.315000px;}
.y14d{bottom:473.115000px;}
.ya6{bottom:475.995000px;}
.y80{bottom:479.595000px;}
.y50{bottom:479.955000px;}
.y10e{bottom:486.615000px;}
.yc8{bottom:488.055000px;}
.y85{bottom:490.575000px;}
.y71{bottom:495.435000px;}
.yf0{bottom:495.615000px;}
.y22{bottom:499.755000px;}
.y14c{bottom:501.735000px;}
.ya5{bottom:504.435000px;}
.y4f{bottom:508.395000px;}
.yc3{bottom:517.395000px;}
.yef{bottom:524.055000px;}
.y70{bottom:525.135000px;}
.y21{bottom:528.195000px;}
.y12c{bottom:529.635000px;}
.y14b{bottom:530.175000px;}
.ya4{bottom:532.875000px;}
.y4e{bottom:536.835000px;}
.yc6{bottom:546.555000px;}
.yee{bottom:552.495000px;}
.y6f{bottom:554.835000px;}
.y20{bottom:556.635000px;}
.y10b{bottom:557.895000px;}
.y12b{bottom:558.075000px;}
.y14a{bottom:558.615000px;}
.ya3{bottom:561.315000px;}
.y15c{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.yed{bottom:581.145000px;}
.y6e{bottom:584.385000px;}
.y1f{bottom:585.105000px;}
.y109{bottom:586.365000px;}
.y12a{bottom:586.545000px;}
.y149{bottom:587.085000px;}
.ya2{bottom:589.425000px;}
.y4c{bottom:593.745000px;}
.yec{bottom:609.585000px;}
.y1e{bottom:613.725000px;}
.y6d{bottom:614.085000px;}
.y108{bottom:614.805000px;}
.y129{bottom:614.985000px;}
.y148{bottom:615.525000px;}
.yc2{bottom:617.685000px;}
.ya1{bottom:618.225000px;}
.y4b{bottom:622.185000px;}
.yeb{bottom:637.665000px;}
.yf1{bottom:638.025000px;}
.y8f{bottom:640.905000px;}
.y1d{bottom:642.165000px;}
.y107{bottom:643.245000px;}
.y128{bottom:643.425000px;}
.y6c{bottom:643.605000px;}
.y147{bottom:643.965000px;}
.yc1{bottom:646.305000px;}
.ya0{bottom:646.665000px;}
.y4a{bottom:650.805000px;}
.yea{bottom:653.685000px;}
.y8e{bottom:669.345000px;}
.y1c{bottom:670.605000px;}
.y127{bottom:671.505000px;}
.y106{bottom:671.685000px;}
.y146{bottom:672.045000px;}
.y6b{bottom:672.225000px;}
.y15b{bottom:672.405000px;}
.y9f{bottom:674.745000px;}
.y49{bottom:679.245000px;}
.ye9{bottom:682.845000px;}
.y126{bottom:687.705000px;}
.y8d{bottom:694.005000px;}
.y1b{bottom:699.045000px;}
.y105{bottom:699.765000px;}
.y10a{bottom:700.125000px;}
.y145{bottom:700.485000px;}
.y15a{bottom:700.845000px;}
.y6a{bottom:701.745000px;}
.ybf{bottom:703.185000px;}
.y9e{bottom:703.725000px;}
.y15d{bottom:707.325000px;}
.y48{bottom:707.685000px;}
.ye8{bottom:712.005000px;}
.y125{bottom:716.865000px;}
.y104{bottom:728.565000px;}
.y159{bottom:728.925000px;}
.y144{bottom:729.285000px;}
.y69{bottom:731.445000px;}
.ybe{bottom:731.625000px;}
.y9d{bottom:732.165000px;}
.y1a{bottom:733.425000px;}
.y47{bottom:736.125000px;}
.ye7{bottom:741.345000px;}
.y103{bottom:744.225000px;}
.y143{bottom:745.125000px;}
.y124{bottom:746.025000px;}
.y84{bottom:749.265000px;}
.y19{bottom:755.925000px;}
.ybd{bottom:759.705000px;}
.yc0{bottom:760.065000px;}
.y68{bottom:760.605000px;}
.y9c{bottom:761.865000px;}
.y46{bottom:764.565000px;}
.ye6{bottom:770.505000px;}
.y123{bottom:775.185000px;}
.y83{bottom:777.705000px;}
.ybc{bottom:788.505000px;}
.y67{bottom:789.585000px;}
.y18{bottom:790.305000px;}
.y9b{bottom:791.385000px;}
.y45{bottom:793.005000px;}
.ye5{bottom:799.665000px;}
.y102{bottom:802.005000px;}
.y82{bottom:802.365000px;}
.y141{bottom:802.725000px;}
.ybb{bottom:804.165000px;}
.y122{bottom:804.525000px;}
.y17{bottom:812.805000px;}
.y66{bottom:819.105000px;}
.y9a{bottom:820.050000px;}
.y44{bottom:821.490000px;}
.ye4{bottom:829.050000px;}
.y101{bottom:831.210000px;}
.yba{bottom:833.550000px;}
.y121{bottom:833.730000px;}
.y16{bottom:847.230000px;}
.y65{bottom:847.770000px;}
.y99{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.ye3{bottom:858.210000px;}
.y140{bottom:860.370000px;}
.yb9{bottom:862.710000px;}
.y11c{bottom:862.890000px;}
.y15{bottom:869.910000px;}
.y64{bottom:877.290000px;}
.y42{bottom:878.370000px;}
.y98{bottom:878.910000px;}
.ye2{bottom:887.370000px;}
.y100{bottom:888.810000px;}
.y13f{bottom:889.710000px;}
.yb2{bottom:891.870000px;}
.y11f{bottom:892.590000px;}
.y8c{bottom:896.370000px;}
.y14{bottom:904.290000px;}
.y63{bottom:905.730000px;}
.y41{bottom:906.630000px;}
.y7f{bottom:906.990000px;}
.y97{bottom:907.710000px;}
.ye1{bottom:916.530000px;}
.y13e{bottom:918.870000px;}
.y8b{bottom:920.850000px;}
.yb5{bottom:921.030000px;}
.y13{bottom:926.790000px;}
.y96{bottom:932.190000px;}
.y62{bottom:934.170000px;}
.y40{bottom:935.430000px;}
.ye0{bottom:945.870000px;}
.yff{bottom:946.590000px;}
.y13d{bottom:948.030000px;}
.y12{bottom:961.170000px;}
.y61{bottom:962.610000px;}
.y3f{bottom:963.870000px;}
.ydf{bottom:975.030000px;}
.yfe{bottom:975.750000px;}
.y11{bottom:983.310000px;}
.y60{bottom:991.230000px;}
.y3e{bottom:992.310000px;}
.yde{bottom:1004.190000px;}
.y13c{bottom:1005.810000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.ydd{bottom:1033.530000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.ydb{bottom:1062.690000px;}
.y13b{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y5f{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.yda{bottom:1091.880000px;}
.y5e{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h15{height:28.440000px;}
.h16{height:28.476000px;}
.h19{height:28.620000px;}
.h22{height:28.980000px;}
.h20{height:29.520000px;}
.h1f{height:29.700000px;}
.h24{height:31.320000px;}
.h1c{height:31.500000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h12{height:47.901094px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h1b{height:56.880000px;}
.h18{height:56.916000px;}
.h14{height:57.060000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h26{height:62.184375px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h25{height:65.124096px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1e{height:86.040000px;}
.h17{height:86.076000px;}
.h13{height:86.220000px;}
.h21{height:86.760000px;}
.h23{height:89.100000px;}
.h1a{height:89.280000px;}
.h1d{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w23{width:34.380000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wc{width:41.760000px;}
.w37{width:41.940000px;}
.w36{width:52.200000px;}
.w31{width:52.380000px;}
.w2a{width:52.560000px;}
.w22{width:56.700000px;}
.w1c{width:59.040000px;}
.w21{width:61.020000px;}
.w14{width:63.000000px;}
.wb{width:63.036000px;}
.w32{width:63.180000px;}
.w1a{width:68.760000px;}
.w15{width:69.120000px;}
.wd{width:73.620000px;}
.w9{width:73.656000px;}
.w24{width:74.556000px;}
.w2f{width:84.240000px;}
.w29{width:84.276000px;}
.w27{width:84.420000px;}
.w12{width:84.456000px;}
.w2d{width:84.600000px;}
.w1b{width:86.076000px;}
.w1f{width:88.020000px;}
.wa{width:94.860000px;}
.w30{width:95.076000px;}
.w18{width:96.660000px;}
.w26{width:97.380000px;}
.w3a{width:99.900000px;}
.w39{width:102.636000px;}
.w2c{width:105.516000px;}
.w1e{width:106.596000px;}
.w17{width:110.016000px;}
.w34{width:116.136000px;}
.w13{width:126.720000px;}
.wf{width:126.936000px;}
.w10{width:128.880000px;}
.w25{width:182.520000px;}
.w33{width:190.650000px;}
.w2b{width:190.830000px;}
.w1d{width:195.330000px;}
.w8{width:201.270000px;}
.w38{width:203.250000px;}
.w16{width:207.390000px;}
.w11{width:211.890000px;}
.we{width:256.530000px;}
.w2e{width:275.835000px;}
.w28{width:286.455000px;}
.w35{width:297.075000px;}
.w19{width:297.615000px;}
.w20{width:307.695000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x21{left:46.260000px;}
.x2{left:53.999986px;}
.x37{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x13{left:256.530000px;}
.xf{left:263.369986px;}
.x10{left:265.529986px;}
.x1a{left:266.970000px;}
.x14{left:330.915000px;}
.x2f{left:341.535000px;}
.x22{left:344.775000px;}
.x1b{left:352.155000px;}
.x28{left:362.775000px;}
.x23{left:414.255000px;}
.x30{left:415.875000px;}
.x29{left:424.515000px;}
.x15{left:426.675000px;}
.x1c{left:479.805000px;}
.x8{left:482.144986px;}
.x16{left:490.425000px;}
.x24{left:501.045000px;}
.xc{left:509.144986px;}
.x2a{left:511.305000px;}
.x5{left:521.025000px;}
.x17{left:532.905000px;}
.x1d{left:543.525000px;}
.x31{left:554.145000px;}
.x25{left:564.765000px;}
.x2b{left:568.905000px;}
.x1e{left:586.005000px;}
.x32{left:596.805000px;}
.x2c{left:604.005000px;}
.x18{left:607.245000px;}
.x1f{left:655.845000px;}
.x35{left:660.525000px;}
.x26{left:667.005000px;}
.x33{left:671.145000px;}
.x2d{left:679.290000px;}
.x11{left:698.189986px;}
.x19{left:734.910000px;}
.xd{left:743.549986px;}
.xe{left:745.529986px;}
.x36{left:763.890000px;}
.x20{left:766.590000px;}
.x27{left:774.330000px;}
.x2e{left:777.390000px;}
.x34{left:788.190000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls9{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:6.031360pt;}
.ls5{letter-spacing:21.120000pt;}
.lse{letter-spacing:35.471360pt;}
.lsf{letter-spacing:38.103040pt;}
.ls6{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws8{word-spacing:-58.880000pt;}
.wsb{word-spacing:-25.766400pt;}
.ws6{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.390400pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-1.823573pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._3{width:3.120640pt;}
._9{width:4.610560pt;}
._6{width:5.593600pt;}
._4{width:6.888960pt;}
._a{width:8.582827pt;}
._b{width:9.772373pt;}
._12{width:10.897067pt;}
._5{width:12.011520pt;}
._7{width:13.495467pt;}
._1a{width:15.719253pt;}
._1c{width:16.686933pt;}
._1b{width:17.987413pt;}
._15{width:19.194880pt;}
._d{width:20.213760pt;}
._e{width:21.967360pt;}
._2a{width:22.904320pt;}
._23{width:23.959040pt;}
._27{width:25.082880pt;}
._22{width:26.095787pt;}
._c{width:27.025920pt;}
._11{width:28.293973pt;}
._14{width:29.641387pt;}
._13{width:31.127040pt;}
._2b{width:32.046933pt;}
._1e{width:33.174187pt;}
._1f{width:34.429440pt;}
._1d{width:35.799040pt;}
._18{width:36.741120pt;}
._20{width:38.061227pt;}
._2e{width:40.980480pt;}
._29{width:42.334720pt;}
._31{width:43.242667pt;}
._24{width:44.249600pt;}
._25{width:45.186560pt;}
._21{width:46.691840pt;}
._17{width:47.631360pt;}
._2d{width:48.753493pt;}
._16{width:50.581333pt;}
._30{width:52.285440pt;}
._28{width:53.934080pt;}
._2c{width:55.208960pt;}
._33{width:60.363947pt;}
._f{width:61.470720pt;}
._10{width:62.823253pt;}
._2f{width:73.128960pt;}
._19{width:76.190720pt;}
._32{width:103.038293pt;}
._26{width:164.567040pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.yb8{bottom:12.000000pt;}
.ydc{bottom:12.026667pt;}
.yf6{bottom:12.040000pt;}
.yb7{bottom:12.160000pt;}
.y120{bottom:12.480000pt;}
.y112{bottom:12.960000pt;}
.y110{bottom:13.120000pt;}
.y131{bottom:14.560000pt;}
.yd8{bottom:14.714667pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.yd7{bottom:37.280000pt;}
.yc7{bottom:37.306667pt;}
.y142{bottom:37.320000pt;}
.yb6{bottom:37.440000pt;}
.yc5{bottom:37.920000pt;}
.yb4{bottom:38.080000pt;}
.y11e{bottom:38.400000pt;}
.y12f{bottom:40.640000pt;}
.yd5{bottom:40.794667pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y10d{bottom:63.200000pt;}
.yc4{bottom:63.226667pt;}
.yb3{bottom:63.360000pt;}
.y11d{bottom:63.840000pt;}
.y12e{bottom:65.920000pt;}
.yd4{bottom:66.074667pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.yfd{bottom:92.352000pt;}
.y11b{bottom:92.992000pt;}
.y13a{bottom:94.592000pt;}
.y95{bottom:95.072000pt;}
.y5d{bottom:97.632000pt;}
.yd9{bottom:98.272000pt;}
.y167{bottom:107.552000pt;}
.y7e{bottom:111.392000pt;}
.y2f{bottom:112.032000pt;}
.yfc{bottom:118.272000pt;}
.y11a{bottom:119.072000pt;}
.y94{bottom:120.352000pt;}
.y139{bottom:120.512000pt;}
.y5c{bottom:123.072000pt;}
.yd3{bottom:124.192000pt;}
.y166{bottom:131.712000pt;}
.y8a{bottom:135.866667pt;}
.y7d{bottom:136.666667pt;}
.y2e{bottom:137.306667pt;}
.y93{bottom:142.106667pt;}
.y158{bottom:142.266667pt;}
.yfb{bottom:144.186667pt;}
.yb1{bottom:144.666667pt;}
.y119{bottom:144.986667pt;}
.y138{bottom:146.426667pt;}
.y5b{bottom:148.346667pt;}
.yd6{bottom:152.986667pt;}
.y165{bottom:155.866667pt;}
.y89{bottom:161.146667pt;}
.y7c{bottom:161.946667pt;}
.y2d{bottom:162.586667pt;}
.y157{bottom:167.546667pt;}
.yb0{bottom:170.106667pt;}
.yfa{bottom:170.266667pt;}
.y118{bottom:170.906667pt;}
.y5a{bottom:173.626667pt;}
.y164{bottom:180.026667pt;}
.y88{bottom:182.906667pt;}
.y7b{bottom:187.066667pt;}
.y2c{bottom:187.866667pt;}
.y156{bottom:192.826667pt;}
.yaf{bottom:195.386667pt;}
.yf9{bottom:196.186667pt;}
.y117{bottom:196.826667pt;}
.y137{bottom:197.786667pt;}
.y59{bottom:198.906667pt;}
.y163{bottom:204.186667pt;}
.y7a{bottom:212.666667pt;}
.y2b{bottom:213.146667pt;}
.yd2{bottom:216.186667pt;}
.y155{bottom:218.266667pt;}
.yae{bottom:220.666667pt;}
.yf8{bottom:222.106667pt;}
.y116{bottom:222.906667pt;}
.y136{bottom:223.706667pt;}
.y58{bottom:224.186667pt;}
.y162{bottom:228.346667pt;}
.y79{bottom:237.946667pt;}
.y2a{bottom:238.426667pt;}
.yd0{bottom:241.466667pt;}
.y154{bottom:243.546667pt;}
.yad{bottom:245.626667pt;}
.yf7{bottom:248.026667pt;}
.y115{bottom:248.826667pt;}
.y57{bottom:249.466667pt;}
.y161{bottom:252.346667pt;}
.y78{bottom:263.226667pt;}
.y29{bottom:263.866667pt;}
.ycf{bottom:266.746667pt;}
.y153{bottom:268.826667pt;}
.yac{bottom:271.226667pt;}
.yf5{bottom:274.106667pt;}
.y56{bottom:274.746667pt;}
.y135{bottom:275.066667pt;}
.y160{bottom:276.506667pt;}
.y77{bottom:288.546667pt;}
.y28{bottom:289.186667pt;}
.yce{bottom:292.066667pt;}
.y152{bottom:294.146667pt;}
.yab{bottom:296.546667pt;}
.y55{bottom:300.066667pt;}
.y15f{bottom:300.706667pt;}
.y114{bottom:300.866667pt;}
.y134{bottom:301.026667pt;}
.y76{bottom:313.826667pt;}
.y27{bottom:314.146667pt;}
.y31{bottom:314.466667pt;}
.ycd{bottom:317.346667pt;}
.y151{bottom:319.426667pt;}
.yaa{bottom:321.826667pt;}
.y92{bottom:322.626667pt;}
.y15e{bottom:325.026667pt;}
.y54{bottom:325.346667pt;}
.yf3{bottom:325.986667pt;}
.y113{bottom:326.786667pt;}
.y133{bottom:326.946667pt;}
.y75{bottom:339.106667pt;}
.ycc{bottom:342.786667pt;}
.y26{bottom:343.106667pt;}
.y150{bottom:344.706667pt;}
.ya9{bottom:347.106667pt;}
.y91{bottom:347.906667pt;}
.y53{bottom:350.786667pt;}
.yf4{bottom:352.066667pt;}
.y111{bottom:352.706667pt;}
.y132{bottom:352.866667pt;}
.y74{bottom:364.386667pt;}
.ycb{bottom:367.746667pt;}
.yd1{bottom:368.066667pt;}
.y25{bottom:368.386667pt;}
.y90{bottom:369.826667pt;}
.y14f{bottom:369.986667pt;}
.ya8{bottom:372.386667pt;}
.y52{bottom:376.066667pt;}
.y12d{bottom:378.946667pt;}
.y10f{bottom:379.586667pt;}
.yca{bottom:381.986667pt;}
.y87{bottom:388.866667pt;}
.y73{bottom:389.666667pt;}
.y24{bottom:393.666667pt;}
.y14e{bottom:395.266667pt;}
.ya7{bottom:397.826667pt;}
.y51{bottom:401.026667pt;}
.y81{bottom:401.346667pt;}
.y10c{bottom:406.626667pt;}
.y130{bottom:407.426667pt;}
.yc9{bottom:407.906667pt;}
.y86{bottom:414.306667pt;}
.y72{bottom:414.786667pt;}
.yf2{bottom:415.266667pt;}
.y23{bottom:418.946667pt;}
.y14d{bottom:420.546667pt;}
.ya6{bottom:423.106667pt;}
.y80{bottom:426.306667pt;}
.y50{bottom:426.626667pt;}
.y10e{bottom:432.546667pt;}
.yc8{bottom:433.826667pt;}
.y85{bottom:436.066667pt;}
.y71{bottom:440.386667pt;}
.yf0{bottom:440.546667pt;}
.y22{bottom:444.226667pt;}
.y14c{bottom:445.986667pt;}
.ya5{bottom:448.386667pt;}
.y4f{bottom:451.906667pt;}
.yc3{bottom:459.906667pt;}
.yef{bottom:465.826667pt;}
.y70{bottom:466.786667pt;}
.y21{bottom:469.506667pt;}
.y12c{bottom:470.786667pt;}
.y14b{bottom:471.266667pt;}
.ya4{bottom:473.666667pt;}
.y4e{bottom:477.186667pt;}
.yc6{bottom:485.826667pt;}
.yee{bottom:491.106667pt;}
.y6f{bottom:493.186667pt;}
.y20{bottom:494.786667pt;}
.y10b{bottom:495.906667pt;}
.y12b{bottom:496.066667pt;}
.y14a{bottom:496.546667pt;}
.ya3{bottom:498.946667pt;}
.y15c{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.yed{bottom:516.573333pt;}
.y6e{bottom:519.453333pt;}
.y1f{bottom:520.093333pt;}
.y109{bottom:521.213333pt;}
.y12a{bottom:521.373333pt;}
.y149{bottom:521.853333pt;}
.ya2{bottom:523.933333pt;}
.y4c{bottom:527.773333pt;}
.yec{bottom:541.853333pt;}
.y1e{bottom:545.533333pt;}
.y6d{bottom:545.853333pt;}
.y108{bottom:546.493333pt;}
.y129{bottom:546.653333pt;}
.y148{bottom:547.133333pt;}
.yc2{bottom:549.053333pt;}
.ya1{bottom:549.533333pt;}
.y4b{bottom:553.053333pt;}
.yeb{bottom:566.813333pt;}
.yf1{bottom:567.133333pt;}
.y8f{bottom:569.693333pt;}
.y1d{bottom:570.813333pt;}
.y107{bottom:571.773333pt;}
.y128{bottom:571.933333pt;}
.y6c{bottom:572.093333pt;}
.y147{bottom:572.413333pt;}
.yc1{bottom:574.493333pt;}
.ya0{bottom:574.813333pt;}
.y4a{bottom:578.493333pt;}
.yea{bottom:581.053333pt;}
.y8e{bottom:594.973333pt;}
.y1c{bottom:596.093333pt;}
.y127{bottom:596.893333pt;}
.y106{bottom:597.053333pt;}
.y146{bottom:597.373333pt;}
.y6b{bottom:597.533333pt;}
.y15b{bottom:597.693333pt;}
.y9f{bottom:599.773333pt;}
.y49{bottom:603.773333pt;}
.ye9{bottom:606.973333pt;}
.y126{bottom:611.293333pt;}
.y8d{bottom:616.893333pt;}
.y1b{bottom:621.373333pt;}
.y105{bottom:622.013333pt;}
.y10a{bottom:622.333333pt;}
.y145{bottom:622.653333pt;}
.y15a{bottom:622.973333pt;}
.y6a{bottom:623.773333pt;}
.ybf{bottom:625.053333pt;}
.y9e{bottom:625.533333pt;}
.y15d{bottom:628.733333pt;}
.y48{bottom:629.053333pt;}
.ye8{bottom:632.893333pt;}
.y125{bottom:637.213333pt;}
.y104{bottom:647.613333pt;}
.y159{bottom:647.933333pt;}
.y144{bottom:648.253333pt;}
.y69{bottom:650.173333pt;}
.ybe{bottom:650.333333pt;}
.y9d{bottom:650.813333pt;}
.y1a{bottom:651.933333pt;}
.y47{bottom:654.333333pt;}
.ye7{bottom:658.973333pt;}
.y103{bottom:661.533333pt;}
.y143{bottom:662.333333pt;}
.y124{bottom:663.133333pt;}
.y84{bottom:666.013333pt;}
.y19{bottom:671.933333pt;}
.ybd{bottom:675.293333pt;}
.yc0{bottom:675.613333pt;}
.y68{bottom:676.093333pt;}
.y9c{bottom:677.213333pt;}
.y46{bottom:679.613333pt;}
.ye6{bottom:684.893333pt;}
.y123{bottom:689.053333pt;}
.y83{bottom:691.293333pt;}
.ybc{bottom:700.893333pt;}
.y67{bottom:701.853333pt;}
.y18{bottom:702.493333pt;}
.y9b{bottom:703.453333pt;}
.y45{bottom:704.893333pt;}
.ye5{bottom:710.813333pt;}
.y102{bottom:712.893333pt;}
.y82{bottom:713.213333pt;}
.y141{bottom:713.533333pt;}
.ybb{bottom:714.813333pt;}
.y122{bottom:715.133333pt;}
.y17{bottom:722.493333pt;}
.y66{bottom:728.093333pt;}
.y9a{bottom:728.933333pt;}
.y44{bottom:730.213333pt;}
.ye4{bottom:736.933333pt;}
.y101{bottom:738.853333pt;}
.yba{bottom:740.933333pt;}
.y121{bottom:741.093333pt;}
.y16{bottom:753.093333pt;}
.y65{bottom:753.573333pt;}
.y99{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.ye3{bottom:762.853333pt;}
.y140{bottom:764.773333pt;}
.yb9{bottom:766.853333pt;}
.y11c{bottom:767.013333pt;}
.y15{bottom:773.253333pt;}
.y64{bottom:779.813333pt;}
.y42{bottom:780.773333pt;}
.y98{bottom:781.253333pt;}
.ye2{bottom:788.773333pt;}
.y100{bottom:790.053333pt;}
.y13f{bottom:790.853333pt;}
.yb2{bottom:792.773333pt;}
.y11f{bottom:793.413333pt;}
.y8c{bottom:796.773333pt;}
.y14{bottom:803.813333pt;}
.y63{bottom:805.093333pt;}
.y41{bottom:805.893333pt;}
.y7f{bottom:806.213333pt;}
.y97{bottom:806.853333pt;}
.ye1{bottom:814.693333pt;}
.y13e{bottom:816.773333pt;}
.y8b{bottom:818.533333pt;}
.yb5{bottom:818.693333pt;}
.y13{bottom:823.813333pt;}
.y96{bottom:828.613333pt;}
.y62{bottom:830.373333pt;}
.y40{bottom:831.493333pt;}
.ye0{bottom:840.773333pt;}
.yff{bottom:841.413333pt;}
.y13d{bottom:842.693333pt;}
.y12{bottom:854.373333pt;}
.y61{bottom:855.653333pt;}
.y3f{bottom:856.773333pt;}
.ydf{bottom:866.693333pt;}
.yfe{bottom:867.333333pt;}
.y11{bottom:874.053333pt;}
.y60{bottom:881.093333pt;}
.y3e{bottom:882.053333pt;}
.yde{bottom:892.613333pt;}
.y13c{bottom:894.053333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.ydd{bottom:918.693333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.ydb{bottom:944.613333pt;}
.y13b{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y5f{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.yda{bottom:970.560000pt;}
.y5e{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h15{height:25.280000pt;}
.h16{height:25.312000pt;}
.h19{height:25.440000pt;}
.h22{height:25.760000pt;}
.h20{height:26.240000pt;}
.h1f{height:26.400000pt;}
.h24{height:27.840000pt;}
.h1c{height:28.000000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h12{height:42.578750pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h1b{height:50.560000pt;}
.h18{height:50.592000pt;}
.h14{height:50.720000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h26{height:55.275000pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h25{height:57.888085pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1e{height:76.480000pt;}
.h17{height:76.512000pt;}
.h13{height:76.640000pt;}
.h21{height:77.120000pt;}
.h23{height:79.200000pt;}
.h1a{height:79.360000pt;}
.h1d{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w23{width:30.560000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wc{width:37.120000pt;}
.w37{width:37.280000pt;}
.w36{width:46.400000pt;}
.w31{width:46.560000pt;}
.w2a{width:46.720000pt;}
.w22{width:50.400000pt;}
.w1c{width:52.480000pt;}
.w21{width:54.240000pt;}
.w14{width:56.000000pt;}
.wb{width:56.032000pt;}
.w32{width:56.160000pt;}
.w1a{width:61.120000pt;}
.w15{width:61.440000pt;}
.wd{width:65.440000pt;}
.w9{width:65.472000pt;}
.w24{width:66.272000pt;}
.w2f{width:74.880000pt;}
.w29{width:74.912000pt;}
.w27{width:75.040000pt;}
.w12{width:75.072000pt;}
.w2d{width:75.200000pt;}
.w1b{width:76.512000pt;}
.w1f{width:78.240000pt;}
.wa{width:84.320000pt;}
.w30{width:84.512000pt;}
.w18{width:85.920000pt;}
.w26{width:86.560000pt;}
.w3a{width:88.800000pt;}
.w39{width:91.232000pt;}
.w2c{width:93.792000pt;}
.w1e{width:94.752000pt;}
.w17{width:97.792000pt;}
.w34{width:103.232000pt;}
.w13{width:112.640000pt;}
.wf{width:112.832000pt;}
.w10{width:114.560000pt;}
.w25{width:162.240000pt;}
.w33{width:169.466667pt;}
.w2b{width:169.626667pt;}
.w1d{width:173.626667pt;}
.w8{width:178.906667pt;}
.w38{width:180.666667pt;}
.w16{width:184.346667pt;}
.w11{width:188.346667pt;}
.we{width:228.026667pt;}
.w2e{width:245.186667pt;}
.w28{width:254.626667pt;}
.w35{width:264.066667pt;}
.w19{width:264.546667pt;}
.w20{width:273.506667pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x21{left:41.120000pt;}
.x2{left:47.999988pt;}
.x37{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x13{left:228.026667pt;}
.xf{left:234.106655pt;}
.x10{left:236.026655pt;}
.x1a{left:237.306667pt;}
.x14{left:294.146667pt;}
.x2f{left:303.586667pt;}
.x22{left:306.466667pt;}
.x1b{left:313.026667pt;}
.x28{left:322.466667pt;}
.x23{left:368.226667pt;}
.x30{left:369.666667pt;}
.x29{left:377.346667pt;}
.x15{left:379.266667pt;}
.x1c{left:426.493333pt;}
.x8{left:428.573321pt;}
.x16{left:435.933333pt;}
.x24{left:445.373333pt;}
.xc{left:452.573321pt;}
.x2a{left:454.493333pt;}
.x5{left:463.133333pt;}
.x17{left:473.693333pt;}
.x1d{left:483.133333pt;}
.x31{left:492.573333pt;}
.x25{left:502.013333pt;}
.x2b{left:505.693333pt;}
.x1e{left:520.893333pt;}
.x32{left:530.493333pt;}
.x2c{left:536.893333pt;}
.x18{left:539.773333pt;}
.x1f{left:582.973333pt;}
.x35{left:587.133333pt;}
.x26{left:592.893333pt;}
.x33{left:596.573333pt;}
.x2d{left:603.813333pt;}
.x11{left:620.613321pt;}
.x19{left:653.253333pt;}
.xd{left:660.933321pt;}
.xe{left:662.693321pt;}
.x36{left:679.013333pt;}
.x20{left:681.413333pt;}
.x27{left:688.293333pt;}
.x2e{left:691.013333pt;}
.x34{left:700.613333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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