
    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_a78699501871e4d0c8bd5072.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1a55dca732b70d4745bca9c4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1076414245cd78820d46ca8c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_37e9cbbb488a6b40dc5db4fc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.964844;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_da1dc2a4ef2fcd98682ce618.woff')format("woff");}.ff6{font-family:ff6;line-height:0.880371;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_0085c8f96ca7b7913989c6f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_a1eb97541f0e6fccc99af721.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_d1ee11fe9f00d461d4609a6f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_32e8861dd8c4a5535111ab57.woff')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.745920px;}
.ls8{letter-spacing:33.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.405440px;}
.ws6{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.226440px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-98.856000px;}
._23{margin-left:-7.704000px;}
._1d{margin-left:-6.264000px;}
._1c{margin-left:-4.248000px;}
._b{margin-left:-2.959200px;}
._3{margin-left:-1.432080px;}
._0{width:1.399680px;}
._4{width:3.262560px;}
._d{width:4.418880px;}
._a{width:5.752080px;}
._9{width:6.912000px;}
._c{width:8.640000px;}
._7{width:10.008000px;}
._6{width:11.160000px;}
._8{width:12.280320px;}
._17{width:13.672080px;}
._12{width:15.552000px;}
._13{width:16.704000px;}
._39{width:19.008000px;}
._e{width:20.016000px;}
._11{width:21.096000px;}
._18{width:22.896000px;}
._14{width:24.744000px;}
._15{width:26.136000px;}
._16{width:27.392400px;}
._19{width:28.872000px;}
._25{width:30.128400px;}
._1{width:31.720320px;}
._26{width:32.832000px;}
._f{width:34.848000px;}
._10{width:36.000000px;}
._28{width:40.176000px;}
._1a{width:41.688000px;}
._1b{width:43.128000px;}
._32{width:48.808080px;}
._30{width:50.832000px;}
._31{width:51.912000px;}
._33{width:76.888080px;}
._27{width:81.928080px;}
._2{width:83.380080px;}
._36{width:86.968080px;}
._22{width:92.808000px;}
._2a{width:98.424000px;}
._2b{width:108.720000px;}
._2c{width:109.872000px;}
._37{width:120.096000px;}
._21{width:123.688080px;}
._2e{width:125.848080px;}
._24{width:135.072000px;}
._1f{width:138.096000px;}
._20{width:139.392000px;}
._2d{width:161.496000px;}
._34{width:163.584000px;}
._35{width:164.664000px;}
._38{width:262.872000px;}
._1e{width:265.528080px;}
._29{width:313.048080px;}
._2f{width:390.952080px;}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(237,125,49);}
.fc9{color:rgb(244,244,244);}
.fcb{color:rgb(13,13,13);}
.fc4{color:rgb(205,196,214);}
.fc5{color:rgb(225,216,236);}
.fc6{color:rgb(153,142,164);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(180,172,188);}
.fc7{color:rgb(243,238,248);}
.fc8{color:rgb(0,166,237);}
.fcd{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fca{color:rgb(255,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:77.904000px;}
.fs2{font-size:84.240000px;}
.ya{bottom:-17.100045px;}
.y36{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.960000px;}
.y9{bottom:7.740000px;}
.y35{bottom:7.920000px;}
.yb5{bottom:9.000000px;}
.yd8{bottom:10.080000px;}
.y7{bottom:16.020000px;}
.y123{bottom:16.740000px;}
.ya3{bottom:17.280000px;}
.y11f{bottom:17.820000px;}
.y11d{bottom:17.850000px;}
.ya5{bottom:18.000000px;}
.ya2{bottom:18.180000px;}
.ya0{bottom:18.210000px;}
.y105{bottom:19.080000px;}
.y116{bottom:19.260000px;}
.y101{bottom:19.980000px;}
.yff{bottom:20.160000px;}
.yc2{bottom:20.700000px;}
.ydc{bottom:24.480000px;}
.yb3{bottom:24.660000px;}
.yba{bottom:24.690000px;}
.yeb{bottom:25.380000px;}
.yb1{bottom:30.420000px;}
.y122{bottom:31.320000px;}
.y8{bottom:31.500000px;}
.y34{bottom:31.716000px;}
.y104{bottom:36.000000px;}
.y115{bottom:36.180000px;}
.y33{bottom:40.500000px;}
.ydb{bottom:45.180000px;}
.yb7{bottom:45.360000px;}
.yb9{bottom:45.390000px;}
.yea{bottom:46.080000px;}
.yb0{bottom:51.120000px;}
.y121{bottom:52.020000px;}
.yd6{bottom:52.200000px;}
.y103{bottom:56.700000px;}
.y114{bottom:56.880000px;}
.ybc{bottom:66.060000px;}
.yf1{bottom:66.090000px;}
.yc0{bottom:66.105000px;}
.y6{bottom:78.696000px;}
.y32{bottom:79.236000px;}
.y31{bottom:100.296000px;}
.y30{bottom:123.336000px;}
.y61{bottom:124.956000px;}
.y148{bottom:131.076000px;}
.yc7{bottom:138.636000px;}
.y9e{bottom:139.896000px;}
.ye8{bottom:144.216000px;}
.y76{bottom:144.756000px;}
.y11b{bottom:145.476000px;}
.y2f{bottom:145.656000px;}
.y60{bottom:147.276000px;}
.y147{bottom:153.390000px;}
.yc6{bottom:159.330000px;}
.yfd{bottom:161.310000px;}
.y9d{bottom:162.210000px;}
.ye7{bottom:166.530000px;}
.y11a{bottom:167.790000px;}
.y2e{bottom:167.970000px;}
.y75{bottom:168.510000px;}
.y5f{bottom:169.590000px;}
.y146{bottom:175.710000px;}
.yc5{bottom:180.030000px;}
.yfc{bottom:183.630000px;}
.y9c{bottom:184.710000px;}
.ye6{bottom:188.850000px;}
.y119{bottom:190.110000px;}
.y2d{bottom:190.290000px;}
.y5e{bottom:191.910000px;}
.y74{bottom:192.270000px;}
.y145{bottom:198.030000px;}
.yc4{bottom:200.730000px;}
.yfb{bottom:205.950000px;}
.y9b{bottom:207.030000px;}
.ye5{bottom:211.170000px;}
.y2c{bottom:212.610000px;}
.y5d{bottom:214.230000px;}
.y73{bottom:216.030000px;}
.y144{bottom:220.350000px;}
.yc3{bottom:223.050000px;}
.yfa{bottom:228.270000px;}
.y9a{bottom:229.350000px;}
.ye4{bottom:233.490000px;}
.y2b{bottom:234.930000px;}
.y5c{bottom:236.550000px;}
.y72{bottom:239.970000px;}
.yc1{bottom:240.510000px;}
.y143{bottom:242.670000px;}
.yf9{bottom:250.590000px;}
.y99{bottom:251.670000px;}
.ye3{bottom:255.810000px;}
.y2a{bottom:257.250000px;}
.y5b{bottom:259.050000px;}
.ybf{bottom:261.210000px;}
.y71{bottom:263.730000px;}
.y142{bottom:264.990000px;}
.yf8{bottom:272.910000px;}
.y98{bottom:273.990000px;}
.ye2{bottom:278.130000px;}
.y29{bottom:279.570000px;}
.y5a{bottom:281.370000px;}
.y70{bottom:286.050000px;}
.y141{bottom:287.310000px;}
.yf7{bottom:295.230000px;}
.ye1{bottom:295.770000px;}
.y97{bottom:296.310000px;}
.y28{bottom:301.890000px;}
.y59{bottom:303.690000px;}
.y6f{bottom:308.370000px;}
.y140{bottom:309.855000px;}
.ye0{bottom:316.515000px;}
.yf6{bottom:317.775000px;}
.y96{bottom:318.675000px;}
.y27{bottom:324.255000px;}
.y58{bottom:326.055000px;}
.y6e{bottom:332.175000px;}
.yf5{bottom:340.095000px;}
.y95{bottom:340.995000px;}
.ybe{bottom:344.055000px;}
.y118{bottom:346.575000px;}
.y26{bottom:346.755000px;}
.y57{bottom:348.375000px;}
.y13f{bottom:354.495000px;}
.y6d{bottom:356.115000px;}
.yf4{bottom:362.415000px;}
.y94{bottom:363.315000px;}
.y117{bottom:368.895000px;}
.y25{bottom:369.075000px;}
.y56{bottom:370.695000px;}
.y13e{bottom:376.815000px;}
.y6c{bottom:379.875000px;}
.y93{bottom:385.635000px;}
.y113{bottom:386.355000px;}
.y24{bottom:391.395000px;}
.y55{bottom:393.015000px;}
.y13d{bottom:399.135000px;}
.ydf{bottom:399.315000px;}
.yf3{bottom:400.575000px;}
.y6b{bottom:403.635000px;}
.ybd{bottom:406.155000px;}
.y92{bottom:408.135000px;}
.y23{bottom:413.715000px;}
.y54{bottom:415.335000px;}
.y13c{bottom:421.455000px;}
.y112{bottom:423.075000px;}
.y6a{bottom:427.395000px;}
.y91{bottom:430.455000px;}
.y22{bottom:436.035000px;}
.y53{bottom:437.655000px;}
.y13b{bottom:443.775000px;}
.y69{bottom:451.335000px;}
.y90{bottom:452.775000px;}
.y21{bottom:458.355000px;}
.y52{bottom:459.975000px;}
.y111{bottom:460.695000px;}
.yde{bottom:461.415000px;}
.yf2{bottom:462.675000px;}
.y13a{bottom:466.095000px;}
.ybb{bottom:468.255000px;}
.y68{bottom:473.655000px;}
.y8f{bottom:475.095000px;}
.y20{bottom:480.675000px;}
.y51{bottom:482.475000px;}
.y139{bottom:488.415000px;}
.y67{bottom:495.975000px;}
.y8e{bottom:497.415000px;}
.y1f{bottom:502.995000px;}
.y110{bottom:503.895000px;}
.y50{bottom:504.795000px;}
.y138{bottom:510.735000px;}
.y66{bottom:519.735000px;}
.ydd{bottom:523.515000px;}
.yf0{bottom:524.775000px;}
.y1e{bottom:525.315000px;}
.y10f{bottom:526.215000px;}
.y4f{bottom:527.115000px;}
.y137{bottom:533.235000px;}
.y8d{bottom:542.055000px;}
.y65{bottom:543.495000px;}
.y1d{bottom:547.635000px;}
.y10e{bottom:548.535000px;}
.y4e{bottom:549.435000px;}
.yb8{bottom:551.055000px;}
.y136{bottom:555.555000px;}
.y8c{bottom:564.405000px;}
.y64{bottom:567.285000px;}
.y1c{bottom:569.985000px;}
.y10d{bottom:570.885000px;}
.y4d{bottom:571.785000px;}
.y135{bottom:577.905000px;}
.yda{bottom:585.645000px;}
.y8b{bottom:586.725000px;}
.y63{bottom:591.225000px;}
.y1b{bottom:592.485000px;}
.y10c{bottom:593.205000px;}
.y4c{bottom:594.105000px;}
.y134{bottom:600.225000px;}
.yef{bottom:607.605000px;}
.y8a{bottom:609.045000px;}
.yb6{bottom:613.185000px;}
.y1a{bottom:614.805000px;}
.y62{bottom:614.985000px;}
.y10b{bottom:615.525000px;}
.y4b{bottom:616.425000px;}
.y133{bottom:622.545000px;}
.y89{bottom:631.365000px;}
.y19{bottom:637.125000px;}
.y10a{bottom:637.845000px;}
.y4a{bottom:638.745000px;}
.y132{bottom:644.865000px;}
.yd9{bottom:647.565000px;}
.y88{bottom:653.865000px;}
.y18{bottom:659.445000px;}
.y109{bottom:660.165000px;}
.y49{bottom:661.065000px;}
.y131{bottom:667.185000px;}
.yaf{bottom:676.005000px;}
.y87{bottom:676.185000px;}
.y17{bottom:681.765000px;}
.y108{bottom:682.485000px;}
.y48{bottom:683.385000px;}
.y130{bottom:689.505000px;}
.yee{bottom:690.405000px;}
.y86{bottom:698.505000px;}
.yb2{bottom:702.465000px;}
.y16{bottom:704.085000px;}
.y107{bottom:704.985000px;}
.y47{bottom:705.705000px;}
.yd5{bottom:710.565000px;}
.y12f{bottom:711.825000px;}
.y85{bottom:720.825000px;}
.y15{bottom:726.405000px;}
.y106{bottom:727.305000px;}
.y46{bottom:728.205000px;}
.y12e{bottom:734.145000px;}
.yd7{bottom:738.105000px;}
.y84{bottom:743.145000px;}
.y102{bottom:744.765000px;}
.y14{bottom:748.725000px;}
.yae{bottom:750.165000px;}
.y45{bottom:750.525000px;}
.yed{bottom:752.505000px;}
.y12d{bottom:756.465000px;}
.y83{bottom:765.465000px;}
.y13{bottom:771.045000px;}
.yad{bottom:772.485000px;}
.y44{bottom:772.845000px;}
.y12c{bottom:778.965000px;}
.y100{bottom:781.485000px;}
.yd4{bottom:785.985000px;}
.y82{bottom:787.785000px;}
.y12{bottom:794.265000px;}
.yac{bottom:794.805000px;}
.y43{bottom:795.165000px;}
.y12b{bottom:801.285000px;}
.yd3{bottom:808.305000px;}
.y81{bottom:810.105000px;}
.ye9{bottom:815.370000px;}
.yab{bottom:817.170000px;}
.y42{bottom:817.530000px;}
.yfe{bottom:818.970000px;}
.y11{bottom:819.330000px;}
.y12a{bottom:823.650000px;}
.yd2{bottom:830.670000px;}
.y80{bottom:832.470000px;}
.yec{bottom:836.790000px;}
.yaa{bottom:839.670000px;}
.y41{bottom:839.850000px;}
.y10{bottom:841.650000px;}
.y129{bottom:845.970000px;}
.yd1{bottom:852.990000px;}
.y7f{bottom:854.790000px;}
.ya9{bottom:860.370000px;}
.y40{bottom:862.170000px;}
.yf{bottom:863.970000px;}
.y128{bottom:868.290000px;}
.yd0{bottom:875.310000px;}
.y7e{bottom:877.290000px;}
.ya8{bottom:881.070000px;}
.y3f{bottom:884.490000px;}
.ye{bottom:886.290000px;}
.y127{bottom:890.610000px;}
.ycf{bottom:897.630000px;}
.y7d{bottom:899.610000px;}
.ya7{bottom:901.770000px;}
.y3e{bottom:906.810000px;}
.yd{bottom:908.610000px;}
.y126{bottom:912.930000px;}
.yce{bottom:918.330000px;}
.y7c{bottom:921.930000px;}
.ya6{bottom:922.470000px;}
.y3d{bottom:929.130000px;}
.yc{bottom:930.930000px;}
.y125{bottom:935.250000px;}
.ycd{bottom:939.030000px;}
.ya4{bottom:939.930000px;}
.y7b{bottom:944.250000px;}
.y3c{bottom:951.630000px;}
.yb{bottom:953.430000px;}
.y124{bottom:957.570000px;}
.ycc{bottom:959.730000px;}
.y7a{bottom:968.010000px;}
.y3b{bottom:973.950000px;}
.y5{bottom:974.670000px;}
.y120{bottom:975.210000px;}
.ycb{bottom:980.430000px;}
.y79{bottom:991.770000px;}
.y3a{bottom:996.270000px;}
.yca{bottom:1001.130000px;}
.ya1{bottom:1008.690000px;}
.y11e{bottom:1009.410000px;}
.y4{bottom:1015.170000px;}
.y78{bottom:1015.710000px;}
.y39{bottom:1018.590000px;}
.yc9{bottom:1021.830000px;}
.y77{bottom:1039.470000px;}
.y38{bottom:1040.910000px;}
.yc8{bottom:1042.530000px;}
.y9f{bottom:1044.330000px;}
.y11c{bottom:1044.690000px;}
.y3{bottom:1057.470000px;}
.y37{bottom:1063.260000px;}
.y2{bottom:1081.080000px;}
.y1{bottom:1115.820000px;}
.h19{height:20.700000px;}
.h1d{height:20.736000px;}
.h14{height:25.740000px;}
.h1b{height:26.820000px;}
.h29{height:33.480000px;}
.h10{height:34.020000px;}
.h27{height:34.560000px;}
.h26{height:34.596000px;}
.h11{height:34.740000px;}
.hf{height:34.920000px;}
.he{height:34.956000px;}
.h22{height:35.820000px;}
.h25{height:36.000000px;}
.h23{height:36.720000px;}
.h20{height:36.756000px;}
.h1f{height:36.900000px;}
.h13{height:41.400000px;}
.h6{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.hd{height:52.417969px;}
.hb{height:54.000000px;}
.h8{height:54.316406px;}
.ha{height:54.878906px;}
.h9{height:57.796523px;}
.h7{height:58.320000px;}
.hc{height:58.428000px;}
.h3{height:59.436914px;}
.h1c{height:61.920000px;}
.h15{height:62.100000px;}
.h16{height:62.136000px;}
.h1e{height:62.820000px;}
.h5{height:65.884219px;}
.h12{height:67.860000px;}
.h28{height:68.760000px;}
.h1a{height:68.940000px;}
.h1{height:71.613281px;}
.h21{height:73.476000px;}
.h24{height:73.620000px;}
.h17{height:82.800000px;}
.h18{height:82.836000px;}
.h0{height:1188.000000px;}
.w5{width:44.280000px;}
.w10{width:47.736000px;}
.wc{width:48.636000px;}
.we{width:48.960000px;}
.w1c{width:49.176000px;}
.w15{width:49.356000px;}
.w17{width:49.860000px;}
.w1e{width:50.040000px;}
.w20{width:55.800000px;}
.w28{width:56.160000px;}
.w31{width:56.340000px;}
.wf{width:58.140000px;}
.wb{width:59.400000px;}
.wd{width:59.940000px;}
.w1b{width:60.120000px;}
.w14{width:60.300000px;}
.w1d{width:61.020000px;}
.w22{width:61.380000px;}
.w2a{width:62.100000px;}
.w16{width:63.180000px;}
.w23{width:64.836000px;}
.w2b{width:65.376000px;}
.w32{width:65.556000px;}
.w24{width:71.100000px;}
.w2c{width:71.820000px;}
.w33{width:72.000000px;}
.w21{width:77.796000px;}
.w29{width:78.336000px;}
.w30{width:78.696000px;}
.wa{width:87.300000px;}
.w25{width:92.016000px;}
.w2d{width:92.556000px;}
.w34{width:92.916000px;}
.w1f{width:95.760000px;}
.w27{width:96.480000px;}
.w2f{width:96.840000px;}
.w26{width:104.760000px;}
.w2e{width:105.660000px;}
.w35{width:105.840000px;}
.w9{width:105.876000px;}
.w7{width:108.036000px;}
.w8{width:108.900000px;}
.w19{width:109.296000px;}
.w12{width:109.656000px;}
.w1a{width:111.060000px;}
.w13{width:113.040000px;}
.w2{width:166.680000px;}
.w3{width:219.855000px;}
.w11{width:241.950000px;}
.w18{width:244.290000px;}
.w6{width:247.710000px;}
.w4{width:303.870000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:8.100000px;}
.x33{left:9.180000px;}
.x6{left:10.799986px;}
.x2a{left:12.780000px;}
.x2e{left:13.860000px;}
.x40{left:15.300000px;}
.x3e{left:16.920000px;}
.x3b{left:18.900000px;}
.x49{left:19.980000px;}
.x1d{left:22.140000px;}
.x7{left:23.219986px;}
.x24{left:26.460000px;}
.x25{left:27.900000px;}
.x32{left:29.880000px;}
.x27{left:33.120000px;}
.x22{left:34.560000px;}
.x4d{left:35.820000px;}
.x46{left:40.860000px;}
.x29{left:43.560000px;}
.x44{left:45.900000px;}
.x45{left:52.380000px;}
.x11{left:54.354000px;}
.x19{left:56.874000px;}
.x3a{left:58.500000px;}
.x2d{left:60.120000px;}
.x1b{left:63.534000px;}
.x16{left:64.794000px;}
.x13{left:68.985000px;}
.x15{left:92.340000px;}
.x17{left:96.345000px;}
.x1a{left:100.845000px;}
.x4{left:108.035986px;}
.x9{left:116.135986px;}
.x2f{left:120.960000px;}
.x35{left:122.220000px;}
.x20{left:123.840000px;}
.xf{left:135.035986px;}
.x1c{left:138.420000px;}
.x18{left:142.920000px;}
.x1f{left:152.310000px;}
.x10{left:162.029986px;}
.x1{left:176.249986px;}
.x3c{left:203.790000px;}
.x4f{left:204.870000px;}
.xb{left:258.509986px;}
.x3d{left:259.590000px;}
.x47{left:260.670000px;}
.x12{left:274.710000px;}
.x2{left:282.449986px;}
.xc{left:291.494986px;}
.xa{left:297.074986px;}
.xd{left:338.114986px;}
.x50{left:339.735000px;}
.xe{left:342.974986px;}
.x30{left:394.275000px;}
.x36{left:396.615000px;}
.x3f{left:398.775000px;}
.x21{left:400.035000px;}
.x48{left:401.115000px;}
.x34{left:454.575000px;}
.x38{left:456.735000px;}
.x8{left:459.074986px;}
.x14{left:494.565000px;}
.x31{left:503.925000px;}
.x37{left:505.905000px;}
.x23{left:508.065000px;}
.x41{left:519.405000px;}
.x4a{left:522.645000px;}
.x51{left:523.725000px;}
.x39{left:566.925000px;}
.x2b{left:568.005000px;}
.x42{left:590.505000px;}
.x4b{left:594.465000px;}
.x52{left:595.725000px;}
.x26{left:616.965000px;}
.x2c{left:675.105000px;}
.x43{left:682.530000px;}
.x4c{left:687.030000px;}
.x53{left:688.650000px;}
.x28{left:722.850000px;}
.x4e{left:793.409986px;}
.x5{left:801.869986px;}
.x3{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.663040pt;}
.ls8{letter-spacing:30.186667pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.249280pt;}
.ws6{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-87.872000pt;}
._23{margin-left:-6.848000pt;}
._1d{margin-left:-5.568000pt;}
._1c{margin-left:-3.776000pt;}
._b{margin-left:-2.630400pt;}
._3{margin-left:-1.272960pt;}
._0{width:1.244160pt;}
._4{width:2.900053pt;}
._d{width:3.927893pt;}
._a{width:5.112960pt;}
._9{width:6.144000pt;}
._c{width:7.680000pt;}
._7{width:8.896000pt;}
._6{width:9.920000pt;}
._8{width:10.915840pt;}
._17{width:12.152960pt;}
._12{width:13.824000pt;}
._13{width:14.848000pt;}
._39{width:16.896000pt;}
._e{width:17.792000pt;}
._11{width:18.752000pt;}
._18{width:20.352000pt;}
._14{width:21.994667pt;}
._15{width:23.232000pt;}
._16{width:24.348800pt;}
._19{width:25.664000pt;}
._25{width:26.780800pt;}
._1{width:28.195840pt;}
._26{width:29.184000pt;}
._f{width:30.976000pt;}
._10{width:32.000000pt;}
._28{width:35.712000pt;}
._1a{width:37.056000pt;}
._1b{width:38.336000pt;}
._32{width:43.384960pt;}
._30{width:45.184000pt;}
._31{width:46.144000pt;}
._33{width:68.344960pt;}
._27{width:72.824960pt;}
._2{width:74.115627pt;}
._36{width:77.304960pt;}
._22{width:82.496000pt;}
._2a{width:87.488000pt;}
._2b{width:96.640000pt;}
._2c{width:97.664000pt;}
._37{width:106.752000pt;}
._21{width:109.944960pt;}
._2e{width:111.864960pt;}
._24{width:120.064000pt;}
._1f{width:122.752000pt;}
._20{width:123.904000pt;}
._2d{width:143.552000pt;}
._34{width:145.408000pt;}
._35{width:146.368000pt;}
._38{width:233.664000pt;}
._1e{width:236.024960pt;}
._29{width:278.264960pt;}
._2f{width:347.512960pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:69.248000pt;}
.fs2{font-size:74.880000pt;}
.ya{bottom:-15.200040pt;}
.y36{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.520000pt;}
.y9{bottom:6.880000pt;}
.y35{bottom:7.040000pt;}
.yb5{bottom:8.000000pt;}
.yd8{bottom:8.960000pt;}
.y7{bottom:14.240000pt;}
.y123{bottom:14.880000pt;}
.ya3{bottom:15.360000pt;}
.y11f{bottom:15.840000pt;}
.y11d{bottom:15.866667pt;}
.ya5{bottom:16.000000pt;}
.ya2{bottom:16.160000pt;}
.ya0{bottom:16.186667pt;}
.y105{bottom:16.960000pt;}
.y116{bottom:17.120000pt;}
.y101{bottom:17.760000pt;}
.yff{bottom:17.920000pt;}
.yc2{bottom:18.400000pt;}
.ydc{bottom:21.760000pt;}
.yb3{bottom:21.920000pt;}
.yba{bottom:21.946667pt;}
.yeb{bottom:22.560000pt;}
.yb1{bottom:27.040000pt;}
.y122{bottom:27.840000pt;}
.y8{bottom:28.000000pt;}
.y34{bottom:28.192000pt;}
.y104{bottom:32.000000pt;}
.y115{bottom:32.160000pt;}
.y33{bottom:36.000000pt;}
.ydb{bottom:40.160000pt;}
.yb7{bottom:40.320000pt;}
.yb9{bottom:40.346667pt;}
.yea{bottom:40.960000pt;}
.yb0{bottom:45.440000pt;}
.y121{bottom:46.240000pt;}
.yd6{bottom:46.400000pt;}
.y103{bottom:50.400000pt;}
.y114{bottom:50.560000pt;}
.ybc{bottom:58.720000pt;}
.yf1{bottom:58.746667pt;}
.yc0{bottom:58.760000pt;}
.y6{bottom:69.952000pt;}
.y32{bottom:70.432000pt;}
.y31{bottom:89.152000pt;}
.y30{bottom:109.632000pt;}
.y61{bottom:111.072000pt;}
.y148{bottom:116.512000pt;}
.yc7{bottom:123.232000pt;}
.y9e{bottom:124.352000pt;}
.ye8{bottom:128.192000pt;}
.y76{bottom:128.672000pt;}
.y11b{bottom:129.312000pt;}
.y2f{bottom:129.472000pt;}
.y60{bottom:130.912000pt;}
.y147{bottom:136.346667pt;}
.yc6{bottom:141.626667pt;}
.yfd{bottom:143.386667pt;}
.y9d{bottom:144.186667pt;}
.ye7{bottom:148.026667pt;}
.y11a{bottom:149.146667pt;}
.y2e{bottom:149.306667pt;}
.y75{bottom:149.786667pt;}
.y5f{bottom:150.746667pt;}
.y146{bottom:156.186667pt;}
.yc5{bottom:160.026667pt;}
.yfc{bottom:163.226667pt;}
.y9c{bottom:164.186667pt;}
.ye6{bottom:167.866667pt;}
.y119{bottom:168.986667pt;}
.y2d{bottom:169.146667pt;}
.y5e{bottom:170.586667pt;}
.y74{bottom:170.906667pt;}
.y145{bottom:176.026667pt;}
.yc4{bottom:178.426667pt;}
.yfb{bottom:183.066667pt;}
.y9b{bottom:184.026667pt;}
.ye5{bottom:187.706667pt;}
.y2c{bottom:188.986667pt;}
.y5d{bottom:190.426667pt;}
.y73{bottom:192.026667pt;}
.y144{bottom:195.866667pt;}
.yc3{bottom:198.266667pt;}
.yfa{bottom:202.906667pt;}
.y9a{bottom:203.866667pt;}
.ye4{bottom:207.546667pt;}
.y2b{bottom:208.826667pt;}
.y5c{bottom:210.266667pt;}
.y72{bottom:213.306667pt;}
.yc1{bottom:213.786667pt;}
.y143{bottom:215.706667pt;}
.yf9{bottom:222.746667pt;}
.y99{bottom:223.706667pt;}
.ye3{bottom:227.386667pt;}
.y2a{bottom:228.666667pt;}
.y5b{bottom:230.266667pt;}
.ybf{bottom:232.186667pt;}
.y71{bottom:234.426667pt;}
.y142{bottom:235.546667pt;}
.yf8{bottom:242.586667pt;}
.y98{bottom:243.546667pt;}
.ye2{bottom:247.226667pt;}
.y29{bottom:248.506667pt;}
.y5a{bottom:250.106667pt;}
.y70{bottom:254.266667pt;}
.y141{bottom:255.386667pt;}
.yf7{bottom:262.426667pt;}
.ye1{bottom:262.906667pt;}
.y97{bottom:263.386667pt;}
.y28{bottom:268.346667pt;}
.y59{bottom:269.946667pt;}
.y6f{bottom:274.106667pt;}
.y140{bottom:275.426667pt;}
.ye0{bottom:281.346667pt;}
.yf6{bottom:282.466667pt;}
.y96{bottom:283.266667pt;}
.y27{bottom:288.226667pt;}
.y58{bottom:289.826667pt;}
.y6e{bottom:295.266667pt;}
.yf5{bottom:302.306667pt;}
.y95{bottom:303.106667pt;}
.ybe{bottom:305.826667pt;}
.y118{bottom:308.066667pt;}
.y26{bottom:308.226667pt;}
.y57{bottom:309.666667pt;}
.y13f{bottom:315.106667pt;}
.y6d{bottom:316.546667pt;}
.yf4{bottom:322.146667pt;}
.y94{bottom:322.946667pt;}
.y117{bottom:327.906667pt;}
.y25{bottom:328.066667pt;}
.y56{bottom:329.506667pt;}
.y13e{bottom:334.946667pt;}
.y6c{bottom:337.666667pt;}
.y93{bottom:342.786667pt;}
.y113{bottom:343.426667pt;}
.y24{bottom:347.906667pt;}
.y55{bottom:349.346667pt;}
.y13d{bottom:354.786667pt;}
.ydf{bottom:354.946667pt;}
.yf3{bottom:356.066667pt;}
.y6b{bottom:358.786667pt;}
.ybd{bottom:361.026667pt;}
.y92{bottom:362.786667pt;}
.y23{bottom:367.746667pt;}
.y54{bottom:369.186667pt;}
.y13c{bottom:374.626667pt;}
.y112{bottom:376.066667pt;}
.y6a{bottom:379.906667pt;}
.y91{bottom:382.626667pt;}
.y22{bottom:387.586667pt;}
.y53{bottom:389.026667pt;}
.y13b{bottom:394.466667pt;}
.y69{bottom:401.186667pt;}
.y90{bottom:402.466667pt;}
.y21{bottom:407.426667pt;}
.y52{bottom:408.866667pt;}
.y111{bottom:409.506667pt;}
.yde{bottom:410.146667pt;}
.yf2{bottom:411.266667pt;}
.y13a{bottom:414.306667pt;}
.ybb{bottom:416.226667pt;}
.y68{bottom:421.026667pt;}
.y8f{bottom:422.306667pt;}
.y20{bottom:427.266667pt;}
.y51{bottom:428.866667pt;}
.y139{bottom:434.146667pt;}
.y67{bottom:440.866667pt;}
.y8e{bottom:442.146667pt;}
.y1f{bottom:447.106667pt;}
.y110{bottom:447.906667pt;}
.y50{bottom:448.706667pt;}
.y138{bottom:453.986667pt;}
.y66{bottom:461.986667pt;}
.ydd{bottom:465.346667pt;}
.yf0{bottom:466.466667pt;}
.y1e{bottom:466.946667pt;}
.y10f{bottom:467.746667pt;}
.y4f{bottom:468.546667pt;}
.y137{bottom:473.986667pt;}
.y8d{bottom:481.826667pt;}
.y65{bottom:483.106667pt;}
.y1d{bottom:486.786667pt;}
.y10e{bottom:487.586667pt;}
.y4e{bottom:488.386667pt;}
.yb8{bottom:489.826667pt;}
.y136{bottom:493.826667pt;}
.y8c{bottom:501.693333pt;}
.y64{bottom:504.253333pt;}
.y1c{bottom:506.653333pt;}
.y10d{bottom:507.453333pt;}
.y4d{bottom:508.253333pt;}
.y135{bottom:513.693333pt;}
.yda{bottom:520.573333pt;}
.y8b{bottom:521.533333pt;}
.y63{bottom:525.533333pt;}
.y1b{bottom:526.653333pt;}
.y10c{bottom:527.293333pt;}
.y4c{bottom:528.093333pt;}
.y134{bottom:533.533333pt;}
.yef{bottom:540.093333pt;}
.y8a{bottom:541.373333pt;}
.yb6{bottom:545.053333pt;}
.y1a{bottom:546.493333pt;}
.y62{bottom:546.653333pt;}
.y10b{bottom:547.133333pt;}
.y4b{bottom:547.933333pt;}
.y133{bottom:553.373333pt;}
.y89{bottom:561.213333pt;}
.y19{bottom:566.333333pt;}
.y10a{bottom:566.973333pt;}
.y4a{bottom:567.773333pt;}
.y132{bottom:573.213333pt;}
.yd9{bottom:575.613333pt;}
.y88{bottom:581.213333pt;}
.y18{bottom:586.173333pt;}
.y109{bottom:586.813333pt;}
.y49{bottom:587.613333pt;}
.y131{bottom:593.053333pt;}
.yaf{bottom:600.893333pt;}
.y87{bottom:601.053333pt;}
.y17{bottom:606.013333pt;}
.y108{bottom:606.653333pt;}
.y48{bottom:607.453333pt;}
.y130{bottom:612.893333pt;}
.yee{bottom:613.693333pt;}
.y86{bottom:620.893333pt;}
.yb2{bottom:624.413333pt;}
.y16{bottom:625.853333pt;}
.y107{bottom:626.653333pt;}
.y47{bottom:627.293333pt;}
.yd5{bottom:631.613333pt;}
.y12f{bottom:632.733333pt;}
.y85{bottom:640.733333pt;}
.y15{bottom:645.693333pt;}
.y106{bottom:646.493333pt;}
.y46{bottom:647.293333pt;}
.y12e{bottom:652.573333pt;}
.yd7{bottom:656.093333pt;}
.y84{bottom:660.573333pt;}
.y102{bottom:662.013333pt;}
.y14{bottom:665.533333pt;}
.yae{bottom:666.813333pt;}
.y45{bottom:667.133333pt;}
.yed{bottom:668.893333pt;}
.y12d{bottom:672.413333pt;}
.y83{bottom:680.413333pt;}
.y13{bottom:685.373333pt;}
.yad{bottom:686.653333pt;}
.y44{bottom:686.973333pt;}
.y12c{bottom:692.413333pt;}
.y100{bottom:694.653333pt;}
.yd4{bottom:698.653333pt;}
.y82{bottom:700.253333pt;}
.y12{bottom:706.013333pt;}
.yac{bottom:706.493333pt;}
.y43{bottom:706.813333pt;}
.y12b{bottom:712.253333pt;}
.yd3{bottom:718.493333pt;}
.y81{bottom:720.093333pt;}
.ye9{bottom:724.773333pt;}
.yab{bottom:726.373333pt;}
.y42{bottom:726.693333pt;}
.yfe{bottom:727.973333pt;}
.y11{bottom:728.293333pt;}
.y12a{bottom:732.133333pt;}
.yd2{bottom:738.373333pt;}
.y80{bottom:739.973333pt;}
.yec{bottom:743.813333pt;}
.yaa{bottom:746.373333pt;}
.y41{bottom:746.533333pt;}
.y10{bottom:748.133333pt;}
.y129{bottom:751.973333pt;}
.yd1{bottom:758.213333pt;}
.y7f{bottom:759.813333pt;}
.ya9{bottom:764.773333pt;}
.y40{bottom:766.373333pt;}
.yf{bottom:767.973333pt;}
.y128{bottom:771.813333pt;}
.yd0{bottom:778.053333pt;}
.y7e{bottom:779.813333pt;}
.ya8{bottom:783.173333pt;}
.y3f{bottom:786.213333pt;}
.ye{bottom:787.813333pt;}
.y127{bottom:791.653333pt;}
.ycf{bottom:797.893333pt;}
.y7d{bottom:799.653333pt;}
.ya7{bottom:801.573333pt;}
.y3e{bottom:806.053333pt;}
.yd{bottom:807.653333pt;}
.y126{bottom:811.493333pt;}
.yce{bottom:816.293333pt;}
.y7c{bottom:819.493333pt;}
.ya6{bottom:819.973333pt;}
.y3d{bottom:825.893333pt;}
.yc{bottom:827.493333pt;}
.y125{bottom:831.333333pt;}
.ycd{bottom:834.693333pt;}
.ya4{bottom:835.493333pt;}
.y7b{bottom:839.333333pt;}
.y3c{bottom:845.893333pt;}
.yb{bottom:847.493333pt;}
.y124{bottom:851.173333pt;}
.ycc{bottom:853.093333pt;}
.y7a{bottom:860.453333pt;}
.y3b{bottom:865.733333pt;}
.y5{bottom:866.373333pt;}
.y120{bottom:866.853333pt;}
.ycb{bottom:871.493333pt;}
.y79{bottom:881.573333pt;}
.y3a{bottom:885.573333pt;}
.yca{bottom:889.893333pt;}
.ya1{bottom:896.613333pt;}
.y11e{bottom:897.253333pt;}
.y4{bottom:902.373333pt;}
.y78{bottom:902.853333pt;}
.y39{bottom:905.413333pt;}
.yc9{bottom:908.293333pt;}
.y77{bottom:923.973333pt;}
.y38{bottom:925.253333pt;}
.yc8{bottom:926.693333pt;}
.y9f{bottom:928.293333pt;}
.y11c{bottom:928.613333pt;}
.y3{bottom:939.973333pt;}
.y37{bottom:945.120000pt;}
.y2{bottom:960.960000pt;}
.y1{bottom:991.840000pt;}
.h19{height:18.400000pt;}
.h1d{height:18.432000pt;}
.h14{height:22.880000pt;}
.h1b{height:23.840000pt;}
.h29{height:29.760000pt;}
.h10{height:30.240000pt;}
.h27{height:30.720000pt;}
.h26{height:30.752000pt;}
.h11{height:30.880000pt;}
.hf{height:31.040000pt;}
.he{height:31.072000pt;}
.h22{height:31.840000pt;}
.h25{height:32.000000pt;}
.h23{height:32.640000pt;}
.h20{height:32.672000pt;}
.h1f{height:32.800000pt;}
.h13{height:36.800000pt;}
.h6{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.hd{height:46.593750pt;}
.hb{height:48.000000pt;}
.h8{height:48.281250pt;}
.ha{height:48.781250pt;}
.h9{height:51.374688pt;}
.h7{height:51.840000pt;}
.hc{height:51.936000pt;}
.h3{height:52.832812pt;}
.h1c{height:55.040000pt;}
.h15{height:55.200000pt;}
.h16{height:55.232000pt;}
.h1e{height:55.840000pt;}
.h5{height:58.563750pt;}
.h12{height:60.320000pt;}
.h28{height:61.120000pt;}
.h1a{height:61.280000pt;}
.h1{height:63.656250pt;}
.h21{height:65.312000pt;}
.h24{height:65.440000pt;}
.h17{height:73.600000pt;}
.h18{height:73.632000pt;}
.h0{height:1056.000000pt;}
.w5{width:39.360000pt;}
.w10{width:42.432000pt;}
.wc{width:43.232000pt;}
.we{width:43.520000pt;}
.w1c{width:43.712000pt;}
.w15{width:43.872000pt;}
.w17{width:44.320000pt;}
.w1e{width:44.480000pt;}
.w20{width:49.600000pt;}
.w28{width:49.920000pt;}
.w31{width:50.080000pt;}
.wf{width:51.680000pt;}
.wb{width:52.800000pt;}
.wd{width:53.280000pt;}
.w1b{width:53.440000pt;}
.w14{width:53.600000pt;}
.w1d{width:54.240000pt;}
.w22{width:54.560000pt;}
.w2a{width:55.200000pt;}
.w16{width:56.160000pt;}
.w23{width:57.632000pt;}
.w2b{width:58.112000pt;}
.w32{width:58.272000pt;}
.w24{width:63.200000pt;}
.w2c{width:63.840000pt;}
.w33{width:64.000000pt;}
.w21{width:69.152000pt;}
.w29{width:69.632000pt;}
.w30{width:69.952000pt;}
.wa{width:77.600000pt;}
.w25{width:81.792000pt;}
.w2d{width:82.272000pt;}
.w34{width:82.592000pt;}
.w1f{width:85.120000pt;}
.w27{width:85.760000pt;}
.w2f{width:86.080000pt;}
.w26{width:93.120000pt;}
.w2e{width:93.920000pt;}
.w35{width:94.080000pt;}
.w9{width:94.112000pt;}
.w7{width:96.032000pt;}
.w8{width:96.800000pt;}
.w19{width:97.152000pt;}
.w12{width:97.472000pt;}
.w1a{width:98.720000pt;}
.w13{width:100.480000pt;}
.w2{width:148.160000pt;}
.w3{width:195.426667pt;}
.w11{width:215.066667pt;}
.w18{width:217.146667pt;}
.w6{width:220.186667pt;}
.w4{width:270.106667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200000pt;}
.x33{left:8.160000pt;}
.x6{left:9.599988pt;}
.x2a{left:11.360000pt;}
.x2e{left:12.320000pt;}
.x40{left:13.600000pt;}
.x3e{left:15.040000pt;}
.x3b{left:16.800000pt;}
.x49{left:17.760000pt;}
.x1d{left:19.680000pt;}
.x7{left:20.639988pt;}
.x24{left:23.520000pt;}
.x25{left:24.800000pt;}
.x32{left:26.560000pt;}
.x27{left:29.440000pt;}
.x22{left:30.720000pt;}
.x4d{left:31.840000pt;}
.x46{left:36.320000pt;}
.x29{left:38.720000pt;}
.x44{left:40.800000pt;}
.x45{left:46.560000pt;}
.x11{left:48.314667pt;}
.x19{left:50.554667pt;}
.x3a{left:52.000000pt;}
.x2d{left:53.440000pt;}
.x1b{left:56.474667pt;}
.x16{left:57.594667pt;}
.x13{left:61.320000pt;}
.x15{left:82.080000pt;}
.x17{left:85.640000pt;}
.x1a{left:89.640000pt;}
.x4{left:96.031988pt;}
.x9{left:103.231988pt;}
.x2f{left:107.520000pt;}
.x35{left:108.640000pt;}
.x20{left:110.080000pt;}
.xf{left:120.031988pt;}
.x1c{left:123.040000pt;}
.x18{left:127.040000pt;}
.x1f{left:135.386667pt;}
.x10{left:144.026655pt;}
.x1{left:156.666655pt;}
.x3c{left:181.146667pt;}
.x4f{left:182.106667pt;}
.xb{left:229.786655pt;}
.x3d{left:230.746667pt;}
.x47{left:231.706667pt;}
.x12{left:244.186667pt;}
.x2{left:251.066655pt;}
.xc{left:259.106655pt;}
.xa{left:264.066655pt;}
.xd{left:300.546655pt;}
.x50{left:301.986667pt;}
.xe{left:304.866655pt;}
.x30{left:350.466667pt;}
.x36{left:352.546667pt;}
.x3f{left:354.466667pt;}
.x21{left:355.586667pt;}
.x48{left:356.546667pt;}
.x34{left:404.066667pt;}
.x38{left:405.986667pt;}
.x8{left:408.066655pt;}
.x14{left:439.613333pt;}
.x31{left:447.933333pt;}
.x37{left:449.693333pt;}
.x23{left:451.613333pt;}
.x41{left:461.693333pt;}
.x4a{left:464.573333pt;}
.x51{left:465.533333pt;}
.x39{left:503.933333pt;}
.x2b{left:504.893333pt;}
.x42{left:524.893333pt;}
.x4b{left:528.413333pt;}
.x52{left:529.533333pt;}
.x26{left:548.413333pt;}
.x2c{left:600.093333pt;}
.x43{left:606.693333pt;}
.x4c{left:610.693333pt;}
.x53{left:612.133333pt;}
.x28{left:642.533333pt;}
.x4e{left:705.253321pt;}
.x5{left:712.773321pt;}
.x3{left:720.133321pt;}
}




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