
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b24bbd6701302971f80b8e41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_98f7041d627eb653f7d58661.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1897475672b76425bcb45457.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_e359463161fc3a43ff4e96f5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_ff23b5357d261b510de931e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_62ad5c1c933d0e1cd9d5e2fc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_f102076a4026399096b2842d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_77d10c1bbc13ec092f0da6de.woff')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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_8640d5d6ba5d96bb6fcc3b1c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_de40d9d1197a758b3b7f5b8b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.520000px;}
.v8{vertical-align:13.320000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:21.960000px;}
.v7{vertical-align:40.320000px;}
.v6{vertical-align:45.360000px;}
.v9{vertical-align:76.680000px;}
.ls12{letter-spacing:-0.768000px;}
.lsd{letter-spacing:-0.186600px;}
.ls29{letter-spacing:-0.169800px;}
.lsb{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls31{letter-spacing:-0.101400px;}
.lsa{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls2f{letter-spacing:-0.083400px;}
.ls20{letter-spacing:-0.064800px;}
.ls1d{letter-spacing:-0.063600px;}
.ls2c{letter-spacing:-0.018360px;}
.ls30{letter-spacing:-0.015480px;}
.ls34{letter-spacing:-0.009000px;}
.ls8{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048240px;}
.ls11{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.074160px;}
.ls21{letter-spacing:0.074400px;}
.ls3{letter-spacing:0.088800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.097560px;}
.ls2e{letter-spacing:0.098400px;}
.ls2d{letter-spacing:0.111000px;}
.ls28{letter-spacing:0.112200px;}
.ls9{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.157200px;}
.ls2b{letter-spacing:0.161400px;}
.ls33{letter-spacing:0.170400px;}
.lse{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.173520px;}
.ls7{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.181200px;}
.ls1e{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.652320px;}
.ls18{letter-spacing:2.511720px;}
.ls25{letter-spacing:2.532240px;}
.ls15{letter-spacing:7.476120px;}
.ls27{letter-spacing:15.471720px;}
.ls26{letter-spacing:15.831720px;}
.ls1b{letter-spacing:15.852240px;}
.ls1c{letter-spacing:16.078800px;}
.ls23{letter-spacing:16.650360px;}
.ls24{letter-spacing:16.770360px;}
.ls22{letter-spacing:18.838800px;}
.ls17{letter-spacing:19.071720px;}
.ls1a{letter-spacing:19.198800px;}
.ls13{letter-spacing:28.890360px;}
.ls36{letter-spacing:47.726640px;}
.ls32{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.424400px;}
.ws5{word-spacing:-13.399800px;}
.ws22{word-spacing:-13.396800px;}
.ws1b{word-spacing:-13.387800px;}
.ws1a{word-spacing:-13.383600px;}
.ws18{word-spacing:-13.338600px;}
.ws1d{word-spacing:-13.337400px;}
.ws1f{word-spacing:-13.324800px;}
.ws23{word-spacing:-13.300800px;}
.wsb{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.274640px;}
.ws6{word-spacing:-13.226400px;}
.ws1c{word-spacing:-13.208040px;}
.wsc{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.161600px;}
.ws21{word-spacing:-13.125000px;}
.ws19{word-spacing:-13.056600px;}
.ws4{word-spacing:-13.039800px;}
.ws20{word-spacing:-10.518120px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws1e{word-spacing:-8.470200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
.wse{word-spacing:5.357160px;}
.ws17{word-spacing:6.225840px;}
.ws14{word-spacing:6.332400px;}
.ws13{word-spacing:9.432000px;}
.ws16{word-spacing:9.825840px;}
.ws10{word-spacing:9.891720px;}
.wsf{word-spacing:10.166760px;}
.ws15{word-spacing:230.985840px;}
._9{margin-left:-3.907800px;}
._4{margin-left:-2.209682px;}
._3{margin-left:-1.177440px;}
._0{width:1.174236px;}
._1{width:2.772000px;}
._2{width:3.904764px;}
._8{width:5.113236px;}
._7{width:6.135036px;}
._5{width:7.635000px;}
._a{width:8.687969px;}
._b{width:10.160400px;}
._6{width:11.182200px;}
._f{width:12.300840px;}
._e{width:13.410360px;}
._d{width:14.904960px;}
._c{width:16.290360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:1.440000px;}
.y82{bottom:7.830000px;}
.yb1{bottom:7.860000px;}
.y84{bottom:7.920000px;}
.yc5{bottom:7.950000px;}
.ybb{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y48{bottom:112.530000px;}
.yf3{bottom:113.430000px;}
.y95{bottom:117.030000px;}
.y6d{bottom:123.060000px;}
.y2a{bottom:126.750000px;}
.y47{bottom:130.080000px;}
.yf2{bottom:131.070000px;}
.y29{bottom:144.300000px;}
.y94{bottom:144.390000px;}
.y46{bottom:147.630000px;}
.yf1{bottom:148.620000px;}
.yd3{bottom:151.590000px;}
.y6c{bottom:155.370000px;}
.y28{bottom:161.850000px;}
.y45{bottom:165.270000px;}
.yd2{bottom:169.230000px;}
.y93{bottom:171.660000px;}
.y6a{bottom:174.540000px;}
.yf0{bottom:175.260000px;}
.yac{bottom:178.500000px;}
.y27{bottom:179.490000px;}
.y44{bottom:182.820000px;}
.yd1{bottom:186.780000px;}
.yab{bottom:196.140000px;}
.y6b{bottom:196.950000px;}
.y26{bottom:197.040000px;}
.y92{bottom:199.020000px;}
.yef{bottom:202.170000px;}
.y11a{bottom:203.610000px;}
.yd0{bottom:204.330000px;}
.y43{bottom:209.460000px;}
.yaa{bottom:213.690000px;}
.y25{bottom:214.590000px;}
.y119{bottom:221.250000px;}
.ycf{bottom:221.970000px;}
.y69{bottom:225.570000px;}
.y91{bottom:226.380000px;}
.ya9{bottom:231.240000px;}
.y24{bottom:232.230000px;}
.yce{bottom:239.520000px;}
.y68{bottom:243.210000px;}
.y42{bottom:245.370000px;}
.y118{bottom:247.800000px;}
.y23{bottom:249.780000px;}
.yee{bottom:250.410000px;}
.y90{bottom:253.740000px;}
.ycd{bottom:257.160000px;}
.ya8{bottom:257.880000px;}
.y22{bottom:267.420000px;}
.y117{bottom:274.440000px;}
.yed{bottom:277.320000px;}
.y67{bottom:278.760000px;}
.y8f{bottom:281.010000px;}
.ycc{bottom:283.710000px;}
.y21{bottom:284.970000px;}
.y116{bottom:291.990000px;}
.ya7{bottom:293.430000px;}
.y41{bottom:293.610000px;}
.y66{bottom:296.310000px;}
.y20{bottom:302.520000px;}
.y8e{bottom:308.370000px;}
.yec{bottom:314.310000px;}
.ycb{bottom:318.540000px;}
.y1f{bottom:320.160000px;}
.ya6{bottom:325.650000px;}
.y40{bottom:325.830000px;}
.yca{bottom:330.780000px;}
.y65{bottom:331.950000px;}
.y8d{bottom:335.730000px;}
.y1e{bottom:337.710000px;}
.y115{bottom:345.180000px;}
.y1d{bottom:355.350000px;}
.yc9{bottom:358.050000px;}
.yeb{bottom:358.860000px;}
.y114{bottom:362.730000px;}
.y8c{bottom:363.090000px;}
.y64{bottom:367.500000px;}
.y1c{bottom:372.900000px;}
.yc8{bottom:385.410000px;}
.y113{bottom:389.370000px;}
.y8b{bottom:390.360000px;}
.y1b{bottom:390.450000px;}
.yea{bottom:396.210000px;}
.y63{bottom:403.500000px;}
.y112{bottom:406.920000px;}
.y1a{bottom:408.090000px;}
.yc7{bottom:412.770000px;}
.y8a{bottom:417.720000px;}
.y62{bottom:421.140000px;}
.y111{bottom:433.470000px;}
.y19{bottom:435.000000px;}
.yc6{bottom:440.130000px;}
.ye9{bottom:444.450000px;}
.y89{bottom:445.080000px;}
.y110{bottom:451.110000px;}
.y61{bottom:456.690000px;}
.ye8{bottom:462.000000px;}
.yc4{bottom:467.400000px;}
.y88{bottom:472.380000px;}
.y60{bottom:474.360000px;}
.y10f{bottom:477.690000px;}
.ye7{bottom:479.670000px;}
.y18{bottom:483.630000px;}
.y5f{bottom:491.910000px;}
.y10e{bottom:495.330000px;}
.ye6{bottom:497.220000px;}
.y87{bottom:499.740000px;}
.y5e{bottom:509.460000px;}
.ye5{bottom:514.770000px;}
.yc3{bottom:516.120000px;}
.y17{bottom:520.620000px;}
.y10d{bottom:521.880000px;}
.y5d{bottom:527.100000px;}
.ye4{bottom:532.410000px;}
.y16{bottom:538.170000px;}
.y10c{bottom:539.430000px;}
.ye3{bottom:549.960000px;}
.yc2{bottom:551.760000px;}
.y5c{bottom:553.650000px;}
.y86{bottom:554.460000px;}
.y15{bottom:555.810000px;}
.y10b{bottom:566.070000px;}
.ye2{bottom:567.600000px;}
.yc1{bottom:569.310000px;}
.y14{bottom:573.360000px;}
.y85{bottom:581.730000px;}
.ye1{bottom:585.150000px;}
.y5b{bottom:589.290000px;}
.y13{bottom:591.000000px;}
.y10a{bottom:592.620000px;}
.yc0{bottom:602.340000px;}
.ye0{bottom:602.700000px;}
.y12{bottom:608.550000px;}
.y83{bottom:609.090000px;}
.y109{bottom:610.260000px;}
.ydf{bottom:620.340000px;}
.y11{bottom:626.100000px;}
.y5a{bottom:626.730000px;}
.ybf{bottom:629.610000px;}
.y81{bottom:636.450000px;}
.y108{bottom:636.810000px;}
.y10{bottom:643.740000px;}
.yde{bottom:647.250000px;}
.y107{bottom:654.360000px;}
.ybe{bottom:656.970000px;}
.yf{bottom:661.290000px;}
.y59{bottom:662.460000px;}
.ye{bottom:678.930000px;}
.y106{bottom:681.000000px;}
.ybd{bottom:684.330000px;}
.y80{bottom:685.140000px;}
.y58{bottom:689.010000px;}
.ydd{bottom:692.880000px;}
.y105{bottom:698.550000px;}
.yd{bottom:705.840000px;}
.ybc{bottom:711.600000px;}
.ydc{bottom:720.240000px;}
.y7f{bottom:720.690000px;}
.y57{bottom:724.650000px;}
.y104{bottom:725.190000px;}
.ya5{bottom:736.350000px;}
.y7e{bottom:738.330000px;}
.yba{bottom:738.960000px;}
.y103{bottom:742.740000px;}
.ydb{bottom:747.600000px;}
.ya4{bottom:753.900000px;}
.yc{bottom:754.080000px;}
.y7d{bottom:755.880000px;}
.y56{bottom:759.930000px;}
.y102{bottom:769.290000px;}
.y55{bottom:770.010000px;}
.ya3{bottom:771.450000px;}
.y7c{bottom:773.520000px;}
.yda{bottom:774.870000px;}
.y3f{bottom:783.690000px;}
.y101{bottom:786.930000px;}
.ya2{bottom:789.090000px;}
.yb{bottom:789.900000px;}
.y7b{bottom:791.070000px;}
.y3e{bottom:801.330000px;}
.yd9{bottom:802.230000px;}
.ya1{bottom:806.640000px;}
.y7a{bottom:808.620000px;}
.yb9{bottom:809.790000px;}
.y100{bottom:813.480000px;}
.y54{bottom:814.920000px;}
.y3d{bottom:818.880000px;}
.ya0{bottom:824.280000px;}
.ya{bottom:825.900000px;}
.y79{bottom:826.260000px;}
.yd8{bottom:829.590000px;}
.y53{bottom:832.470000px;}
.y3c{bottom:836.520000px;}
.yff{bottom:840.030000px;}
.y9f{bottom:841.830000px;}
.yb8{bottom:845.340000px;}
.y78{bottom:853.170000px;}
.y3b{bottom:854.070000px;}
.yfe{bottom:857.670000px;}
.y52{bottom:859.110000px;}
.y9e{bottom:859.380000px;}
.yb7{bottom:862.890000px;}
.y9{bottom:865.680000px;}
.yd7{bottom:878.280000px;}
.y8{bottom:879.900000px;}
.yb6{bottom:880.530000px;}
.y3a{bottom:880.980000px;}
.yfd{bottom:884.220000px;}
.y51{bottom:894.660000px;}
.y9d{bottom:895.020000px;}
.y77{bottom:901.410000px;}
.y7{bottom:901.680000px;}
.yfc{bottom:901.860000px;}
.y9c{bottom:912.570000px;}
.yd6{bottom:913.110000px;}
.yb5{bottom:915.360000px;}
.y76{bottom:918.960000px;}
.yd4{bottom:925.350000px;}
.yb4{bottom:927.600000px;}
.yfb{bottom:928.410000px;}
.y39{bottom:929.220000px;}
.y50{bottom:930.210000px;}
.y6{bottom:933.810000px;}
.y75{bottom:936.600000px;}
.yfa{bottom:945.960000px;}
.y38{bottom:946.860000px;}
.y5{bottom:952.260000px;}
.yb3{bottom:954.870000px;}
.y74{bottom:963.150000px;}
.yf9{bottom:963.600000px;}
.y37{bottom:964.410000px;}
.y4f{bottom:966.210000px;}
.y36{bottom:981.960000px;}
.yb2{bottom:982.230000px;}
.y4e{bottom:983.760000px;}
.y4{bottom:989.880000px;}
.yf8{bottom:990.150000px;}
.y9b{bottom:990.510000px;}
.y73{bottom:998.790000px;}
.y35{bottom:999.600000px;}
.yb0{bottom:1009.590000px;}
.y4d{bottom:1010.340000px;}
.y3{bottom:1014.570000px;}
.yf7{bottom:1016.820000px;}
.y34{bottom:1017.180000px;}
.y9a{bottom:1017.810000px;}
.y72{bottom:1034.370000px;}
.y33{bottom:1034.820000px;}
.yaf{bottom:1036.890000px;}
.y99{bottom:1045.170000px;}
.y4c{bottom:1045.980000px;}
.y71{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.yf6{bottom:1060.920000px;}
.y4b{bottom:1063.530000px;}
.yae{bottom:1064.250000px;}
.y70{bottom:1069.560000px;}
.y31{bottom:1069.920000px;}
.y98{bottom:1072.530000px;}
.yf5{bottom:1078.560000px;}
.y4a{bottom:1081.170000px;}
.y6f{bottom:1087.110000px;}
.y30{bottom:1087.560000px;}
.yad{bottom:1091.610000px;}
.yf4{bottom:1096.110000px;}
.y97{bottom:1099.890000px;}
.y6e{bottom:1104.750000px;}
.y2f{bottom:1105.110000px;}
.y49{bottom:1107.720000px;}
.y2e{bottom:1122.750000px;}
.y96{bottom:1127.160000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h1a{height:1.440015px;}
.h14{height:26.550000px;}
.h16{height:26.580000px;}
.h15{height:26.640000px;}
.h19{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h18{height:48.690000px;}
.h11{height:52.238672px;}
.h7{height:52.311445px;}
.hb{height:52.781133px;}
.h5{height:54.817383px;}
.h1b{height:57.323320px;}
.h8{height:57.838008px;}
.hd{height:59.973223px;}
.h1c{height:61.793886px;}
.hc{height:62.585859px;}
.h9{height:63.210938px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:74.562891px;}
.h13{height:77.082891px;}
.h10{height:114.882891px;}
.hf{height:119.922891px;}
.h12{height:151.242891px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1f{width:51.750000px;}
.w1e{width:56.790000px;}
.w1d{width:56.970000px;}
.w14{width:62.640000px;}
.w9{width:68.400000px;}
.wa{width:68.760000px;}
.w3{width:70.050000px;}
.w7{width:72.390000px;}
.w6{width:74.610000px;}
.w1c{width:80.100000px;}
.wc{width:81.630000px;}
.w4{width:82.530000px;}
.w5{width:83.160000px;}
.w12{width:87.420000px;}
.w18{width:88.470000px;}
.w16{width:89.370000px;}
.w8{width:91.440000px;}
.w19{width:93.420000px;}
.w11{width:96.120000px;}
.w13{width:99.000000px;}
.w1b{width:100.800000px;}
.we{width:111.420000px;}
.wd{width:111.960000px;}
.wf{width:113.580000px;}
.w17{width:123.420000px;}
.w1a{width:131.340000px;}
.w15{width:140.310000px;}
.w20{width:140.400000px;}
.wb{width:152.130000px;}
.w24{width:157.680000px;}
.w21{width:182.100000px;}
.w10{width:194.850000px;}
.w23{width:228.180000px;}
.w22{width:248.070000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x1{left:68.040000px;}
.x32{left:111.239987px;}
.x2f{left:128.880000px;}
.x29{left:135.270000px;}
.xf{left:138.330000px;}
.x19{left:159.750000px;}
.x1f{left:175.170000px;}
.x23{left:177.690000px;}
.x18{left:201.539987px;}
.x11{left:209.100000px;}
.xe{left:244.109987px;}
.x2{left:250.499987px;}
.x28{left:255.089987px;}
.x2a{left:267.330000px;}
.xd{left:269.039987px;}
.x2e{left:277.589987px;}
.xa{left:290.729987px;}
.x12{left:292.350000px;}
.x1a{left:312.600000px;}
.x24{left:318.720000px;}
.x5{left:326.369987px;}
.x9{left:331.589987px;}
.x6{left:358.499987px;}
.x7{left:361.649987px;}
.x2b{left:368.940000px;}
.x20{left:370.740000px;}
.x1e{left:372.449987px;}
.x13{left:376.230000px;}
.x30{left:377.670000px;}
.x1b{left:395.040000px;}
.x25{left:408.810000px;}
.x2c{left:449.760000px;}
.x8{left:451.289987px;}
.xc{left:460.829987px;}
.xb{left:467.129987px;}
.x1c{left:507.750000px;}
.x14{left:524.760000px;}
.x26{left:532.950000px;}
.x21{left:555.720000px;}
.x2d{left:565.080000px;}
.x31{left:606.660000px;}
.x15{left:617.010000px;}
.x1d{left:619.890000px;}
.x27{left:622.140000px;}
.x22{left:655.440000px;}
.x16{left:686.130000px;}
.x17{left:775.139987px;}
.x3{left:800.339987px;}
.x4{left:805.559987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.240000pt;}
.v8{vertical-align:11.840000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:19.520000pt;}
.v7{vertical-align:35.840000pt;}
.v6{vertical-align:40.320000pt;}
.v9{vertical-align:68.160000pt;}
.ls12{letter-spacing:-0.682667pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls29{letter-spacing:-0.150933pt;}
.lsb{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls31{letter-spacing:-0.090133pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls2f{letter-spacing:-0.074133pt;}
.ls20{letter-spacing:-0.057600pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls2c{letter-spacing:-0.016320pt;}
.ls30{letter-spacing:-0.013760pt;}
.ls34{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.042880pt;}
.ls11{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.065920pt;}
.ls21{letter-spacing:0.066133pt;}
.ls3{letter-spacing:0.078933pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.086720pt;}
.ls2e{letter-spacing:0.087467pt;}
.ls2d{letter-spacing:0.098667pt;}
.ls28{letter-spacing:0.099733pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.139733pt;}
.ls2b{letter-spacing:0.143467pt;}
.ls33{letter-spacing:0.151467pt;}
.lse{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.154240pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.161067pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.579840pt;}
.ls18{letter-spacing:2.232640pt;}
.ls25{letter-spacing:2.250880pt;}
.ls15{letter-spacing:6.645440pt;}
.ls27{letter-spacing:13.752640pt;}
.ls26{letter-spacing:14.072640pt;}
.ls1b{letter-spacing:14.090880pt;}
.ls1c{letter-spacing:14.292267pt;}
.ls23{letter-spacing:14.800320pt;}
.ls24{letter-spacing:14.906987pt;}
.ls22{letter-spacing:16.745600pt;}
.ls17{letter-spacing:16.952640pt;}
.ls1a{letter-spacing:17.065600pt;}
.ls13{letter-spacing:25.680320pt;}
.ls36{letter-spacing:42.423680pt;}
.ls32{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.932800pt;}
.ws5{word-spacing:-11.910933pt;}
.ws22{word-spacing:-11.908267pt;}
.ws1b{word-spacing:-11.900267pt;}
.ws1a{word-spacing:-11.896533pt;}
.ws18{word-spacing:-11.856533pt;}
.ws1d{word-spacing:-11.855467pt;}
.ws1f{word-spacing:-11.844267pt;}
.ws23{word-spacing:-11.822933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.799680pt;}
.ws6{word-spacing:-11.756800pt;}
.ws1c{word-spacing:-11.740480pt;}
.wsc{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.699200pt;}
.ws21{word-spacing:-11.666667pt;}
.ws19{word-spacing:-11.605867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws20{word-spacing:-9.349440pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws1e{word-spacing:-7.529067pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
.wse{word-spacing:4.761920pt;}
.ws17{word-spacing:5.534080pt;}
.ws14{word-spacing:5.628800pt;}
.ws13{word-spacing:8.384000pt;}
.ws16{word-spacing:8.734080pt;}
.ws10{word-spacing:8.792640pt;}
.wsf{word-spacing:9.037120pt;}
.ws15{word-spacing:205.320747pt;}
._9{margin-left:-3.473600pt;}
._4{margin-left:-1.964161pt;}
._3{margin-left:-1.046613pt;}
._0{width:1.043765pt;}
._1{width:2.464000pt;}
._2{width:3.470901pt;}
._8{width:4.545099pt;}
._7{width:5.453365pt;}
._5{width:6.786666pt;}
._a{width:7.722639pt;}
._b{width:9.031467pt;}
._6{width:9.939733pt;}
._f{width:10.934080pt;}
._e{width:11.920320pt;}
._d{width:13.248853pt;}
._c{width:14.480320pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:1.280000pt;}
.y82{bottom:6.960000pt;}
.yb1{bottom:6.986667pt;}
.y84{bottom:7.040000pt;}
.yc5{bottom:7.066667pt;}
.ybb{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y48{bottom:100.026667pt;}
.yf3{bottom:100.826667pt;}
.y95{bottom:104.026667pt;}
.y6d{bottom:109.386667pt;}
.y2a{bottom:112.666667pt;}
.y47{bottom:115.626667pt;}
.yf2{bottom:116.506667pt;}
.y29{bottom:128.266667pt;}
.y94{bottom:128.346667pt;}
.y46{bottom:131.226667pt;}
.yf1{bottom:132.106667pt;}
.yd3{bottom:134.746667pt;}
.y6c{bottom:138.106667pt;}
.y28{bottom:143.866667pt;}
.y45{bottom:146.906667pt;}
.yd2{bottom:150.426667pt;}
.y93{bottom:152.586667pt;}
.y6a{bottom:155.146667pt;}
.yf0{bottom:155.786667pt;}
.yac{bottom:158.666667pt;}
.y27{bottom:159.546667pt;}
.y44{bottom:162.506667pt;}
.yd1{bottom:166.026667pt;}
.yab{bottom:174.346667pt;}
.y6b{bottom:175.066667pt;}
.y26{bottom:175.146667pt;}
.y92{bottom:176.906667pt;}
.yef{bottom:179.706667pt;}
.y11a{bottom:180.986667pt;}
.yd0{bottom:181.626667pt;}
.y43{bottom:186.186667pt;}
.yaa{bottom:189.946667pt;}
.y25{bottom:190.746667pt;}
.y119{bottom:196.666667pt;}
.ycf{bottom:197.306667pt;}
.y69{bottom:200.506667pt;}
.y91{bottom:201.226667pt;}
.ya9{bottom:205.546667pt;}
.y24{bottom:206.426667pt;}
.yce{bottom:212.906667pt;}
.y68{bottom:216.186667pt;}
.y42{bottom:218.106667pt;}
.y118{bottom:220.266667pt;}
.y23{bottom:222.026667pt;}
.yee{bottom:222.586667pt;}
.y90{bottom:225.546667pt;}
.ycd{bottom:228.586667pt;}
.ya8{bottom:229.226667pt;}
.y22{bottom:237.706667pt;}
.y117{bottom:243.946667pt;}
.yed{bottom:246.506667pt;}
.y67{bottom:247.786667pt;}
.y8f{bottom:249.786667pt;}
.ycc{bottom:252.186667pt;}
.y21{bottom:253.306667pt;}
.y116{bottom:259.546667pt;}
.ya7{bottom:260.826667pt;}
.y41{bottom:260.986667pt;}
.y66{bottom:263.386667pt;}
.y20{bottom:268.906667pt;}
.y8e{bottom:274.106667pt;}
.yec{bottom:279.386667pt;}
.ycb{bottom:283.146667pt;}
.y1f{bottom:284.586667pt;}
.ya6{bottom:289.466667pt;}
.y40{bottom:289.626667pt;}
.yca{bottom:294.026667pt;}
.y65{bottom:295.066667pt;}
.y8d{bottom:298.426667pt;}
.y1e{bottom:300.186667pt;}
.y115{bottom:306.826667pt;}
.y1d{bottom:315.866667pt;}
.yc9{bottom:318.266667pt;}
.yeb{bottom:318.986667pt;}
.y114{bottom:322.426667pt;}
.y8c{bottom:322.746667pt;}
.y64{bottom:326.666667pt;}
.y1c{bottom:331.466667pt;}
.yc8{bottom:342.586667pt;}
.y113{bottom:346.106667pt;}
.y8b{bottom:346.986667pt;}
.y1b{bottom:347.066667pt;}
.yea{bottom:352.186667pt;}
.y63{bottom:358.666667pt;}
.y112{bottom:361.706667pt;}
.y1a{bottom:362.746667pt;}
.yc7{bottom:366.906667pt;}
.y8a{bottom:371.306667pt;}
.y62{bottom:374.346667pt;}
.y111{bottom:385.306667pt;}
.y19{bottom:386.666667pt;}
.yc6{bottom:391.226667pt;}
.ye9{bottom:395.066667pt;}
.y89{bottom:395.626667pt;}
.y110{bottom:400.986667pt;}
.y61{bottom:405.946667pt;}
.ye8{bottom:410.666667pt;}
.yc4{bottom:415.466667pt;}
.y88{bottom:419.893333pt;}
.y60{bottom:421.653333pt;}
.y10f{bottom:424.613333pt;}
.ye7{bottom:426.373333pt;}
.y18{bottom:429.893333pt;}
.y5f{bottom:437.253333pt;}
.y10e{bottom:440.293333pt;}
.ye6{bottom:441.973333pt;}
.y87{bottom:444.213333pt;}
.y5e{bottom:452.853333pt;}
.ye5{bottom:457.573333pt;}
.yc3{bottom:458.773333pt;}
.y17{bottom:462.773333pt;}
.y10d{bottom:463.893333pt;}
.y5d{bottom:468.533333pt;}
.ye4{bottom:473.253333pt;}
.y16{bottom:478.373333pt;}
.y10c{bottom:479.493333pt;}
.ye3{bottom:488.853333pt;}
.yc2{bottom:490.453333pt;}
.y5c{bottom:492.133333pt;}
.y86{bottom:492.853333pt;}
.y15{bottom:494.053333pt;}
.y10b{bottom:503.173333pt;}
.ye2{bottom:504.533333pt;}
.yc1{bottom:506.053333pt;}
.y14{bottom:509.653333pt;}
.y85{bottom:517.093333pt;}
.ye1{bottom:520.133333pt;}
.y5b{bottom:523.813333pt;}
.y13{bottom:525.333333pt;}
.y10a{bottom:526.773333pt;}
.yc0{bottom:535.413333pt;}
.ye0{bottom:535.733333pt;}
.y12{bottom:540.933333pt;}
.y83{bottom:541.413333pt;}
.y109{bottom:542.453333pt;}
.ydf{bottom:551.413333pt;}
.y11{bottom:556.533333pt;}
.y5a{bottom:557.093333pt;}
.ybf{bottom:559.653333pt;}
.y81{bottom:565.733333pt;}
.y108{bottom:566.053333pt;}
.y10{bottom:572.213333pt;}
.yde{bottom:575.333333pt;}
.y107{bottom:581.653333pt;}
.ybe{bottom:583.973333pt;}
.yf{bottom:587.813333pt;}
.y59{bottom:588.853333pt;}
.ye{bottom:603.493333pt;}
.y106{bottom:605.333333pt;}
.ybd{bottom:608.293333pt;}
.y80{bottom:609.013333pt;}
.y58{bottom:612.453333pt;}
.ydd{bottom:615.893333pt;}
.y105{bottom:620.933333pt;}
.yd{bottom:627.413333pt;}
.ybc{bottom:632.533333pt;}
.ydc{bottom:640.213333pt;}
.y7f{bottom:640.613333pt;}
.y57{bottom:644.133333pt;}
.y104{bottom:644.613333pt;}
.ya5{bottom:654.533333pt;}
.y7e{bottom:656.293333pt;}
.yba{bottom:656.853333pt;}
.y103{bottom:660.213333pt;}
.ydb{bottom:664.533333pt;}
.ya4{bottom:670.133333pt;}
.yc{bottom:670.293333pt;}
.y7d{bottom:671.893333pt;}
.y56{bottom:675.493333pt;}
.y102{bottom:683.813333pt;}
.y55{bottom:684.453333pt;}
.ya3{bottom:685.733333pt;}
.y7c{bottom:687.573333pt;}
.yda{bottom:688.773333pt;}
.y3f{bottom:696.613333pt;}
.y101{bottom:699.493333pt;}
.ya2{bottom:701.413333pt;}
.yb{bottom:702.133333pt;}
.y7b{bottom:703.173333pt;}
.y3e{bottom:712.293333pt;}
.yd9{bottom:713.093333pt;}
.ya1{bottom:717.013333pt;}
.y7a{bottom:718.773333pt;}
.yb9{bottom:719.813333pt;}
.y100{bottom:723.093333pt;}
.y54{bottom:724.373333pt;}
.y3d{bottom:727.893333pt;}
.ya0{bottom:732.693333pt;}
.ya{bottom:734.133333pt;}
.y79{bottom:734.453333pt;}
.yd8{bottom:737.413333pt;}
.y53{bottom:739.973333pt;}
.y3c{bottom:743.573333pt;}
.yff{bottom:746.693333pt;}
.y9f{bottom:748.293333pt;}
.yb8{bottom:751.413333pt;}
.y78{bottom:758.373333pt;}
.y3b{bottom:759.173333pt;}
.yfe{bottom:762.373333pt;}
.y52{bottom:763.653333pt;}
.y9e{bottom:763.893333pt;}
.yb7{bottom:767.013333pt;}
.y9{bottom:769.493333pt;}
.yd7{bottom:780.693333pt;}
.y8{bottom:782.133333pt;}
.yb6{bottom:782.693333pt;}
.y3a{bottom:783.093333pt;}
.yfd{bottom:785.973333pt;}
.y51{bottom:795.253333pt;}
.y9d{bottom:795.573333pt;}
.y77{bottom:801.253333pt;}
.y7{bottom:801.493333pt;}
.yfc{bottom:801.653333pt;}
.y9c{bottom:811.173333pt;}
.yd6{bottom:811.653333pt;}
.yb5{bottom:813.653333pt;}
.y76{bottom:816.853333pt;}
.yd4{bottom:822.533333pt;}
.yb4{bottom:824.533333pt;}
.yfb{bottom:825.253333pt;}
.y39{bottom:825.973333pt;}
.y50{bottom:826.853333pt;}
.y6{bottom:830.053333pt;}
.y75{bottom:832.533333pt;}
.yfa{bottom:840.853333pt;}
.y38{bottom:841.653333pt;}
.y5{bottom:846.453333pt;}
.yb3{bottom:848.773333pt;}
.y74{bottom:856.133333pt;}
.yf9{bottom:856.533333pt;}
.y37{bottom:857.253333pt;}
.y4f{bottom:858.853333pt;}
.y36{bottom:872.853333pt;}
.yb2{bottom:873.093333pt;}
.y4e{bottom:874.453333pt;}
.y4{bottom:879.893333pt;}
.yf8{bottom:880.133333pt;}
.y9b{bottom:880.453333pt;}
.y73{bottom:887.813333pt;}
.y35{bottom:888.533333pt;}
.yb0{bottom:897.413333pt;}
.y4d{bottom:898.080000pt;}
.y3{bottom:901.840000pt;}
.yf7{bottom:903.840000pt;}
.y34{bottom:904.160000pt;}
.y9a{bottom:904.720000pt;}
.y72{bottom:919.440000pt;}
.y33{bottom:919.840000pt;}
.yaf{bottom:921.680000pt;}
.y99{bottom:929.040000pt;}
.y4c{bottom:929.760000pt;}
.y71{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.yf6{bottom:943.040000pt;}
.y4b{bottom:945.360000pt;}
.yae{bottom:946.000000pt;}
.y70{bottom:950.720000pt;}
.y31{bottom:951.040000pt;}
.y98{bottom:953.360000pt;}
.yf5{bottom:958.720000pt;}
.y4a{bottom:961.040000pt;}
.y6f{bottom:966.320000pt;}
.y30{bottom:966.720000pt;}
.yad{bottom:970.320000pt;}
.yf4{bottom:974.320000pt;}
.y97{bottom:977.680000pt;}
.y6e{bottom:982.000000pt;}
.y2f{bottom:982.320000pt;}
.y49{bottom:984.640000pt;}
.y2e{bottom:998.000000pt;}
.y96{bottom:1001.920000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h1a{height:1.280013pt;}
.h14{height:23.600000pt;}
.h16{height:23.626667pt;}
.h15{height:23.680000pt;}
.h19{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h18{height:43.280000pt;}
.h11{height:46.434375pt;}
.h7{height:46.499062pt;}
.hb{height:46.916562pt;}
.h5{height:48.726562pt;}
.h1b{height:50.954062pt;}
.h8{height:51.411562pt;}
.hd{height:53.309531pt;}
.h1c{height:54.927899pt;}
.hc{height:55.631875pt;}
.h9{height:56.187500pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:66.278125pt;}
.h13{height:68.518125pt;}
.h10{height:102.118125pt;}
.hf{height:106.598125pt;}
.h12{height:134.438125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1f{width:46.000000pt;}
.w1e{width:50.480000pt;}
.w1d{width:50.640000pt;}
.w14{width:55.680000pt;}
.w9{width:60.800000pt;}
.wa{width:61.120000pt;}
.w3{width:62.266667pt;}
.w7{width:64.346667pt;}
.w6{width:66.320000pt;}
.w1c{width:71.200000pt;}
.wc{width:72.560000pt;}
.w4{width:73.360000pt;}
.w5{width:73.920000pt;}
.w12{width:77.706667pt;}
.w18{width:78.640000pt;}
.w16{width:79.440000pt;}
.w8{width:81.280000pt;}
.w19{width:83.040000pt;}
.w11{width:85.440000pt;}
.w13{width:88.000000pt;}
.w1b{width:89.600000pt;}
.we{width:99.040000pt;}
.wd{width:99.520000pt;}
.wf{width:100.960000pt;}
.w17{width:109.706667pt;}
.w1a{width:116.746667pt;}
.w15{width:124.720000pt;}
.w20{width:124.800000pt;}
.wb{width:135.226667pt;}
.w24{width:140.160000pt;}
.w21{width:161.866667pt;}
.w10{width:173.200000pt;}
.w23{width:202.826667pt;}
.w22{width:220.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x1{left:60.480000pt;}
.x32{left:98.879988pt;}
.x2f{left:114.560000pt;}
.x29{left:120.240000pt;}
.xf{left:122.960000pt;}
.x19{left:142.000000pt;}
.x1f{left:155.706667pt;}
.x23{left:157.946667pt;}
.x18{left:179.146655pt;}
.x11{left:185.866667pt;}
.xe{left:216.986655pt;}
.x2{left:222.666655pt;}
.x28{left:226.746655pt;}
.x2a{left:237.626667pt;}
.xd{left:239.146655pt;}
.x2e{left:246.746655pt;}
.xa{left:258.426655pt;}
.x12{left:259.866667pt;}
.x1a{left:277.866667pt;}
.x24{left:283.306667pt;}
.x5{left:290.106655pt;}
.x9{left:294.746655pt;}
.x6{left:318.666655pt;}
.x7{left:321.466655pt;}
.x2b{left:327.946667pt;}
.x20{left:329.546667pt;}
.x1e{left:331.066655pt;}
.x13{left:334.426667pt;}
.x30{left:335.706667pt;}
.x1b{left:351.146667pt;}
.x25{left:363.386667pt;}
.x2c{left:399.786667pt;}
.x8{left:401.146655pt;}
.xc{left:409.626655pt;}
.xb{left:415.226655pt;}
.x1c{left:451.333333pt;}
.x14{left:466.453333pt;}
.x26{left:473.733333pt;}
.x21{left:493.973333pt;}
.x2d{left:502.293333pt;}
.x31{left:539.253333pt;}
.x15{left:548.453333pt;}
.x1d{left:551.013333pt;}
.x27{left:553.013333pt;}
.x22{left:582.613333pt;}
.x16{left:609.893333pt;}
.x17{left:689.013322pt;}
.x3{left:711.413322pt;}
.x4{left:716.053322pt;}
}




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