
    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_5771bb28a6c6b1dea8cf275c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d98db455acfbd24c34f3a66a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_a456f2eaa369bc343a25acdf.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_999e54a9aed1bf09017ce26e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27162358bead4aae0e9620fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb7b914632677b4dc1487593.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_87d6d712f6de1c16e6b3a678.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.m2{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.520558px;}
.ls8{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.567600px;}
.ls6{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.262200px;}
.ls1{letter-spacing:-0.229800px;}
.ls16{letter-spacing:-0.152400px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.089280px;}
.ls10{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.152400px;}
.ls12{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.305400px;}
.ls3{letter-spacing:11.825280px;}
.ls2{letter-spacing:39.905280px;}
.lsf{letter-spacing:43.505280px;}
.ls4{letter-spacing:59.345280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.808440px;}
.ws7{word-spacing:-16.865400px;}
.ws3{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.297800px;}
.ws9{word-spacing:-16.254600px;}
.ws5{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.992400px;}
.ws6{word-spacing:-15.948000px;}
.ws15{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:89.007284px;}
.ws14{word-spacing:229.492368px;}
.ws13{word-spacing:241.199547px;}
.ws10{word-spacing:247.026825px;}
.ws11{word-spacing:252.572053px;}
.wse{word-spacing:264.457618px;}
.ws12{word-spacing:289.574798px;}
.wsf{word-spacing:348.878959px;}
._11{margin-left:-4.901760px;}
._4{margin-left:-3.841920px;}
._5{margin-left:-2.782080px;}
._0{margin-left:-1.324800px;}
._1{width:1.340640px;}
._b{width:2.352960px;}
._c{width:3.706560px;}
._10{width:5.166720px;}
._e{width:6.226560px;}
._7{width:7.485120px;}
._6{width:8.677440px;}
._8{width:9.890880px;}
._a{width:11.128320px;}
._12{width:13.049280px;}
._f{width:14.806080px;}
._3{width:18.149760px;}
._2{width:19.474560px;}
._16{width:20.534400px;}
._9{width:21.631200px;}
._d{width:23.213280px;}
._15{width:24.931200px;}
._13{width:26.893440px;}
._14{width:28.756320px;}
._2a{width:30.066240px;}
._34{width:31.225920px;}
._33{width:37.756800px;}
._38{width:48.421440px;}
._30{width:50.077440px;}
._2f{width:51.269760px;}
._31{width:52.513440px;}
._32{width:55.732800px;}
._2d{width:58.423680px;}
._2e{width:59.453760px;}
._39{width:61.169280px;}
._35{width:63.396480px;}
._36{width:64.797600px;}
._28{width:103.334400px;}
._29{width:105.246240px;}
._25{width:116.061859px;}
._37{width:119.099520px;}
._17{width:146.880619px;}
._1e{width:168.086299px;}
._24{width:175.473362px;}
._27{width:187.207299px;}
._1b{width:192.160203px;}
._2b{width:218.393280px;}
._2c{width:220.049280px;}
._19{width:243.601635px;}
._21{width:270.480593px;}
._1c{width:274.761859px;}
._22{width:278.982288px;}
._20{width:285.669044px;}
._1f{width:301.033597px;}
._23{width:310.904622px;}
._1d{width:361.091827px;}
._1a{width:380.824800px;}
._26{width:383.709066px;}
._18{width:726.957281px;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(61,61,61);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:59.462025px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:5.919955px;}
.ye1{bottom:25.718704px;}
.ye0{bottom:45.517454px;}
.y2{bottom:57.600000px;}
.ydf{bottom:65.349091px;}
.y1{bottom:77.616000px;}
.yde{bottom:85.147841px;}
.ydd{bottom:104.946590px;}
.yf6{bottom:109.836000px;}
.y83{bottom:111.276000px;}
.y20{bottom:116.856000px;}
.y159{bottom:118.656000px;}
.y3e{bottom:120.456000px;}
.y4f{bottom:120.816000px;}
.ydc{bottom:124.745339px;}
.y136{bottom:130.356000px;}
.y6f{bottom:132.156000px;}
.y12b{bottom:138.276000px;}
.yd3{bottom:141.516000px;}
.ydb{bottom:144.544089px;}
.y118{bottom:146.196000px;}
.yc7{bottom:146.556000px;}
.yf5{bottom:147.996000px;}
.y82{bottom:149.256000px;}
.y1f{bottom:150.690000px;}
.y3d{bottom:152.850000px;}
.y158{bottom:156.630000px;}
.y4e{bottom:158.790000px;}
.y168{bottom:158.970000px;}
.ya1{bottom:159.150000px;}
.yda{bottom:164.342838px;}
.y135{bottom:168.150000px;}
.y8a{bottom:170.130000px;}
.yb6{bottom:171.030000px;}
.y12a{bottom:176.250000px;}
.y143{bottom:177.150000px;}
.yd2{bottom:179.490000px;}
.y170{bottom:180.030000px;}
.y62{bottom:182.190000px;}
.yd9{bottom:184.141587px;}
.y117{bottom:184.170000px;}
.y1e{bottom:184.350000px;}
.yc6{bottom:184.530000px;}
.y3c{bottom:185.430000px;}
.yf4{bottom:186.870000px;}
.y157{bottom:194.430000px;}
.y81{bottom:199.110000px;}
.yd8{bottom:203.940337px;}
.y134{bottom:206.130000px;}
.yff{bottom:207.930000px;}
.y89{bottom:208.110000px;}
.y4d{bottom:208.830000px;}
.yb5{bottom:209.010000px;}
.ya0{bottom:209.190000px;}
.y129{bottom:214.050000px;}
.y142{bottom:214.950000px;}
.yd1{bottom:217.470000px;}
.y3b{bottom:217.830000px;}
.y167{bottom:218.010000px;}
.y1d{bottom:218.190000px;}
.y61{bottom:220.170000px;}
.y116{bottom:222.150000px;}
.yd7{bottom:223.739086px;}
.y6e{bottom:232.050000px;}
.yc5{bottom:234.570000px;}
.y80{bottom:237.090000px;}
.yd6{bottom:245.511133px;}
.yf3{bottom:245.910000px;}
.y88{bottom:246.090000px;}
.y4c{bottom:246.630000px;}
.yb4{bottom:246.990000px;}
.y9f{bottom:247.170000px;}
.y3a{bottom:250.230000px;}
.y1c{bottom:251.850000px;}
.y128{bottom:252.030000px;}
.y141{bottom:252.930000px;}
.y156{bottom:253.470000px;}
.yd0{bottom:255.450000px;}
.y166{bottom:255.990000px;}
.y133{bottom:256.170000px;}
.y60{bottom:258.150000px;}
.y115{bottom:260.130000px;}
.yd5{bottom:267.283179px;}
.y6d{bottom:270.030000px;}
.yc4{bottom:272.370000px;}
.y7f{bottom:275.070000px;}
.y16f{bottom:277.050000px;}
.y39{bottom:282.810000px;}
.yf2{bottom:283.890000px;}
.y87{bottom:284.070000px;}
.y4b{bottom:284.790000px;}
.yb3{bottom:284.970000px;}
.y9e{bottom:285.150000px;}
.y1b{bottom:285.690000px;}
.y127{bottom:290.010000px;}
.y140{bottom:290.910000px;}
.y155{bottom:291.450000px;}
.ycf{bottom:293.430000px;}
.y165{bottom:293.970000px;}
.y132{bottom:294.150000px;}
.y5f{bottom:295.950000px;}
.y6c{bottom:308.010000px;}
.yc3{bottom:310.350000px;}
.y7e{bottom:313.050000px;}
.y16e{bottom:314.850000px;}
.y38{bottom:315.210000px;}
.y1a{bottom:319.350000px;}
.yf1{bottom:321.870000px;}
.y86{bottom:322.050000px;}
.y9d{bottom:322.950000px;}
.y4a{bottom:323.850000px;}
.y126{bottom:328.035000px;}
.y154{bottom:329.295000px;}
.yce{bottom:331.455000px;}
.y164{bottom:331.815000px;}
.y131{bottom:331.995000px;}
.y5e{bottom:333.975000px;}
.yb2{bottom:334.875000px;}
.yfe{bottom:342.795000px;}
.y6b{bottom:346.035000px;}
.y37{bottom:347.835000px;}
.yc2{bottom:348.375000px;}
.y13f{bottom:349.815000px;}
.y7d{bottom:350.895000px;}
.y16d{bottom:352.875000px;}
.y19{bottom:353.055000px;}
.y114{bottom:358.635000px;}
.yf0{bottom:359.895000px;}
.y9c{bottom:360.975000px;}
.y49{bottom:361.695000px;}
.y125{bottom:366.015000px;}
.y130{bottom:369.975000px;}
.y5d{bottom:371.955000px;}
.yb1{bottom:372.855000px;}
.y36{bottom:380.235000px;}
.yfd{bottom:380.775000px;}
.y6a{bottom:384.015000px;}
.yc1{bottom:386.355000px;}
.y18{bottom:386.895000px;}
.y13e{bottom:387.795000px;}
.y153{bottom:388.335000px;}
.y7c{bottom:388.875000px;}
.y163{bottom:390.855000px;}
.ycd{bottom:391.575000px;}
.y113{bottom:396.615000px;}
.yef{bottom:397.695000px;}
.y9b{bottom:398.955000px;}
.y48{bottom:399.675000px;}
.y124{bottom:403.815000px;}
.y12f{bottom:407.955000px;}
.y5c{bottom:409.935000px;}
.yb0{bottom:410.835000px;}
.y35{bottom:412.635000px;}
.yfc{bottom:418.755000px;}
.y17{bottom:420.555000px;}
.y69{bottom:421.815000px;}
.yc0{bottom:424.335000px;}
.y13d{bottom:425.775000px;}
.y152{bottom:426.315000px;}
.y16c{bottom:428.655000px;}
.y162{bottom:428.835000px;}
.ycc{bottom:429.375000px;}
.y112{bottom:434.595000px;}
.yee{bottom:435.675000px;}
.y9a{bottom:436.935000px;}
.y47{bottom:437.655000px;}
.y7b{bottom:438.915000px;}
.y123{bottom:441.795000px;}
.y34{bottom:445.215000px;}
.y12e{bottom:445.935000px;}
.y5b{bottom:447.915000px;}
.yaf{bottom:448.815000px;}
.y16{bottom:454.395000px;}
.yfb{bottom:456.735000px;}
.y68{bottom:459.795000px;}
.ybf{bottom:462.315000px;}
.y151{bottom:464.295000px;}
.y161{bottom:466.635000px;}
.ycb{bottom:467.355000px;}
.y111{bottom:472.395000px;}
.yed{bottom:473.655000px;}
.y99{bottom:474.915000px;}
.y46{bottom:475.635000px;}
.y7a{bottom:476.715000px;}
.y33{bottom:477.615000px;}
.y122{bottom:479.775000px;}
.y12d{bottom:483.915000px;}
.y13c{bottom:484.815000px;}
.y5a{bottom:485.715000px;}
.yae{bottom:486.615000px;}
.y16b{bottom:487.695000px;}
.y15{bottom:488.055000px;}
.yfa{bottom:494.715000px;}
.y85{bottom:497.775000px;}
.ybe{bottom:500.115000px;}
.y150{bottom:502.275000px;}
.yca{bottom:505.335000px;}
.y67{bottom:509.835000px;}
.y32{bottom:510.195000px;}
.yec{bottom:511.635000px;}
.y98{bottom:512.715000px;}
.y45{bottom:513.615000px;}
.y79{bottom:514.695000px;}
.y121{bottom:517.755000px;}
.y14{bottom:521.715000px;}
.y13b{bottom:522.615000px;}
.yad{bottom:524.595000px;}
.y160{bottom:525.675000px;}
.y110{bottom:531.435000px;}
.yf9{bottom:532.695000px;}
.y59{bottom:535.755000px;}
.ybd{bottom:538.095000px;}
.y31{bottom:542.595000px;}
.y14f{bottom:543.675000px;}
.y66{bottom:547.815000px;}
.yeb{bottom:549.615000px;}
.y97{bottom:550.695000px;}
.y44{bottom:551.595000px;}
.y78{bottom:552.675000px;}
.yc9{bottom:555.375000px;}
.y120{bottom:555.735000px;}
.y13{bottom:557.175000px;}
.y13a{bottom:560.595000px;}
.y15f{bottom:563.655000px;}
.y14e{bottom:564.195000px;}
.y10f{bottom:569.415000px;}
.yf8{bottom:570.495000px;}
.yd4{bottom:571.229136px;}
.y12c{bottom:571.755000px;}
.y58{bottom:573.735000px;}
.yac{bottom:574.635000px;}
.y30{bottom:575.175000px;}
.ybc{bottom:576.075000px;}
.y14d{bottom:584.715000px;}
.y65{bottom:585.615000px;}
.yea{bottom:587.595000px;}
.y77{bottom:590.655000px;}
.y11f{bottom:593.715000px;}
.y12{bottom:597.885000px;}
.y15e{bottom:601.485000px;}
.y43{bottom:602.745000px;}
.y10e{bottom:607.425000px;}
.y2f{bottom:607.605000px;}
.yf7{bottom:608.685000px;}
.y96{bottom:609.765000px;}
.y57{bottom:611.745000px;}
.yab{bottom:612.465000px;}
.ybb{bottom:614.085000px;}
.y139{bottom:619.665000px;}
.y14c{bottom:622.545000px;}
.y64{bottom:623.625000px;}
.ye9{bottom:625.425000px;}
.y76{bottom:628.665000px;}
.y2e{bottom:640.005000px;}
.y42{bottom:641.085000px;}
.y10d{bottom:645.225000px;}
.y11{bottom:645.945000px;}
.y95{bottom:647.745000px;}
.y56{bottom:649.545000px;}
.yaa{bottom:650.445000px;}
.y11e{bottom:652.605000px;}
.y138{bottom:657.645000px;}
.y14b{bottom:660.525000px;}
.y41{bottom:661.605000px;}
.ye8{bottom:663.405000px;}
.yba{bottom:663.945000px;}
.y75{bottom:666.645000px;}
.y2d{bottom:672.585000px;}
.y10c{bottom:683.205000px;}
.y94{bottom:685.545000px;}
.y55{bottom:687.525000px;}
.ya9{bottom:688.425000px;}
.y11d{bottom:690.585000px;}
.y137{bottom:695.445000px;}
.y14a{bottom:698.505000px;}
.y10{bottom:698.865000px;}
.y63{bottom:699.585000px;}
.ye7{bottom:701.385000px;}
.yb9{bottom:701.925000px;}
.y2c{bottom:704.985000px;}
.y40{bottom:711.645000px;}
.y74{bottom:716.505000px;}
.y10b{bottom:721.185000px;}
.y93{bottom:723.525000px;}
.ya8{bottom:726.405000px;}
.y11c{bottom:728.565000px;}
.yf{bottom:734.505000px;}
.y15d{bottom:736.305000px;}
.y2b{bottom:737.565000px;}
.ye6{bottom:739.365000px;}
.yb8{bottom:739.905000px;}
.y3f{bottom:749.445000px;}
.y73{bottom:754.485000px;}
.y149{bottom:757.365000px;}
.y10a{bottom:759.165000px;}
.y92{bottom:761.505000px;}
.ya7{bottom:764.385000px;}
.y11b{bottom:766.365000px;}
.ye{bottom:769.785000px;}
.y54{bottom:775.365000px;}
.ye5{bottom:777.345000px;}
.y2a{bottom:787.425000px;}
.yb7{bottom:789.765000px;}
.y72{bottom:792.465000px;}
.y148{bottom:795.345000px;}
.y109{bottom:797.145000px;}
.y91{bottom:799.485000px;}
.ya6{bottom:802.365000px;}
.yd{bottom:803.445000px;}
.y11a{bottom:804.345000px;}
.y53{bottom:813.345000px;}
.ye4{bottom:815.145000px;}
.y29{bottom:825.405000px;}
.y71{bottom:830.445000px;}
.y147{bottom:833.325000px;}
.y108{bottom:836.205000px;}
.yc{bottom:837.105000px;}
.y90{bottom:837.465000px;}
.ya5{bottom:840.165000px;}
.y119{bottom:842.325000px;}
.y52{bottom:851.325000px;}
.ye3{bottom:853.125000px;}
.y28{bottom:863.430000px;}
.y70{bottom:868.830000px;}
.yb{bottom:870.990000px;}
.y15c{bottom:871.350000px;}
.y107{bottom:874.230000px;}
.y8f{bottom:875.310000px;}
.ya4{bottom:878.190000px;}
.y51{bottom:889.350000px;}
.y146{bottom:892.410000px;}
.y27{bottom:901.410000px;}
.ya{bottom:904.650000px;}
.y16a{bottom:909.150000px;}
.y106{bottom:912.210000px;}
.y8e{bottom:913.290000px;}
.yc8{bottom:927.330000px;}
.ya3{bottom:928.230000px;}
.y145{bottom:930.210000px;}
.y9{bottom:938.490000px;}
.y26{bottom:939.210000px;}
.y105{bottom:950.190000px;}
.y8d{bottom:951.270000px;}
.y144{bottom:968.190000px;}
.y8{bottom:972.150000px;}
.y25{bottom:977.190000px;}
.ya2{bottom:978.090000px;}
.y104{bottom:987.990000px;}
.y8c{bottom:989.250000px;}
.y7{bottom:1005.810000px;}
.y15b{bottom:1006.170000px;}
.y24{bottom:1015.170000px;}
.y103{bottom:1025.970000px;}
.y8b{bottom:1027.230000px;}
.y6{bottom:1039.650000px;}
.y15a{bottom:1044.150000px;}
.y23{bottom:1053.150000px;}
.y102{bottom:1063.950000px;}
.y84{bottom:1065.210000px;}
.y5{bottom:1073.310000px;}
.y169{bottom:1081.950000px;}
.y22{bottom:1091.130000px;}
.y101{bottom:1101.930000px;}
.y50{bottom:1103.010000px;}
.y4{bottom:1107.150000px;}
.y100{bottom:1139.940000px;}
.y3{bottom:1140.840000px;}
.y21{bottom:1141.020000px;}
.hc{height:59.142649px;}
.hb{height:60.884700px;}
.he{height:64.978594px;}
.h7{height:65.010937px;}
.h2{height:65.884219px;}
.h9{height:66.757500px;}
.h8{height:68.084282px;}
.hd{height:70.664062px;}
.h3{height:71.613281px;}
.h6{height:83.787539px;}
.h5{height:95.245664px;}
.h4{height:147.445312px;}
.ha{height:282.155200px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:700.312403px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:10.928968px;}
.x19{left:14.891131px;}
.x15{left:17.862754px;}
.x17{left:20.834377px;}
.x16{left:23.805999px;}
.x13{left:25.787081px;}
.x18{left:27.768163px;}
.x12{left:103.740541px;}
.x2{left:106.415987px;}
.xe{left:108.575987px;}
.xc{left:122.255987px;}
.x10{left:125.675987px;}
.xa{left:133.415987px;}
.x11{left:169.049987px;}
.x7{left:172.289987px;}
.xf{left:293.294987px;}
.x3{left:306.614987px;}
.x8{left:345.494987px;}
.x9{left:373.934987px;}
.xb{left:446.474987px;}
.x6{left:520.124987px;}
.x5{left:651.704987px;}
.x4{left:667.409987px;}
.xd{left:770.009987px;}
.x1{left:778.469987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.240496pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.504533pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls1{letter-spacing:-0.204267pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.079360pt;}
.ls10{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.135467pt;}
.ls12{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.271467pt;}
.ls3{letter-spacing:10.511360pt;}
.ls2{letter-spacing:35.471360pt;}
.lsf{letter-spacing:38.671360pt;}
.ls4{letter-spacing:52.751360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.718613pt;}
.ws7{word-spacing:-14.991467pt;}
.ws3{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.486933pt;}
.ws9{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.215467pt;}
.ws6{word-spacing:-14.176000pt;}
.ws15{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:79.117586pt;}
.ws14{word-spacing:203.993216pt;}
.ws13{word-spacing:214.399597pt;}
.ws10{word-spacing:219.579400pt;}
.ws11{word-spacing:224.508492pt;}
.wse{word-spacing:235.073438pt;}
.ws12{word-spacing:257.399820pt;}
.wsf{word-spacing:310.114630pt;}
._11{margin-left:-4.357120pt;}
._4{margin-left:-3.415040pt;}
._5{margin-left:-2.472960pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.191680pt;}
._b{width:2.091520pt;}
._c{width:3.294720pt;}
._10{width:4.592640pt;}
._e{width:5.534720pt;}
._7{width:6.653440pt;}
._6{width:7.713280pt;}
._8{width:8.791893pt;}
._a{width:9.891840pt;}
._12{width:11.599360pt;}
._f{width:13.160960pt;}
._3{width:16.133120pt;}
._2{width:17.310720pt;}
._16{width:18.252800pt;}
._9{width:19.227733pt;}
._d{width:20.634027pt;}
._15{width:22.161067pt;}
._13{width:23.905280pt;}
._14{width:25.561173pt;}
._2a{width:26.725547pt;}
._34{width:27.756373pt;}
._33{width:33.561600pt;}
._38{width:43.041280pt;}
._30{width:44.513280pt;}
._2f{width:45.573120pt;}
._31{width:46.678613pt;}
._32{width:49.540267pt;}
._2d{width:51.932160pt;}
._2e{width:52.847787pt;}
._39{width:54.372693pt;}
._35{width:56.352427pt;}
._36{width:57.597867pt;}
._28{width:91.852800pt;}
._29{width:93.552213pt;}
._25{width:103.166097pt;}
._37{width:105.866240pt;}
._17{width:130.560550pt;}
._1e{width:149.410044pt;}
._24{width:155.976321pt;}
._27{width:166.406488pt;}
._1b{width:170.809069pt;}
._2b{width:194.127360pt;}
._2c{width:195.599360pt;}
._19{width:216.534787pt;}
._21{width:240.427194pt;}
._1c{width:244.232764pt;}
._22{width:247.984256pt;}
._20{width:253.928039pt;}
._1f{width:267.585420pt;}
._23{width:276.359664pt;}
._1d{width:320.970513pt;}
._1a{width:338.510933pt;}
._26{width:341.074726pt;}
._18{width:646.184250pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:52.855133pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:5.262182pt;}
.ye1{bottom:22.861071pt;}
.ye0{bottom:40.459959pt;}
.y2{bottom:51.200000pt;}
.ydf{bottom:58.088081pt;}
.y1{bottom:68.992000pt;}
.yde{bottom:75.686969pt;}
.ydd{bottom:93.285858pt;}
.yf6{bottom:97.632000pt;}
.y83{bottom:98.912000pt;}
.y20{bottom:103.872000pt;}
.y159{bottom:105.472000pt;}
.y3e{bottom:107.072000pt;}
.y4f{bottom:107.392000pt;}
.ydc{bottom:110.884746pt;}
.y136{bottom:115.872000pt;}
.y6f{bottom:117.472000pt;}
.y12b{bottom:122.912000pt;}
.yd3{bottom:125.792000pt;}
.ydb{bottom:128.483634pt;}
.y118{bottom:129.952000pt;}
.yc7{bottom:130.272000pt;}
.yf5{bottom:131.552000pt;}
.y82{bottom:132.672000pt;}
.y1f{bottom:133.946667pt;}
.y3d{bottom:135.866667pt;}
.y158{bottom:139.226667pt;}
.y4e{bottom:141.146667pt;}
.y168{bottom:141.306667pt;}
.ya1{bottom:141.466667pt;}
.yda{bottom:146.082523pt;}
.y135{bottom:149.466667pt;}
.y8a{bottom:151.226667pt;}
.yb6{bottom:152.026667pt;}
.y12a{bottom:156.666667pt;}
.y143{bottom:157.466667pt;}
.yd2{bottom:159.546667pt;}
.y170{bottom:160.026667pt;}
.y62{bottom:161.946667pt;}
.yd9{bottom:163.681411pt;}
.y117{bottom:163.706667pt;}
.y1e{bottom:163.866667pt;}
.yc6{bottom:164.026667pt;}
.y3c{bottom:164.826667pt;}
.yf4{bottom:166.106667pt;}
.y157{bottom:172.826667pt;}
.y81{bottom:176.986667pt;}
.yd8{bottom:181.280299pt;}
.y134{bottom:183.226667pt;}
.yff{bottom:184.826667pt;}
.y89{bottom:184.986667pt;}
.y4d{bottom:185.626667pt;}
.yb5{bottom:185.786667pt;}
.ya0{bottom:185.946667pt;}
.y129{bottom:190.266667pt;}
.y142{bottom:191.066667pt;}
.yd1{bottom:193.306667pt;}
.y3b{bottom:193.626667pt;}
.y167{bottom:193.786667pt;}
.y1d{bottom:193.946667pt;}
.y61{bottom:195.706667pt;}
.y116{bottom:197.466667pt;}
.yd7{bottom:198.879188pt;}
.y6e{bottom:206.266667pt;}
.yc5{bottom:208.506667pt;}
.y80{bottom:210.746667pt;}
.yd6{bottom:218.232118pt;}
.yf3{bottom:218.586667pt;}
.y88{bottom:218.746667pt;}
.y4c{bottom:219.226667pt;}
.yb4{bottom:219.546667pt;}
.y9f{bottom:219.706667pt;}
.y3a{bottom:222.426667pt;}
.y1c{bottom:223.866667pt;}
.y128{bottom:224.026667pt;}
.y141{bottom:224.826667pt;}
.y156{bottom:225.306667pt;}
.yd0{bottom:227.066667pt;}
.y166{bottom:227.546667pt;}
.y133{bottom:227.706667pt;}
.y60{bottom:229.466667pt;}
.y115{bottom:231.226667pt;}
.yd5{bottom:237.585048pt;}
.y6d{bottom:240.026667pt;}
.yc4{bottom:242.106667pt;}
.y7f{bottom:244.506667pt;}
.y16f{bottom:246.266667pt;}
.y39{bottom:251.386667pt;}
.yf2{bottom:252.346667pt;}
.y87{bottom:252.506667pt;}
.y4b{bottom:253.146667pt;}
.yb3{bottom:253.306667pt;}
.y9e{bottom:253.466667pt;}
.y1b{bottom:253.946667pt;}
.y127{bottom:257.786667pt;}
.y140{bottom:258.586667pt;}
.y155{bottom:259.066667pt;}
.ycf{bottom:260.826667pt;}
.y165{bottom:261.306667pt;}
.y132{bottom:261.466667pt;}
.y5f{bottom:263.066667pt;}
.y6c{bottom:273.786667pt;}
.yc3{bottom:275.866667pt;}
.y7e{bottom:278.266667pt;}
.y16e{bottom:279.866667pt;}
.y38{bottom:280.186667pt;}
.y1a{bottom:283.866667pt;}
.yf1{bottom:286.106667pt;}
.y86{bottom:286.266667pt;}
.y9d{bottom:287.066667pt;}
.y4a{bottom:287.866667pt;}
.y126{bottom:291.586667pt;}
.y154{bottom:292.706667pt;}
.yce{bottom:294.626667pt;}
.y164{bottom:294.946667pt;}
.y131{bottom:295.106667pt;}
.y5e{bottom:296.866667pt;}
.yb2{bottom:297.666667pt;}
.yfe{bottom:304.706667pt;}
.y6b{bottom:307.586667pt;}
.y37{bottom:309.186667pt;}
.yc2{bottom:309.666667pt;}
.y13f{bottom:310.946667pt;}
.y7d{bottom:311.906667pt;}
.y16d{bottom:313.666667pt;}
.y19{bottom:313.826667pt;}
.y114{bottom:318.786667pt;}
.yf0{bottom:319.906667pt;}
.y9c{bottom:320.866667pt;}
.y49{bottom:321.506667pt;}
.y125{bottom:325.346667pt;}
.y130{bottom:328.866667pt;}
.y5d{bottom:330.626667pt;}
.yb1{bottom:331.426667pt;}
.y36{bottom:337.986667pt;}
.yfd{bottom:338.466667pt;}
.y6a{bottom:341.346667pt;}
.yc1{bottom:343.426667pt;}
.y18{bottom:343.906667pt;}
.y13e{bottom:344.706667pt;}
.y153{bottom:345.186667pt;}
.y7c{bottom:345.666667pt;}
.y163{bottom:347.426667pt;}
.ycd{bottom:348.066667pt;}
.y113{bottom:352.546667pt;}
.yef{bottom:353.506667pt;}
.y9b{bottom:354.626667pt;}
.y48{bottom:355.266667pt;}
.y124{bottom:358.946667pt;}
.y12f{bottom:362.626667pt;}
.y5c{bottom:364.386667pt;}
.yb0{bottom:365.186667pt;}
.y35{bottom:366.786667pt;}
.yfc{bottom:372.226667pt;}
.y17{bottom:373.826667pt;}
.y69{bottom:374.946667pt;}
.yc0{bottom:377.186667pt;}
.y13d{bottom:378.466667pt;}
.y152{bottom:378.946667pt;}
.y16c{bottom:381.026667pt;}
.y162{bottom:381.186667pt;}
.ycc{bottom:381.666667pt;}
.y112{bottom:386.306667pt;}
.yee{bottom:387.266667pt;}
.y9a{bottom:388.386667pt;}
.y47{bottom:389.026667pt;}
.y7b{bottom:390.146667pt;}
.y123{bottom:392.706667pt;}
.y34{bottom:395.746667pt;}
.y12e{bottom:396.386667pt;}
.y5b{bottom:398.146667pt;}
.yaf{bottom:398.946667pt;}
.y16{bottom:403.906667pt;}
.yfb{bottom:405.986667pt;}
.y68{bottom:408.706667pt;}
.ybf{bottom:410.946667pt;}
.y151{bottom:412.706667pt;}
.y161{bottom:414.786667pt;}
.ycb{bottom:415.426667pt;}
.y111{bottom:419.906667pt;}
.yed{bottom:421.026667pt;}
.y99{bottom:422.146667pt;}
.y46{bottom:422.786667pt;}
.y7a{bottom:423.746667pt;}
.y33{bottom:424.546667pt;}
.y122{bottom:426.466667pt;}
.y12d{bottom:430.146667pt;}
.y13c{bottom:430.946667pt;}
.y5a{bottom:431.746667pt;}
.yae{bottom:432.546667pt;}
.y16b{bottom:433.506667pt;}
.y15{bottom:433.826667pt;}
.yfa{bottom:439.746667pt;}
.y85{bottom:442.466667pt;}
.ybe{bottom:444.546667pt;}
.y150{bottom:446.466667pt;}
.yca{bottom:449.186667pt;}
.y67{bottom:453.186667pt;}
.y32{bottom:453.506667pt;}
.yec{bottom:454.786667pt;}
.y98{bottom:455.746667pt;}
.y45{bottom:456.546667pt;}
.y79{bottom:457.506667pt;}
.y121{bottom:460.226667pt;}
.y14{bottom:463.746667pt;}
.y13b{bottom:464.546667pt;}
.yad{bottom:466.306667pt;}
.y160{bottom:467.266667pt;}
.y110{bottom:472.386667pt;}
.yf9{bottom:473.506667pt;}
.y59{bottom:476.226667pt;}
.ybd{bottom:478.306667pt;}
.y31{bottom:482.306667pt;}
.y14f{bottom:483.266667pt;}
.y66{bottom:486.946667pt;}
.yeb{bottom:488.546667pt;}
.y97{bottom:489.506667pt;}
.y44{bottom:490.306667pt;}
.y78{bottom:491.266667pt;}
.yc9{bottom:493.666667pt;}
.y120{bottom:493.986667pt;}
.y13{bottom:495.266667pt;}
.y13a{bottom:498.306667pt;}
.y15f{bottom:501.026667pt;}
.y14e{bottom:501.506667pt;}
.y10f{bottom:506.146667pt;}
.yf8{bottom:507.106667pt;}
.yd4{bottom:507.759232pt;}
.y12c{bottom:508.226667pt;}
.y58{bottom:509.986667pt;}
.yac{bottom:510.786667pt;}
.y30{bottom:511.266667pt;}
.ybc{bottom:512.066667pt;}
.y14d{bottom:519.746667pt;}
.y65{bottom:520.546667pt;}
.yea{bottom:522.306667pt;}
.y77{bottom:525.026667pt;}
.y11f{bottom:527.746667pt;}
.y12{bottom:531.453333pt;}
.y15e{bottom:534.653333pt;}
.y43{bottom:535.773333pt;}
.y10e{bottom:539.933333pt;}
.y2f{bottom:540.093333pt;}
.yf7{bottom:541.053333pt;}
.y96{bottom:542.013333pt;}
.y57{bottom:543.773333pt;}
.yab{bottom:544.413333pt;}
.ybb{bottom:545.853333pt;}
.y139{bottom:550.813333pt;}
.y14c{bottom:553.373333pt;}
.y64{bottom:554.333333pt;}
.ye9{bottom:555.933333pt;}
.y76{bottom:558.813333pt;}
.y2e{bottom:568.893333pt;}
.y42{bottom:569.853333pt;}
.y10d{bottom:573.533333pt;}
.y11{bottom:574.173333pt;}
.y95{bottom:575.773333pt;}
.y56{bottom:577.373333pt;}
.yaa{bottom:578.173333pt;}
.y11e{bottom:580.093333pt;}
.y138{bottom:584.573333pt;}
.y14b{bottom:587.133333pt;}
.y41{bottom:588.093333pt;}
.ye8{bottom:589.693333pt;}
.yba{bottom:590.173333pt;}
.y75{bottom:592.573333pt;}
.y2d{bottom:597.853333pt;}
.y10c{bottom:607.293333pt;}
.y94{bottom:609.373333pt;}
.y55{bottom:611.133333pt;}
.ya9{bottom:611.933333pt;}
.y11d{bottom:613.853333pt;}
.y137{bottom:618.173333pt;}
.y14a{bottom:620.893333pt;}
.y10{bottom:621.213333pt;}
.y63{bottom:621.853333pt;}
.ye7{bottom:623.453333pt;}
.yb9{bottom:623.933333pt;}
.y2c{bottom:626.653333pt;}
.y40{bottom:632.573333pt;}
.y74{bottom:636.893333pt;}
.y10b{bottom:641.053333pt;}
.y93{bottom:643.133333pt;}
.ya8{bottom:645.693333pt;}
.y11c{bottom:647.613333pt;}
.yf{bottom:652.893333pt;}
.y15d{bottom:654.493333pt;}
.y2b{bottom:655.613333pt;}
.ye6{bottom:657.213333pt;}
.yb8{bottom:657.693333pt;}
.y3f{bottom:666.173333pt;}
.y73{bottom:670.653333pt;}
.y149{bottom:673.213333pt;}
.y10a{bottom:674.813333pt;}
.y92{bottom:676.893333pt;}
.ya7{bottom:679.453333pt;}
.y11b{bottom:681.213333pt;}
.ye{bottom:684.253333pt;}
.y54{bottom:689.213333pt;}
.ye5{bottom:690.973333pt;}
.y2a{bottom:699.933333pt;}
.yb7{bottom:702.013333pt;}
.y72{bottom:704.413333pt;}
.y148{bottom:706.973333pt;}
.y109{bottom:708.573333pt;}
.y91{bottom:710.653333pt;}
.ya6{bottom:713.213333pt;}
.yd{bottom:714.173333pt;}
.y11a{bottom:714.973333pt;}
.y53{bottom:722.973333pt;}
.ye4{bottom:724.573333pt;}
.y29{bottom:733.693333pt;}
.y71{bottom:738.173333pt;}
.y147{bottom:740.733333pt;}
.y108{bottom:743.293333pt;}
.yc{bottom:744.093333pt;}
.y90{bottom:744.413333pt;}
.ya5{bottom:746.813333pt;}
.y119{bottom:748.733333pt;}
.y52{bottom:756.733333pt;}
.ye3{bottom:758.333333pt;}
.y28{bottom:767.493333pt;}
.y70{bottom:772.293333pt;}
.yb{bottom:774.213333pt;}
.y15c{bottom:774.533333pt;}
.y107{bottom:777.093333pt;}
.y8f{bottom:778.053333pt;}
.ya4{bottom:780.613333pt;}
.y51{bottom:790.533333pt;}
.y146{bottom:793.253333pt;}
.y27{bottom:801.253333pt;}
.ya{bottom:804.133333pt;}
.y16a{bottom:808.133333pt;}
.y106{bottom:810.853333pt;}
.y8e{bottom:811.813333pt;}
.yc8{bottom:824.293333pt;}
.ya3{bottom:825.093333pt;}
.y145{bottom:826.853333pt;}
.y9{bottom:834.213333pt;}
.y26{bottom:834.853333pt;}
.y105{bottom:844.613333pt;}
.y8d{bottom:845.573333pt;}
.y144{bottom:860.613333pt;}
.y8{bottom:864.133333pt;}
.y25{bottom:868.613333pt;}
.ya2{bottom:869.413333pt;}
.y104{bottom:878.213333pt;}
.y8c{bottom:879.333333pt;}
.y7{bottom:894.053333pt;}
.y15b{bottom:894.373333pt;}
.y24{bottom:902.373333pt;}
.y103{bottom:911.973333pt;}
.y8b{bottom:913.093333pt;}
.y6{bottom:924.133333pt;}
.y15a{bottom:928.133333pt;}
.y23{bottom:936.133333pt;}
.y102{bottom:945.733333pt;}
.y84{bottom:946.853333pt;}
.y5{bottom:954.053333pt;}
.y169{bottom:961.733333pt;}
.y22{bottom:969.893333pt;}
.y101{bottom:979.493333pt;}
.y50{bottom:980.453333pt;}
.y4{bottom:984.133333pt;}
.y100{bottom:1013.280000pt;}
.y3{bottom:1014.080000pt;}
.y21{bottom:1014.240000pt;}
.hc{height:52.571243pt;}
.hb{height:54.119733pt;}
.he{height:57.758750pt;}
.h7{height:57.787500pt;}
.h2{height:58.563750pt;}
.h9{height:59.340000pt;}
.h8{height:60.519362pt;}
.hd{height:62.812500pt;}
.h3{height:63.656250pt;}
.h6{height:74.477812pt;}
.h5{height:84.662813pt;}
.h4{height:131.062500pt;}
.ha{height:250.804622pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:622.499914pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:9.714638pt;}
.x19{left:13.236561pt;}
.x15{left:15.878003pt;}
.x17{left:18.519446pt;}
.x16{left:21.160888pt;}
.x13{left:22.921850pt;}
.x18{left:24.682811pt;}
.x12{left:92.213814pt;}
.x2{left:94.591988pt;}
.xe{left:96.511988pt;}
.xc{left:108.671988pt;}
.x10{left:111.711988pt;}
.xa{left:118.591988pt;}
.x11{left:150.266655pt;}
.x7{left:153.146655pt;}
.xf{left:260.706655pt;}
.x3{left:272.546655pt;}
.x8{left:307.106655pt;}
.x9{left:332.386655pt;}
.xb{left:396.866655pt;}
.x6{left:462.333322pt;}
.x5{left:579.293322pt;}
.x4{left:593.253322pt;}
.xd{left:684.453322pt;}
.x1{left:691.973322pt;}
}




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