
    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_982e97e41f3e3b6ab5466556.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_0666c3185573a58256632da3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_4762a6a29d7dc25f0fd37e35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_2c7ecf0b91a7ee1393f409a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_9e869a8b6556225f48faaea2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_39302fa25d0f006e00aa114e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_314cf66da50ecc7be0bc9994.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_95873bff0f9348573755b45c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.976000px;}
.ls21{letter-spacing:-1.584000px;}
.ls17{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.432000px;}
.ls29{letter-spacing:-0.223800px;}
.ls38{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.189600px;}
.ls16{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.018720px;}
.ls3{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.208200px;}
.ls15{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.413400px;}
.ls36{letter-spacing:0.530400px;}
.ls3d{letter-spacing:0.612000px;}
.ls3b{letter-spacing:0.613440px;}
.ls39{letter-spacing:0.666000px;}
.ls32{letter-spacing:0.666720px;}
.ls34{letter-spacing:0.702000px;}
.ls2{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.979920px;}
.ls13{letter-spacing:1.044000px;}
.ls2f{letter-spacing:1.421280px;}
.ls2d{letter-spacing:1.584000px;}
.ls25{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.424000px;}
.lsf{letter-spacing:2.484000px;}
.lsc{letter-spacing:3.000000px;}
.lsd{letter-spacing:3.024000px;}
.lse{letter-spacing:3.144000px;}
.ls1a{letter-spacing:3.744000px;}
.ls23{letter-spacing:4.464000px;}
.ls28{letter-spacing:5.184000px;}
.ls20{letter-spacing:5.904000px;}
.ls1e{letter-spacing:6.624000px;}
.ls10{letter-spacing:8.064000px;}
.ls1c{letter-spacing:10.224000px;}
.ls2c{letter-spacing:10.944000px;}
.ls19{letter-spacing:13.824000px;}
.ls1d{letter-spacing:14.544000px;}
.ls22{letter-spacing:15.264000px;}
.ls30{letter-spacing:15.960000px;}
.ls26{letter-spacing:15.984000px;}
.ls1b{letter-spacing:19.584000px;}
.ls11{letter-spacing:21.000000px;}
.ls12{letter-spacing:21.024000px;}
.ls2a{letter-spacing:28.344000px;}
.ls24{letter-spacing:28.404000px;}
.ls14{letter-spacing:31.824000px;}
.ls5{letter-spacing:41.031360px;}
.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;}
}
.wsa{word-spacing:-95.760000px;}
.ws1a{word-spacing:-34.899840px;}
.ws13{word-spacing:-27.323280px;}
.ws15{word-spacing:-27.151680px;}
.ws5{word-spacing:-27.000000px;}
.ws16{word-spacing:-26.829480px;}
.ws14{word-spacing:-26.640000px;}
.ws0{word-spacing:-26.621280px;}
.ws1{word-spacing:-26.602560px;}
.ws12{word-spacing:-26.431680px;}
.ws11{word-spacing:-23.418720px;}
.ws7{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws10{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.wsc{word-spacing:-19.872000px;}
.ws17{word-spacing:-19.800000px;}
.ws8{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.440000px;}
.wse{word-spacing:-19.296000px;}
.wsd{word-spacing:-19.152000px;}
.wsf{word-spacing:-18.432000px;}
.ws1b{word-spacing:-17.225280px;}
.ws19{word-spacing:-17.026680px;}
.ws3{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws6{word-spacing:-15.372000px;}
.ws9{word-spacing:0.000000px;}
._1c{margin-left:-5.427840px;}
._6{margin-left:-3.956160px;}
._5{margin-left:-2.700000px;}
._1{margin-left:-1.138320px;}
._0{width:1.792800px;}
._2{width:2.850000px;}
._9{width:3.942000px;}
._7{width:5.346000px;}
._25{width:6.395040px;}
._f{width:7.399200px;}
._10{width:8.959920px;}
._b{width:10.476000px;}
._a{width:12.096000px;}
._15{width:13.128720px;}
._1f{width:14.491200px;}
._1e{width:16.464000px;}
._4{width:18.286560px;}
._3{width:19.601280px;}
._13{width:21.600000px;}
._21{width:23.592000px;}
._18{width:24.922320px;}
._17{width:25.992000px;}
._16{width:27.624000px;}
._27{width:29.076000px;}
._8{width:30.240000px;}
._1d{width:31.728000px;}
._2d{width:32.815680px;}
._19{width:34.248000px;}
._12{width:35.280000px;}
._11{width:36.552000px;}
._14{width:37.632000px;}
._24{width:38.763600px;}
._23{width:40.138320px;}
._22{width:41.160000px;}
._26{width:42.600000px;}
._d{width:43.866720px;}
._e{width:45.966480px;}
._29{width:47.496960px;}
._28{width:50.970240px;}
._20{width:53.208000px;}
._2a{width:54.781920px;}
._1b{width:56.436000px;}
._1a{width:57.576000px;}
._30{width:59.063040px;}
._2f{width:60.596640px;}
._3c{width:65.270880px;}
._2b{width:66.985920px;}
._34{width:72.239760px;}
._35{width:73.598880px;}
._2c{width:78.129360px;}
._32{width:107.776080px;}
._31{width:109.349280px;}
._38{width:144.559440px;}
._39{width:146.366400px;}
._3d{width:176.590800px;}
._36{width:234.107520px;}
._2e{width:419.371200px;}
._37{width:458.777520px;}
._3a{width:498.080640px;}
._3b{width:499.115520px;}
._33{width:547.770240px;}
._c{width:845.741280px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:2.520000px;}
.ybb{bottom:9.360000px;}
.yd0{bottom:9.540000px;}
.yb9{bottom:16.200000px;}
.yc9{bottom:16.230000px;}
.yd3{bottom:16.380000px;}
.ycf{bottom:23.220000px;}
.yc4{bottom:23.250000px;}
.ybe{bottom:30.060000px;}
.yc8{bottom:30.090000px;}
.ycb{bottom:30.240000px;}
.yc3{bottom:36.930000px;}
.yce{bottom:37.080000px;}
.ybd{bottom:43.920000px;}
.yc7{bottom:43.950000px;}
.yd6{bottom:50.760000px;}
.yc2{bottom:50.790000px;}
.ycd{bottom:50.940000px;}
.ya{bottom:56.556000px;}
.ybf{bottom:57.600000px;}
.yc6{bottom:57.630000px;}
.yd2{bottom:57.780000px;}
.ycc{bottom:64.620000px;}
.yc0{bottom:71.460000px;}
.yc5{bottom:71.490000px;}
.yd1{bottom:71.640000px;}
.y9{bottom:77.796000px;}
.yd8{bottom:85.320000px;}
.y32{bottom:130.716000px;}
.yee{bottom:131.796000px;}
.yb2{bottom:135.216000px;}
.y56{bottom:135.936000px;}
.y77{bottom:137.916000px;}
.y10c{bottom:147.816000px;}
.y31{bottom:147.996000px;}
.y30{bottom:152.490000px;}
.yb1{bottom:155.910000px;}
.y55{bottom:156.630000px;}
.y76{bottom:158.610000px;}
.y10b{bottom:165.090000px;}
.y2f{bottom:165.450000px;}
.yed{bottom:173.190000px;}
.yb0{bottom:176.610000px;}
.y54{bottom:177.330000px;}
.yd9{bottom:183.270000px;}
.y2e{bottom:191.190000px;}
.yec{bottom:193.890000px;}
.y12d{bottom:194.610000px;}
.y75{bottom:197.310000px;}
.y53{bottom:198.030000px;}
.y10a{bottom:200.370000px;}
.yd7{bottom:200.910000px;}
.y92{bottom:201.630000px;}
.y2d{bottom:210.450000px;}
.y12c{bottom:211.890000px;}
.yeb{bottom:214.590000px;}
.y109{bottom:217.650000px;}
.y74{bottom:218.010000px;}
.y52{bottom:218.730000px;}
.y91{bottom:222.330000px;}
.y12b{bottom:228.990000px;}
.y2c{bottom:231.150000px;}
.y108{bottom:234.930000px;}
.yea{bottom:235.290000px;}
.y73{bottom:238.710000px;}
.y90{bottom:243.030000px;}
.y12a{bottom:246.270000px;}
.y2b{bottom:251.850000px;}
.ye9{bottom:255.990000px;}
.y51{bottom:257.430000px;}
.y72{bottom:259.410000px;}
.y8f{bottom:263.730000px;}
.y107{bottom:270.030000px;}
.y2a{bottom:272.550000px;}
.yaf{bottom:277.410000px;}
.y50{bottom:278.130000px;}
.y71{bottom:280.110000px;}
.y129{bottom:281.550000px;}
.y8e{bottom:284.430000px;}
.y106{bottom:287.310000px;}
.y29{bottom:293.295000px;}
.ye8{bottom:294.735000px;}
.yae{bottom:298.155000px;}
.yd5{bottom:298.335000px;}
.y4f{bottom:298.875000px;}
.y70{bottom:300.855000px;}
.y105{bottom:304.635000px;}
.y8d{bottom:305.175000px;}
.ye7{bottom:315.435000px;}
.y128{bottom:316.155000px;}
.yad{bottom:318.855000px;}
.y4e{bottom:319.575000px;}
.y6f{bottom:321.555000px;}
.y104{bottom:321.915000px;}
.y8c{bottom:325.695000px;}
.y28{bottom:330.195000px;}
.y127{bottom:333.255000px;}
.ye6{bottom:336.135000px;}
.yac{bottom:339.555000px;}
.y4d{bottom:340.275000px;}
.y6e{bottom:342.255000px;}
.y27{bottom:345.855000px;}
.y126{bottom:350.535000px;}
.ye5{bottom:356.835000px;}
.y103{bottom:357.195000px;}
.yab{bottom:360.255000px;}
.y4c{bottom:360.975000px;}
.y26{bottom:361.515000px;}
.y6d{bottom:362.955000px;}
.y8b{bottom:364.395000px;}
.yd4{bottom:367.995000px;}
.y102{bottom:374.475000px;}
.y25{bottom:376.995000px;}
.ye4{bottom:377.535000px;}
.yaa{bottom:380.955000px;}
.y6c{bottom:383.655000px;}
.y8a{bottom:385.095000px;}
.y125{bottom:385.815000px;}
.y24{bottom:392.475000px;}
.ye3{bottom:398.235000px;}
.y4b{bottom:399.675000px;}
.y124{bottom:403.095000px;}
.y89{bottom:405.795000px;}
.y23{bottom:407.955000px;}
.y101{bottom:409.575000px;}
.ya9{bottom:419.655000px;}
.y4a{bottom:420.375000px;}
.y6b{bottom:422.355000px;}
.y22{bottom:423.615000px;}
.y88{bottom:426.495000px;}
.y100{bottom:426.855000px;}
.y123{bottom:437.655000px;}
.ye2{bottom:438.195000px;}
.y21{bottom:439.095000px;}
.ya8{bottom:440.355000px;}
.y49{bottom:441.075000px;}
.y6a{bottom:443.055000px;}
.yff{bottom:444.135000px;}
.y87{bottom:447.195000px;}
.yca{bottom:451.515000px;}
.y20{bottom:454.575000px;}
.y122{bottom:454.755000px;}
.ya7{bottom:461.055000px;}
.yfe{bottom:461.415000px;}
.y48{bottom:461.775000px;}
.y69{bottom:463.755000px;}
.y1f{bottom:470.055000px;}
.yfd{bottom:478.695000px;}
.ya6{bottom:481.755000px;}
.y47{bottom:482.475000px;}
.y68{bottom:484.455000px;}
.y1e{bottom:485.715000px;}
.y86{bottom:485.895000px;}
.y121{bottom:490.035000px;}
.y1d{bottom:501.195000px;}
.ya5{bottom:502.455000px;}
.y46{bottom:503.175000px;}
.y67{bottom:505.155000px;}
.y85{bottom:506.595000px;}
.y120{bottom:507.315000px;}
.yfc{bottom:513.795000px;}
.y1c{bottom:516.675000px;}
.ya4{bottom:523.155000px;}
.y45{bottom:523.875000px;}
.y11f{bottom:524.595000px;}
.y66{bottom:525.855000px;}
.y84{bottom:527.295000px;}
.yfb{bottom:531.075000px;}
.y1b{bottom:532.155000px;}
.yc1{bottom:535.215000px;}
.y44{bottom:544.575000px;}
.y1a{bottom:547.815000px;}
.y83{bottom:547.995000px;}
.yfa{bottom:548.355000px;}
.y11e{bottom:559.905000px;}
.ya3{bottom:563.145000px;}
.y19{bottom:563.325000px;}
.y65{bottom:564.585000px;}
.y43{bottom:565.305000px;}
.yf9{bottom:565.665000px;}
.y82{bottom:568.725000px;}
.y11d{bottom:577.185000px;}
.y18{bottom:578.805000px;}
.y64{bottom:585.285000px;}
.ye1{bottom:586.005000px;}
.y81{bottom:589.425000px;}
.y17{bottom:594.285000px;}
.yf8{bottom:600.945000px;}
.y42{bottom:604.005000px;}
.y63{bottom:605.985000px;}
.ye0{bottom:606.705000px;}
.ya2{bottom:607.425000px;}
.y16{bottom:609.945000px;}
.y80{bottom:610.125000px;}
.yf7{bottom:618.225000px;}
.ybc{bottom:618.765000px;}
.y41{bottom:624.705000px;}
.y15{bottom:625.425000px;}
.y62{bottom:626.685000px;}
.ydf{bottom:627.405000px;}
.ya1{bottom:628.125000px;}
.y11c{bottom:629.565000px;}
.yf6{bottom:635.325000px;}
.y14{bottom:640.905000px;}
.y40{bottom:645.405000px;}
.y11b{bottom:646.845000px;}
.y61{bottom:647.385000px;}
.yde{bottom:648.105000px;}
.ya0{bottom:648.825000px;}
.y7f{bottom:649.725000px;}
.yf5{bottom:652.605000px;}
.y13{bottom:657.285000px;}
.y11a{bottom:664.125000px;}
.y3f{bottom:666.105000px;}
.ydd{bottom:668.805000px;}
.y9f{bottom:669.525000px;}
.y12{bottom:677.985000px;}
.yf4{bottom:685.545000px;}
.y3e{bottom:686.805000px;}
.y9e{bottom:690.225000px;}
.y7e{bottom:691.125000px;}
.y119{bottom:699.225000px;}
.yb8{bottom:702.285000px;}
.y3d{bottom:707.505000px;}
.y9d{bottom:710.925000px;}
.y7d{bottom:711.825000px;}
.y118{bottom:716.505000px;}
.y3c{bottom:728.205000px;}
.y60{bottom:729.465000px;}
.y7c{bottom:732.525000px;}
.yf3{bottom:732.885000px;}
.y117{bottom:733.785000px;}
.yb7{bottom:734.325000px;}
.y3b{bottom:748.905000px;}
.y9c{bottom:749.625000px;}
.y116{bottom:751.065000px;}
.y7b{bottom:753.045000px;}
.yf2{bottom:756.825000px;}
.y11{bottom:763.485000px;}
.ydc{bottom:769.605000px;}
.y9b{bottom:770.325000px;}
.yb6{bottom:773.025000px;}
.y5f{bottom:773.745000px;}
.y10{bottom:785.445000px;}
.y115{bottom:786.345000px;}
.y3a{bottom:787.605000px;}
.ydb{bottom:790.305000px;}
.y9a{bottom:791.025000px;}
.yb5{bottom:793.725000px;}
.y5e{bottom:794.445000px;}
.yf1{bottom:800.925000px;}
.y114{bottom:803.625000px;}
.y39{bottom:808.350000px;}
.y99{bottom:811.770000px;}
.yf{bottom:813.210000px;}
.yb4{bottom:814.470000px;}
.y5d{bottom:815.190000px;}
.y113{bottom:820.950000px;}
.y38{bottom:829.050000px;}
.yda{bottom:830.310000px;}
.y98{bottom:832.470000px;}
.yb3{bottom:835.170000px;}
.y5c{bottom:835.890000px;}
.ye{bottom:840.750000px;}
.yf0{bottom:848.310000px;}
.y37{bottom:849.750000px;}
.y97{bottom:853.170000px;}
.y7a{bottom:853.890000px;}
.y112{bottom:856.050000px;}
.y5b{bottom:856.590000px;}
.y36{bottom:870.450000px;}
.y111{bottom:873.330000px;}
.y96{bottom:873.870000px;}
.y79{bottom:874.590000px;}
.y5a{bottom:877.290000px;}
.yd{bottom:887.010000px;}
.y110{bottom:890.610000px;}
.y35{bottom:891.150000px;}
.yef{bottom:892.410000px;}
.y95{bottom:894.570000px;}
.y78{bottom:895.290000px;}
.y10f{bottom:907.890000px;}
.y34{bottom:911.850000px;}
.y94{bottom:915.270000px;}
.y59{bottom:915.990000px;}
.yc{bottom:918.150000px;}
.y58{bottom:936.690000px;}
.y10e{bottom:943.170000px;}
.yb{bottom:949.110000px;}
.y33{bottom:951.810000px;}
.y93{bottom:954.690000px;}
.y57{bottom:957.390000px;}
.y10d{bottom:960.450000px;}
.y8{bottom:986.190000px;}
.y7{bottom:1003.470000px;}
.y6{bottom:1020.750000px;}
.y5{bottom:1038.570000px;}
.y4{bottom:1058.730000px;}
.y3{bottom:1076.040000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1112.400000px;}
.h8{height:5.163750px;}
.he{height:27.540000px;}
.hc{height:34.855313px;}
.h11{height:43.246406px;}
.hf{height:43.646836px;}
.ha{height:48.410156px;}
.h9{height:48.858398px;}
.h15{height:53.428008px;}
.h3{height:53.573906px;}
.h2{height:54.069961px;}
.h5{height:59.383125px;}
.h4{height:64.546875px;}
.hb{height:65.144531px;}
.h13{height:68.940000px;}
.h1{height:69.715898px;}
.h6{height:74.408203px;}
.hd{height:76.219102px;}
.h10{height:82.800000px;}
.h12{height:82.836000px;}
.h7{height:86.642227px;}
.h14{height:96.696000px;}
.h0{height:1188.000000px;}
.w3{width:129.636000px;}
.w4{width:242.490000px;}
.w5{width:290.775000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x1b{left:9.360000px;}
.x17{left:11.340000px;}
.x14{left:12.600000px;}
.x1e{left:16.020000px;}
.x1a{left:20.340000px;}
.x19{left:21.420000px;}
.x15{left:24.654000px;}
.xe{left:26.634000px;}
.x10{left:27.900000px;}
.x1c{left:30.414000px;}
.x20{left:32.034000px;}
.x18{left:34.014000px;}
.x1f{left:37.074000px;}
.x1d{left:39.054000px;}
.x13{left:55.980000px;}
.x11{left:102.600000px;}
.x1{left:127.475986px;}
.xd{left:133.055986px;}
.x3{left:146.195986px;}
.x6{left:149.075986px;}
.x21{left:170.129986px;}
.x7{left:177.689986px;}
.x5{left:227.549986px;}
.x4{left:249.689986px;}
.xf{left:257.295000px;}
.xc{left:343.694986px;}
.x9{left:382.034986px;}
.x8{left:388.334986px;}
.xb{left:418.394986px;}
.x2{left:428.294986px;}
.x12{left:499.785000px;}
.xa{left:535.244973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.978667pt;}
.ls21{letter-spacing:-1.408000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls29{letter-spacing:-0.198933pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.168533pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.016640pt;}
.ls3{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.185067pt;}
.ls15{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.367467pt;}
.ls36{letter-spacing:0.471467pt;}
.ls3d{letter-spacing:0.544000pt;}
.ls3b{letter-spacing:0.545280pt;}
.ls39{letter-spacing:0.592000pt;}
.ls32{letter-spacing:0.592640pt;}
.ls34{letter-spacing:0.624000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.871040pt;}
.ls13{letter-spacing:0.928000pt;}
.ls2f{letter-spacing:1.263360pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls25{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.154667pt;}
.lsf{letter-spacing:2.208000pt;}
.lsc{letter-spacing:2.666667pt;}
.lsd{letter-spacing:2.688000pt;}
.lse{letter-spacing:2.794667pt;}
.ls1a{letter-spacing:3.328000pt;}
.ls23{letter-spacing:3.968000pt;}
.ls28{letter-spacing:4.608000pt;}
.ls20{letter-spacing:5.248000pt;}
.ls1e{letter-spacing:5.888000pt;}
.ls10{letter-spacing:7.168000pt;}
.ls1c{letter-spacing:9.088000pt;}
.ls2c{letter-spacing:9.728000pt;}
.ls19{letter-spacing:12.288000pt;}
.ls1d{letter-spacing:12.928000pt;}
.ls22{letter-spacing:13.568000pt;}
.ls30{letter-spacing:14.186667pt;}
.ls26{letter-spacing:14.208000pt;}
.ls1b{letter-spacing:17.408000pt;}
.ls11{letter-spacing:18.666667pt;}
.ls12{letter-spacing:18.688000pt;}
.ls2a{letter-spacing:25.194667pt;}
.ls24{letter-spacing:25.248000pt;}
.ls14{letter-spacing:28.288000pt;}
.ls5{letter-spacing:36.472320pt;}
.wsa{word-spacing:-85.120000pt;}
.ws1a{word-spacing:-31.022080pt;}
.ws13{word-spacing:-24.287360pt;}
.ws15{word-spacing:-24.134827pt;}
.ws5{word-spacing:-24.000000pt;}
.ws16{word-spacing:-23.848427pt;}
.ws14{word-spacing:-23.680000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws1{word-spacing:-23.646720pt;}
.ws12{word-spacing:-23.494827pt;}
.ws11{word-spacing:-20.816640pt;}
.ws7{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.664000pt;}
.ws17{word-spacing:-17.600000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.280000pt;}
.wse{word-spacing:-17.152000pt;}
.wsd{word-spacing:-17.024000pt;}
.wsf{word-spacing:-16.384000pt;}
.ws1b{word-spacing:-15.311360pt;}
.ws19{word-spacing:-15.134827pt;}
.ws3{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws6{word-spacing:-13.664000pt;}
.ws9{word-spacing:0.000000pt;}
._1c{margin-left:-4.824747pt;}
._6{margin-left:-3.516587pt;}
._5{margin-left:-2.400000pt;}
._1{margin-left:-1.011840pt;}
._0{width:1.593600pt;}
._2{width:2.533333pt;}
._9{width:3.504000pt;}
._7{width:4.752000pt;}
._25{width:5.684480pt;}
._f{width:6.577067pt;}
._10{width:7.964373pt;}
._b{width:9.312000pt;}
._a{width:10.752000pt;}
._15{width:11.669973pt;}
._1f{width:12.881067pt;}
._1e{width:14.634667pt;}
._4{width:16.254720pt;}
._3{width:17.423360pt;}
._13{width:19.200000pt;}
._21{width:20.970667pt;}
._18{width:22.153173pt;}
._17{width:23.104000pt;}
._16{width:24.554667pt;}
._27{width:25.845333pt;}
._8{width:26.880000pt;}
._1d{width:28.202667pt;}
._2d{width:29.169493pt;}
._19{width:30.442667pt;}
._12{width:31.360000pt;}
._11{width:32.490667pt;}
._14{width:33.450667pt;}
._24{width:34.456533pt;}
._23{width:35.678507pt;}
._22{width:36.586667pt;}
._26{width:37.866667pt;}
._d{width:38.992640pt;}
._e{width:40.859093pt;}
._29{width:42.219520pt;}
._28{width:45.306880pt;}
._20{width:47.296000pt;}
._2a{width:48.695040pt;}
._1b{width:50.165333pt;}
._1a{width:51.178667pt;}
._30{width:52.500480pt;}
._2f{width:53.863680pt;}
._3c{width:58.018560pt;}
._2b{width:59.543040pt;}
._34{width:64.213120pt;}
._35{width:65.421227pt;}
._2c{width:69.448320pt;}
._32{width:95.800960pt;}
._31{width:97.199360pt;}
._38{width:128.497280pt;}
._39{width:130.103467pt;}
._3d{width:156.969600pt;}
._36{width:208.095573pt;}
._2e{width:372.774400pt;}
._37{width:407.802240pt;}
._3a{width:442.738347pt;}
._3b{width:443.658240pt;}
._33{width:486.906880pt;}
._c{width:751.770027pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.240000pt;}
.ybb{bottom:8.320000pt;}
.yd0{bottom:8.480000pt;}
.yb9{bottom:14.400000pt;}
.yc9{bottom:14.426667pt;}
.yd3{bottom:14.560000pt;}
.ycf{bottom:20.640000pt;}
.yc4{bottom:20.666667pt;}
.ybe{bottom:26.720000pt;}
.yc8{bottom:26.746667pt;}
.ycb{bottom:26.880000pt;}
.yc3{bottom:32.826667pt;}
.yce{bottom:32.960000pt;}
.ybd{bottom:39.040000pt;}
.yc7{bottom:39.066667pt;}
.yd6{bottom:45.120000pt;}
.yc2{bottom:45.146667pt;}
.ycd{bottom:45.280000pt;}
.ya{bottom:50.272000pt;}
.ybf{bottom:51.200000pt;}
.yc6{bottom:51.226667pt;}
.yd2{bottom:51.360000pt;}
.ycc{bottom:57.440000pt;}
.yc0{bottom:63.520000pt;}
.yc5{bottom:63.546667pt;}
.yd1{bottom:63.680000pt;}
.y9{bottom:69.152000pt;}
.yd8{bottom:75.840000pt;}
.y32{bottom:116.192000pt;}
.yee{bottom:117.152000pt;}
.yb2{bottom:120.192000pt;}
.y56{bottom:120.832000pt;}
.y77{bottom:122.592000pt;}
.y10c{bottom:131.392000pt;}
.y31{bottom:131.552000pt;}
.y30{bottom:135.546667pt;}
.yb1{bottom:138.586667pt;}
.y55{bottom:139.226667pt;}
.y76{bottom:140.986667pt;}
.y10b{bottom:146.746667pt;}
.y2f{bottom:147.066667pt;}
.yed{bottom:153.946667pt;}
.yb0{bottom:156.986667pt;}
.y54{bottom:157.626667pt;}
.yd9{bottom:162.906667pt;}
.y2e{bottom:169.946667pt;}
.yec{bottom:172.346667pt;}
.y12d{bottom:172.986667pt;}
.y75{bottom:175.386667pt;}
.y53{bottom:176.026667pt;}
.y10a{bottom:178.106667pt;}
.yd7{bottom:178.586667pt;}
.y92{bottom:179.226667pt;}
.y2d{bottom:187.066667pt;}
.y12c{bottom:188.346667pt;}
.yeb{bottom:190.746667pt;}
.y109{bottom:193.466667pt;}
.y74{bottom:193.786667pt;}
.y52{bottom:194.426667pt;}
.y91{bottom:197.626667pt;}
.y12b{bottom:203.546667pt;}
.y2c{bottom:205.466667pt;}
.y108{bottom:208.826667pt;}
.yea{bottom:209.146667pt;}
.y73{bottom:212.186667pt;}
.y90{bottom:216.026667pt;}
.y12a{bottom:218.906667pt;}
.y2b{bottom:223.866667pt;}
.ye9{bottom:227.546667pt;}
.y51{bottom:228.826667pt;}
.y72{bottom:230.586667pt;}
.y8f{bottom:234.426667pt;}
.y107{bottom:240.026667pt;}
.y2a{bottom:242.266667pt;}
.yaf{bottom:246.586667pt;}
.y50{bottom:247.226667pt;}
.y71{bottom:248.986667pt;}
.y129{bottom:250.266667pt;}
.y8e{bottom:252.826667pt;}
.y106{bottom:255.386667pt;}
.y29{bottom:260.706667pt;}
.ye8{bottom:261.986667pt;}
.yae{bottom:265.026667pt;}
.yd5{bottom:265.186667pt;}
.y4f{bottom:265.666667pt;}
.y70{bottom:267.426667pt;}
.y105{bottom:270.786667pt;}
.y8d{bottom:271.266667pt;}
.ye7{bottom:280.386667pt;}
.y128{bottom:281.026667pt;}
.yad{bottom:283.426667pt;}
.y4e{bottom:284.066667pt;}
.y6f{bottom:285.826667pt;}
.y104{bottom:286.146667pt;}
.y8c{bottom:289.506667pt;}
.y28{bottom:293.506667pt;}
.y127{bottom:296.226667pt;}
.ye6{bottom:298.786667pt;}
.yac{bottom:301.826667pt;}
.y4d{bottom:302.466667pt;}
.y6e{bottom:304.226667pt;}
.y27{bottom:307.426667pt;}
.y126{bottom:311.586667pt;}
.ye5{bottom:317.186667pt;}
.y103{bottom:317.506667pt;}
.yab{bottom:320.226667pt;}
.y4c{bottom:320.866667pt;}
.y26{bottom:321.346667pt;}
.y6d{bottom:322.626667pt;}
.y8b{bottom:323.906667pt;}
.yd4{bottom:327.106667pt;}
.y102{bottom:332.866667pt;}
.y25{bottom:335.106667pt;}
.ye4{bottom:335.586667pt;}
.yaa{bottom:338.626667pt;}
.y6c{bottom:341.026667pt;}
.y8a{bottom:342.306667pt;}
.y125{bottom:342.946667pt;}
.y24{bottom:348.866667pt;}
.ye3{bottom:353.986667pt;}
.y4b{bottom:355.266667pt;}
.y124{bottom:358.306667pt;}
.y89{bottom:360.706667pt;}
.y23{bottom:362.626667pt;}
.y101{bottom:364.066667pt;}
.ya9{bottom:373.026667pt;}
.y4a{bottom:373.666667pt;}
.y6b{bottom:375.426667pt;}
.y22{bottom:376.546667pt;}
.y88{bottom:379.106667pt;}
.y100{bottom:379.426667pt;}
.y123{bottom:389.026667pt;}
.ye2{bottom:389.506667pt;}
.y21{bottom:390.306667pt;}
.ya8{bottom:391.426667pt;}
.y49{bottom:392.066667pt;}
.y6a{bottom:393.826667pt;}
.yff{bottom:394.786667pt;}
.y87{bottom:397.506667pt;}
.yca{bottom:401.346667pt;}
.y20{bottom:404.066667pt;}
.y122{bottom:404.226667pt;}
.ya7{bottom:409.826667pt;}
.yfe{bottom:410.146667pt;}
.y48{bottom:410.466667pt;}
.y69{bottom:412.226667pt;}
.y1f{bottom:417.826667pt;}
.yfd{bottom:425.506667pt;}
.ya6{bottom:428.226667pt;}
.y47{bottom:428.866667pt;}
.y68{bottom:430.626667pt;}
.y1e{bottom:431.746667pt;}
.y86{bottom:431.906667pt;}
.y121{bottom:435.586667pt;}
.y1d{bottom:445.506667pt;}
.ya5{bottom:446.626667pt;}
.y46{bottom:447.266667pt;}
.y67{bottom:449.026667pt;}
.y85{bottom:450.306667pt;}
.y120{bottom:450.946667pt;}
.yfc{bottom:456.706667pt;}
.y1c{bottom:459.266667pt;}
.ya4{bottom:465.026667pt;}
.y45{bottom:465.666667pt;}
.y11f{bottom:466.306667pt;}
.y66{bottom:467.426667pt;}
.y84{bottom:468.706667pt;}
.yfb{bottom:472.066667pt;}
.y1b{bottom:473.026667pt;}
.yc1{bottom:475.746667pt;}
.y44{bottom:484.066667pt;}
.y1a{bottom:486.946667pt;}
.y83{bottom:487.106667pt;}
.yfa{bottom:487.426667pt;}
.y11e{bottom:497.693333pt;}
.ya3{bottom:500.573333pt;}
.y19{bottom:500.733333pt;}
.y65{bottom:501.853333pt;}
.y43{bottom:502.493333pt;}
.yf9{bottom:502.813333pt;}
.y82{bottom:505.533333pt;}
.y11d{bottom:513.053333pt;}
.y18{bottom:514.493333pt;}
.y64{bottom:520.253333pt;}
.ye1{bottom:520.893333pt;}
.y81{bottom:523.933333pt;}
.y17{bottom:528.253333pt;}
.yf8{bottom:534.173333pt;}
.y42{bottom:536.893333pt;}
.y63{bottom:538.653333pt;}
.ye0{bottom:539.293333pt;}
.ya2{bottom:539.933333pt;}
.y16{bottom:542.173333pt;}
.y80{bottom:542.333333pt;}
.yf7{bottom:549.533333pt;}
.ybc{bottom:550.013333pt;}
.y41{bottom:555.293333pt;}
.y15{bottom:555.933333pt;}
.y62{bottom:557.053333pt;}
.ydf{bottom:557.693333pt;}
.ya1{bottom:558.333333pt;}
.y11c{bottom:559.613333pt;}
.yf6{bottom:564.733333pt;}
.y14{bottom:569.693333pt;}
.y40{bottom:573.693333pt;}
.y11b{bottom:574.973333pt;}
.y61{bottom:575.453333pt;}
.yde{bottom:576.093333pt;}
.ya0{bottom:576.733333pt;}
.y7f{bottom:577.533333pt;}
.yf5{bottom:580.093333pt;}
.y13{bottom:584.253333pt;}
.y11a{bottom:590.333333pt;}
.y3f{bottom:592.093333pt;}
.ydd{bottom:594.493333pt;}
.y9f{bottom:595.133333pt;}
.y12{bottom:602.653333pt;}
.yf4{bottom:609.373333pt;}
.y3e{bottom:610.493333pt;}
.y9e{bottom:613.533333pt;}
.y7e{bottom:614.333333pt;}
.y119{bottom:621.533333pt;}
.yb8{bottom:624.253333pt;}
.y3d{bottom:628.893333pt;}
.y9d{bottom:631.933333pt;}
.y7d{bottom:632.733333pt;}
.y118{bottom:636.893333pt;}
.y3c{bottom:647.293333pt;}
.y60{bottom:648.413333pt;}
.y7c{bottom:651.133333pt;}
.yf3{bottom:651.453333pt;}
.y117{bottom:652.253333pt;}
.yb7{bottom:652.733333pt;}
.y3b{bottom:665.693333pt;}
.y9c{bottom:666.333333pt;}
.y116{bottom:667.613333pt;}
.y7b{bottom:669.373333pt;}
.yf2{bottom:672.733333pt;}
.y11{bottom:678.653333pt;}
.ydc{bottom:684.093333pt;}
.y9b{bottom:684.733333pt;}
.yb6{bottom:687.133333pt;}
.y5f{bottom:687.773333pt;}
.y10{bottom:698.173333pt;}
.y115{bottom:698.973333pt;}
.y3a{bottom:700.093333pt;}
.ydb{bottom:702.493333pt;}
.y9a{bottom:703.133333pt;}
.yb5{bottom:705.533333pt;}
.y5e{bottom:706.173333pt;}
.yf1{bottom:711.933333pt;}
.y114{bottom:714.333333pt;}
.y39{bottom:718.533333pt;}
.y99{bottom:721.573333pt;}
.yf{bottom:722.853333pt;}
.yb4{bottom:723.973333pt;}
.y5d{bottom:724.613333pt;}
.y113{bottom:729.733333pt;}
.y38{bottom:736.933333pt;}
.yda{bottom:738.053333pt;}
.y98{bottom:739.973333pt;}
.yb3{bottom:742.373333pt;}
.y5c{bottom:743.013333pt;}
.ye{bottom:747.333333pt;}
.yf0{bottom:754.053333pt;}
.y37{bottom:755.333333pt;}
.y97{bottom:758.373333pt;}
.y7a{bottom:759.013333pt;}
.y112{bottom:760.933333pt;}
.y5b{bottom:761.413333pt;}
.y36{bottom:773.733333pt;}
.y111{bottom:776.293333pt;}
.y96{bottom:776.773333pt;}
.y79{bottom:777.413333pt;}
.y5a{bottom:779.813333pt;}
.yd{bottom:788.453333pt;}
.y110{bottom:791.653333pt;}
.y35{bottom:792.133333pt;}
.yef{bottom:793.253333pt;}
.y95{bottom:795.173333pt;}
.y78{bottom:795.813333pt;}
.y10f{bottom:807.013333pt;}
.y34{bottom:810.533333pt;}
.y94{bottom:813.573333pt;}
.y59{bottom:814.213333pt;}
.yc{bottom:816.133333pt;}
.y58{bottom:832.613333pt;}
.y10e{bottom:838.373333pt;}
.yb{bottom:843.653333pt;}
.y33{bottom:846.053333pt;}
.y93{bottom:848.613333pt;}
.y57{bottom:851.013333pt;}
.y10d{bottom:853.733333pt;}
.y8{bottom:876.613333pt;}
.y7{bottom:891.973333pt;}
.y6{bottom:907.333333pt;}
.y5{bottom:923.173333pt;}
.y4{bottom:941.093333pt;}
.y3{bottom:956.480000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:988.800000pt;}
.h8{height:4.590000pt;}
.he{height:24.480000pt;}
.hc{height:30.982500pt;}
.h11{height:38.441250pt;}
.hf{height:38.797187pt;}
.ha{height:43.031250pt;}
.h9{height:43.429688pt;}
.h15{height:47.491563pt;}
.h3{height:47.621250pt;}
.h2{height:48.062188pt;}
.h5{height:52.785000pt;}
.h4{height:57.375000pt;}
.hb{height:57.906250pt;}
.h13{height:61.280000pt;}
.h1{height:61.969687pt;}
.h6{height:66.140625pt;}
.hd{height:67.750312pt;}
.h10{height:73.600000pt;}
.h12{height:73.632000pt;}
.h7{height:77.015312pt;}
.h14{height:85.952000pt;}
.h0{height:1056.000000pt;}
.w3{width:115.232000pt;}
.w4{width:215.546667pt;}
.w5{width:258.466667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x1b{left:8.320000pt;}
.x17{left:10.080000pt;}
.x14{left:11.200000pt;}
.x1e{left:14.240000pt;}
.x1a{left:18.080000pt;}
.x19{left:19.040000pt;}
.x15{left:21.914667pt;}
.xe{left:23.674667pt;}
.x10{left:24.800000pt;}
.x1c{left:27.034667pt;}
.x20{left:28.474667pt;}
.x18{left:30.234667pt;}
.x1f{left:32.954667pt;}
.x1d{left:34.714667pt;}
.x13{left:49.760000pt;}
.x11{left:91.200000pt;}
.x1{left:113.311988pt;}
.xd{left:118.271988pt;}
.x3{left:129.951988pt;}
.x6{left:132.511988pt;}
.x21{left:151.226655pt;}
.x7{left:157.946655pt;}
.x5{left:202.266655pt;}
.x4{left:221.946655pt;}
.xf{left:228.706667pt;}
.xc{left:305.506655pt;}
.x9{left:339.586655pt;}
.x8{left:345.186655pt;}
.xb{left:371.906655pt;}
.x2{left:380.706655pt;}
.x12{left:444.253333pt;}
.xa{left:475.773309pt;}
}




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