
    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_2f89851c5a64717c50505a5a.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_42e4be30d63ac7ec240726db.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_48acc2bd8b2716f393b90c1c.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_43b765b08e7e3ab4747114c2.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_a777a483513e8fe011a230f9.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_f01184f413f2c41b25314c29.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_cfb19a232e6f013e9763701c.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;}
.ls13{letter-spacing:-3.336000px;}
.ls12{letter-spacing:-2.616000px;}
.ls15{letter-spacing:-1.896000px;}
.ls11{letter-spacing:-1.746000px;}
.ls10{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.290000px;}
.ls16{letter-spacing:-1.176000px;}
.ls8{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.274800px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005754px;}
.ls4{letter-spacing:0.109440px;}
.ls14{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:6.785280px;}
.ls3{letter-spacing:20.880000px;}
.lsa{letter-spacing:39.905280px;}
.ls9{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;}
}
.wsa{word-spacing:-66.240000px;}
.ws9{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.565754px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.384000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.270000px;}
.wsf{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.814000px;}
.ws14{word-spacing:-14.664000px;}
.ws0{word-spacing:-14.580000px;}
.ws11{word-spacing:-13.944000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.224000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._37{margin-left:-3.209280px;}
._4{margin-left:-2.124960px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._c{width:3.060480px;}
._3{width:4.106880px;}
._5{width:5.283840px;}
._6{width:6.292800px;}
._7{width:8.019840px;}
._d{width:9.774720px;}
._e{width:10.781280px;}
._f{width:12.218400px;}
._35{width:13.291200px;}
._a{width:14.440320px;}
._b{width:15.450240px;}
._1b{width:17.894880px;}
._17{width:19.086240px;}
._9{width:20.398560px;}
._8{width:22.057920px;}
._19{width:23.947680px;}
._18{width:25.436160px;}
._1a{width:26.844480px;}
._2d{width:27.964320px;}
._29{width:29.139840px;}
._25{width:30.735360px;}
._15{width:32.284800px;}
._16{width:33.633120px;}
._31{width:34.804320px;}
._39{width:36.095520px;}
._23{width:37.226880px;}
._22{width:38.327040px;}
._12{width:39.493440px;}
._3c{width:40.507680px;}
._36{width:41.604000px;}
._2b{width:43.718400px;}
._2a{width:45.379680px;}
._21{width:46.964160px;}
._30{width:48.497280px;}
._24{width:49.746240px;}
._3a{width:52.528320px;}
._34{width:53.786880px;}
._20{width:55.000320px;}
._1c{width:56.436480px;}
._1d{width:57.501600px;}
._2c{width:58.622400px;}
._28{width:60.090240px;}
._38{width:61.343520px;}
._13{width:62.530560px;}
._14{width:63.715200px;}
._26{width:66.029040px;}
._3b{width:68.094720px;}
._1f{width:69.618240px;}
._1e{width:70.683360px;}
._3e{width:71.941920px;}
._3d{width:76.242240px;}
._32{width:79.488000px;}
._33{width:80.685600px;}
._2f{width:86.478240px;}
._2e{width:87.635520px;}
._10{width:92.404800px;}
._11{width:94.463520px;}
._27{width:102.340800px;}
._2{width:961.680000px;}
.fc8{color:rgb(51,58,63);}
.fc7{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);}
.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;}
.yeb{bottom:13.140000px;}
.yb2{bottom:13.500000px;}
.yb1{bottom:13.530000px;}
.yb4{bottom:13.680000px;}
.ydc{bottom:14.040000px;}
.yaf{bottom:14.220000px;}
.ybf{bottom:14.400000px;}
.yca{bottom:14.940000px;}
.yc4{bottom:16.020000px;}
.yf2{bottom:16.050000px;}
.ydd{bottom:16.740000px;}
.yda{bottom:18.000000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.ye8{bottom:42.654000px;}
.yae{bottom:42.690000px;}
.ybe{bottom:42.885000px;}
.yc9{bottom:43.020000px;}
.yd4{bottom:43.380000px;}
.ycf{bottom:43.410000px;}
.yc3{bottom:44.100000px;}
.ye2{bottom:45.000000px;}
.yd9{bottom:46.440000px;}
.yf0{bottom:46.620000px;}
.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;}
.yc8{bottom:71.460000px;}
.yce{bottom:71.490000px;}
.yd3{bottom:71.640000px;}
.yc2{bottom:72.540000px;}
.ye1{bottom:73.080000px;}
.yb8{bottom:73.440000px;}
.yef{bottom:74.730000px;}
.y34{bottom:79.056000px;}
.yea{bottom:94.536000px;}
.y31{bottom:97.596000px;}
.yb7{bottom:101.520000px;}
.ye0{bottom:101.700000px;}
.yee{bottom:103.170000px;}
.y111{bottom:103.716000px;}
.y8e{bottom:104.976000px;}
.y6c{bottom:105.156000px;}
.y5d{bottom:109.836000px;}
.yac{bottom:121.356000px;}
.ye7{bottom:123.876000px;}
.y2f{bottom:126.036000px;}
.yb6{bottom:130.140000px;}
.ydf{bottom:130.185000px;}
.y99{bottom:130.716000px;}
.y110{bottom:132.156000px;}
.y8d{bottom:133.416000px;}
.y6b{bottom:133.596000px;}
.y5c{bottom:138.456000px;}
.y76{bottom:143.676000px;}
.yab{bottom:149.796000px;}
.ye9{bottom:153.030000px;}
.y2e{bottom:154.470000px;}
.y98{bottom:155.190000px;}
.y8c{bottom:157.890000px;}
.y10f{bottom:160.590000px;}
.y6a{bottom:162.030000px;}
.y82{bottom:166.710000px;}
.y5b{bottom:166.890000px;}
.y75{bottom:172.110000px;}
.yaa{bottom:178.230000px;}
.y2d{bottom:182.910000px;}
.y10e{bottom:189.030000px;}
.y69{bottom:190.470000px;}
.y81{bottom:195.150000px;}
.y5a{bottom:195.330000px;}
.ye6{bottom:195.690000px;}
.y74{bottom:200.550000px;}
.ya9{bottom:206.850000px;}
.y2c{bottom:211.350000px;}
.y10d{bottom:217.650000px;}
.y68{bottom:219.090000px;}
.y80{bottom:219.810000px;}
.ya2{bottom:223.590000px;}
.y59{bottom:223.770000px;}
.y73{bottom:225.030000px;}
.ya8{bottom:235.650000px;}
.y2b{bottom:239.790000px;}
.ye5{bottom:240.690000px;}
.y10c{bottom:246.090000px;}
.y67{bottom:248.610000px;}
.ya1{bottom:252.030000px;}
.y58{bottom:252.210000px;}
.ya7{bottom:264.090000px;}
.y2a{bottom:268.230000px;}
.ye4{bottom:269.850000px;}
.y10b{bottom:274.530000px;}
.y66{bottom:277.050000px;}
.y115{bottom:280.290000px;}
.ya0{bottom:280.470000px;}
.y57{bottom:280.650000px;}
.ya6{bottom:288.570000px;}
.y29{bottom:296.850000px;}
.ye3{bottom:299.010000px;}
.y10a{bottom:302.970000px;}
.y65{bottom:305.670000px;}
.y9f{bottom:308.910000px;}
.y56{bottom:309.090000px;}
.y28{bottom:325.335000px;}
.yde{bottom:328.395000px;}
.y109{bottom:331.455000px;}
.y64{bottom:335.235000px;}
.y9e{bottom:337.395000px;}
.y55{bottom:337.575000px;}
.y27{bottom:353.775000px;}
.yd8{bottom:357.555000px;}
.y108{bottom:359.895000px;}
.y63{bottom:363.675000px;}
.y54{bottom:366.015000px;}
.y8b{bottom:369.435000px;}
.y97{bottom:371.235000px;}
.y26{bottom:382.215000px;}
.y107{bottom:388.335000px;}
.ydb{bottom:389.955000px;}
.y9d{bottom:390.495000px;}
.y62{bottom:392.295000px;}
.y53{bottom:394.635000px;}
.y8a{bottom:397.875000px;}
.y96{bottom:399.675000px;}
.y25{bottom:410.295000px;}
.y30{bottom:410.655000px;}
.y106{bottom:416.775000px;}
.y72{bottom:420.735000px;}
.y61{bottom:421.815000px;}
.y89{bottom:422.355000px;}
.y52{bottom:422.715000px;}
.y6d{bottom:423.075000px;}
.y95{bottom:424.155000px;}
.yd7{bottom:433.335000px;}
.y7f{bottom:438.735000px;}
.y24{bottom:442.875000px;}
.y105{bottom:445.215000px;}
.y71{bottom:445.395000px;}
.yd2{bottom:448.995000px;}
.y60{bottom:450.255000px;}
.y51{bottom:451.515000px;}
.y7e{bottom:467.175000px;}
.y23{bottom:471.315000px;}
.y104{bottom:473.835000px;}
.yd6{bottom:478.155000px;}
.y5f{bottom:478.875000px;}
.y113{bottom:479.775000px;}
.y50{bottom:479.955000px;}
.y7d{bottom:491.835000px;}
.y22{bottom:499.755000px;}
.y103{bottom:502.275000px;}
.yd5{bottom:507.315000px;}
.y4f{bottom:508.395000px;}
.ya5{bottom:525.495000px;}
.y21{bottom:528.195000px;}
.y102{bottom:530.715000px;}
.ycd{bottom:536.655000px;}
.y4e{bottom:536.835000px;}
.ya4{bottom:553.935000px;}
.y20{bottom:556.635000px;}
.y101{bottom:559.155000px;}
.y4d{bottom:565.275000px;}
.yd1{bottom:565.815000px;}
.ya3{bottom:578.625000px;}
.y1f{bottom:585.105000px;}
.y100{bottom:587.625000px;}
.y5e{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.yd0{bottom:595.005000px;}
.y1e{bottom:613.725000px;}
.yff{bottom:616.065000px;}
.y88{bottom:618.045000px;}
.y94{bottom:619.845000px;}
.y4b{bottom:622.185000px;}
.yc7{bottom:624.345000px;}
.y70{bottom:634.245000px;}
.y1d{bottom:642.165000px;}
.y9c{bottom:644.505000px;}
.y87{bottom:646.485000px;}
.y93{bottom:648.285000px;}
.y4a{bottom:650.805000px;}
.ycc{bottom:653.505000px;}
.y6f{bottom:658.725000px;}
.y1c{bottom:670.605000px;}
.y86{bottom:671.145000px;}
.y92{bottom:672.945000px;}
.y7c{bottom:676.905000px;}
.y49{bottom:679.245000px;}
.ycb{bottom:682.665000px;}
.y1b{bottom:699.045000px;}
.yfe{bottom:701.385000px;}
.y7b{bottom:705.345000px;}
.y48{bottom:707.685000px;}
.yc1{bottom:711.825000px;}
.y1a{bottom:727.485000px;}
.y7a{bottom:729.825000px;}
.yfd{bottom:730.005000px;}
.y47{bottom:736.125000px;}
.yc6{bottom:741.165000px;}
.y19{bottom:755.925000px;}
.yfc{bottom:758.445000px;}
.y46{bottom:764.565000px;}
.yc5{bottom:771.225000px;}
.yfb{bottom:786.885000px;}
.y18{bottom:790.305000px;}
.y45{bottom:793.005000px;}
.ybd{bottom:800.385000px;}
.y17{bottom:812.805000px;}
.yfa{bottom:815.325000px;}
.y114{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.yc0{bottom:829.770000px;}
.yf9{bottom:843.810000px;}
.y16{bottom:847.230000px;}
.y6e{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y15{bottom:869.910000px;}
.yf8{bottom:872.250000px;}
.ybc{bottom:872.430000px;}
.y91{bottom:876.030000px;}
.y116{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.y85{bottom:878.730000px;}
.y9b{bottom:885.210000px;}
.yb5{bottom:888.090000px;}
.yf7{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.y90{bottom:904.470000px;}
.y41{bottom:906.990000px;}
.y84{bottom:907.170000px;}
.y79{bottom:907.530000px;}
.y9a{bottom:909.690000px;}
.ybb{bottom:917.430000px;}
.y13{bottom:926.790000px;}
.y8f{bottom:928.950000px;}
.yf6{bottom:929.130000px;}
.y83{bottom:931.650000px;}
.y40{bottom:935.430000px;}
.y78{bottom:936.150000px;}
.yba{bottom:946.590000px;}
.yf5{bottom:957.570000px;}
.y77{bottom:960.630000px;}
.y12{bottom:961.170000px;}
.y3f{bottom:963.870000px;}
.yb9{bottom:975.750000px;}
.y11{bottom:983.310000px;}
.yf4{bottom:985.830000px;}
.y112{bottom:986.190000px;}
.y3e{bottom:992.310000px;}
.yed{bottom:1001.850000px;}
.yb3{bottom:1004.910000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.yf3{bottom:1031.010000px;}
.y4{bottom:1032.810000px;}
.yad{bottom:1034.250000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.yf1{bottom:1060.170000px;}
.yb0{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.yec{bottom:1091.880000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h15{height:28.440000px;}
.h14{height:28.476000px;}
.h16{height:28.620000px;}
.h19{height:28.656000px;}
.h20{height:28.980000px;}
.h1b{height:29.340000px;}
.h25{height:30.996000px;}
.h21{height:31.680000px;}
.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;}
.h23{height:57.600000px;}
.h13{height:57.636000px;}
.h18{height:57.816000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h1f{height:61.380000px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h1c{height:86.760000px;}
.h1d{height:86.796000px;}
.h1e{height:86.940000px;}
.h1a{height:87.840000px;}
.hf{height:111.043849px;}
.h24{height:118.476000px;}
.h17{height:145.440000px;}
.h22{height:145.476000px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w9{width:31.140000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w22{width:52.380000px;}
.w24{width:56.520000px;}
.w15{width:61.236000px;}
.wa{width:63.000000px;}
.we{width:63.036000px;}
.w12{width:71.676000px;}
.w1c{width:73.620000px;}
.wb{width:73.656000px;}
.w1b{width:73.836000px;}
.w1a{width:74.196000px;}
.wf{width:76.140000px;}
.w21{width:81.396000px;}
.wc{width:84.240000px;}
.w8{width:84.636000px;}
.w13{width:86.940000px;}
.w1e{width:90.000000px;}
.w25{width:107.100000px;}
.w18{width:114.300000px;}
.w17{width:114.660000px;}
.w11{width:116.100000px;}
.w26{width:116.280000px;}
.w1f{width:116.316000px;}
.w14{width:126.576000px;}
.w10{width:137.556000px;}
.w19{width:137.916000px;}
.w27{width:147.996000px;}
.w20{width:148.140000px;}
.w16{width:252.930000px;}
.wd{width:254.370000px;}
.w23{width:264.990000px;}
.w1d{width:265.170000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:8.100000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x1{left:122.435986px;}
.x25{left:126.576000px;}
.x2c{left:128.916000px;}
.x6{left:130.860000px;}
.x34{left:136.116000px;}
.x1c{left:139.536000px;}
.x2d{left:160.770000px;}
.x1d{left:171.390000px;}
.x26{left:214.230000px;}
.x2e{left:224.490000px;}
.x1e{left:235.110000px;}
.x10{left:252.029986px;}
.x2f{left:299.055000px;}
.x1f{left:309.675000px;}
.x16{left:335.234986px;}
.xf{left:337.574986px;}
.xe{left:339.734986px;}
.x27{left:341.535000px;}
.x15{left:344.234986px;}
.x1a{left:346.574986px;}
.x35{left:352.155000px;}
.x30{left:373.395000px;}
.x20{left:394.635000px;}
.x28{left:426.675000px;}
.x39{left:469.155000px;}
.x8{left:482.144986px;}
.x29{left:488.625000px;}
.x33{left:490.425000px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.x23{left:532.905000px;}
.x2b{left:603.645000px;}
.x36{left:617.865000px;}
.x31{left:639.285000px;}
.x21{left:649.905000px;}
.x11{left:689.729986px;}
.x37{left:692.430000px;}
.x12{left:698.189986px;}
.x13{left:703.589986px;}
.x22{left:713.670000px;}
.x2a{left:742.290000px;}
.x19{left:748.589986px;}
.x38{left:749.850000px;}
.x32{left:766.950000px;}
.x14{left:770.909986px;}
.x18{left:777.389986px;}
.x17{left:781.349986px;}
.x1b{left:864.689986px;}
.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;}
.ls13{letter-spacing:-2.965333pt;}
.ls12{letter-spacing:-2.325333pt;}
.ls15{letter-spacing:-1.685333pt;}
.ls11{letter-spacing:-1.552000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.146667pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005115pt;}
.ls4{letter-spacing:0.097280pt;}
.ls14{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:6.031360pt;}
.ls3{letter-spacing:18.560000pt;}
.lsa{letter-spacing:35.471360pt;}
.ls9{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-58.880000pt;}
.ws9{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.725115pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.573333pt;}
.wsf{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.168000pt;}
.ws14{word-spacing:-13.034667pt;}
.ws0{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.394667pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.754667pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._37{margin-left:-2.852693pt;}
._4{margin-left:-1.888853pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._c{width:2.720427pt;}
._3{width:3.650560pt;}
._5{width:4.696747pt;}
._6{width:5.593600pt;}
._7{width:7.128747pt;}
._d{width:8.688640pt;}
._e{width:9.583360pt;}
._f{width:10.860800pt;}
._35{width:11.814400pt;}
._a{width:12.835840pt;}
._b{width:13.733547pt;}
._1b{width:15.906560pt;}
._17{width:16.965547pt;}
._9{width:18.132053pt;}
._8{width:19.607040pt;}
._19{width:21.286827pt;}
._18{width:22.609920pt;}
._1a{width:23.861760pt;}
._2d{width:24.857173pt;}
._29{width:25.902080pt;}
._25{width:27.320320pt;}
._15{width:28.697600pt;}
._16{width:29.896107pt;}
._31{width:30.937173pt;}
._39{width:32.084907pt;}
._23{width:33.090560pt;}
._22{width:34.068480pt;}
._12{width:35.105280pt;}
._3c{width:36.006827pt;}
._36{width:36.981333pt;}
._2b{width:38.860800pt;}
._2a{width:40.337493pt;}
._21{width:41.745920pt;}
._30{width:43.108693pt;}
._24{width:44.218880pt;}
._3a{width:46.691840pt;}
._34{width:47.810560pt;}
._20{width:48.889173pt;}
._1c{width:50.165760pt;}
._1d{width:51.112533pt;}
._2c{width:52.108800pt;}
._28{width:53.413547pt;}
._38{width:54.527573pt;}
._13{width:55.582720pt;}
._14{width:56.635733pt;}
._26{width:58.692480pt;}
._3b{width:60.528640pt;}
._1f{width:61.882880pt;}
._1e{width:62.829653pt;}
._3e{width:63.948373pt;}
._3d{width:67.770880pt;}
._32{width:70.656000pt;}
._33{width:71.720533pt;}
._2f{width:76.869547pt;}
._2e{width:77.898240pt;}
._10{width:82.137600pt;}
._11{width:83.967573pt;}
._27{width:90.969600pt;}
._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;}
.yeb{bottom:11.680000pt;}
.yb2{bottom:12.000000pt;}
.yb1{bottom:12.026667pt;}
.yb4{bottom:12.160000pt;}
.ydc{bottom:12.480000pt;}
.yaf{bottom:12.640000pt;}
.ybf{bottom:12.800000pt;}
.yca{bottom:13.280000pt;}
.yc4{bottom:14.240000pt;}
.yf2{bottom:14.266667pt;}
.ydd{bottom:14.880000pt;}
.yda{bottom:16.000000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.ye8{bottom:37.914667pt;}
.yae{bottom:37.946667pt;}
.ybe{bottom:38.120000pt;}
.yc9{bottom:38.240000pt;}
.yd4{bottom:38.560000pt;}
.ycf{bottom:38.586667pt;}
.yc3{bottom:39.200000pt;}
.ye2{bottom:40.000000pt;}
.yd9{bottom:41.280000pt;}
.yf0{bottom:41.440000pt;}
.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;}
.yc8{bottom:63.520000pt;}
.yce{bottom:63.546667pt;}
.yd3{bottom:63.680000pt;}
.yc2{bottom:64.480000pt;}
.ye1{bottom:64.960000pt;}
.yb8{bottom:65.280000pt;}
.yef{bottom:66.426667pt;}
.y34{bottom:70.272000pt;}
.yea{bottom:84.032000pt;}
.y31{bottom:86.752000pt;}
.yb7{bottom:90.240000pt;}
.ye0{bottom:90.400000pt;}
.yee{bottom:91.706667pt;}
.y111{bottom:92.192000pt;}
.y8e{bottom:93.312000pt;}
.y6c{bottom:93.472000pt;}
.y5d{bottom:97.632000pt;}
.yac{bottom:107.872000pt;}
.ye7{bottom:110.112000pt;}
.y2f{bottom:112.032000pt;}
.yb6{bottom:115.680000pt;}
.ydf{bottom:115.720000pt;}
.y99{bottom:116.192000pt;}
.y110{bottom:117.472000pt;}
.y8d{bottom:118.592000pt;}
.y6b{bottom:118.752000pt;}
.y5c{bottom:123.072000pt;}
.y76{bottom:127.712000pt;}
.yab{bottom:133.152000pt;}
.ye9{bottom:136.026667pt;}
.y2e{bottom:137.306667pt;}
.y98{bottom:137.946667pt;}
.y8c{bottom:140.346667pt;}
.y10f{bottom:142.746667pt;}
.y6a{bottom:144.026667pt;}
.y82{bottom:148.186667pt;}
.y5b{bottom:148.346667pt;}
.y75{bottom:152.986667pt;}
.yaa{bottom:158.426667pt;}
.y2d{bottom:162.586667pt;}
.y10e{bottom:168.026667pt;}
.y69{bottom:169.306667pt;}
.y81{bottom:173.466667pt;}
.y5a{bottom:173.626667pt;}
.ye6{bottom:173.946667pt;}
.y74{bottom:178.266667pt;}
.ya9{bottom:183.866667pt;}
.y2c{bottom:187.866667pt;}
.y10d{bottom:193.466667pt;}
.y68{bottom:194.746667pt;}
.y80{bottom:195.386667pt;}
.ya2{bottom:198.746667pt;}
.y59{bottom:198.906667pt;}
.y73{bottom:200.026667pt;}
.ya8{bottom:209.466667pt;}
.y2b{bottom:213.146667pt;}
.ye5{bottom:213.946667pt;}
.y10c{bottom:218.746667pt;}
.y67{bottom:220.986667pt;}
.ya1{bottom:224.026667pt;}
.y58{bottom:224.186667pt;}
.ya7{bottom:234.746667pt;}
.y2a{bottom:238.426667pt;}
.ye4{bottom:239.866667pt;}
.y10b{bottom:244.026667pt;}
.y66{bottom:246.266667pt;}
.y115{bottom:249.146667pt;}
.ya0{bottom:249.306667pt;}
.y57{bottom:249.466667pt;}
.ya6{bottom:256.506667pt;}
.y29{bottom:263.866667pt;}
.ye3{bottom:265.786667pt;}
.y10a{bottom:269.306667pt;}
.y65{bottom:271.706667pt;}
.y9f{bottom:274.586667pt;}
.y56{bottom:274.746667pt;}
.y28{bottom:289.186667pt;}
.yde{bottom:291.906667pt;}
.y109{bottom:294.626667pt;}
.y64{bottom:297.986667pt;}
.y9e{bottom:299.906667pt;}
.y55{bottom:300.066667pt;}
.y27{bottom:314.466667pt;}
.yd8{bottom:317.826667pt;}
.y108{bottom:319.906667pt;}
.y63{bottom:323.266667pt;}
.y54{bottom:325.346667pt;}
.y8b{bottom:328.386667pt;}
.y97{bottom:329.986667pt;}
.y26{bottom:339.746667pt;}
.y107{bottom:345.186667pt;}
.ydb{bottom:346.626667pt;}
.y9d{bottom:347.106667pt;}
.y62{bottom:348.706667pt;}
.y53{bottom:350.786667pt;}
.y8a{bottom:353.666667pt;}
.y96{bottom:355.266667pt;}
.y25{bottom:364.706667pt;}
.y30{bottom:365.026667pt;}
.y106{bottom:370.466667pt;}
.y72{bottom:373.986667pt;}
.y61{bottom:374.946667pt;}
.y89{bottom:375.426667pt;}
.y52{bottom:375.746667pt;}
.y6d{bottom:376.066667pt;}
.y95{bottom:377.026667pt;}
.yd7{bottom:385.186667pt;}
.y7f{bottom:389.986667pt;}
.y24{bottom:393.666667pt;}
.y105{bottom:395.746667pt;}
.y71{bottom:395.906667pt;}
.yd2{bottom:399.106667pt;}
.y60{bottom:400.226667pt;}
.y51{bottom:401.346667pt;}
.y7e{bottom:415.266667pt;}
.y23{bottom:418.946667pt;}
.y104{bottom:421.186667pt;}
.yd6{bottom:425.026667pt;}
.y5f{bottom:425.666667pt;}
.y113{bottom:426.466667pt;}
.y50{bottom:426.626667pt;}
.y7d{bottom:437.186667pt;}
.y22{bottom:444.226667pt;}
.y103{bottom:446.466667pt;}
.yd5{bottom:450.946667pt;}
.y4f{bottom:451.906667pt;}
.ya5{bottom:467.106667pt;}
.y21{bottom:469.506667pt;}
.y102{bottom:471.746667pt;}
.ycd{bottom:477.026667pt;}
.y4e{bottom:477.186667pt;}
.ya4{bottom:492.386667pt;}
.y20{bottom:494.786667pt;}
.y101{bottom:497.026667pt;}
.y4d{bottom:502.466667pt;}
.yd1{bottom:502.946667pt;}
.ya3{bottom:514.333333pt;}
.y1f{bottom:520.093333pt;}
.y100{bottom:522.333333pt;}
.y5e{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.yd0{bottom:528.893333pt;}
.y1e{bottom:545.533333pt;}
.yff{bottom:547.613333pt;}
.y88{bottom:549.373333pt;}
.y94{bottom:550.973333pt;}
.y4b{bottom:553.053333pt;}
.yc7{bottom:554.973333pt;}
.y70{bottom:563.773333pt;}
.y1d{bottom:570.813333pt;}
.y9c{bottom:572.893333pt;}
.y87{bottom:574.653333pt;}
.y93{bottom:576.253333pt;}
.y4a{bottom:578.493333pt;}
.ycc{bottom:580.893333pt;}
.y6f{bottom:585.533333pt;}
.y1c{bottom:596.093333pt;}
.y86{bottom:596.573333pt;}
.y92{bottom:598.173333pt;}
.y7c{bottom:601.693333pt;}
.y49{bottom:603.773333pt;}
.ycb{bottom:606.813333pt;}
.y1b{bottom:621.373333pt;}
.yfe{bottom:623.453333pt;}
.y7b{bottom:626.973333pt;}
.y48{bottom:629.053333pt;}
.yc1{bottom:632.733333pt;}
.y1a{bottom:646.653333pt;}
.y7a{bottom:648.733333pt;}
.yfd{bottom:648.893333pt;}
.y47{bottom:654.333333pt;}
.yc6{bottom:658.813333pt;}
.y19{bottom:671.933333pt;}
.yfc{bottom:674.173333pt;}
.y46{bottom:679.613333pt;}
.yc5{bottom:685.533333pt;}
.yfb{bottom:699.453333pt;}
.y18{bottom:702.493333pt;}
.y45{bottom:704.893333pt;}
.ybd{bottom:711.453333pt;}
.y17{bottom:722.493333pt;}
.yfa{bottom:724.733333pt;}
.y114{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.yc0{bottom:737.573333pt;}
.yf9{bottom:750.053333pt;}
.y16{bottom:753.093333pt;}
.y6e{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y15{bottom:773.253333pt;}
.yf8{bottom:775.333333pt;}
.ybc{bottom:775.493333pt;}
.y91{bottom:778.693333pt;}
.y116{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.y85{bottom:781.093333pt;}
.y9b{bottom:786.853333pt;}
.yb5{bottom:789.413333pt;}
.yf7{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.y90{bottom:803.973333pt;}
.y41{bottom:806.213333pt;}
.y84{bottom:806.373333pt;}
.y79{bottom:806.693333pt;}
.y9a{bottom:808.613333pt;}
.ybb{bottom:815.493333pt;}
.y13{bottom:823.813333pt;}
.y8f{bottom:825.733333pt;}
.yf6{bottom:825.893333pt;}
.y83{bottom:828.133333pt;}
.y40{bottom:831.493333pt;}
.y78{bottom:832.133333pt;}
.yba{bottom:841.413333pt;}
.yf5{bottom:851.173333pt;}
.y77{bottom:853.893333pt;}
.y12{bottom:854.373333pt;}
.y3f{bottom:856.773333pt;}
.yb9{bottom:867.333333pt;}
.y11{bottom:874.053333pt;}
.yf4{bottom:876.293333pt;}
.y112{bottom:876.613333pt;}
.y3e{bottom:882.053333pt;}
.yed{bottom:890.533333pt;}
.yb3{bottom:893.253333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.yf3{bottom:916.453333pt;}
.y4{bottom:918.053333pt;}
.yad{bottom:919.333333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.yf1{bottom:942.373333pt;}
.yb0{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.yec{bottom:970.560000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h15{height:25.280000pt;}
.h14{height:25.312000pt;}
.h16{height:25.440000pt;}
.h19{height:25.472000pt;}
.h20{height:25.760000pt;}
.h1b{height:26.080000pt;}
.h25{height:27.552000pt;}
.h21{height:28.160000pt;}
.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;}
.h23{height:51.200000pt;}
.h13{height:51.232000pt;}
.h18{height:51.392000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h1f{height:54.560000pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h1c{height:77.120000pt;}
.h1d{height:77.152000pt;}
.h1e{height:77.280000pt;}
.h1a{height:78.080000pt;}
.hf{height:98.705643pt;}
.h24{height:105.312000pt;}
.h17{height:129.280000pt;}
.h22{height:129.312000pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w9{width:27.680000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w22{width:46.560000pt;}
.w24{width:50.240000pt;}
.w15{width:54.432000pt;}
.wa{width:56.000000pt;}
.we{width:56.032000pt;}
.w12{width:63.712000pt;}
.w1c{width:65.440000pt;}
.wb{width:65.472000pt;}
.w1b{width:65.632000pt;}
.w1a{width:65.952000pt;}
.wf{width:67.680000pt;}
.w21{width:72.352000pt;}
.wc{width:74.880000pt;}
.w8{width:75.232000pt;}
.w13{width:77.280000pt;}
.w1e{width:80.000000pt;}
.w25{width:95.200000pt;}
.w18{width:101.600000pt;}
.w17{width:101.920000pt;}
.w11{width:103.200000pt;}
.w26{width:103.360000pt;}
.w1f{width:103.392000pt;}
.w14{width:112.512000pt;}
.w10{width:122.272000pt;}
.w19{width:122.592000pt;}
.w27{width:131.552000pt;}
.w20{width:131.680000pt;}
.w16{width:224.826667pt;}
.wd{width:226.106667pt;}
.w23{width:235.546667pt;}
.w1d{width:235.706667pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:7.200000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x1{left:108.831988pt;}
.x25{left:112.512000pt;}
.x2c{left:114.592000pt;}
.x6{left:116.320000pt;}
.x34{left:120.992000pt;}
.x1c{left:124.032000pt;}
.x2d{left:142.906667pt;}
.x1d{left:152.346667pt;}
.x26{left:190.426667pt;}
.x2e{left:199.546667pt;}
.x1e{left:208.986667pt;}
.x10{left:224.026655pt;}
.x2f{left:265.826667pt;}
.x1f{left:275.266667pt;}
.x16{left:297.986655pt;}
.xf{left:300.066655pt;}
.xe{left:301.986655pt;}
.x27{left:303.586667pt;}
.x15{left:305.986655pt;}
.x1a{left:308.066655pt;}
.x35{left:313.026667pt;}
.x30{left:331.906667pt;}
.x20{left:350.786667pt;}
.x28{left:379.266667pt;}
.x39{left:417.026667pt;}
.x8{left:428.573321pt;}
.x29{left:434.333333pt;}
.x33{left:435.933333pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.x23{left:473.693333pt;}
.x2b{left:536.573333pt;}
.x36{left:549.213333pt;}
.x31{left:568.253333pt;}
.x21{left:577.693333pt;}
.x11{left:613.093321pt;}
.x37{left:615.493333pt;}
.x12{left:620.613321pt;}
.x13{left:625.413321pt;}
.x22{left:634.373333pt;}
.x2a{left:659.813333pt;}
.x19{left:665.413321pt;}
.x38{left:666.533333pt;}
.x32{left:681.733333pt;}
.x14{left:685.253321pt;}
.x18{left:691.013321pt;}
.x17{left:694.533321pt;}
.x1b{left:768.613321pt;}
.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; }
  