
    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_4e5d9ed1441e397f4c476c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_1e9eee5c9687d8ef90055745.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e263bc06cd3e7b19b0250f2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.764160;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_293b09006f50afa02f5e2ae2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_6db4447d0ad0b3025cd171a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_1c70be7edd694f2ecefa0332.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_226ee3a47d27c7f08f7f9b80.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_0e5926400439a7655377dff4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_add8f27d99e3c639c5f0c295.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0f812e7e70a630057a50f856.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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:ffc;src:url('chunks/assets/font_5121de9a1bf8095b6d27c9ec.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ef8696dabf5e1401322ba8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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:ffe;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.680000px;}
.v4{vertical-align:33.120000px;}
.v3{vertical-align:52.560000px;}
.ls12{letter-spacing:-0.762000px;}
.ls19{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.333600px;}
.ls1{letter-spacing:-0.266400px;}
.ls13{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.115800px;}
.lsb{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.089280px;}
.ls18{letter-spacing:0.089400px;}
.lsd{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.174240px;}
.ls1e{letter-spacing:0.181440px;}
.ls1d{letter-spacing:0.185760px;}
.ls20{letter-spacing:0.187200px;}
.ls2{letter-spacing:0.189600px;}
.lsa{letter-spacing:0.218400px;}
.ls14{letter-spacing:0.234000px;}
.ls23{letter-spacing:0.250800px;}
.ls3{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.259200px;}
.ls22{letter-spacing:0.267600px;}
.lsf{letter-spacing:5.345280px;}
.ls11{letter-spacing:15.269760px;}
.ls17{letter-spacing:18.305280px;}
.ls1c{letter-spacing:19.745280px;}
.lse{letter-spacing:38.465280px;}
.ls21{letter-spacing:49.985280px;}
.lsc{letter-spacing:59.321280px;}
.ls4{letter-spacing:60.489360px;}
.ls1a{letter-spacing:65.105280px;}
.ls6{letter-spacing:77.189760px;}
.ls10{letter-spacing:78.065280px;}
.ls5{letter-spacing:86.549760px;}
.ls1f{letter-spacing:247.158720px;}
.ls8{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-45.966240px;}
.ws0{word-spacing:-16.563840px;}
.ws11{word-spacing:-15.237840px;}
.ws10{word-spacing:-15.229440px;}
.ws2{word-spacing:-15.226440px;}
.wse{word-spacing:-15.059640px;}
.wsa{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.754240px;}
.ws12{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.506440px;}
.wsb{word-spacing:-14.208240px;}
.ws7{word-spacing:-13.724160px;}
.ws6{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.389960px;}
.wsd{word-spacing:-12.438000px;}
.ws14{word-spacing:-10.863600px;}
.ws15{word-spacing:-10.279200px;}
.ws16{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:11.203200px;}
.ws4{word-spacing:43.326000px;}
._9{margin-left:-12.524640px;}
._6{margin-left:-10.539720px;}
._8{margin-left:-5.989200px;}
._7{margin-left:-4.866720px;}
._1{margin-left:-3.019680px;}
._2{margin-left:-2.013120px;}
._d{margin-left:-1.011840px;}
._4{width:1.195200px;}
._0{width:2.270640px;}
._10{width:3.563040px;}
._11{width:4.703040px;}
._12{width:5.754720px;}
._16{width:7.320480px;}
._29{width:8.353920px;}
._14{width:9.358080px;}
._13{width:10.399680px;}
._f{width:11.498880px;}
._e{width:13.221120px;}
._15{width:16.056000px;}
._19{width:17.640000px;}
._1c{width:18.878400px;}
._17{width:20.931840px;}
._a{width:28.350720px;}
._b{width:29.528640px;}
._c{width:30.752160px;}
._1d{width:35.173440px;}
._1e{width:39.942720px;}
._1f{width:41.889600px;}
._28{width:42.989760px;}
._21{width:59.351040px;}
._5{width:60.716160px;}
._26{width:62.447040px;}
._20{width:64.908480px;}
._1b{width:75.539520px;}
._1a{width:76.970880px;}
._25{width:78.759360px;}
._22{width:90.351360px;}
._27{width:116.317440px;}
._23{width:131.883840px;}
._24{width:133.433280px;}
._3{width:849.185760px;}
._18{width:1333.019040px;}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(146,208,80);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y1b{bottom:3.960000px;}
.y10{bottom:4.500000px;}
.ye0{bottom:5.940000px;}
.yde{bottom:7.380000px;}
.ye1{bottom:7.560000px;}
.yc{bottom:10.440000px;}
.y19{bottom:12.780000px;}
.ye4{bottom:14.580000px;}
.yd0{bottom:16.020000px;}
.yca{bottom:16.056000px;}
.ycf{bottom:16.560000px;}
.yc9{bottom:16.596000px;}
.ydc{bottom:17.460000px;}
.y7f{bottom:18.000000px;}
.y87{bottom:18.030000px;}
.y7a{bottom:18.540000px;}
.yb2{bottom:24.660000px;}
.yc0{bottom:24.690000px;}
.ydd{bottom:30.600000px;}
.y18{bottom:32.760000px;}
.yc7{bottom:32.790000px;}
.y89{bottom:36.900000px;}
.y7e{bottom:37.080000px;}
.y8b{bottom:37.260000px;}
.y86{bottom:37.290000px;}
.yb1{bottom:44.820000px;}
.ybf{bottom:44.850000px;}
.y7d{bottom:56.160000px;}
.y85{bottom:56.190000px;}
.y3{bottom:57.060000px;}
.ybe{bottom:65.010000px;}
.yb{bottom:66.240000px;}
.y93{bottom:73.980000px;}
.y1{bottom:74.880000px;}
.y83{bottom:74.910000px;}
.y7c{bottom:75.060000px;}
.y84{bottom:75.090000px;}
.ybd{bottom:85.170000px;}
.y92{bottom:93.060000px;}
.yfd{bottom:111.780000px;}
.ya{bottom:122.220000px;}
.y77{bottom:123.840000px;}
.y91{bottom:129.780000px;}
.y96{bottom:129.960000px;}
.yfc{bottom:130.140000px;}
.yab{bottom:143.460000px;}
.y76{bottom:145.656000px;}
.yfb{bottom:148.536000px;}
.y90{bottom:149.040000px;}
.y95{bottom:151.590000px;}
.yfa{bottom:153.750000px;}
.yaa{bottom:165.270000px;}
.y75{bottom:167.430000px;}
.y8f{bottom:167.985000px;}
.yce{bottom:169.590000px;}
.y9{bottom:178.020000px;}
.yf9{bottom:180.930000px;}
.y8d{bottom:186.705000px;}
.y8e{bottom:186.885000px;}
.y74{bottom:189.030000px;}
.y94{bottom:189.210000px;}
.ya9{bottom:198.930000px;}
.y16{bottom:201.630000px;}
.y73{bottom:210.810000px;}
.ya8{bottom:220.710000px;}
.y72{bottom:232.590000px;}
.y50{bottom:235.110000px;}
.y15{bottom:235.470000px;}
.y8c{bottom:239.070000px;}
.ya7{bottom:242.490000px;}
.y4f{bottom:255.270000px;}
.y14{bottom:269.130000px;}
.y71{bottom:275.250000px;}
.y4e{bottom:275.430000px;}
.yf8{bottom:275.610000px;}
.ya6{bottom:276.150000px;}
.y4d{bottom:295.590000px;}
.yf7{bottom:295.770000px;}
.y70{bottom:297.030000px;}
.y13{bottom:302.790000px;}
.ya5{bottom:309.990000px;}
.y4c{bottom:315.750000px;}
.yf6{bottom:315.930000px;}
.y6f{bottom:318.810000px;}
.y12{bottom:319.350000px;}
.ya4{bottom:331.590000px;}
.y4b{bottom:335.910000px;}
.yf5{bottom:336.090000px;}
.y11{bottom:340.230000px;}
.y6e{bottom:340.590000px;}
.y4a{bottom:356.070000px;}
.yf4{bottom:356.250000px;}
.yf{bottom:361.110000px;}
.y6d{bottom:362.190000px;}
.ya3{bottom:371.370000px;}
.y49{bottom:376.230000px;}
.yf3{bottom:376.410000px;}
.y6c{bottom:383.970000px;}
.y48{bottom:396.435000px;}
.yf1{bottom:396.615000px;}
.ye{bottom:400.035000px;}
.yf2{bottom:402.555000px;}
.y6b{bottom:405.795000px;}
.ya2{bottom:411.735000px;}
.y47{bottom:416.595000px;}
.yf0{bottom:416.775000px;}
.y6a{bottom:427.575000px;}
.yd{bottom:433.875000px;}
.ya1{bottom:435.495000px;}
.y46{bottom:436.755000px;}
.yef{bottom:436.935000px;}
.y8{bottom:449.535000px;}
.yc5{bottom:454.395000px;}
.y45{bottom:456.735000px;}
.y8a{bottom:457.635000px;}
.yee{bottom:457.815000px;}
.ya0{bottom:459.075000px;}
.y69{bottom:470.235000px;}
.y44{bottom:476.895000px;}
.yed{bottom:477.975000px;}
.y9f{bottom:482.835000px;}
.y68{bottom:492.015000px;}
.yc4{bottom:495.435000px;}
.y43{bottom:497.055000px;}
.yec{bottom:499.035000px;}
.y9e{bottom:506.595000px;}
.y67{bottom:513.795000px;}
.yc3{bottom:516.315000px;}
.y42{bottom:517.215000px;}
.yeb{bottom:519.195000px;}
.y9d{bottom:530.355000px;}
.y66{bottom:535.395000px;}
.y41{bottom:556.995000px;}
.y65{bottom:557.175000px;}
.yc2{bottom:557.355000px;}
.yea{bottom:559.695000px;}
.y88{bottom:564.375000px;}
.y9c{bottom:566.895000px;}
.ye9{bottom:591.375000px;}
.y40{bottom:595.155000px;}
.yc1{bottom:598.395000px;}
.ye8{bottom:599.655000px;}
.y64{bottom:600.015000px;}
.y3f{bottom:616.215000px;}
.ybc{bottom:619.275000px;}
.y63{bottom:621.615000px;}
.y82{bottom:633.135000px;}
.y3e{bottom:637.095000px;}
.ye7{bottom:638.175000px;}
.y62{bottom:643.425000px;}
.y2a{bottom:648.465000px;}
.y3d{bottom:658.185000px;}
.ye6{bottom:659.805000px;}
.y61{bottom:665.205000px;}
.y7{bottom:672.945000px;}
.y3c{bottom:679.245000px;}
.y29{bottom:684.105000px;}
.y60{bottom:686.985000px;}
.ycd{bottom:689.550000px;}
.ye5{bottom:693.645000px;}
.y3b{bottom:700.305000px;}
.ye3{bottom:710.025000px;}
.y6{bottom:710.205000px;}
.ycc{bottom:711.330000px;}
.y28{bottom:716.325000px;}
.ybb{bottom:720.825000px;}
.y3a{bottom:721.185000px;}
.y5f{bottom:729.645000px;}
.y27{bottom:736.125000px;}
.y9b{bottom:737.385000px;}
.y81{bottom:739.905000px;}
.y39{bottom:742.245000px;}
.ycb{bottom:745.170000px;}
.ye2{bottom:751.065000px;}
.y5e{bottom:751.425000px;}
.y38{bottom:763.305000px;}
.y26{bottom:764.745000px;}
.yc8{bottom:765.330000px;}
.y9a{bottom:768.525000px;}
.y5d{bottom:773.205000px;}
.ydf{bottom:775.005000px;}
.yc6{bottom:781.710000px;}
.yba{bottom:782.025000px;}
.y37{bottom:784.365000px;}
.y25{bottom:784.545000px;}
.y5c{bottom:794.805000px;}
.ydb{bottom:798.945000px;}
.y99{bottom:799.305000px;}
.y36{bottom:805.425000px;}
.y24{bottom:813.345000px;}
.y5b{bottom:816.585000px;}
.yb9{bottom:823.065000px;}
.y35{bottom:826.305000px;}
.y5a{bottom:838.185000px;}
.y23{bottom:842.145000px;}
.yda{bottom:845.925000px;}
.y80{bottom:846.645000px;}
.y34{bottom:847.365000px;}
.yb8{bottom:864.105000px;}
.y33{bottom:868.425000px;}
.y22{bottom:870.945000px;}
.y59{bottom:881.025000px;}
.yb7{bottom:884.985000px;}
.y32{bottom:889.485000px;}
.y7b{bottom:896.550000px;}
.y21{bottom:899.610000px;}
.yd9{bottom:905.190000px;}
.yb6{bottom:905.910000px;}
.y31{bottom:910.410000px;}
.y58{bottom:923.910000px;}
.yd8{bottom:926.790000px;}
.y20{bottom:928.410000px;}
.y30{bottom:931.470000px;}
.y57{bottom:945.510000px;}
.yb5{bottom:946.950000px;}
.yd7{bottom:948.570000px;}
.yaf{bottom:954.690000px;}
.y1f{bottom:957.210000px;}
.y56{bottom:967.290000px;}
.y2f{bottom:972.150000px;}
.yd6{bottom:982.230000px;}
.y1e{bottom:986.010000px;}
.yb4{bottom:987.990000px;}
.y55{bottom:989.070000px;}
.yae{bottom:994.290000px;}
.y79{bottom:1003.290000px;}
.yd5{bottom:1004.010000px;}
.yb3{bottom:1008.870000px;}
.y54{bottom:1010.850000px;}
.y2e{bottom:1011.930000px;}
.y1d{bottom:1021.830000px;}
.yd4{bottom:1025.790000px;}
.yad{bottom:1028.130000px;}
.yb0{bottom:1029.750000px;}
.y53{bottom:1032.450000px;}
.y2d{bottom:1033.530000px;}
.yd3{bottom:1047.570000px;}
.yac{bottom:1049.730000px;}
.y78{bottom:1070.790000px;}
.y98{bottom:1071.510000px;}
.y2c{bottom:1073.310000px;}
.y52{bottom:1075.290000px;}
.yd2{bottom:1087.350000px;}
.y97{bottom:1093.290000px;}
.y1c{bottom:1104.810000px;}
.y5{bottom:1105.530000px;}
.yd1{bottom:1109.130000px;}
.y2b{bottom:1112.910000px;}
.y51{bottom:1115.070000px;}
.y1a{bottom:1135.230000px;}
.y4{bottom:1139.220000px;}
.y17{bottom:1151.640000px;}
.h2{height:19.980000px;}
.hb{height:20.160000px;}
.h20{height:20.196000px;}
.h28{height:23.040000px;}
.h29{height:23.220000px;}
.h26{height:32.040000px;}
.h25{height:32.076000px;}
.h2d{height:35.806641px;}
.h8{height:37.260000px;}
.h2e{height:38.671172px;}
.h1f{height:40.320000px;}
.h2c{height:41.535703px;}
.hd{height:43.681992px;}
.h27{height:46.260000px;}
.h1c{height:48.960000px;}
.h18{height:48.996000px;}
.h14{height:50.940000px;}
.h3{height:51.677227px;}
.h1d{height:53.302500px;}
.h17{height:53.709961px;}
.h16{height:55.291992px;}
.h4{height:57.280781px;}
.h13{height:57.937500px;}
.hc{height:58.140000px;}
.h24{height:58.176000px;}
.h2f{height:59.439023px;}
.h1e{height:60.480000px;}
.hf{height:61.189805px;}
.he{height:63.344531px;}
.h5{height:65.884219px;}
.h10{height:67.824844px;}
.h1a{height:67.860000px;}
.h11{height:68.084282px;}
.h12{height:68.956875px;}
.h7{height:72.007031px;}
.h2a{height:79.535391px;}
.h2b{height:99.004219px;}
.h21{height:100.836000px;}
.h15{height:105.840000px;}
.h19{height:105.876000px;}
.ha{height:145.069805px;}
.h1b{height:217.650000px;}
.h9{height:223.410000px;}
.h6{height:377.130000px;}
.h22{height:892.980000px;}
.h23{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:73.620000px;}
.w1e{width:73.656000px;}
.w6{width:84.096000px;}
.w10{width:116.136000px;}
.w11{width:116.316000px;}
.w12{width:116.460000px;}
.w1c{width:127.080000px;}
.wb{width:137.736000px;}
.wa{width:137.880000px;}
.w20{width:144.360000px;}
.w1f{width:148.176000px;}
.we{width:232.770000px;}
.w7{width:265.530000px;}
.w8{width:290.370000px;}
.w1d{width:307.290000px;}
.w1b{width:318.990000px;}
.w3{width:324.030000px;}
.wc{width:328.035000px;}
.w2{width:352.695000px;}
.w1a{width:372.135000px;}
.w9{width:397.695000px;}
.w15{width:448.275000px;}
.w19{width:498.855000px;}
.w18{width:543.165000px;}
.w16{width:614.265000px;}
.w5{width:656.205000px;}
.wd{width:717.630000px;}
.w21{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w17{width:1262.879981px;}
.w13{width:1262.880000px;}
.w14{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x26{left:10.260000px;}
.x2d{left:11.340000px;}
.x23{left:12.780000px;}
.x1a{left:13.860000px;}
.x27{left:15.840000px;}
.x1c{left:16.920000px;}
.x2f{left:19.620000px;}
.x43{left:21.420000px;}
.x1b{left:22.680000px;}
.x15{left:25.785000px;}
.x24{left:27.000000px;}
.x21{left:28.260000px;}
.x28{left:30.060000px;}
.x29{left:32.940000px;}
.x13{left:36.900000px;}
.x2b{left:39.060000px;}
.x2a{left:41.805000px;}
.x1f{left:43.425000px;}
.x22{left:45.045000px;}
.x1e{left:47.514000px;}
.x18{left:50.934000px;}
.x19{left:58.545000px;}
.x32{left:65.519987px;}
.x41{left:72.720000px;}
.x20{left:74.190000px;}
.x30{left:85.170000px;}
.x2e{left:95.430000px;}
.xa{left:97.416000px;}
.x1d{left:99.390000px;}
.x3d{left:102.239981px;}
.xd{left:105.330000px;}
.x1{left:107.676000px;}
.x12{left:108.936000px;}
.x4b{left:112.895987px;}
.x17{left:122.250000px;}
.x25{left:123.870000px;}
.x34{left:126.216000px;}
.x5{left:128.916000px;}
.x10{left:135.035987px;}
.x2c{left:139.350000px;}
.x40{left:140.940000px;}
.x47{left:162.029987px;}
.x11{left:171.929987px;}
.x48{left:189.029987px;}
.x49{left:216.029987px;}
.xe{left:219.630000px;}
.x14{left:247.710000px;}
.x4{left:277.605000px;}
.xb{left:281.199000px;}
.x46{left:308.414987px;}
.x31{left:317.774987px;}
.x39{left:321.690000px;}
.x4a{left:324.074987px;}
.x35{left:359.715000px;}
.x16{left:385.995000px;}
.xc{left:387.795000px;}
.x42{left:416.775000px;}
.x8{left:434.055000px;}
.x3a{left:436.035000px;}
.x3c{left:452.565000px;}
.x3{left:460.365000px;}
.x3f{left:469.545000px;}
.x44{left:491.145000px;}
.x6{left:513.114000px;}
.x9{left:518.865000px;}
.x38{left:545.655000px;}
.x36{left:550.905000px;}
.x45{left:640.050000px;}
.x3b{left:650.805000px;}
.x37{left:667.950000px;}
.x7{left:713.664000px;}
.x33{left:749.309987px;}
.xf{left:777.929987px;}
.x3e{left:1079.609981px;}
@media print{
.v1{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.160000pt;}
.v4{vertical-align:29.440000pt;}
.v3{vertical-align:46.720000pt;}
.ls12{letter-spacing:-0.677333pt;}
.ls19{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.296533pt;}
.ls1{letter-spacing:-0.236800pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.102933pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.079360pt;}
.ls18{letter-spacing:0.079467pt;}
.lsd{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.154880pt;}
.ls1e{letter-spacing:0.161280pt;}
.ls1d{letter-spacing:0.165120pt;}
.ls20{letter-spacing:0.166400pt;}
.ls2{letter-spacing:0.168533pt;}
.lsa{letter-spacing:0.194133pt;}
.ls14{letter-spacing:0.208000pt;}
.ls23{letter-spacing:0.222933pt;}
.ls3{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.230400pt;}
.ls22{letter-spacing:0.237867pt;}
.lsf{letter-spacing:4.751360pt;}
.ls11{letter-spacing:13.573120pt;}
.ls17{letter-spacing:16.271360pt;}
.ls1c{letter-spacing:17.551360pt;}
.lse{letter-spacing:34.191360pt;}
.ls21{letter-spacing:44.431360pt;}
.lsc{letter-spacing:52.730027pt;}
.ls4{letter-spacing:53.768320pt;}
.ls1a{letter-spacing:57.871360pt;}
.ls6{letter-spacing:68.613120pt;}
.ls10{letter-spacing:69.391360pt;}
.ls5{letter-spacing:76.933120pt;}
.ls1f{letter-spacing:219.696640pt;}
.ls8{letter-spacing:754.831787pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-40.858880pt;}
.ws0{word-spacing:-14.723413pt;}
.ws11{word-spacing:-13.544747pt;}
.ws10{word-spacing:-13.537280pt;}
.ws2{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.386347pt;}
.wsa{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.114880pt;}
.ws12{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.629547pt;}
.ws7{word-spacing:-12.199253pt;}
.ws6{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.056000pt;}
.ws14{word-spacing:-9.656533pt;}
.ws15{word-spacing:-9.137067pt;}
.ws16{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:9.958400pt;}
.ws4{word-spacing:38.512000pt;}
._9{margin-left:-11.133013pt;}
._6{margin-left:-9.368640pt;}
._8{margin-left:-5.323733pt;}
._7{margin-left:-4.325973pt;}
._1{margin-left:-2.684160pt;}
._2{margin-left:-1.789440pt;}
._d{margin-left:-0.899413pt;}
._4{width:1.062400pt;}
._0{width:2.018347pt;}
._10{width:3.167147pt;}
._11{width:4.180480pt;}
._12{width:5.115307pt;}
._16{width:6.507093pt;}
._29{width:7.425707pt;}
._14{width:8.318293pt;}
._13{width:9.244160pt;}
._f{width:10.221227pt;}
._e{width:11.752107pt;}
._15{width:14.272000pt;}
._19{width:15.680000pt;}
._1c{width:16.780800pt;}
._17{width:18.606080pt;}
._a{width:25.200640pt;}
._b{width:26.247680pt;}
._c{width:27.335253pt;}
._1d{width:31.265280pt;}
._1e{width:35.504640pt;}
._1f{width:37.235200pt;}
._28{width:38.213120pt;}
._21{width:52.756480pt;}
._5{width:53.969920pt;}
._26{width:55.508480pt;}
._20{width:57.696427pt;}
._1b{width:67.146240pt;}
._1a{width:68.418560pt;}
._25{width:70.008320pt;}
._22{width:80.312320pt;}
._27{width:103.393280pt;}
._23{width:117.230080pt;}
._24{width:118.607360pt;}
._3{width:754.831787pt;}
._18{width:1184.905813pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y1b{bottom:3.520000pt;}
.y10{bottom:4.000000pt;}
.ye0{bottom:5.280000pt;}
.yde{bottom:6.560000pt;}
.ye1{bottom:6.720000pt;}
.yc{bottom:9.280000pt;}
.y19{bottom:11.360000pt;}
.ye4{bottom:12.960000pt;}
.yd0{bottom:14.240000pt;}
.yca{bottom:14.272000pt;}
.ycf{bottom:14.720000pt;}
.yc9{bottom:14.752000pt;}
.ydc{bottom:15.520000pt;}
.y7f{bottom:16.000000pt;}
.y87{bottom:16.026667pt;}
.y7a{bottom:16.480000pt;}
.yb2{bottom:21.920000pt;}
.yc0{bottom:21.946667pt;}
.ydd{bottom:27.200000pt;}
.y18{bottom:29.120000pt;}
.yc7{bottom:29.146667pt;}
.y89{bottom:32.800000pt;}
.y7e{bottom:32.960000pt;}
.y8b{bottom:33.120000pt;}
.y86{bottom:33.146667pt;}
.yb1{bottom:39.840000pt;}
.ybf{bottom:39.866667pt;}
.y7d{bottom:49.920000pt;}
.y85{bottom:49.946667pt;}
.y3{bottom:50.720000pt;}
.ybe{bottom:57.786667pt;}
.yb{bottom:58.880000pt;}
.y93{bottom:65.760000pt;}
.y1{bottom:66.560000pt;}
.y83{bottom:66.586667pt;}
.y7c{bottom:66.720000pt;}
.y84{bottom:66.746667pt;}
.ybd{bottom:75.706667pt;}
.y92{bottom:82.720000pt;}
.yfd{bottom:99.360000pt;}
.ya{bottom:108.640000pt;}
.y77{bottom:110.080000pt;}
.y91{bottom:115.360000pt;}
.y96{bottom:115.520000pt;}
.yfc{bottom:115.680000pt;}
.yab{bottom:127.520000pt;}
.y76{bottom:129.472000pt;}
.yfb{bottom:132.032000pt;}
.y90{bottom:132.480000pt;}
.y95{bottom:134.746667pt;}
.yfa{bottom:136.666667pt;}
.yaa{bottom:146.906667pt;}
.y75{bottom:148.826667pt;}
.y8f{bottom:149.320000pt;}
.yce{bottom:150.746667pt;}
.y9{bottom:158.240000pt;}
.yf9{bottom:160.826667pt;}
.y8d{bottom:165.960000pt;}
.y8e{bottom:166.120000pt;}
.y74{bottom:168.026667pt;}
.y94{bottom:168.186667pt;}
.ya9{bottom:176.826667pt;}
.y16{bottom:179.226667pt;}
.y73{bottom:187.386667pt;}
.ya8{bottom:196.186667pt;}
.y72{bottom:206.746667pt;}
.y50{bottom:208.986667pt;}
.y15{bottom:209.306667pt;}
.y8c{bottom:212.506667pt;}
.ya7{bottom:215.546667pt;}
.y4f{bottom:226.906667pt;}
.y14{bottom:239.226667pt;}
.y71{bottom:244.666667pt;}
.y4e{bottom:244.826667pt;}
.yf8{bottom:244.986667pt;}
.ya6{bottom:245.466667pt;}
.y4d{bottom:262.746667pt;}
.yf7{bottom:262.906667pt;}
.y70{bottom:264.026667pt;}
.y13{bottom:269.146667pt;}
.ya5{bottom:275.546667pt;}
.y4c{bottom:280.666667pt;}
.yf6{bottom:280.826667pt;}
.y6f{bottom:283.386667pt;}
.y12{bottom:283.866667pt;}
.ya4{bottom:294.746667pt;}
.y4b{bottom:298.586667pt;}
.yf5{bottom:298.746667pt;}
.y11{bottom:302.426667pt;}
.y6e{bottom:302.746667pt;}
.y4a{bottom:316.506667pt;}
.yf4{bottom:316.666667pt;}
.yf{bottom:320.986667pt;}
.y6d{bottom:321.946667pt;}
.ya3{bottom:330.106667pt;}
.y49{bottom:334.426667pt;}
.yf3{bottom:334.586667pt;}
.y6c{bottom:341.306667pt;}
.y48{bottom:352.386667pt;}
.yf1{bottom:352.546667pt;}
.ye{bottom:355.586667pt;}
.yf2{bottom:357.826667pt;}
.y6b{bottom:360.706667pt;}
.ya2{bottom:365.986667pt;}
.y47{bottom:370.306667pt;}
.yf0{bottom:370.466667pt;}
.y6a{bottom:380.066667pt;}
.yd{bottom:385.666667pt;}
.ya1{bottom:387.106667pt;}
.y46{bottom:388.226667pt;}
.yef{bottom:388.386667pt;}
.y8{bottom:399.586667pt;}
.yc5{bottom:403.906667pt;}
.y45{bottom:405.986667pt;}
.y8a{bottom:406.786667pt;}
.yee{bottom:406.946667pt;}
.ya0{bottom:408.066667pt;}
.y69{bottom:417.986667pt;}
.y44{bottom:423.906667pt;}
.yed{bottom:424.866667pt;}
.y9f{bottom:429.186667pt;}
.y68{bottom:437.346667pt;}
.yc4{bottom:440.386667pt;}
.y43{bottom:441.826667pt;}
.yec{bottom:443.586667pt;}
.y9e{bottom:450.306667pt;}
.y67{bottom:456.706667pt;}
.yc3{bottom:458.946667pt;}
.y42{bottom:459.746667pt;}
.yeb{bottom:461.506667pt;}
.y9d{bottom:471.426667pt;}
.y66{bottom:475.906667pt;}
.y41{bottom:495.106667pt;}
.y65{bottom:495.266667pt;}
.yc2{bottom:495.426667pt;}
.yea{bottom:497.506667pt;}
.y88{bottom:501.666667pt;}
.y9c{bottom:503.906667pt;}
.ye9{bottom:525.666667pt;}
.y40{bottom:529.026667pt;}
.yc1{bottom:531.906667pt;}
.ye8{bottom:533.026667pt;}
.y64{bottom:533.346667pt;}
.y3f{bottom:547.746667pt;}
.ybc{bottom:550.466667pt;}
.y63{bottom:552.546667pt;}
.y82{bottom:562.786667pt;}
.y3e{bottom:566.306667pt;}
.ye7{bottom:567.266667pt;}
.y62{bottom:571.933333pt;}
.y2a{bottom:576.413333pt;}
.y3d{bottom:585.053333pt;}
.ye6{bottom:586.493333pt;}
.y61{bottom:591.293333pt;}
.y7{bottom:598.173333pt;}
.y3c{bottom:603.773333pt;}
.y29{bottom:608.093333pt;}
.y60{bottom:610.653333pt;}
.ycd{bottom:612.933333pt;}
.ye5{bottom:616.573333pt;}
.y3b{bottom:622.493333pt;}
.ye3{bottom:631.133333pt;}
.y6{bottom:631.293333pt;}
.ycc{bottom:632.293333pt;}
.y28{bottom:636.733333pt;}
.ybb{bottom:640.733333pt;}
.y3a{bottom:641.053333pt;}
.y5f{bottom:648.573333pt;}
.y27{bottom:654.333333pt;}
.y9b{bottom:655.453333pt;}
.y81{bottom:657.693333pt;}
.y39{bottom:659.773333pt;}
.ycb{bottom:662.373333pt;}
.ye2{bottom:667.613333pt;}
.y5e{bottom:667.933333pt;}
.y38{bottom:678.493333pt;}
.y26{bottom:679.773333pt;}
.yc8{bottom:680.293333pt;}
.y9a{bottom:683.133333pt;}
.y5d{bottom:687.293333pt;}
.ydf{bottom:688.893333pt;}
.yc6{bottom:694.853333pt;}
.yba{bottom:695.133333pt;}
.y37{bottom:697.213333pt;}
.y25{bottom:697.373333pt;}
.y5c{bottom:706.493333pt;}
.ydb{bottom:710.173333pt;}
.y99{bottom:710.493333pt;}
.y36{bottom:715.933333pt;}
.y24{bottom:722.973333pt;}
.y5b{bottom:725.853333pt;}
.yb9{bottom:731.613333pt;}
.y35{bottom:734.493333pt;}
.y5a{bottom:745.053333pt;}
.y23{bottom:748.573333pt;}
.yda{bottom:751.933333pt;}
.y80{bottom:752.573333pt;}
.y34{bottom:753.213333pt;}
.yb8{bottom:768.093333pt;}
.y33{bottom:771.933333pt;}
.y22{bottom:774.173333pt;}
.y59{bottom:783.133333pt;}
.yb7{bottom:786.653333pt;}
.y32{bottom:790.653333pt;}
.y7b{bottom:796.933333pt;}
.y21{bottom:799.653333pt;}
.yd9{bottom:804.613333pt;}
.yb6{bottom:805.253333pt;}
.y31{bottom:809.253333pt;}
.y58{bottom:821.253333pt;}
.yd8{bottom:823.813333pt;}
.y20{bottom:825.253333pt;}
.y30{bottom:827.973333pt;}
.y57{bottom:840.453333pt;}
.yb5{bottom:841.733333pt;}
.yd7{bottom:843.173333pt;}
.yaf{bottom:848.613333pt;}
.y1f{bottom:850.853333pt;}
.y56{bottom:859.813333pt;}
.y2f{bottom:864.133333pt;}
.yd6{bottom:873.093333pt;}
.y1e{bottom:876.453333pt;}
.yb4{bottom:878.213333pt;}
.y55{bottom:879.173333pt;}
.yae{bottom:883.813333pt;}
.y79{bottom:891.813333pt;}
.yd5{bottom:892.453333pt;}
.yb3{bottom:896.773333pt;}
.y54{bottom:898.533333pt;}
.y2e{bottom:899.493333pt;}
.y1d{bottom:908.293333pt;}
.yd4{bottom:911.813333pt;}
.yad{bottom:913.893333pt;}
.yb0{bottom:915.333333pt;}
.y53{bottom:917.733333pt;}
.y2d{bottom:918.693333pt;}
.yd3{bottom:931.173333pt;}
.yac{bottom:933.093333pt;}
.y78{bottom:951.813333pt;}
.y98{bottom:952.453333pt;}
.y2c{bottom:954.053333pt;}
.y52{bottom:955.813333pt;}
.yd2{bottom:966.533333pt;}
.y97{bottom:971.813333pt;}
.y1c{bottom:982.053333pt;}
.y5{bottom:982.693333pt;}
.yd1{bottom:985.893333pt;}
.y2b{bottom:989.253333pt;}
.y51{bottom:991.173333pt;}
.y1a{bottom:1009.093333pt;}
.y4{bottom:1012.640000pt;}
.y17{bottom:1023.680000pt;}
.h2{height:17.760000pt;}
.hb{height:17.920000pt;}
.h20{height:17.952000pt;}
.h28{height:20.480000pt;}
.h29{height:20.640000pt;}
.h26{height:28.480000pt;}
.h25{height:28.512000pt;}
.h2d{height:31.828125pt;}
.h8{height:33.120000pt;}
.h2e{height:34.374375pt;}
.h1f{height:35.840000pt;}
.h2c{height:36.920625pt;}
.hd{height:38.828437pt;}
.h27{height:41.120000pt;}
.h1c{height:43.520000pt;}
.h18{height:43.552000pt;}
.h14{height:45.280000pt;}
.h3{height:45.935313pt;}
.h1d{height:47.380000pt;}
.h17{height:47.742188pt;}
.h16{height:49.148438pt;}
.h4{height:50.916250pt;}
.h13{height:51.500000pt;}
.hc{height:51.680000pt;}
.h24{height:51.712000pt;}
.h2f{height:52.834688pt;}
.h1e{height:53.760000pt;}
.hf{height:54.390938pt;}
.he{height:56.306250pt;}
.h5{height:58.563750pt;}
.h10{height:60.288750pt;}
.h1a{height:60.320000pt;}
.h11{height:60.519362pt;}
.h12{height:61.295000pt;}
.h7{height:64.006250pt;}
.h2a{height:70.698125pt;}
.h2b{height:88.003750pt;}
.h21{height:89.632000pt;}
.h15{height:94.080000pt;}
.h19{height:94.112000pt;}
.ha{height:128.950937pt;}
.h1b{height:193.466667pt;}
.h9{height:198.586667pt;}
.h6{height:335.226667pt;}
.h22{height:793.760000pt;}
.h23{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:65.440000pt;}
.w1e{width:65.472000pt;}
.w6{width:74.752000pt;}
.w10{width:103.232000pt;}
.w11{width:103.392000pt;}
.w12{width:103.520000pt;}
.w1c{width:112.960000pt;}
.wb{width:122.432000pt;}
.wa{width:122.560000pt;}
.w20{width:128.320000pt;}
.w1f{width:131.712000pt;}
.we{width:206.906667pt;}
.w7{width:236.026667pt;}
.w8{width:258.106667pt;}
.w1d{width:273.146667pt;}
.w1b{width:283.546667pt;}
.w3{width:288.026667pt;}
.wc{width:291.586667pt;}
.w2{width:313.506667pt;}
.w1a{width:330.786667pt;}
.w9{width:353.506667pt;}
.w15{width:398.466667pt;}
.w19{width:443.426667pt;}
.w18{width:482.813333pt;}
.w16{width:546.013333pt;}
.w5{width:583.293333pt;}
.wd{width:637.893333pt;}
.w21{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w17{width:1122.559983pt;}
.w13{width:1122.560000pt;}
.w14{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x26{left:9.120000pt;}
.x2d{left:10.080000pt;}
.x23{left:11.360000pt;}
.x1a{left:12.320000pt;}
.x27{left:14.080000pt;}
.x1c{left:15.040000pt;}
.x2f{left:17.440000pt;}
.x43{left:19.040000pt;}
.x1b{left:20.160000pt;}
.x15{left:22.920000pt;}
.x24{left:24.000000pt;}
.x21{left:25.120000pt;}
.x28{left:26.720000pt;}
.x29{left:29.280000pt;}
.x13{left:32.800000pt;}
.x2b{left:34.720000pt;}
.x2a{left:37.160000pt;}
.x1f{left:38.600000pt;}
.x22{left:40.040000pt;}
.x1e{left:42.234667pt;}
.x18{left:45.274667pt;}
.x19{left:52.040000pt;}
.x32{left:58.239988pt;}
.x41{left:64.640000pt;}
.x20{left:65.946667pt;}
.x30{left:75.706667pt;}
.x2e{left:84.826667pt;}
.xa{left:86.592000pt;}
.x1d{left:88.346667pt;}
.x3d{left:90.879983pt;}
.xd{left:93.626667pt;}
.x1{left:95.712000pt;}
.x12{left:96.832000pt;}
.x4b{left:100.351988pt;}
.x17{left:108.666667pt;}
.x25{left:110.106667pt;}
.x34{left:112.192000pt;}
.x5{left:114.592000pt;}
.x10{left:120.031988pt;}
.x2c{left:123.866667pt;}
.x40{left:125.280000pt;}
.x47{left:144.026655pt;}
.x11{left:152.826655pt;}
.x48{left:168.026655pt;}
.x49{left:192.026655pt;}
.xe{left:195.226667pt;}
.x14{left:220.186667pt;}
.x4{left:246.760000pt;}
.xb{left:249.954667pt;}
.x46{left:274.146655pt;}
.x31{left:282.466655pt;}
.x39{left:285.946667pt;}
.x4a{left:288.066655pt;}
.x35{left:319.746667pt;}
.x16{left:343.106667pt;}
.xc{left:344.706667pt;}
.x42{left:370.466667pt;}
.x8{left:385.826667pt;}
.x3a{left:387.586667pt;}
.x3c{left:402.280000pt;}
.x3{left:409.213333pt;}
.x3f{left:417.373333pt;}
.x44{left:436.573333pt;}
.x6{left:456.101333pt;}
.x9{left:461.213333pt;}
.x38{left:485.026667pt;}
.x36{left:489.693333pt;}
.x45{left:568.933333pt;}
.x3b{left:578.493333pt;}
.x37{left:593.733333pt;}
.x7{left:634.368000pt;}
.x33{left:666.053322pt;}
.xf{left:691.493322pt;}
.x3e{left:959.653317pt;}
}




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