
    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_ecda8941b74ee307ce3559e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_00c53a85e8e0ed568caeb036.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68eddab6422c9b50a89e99f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_abb767e446de86450686494a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a2cc7dfa3bd861919f8a5293.woff2')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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_55ca1c6a25a50774860845dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c3b92b2f505d3909a53a25a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.612000px;}
.ls3{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.lse{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.080000px;}
.ls10{letter-spacing:4.500000px;}
.ls18{letter-spacing:16.506720px;}
.ls9{letter-spacing:41.706720px;}
.ls8{letter-spacing:44.586720px;}
.ls14{letter-spacing:46.026720px;}
.ls16{letter-spacing:55.362720px;}
.ls6{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws3{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.479800px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-8.199840px;}
._1b{margin-left:-6.636240px;}
._3{margin-left:-5.339520px;}
._9{margin-left:-4.245840px;}
._d{margin-left:-2.808720px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._c{width:2.325360px;}
._16{width:3.616560px;}
._7{width:4.843440px;}
._18{width:6.573600px;}
._1a{width:8.138880px;}
._19{width:9.223920px;}
._6{width:10.275840px;}
._f{width:11.471040px;}
._e{width:12.908160px;}
._1c{width:13.934880px;}
._11{width:16.431120px;}
._1d{width:17.518320px;}
._17{width:19.481760px;}
._10{width:21.032640px;}
._1e{width:22.061040px;}
._13{width:23.105280px;}
._14{width:24.819120px;}
._12{width:25.986240px;}
._8{width:31.852080px;}
._15{width:54.262080px;}
._5{width:83.481840px;}
._4{width:90.246720px;}
._b{width:158.122080px;}
._a{width:159.499440px;}
._1{width:1100.028000px;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y2d{bottom:5.760000px;}
.y7{bottom:8.100000px;}
.y2b{bottom:11.025000px;}
.y45{bottom:25.785000px;}
.y2a{bottom:31.005000px;}
.y6{bottom:36.180000px;}
.y44{bottom:45.585000px;}
.y29{bottom:50.805000px;}
.yb{bottom:56.520000px;}
.y5{bottom:58.140000px;}
.y43{bottom:65.385000px;}
.y28{bottom:70.605000px;}
.y16d{bottom:78.660000px;}
.y140{bottom:79.380000px;}
.y4{bottom:81.900000px;}
.yfd{bottom:84.060000px;}
.y119{bottom:85.140000px;}
.y42{bottom:85.185000px;}
.y83{bottom:89.820000px;}
.y27{bottom:90.405000px;}
.y54{bottom:93.060000px;}
.y191{bottom:95.580000px;}
.y16c{bottom:98.640000px;}
.y13f{bottom:99.180000px;}
.yfc{bottom:104.040000px;}
.y41{bottom:104.985000px;}
.y118{bottom:105.120000px;}
.yb2{bottom:107.640000px;}
.y9{bottom:108.750000px;}
.ye0{bottom:109.440000px;}
.y82{bottom:109.800000px;}
.y26{bottom:110.205000px;}
.y53{bottom:112.860000px;}
.y190{bottom:115.380000px;}
.y3{bottom:118.110000px;}
.y13e{bottom:119.160000px;}
.y16b{bottom:119.520000px;}
.yfb{bottom:123.840000px;}
.y117{bottom:124.920000px;}
.y40{bottom:124.965000px;}
.yb1{bottom:127.440000px;}
.ydf{bottom:129.240000px;}
.y81{bottom:129.600000px;}
.y25{bottom:130.185000px;}
.y8{bottom:130.710000px;}
.y52{bottom:132.840000px;}
.y18f{bottom:135.180000px;}
.y16a{bottom:139.320000px;}
.y116{bottom:144.720000px;}
.y3f{bottom:144.765000px;}
.yb0{bottom:147.240000px;}
.y13d{bottom:147.960000px;}
.y24{bottom:149.985000px;}
.yde{bottom:150.120000px;}
.y80{bottom:150.480000px;}
.y51{bottom:152.670000px;}
.y18e{bottom:155.190000px;}
.y169{bottom:160.230000px;}
.y115{bottom:164.550000px;}
.y3e{bottom:164.565000px;}
.yaf{bottom:167.070000px;}
.y13c{bottom:167.790000px;}
.y23{bottom:169.785000px;}
.ydd{bottom:171.030000px;}
.y7f{bottom:171.390000px;}
.y50{bottom:172.470000px;}
.y14d{bottom:173.550000px;}
.y18d{bottom:174.990000px;}
.y168{bottom:180.030000px;}
.y114{bottom:184.350000px;}
.y3d{bottom:184.365000px;}
.yae{bottom:186.870000px;}
.y13b{bottom:187.590000px;}
.y22{bottom:189.585000px;}
.ydc{bottom:191.010000px;}
.y4f{bottom:192.270000px;}
.y14c{bottom:193.350000px;}
.y18c{bottom:194.790000px;}
.y167{bottom:201.090000px;}
.y3c{bottom:204.165000px;}
.y113{bottom:204.330000px;}
.yad{bottom:206.850000px;}
.y13a{bottom:207.390000px;}
.y21{bottom:209.385000px;}
.ydb{bottom:211.890000px;}
.y4e{bottom:212.070000px;}
.y7e{bottom:212.250000px;}
.y14b{bottom:213.330000px;}
.y18b{bottom:214.590000px;}
.y166{bottom:220.890000px;}
.y112{bottom:224.130000px;}
.y3b{bottom:224.145000px;}
.yac{bottom:226.650000px;}
.y139{bottom:227.370000px;}
.y20{bottom:229.365000px;}
.yda{bottom:231.690000px;}
.y4d{bottom:232.050000px;}
.y14a{bottom:233.130000px;}
.y18a{bottom:234.390000px;}
.y165{bottom:240.690000px;}
.y111{bottom:243.930000px;}
.y3a{bottom:243.945000px;}
.yab{bottom:246.450000px;}
.y138{bottom:247.170000px;}
.y1f{bottom:249.165000px;}
.yd9{bottom:251.490000px;}
.y4c{bottom:251.850000px;}
.y149{bottom:252.930000px;}
.y189{bottom:254.370000px;}
.y164{bottom:261.570000px;}
.y110{bottom:263.730000px;}
.y39{bottom:263.775000px;}
.yaa{bottom:266.250000px;}
.y137{bottom:266.970000px;}
.y1e{bottom:268.995000px;}
.yd8{bottom:271.290000px;}
.y4b{bottom:271.650000px;}
.y148{bottom:272.730000px;}
.y188{bottom:274.170000px;}
.y163{bottom:281.370000px;}
.y38{bottom:283.575000px;}
.y136{bottom:286.770000px;}
.ya9{bottom:287.130000px;}
.y1d{bottom:288.795000px;}
.yd7{bottom:291.270000px;}
.y4a{bottom:291.450000px;}
.y10f{bottom:292.530000px;}
.y187{bottom:293.970000px;}
.y162{bottom:302.430000px;}
.y37{bottom:303.375000px;}
.y135{bottom:306.570000px;}
.ya8{bottom:307.110000px;}
.y1c{bottom:308.595000px;}
.yd6{bottom:311.070000px;}
.y49{bottom:311.250000px;}
.y7d{bottom:311.430000px;}
.y10e{bottom:312.510000px;}
.y186{bottom:313.770000px;}
.y161{bottom:322.230000px;}
.y36{bottom:323.355000px;}
.y134{bottom:326.550000px;}
.ya7{bottom:327.990000px;}
.y1b{bottom:328.575000px;}
.yd5{bottom:330.870000px;}
.y48{bottom:331.230000px;}
.y10d{bottom:332.310000px;}
.y185{bottom:333.570000px;}
.y160{bottom:343.110000px;}
.y35{bottom:343.155000px;}
.y133{bottom:346.350000px;}
.ya6{bottom:347.790000px;}
.y1a{bottom:348.375000px;}
.yd4{bottom:350.670000px;}
.y47{bottom:351.030000px;}
.y10c{bottom:352.110000px;}
.y184{bottom:353.550000px;}
.y15f{bottom:362.910000px;}
.y34{bottom:362.955000px;}
.y132{bottom:366.150000px;}
.y19{bottom:368.175000px;}
.ya5{bottom:368.670000px;}
.yd3{bottom:370.470000px;}
.y46{bottom:370.830000px;}
.y10b{bottom:371.910000px;}
.y183{bottom:373.350000px;}
.y15e{bottom:382.710000px;}
.y33{bottom:382.755000px;}
.y131{bottom:385.950000px;}
.y18{bottom:387.975000px;}
.ya4{bottom:388.470000px;}
.y11{bottom:390.090000px;}
.yd2{bottom:390.450000px;}
.y7c{bottom:390.630000px;}
.y10a{bottom:391.710000px;}
.y182{bottom:393.150000px;}
.y32{bottom:402.555000px;}
.y130{bottom:405.795000px;}
.y17{bottom:407.775000px;}
.ya3{bottom:408.495000px;}
.yd1{bottom:410.295000px;}
.y7b{bottom:410.655000px;}
.y109{bottom:411.555000px;}
.y181{bottom:412.995000px;}
.y31{bottom:422.355000px;}
.y12f{bottom:425.775000px;}
.y16{bottom:427.755000px;}
.ya2{bottom:428.295000px;}
.y7a{bottom:430.455000px;}
.y108{bottom:431.535000px;}
.y180{bottom:432.795000px;}
.yd0{bottom:439.095000px;}
.y30{bottom:442.335000px;}
.y15{bottom:447.555000px;}
.ya1{bottom:448.095000px;}
.y79{bottom:450.255000px;}
.y107{bottom:451.335000px;}
.y17f{bottom:452.775000px;}
.y12e{bottom:454.575000px;}
.ycf{bottom:458.895000px;}
.y2f{bottom:462.135000px;}
.y14{bottom:467.355000px;}
.ya0{bottom:467.895000px;}
.y78{bottom:470.055000px;}
.yfa{bottom:471.135000px;}
.y17e{bottom:472.575000px;}
.y12d{bottom:474.375000px;}
.yce{bottom:478.695000px;}
.y106{bottom:480.135000px;}
.y2e{bottom:481.935000px;}
.y13{bottom:487.155000px;}
.y9f{bottom:487.695000px;}
.y77{bottom:489.855000px;}
.yf9{bottom:490.935000px;}
.y17d{bottom:492.375000px;}
.y12c{bottom:494.175000px;}
.ycd{bottom:498.675000px;}
.y105{bottom:499.935000px;}
.y12{bottom:506.955000px;}
.y9e{bottom:507.675000px;}
.y76{bottom:509.835000px;}
.y147{bottom:510.735000px;}
.yf8{bottom:511.815000px;}
.y17c{bottom:512.175000px;}
.y12b{bottom:513.975000px;}
.ycc{bottom:518.475000px;}
.y104{bottom:520.815000px;}
.y75{bottom:529.635000px;}
.y146{bottom:530.715000px;}
.yf7{bottom:531.795000px;}
.y17b{bottom:531.975000px;}
.y12a{bottom:533.955000px;}
.y9d{bottom:536.475000px;}
.ycb{bottom:538.275000px;}
.y103{bottom:540.795000px;}
.y74{bottom:549.435000px;}
.y15d{bottom:550.515000px;}
.y17a{bottom:551.955000px;}
.yf6{bottom:552.675000px;}
.y129{bottom:553.755000px;}
.y9c{bottom:556.275000px;}
.yca{bottom:558.075000px;}
.y145{bottom:559.515000px;}
.y102{bottom:561.675000px;}
.y73{bottom:569.235000px;}
.y15c{bottom:570.315000px;}
.y179{bottom:571.755000px;}
.yf5{bottom:572.475000px;}
.y128{bottom:573.555000px;}
.y9b{bottom:577.155000px;}
.yc9{bottom:577.875000px;}
.y144{bottom:579.315000px;}
.y101{bottom:581.475000px;}
.y72{bottom:589.035000px;}
.y15b{bottom:590.115000px;}
.y178{bottom:591.555000px;}
.yf4{bottom:592.275000px;}
.y127{bottom:593.355000px;}
.y9a{bottom:596.955000px;}
.y143{bottom:600.195000px;}
.y100{bottom:602.355000px;}
.yc8{bottom:606.855000px;}
.y71{bottom:609.015000px;}
.y15a{bottom:609.915000px;}
.y177{bottom:611.355000px;}
.yf3{bottom:613.155000px;}
.y99{bottom:618.015000px;}
.y142{bottom:619.995000px;}
.yff{bottom:622.155000px;}
.yc7{bottom:626.655000px;}
.y70{bottom:628.815000px;}
.y159{bottom:629.895000px;}
.y176{bottom:631.155000px;}
.yf2{bottom:633.135000px;}
.y98{bottom:637.815000px;}
.y141{bottom:641.055000px;}
.yfe{bottom:642.135000px;}
.yc6{bottom:647.535000px;}
.y6f{bottom:648.615000px;}
.y158{bottom:649.725000px;}
.y175{bottom:651.165000px;}
.y126{bottom:652.965000px;}
.y97{bottom:658.725000px;}
.yf1{bottom:661.965000px;}
.yc5{bottom:667.365000px;}
.y6e{bottom:668.445000px;}
.y157{bottom:669.525000px;}
.y174{bottom:670.965000px;}
.y125{bottom:672.765000px;}
.y96{bottom:678.525000px;}
.yf0{bottom:681.765000px;}
.y6d{bottom:688.245000px;}
.y156{bottom:689.325000px;}
.y173{bottom:690.765000px;}
.y95{bottom:698.325000px;}
.yef{bottom:701.565000px;}
.y6c{bottom:708.045000px;}
.y155{bottom:709.125000px;}
.y172{bottom:710.565000px;}
.y94{bottom:718.125000px;}
.yee{bottom:721.365000px;}
.yc4{bottom:729.105000px;}
.y171{bottom:730.365000px;}
.y6b{bottom:737.025000px;}
.y93{bottom:738.105000px;}
.yed{bottom:741.345000px;}
.yc3{bottom:748.905000px;}
.y170{bottom:750.345000px;}
.y6a{bottom:756.825000px;}
.y92{bottom:757.905000px;}
.yec{bottom:761.145000px;}
.yc2{bottom:768.705000px;}
.y16f{bottom:770.145000px;}
.y69{bottom:776.625000px;}
.y91{bottom:777.705000px;}
.yeb{bottom:780.945000px;}
.yc1{bottom:788.505000px;}
.y16e{bottom:789.945000px;}
.y68{bottom:796.425000px;}
.y90{bottom:797.505000px;}
.y124{bottom:800.745000px;}
.yc0{bottom:808.305000px;}
.yea{bottom:809.745000px;}
.y67{bottom:816.225000px;}
.y8f{bottom:817.305000px;}
.y123{bottom:820.545000px;}
.ybf{bottom:828.285000px;}
.ye9{bottom:829.545000px;}
.y66{bottom:836.205000px;}
.y8e{bottom:837.285000px;}
.y122{bottom:840.525000px;}
.ybe{bottom:848.085000px;}
.ye8{bottom:849.525000px;}
.y65{bottom:856.005000px;}
.y154{bottom:857.085000px;}
.y121{bottom:860.325000px;}
.y8d{bottom:866.085000px;}
.ye7{bottom:869.325000px;}
.y64{bottom:875.805000px;}
.ybd{bottom:876.885000px;}
.y120{bottom:880.125000px;}
.y8c{bottom:885.885000px;}
.ye6{bottom:889.125000px;}
.y2c{bottom:891.285000px;}
.y63{bottom:895.605000px;}
.ybc{bottom:896.685000px;}
.y11f{bottom:899.970000px;}
.y8b{bottom:906.810000px;}
.ye5{bottom:908.970000px;}
.y62{bottom:915.450000px;}
.ybb{bottom:916.530000px;}
.y11e{bottom:919.770000px;}
.y10{bottom:922.290000px;}
.y8a{bottom:926.610000px;}
.ye4{bottom:928.770000px;}
.y153{bottom:936.510000px;}
.yba{bottom:937.590000px;}
.y11d{bottom:939.750000px;}
.yf{bottom:942.090000px;}
.y61{bottom:944.430000px;}
.y89{bottom:947.670000px;}
.ye3{bottom:948.750000px;}
.yb9{bottom:957.390000px;}
.y11c{bottom:959.550000px;}
.ye{bottom:962.430000px;}
.y60{bottom:964.230000px;}
.y152{bottom:965.310000px;}
.y88{bottom:967.470000px;}
.ye2{bottom:968.550000px;}
.yb8{bottom:978.270000px;}
.y11b{bottom:979.350000px;}
.yd{bottom:983.670000px;}
.y5f{bottom:985.110000px;}
.y87{bottom:987.270000px;}
.ye1{bottom:988.350000px;}
.yb7{bottom:998.070000px;}
.y11a{bottom:999.150000px;}
.y5e{bottom:1005.990000px;}
.yc{bottom:1007.250000px;}
.y86{bottom:1008.150000px;}
.yb6{bottom:1018.950000px;}
.y5d{bottom:1025.790000px;}
.y85{bottom:1027.950000px;}
.ya{bottom:1034.610000px;}
.yb5{bottom:1038.930000px;}
.y151{bottom:1045.770000px;}
.y5c{bottom:1046.850000px;}
.y84{bottom:1047.930000px;}
.y1{bottom:1052.250000px;}
.yb4{bottom:1058.730000px;}
.y150{bottom:1066.650000px;}
.y5b{bottom:1067.730000px;}
.yb3{bottom:1078.530000px;}
.y14f{bottom:1086.450000px;}
.y5a{bottom:1087.530000px;}
.y14e{bottom:1106.250000px;}
.y59{bottom:1107.330000px;}
.y58{bottom:1127.130000px;}
.y57{bottom:1147.140000px;}
.y56{bottom:1166.940000px;}
.y55{bottom:1195.740000px;}
.hc{height:19.836000px;}
.ha{height:41.726953px;}
.h8{height:42.164648px;}
.hf{height:43.506914px;}
.h6{height:46.251562px;}
.h9{height:46.736719px;}
.h10{height:49.255313px;}
.h5{height:60.855469px;}
.he{height:65.884219px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.hd{height:495.975000px;}
.hb{height:521.025000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.w6{width:304.815000px;}
.w7{width:473.325000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:55.980000px;}
.xd{left:80.999987px;}
.x11{left:88.055987px;}
.x7{left:102.285000px;}
.xe{left:108.035987px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.xf{left:135.035987px;}
.x10{left:162.029987px;}
.x3{left:181.650000px;}
.xc{left:212.429987px;}
.xb{left:363.855000px;}
.x9{left:681.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls10{letter-spacing:4.000000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls9{letter-spacing:37.072640pt;}
.ls8{letter-spacing:39.632640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls16{letter-spacing:49.211307pt;}
.ls6{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.870933pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-7.288747pt;}
._1b{margin-left:-5.898880pt;}
._3{margin-left:-4.746240pt;}
._9{margin-left:-3.774080pt;}
._d{margin-left:-2.496640pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._c{width:2.066987pt;}
._16{width:3.214720pt;}
._7{width:4.305280pt;}
._18{width:5.843200pt;}
._1a{width:7.234560pt;}
._19{width:8.199040pt;}
._6{width:9.134080pt;}
._f{width:10.196480pt;}
._e{width:11.473920pt;}
._1c{width:12.386560pt;}
._11{width:14.605440pt;}
._1d{width:15.571840pt;}
._17{width:17.317120pt;}
._10{width:18.695680pt;}
._1e{width:19.609813pt;}
._13{width:20.538027pt;}
._14{width:22.061440pt;}
._12{width:23.098880pt;}
._8{width:28.312960pt;}
._15{width:48.232960pt;}
._5{width:74.206080pt;}
._4{width:80.219307pt;}
._b{width:140.552960pt;}
._a{width:141.777280pt;}
._1{width:977.802667pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y2d{bottom:5.120000pt;}
.y7{bottom:7.200000pt;}
.y2b{bottom:9.800000pt;}
.y45{bottom:22.920000pt;}
.y2a{bottom:27.560000pt;}
.y6{bottom:32.160000pt;}
.y44{bottom:40.520000pt;}
.y29{bottom:45.160000pt;}
.yb{bottom:50.240000pt;}
.y5{bottom:51.680000pt;}
.y43{bottom:58.120000pt;}
.y28{bottom:62.760000pt;}
.y16d{bottom:69.920000pt;}
.y140{bottom:70.560000pt;}
.y4{bottom:72.800000pt;}
.yfd{bottom:74.720000pt;}
.y119{bottom:75.680000pt;}
.y42{bottom:75.720000pt;}
.y83{bottom:79.840000pt;}
.y27{bottom:80.360000pt;}
.y54{bottom:82.720000pt;}
.y191{bottom:84.960000pt;}
.y16c{bottom:87.680000pt;}
.y13f{bottom:88.160000pt;}
.yfc{bottom:92.480000pt;}
.y41{bottom:93.320000pt;}
.y118{bottom:93.440000pt;}
.yb2{bottom:95.680000pt;}
.y9{bottom:96.666667pt;}
.ye0{bottom:97.280000pt;}
.y82{bottom:97.600000pt;}
.y26{bottom:97.960000pt;}
.y53{bottom:100.320000pt;}
.y190{bottom:102.560000pt;}
.y3{bottom:104.986667pt;}
.y13e{bottom:105.920000pt;}
.y16b{bottom:106.240000pt;}
.yfb{bottom:110.080000pt;}
.y117{bottom:111.040000pt;}
.y40{bottom:111.080000pt;}
.yb1{bottom:113.280000pt;}
.ydf{bottom:114.880000pt;}
.y81{bottom:115.200000pt;}
.y25{bottom:115.720000pt;}
.y8{bottom:116.186667pt;}
.y52{bottom:118.080000pt;}
.y18f{bottom:120.160000pt;}
.y16a{bottom:123.840000pt;}
.y116{bottom:128.640000pt;}
.y3f{bottom:128.680000pt;}
.yb0{bottom:130.880000pt;}
.y13d{bottom:131.520000pt;}
.y24{bottom:133.320000pt;}
.yde{bottom:133.440000pt;}
.y80{bottom:133.760000pt;}
.y51{bottom:135.706667pt;}
.y18e{bottom:137.946667pt;}
.y169{bottom:142.426667pt;}
.y115{bottom:146.266667pt;}
.y3e{bottom:146.280000pt;}
.yaf{bottom:148.506667pt;}
.y13c{bottom:149.146667pt;}
.y23{bottom:150.920000pt;}
.ydd{bottom:152.026667pt;}
.y7f{bottom:152.346667pt;}
.y50{bottom:153.306667pt;}
.y14d{bottom:154.266667pt;}
.y18d{bottom:155.546667pt;}
.y168{bottom:160.026667pt;}
.y114{bottom:163.866667pt;}
.y3d{bottom:163.880000pt;}
.yae{bottom:166.106667pt;}
.y13b{bottom:166.746667pt;}
.y22{bottom:168.520000pt;}
.ydc{bottom:169.786667pt;}
.y4f{bottom:170.906667pt;}
.y14c{bottom:171.866667pt;}
.y18c{bottom:173.146667pt;}
.y167{bottom:178.746667pt;}
.y3c{bottom:181.480000pt;}
.y113{bottom:181.626667pt;}
.yad{bottom:183.866667pt;}
.y13a{bottom:184.346667pt;}
.y21{bottom:186.120000pt;}
.ydb{bottom:188.346667pt;}
.y4e{bottom:188.506667pt;}
.y7e{bottom:188.666667pt;}
.y14b{bottom:189.626667pt;}
.y18b{bottom:190.746667pt;}
.y166{bottom:196.346667pt;}
.y112{bottom:199.226667pt;}
.y3b{bottom:199.240000pt;}
.yac{bottom:201.466667pt;}
.y139{bottom:202.106667pt;}
.y20{bottom:203.880000pt;}
.yda{bottom:205.946667pt;}
.y4d{bottom:206.266667pt;}
.y14a{bottom:207.226667pt;}
.y18a{bottom:208.346667pt;}
.y165{bottom:213.946667pt;}
.y111{bottom:216.826667pt;}
.y3a{bottom:216.840000pt;}
.yab{bottom:219.066667pt;}
.y138{bottom:219.706667pt;}
.y1f{bottom:221.480000pt;}
.yd9{bottom:223.546667pt;}
.y4c{bottom:223.866667pt;}
.y149{bottom:224.826667pt;}
.y189{bottom:226.106667pt;}
.y164{bottom:232.506667pt;}
.y110{bottom:234.426667pt;}
.y39{bottom:234.466667pt;}
.yaa{bottom:236.666667pt;}
.y137{bottom:237.306667pt;}
.y1e{bottom:239.106667pt;}
.yd8{bottom:241.146667pt;}
.y4b{bottom:241.466667pt;}
.y148{bottom:242.426667pt;}
.y188{bottom:243.706667pt;}
.y163{bottom:250.106667pt;}
.y38{bottom:252.066667pt;}
.y136{bottom:254.906667pt;}
.ya9{bottom:255.226667pt;}
.y1d{bottom:256.706667pt;}
.yd7{bottom:258.906667pt;}
.y4a{bottom:259.066667pt;}
.y10f{bottom:260.026667pt;}
.y187{bottom:261.306667pt;}
.y162{bottom:268.826667pt;}
.y37{bottom:269.666667pt;}
.y135{bottom:272.506667pt;}
.ya8{bottom:272.986667pt;}
.y1c{bottom:274.306667pt;}
.yd6{bottom:276.506667pt;}
.y49{bottom:276.666667pt;}
.y7d{bottom:276.826667pt;}
.y10e{bottom:277.786667pt;}
.y186{bottom:278.906667pt;}
.y161{bottom:286.426667pt;}
.y36{bottom:287.426667pt;}
.y134{bottom:290.266667pt;}
.ya7{bottom:291.546667pt;}
.y1b{bottom:292.066667pt;}
.yd5{bottom:294.106667pt;}
.y48{bottom:294.426667pt;}
.y10d{bottom:295.386667pt;}
.y185{bottom:296.506667pt;}
.y160{bottom:304.986667pt;}
.y35{bottom:305.026667pt;}
.y133{bottom:307.866667pt;}
.ya6{bottom:309.146667pt;}
.y1a{bottom:309.666667pt;}
.yd4{bottom:311.706667pt;}
.y47{bottom:312.026667pt;}
.y10c{bottom:312.986667pt;}
.y184{bottom:314.266667pt;}
.y15f{bottom:322.586667pt;}
.y34{bottom:322.626667pt;}
.y132{bottom:325.466667pt;}
.y19{bottom:327.266667pt;}
.ya5{bottom:327.706667pt;}
.yd3{bottom:329.306667pt;}
.y46{bottom:329.626667pt;}
.y10b{bottom:330.586667pt;}
.y183{bottom:331.866667pt;}
.y15e{bottom:340.186667pt;}
.y33{bottom:340.226667pt;}
.y131{bottom:343.066667pt;}
.y18{bottom:344.866667pt;}
.ya4{bottom:345.306667pt;}
.y11{bottom:346.746667pt;}
.yd2{bottom:347.066667pt;}
.y7c{bottom:347.226667pt;}
.y10a{bottom:348.186667pt;}
.y182{bottom:349.466667pt;}
.y32{bottom:357.826667pt;}
.y130{bottom:360.706667pt;}
.y17{bottom:362.466667pt;}
.ya3{bottom:363.106667pt;}
.yd1{bottom:364.706667pt;}
.y7b{bottom:365.026667pt;}
.y109{bottom:365.826667pt;}
.y181{bottom:367.106667pt;}
.y31{bottom:375.426667pt;}
.y12f{bottom:378.466667pt;}
.y16{bottom:380.226667pt;}
.ya2{bottom:380.706667pt;}
.y7a{bottom:382.626667pt;}
.y108{bottom:383.586667pt;}
.y180{bottom:384.706667pt;}
.yd0{bottom:390.306667pt;}
.y30{bottom:393.186667pt;}
.y15{bottom:397.826667pt;}
.ya1{bottom:398.306667pt;}
.y79{bottom:400.226667pt;}
.y107{bottom:401.186667pt;}
.y17f{bottom:402.466667pt;}
.y12e{bottom:404.066667pt;}
.ycf{bottom:407.906667pt;}
.y2f{bottom:410.786667pt;}
.y14{bottom:415.426667pt;}
.ya0{bottom:415.906667pt;}
.y78{bottom:417.826667pt;}
.yfa{bottom:418.786667pt;}
.y17e{bottom:420.066667pt;}
.y12d{bottom:421.666667pt;}
.yce{bottom:425.506667pt;}
.y106{bottom:426.786667pt;}
.y2e{bottom:428.386667pt;}
.y13{bottom:433.026667pt;}
.y9f{bottom:433.506667pt;}
.y77{bottom:435.426667pt;}
.yf9{bottom:436.386667pt;}
.y17d{bottom:437.666667pt;}
.y12c{bottom:439.266667pt;}
.ycd{bottom:443.266667pt;}
.y105{bottom:444.386667pt;}
.y12{bottom:450.626667pt;}
.y9e{bottom:451.266667pt;}
.y76{bottom:453.186667pt;}
.y147{bottom:453.986667pt;}
.yf8{bottom:454.946667pt;}
.y17c{bottom:455.266667pt;}
.y12b{bottom:456.866667pt;}
.ycc{bottom:460.866667pt;}
.y104{bottom:462.946667pt;}
.y75{bottom:470.786667pt;}
.y146{bottom:471.746667pt;}
.yf7{bottom:472.706667pt;}
.y17b{bottom:472.866667pt;}
.y12a{bottom:474.626667pt;}
.y9d{bottom:476.866667pt;}
.ycb{bottom:478.466667pt;}
.y103{bottom:480.706667pt;}
.y74{bottom:488.386667pt;}
.y15d{bottom:489.346667pt;}
.y17a{bottom:490.626667pt;}
.yf6{bottom:491.266667pt;}
.y129{bottom:492.226667pt;}
.y9c{bottom:494.466667pt;}
.yca{bottom:496.066667pt;}
.y145{bottom:497.346667pt;}
.y102{bottom:499.266667pt;}
.y73{bottom:505.986667pt;}
.y15c{bottom:506.946667pt;}
.y179{bottom:508.226667pt;}
.yf5{bottom:508.866667pt;}
.y128{bottom:509.826667pt;}
.y9b{bottom:513.026667pt;}
.yc9{bottom:513.666667pt;}
.y144{bottom:514.946667pt;}
.y101{bottom:516.866667pt;}
.y72{bottom:523.586667pt;}
.y15b{bottom:524.546667pt;}
.y178{bottom:525.826667pt;}
.yf4{bottom:526.466667pt;}
.y127{bottom:527.426667pt;}
.y9a{bottom:530.626667pt;}
.y143{bottom:533.506667pt;}
.y100{bottom:535.426667pt;}
.yc8{bottom:539.426667pt;}
.y71{bottom:541.346667pt;}
.y15a{bottom:542.146667pt;}
.y177{bottom:543.426667pt;}
.yf3{bottom:545.026667pt;}
.y99{bottom:549.346667pt;}
.y142{bottom:551.106667pt;}
.yff{bottom:553.026667pt;}
.yc7{bottom:557.026667pt;}
.y70{bottom:558.946667pt;}
.y159{bottom:559.906667pt;}
.y176{bottom:561.026667pt;}
.yf2{bottom:562.786667pt;}
.y98{bottom:566.946667pt;}
.y141{bottom:569.826667pt;}
.yfe{bottom:570.786667pt;}
.yc6{bottom:575.586667pt;}
.y6f{bottom:576.546667pt;}
.y158{bottom:577.533333pt;}
.y175{bottom:578.813333pt;}
.y126{bottom:580.413333pt;}
.y97{bottom:585.533333pt;}
.yf1{bottom:588.413333pt;}
.yc5{bottom:593.213333pt;}
.y6e{bottom:594.173333pt;}
.y157{bottom:595.133333pt;}
.y174{bottom:596.413333pt;}
.y125{bottom:598.013333pt;}
.y96{bottom:603.133333pt;}
.yf0{bottom:606.013333pt;}
.y6d{bottom:611.773333pt;}
.y156{bottom:612.733333pt;}
.y173{bottom:614.013333pt;}
.y95{bottom:620.733333pt;}
.yef{bottom:623.613333pt;}
.y6c{bottom:629.373333pt;}
.y155{bottom:630.333333pt;}
.y172{bottom:631.613333pt;}
.y94{bottom:638.333333pt;}
.yee{bottom:641.213333pt;}
.yc4{bottom:648.093333pt;}
.y171{bottom:649.213333pt;}
.y6b{bottom:655.133333pt;}
.y93{bottom:656.093333pt;}
.yed{bottom:658.973333pt;}
.yc3{bottom:665.693333pt;}
.y170{bottom:666.973333pt;}
.y6a{bottom:672.733333pt;}
.y92{bottom:673.693333pt;}
.yec{bottom:676.573333pt;}
.yc2{bottom:683.293333pt;}
.y16f{bottom:684.573333pt;}
.y69{bottom:690.333333pt;}
.y91{bottom:691.293333pt;}
.yeb{bottom:694.173333pt;}
.yc1{bottom:700.893333pt;}
.y16e{bottom:702.173333pt;}
.y68{bottom:707.933333pt;}
.y90{bottom:708.893333pt;}
.y124{bottom:711.773333pt;}
.yc0{bottom:718.493333pt;}
.yea{bottom:719.773333pt;}
.y67{bottom:725.533333pt;}
.y8f{bottom:726.493333pt;}
.y123{bottom:729.373333pt;}
.ybf{bottom:736.253333pt;}
.ye9{bottom:737.373333pt;}
.y66{bottom:743.293333pt;}
.y8e{bottom:744.253333pt;}
.y122{bottom:747.133333pt;}
.ybe{bottom:753.853333pt;}
.ye8{bottom:755.133333pt;}
.y65{bottom:760.893333pt;}
.y154{bottom:761.853333pt;}
.y121{bottom:764.733333pt;}
.y8d{bottom:769.853333pt;}
.ye7{bottom:772.733333pt;}
.y64{bottom:778.493333pt;}
.ybd{bottom:779.453333pt;}
.y120{bottom:782.333333pt;}
.y8c{bottom:787.453333pt;}
.ye6{bottom:790.333333pt;}
.y2c{bottom:792.253333pt;}
.y63{bottom:796.093333pt;}
.ybc{bottom:797.053333pt;}
.y11f{bottom:799.973333pt;}
.y8b{bottom:806.053333pt;}
.ye5{bottom:807.973333pt;}
.y62{bottom:813.733333pt;}
.ybb{bottom:814.693333pt;}
.y11e{bottom:817.573333pt;}
.y10{bottom:819.813333pt;}
.y8a{bottom:823.653333pt;}
.ye4{bottom:825.573333pt;}
.y153{bottom:832.453333pt;}
.yba{bottom:833.413333pt;}
.y11d{bottom:835.333333pt;}
.yf{bottom:837.413333pt;}
.y61{bottom:839.493333pt;}
.y89{bottom:842.373333pt;}
.ye3{bottom:843.333333pt;}
.yb9{bottom:851.013333pt;}
.y11c{bottom:852.933333pt;}
.ye{bottom:855.493333pt;}
.y60{bottom:857.093333pt;}
.y152{bottom:858.053333pt;}
.y88{bottom:859.973333pt;}
.ye2{bottom:860.933333pt;}
.yb8{bottom:869.573333pt;}
.y11b{bottom:870.533333pt;}
.yd{bottom:874.373333pt;}
.y5f{bottom:875.653333pt;}
.y87{bottom:877.573333pt;}
.ye1{bottom:878.533333pt;}
.yb7{bottom:887.173333pt;}
.y11a{bottom:888.133333pt;}
.y5e{bottom:894.213333pt;}
.yc{bottom:895.333333pt;}
.y86{bottom:896.133333pt;}
.yb6{bottom:905.733333pt;}
.y5d{bottom:911.813333pt;}
.y85{bottom:913.733333pt;}
.ya{bottom:919.653333pt;}
.yb5{bottom:923.493333pt;}
.y151{bottom:929.573333pt;}
.y5c{bottom:930.533333pt;}
.y84{bottom:931.493333pt;}
.y1{bottom:935.333333pt;}
.yb4{bottom:941.093333pt;}
.y150{bottom:948.133333pt;}
.y5b{bottom:949.093333pt;}
.yb3{bottom:958.693333pt;}
.y14f{bottom:965.733333pt;}
.y5a{bottom:966.693333pt;}
.y14e{bottom:983.333333pt;}
.y59{bottom:984.293333pt;}
.y58{bottom:1001.893333pt;}
.y57{bottom:1019.680000pt;}
.y56{bottom:1037.280000pt;}
.y55{bottom:1062.880000pt;}
.hc{height:17.632000pt;}
.ha{height:37.090625pt;}
.h8{height:37.479688pt;}
.hf{height:38.672812pt;}
.h6{height:41.112500pt;}
.h9{height:41.543750pt;}
.h10{height:43.782500pt;}
.h5{height:54.093750pt;}
.he{height:58.563750pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.hd{height:440.866667pt;}
.hb{height:463.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.w6{width:270.946667pt;}
.w7{width:420.733333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:49.760000pt;}
.xd{left:71.999988pt;}
.x11{left:78.271988pt;}
.x7{left:90.920000pt;}
.xe{left:96.031988pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.xf{left:120.031988pt;}
.x10{left:144.026655pt;}
.x3{left:161.466667pt;}
.xc{left:188.826655pt;}
.xb{left:323.426667pt;}
.x9{left:605.733333pt;}
}




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