
    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_05accd27ed7c089144c406e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_20d5e657ea3fcbdd554ebbb3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7301a0669a08d0427117f07e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_a23a0eb0e933874658c9bba3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_be76c0b14de34da801f2a6bd.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_53622188d8881e7411a0a636.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.772949;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_773a1adac36b1204d67cc847.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_caed118ecfcb112681066cb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_2ee9f8edd860ca687ac9afe8.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aae59c7f3782b4be3f9c6077.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_9bdb6835f16c70997b35fd2f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.666000px;}
.ls2{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.ls0{letter-spacing:46.026720px;}
.ls8{letter-spacing:2867.076000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.093600px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.274000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._4{width:2.789760px;}
._6{width:4.212000px;}
._7{width:5.364240px;}
._b{width:6.482160px;}
._5{width:7.560000px;}
._8{width:8.586000px;}
._e{width:9.936000px;}
._11{width:11.234880px;}
._a{width:12.276960px;}
._c{width:13.419840px;}
._2{width:14.910480px;}
._3{width:16.511040px;}
._9{width:17.833200px;}
._10{width:20.617200px;}
._f{width:21.872160px;}
._d{width:84.312000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.405000px;}
.y69{bottom:3.420000px;}
.y4b{bottom:3.600000px;}
.y40{bottom:3.765000px;}
.ya1{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y8b{bottom:11.505000px;}
.y72{bottom:11.520000px;}
.y88{bottom:11.685000px;}
.y6f{bottom:11.700000px;}
.y8e{bottom:11.730000px;}
.y85{bottom:11.865000px;}
.y67{bottom:12.060000px;}
.yee{bottom:12.225000px;}
.yb9{bottom:12.405000px;}
.y9f{bottom:12.420000px;}
.y4a{bottom:14.040000px;}
.y6d{bottom:19.785000px;}
.y70{bottom:19.800000px;}
.y8f{bottom:19.830000px;}
.ycf{bottom:19.980000px;}
.ycb{bottom:20.160000px;}
.y3f{bottom:20.865000px;}
.ya0{bottom:20.880000px;}
.yed{bottom:20.910000px;}
.yb7{bottom:21.045000px;}
.ya3{bottom:21.060000px;}
.y9d{bottom:21.420000px;}
.y4{bottom:23.040000px;}
.y77{bottom:28.080000px;}
.yd3{bottom:28.110000px;}
.y76{bottom:36.180000px;}
.yd2{bottom:36.210000px;}
.y3e{bottom:38.145000px;}
.y49{bottom:38.160000px;}
.y53{bottom:46.080000px;}
.y3{bottom:48.090000px;}
.y48{bottom:51.300000px;}
.y3d{bottom:55.425000px;}
.y8{bottom:58.500000px;}
.y52{bottom:61.590000px;}
.y47{bottom:64.290000px;}
.y3c{bottom:72.705000px;}
.y46{bottom:77.250000px;}
.y7{bottom:78.660000px;}
.y51{bottom:79.050000px;}
.y3b{bottom:90.030000px;}
.y45{bottom:90.390000px;}
.y50{bottom:94.890000px;}
.y101{bottom:100.080000px;}
.y94{bottom:100.800000px;}
.y56{bottom:103.860000px;}
.y3a{bottom:107.130000px;}
.y4f{bottom:110.010000px;}
.y44{bottom:112.170000px;}
.yc9{bottom:112.320000px;}
.y100{bottom:117.720000px;}
.y93{bottom:118.080000px;}
.y55{bottom:121.140000px;}
.y39{bottom:124.050000px;}
.y4e{bottom:126.030000px;}
.yc8{bottom:129.600000px;}
.yff{bottom:135.000000px;}
.y92{bottom:135.360000px;}
.y54{bottom:138.420000px;}
.y4d{bottom:141.510000px;}
.y38{bottom:141.690000px;}
.yc7{bottom:146.700000px;}
.yfe{bottom:152.280000px;}
.y91{bottom:152.640000px;}
.y41{bottom:153.000000px;}
.y4c{bottom:156.990000px;}
.y37{bottom:158.970000px;}
.yc6{bottom:163.980000px;}
.y90{bottom:166.860000px;}
.yfd{bottom:169.380000px;}
.y43{bottom:174.270000px;}
.y36{bottom:176.250000px;}
.yc5{bottom:181.260000px;}
.y42{bottom:184.890000px;}
.yfc{bottom:186.660000px;}
.y35{bottom:193.170000px;}
.yc4{bottom:198.540000px;}
.y8d{bottom:200.340000px;}
.yfb{bottom:203.940000px;}
.y34{bottom:210.630000px;}
.yc3{bottom:215.850000px;}
.yfa{bottom:221.250000px;}
.y33{bottom:227.910000px;}
.yc2{bottom:232.950000px;}
.y8c{bottom:234.045000px;}
.yf9{bottom:238.530000px;}
.y32{bottom:245.190000px;}
.yc1{bottom:250.230000px;}
.yf8{bottom:255.810000px;}
.y31{bottom:262.470000px;}
.y1d{bottom:266.790000px;}
.y8a{bottom:267.525000px;}
.yc0{bottom:267.870000px;}
.yf7{bottom:272.910000px;}
.y30{bottom:279.750000px;}
.ybf{bottom:285.150000px;}
.yf6{bottom:290.190000px;}
.y1c{bottom:290.910000px;}
.y2f{bottom:297.030000px;}
.y89{bottom:301.005000px;}
.ybe{bottom:302.430000px;}
.yf5{bottom:307.470000px;}
.y2e{bottom:314.130000px;}
.y1b{bottom:315.060000px;}
.ybd{bottom:319.710000px;}
.yf4{bottom:324.750000px;}
.y2d{bottom:331.440000px;}
.y87{bottom:334.485000px;}
.ybc{bottom:336.810000px;}
.y1a{bottom:339.180000px;}
.yf3{bottom:342.030000px;}
.y2c{bottom:348.720000px;}
.ybb{bottom:354.090000px;}
.yf2{bottom:358.950000px;}
.y19{bottom:363.480000px;}
.y2b{bottom:365.640000px;}
.yf{bottom:365.805000px;}
.y84{bottom:368.145000px;}
.yba{bottom:371.010000px;}
.yf1{bottom:373.545000px;}
.y86{bottom:385.245000px;}
.yb8{bottom:385.605000px;}
.y18{bottom:387.600000px;}
.yf0{bottom:391.545000px;}
.y2a{bottom:391.740000px;}
.y83{bottom:405.750000px;}
.y29{bottom:407.220000px;}
.yef{bottom:409.545000px;}
.y17{bottom:411.720000px;}
.yb6{bottom:420.885000px;}
.y28{bottom:422.880000px;}
.y82{bottom:423.030000px;}
.yec{bottom:427.545000px;}
.y16{bottom:435.840000px;}
.y27{bottom:438.360000px;}
.y81{bottom:440.490000px;}
.y26{bottom:453.840000px;}
.yb5{bottom:456.195000px;}
.y80{bottom:457.815000px;}
.y15{bottom:459.960000px;}
.yeb{bottom:466.455000px;}
.y25{bottom:469.320000px;}
.y7f{bottom:475.095000px;}
.yea{bottom:483.735000px;}
.y14{bottom:484.080000px;}
.y24{bottom:484.980000px;}
.yb4{bottom:491.475000px;}
.y7e{bottom:492.375000px;}
.y23{bottom:500.460000px;}
.ye9{bottom:501.015000px;}
.y13{bottom:508.380000px;}
.y7d{bottom:509.655000px;}
.y22{bottom:515.940000px;}
.ye8{bottom:517.935000px;}
.yb2{bottom:526.575000px;}
.y7c{bottom:526.935000px;}
.y21{bottom:531.420000px;}
.y12{bottom:532.500000px;}
.ye7{bottom:532.515000px;}
.y7b{bottom:544.035000px;}
.yb3{bottom:544.575000px;}
.y20{bottom:547.080000px;}
.ye6{bottom:550.515000px;}
.y11{bottom:556.665000px;}
.y7a{bottom:561.315000px;}
.y1f{bottom:562.605000px;}
.ye5{bottom:568.515000px;}
.y1e{bottom:577.725000px;}
.y79{bottom:578.595000px;}
.y10{bottom:580.785000px;}
.yb1{bottom:583.275000px;}
.ye4{bottom:586.515000px;}
.y78{bottom:595.875000px;}
.yb0{bottom:600.555000px;}
.y113{bottom:606.855000px;}
.ye3{bottom:608.295000px;}
.y75{bottom:610.095000px;}
.yaf{bottom:618.195000px;}
.y112{bottom:624.135000px;}
.ye2{bottom:625.575000px;}
.yae{bottom:635.475000px;}
.y111{bottom:641.415000px;}
.ye1{bottom:642.675000px;}
.yad{bottom:652.575000px;}
.y110{bottom:658.695000px;}
.ye0{bottom:659.595000px;}
.y74{bottom:659.955000px;}
.yac{bottom:669.855000px;}
.ydf{bottom:674.175000px;}
.y10f{bottom:675.975000px;}
.yab{bottom:687.165000px;}
.yde{bottom:692.205000px;}
.y10e{bottom:693.105000px;}
.y73{bottom:693.645000px;}
.yaa{bottom:704.445000px;}
.ydd{bottom:710.205000px;}
.y10d{bottom:710.385000px;}
.ya9{bottom:721.725000px;}
.y71{bottom:727.125000px;}
.y10c{bottom:727.665000px;}
.ydc{bottom:728.205000px;}
.ya8{bottom:739.005000px;}
.y10b{bottom:744.945000px;}
.ya7{bottom:753.225000px;}
.y6e{bottom:760.605000px;}
.y10a{bottom:762.225000px;}
.ydb{bottom:767.265000px;}
.y109{bottom:779.505000px;}
.yda{bottom:784.545000px;}
.ya6{bottom:788.505000px;}
.y6c{bottom:794.100000px;}
.y108{bottom:796.605000px;}
.yd9{bottom:801.825000px;}
.y107{bottom:813.885000px;}
.yd8{bottom:819.105000px;}
.ya5{bottom:823.605000px;}
.y66{bottom:827.565000px;}
.y6a{bottom:827.580000px;}
.y106{bottom:831.165000px;}
.yd7{bottom:836.205000px;}
.y68{bottom:844.845000px;}
.y105{bottom:848.445000px;}
.yd6{bottom:853.125000px;}
.ya4{bottom:858.885000px;}
.y65{bottom:865.365000px;}
.y104{bottom:865.725000px;}
.yd5{bottom:870.765000px;}
.y64{bottom:882.465000px;}
.y103{bottom:882.825000px;}
.yd4{bottom:887.685000px;}
.ya2{bottom:894.165000px;}
.y63{bottom:900.105000px;}
.yd1{bottom:902.280000px;}
.y62{bottom:917.430000px;}
.y9c{bottom:929.490000px;}
.y102{bottom:934.350000px;}
.y61{bottom:934.710000px;}
.y9e{bottom:947.490000px;}
.y60{bottom:951.990000px;}
.yd0{bottom:952.170000px;}
.ye{bottom:959.370000px;}
.yd{bottom:966.210000px;}
.y5f{bottom:969.270000px;}
.yc{bottom:983.490000px;}
.yce{bottom:985.650000px;}
.y9b{bottom:986.010000px;}
.y5e{bottom:986.370000px;}
.yb{bottom:1000.230000px;}
.y9a{bottom:1003.290000px;}
.y5d{bottom:1003.650000px;}
.ycd{bottom:1019.310000px;}
.y99{bottom:1020.570000px;}
.y5c{bottom:1020.930000px;}
.ya{bottom:1028.850000px;}
.y5b{bottom:1037.850000px;}
.y98{bottom:1038.210000px;}
.yca{bottom:1052.790000px;}
.y9{bottom:1053.150000px;}
.y5a{bottom:1055.130000px;}
.y97{bottom:1055.490000px;}
.ycc{bottom:1069.890000px;}
.y96{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.510000px;}
.y95{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h9{height:8.905078px;}
.h16{height:16.365000px;}
.h15{height:16.380000px;}
.h1f{height:17.265000px;}
.h29{height:17.280000px;}
.h2a{height:17.310000px;}
.h11{height:27.540000px;}
.h17{height:32.745000px;}
.h18{height:32.760000px;}
.h19{height:32.790000px;}
.h1c{height:32.796000px;}
.h27{height:32.925000px;}
.h1b{height:33.465000px;}
.h13{height:33.660000px;}
.h1e{height:34.365000px;}
.h22{height:34.380000px;}
.h2b{height:34.401000px;}
.h24{height:34.545000px;}
.h21{height:34.560000px;}
.h25{height:34.581000px;}
.h20{height:34.582500px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h1a{height:49.125000px;}
.h28{height:49.161000px;}
.h26{height:49.845000px;}
.h1d{height:52.365000px;}
.h23{height:52.545000px;}
.hd{height:52.971680px;}
.h10{height:54.421875px;}
.h14{height:55.824609px;}
.h8{height:58.651172px;}
.h7{height:60.226875px;}
.he{height:61.423863px;}
.h12{height:64.002656px;}
.h6{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.hf{height:212.070000px;}
.ha{height:590.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w49{width:31.356000px;}
.w3f{width:36.036000px;}
.w45{width:38.376000px;}
.w4c{width:41.745000px;}
.w43{width:47.865000px;}
.w4b{width:50.421000px;}
.w4a{width:50.565000px;}
.w46{width:51.105000px;}
.w3b{width:57.045000px;}
.w37{width:57.060000px;}
.w39{width:57.276000px;}
.w3a{width:57.405000px;}
.w38{width:57.420000px;}
.w3c{width:57.441000px;}
.w42{width:57.801000px;}
.w25{width:59.205000px;}
.w23{width:59.256000px;}
.w20{width:59.385000px;}
.w21{width:59.400000px;}
.w22{width:59.580000px;}
.w26{width:59.601000px;}
.w24{width:59.745000px;}
.w36{width:60.465000px;}
.w2c{width:61.380000px;}
.w30{width:61.545000px;}
.w2e{width:61.596000px;}
.w2f{width:61.905000px;}
.w2d{width:61.920000px;}
.w31{width:61.941000px;}
.w2b{width:63.525000px;}
.w17{width:64.980000px;}
.w19{width:65.016000px;}
.w1b{width:65.181000px;}
.w18{width:65.340000px;}
.w1a{width:65.505000px;}
.w10{width:70.401000px;}
.wc{width:70.560000px;}
.we{width:70.596000px;}
.wf{width:70.905000px;}
.wd{width:70.920000px;}
.w11{width:71.085000px;}
.w40{width:71.625000px;}
.w3e{width:71.640000px;}
.w41{width:71.805000px;}
.w48{width:71.820000px;}
.wb{width:73.470000px;}
.w16{width:79.185000px;}
.w2{width:104.076000px;}
.w33{width:115.200000px;}
.w35{width:115.221000px;}
.w34{width:115.416000px;}
.w1f{width:119.541000px;}
.w1d{width:119.700000px;}
.w1e{width:119.736000px;}
.w47{width:120.621000px;}
.w28{width:124.200000px;}
.w2a{width:124.221000px;}
.w29{width:124.236000px;}
.w1c{width:125.481000px;}
.w32{width:130.701000px;}
.w13{width:131.220000px;}
.w14{width:131.256000px;}
.w15{width:131.421000px;}
.w4{width:132.651000px;}
.w27{width:135.561000px;}
.w3d{width:138.261000px;}
.w8{width:142.200000px;}
.wa{width:142.221000px;}
.w9{width:142.236000px;}
.w44{width:147.801000px;}
.w6{width:162.720000px;}
.w12{width:180.561000px;}
.w7{width:201.081000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.085000px;}
.x2b{left:9.891000px;}
.x38{left:11.520000px;}
.x4{left:12.765000px;}
.x28{left:14.400000px;}
.x13{left:15.471000px;}
.x6{left:17.265000px;}
.x46{left:18.360000px;}
.x4d{left:19.440000px;}
.x16{left:20.691000px;}
.x3b{left:21.945000px;}
.x15{left:23.751000px;}
.x2c{left:25.731000px;}
.x14{left:27.171000px;}
.x1d{left:29.151000px;}
.x2d{left:30.591000px;}
.x59{left:31.665000px;}
.x2f{left:33.471000px;}
.x1a{left:35.085000px;}
.x4e{left:36.525000px;}
.x3c{left:37.965000px;}
.x41{left:39.765000px;}
.x2e{left:41.751000px;}
.xe{left:43.731000px;}
.x1c{left:47.691000px;}
.x24{left:49.710000px;}
.xf{left:50.751000px;}
.x5c{left:53.265000px;}
.xd{left:55.071000px;}
.x3d{left:57.765000px;}
.x32{left:59.745000px;}
.x19{left:62.130000px;}
.x1e{left:66.225000px;}
.x12{left:68.205000px;}
.x21{left:70.005000px;}
.x11{left:75.585000px;}
.x1{left:78.300000px;}
.x30{left:79.905000px;}
.x7{left:86.436000px;}
.x20{left:94.545000px;}
.x2{left:95.790000px;}
.x1b{left:103.305000px;}
.x6a{left:113.436000px;}
.x31{left:118.305000px;}
.x10{left:124.545000px;}
.x5{left:141.330000px;}
.x47{left:159.345000px;}
.x3e{left:173.205000px;}
.x4f{left:176.625000px;}
.x3{left:182.385000px;}
.x5d{left:192.105000px;}
.x54{left:196.965000px;}
.x17{left:219.105000px;}
.x64{left:225.405000px;}
.x22{left:296.355000px;}
.x33{left:299.595000px;}
.x50{left:308.055000px;}
.x55{left:335.955000px;}
.x5e{left:340.815000px;}
.x65{left:346.755000px;}
.x4a{left:357.915000px;}
.x43{left:359.535000px;}
.x37{left:365.475000px;}
.x27{left:367.635000px;}
.x56{left:408.315000px;}
.x5f{left:413.175000px;}
.x3f{left:419.835000px;}
.x51{left:423.975000px;}
.x34{left:431.715000px;}
.x23{left:439.275000px;}
.x57{left:445.080000px;}
.x66{left:451.380000px;}
.x60{left:452.460000px;}
.x44{left:479.820000px;}
.x4b{left:482.880000px;}
.xa{left:488.445000px;}
.x39{left:497.460000px;}
.x29{left:510.600000px;}
.x58{left:517.440000px;}
.x67{left:523.740000px;}
.x61{left:524.820000px;}
.x40{left:540.300000px;}
.x48{left:545.520000px;}
.x35{left:563.700000px;}
.x68{left:575.040000px;}
.x25{left:582.420000px;}
.x62{left:587.460000px;}
.x5a{left:589.980000px;}
.x53{left:597.900000px;}
.x45{left:600.240000px;}
.x4c{left:607.800000px;}
.x9{left:616.785000px;}
.x69{left:626.190000px;}
.x3a{left:629.610000px;}
.x5b{left:648.510000px;}
.x63{left:650.130000px;}
.x2a{left:653.550000px;}
.x52{left:656.250000px;}
.x42{left:660.750000px;}
.x49{left:670.470000px;}
.xb{left:676.050000px;}
.x36{left:695.850000px;}
.x26{left:725.370000px;}
.x8{left:790.170000px;}
.xc{left:806.940000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.592000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.ls0{letter-spacing:40.912640pt;}
.ls8{letter-spacing:2548.512000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.688000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._4{width:2.479787pt;}
._6{width:3.744000pt;}
._7{width:4.768213pt;}
._b{width:5.761920pt;}
._5{width:6.720000pt;}
._8{width:7.632000pt;}
._e{width:8.832000pt;}
._11{width:9.986560pt;}
._a{width:10.912853pt;}
._c{width:11.928747pt;}
._2{width:13.253760pt;}
._3{width:14.676480pt;}
._9{width:15.851733pt;}
._10{width:18.326400pt;}
._f{width:19.441920pt;}
._d{width:74.944000pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.026667pt;}
.y69{bottom:3.040000pt;}
.y4b{bottom:3.200000pt;}
.y40{bottom:3.346667pt;}
.ya1{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y8b{bottom:10.226667pt;}
.y72{bottom:10.240000pt;}
.y88{bottom:10.386667pt;}
.y6f{bottom:10.400000pt;}
.y8e{bottom:10.426667pt;}
.y85{bottom:10.546667pt;}
.y67{bottom:10.720000pt;}
.yee{bottom:10.866667pt;}
.yb9{bottom:11.026667pt;}
.y9f{bottom:11.040000pt;}
.y4a{bottom:12.480000pt;}
.y6d{bottom:17.586667pt;}
.y70{bottom:17.600000pt;}
.y8f{bottom:17.626667pt;}
.ycf{bottom:17.760000pt;}
.ycb{bottom:17.920000pt;}
.y3f{bottom:18.546667pt;}
.ya0{bottom:18.560000pt;}
.yed{bottom:18.586667pt;}
.yb7{bottom:18.706667pt;}
.ya3{bottom:18.720000pt;}
.y9d{bottom:19.040000pt;}
.y4{bottom:20.480000pt;}
.y77{bottom:24.960000pt;}
.yd3{bottom:24.986667pt;}
.y76{bottom:32.160000pt;}
.yd2{bottom:32.186667pt;}
.y3e{bottom:33.906667pt;}
.y49{bottom:33.920000pt;}
.y53{bottom:40.960000pt;}
.y3{bottom:42.746667pt;}
.y48{bottom:45.600000pt;}
.y3d{bottom:49.266667pt;}
.y8{bottom:52.000000pt;}
.y52{bottom:54.746667pt;}
.y47{bottom:57.146667pt;}
.y3c{bottom:64.626667pt;}
.y46{bottom:68.666667pt;}
.y7{bottom:69.920000pt;}
.y51{bottom:70.266667pt;}
.y3b{bottom:80.026667pt;}
.y45{bottom:80.346667pt;}
.y50{bottom:84.346667pt;}
.y101{bottom:88.960000pt;}
.y94{bottom:89.600000pt;}
.y56{bottom:92.320000pt;}
.y3a{bottom:95.226667pt;}
.y4f{bottom:97.786667pt;}
.y44{bottom:99.706667pt;}
.yc9{bottom:99.840000pt;}
.y100{bottom:104.640000pt;}
.y93{bottom:104.960000pt;}
.y55{bottom:107.680000pt;}
.y39{bottom:110.266667pt;}
.y4e{bottom:112.026667pt;}
.yc8{bottom:115.200000pt;}
.yff{bottom:120.000000pt;}
.y92{bottom:120.320000pt;}
.y54{bottom:123.040000pt;}
.y4d{bottom:125.786667pt;}
.y38{bottom:125.946667pt;}
.yc7{bottom:130.400000pt;}
.yfe{bottom:135.360000pt;}
.y91{bottom:135.680000pt;}
.y41{bottom:136.000000pt;}
.y4c{bottom:139.546667pt;}
.y37{bottom:141.306667pt;}
.yc6{bottom:145.760000pt;}
.y90{bottom:148.320000pt;}
.yfd{bottom:150.560000pt;}
.y43{bottom:154.906667pt;}
.y36{bottom:156.666667pt;}
.yc5{bottom:161.120000pt;}
.y42{bottom:164.346667pt;}
.yfc{bottom:165.920000pt;}
.y35{bottom:171.706667pt;}
.yc4{bottom:176.480000pt;}
.y8d{bottom:178.080000pt;}
.yfb{bottom:181.280000pt;}
.y34{bottom:187.226667pt;}
.yc3{bottom:191.866667pt;}
.yfa{bottom:196.666667pt;}
.y33{bottom:202.586667pt;}
.yc2{bottom:207.066667pt;}
.y8c{bottom:208.040000pt;}
.yf9{bottom:212.026667pt;}
.y32{bottom:217.946667pt;}
.yc1{bottom:222.426667pt;}
.yf8{bottom:227.386667pt;}
.y31{bottom:233.306667pt;}
.y1d{bottom:237.146667pt;}
.y8a{bottom:237.800000pt;}
.yc0{bottom:238.106667pt;}
.yf7{bottom:242.586667pt;}
.y30{bottom:248.666667pt;}
.ybf{bottom:253.466667pt;}
.yf6{bottom:257.946667pt;}
.y1c{bottom:258.586667pt;}
.y2f{bottom:264.026667pt;}
.y89{bottom:267.560000pt;}
.ybe{bottom:268.826667pt;}
.yf5{bottom:273.306667pt;}
.y2e{bottom:279.226667pt;}
.y1b{bottom:280.053333pt;}
.ybd{bottom:284.186667pt;}
.yf4{bottom:288.666667pt;}
.y2d{bottom:294.613333pt;}
.y87{bottom:297.320000pt;}
.ybc{bottom:299.386667pt;}
.y1a{bottom:301.493333pt;}
.yf3{bottom:304.026667pt;}
.y2c{bottom:309.973333pt;}
.ybb{bottom:314.746667pt;}
.yf2{bottom:319.066667pt;}
.y19{bottom:323.093333pt;}
.y2b{bottom:325.013333pt;}
.yf{bottom:325.160000pt;}
.y84{bottom:327.240000pt;}
.yba{bottom:329.786667pt;}
.yf1{bottom:332.040000pt;}
.y86{bottom:342.440000pt;}
.yb8{bottom:342.760000pt;}
.y18{bottom:344.533333pt;}
.yf0{bottom:348.040000pt;}
.y2a{bottom:348.213333pt;}
.y83{bottom:360.666667pt;}
.y29{bottom:361.973333pt;}
.yef{bottom:364.040000pt;}
.y17{bottom:365.973333pt;}
.yb6{bottom:374.120000pt;}
.y28{bottom:375.893333pt;}
.y82{bottom:376.026667pt;}
.yec{bottom:380.040000pt;}
.y16{bottom:387.413333pt;}
.y27{bottom:389.653333pt;}
.y81{bottom:391.546667pt;}
.y26{bottom:403.413333pt;}
.yb5{bottom:405.506667pt;}
.y80{bottom:406.946667pt;}
.y15{bottom:408.853333pt;}
.yeb{bottom:414.626667pt;}
.y25{bottom:417.173333pt;}
.y7f{bottom:422.306667pt;}
.yea{bottom:429.986667pt;}
.y14{bottom:430.293333pt;}
.y24{bottom:431.093333pt;}
.yb4{bottom:436.866667pt;}
.y7e{bottom:437.666667pt;}
.y23{bottom:444.853333pt;}
.ye9{bottom:445.346667pt;}
.y13{bottom:451.893333pt;}
.y7d{bottom:453.026667pt;}
.y22{bottom:458.613333pt;}
.ye8{bottom:460.386667pt;}
.yb2{bottom:468.066667pt;}
.y7c{bottom:468.386667pt;}
.y21{bottom:472.373333pt;}
.y12{bottom:473.333333pt;}
.ye7{bottom:473.346667pt;}
.y7b{bottom:483.586667pt;}
.yb3{bottom:484.066667pt;}
.y20{bottom:486.293333pt;}
.ye6{bottom:489.346667pt;}
.y11{bottom:494.813333pt;}
.y7a{bottom:498.946667pt;}
.y1f{bottom:500.093333pt;}
.ye5{bottom:505.346667pt;}
.y1e{bottom:513.533333pt;}
.y79{bottom:514.306667pt;}
.y10{bottom:516.253333pt;}
.yb1{bottom:518.466667pt;}
.ye4{bottom:521.346667pt;}
.y78{bottom:529.666667pt;}
.yb0{bottom:533.826667pt;}
.y113{bottom:539.426667pt;}
.ye3{bottom:540.706667pt;}
.y75{bottom:542.306667pt;}
.yaf{bottom:549.506667pt;}
.y112{bottom:554.786667pt;}
.ye2{bottom:556.066667pt;}
.yae{bottom:564.866667pt;}
.y111{bottom:570.146667pt;}
.ye1{bottom:571.266667pt;}
.yad{bottom:580.066667pt;}
.y110{bottom:585.506667pt;}
.ye0{bottom:586.306667pt;}
.y74{bottom:586.626667pt;}
.yac{bottom:595.426667pt;}
.ydf{bottom:599.266667pt;}
.y10f{bottom:600.866667pt;}
.yab{bottom:610.813333pt;}
.yde{bottom:615.293333pt;}
.y10e{bottom:616.093333pt;}
.y73{bottom:616.573333pt;}
.yaa{bottom:626.173333pt;}
.ydd{bottom:631.293333pt;}
.y10d{bottom:631.453333pt;}
.ya9{bottom:641.533333pt;}
.y71{bottom:646.333333pt;}
.y10c{bottom:646.813333pt;}
.ydc{bottom:647.293333pt;}
.ya8{bottom:656.893333pt;}
.y10b{bottom:662.173333pt;}
.ya7{bottom:669.533333pt;}
.y6e{bottom:676.093333pt;}
.y10a{bottom:677.533333pt;}
.ydb{bottom:682.013333pt;}
.y109{bottom:692.893333pt;}
.yda{bottom:697.373333pt;}
.ya6{bottom:700.893333pt;}
.y6c{bottom:705.866667pt;}
.y108{bottom:708.093333pt;}
.yd9{bottom:712.733333pt;}
.y107{bottom:723.453333pt;}
.yd8{bottom:728.093333pt;}
.ya5{bottom:732.093333pt;}
.y66{bottom:735.613333pt;}
.y6a{bottom:735.626667pt;}
.y106{bottom:738.813333pt;}
.yd7{bottom:743.293333pt;}
.y68{bottom:750.973333pt;}
.y105{bottom:754.173333pt;}
.yd6{bottom:758.333333pt;}
.ya4{bottom:763.453333pt;}
.y65{bottom:769.213333pt;}
.y104{bottom:769.533333pt;}
.yd5{bottom:774.013333pt;}
.y64{bottom:784.413333pt;}
.y103{bottom:784.733333pt;}
.yd4{bottom:789.053333pt;}
.ya2{bottom:794.813333pt;}
.y63{bottom:800.093333pt;}
.yd1{bottom:802.026667pt;}
.y62{bottom:815.493333pt;}
.y9c{bottom:826.213333pt;}
.y102{bottom:830.533333pt;}
.y61{bottom:830.853333pt;}
.y9e{bottom:842.213333pt;}
.y60{bottom:846.213333pt;}
.yd0{bottom:846.373333pt;}
.ye{bottom:852.773333pt;}
.yd{bottom:858.853333pt;}
.y5f{bottom:861.573333pt;}
.yc{bottom:874.213333pt;}
.yce{bottom:876.133333pt;}
.y9b{bottom:876.453333pt;}
.y5e{bottom:876.773333pt;}
.yb{bottom:889.093333pt;}
.y9a{bottom:891.813333pt;}
.y5d{bottom:892.133333pt;}
.ycd{bottom:906.053333pt;}
.y99{bottom:907.173333pt;}
.y5c{bottom:907.493333pt;}
.ya{bottom:914.533333pt;}
.y5b{bottom:922.533333pt;}
.y98{bottom:922.853333pt;}
.yca{bottom:935.813333pt;}
.y9{bottom:936.133333pt;}
.y5a{bottom:937.893333pt;}
.y97{bottom:938.213333pt;}
.ycc{bottom:951.013333pt;}
.y96{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.453333pt;}
.y95{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h9{height:7.915625pt;}
.h16{height:14.546667pt;}
.h15{height:14.560000pt;}
.h1f{height:15.346667pt;}
.h29{height:15.360000pt;}
.h2a{height:15.386667pt;}
.h11{height:24.480000pt;}
.h17{height:29.106667pt;}
.h18{height:29.120000pt;}
.h19{height:29.146667pt;}
.h1c{height:29.152000pt;}
.h27{height:29.266667pt;}
.h1b{height:29.746667pt;}
.h13{height:29.920000pt;}
.h1e{height:30.546667pt;}
.h22{height:30.560000pt;}
.h2b{height:30.578667pt;}
.h24{height:30.706667pt;}
.h21{height:30.720000pt;}
.h25{height:30.738667pt;}
.h20{height:30.740000pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h1a{height:43.666667pt;}
.h28{height:43.698667pt;}
.h26{height:44.306667pt;}
.h1d{height:46.546667pt;}
.h23{height:46.706667pt;}
.hd{height:47.085938pt;}
.h10{height:48.375000pt;}
.h14{height:49.621875pt;}
.h8{height:52.134375pt;}
.h7{height:53.535000pt;}
.he{height:54.598989pt;}
.h12{height:56.891250pt;}
.h6{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.hf{height:188.506667pt;}
.ha{height:524.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w49{width:27.872000pt;}
.w3f{width:32.032000pt;}
.w45{width:34.112000pt;}
.w4c{width:37.106667pt;}
.w43{width:42.546667pt;}
.w4b{width:44.818667pt;}
.w4a{width:44.946667pt;}
.w46{width:45.426667pt;}
.w3b{width:50.706667pt;}
.w37{width:50.720000pt;}
.w39{width:50.912000pt;}
.w3a{width:51.026667pt;}
.w38{width:51.040000pt;}
.w3c{width:51.058667pt;}
.w42{width:51.378667pt;}
.w25{width:52.626667pt;}
.w23{width:52.672000pt;}
.w20{width:52.786667pt;}
.w21{width:52.800000pt;}
.w22{width:52.960000pt;}
.w26{width:52.978667pt;}
.w24{width:53.106667pt;}
.w36{width:53.746667pt;}
.w2c{width:54.560000pt;}
.w30{width:54.706667pt;}
.w2e{width:54.752000pt;}
.w2f{width:55.026667pt;}
.w2d{width:55.040000pt;}
.w31{width:55.058667pt;}
.w2b{width:56.466667pt;}
.w17{width:57.760000pt;}
.w19{width:57.792000pt;}
.w1b{width:57.938667pt;}
.w18{width:58.080000pt;}
.w1a{width:58.226667pt;}
.w10{width:62.578667pt;}
.wc{width:62.720000pt;}
.we{width:62.752000pt;}
.wf{width:63.026667pt;}
.wd{width:63.040000pt;}
.w11{width:63.186667pt;}
.w40{width:63.666667pt;}
.w3e{width:63.680000pt;}
.w41{width:63.826667pt;}
.w48{width:63.840000pt;}
.wb{width:65.306667pt;}
.w16{width:70.386667pt;}
.w2{width:92.512000pt;}
.w33{width:102.400000pt;}
.w35{width:102.418667pt;}
.w34{width:102.592000pt;}
.w1f{width:106.258667pt;}
.w1d{width:106.400000pt;}
.w1e{width:106.432000pt;}
.w47{width:107.218667pt;}
.w28{width:110.400000pt;}
.w2a{width:110.418667pt;}
.w29{width:110.432000pt;}
.w1c{width:111.538667pt;}
.w32{width:116.178667pt;}
.w13{width:116.640000pt;}
.w14{width:116.672000pt;}
.w15{width:116.818667pt;}
.w4{width:117.912000pt;}
.w27{width:120.498667pt;}
.w3d{width:122.898667pt;}
.w8{width:126.400000pt;}
.wa{width:126.418667pt;}
.w9{width:126.432000pt;}
.w44{width:131.378667pt;}
.w6{width:144.640000pt;}
.w12{width:160.498667pt;}
.w7{width:178.738667pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.186667pt;}
.x2b{left:8.792000pt;}
.x38{left:10.240000pt;}
.x4{left:11.346667pt;}
.x28{left:12.800000pt;}
.x13{left:13.752000pt;}
.x6{left:15.346667pt;}
.x46{left:16.320000pt;}
.x4d{left:17.280000pt;}
.x16{left:18.392000pt;}
.x3b{left:19.506667pt;}
.x15{left:21.112000pt;}
.x2c{left:22.872000pt;}
.x14{left:24.152000pt;}
.x1d{left:25.912000pt;}
.x2d{left:27.192000pt;}
.x59{left:28.146667pt;}
.x2f{left:29.752000pt;}
.x1a{left:31.186667pt;}
.x4e{left:32.466667pt;}
.x3c{left:33.746667pt;}
.x41{left:35.346667pt;}
.x2e{left:37.112000pt;}
.xe{left:38.872000pt;}
.x1c{left:42.392000pt;}
.x24{left:44.186667pt;}
.xf{left:45.112000pt;}
.x5c{left:47.346667pt;}
.xd{left:48.952000pt;}
.x3d{left:51.346667pt;}
.x32{left:53.106667pt;}
.x19{left:55.226667pt;}
.x1e{left:58.866667pt;}
.x12{left:60.626667pt;}
.x21{left:62.226667pt;}
.x11{left:67.186667pt;}
.x1{left:69.600000pt;}
.x30{left:71.026667pt;}
.x7{left:76.832000pt;}
.x20{left:84.040000pt;}
.x2{left:85.146667pt;}
.x1b{left:91.826667pt;}
.x6a{left:100.832000pt;}
.x31{left:105.160000pt;}
.x10{left:110.706667pt;}
.x5{left:125.626667pt;}
.x47{left:141.640000pt;}
.x3e{left:153.960000pt;}
.x4f{left:157.000000pt;}
.x3{left:162.120000pt;}
.x5d{left:170.760000pt;}
.x54{left:175.080000pt;}
.x17{left:194.760000pt;}
.x64{left:200.360000pt;}
.x22{left:263.426667pt;}
.x33{left:266.306667pt;}
.x50{left:273.826667pt;}
.x55{left:298.626667pt;}
.x5e{left:302.946667pt;}
.x65{left:308.226667pt;}
.x4a{left:318.146667pt;}
.x43{left:319.586667pt;}
.x37{left:324.866667pt;}
.x27{left:326.786667pt;}
.x56{left:362.946667pt;}
.x5f{left:367.266667pt;}
.x3f{left:373.186667pt;}
.x51{left:376.866667pt;}
.x34{left:383.746667pt;}
.x23{left:390.466667pt;}
.x57{left:395.626667pt;}
.x66{left:401.226667pt;}
.x60{left:402.186667pt;}
.x44{left:426.506667pt;}
.x4b{left:429.226667pt;}
.xa{left:434.173333pt;}
.x39{left:442.186667pt;}
.x29{left:453.866667pt;}
.x58{left:459.946667pt;}
.x67{left:465.546667pt;}
.x61{left:466.506667pt;}
.x40{left:480.266667pt;}
.x48{left:484.906667pt;}
.x35{left:501.066667pt;}
.x68{left:511.146667pt;}
.x25{left:517.706667pt;}
.x62{left:522.186667pt;}
.x5a{left:524.426667pt;}
.x53{left:531.466667pt;}
.x45{left:533.546667pt;}
.x4c{left:540.266667pt;}
.x9{left:548.253333pt;}
.x69{left:556.613333pt;}
.x3a{left:559.653333pt;}
.x5b{left:576.453333pt;}
.x63{left:577.893333pt;}
.x2a{left:580.933333pt;}
.x52{left:583.333333pt;}
.x42{left:587.333333pt;}
.x49{left:595.973333pt;}
.xb{left:600.933333pt;}
.x36{left:618.533333pt;}
.x26{left:644.773333pt;}
.x8{left:702.373333pt;}
.xc{left:717.280000pt;}
}




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