
    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_d9c9da5dc093a16d5faebdc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.200684;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_6ad4e15848424e8956b39ad6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.736816;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_c399701237102683558a289d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_ab2791a3627947f6754482ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_82a23180dc4dc55e92323790.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_45d042265f39b617c525b7bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_dd20a5a90af04a22c70f09ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_ff9ec63beb00a21f5c0a42ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891602;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_dc3dd389f2acb995092e3101.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200684;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.320000px;}
.v1{vertical-align:75.480000px;}
.lsc{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.277200px;}
.ls5{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.189600px;}
.ls12{letter-spacing:-0.145200px;}
.lsd{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.026640px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.160800px;}
.lsa{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.280200px;}
.ls19{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.511800px;}
.ls9{letter-spacing:0.684000px;}
.ls17{letter-spacing:22.500000px;}
.ls18{letter-spacing:23.220000px;}
.ls15{letter-spacing:28.260000px;}
.ls13{letter-spacing:32.580000px;}
.ls2{letter-spacing:34.380000px;}
.ls1{letter-spacing:45.180000px;}
.ls3{letter-spacing:61.740000px;}
.ls1a{letter-spacing:67.860000px;}
.lsb{letter-spacing:78.660000px;}
.ls10{letter-spacing:90.180000px;}
.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;}
}
.wsb{word-spacing:-30.420000px;}
.ws13{word-spacing:-30.384000px;}
.wse{word-spacing:-30.340200px;}
.wsf{word-spacing:-30.220800px;}
.ws12{word-spacing:-30.096000px;}
.ws10{word-spacing:-30.060000px;}
.wsd{word-spacing:-30.033360px;}
.wsc{word-spacing:-29.953200px;}
.ws11{word-spacing:-29.700000px;}
.wsa{word-spacing:-29.448000px;}
.ws9{word-spacing:-24.624000px;}
.ws8{word-spacing:-24.451800px;}
.ws7{word-spacing:-24.300000px;}
.ws2{word-spacing:-23.976000px;}
.ws4{word-spacing:-23.940000px;}
.ws6{word-spacing:-23.750400px;}
.ws5{word-spacing:-23.731800px;}
.ws3{word-spacing:-23.698800px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-15.433920px;}
._1c{margin-left:-10.821600px;}
._5{margin-left:-8.424000px;}
._1d{margin-left:-5.724000px;}
._3{margin-left:-2.854800px;}
._2{margin-left:-1.683360px;}
._0{width:1.051200px;}
._1{width:2.399040px;}
._4{width:3.834720px;}
._1e{width:10.980000px;}
._f{width:18.513360px;}
._e{width:19.793280px;}
._21{width:23.606640px;}
._1b{width:27.433680px;}
._1a{width:28.660080px;}
._14{width:32.580000px;}
._8{width:33.780000px;}
._13{width:35.010480px;}
._19{width:39.139104px;}
._18{width:40.584000px;}
._7{width:45.417120px;}
._1f{width:55.584000px;}
._20{width:56.659872px;}
._a{width:62.096640px;}
._9{width:63.130080px;}
._22{width:68.323680px;}
._c{width:77.854080px;}
._12{width:82.260000px;}
._15{width:88.020000px;}
._10{width:90.094080px;}
._17{width:91.156800px;}
._16{width:92.340000px;}
._6{width:160.380000px;}
._d{width:330.015840px;}
._b{width:599.196144px;}
.fc8{color:rgb(0,32,96);}
.fc7{color:transparent;}
.fc6{color:rgb(0,51,153);}
.fc4{color:rgb(35,66,113);}
.fc3{color:rgb(66,86,141);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(87,114,147);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,88,151);}
.fs11{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fsd{font-size:167.760000px;}
.fse{font-size:167.904000px;}
.fs7{font-size:174.240000px;}
.fs6{font-size:174.384000px;}
.fs8{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs10{font-size:216.144000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y9{bottom:9.468000px;}
.y5c{bottom:35.748000px;}
.y8d{bottom:44.280000px;}
.yd3{bottom:52.992000px;}
.ybd{bottom:54.648000px;}
.y18{bottom:55.080000px;}
.y8{bottom:61.848000px;}
.y5b{bottom:71.748000px;}
.ycf{bottom:80.640000px;}
.y36{bottom:86.940000px;}
.ybc{bottom:87.048000px;}
.y99{bottom:95.796000px;}
.y5a{bottom:106.704000px;}
.y7{bottom:110.304000px;}
.ybb{bottom:119.448000px;}
.y35{bottom:120.060000px;}
.y7e{bottom:121.140000px;}
.yce{bottom:122.040000px;}
.y41{bottom:126.972000px;}
.y98{bottom:137.196000px;}
.yba{bottom:151.845000px;}
.y34{bottom:153.180000px;}
.y40{bottom:159.375000px;}
.y7d{bottom:162.540000px;}
.y6{bottom:164.310000px;}
.y44{bottom:172.770000px;}
.y3f{bottom:172.905000px;}
.y4e{bottom:177.225000px;}
.y97{bottom:178.635000px;}
.ya2{bottom:180.180000px;}
.yab{bottom:183.630000px;}
.yb9{bottom:184.290000px;}
.y14{bottom:185.730000px;}
.y33{bottom:186.330000px;}
.yc2{bottom:195.660000px;}
.ycd{bottom:197.430000px;}
.y4c{bottom:197.715000px;}
.y7c{bottom:203.970000px;}
.y24{bottom:204.120000px;}
.y43{bottom:205.170000px;}
.y3e{bottom:205.350000px;}
.y26{bottom:206.850000px;}
.y8b{bottom:208.830000px;}
.y2d{bottom:210.090000px;}
.ya1{bottom:216.210000px;}
.y5{bottom:218.310000px;}
.y32{bottom:219.450000px;}
.yaa{bottom:219.630000px;}
.y96{bottom:220.035000px;}
.y70{bottom:223.380000px;}
.y88{bottom:230.550000px;}
.y65{bottom:232.170000px;}
.yc1{bottom:236.775000px;}
.y42{bottom:237.570000px;}
.y3d{bottom:237.750000px;}
.ycc{bottom:238.830000px;}
.y2c{bottom:239.070000px;}
.y25{bottom:240.015000px;}
.y13{bottom:243.330000px;}
.y50{bottom:245.310000px;}
.y7b{bottom:245.370000px;}
.ya0{bottom:252.210000px;}
.y31{bottom:252.570000px;}
.ya9{bottom:255.630000px;}
.y95{bottom:261.435000px;}
.yb8{bottom:266.400000px;}
.y2b{bottom:268.050000px;}
.yc0{bottom:269.175000px;}
.y3c{bottom:270.150000px;}
.y87{bottom:271.950000px;}
.y49{bottom:278.280000px;}
.ycb{bottom:280.260000px;}
.y4f{bottom:281.310000px;}
.yb3{bottom:281.445000px;}
.y64{bottom:282.570000px;}
.y30{bottom:285.690000px;}
.y7a{bottom:286.770000px;}
.y4d{bottom:296.790000px;}
.y2a{bottom:297.030000px;}
.y4{bottom:298.770000px;}
.yb7{bottom:298.800000px;}
.y6e{bottom:299.850000px;}
.y12{bottom:300.960000px;}
.y94{bottom:302.835000px;}
.y86{bottom:313.380000px;}
.yb2{bottom:313.845000px;}
.y2f{bottom:318.810000px;}
.yca{bottom:321.660000px;}
.y29{bottom:326.010000px;}
.y48{bottom:328.140000px;}
.y79{bottom:328.170000px;}
.yb6{bottom:331.230000px;}
.y63{bottom:333.000000px;}
.yc4{bottom:333.030000px;}
.y73{bottom:333.180000px;}
.y6d{bottom:341.250000px;}
.y54{bottom:341.640000px;}
.y93{bottom:344.235000px;}
.yb1{bottom:346.245000px;}
.y9f{bottom:350.310000px;}
.ya8{bottom:350.670000px;}
.y2e{bottom:351.975000px;}
.y85{bottom:354.780000px;}
.y28{bottom:355.035000px;}
.y11{bottom:358.560000px;}
.y8a{bottom:361.260000px;}
.yc9{bottom:363.060000px;}
.yd2{bottom:363.570000px;}
.yb5{bottom:363.630000px;}
.y78{bottom:369.615000px;}
.y3{bottom:370.770000px;}
.yc3{bottom:374.430000px;}
.y71{bottom:374.610000px;}
.y53{bottom:377.640000px;}
.y47{bottom:378.540000px;}
.yb0{bottom:378.645000px;}
.y6c{bottom:382.650000px;}
.y91{bottom:382.785000px;}
.y62{bottom:383.400000px;}
.y92{bottom:385.665000px;}
.y9e{bottom:386.310000px;}
.ya7{bottom:386.670000px;}
.y51{bottom:393.735000px;}
.yb4{bottom:396.030000px;}
.y84{bottom:396.180000px;}
.y3b{bottom:400.965000px;}
.yc8{bottom:404.460000px;}
.y27{bottom:410.970000px;}
.y77{bottom:411.015000px;}
.y5e{bottom:412.485000px;}
.y10{bottom:416.160000px;}
.yd1{bottom:421.170000px;}
.y9d{bottom:422.355000px;}
.ya6{bottom:422.715000px;}
.y6b{bottom:424.080000px;}
.y8f{bottom:424.185000px;}
.y46{bottom:428.940000px;}
.y3a{bottom:433.410000px;}
.y61{bottom:433.800000px;}
.y56{bottom:436.710000px;}
.y83{bottom:437.580000px;}
.y37{bottom:438.480000px;}
.y1d{bottom:441.795000px;}
.y2{bottom:442.770000px;}
.yc7{bottom:445.860000px;}
.y76{bottom:452.415000px;}
.y6a{bottom:465.480000px;}
.y8e{bottom:465.585000px;}
.y90{bottom:468.465000px;}
.yad{bottom:472.035000px;}
.y55{bottom:472.710000px;}
.yf{bottom:473.790000px;}
.y23{bottom:477.255000px;}
.yd0{bottom:478.770000px;}
.y82{bottom:479.010000px;}
.y45{bottom:479.370000px;}
.y60{bottom:484.200000px;}
.y52{bottom:485.460000px;}
.yc6{bottom:487.290000px;}
.y75{bottom:493.815000px;}
.y1e{bottom:496.875000px;}
.y39{bottom:498.810000px;}
.y69{bottom:506.880000px;}
.y22{bottom:510.375000px;}
.y1{bottom:514.800000px;}
.y81{bottom:520.410000px;}
.ya5{bottom:520.455000px;}
.yac{bottom:521.895000px;}
.y1c{bottom:525.855000px;}
.yc5{bottom:528.690000px;}
.y9c{bottom:530.280000px;}
.y59{bottom:531.105000px;}
.y38{bottom:531.210000px;}
.y5f{bottom:534.630000px;}
.y21{bottom:543.495000px;}
.y68{bottom:548.280000px;}
.y1b{bottom:554.835000px;}
.ya4{bottom:556.455000px;}
.y74{bottom:556.560000px;}
.y19{bottom:557.745000px;}
.y80{bottom:561.810000px;}
.y9b{bottom:566.280000px;}
.y58{bottom:567.105000px;}
.y8c{bottom:570.090000px;}
.y20{bottom:576.615000px;}
.y1a{bottom:583.815000px;}
.y5d{bottom:584.670000px;}
.ye{bottom:586.515000px;}
.y67{bottom:589.680000px;}
.ya3{bottom:592.485000px;}
.y72{bottom:597.990000px;}
.y4b{bottom:600.090000px;}
.y7f{bottom:601.230000px;}
.y9a{bottom:602.310000px;}
.y57{bottom:603.150000px;}
.y4a{bottom:603.180000px;}
.yaf{bottom:603.540000px;}
.y89{bottom:607.350000px;}
.y1f{bottom:609.765000px;}
.ybf{bottom:612.030000px;}
.y66{bottom:629.130000px;}
.yd{bottom:633.495000px;}
.y6f{bottom:635.250000px;}
.yae{bottom:650.520000px;}
.ybe{bottom:659.010000px;}
.yc{bottom:662.295000px;}
.yb{bottom:694.695000px;}
.y17{bottom:723.270000px;}
.ya{bottom:723.675000px;}
.y16{bottom:748.470000px;}
.y15{bottom:773.670000px;}
.h1d{height:51.539062px;}
.hf{height:60.300703px;}
.hd{height:60.917695px;}
.h1c{height:68.546953px;}
.h6{height:77.625000px;}
.h1b{height:78.099609px;}
.hc{height:78.358008px;}
.h10{height:78.491953px;}
.h5{height:89.073633px;}
.h4{height:89.207578px;}
.h13{height:100.458984px;}
.h22{height:100.592930px;}
.h3{height:111.844336px;}
.h19{height:111.978281px;}
.h8{height:127.021641px;}
.h7{height:127.126617px;}
.h17{height:138.172500px;}
.h18{height:138.276000px;}
.h1a{height:146.488219px;}
.h9{height:149.154961px;}
.ha{height:149.266688px;}
.h15{height:156.046289px;}
.h16{height:156.180234px;}
.h14{height:176.072930px;}
.hb{height:178.816992px;}
.h25{height:178.950938px;}
.h1{height:223.018945px;}
.h2{height:223.152891px;}
.h12{height:343.800000px;}
.h24{height:401.760000px;}
.h20{height:448.740000px;}
.h11{height:463.680000px;}
.h1e{height:586.620000px;}
.h23{height:614.340000px;}
.he{height:754.920000px;}
.h21{height:765.720000px;}
.h1f{height:773.460000px;}
.h0{height:810.000000px;}
.w3{width:307.800000px;}
.w1{width:307.980000px;}
.w2{width:636.120000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:3.672000px;}
.x1b{left:9.072000px;}
.x49{left:10.224000px;}
.x22{left:12.570000px;}
.x20{left:14.190000px;}
.x8e{left:16.848000px;}
.x5{left:41.724000px;}
.x3d{left:43.668000px;}
.x17{left:63.720000px;}
.x8c{left:72.180000px;}
.x12{left:79.560000px;}
.x61{left:80.820000px;}
.x3{left:87.156000px;}
.x47{left:93.564000px;}
.x91{left:102.348000px;}
.x78{left:105.624000px;}
.x88{left:108.108000px;}
.x64{left:111.384000px;}
.x1a{left:114.732000px;}
.x90{left:117.108000px;}
.x13{left:120.960000px;}
.x10{left:124.380000px;}
.x53{left:127.512000px;}
.x63{left:131.400000px;}
.x8f{left:133.128000px;}
.x2{left:135.432000px;}
.xf{left:136.440000px;}
.x9d{left:139.860000px;}
.x33{left:141.048000px;}
.x51{left:142.812000px;}
.x1d{left:145.695000px;}
.xe{left:148.140000px;}
.x3f{left:149.436000px;}
.x26{left:151.845000px;}
.x11{left:156.780000px;}
.x27{left:165.345000px;}
.x9c{left:171.030000px;}
.x25{left:181.545000px;}
.x73{left:188.205000px;}
.x52{left:196.095000px;}
.x1{left:202.935000px;}
.x1c{left:204.375000px;}
.x79{left:206.535000px;}
.x39{left:208.290000px;}
.x89{left:211.110000px;}
.x6e{left:212.940000px;}
.x38{left:214.770000px;}
.x48{left:216.150000px;}
.x19{left:217.695000px;}
.x8d{left:226.230000px;}
.x7c{left:233.280000px;}
.x62{left:234.720000px;}
.x40{left:236.955000px;}
.x7b{left:243.900000px;}
.x7a{left:256.245000px;}
.x42{left:260.460000px;}
.x83{left:263.130000px;}
.x4a{left:280.830000px;}
.x82{left:292.830000px;}
.x81{left:303.480000px;}
.x41{left:310.290000px;}
.x4c{left:314.610000px;}
.x80{left:320.760000px;}
.x43{left:329.295000px;}
.x4f{left:342.870000px;}
.xd{left:352.005000px;}
.x44{left:353.415000px;}
.x4b{left:354.570000px;}
.x1f{left:371.700000px;}
.x93{left:380.160000px;}
.xc{left:387.645000px;}
.x2c{left:388.695000px;}
.x3e{left:390.240000px;}
.x1e{left:400.110000px;}
.x21{left:401.190000px;}
.x4d{left:404.640000px;}
.x58{left:408.675000px;}
.x50{left:409.860000px;}
.x45{left:414.360000px;}
.x34{left:420.120000px;}
.x35{left:422.820000px;}
.x68{left:425.880000px;}
.x99{left:429.225000px;}
.x6f{left:431.385000px;}
.x5b{left:439.530000px;}
.x8b{left:444.450000px;}
.x4{left:446.505000px;}
.x2b{left:452.130000px;}
.x24{left:455.475000px;}
.x32{left:458.895000px;}
.x4e{left:460.080000px;}
.x30{left:463.395000px;}
.x70{left:465.405000px;}
.x23{left:467.790000px;}
.x29{left:470.850000px;}
.x6b{left:476.640000px;}
.x74{left:480.495000px;}
.x94{left:482.760000px;}
.x46{left:485.070000px;}
.x97{left:487.590000px;}
.x5f{left:488.775000px;}
.x95{left:492.630000px;}
.x2e{left:493.995000px;}
.x2a{left:508.785000px;}
.x5a{left:510.225000px;}
.x5e{left:512.790000px;}
.x57{left:514.185000px;}
.x98{left:517.860000px;}
.x9a{left:521.070000px;}
.x66{left:524.520000px;}
.x56{left:525.750000px;}
.x6a{left:529.380000px;}
.x8a{left:530.715000px;}
.x6d{left:534.420000px;}
.x67{left:537.840000px;}
.x55{left:543.525000px;}
.x6{left:549.570000px;}
.x28{left:550.905000px;}
.x5d{left:563.145000px;}
.x2f{left:566.430000px;}
.x9b{left:567.870000px;}
.xa{left:575.565000px;}
.x60{left:580.830000px;}
.x6c{left:584.535000px;}
.x5c{left:587.670000px;}
.x31{left:591.090000px;}
.x59{left:592.710000px;}
.xb{left:599.325000px;}
.x96{left:607.530000px;}
.x2d{left:612.180000px;}
.x69{left:617.430000px;}
.x14{left:657.825000px;}
.x87{left:666.285000px;}
.x15{left:678.705000px;}
.x86{left:684.105000px;}
.x54{left:689.685000px;}
.x85{left:694.770000px;}
.x92{left:698.220000px;}
.x37{left:700.050000px;}
.x7f{left:701.310000px;}
.x65{left:706.710000px;}
.x36{left:710.310000px;}
.x84{left:712.050000px;}
.x7{left:720.075000px;}
.x76{left:723.210000px;}
.x71{left:729.150000px;}
.x7e{left:735.150000px;}
.x77{left:740.130000px;}
.x72{left:746.070000px;}
.x75{left:757.770000px;}
.x7d{left:763.050000px;}
.x3b{left:764.070000px;}
.x3c{left:767.130000px;}
.x3a{left:796.830000px;}
.x8{left:863.745000px;}
.x9e{left:932.760000px;}
.x9{left:1048.065000px;}
.x16{left:1070.820000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.840000pt;}
.v1{vertical-align:67.093333pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.246400pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.168533pt;}
.ls12{letter-spacing:-0.129067pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.023680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.142933pt;}
.lsa{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.249067pt;}
.ls19{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.454933pt;}
.ls9{letter-spacing:0.608000pt;}
.ls17{letter-spacing:20.000000pt;}
.ls18{letter-spacing:20.640000pt;}
.ls15{letter-spacing:25.120000pt;}
.ls13{letter-spacing:28.960000pt;}
.ls2{letter-spacing:30.560000pt;}
.ls1{letter-spacing:40.160000pt;}
.ls3{letter-spacing:54.880000pt;}
.ls1a{letter-spacing:60.320000pt;}
.lsb{letter-spacing:69.920000pt;}
.ls10{letter-spacing:80.160000pt;}
.wsb{word-spacing:-27.040000pt;}
.ws13{word-spacing:-27.008000pt;}
.wse{word-spacing:-26.969067pt;}
.wsf{word-spacing:-26.862933pt;}
.ws12{word-spacing:-26.752000pt;}
.ws10{word-spacing:-26.720000pt;}
.wsd{word-spacing:-26.696320pt;}
.wsc{word-spacing:-26.625067pt;}
.ws11{word-spacing:-26.400000pt;}
.wsa{word-spacing:-26.176000pt;}
.ws9{word-spacing:-21.888000pt;}
.ws8{word-spacing:-21.734933pt;}
.ws7{word-spacing:-21.600000pt;}
.ws2{word-spacing:-21.312000pt;}
.ws4{word-spacing:-21.280000pt;}
.ws6{word-spacing:-21.111467pt;}
.ws5{word-spacing:-21.094933pt;}
.ws3{word-spacing:-21.065600pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-13.719040pt;}
._1c{margin-left:-9.619200pt;}
._5{margin-left:-7.488000pt;}
._1d{margin-left:-5.088000pt;}
._3{margin-left:-2.537600pt;}
._2{margin-left:-1.496320pt;}
._0{width:0.934400pt;}
._1{width:2.132480pt;}
._4{width:3.408640pt;}
._1e{width:9.760000pt;}
._f{width:16.456320pt;}
._e{width:17.594027pt;}
._21{width:20.983680pt;}
._1b{width:24.385493pt;}
._1a{width:25.475627pt;}
._14{width:28.960000pt;}
._8{width:30.026667pt;}
._13{width:31.120427pt;}
._19{width:34.790315pt;}
._18{width:36.074667pt;}
._7{width:40.370773pt;}
._1f{width:49.408000pt;}
._20{width:50.364331pt;}
._a{width:55.197013pt;}
._9{width:56.115627pt;}
._22{width:60.732160pt;}
._c{width:69.203627pt;}
._12{width:73.120000pt;}
._15{width:78.240000pt;}
._10{width:80.083627pt;}
._17{width:81.028267pt;}
._16{width:82.080000pt;}
._6{width:142.560000pt;}
._d{width:293.347413pt;}
._b{width:532.618795pt;}
.fs11{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fsd{font-size:149.120000pt;}
.fse{font-size:149.248000pt;}
.fs7{font-size:154.880000pt;}
.fs6{font-size:155.008000pt;}
.fs8{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs10{font-size:192.128000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:8.416000pt;}
.y5c{bottom:31.776000pt;}
.y8d{bottom:39.360000pt;}
.yd3{bottom:47.104000pt;}
.ybd{bottom:48.576000pt;}
.y18{bottom:48.960000pt;}
.y8{bottom:54.976000pt;}
.y5b{bottom:63.776000pt;}
.ycf{bottom:71.680000pt;}
.y36{bottom:77.280000pt;}
.ybc{bottom:77.376000pt;}
.y99{bottom:85.152000pt;}
.y5a{bottom:94.848000pt;}
.y7{bottom:98.048000pt;}
.ybb{bottom:106.176000pt;}
.y35{bottom:106.720000pt;}
.y7e{bottom:107.680000pt;}
.yce{bottom:108.480000pt;}
.y41{bottom:112.864000pt;}
.y98{bottom:121.952000pt;}
.yba{bottom:134.973333pt;}
.y34{bottom:136.160000pt;}
.y40{bottom:141.666667pt;}
.y7d{bottom:144.480000pt;}
.y6{bottom:146.053333pt;}
.y44{bottom:153.573333pt;}
.y3f{bottom:153.693333pt;}
.y4e{bottom:157.533333pt;}
.y97{bottom:158.786667pt;}
.ya2{bottom:160.160000pt;}
.yab{bottom:163.226667pt;}
.yb9{bottom:163.813333pt;}
.y14{bottom:165.093333pt;}
.y33{bottom:165.626667pt;}
.yc2{bottom:173.920000pt;}
.ycd{bottom:175.493333pt;}
.y4c{bottom:175.746667pt;}
.y7c{bottom:181.306667pt;}
.y24{bottom:181.440000pt;}
.y43{bottom:182.373333pt;}
.y3e{bottom:182.533333pt;}
.y26{bottom:183.866667pt;}
.y8b{bottom:185.626667pt;}
.y2d{bottom:186.746667pt;}
.ya1{bottom:192.186667pt;}
.y5{bottom:194.053333pt;}
.y32{bottom:195.066667pt;}
.yaa{bottom:195.226667pt;}
.y96{bottom:195.586667pt;}
.y70{bottom:198.560000pt;}
.y88{bottom:204.933333pt;}
.y65{bottom:206.373333pt;}
.yc1{bottom:210.466667pt;}
.y42{bottom:211.173333pt;}
.y3d{bottom:211.333333pt;}
.ycc{bottom:212.293333pt;}
.y2c{bottom:212.506667pt;}
.y25{bottom:213.346667pt;}
.y13{bottom:216.293333pt;}
.y50{bottom:218.053333pt;}
.y7b{bottom:218.106667pt;}
.ya0{bottom:224.186667pt;}
.y31{bottom:224.506667pt;}
.ya9{bottom:227.226667pt;}
.y95{bottom:232.386667pt;}
.yb8{bottom:236.800000pt;}
.y2b{bottom:238.266667pt;}
.yc0{bottom:239.266667pt;}
.y3c{bottom:240.133333pt;}
.y87{bottom:241.733333pt;}
.y49{bottom:247.360000pt;}
.ycb{bottom:249.120000pt;}
.y4f{bottom:250.053333pt;}
.yb3{bottom:250.173333pt;}
.y64{bottom:251.173333pt;}
.y30{bottom:253.946667pt;}
.y7a{bottom:254.906667pt;}
.y4d{bottom:263.813333pt;}
.y2a{bottom:264.026667pt;}
.y4{bottom:265.573333pt;}
.yb7{bottom:265.600000pt;}
.y6e{bottom:266.533333pt;}
.y12{bottom:267.520000pt;}
.y94{bottom:269.186667pt;}
.y86{bottom:278.560000pt;}
.yb2{bottom:278.973333pt;}
.y2f{bottom:283.386667pt;}
.yca{bottom:285.920000pt;}
.y29{bottom:289.786667pt;}
.y48{bottom:291.680000pt;}
.y79{bottom:291.706667pt;}
.yb6{bottom:294.426667pt;}
.y63{bottom:296.000000pt;}
.yc4{bottom:296.026667pt;}
.y73{bottom:296.160000pt;}
.y6d{bottom:303.333333pt;}
.y54{bottom:303.680000pt;}
.y93{bottom:305.986667pt;}
.yb1{bottom:307.773333pt;}
.y9f{bottom:311.386667pt;}
.ya8{bottom:311.706667pt;}
.y2e{bottom:312.866667pt;}
.y85{bottom:315.360000pt;}
.y28{bottom:315.586667pt;}
.y11{bottom:318.720000pt;}
.y8a{bottom:321.120000pt;}
.yc9{bottom:322.720000pt;}
.yd2{bottom:323.173333pt;}
.yb5{bottom:323.226667pt;}
.y78{bottom:328.546667pt;}
.y3{bottom:329.573333pt;}
.yc3{bottom:332.826667pt;}
.y71{bottom:332.986667pt;}
.y53{bottom:335.680000pt;}
.y47{bottom:336.480000pt;}
.yb0{bottom:336.573333pt;}
.y6c{bottom:340.133333pt;}
.y91{bottom:340.253333pt;}
.y62{bottom:340.800000pt;}
.y92{bottom:342.813333pt;}
.y9e{bottom:343.386667pt;}
.ya7{bottom:343.706667pt;}
.y51{bottom:349.986667pt;}
.yb4{bottom:352.026667pt;}
.y84{bottom:352.160000pt;}
.y3b{bottom:356.413333pt;}
.yc8{bottom:359.520000pt;}
.y27{bottom:365.306667pt;}
.y77{bottom:365.346667pt;}
.y5e{bottom:366.653333pt;}
.y10{bottom:369.920000pt;}
.yd1{bottom:374.373333pt;}
.y9d{bottom:375.426667pt;}
.ya6{bottom:375.746667pt;}
.y6b{bottom:376.960000pt;}
.y8f{bottom:377.053333pt;}
.y46{bottom:381.280000pt;}
.y3a{bottom:385.253333pt;}
.y61{bottom:385.600000pt;}
.y56{bottom:388.186667pt;}
.y83{bottom:388.960000pt;}
.y37{bottom:389.760000pt;}
.y1d{bottom:392.706667pt;}
.y2{bottom:393.573333pt;}
.yc7{bottom:396.320000pt;}
.y76{bottom:402.146667pt;}
.y6a{bottom:413.760000pt;}
.y8e{bottom:413.853333pt;}
.y90{bottom:416.413333pt;}
.yad{bottom:419.586667pt;}
.y55{bottom:420.186667pt;}
.yf{bottom:421.146667pt;}
.y23{bottom:424.226667pt;}
.yd0{bottom:425.573333pt;}
.y82{bottom:425.786667pt;}
.y45{bottom:426.106667pt;}
.y60{bottom:430.400000pt;}
.y52{bottom:431.520000pt;}
.yc6{bottom:433.146667pt;}
.y75{bottom:438.946667pt;}
.y1e{bottom:441.666667pt;}
.y39{bottom:443.386667pt;}
.y69{bottom:450.560000pt;}
.y22{bottom:453.666667pt;}
.y1{bottom:457.600000pt;}
.y81{bottom:462.586667pt;}
.ya5{bottom:462.626667pt;}
.yac{bottom:463.906667pt;}
.y1c{bottom:467.426667pt;}
.yc5{bottom:469.946667pt;}
.y9c{bottom:471.360000pt;}
.y59{bottom:472.093333pt;}
.y38{bottom:472.186667pt;}
.y5f{bottom:475.226667pt;}
.y21{bottom:483.106667pt;}
.y68{bottom:487.360000pt;}
.y1b{bottom:493.186667pt;}
.ya4{bottom:494.626667pt;}
.y74{bottom:494.720000pt;}
.y19{bottom:495.773333pt;}
.y80{bottom:499.386667pt;}
.y9b{bottom:503.360000pt;}
.y58{bottom:504.093333pt;}
.y8c{bottom:506.746667pt;}
.y20{bottom:512.546667pt;}
.y1a{bottom:518.946667pt;}
.y5d{bottom:519.706667pt;}
.ye{bottom:521.346667pt;}
.y67{bottom:524.160000pt;}
.ya3{bottom:526.653333pt;}
.y72{bottom:531.546667pt;}
.y4b{bottom:533.413333pt;}
.y7f{bottom:534.426667pt;}
.y9a{bottom:535.386667pt;}
.y57{bottom:536.133333pt;}
.y4a{bottom:536.160000pt;}
.yaf{bottom:536.480000pt;}
.y89{bottom:539.866667pt;}
.y1f{bottom:542.013333pt;}
.ybf{bottom:544.026667pt;}
.y66{bottom:559.226667pt;}
.yd{bottom:563.106667pt;}
.y6f{bottom:564.666667pt;}
.yae{bottom:578.240000pt;}
.ybe{bottom:585.786667pt;}
.yc{bottom:588.706667pt;}
.yb{bottom:617.506667pt;}
.y17{bottom:642.906667pt;}
.ya{bottom:643.266667pt;}
.y16{bottom:665.306667pt;}
.y15{bottom:687.706667pt;}
.h1d{height:45.812500pt;}
.hf{height:53.600625pt;}
.hd{height:54.149062pt;}
.h1c{height:60.930625pt;}
.h6{height:69.000000pt;}
.h1b{height:69.421875pt;}
.hc{height:69.651562pt;}
.h10{height:69.770625pt;}
.h5{height:79.176563pt;}
.h4{height:79.295625pt;}
.h13{height:89.296875pt;}
.h22{height:89.415937pt;}
.h3{height:99.417187pt;}
.h19{height:99.536250pt;}
.h8{height:112.908125pt;}
.h7{height:113.001438pt;}
.h17{height:122.820000pt;}
.h18{height:122.912000pt;}
.h1a{height:130.211750pt;}
.h9{height:132.582187pt;}
.ha{height:132.681500pt;}
.h15{height:138.707812pt;}
.h16{height:138.826875pt;}
.h14{height:156.509271pt;}
.hb{height:158.948437pt;}
.h25{height:159.067500pt;}
.h1{height:198.239062pt;}
.h2{height:198.358125pt;}
.h12{height:305.600000pt;}
.h24{height:357.120000pt;}
.h20{height:398.880000pt;}
.h11{height:412.160000pt;}
.h1e{height:521.440000pt;}
.h23{height:546.080000pt;}
.he{height:671.040000pt;}
.h21{height:680.640000pt;}
.h1f{height:687.520000pt;}
.h0{height:720.000000pt;}
.w3{width:273.600000pt;}
.w1{width:273.760000pt;}
.w2{width:565.440000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:3.264000pt;}
.x1b{left:8.064000pt;}
.x49{left:9.088000pt;}
.x22{left:11.173333pt;}
.x20{left:12.613333pt;}
.x8e{left:14.976000pt;}
.x5{left:37.088000pt;}
.x3d{left:38.816000pt;}
.x17{left:56.640000pt;}
.x8c{left:64.160000pt;}
.x12{left:70.720000pt;}
.x61{left:71.840000pt;}
.x3{left:77.472000pt;}
.x47{left:83.168000pt;}
.x91{left:90.976000pt;}
.x78{left:93.888000pt;}
.x88{left:96.096000pt;}
.x64{left:99.008000pt;}
.x1a{left:101.984000pt;}
.x90{left:104.096000pt;}
.x13{left:107.520000pt;}
.x10{left:110.560000pt;}
.x53{left:113.344000pt;}
.x63{left:116.800000pt;}
.x8f{left:118.336000pt;}
.x2{left:120.384000pt;}
.xf{left:121.280000pt;}
.x9d{left:124.320000pt;}
.x33{left:125.376000pt;}
.x51{left:126.944000pt;}
.x1d{left:129.506667pt;}
.xe{left:131.680000pt;}
.x3f{left:132.832000pt;}
.x26{left:134.973333pt;}
.x11{left:139.360000pt;}
.x27{left:146.973333pt;}
.x9c{left:152.026667pt;}
.x25{left:161.373333pt;}
.x73{left:167.293333pt;}
.x52{left:174.306667pt;}
.x1{left:180.386667pt;}
.x1c{left:181.666667pt;}
.x79{left:183.586667pt;}
.x39{left:185.146667pt;}
.x89{left:187.653333pt;}
.x6e{left:189.280000pt;}
.x38{left:190.906667pt;}
.x48{left:192.133333pt;}
.x19{left:193.506667pt;}
.x8d{left:201.093333pt;}
.x7c{left:207.360000pt;}
.x62{left:208.640000pt;}
.x40{left:210.626667pt;}
.x7b{left:216.800000pt;}
.x7a{left:227.773333pt;}
.x42{left:231.520000pt;}
.x83{left:233.893333pt;}
.x4a{left:249.626667pt;}
.x82{left:260.293333pt;}
.x81{left:269.760000pt;}
.x41{left:275.813333pt;}
.x4c{left:279.653333pt;}
.x80{left:285.120000pt;}
.x43{left:292.706667pt;}
.x4f{left:304.773333pt;}
.xd{left:312.893333pt;}
.x44{left:314.146667pt;}
.x4b{left:315.173333pt;}
.x1f{left:330.400000pt;}
.x93{left:337.920000pt;}
.xc{left:344.573333pt;}
.x2c{left:345.506667pt;}
.x3e{left:346.880000pt;}
.x1e{left:355.653333pt;}
.x21{left:356.613333pt;}
.x4d{left:359.680000pt;}
.x58{left:363.266667pt;}
.x50{left:364.320000pt;}
.x45{left:368.320000pt;}
.x34{left:373.440000pt;}
.x35{left:375.840000pt;}
.x68{left:378.560000pt;}
.x99{left:381.533333pt;}
.x6f{left:383.453333pt;}
.x5b{left:390.693333pt;}
.x8b{left:395.066667pt;}
.x4{left:396.893333pt;}
.x2b{left:401.893333pt;}
.x24{left:404.866667pt;}
.x32{left:407.906667pt;}
.x4e{left:408.960000pt;}
.x30{left:411.906667pt;}
.x70{left:413.693333pt;}
.x23{left:415.813333pt;}
.x29{left:418.533333pt;}
.x6b{left:423.680000pt;}
.x74{left:427.106667pt;}
.x94{left:429.120000pt;}
.x46{left:431.173333pt;}
.x97{left:433.413333pt;}
.x5f{left:434.466667pt;}
.x95{left:437.893333pt;}
.x2e{left:439.106667pt;}
.x2a{left:452.253333pt;}
.x5a{left:453.533333pt;}
.x5e{left:455.813333pt;}
.x57{left:457.053333pt;}
.x98{left:460.320000pt;}
.x9a{left:463.173333pt;}
.x66{left:466.240000pt;}
.x56{left:467.333333pt;}
.x6a{left:470.560000pt;}
.x8a{left:471.746667pt;}
.x6d{left:475.040000pt;}
.x67{left:478.080000pt;}
.x55{left:483.133333pt;}
.x6{left:488.506667pt;}
.x28{left:489.693333pt;}
.x5d{left:500.573333pt;}
.x2f{left:503.493333pt;}
.x9b{left:504.773333pt;}
.xa{left:511.613333pt;}
.x60{left:516.293333pt;}
.x6c{left:519.586667pt;}
.x5c{left:522.373333pt;}
.x31{left:525.413333pt;}
.x59{left:526.853333pt;}
.xb{left:532.733333pt;}
.x96{left:540.026667pt;}
.x2d{left:544.160000pt;}
.x69{left:548.826667pt;}
.x14{left:584.733333pt;}
.x87{left:592.253333pt;}
.x15{left:603.293333pt;}
.x86{left:608.093333pt;}
.x54{left:613.053333pt;}
.x85{left:617.573333pt;}
.x92{left:620.640000pt;}
.x37{left:622.266667pt;}
.x7f{left:623.386667pt;}
.x65{left:628.186667pt;}
.x36{left:631.386667pt;}
.x84{left:632.933333pt;}
.x7{left:640.066667pt;}
.x76{left:642.853333pt;}
.x71{left:648.133333pt;}
.x7e{left:653.466667pt;}
.x77{left:657.893333pt;}
.x72{left:663.173333pt;}
.x75{left:673.573333pt;}
.x7d{left:678.266667pt;}
.x3b{left:679.173333pt;}
.x3c{left:681.893333pt;}
.x3a{left:708.293333pt;}
.x8{left:767.773333pt;}
.x9e{left:829.120000pt;}
.x9{left:931.613333pt;}
.x16{left:951.840000pt;}
}




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