
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4ea19cfcaae07f5ff3b89450.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4c62b01474c1394460242022.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_c12419deda47135ece7c325b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_d18959fa7ccc3a3aa5e72f5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6c499045e8bc27f5897b9969.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_9b668da8259aeeca92951f88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_1772876ce07d73bac1e80711.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_47e091421e1f1de6184aecea.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_88c0bd5f2c498833cf2963c1.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-78.480000px;}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.690000px;}
.ls10{letter-spacing:-0.369600px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.238200px;}
.ls7{letter-spacing:0.341400px;}
.ls3{letter-spacing:18.000000px;}
.ls2{letter-spacing:31.680000px;}
.ls14{letter-spacing:34.128000px;}
.ls0{letter-spacing:128.460000px;}
.ls12{letter-spacing:191.484000px;}
.ls13{letter-spacing:1473.060000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.401400px;}
.ws8{word-spacing:-21.097440px;}
.ws7{word-spacing:-21.088080px;}
.ws5{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.690400px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-0.358440px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-2.303280px;}
._0{margin-left:-1.126080px;}
._1{width:1.750080px;}
._d{width:3.502080px;}
._9{width:4.608000px;}
._a{width:5.953920px;}
._2b{width:7.059600px;}
._c{width:8.064000px;}
._24{width:9.144000px;}
._e{width:10.635840px;}
._8{width:11.710080px;}
._17{width:12.723840px;}
._18{width:13.908000px;}
._26{width:14.952000px;}
._b{width:16.272000px;}
._28{width:17.609760px;}
._7{width:19.152000px;}
._25{width:20.280000px;}
._f{width:21.528000px;}
._10{width:22.848000px;}
._6{width:24.286080px;}
._5{width:25.344000px;}
._3{width:26.856000px;}
._4{width:28.152000px;}
._1a{width:29.160000px;}
._2e{width:30.309480px;}
._13{width:31.320000px;}
._33{width:32.399280px;}
._14{width:33.432000px;}
._19{width:34.488000px;}
._1e{width:35.751840px;}
._15{width:36.792000px;}
._31{width:38.581920px;}
._2a{width:39.810960px;}
._22{width:41.184000px;}
._23{width:42.231840px;}
._2{width:44.256000px;}
._1b{width:46.296000px;}
._1c{width:47.592000px;}
._30{width:48.606480px;}
._2f{width:50.830560px;}
._27{width:51.876480px;}
._1f{width:52.992000px;}
._20{width:54.000000px;}
._35{width:55.440000px;}
._1d{width:57.528000px;}
._12{width:59.178240px;}
._11{width:60.312000px;}
._21{width:62.136000px;}
._32{width:75.024000px;}
._2d{width:76.562640px;}
._16{width:77.760000px;}
._2c{width:93.169440px;}
._34{width:191.713200px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:4.140000px;}
.ydf{bottom:4.485000px;}
.ye5{bottom:4.492500px;}
.yd9{bottom:4.500000px;}
.y6{bottom:5.400000px;}
.y4{bottom:8.100000px;}
.y7{bottom:9.000000px;}
.y5{bottom:15.660000px;}
.ye1{bottom:25.185000px;}
.ye4{bottom:25.186500px;}
.yd8{bottom:25.200000px;}
.yde{bottom:25.230000px;}
.yd7{bottom:45.900000px;}
.ydd{bottom:45.930000px;}
.y2{bottom:57.600000px;}
.y120{bottom:82.296000px;}
.y66{bottom:82.836000px;}
.yaf{bottom:86.256000px;}
.yd3{bottom:88.596000px;}
.y108{bottom:90.036000px;}
.y141{bottom:92.736000px;}
.ye6{bottom:100.663500px;}
.y91{bottom:101.916000px;}
.y65{bottom:106.956000px;}
.y11f{bottom:110.016000px;}
.y39{bottom:112.896000px;}
.y140{bottom:113.436000px;}
.yae{bottom:113.976000px;}
.yd2{bottom:116.316000px;}
.y107{bottom:117.936000px;}
.y90{bottom:126.036000px;}
.y38{bottom:127.116000px;}
.y64{bottom:131.256000px;}
.y13f{bottom:134.136000px;}
.ye3{bottom:137.203500px;}
.y11e{bottom:137.916000px;}
.yad{bottom:141.696000px;}
.yd1{bottom:144.036000px;}
.y106{bottom:145.656000px;}
.y37{bottom:147.816000px;}
.y8f{bottom:150.150000px;}
.y13e{bottom:154.830000px;}
.y63{bottom:155.370000px;}
.y11d{bottom:165.630000px;}
.y36{bottom:168.510000px;}
.yac{bottom:169.410000px;}
.yd0{bottom:171.930000px;}
.y105{bottom:173.370000px;}
.y8e{bottom:174.270000px;}
.y13d{bottom:175.530000px;}
.y62{bottom:179.490000px;}
.y35{bottom:189.210000px;}
.y11c{bottom:193.350000px;}
.ye2{bottom:194.265000px;}
.y13c{bottom:196.230000px;}
.yab{bottom:197.310000px;}
.y8d{bottom:198.390000px;}
.ycf{bottom:199.650000px;}
.y104{bottom:201.090000px;}
.y61{bottom:203.610000px;}
.y34{bottom:209.910000px;}
.y13b{bottom:216.930000px;}
.y11b{bottom:221.070000px;}
.y8c{bottom:222.690000px;}
.yaa{bottom:225.030000px;}
.yce{bottom:227.370000px;}
.y60{bottom:227.730000px;}
.y103{bottom:228.990000px;}
.y33{bottom:230.610000px;}
.y13a{bottom:237.630000px;}
.y8b{bottom:246.810000px;}
.y11a{bottom:248.970000px;}
.y32{bottom:251.310000px;}
.ye0{bottom:251.505000px;}
.y5f{bottom:251.850000px;}
.ya9{bottom:252.750000px;}
.ycd{bottom:255.270000px;}
.y102{bottom:256.710000px;}
.y139{bottom:258.330000px;}
.y8a{bottom:270.930000px;}
.y31{bottom:272.010000px;}
.y5e{bottom:276.150000px;}
.y119{bottom:276.690000px;}
.y138{bottom:279.030000px;}
.ya8{bottom:280.470000px;}
.ycc{bottom:282.990000px;}
.y101{bottom:284.430000px;}
.y30{bottom:292.710000px;}
.y89{bottom:295.050000px;}
.y137{bottom:299.730000px;}
.y5d{bottom:300.270000px;}
.y118{bottom:304.410000px;}
.ya7{bottom:308.370000px;}
.ydc{bottom:308.565000px;}
.ycb{bottom:310.710000px;}
.y100{bottom:312.330000px;}
.y2f{bottom:313.410000px;}
.y88{bottom:319.170000px;}
.y136{bottom:320.430000px;}
.y5c{bottom:324.390000px;}
.y117{bottom:332.355000px;}
.y2e{bottom:334.155000px;}
.ya6{bottom:336.135000px;}
.yca{bottom:338.475000px;}
.yff{bottom:340.095000px;}
.y135{bottom:341.175000px;}
.y87{bottom:343.335000px;}
.y5b{bottom:348.555000px;}
.y2d{bottom:354.855000px;}
.y116{bottom:360.075000px;}
.y134{bottom:361.875000px;}
.ya5{bottom:363.855000px;}
.yc9{bottom:366.375000px;}
.y86{bottom:367.455000px;}
.yfe{bottom:367.815000px;}
.y5a{bottom:372.675000px;}
.y2c{bottom:375.555000px;}
.y133{bottom:382.575000px;}
.ydb{bottom:386.535000px;}
.y115{bottom:387.795000px;}
.y85{bottom:391.755000px;}
.yc8{bottom:394.095000px;}
.yfd{bottom:395.535000px;}
.y2b{bottom:396.255000px;}
.y59{bottom:396.795000px;}
.y132{bottom:403.275000px;}
.y114{bottom:415.515000px;}
.y84{bottom:415.875000px;}
.y2a{bottom:416.955000px;}
.ya4{bottom:419.475000px;}
.y58{bottom:420.915000px;}
.yc7{bottom:421.815000px;}
.yfc{bottom:423.435000px;}
.y131{bottom:423.975000px;}
.y29{bottom:437.655000px;}
.y83{bottom:439.995000px;}
.y113{bottom:443.415000px;}
.yda{bottom:443.595000px;}
.y130{bottom:444.675000px;}
.y57{bottom:445.215000px;}
.ya3{bottom:447.195000px;}
.yc6{bottom:449.715000px;}
.yfb{bottom:451.155000px;}
.y28{bottom:458.355000px;}
.y82{bottom:464.115000px;}
.y12f{bottom:465.375000px;}
.y56{bottom:469.335000px;}
.y112{bottom:471.135000px;}
.ya2{bottom:474.915000px;}
.yc5{bottom:477.435000px;}
.yfa{bottom:478.875000px;}
.y27{bottom:479.055000px;}
.y12e{bottom:486.075000px;}
.y81{bottom:488.235000px;}
.y55{bottom:493.455000px;}
.y111{bottom:498.855000px;}
.y26{bottom:499.755000px;}
.yd6{bottom:500.835000px;}
.ya1{bottom:502.815000px;}
.yc4{bottom:505.155000px;}
.yf9{bottom:506.595000px;}
.y12d{bottom:506.775000px;}
.y80{bottom:512.355000px;}
.y54{bottom:517.575000px;}
.y25{bottom:520.455000px;}
.y110{bottom:526.755000px;}
.y12c{bottom:527.475000px;}
.ya0{bottom:530.535000px;}
.yc3{bottom:532.875000px;}
.yf8{bottom:534.495000px;}
.y7f{bottom:536.655000px;}
.y24{bottom:541.155000px;}
.y53{bottom:541.695000px;}
.y12b{bottom:548.175000px;}
.y10f{bottom:554.475000px;}
.y9f{bottom:558.255000px;}
.y7e{bottom:560.775000px;}
.y23{bottom:561.855000px;}
.yf7{bottom:562.215000px;}
.y52{bottom:565.815000px;}
.y12a{bottom:568.875000px;}
.yd4{bottom:578.595000px;}
.y10e{bottom:582.195000px;}
.y22{bottom:582.555000px;}
.y7d{bottom:584.895000px;}
.y9e{bottom:586.155000px;}
.yc2{bottom:588.495000px;}
.y129{bottom:589.575000px;}
.yf6{bottom:589.935000px;}
.y51{bottom:590.115000px;}
.y21{bottom:601.845000px;}
.y7c{bottom:609.045000px;}
.y10d{bottom:609.945000px;}
.y128{bottom:610.305000px;}
.y9d{bottom:613.905000px;}
.y50{bottom:614.265000px;}
.yc1{bottom:616.245000px;}
.y20{bottom:617.145000px;}
.yf5{bottom:617.865000px;}
.y127{bottom:631.005000px;}
.y7b{bottom:633.165000px;}
.y1f{bottom:637.845000px;}
.y4f{bottom:638.385000px;}
.y9c{bottom:641.625000px;}
.yc0{bottom:644.145000px;}
.yf4{bottom:645.585000px;}
.y126{bottom:651.705000px;}
.y7a{bottom:657.285000px;}
.y1e{bottom:658.545000px;}
.y4e{bottom:662.505000px;}
.y10c{bottom:665.565000px;}
.y9b{bottom:669.345000px;}
.ybf{bottom:671.865000px;}
.y125{bottom:672.405000px;}
.yf3{bottom:673.305000px;}
.y1d{bottom:679.245000px;}
.y79{bottom:681.405000px;}
.y4d{bottom:686.625000px;}
.y124{bottom:693.105000px;}
.y10b{bottom:693.285000px;}
.y9a{bottom:697.245000px;}
.ybe{bottom:699.585000px;}
.y1c{bottom:699.945000px;}
.yf2{bottom:701.025000px;}
.y78{bottom:705.705000px;}
.y4c{bottom:710.745000px;}
.y123{bottom:713.805000px;}
.y1b{bottom:720.645000px;}
.y10a{bottom:721.005000px;}
.y99{bottom:724.965000px;}
.ybd{bottom:727.305000px;}
.yf1{bottom:728.925000px;}
.y77{bottom:729.825000px;}
.y4b{bottom:732.345000px;}
.y122{bottom:734.505000px;}
.y1a{bottom:741.345000px;}
.y109{bottom:743.865000px;}
.y4a{bottom:746.385000px;}
.y98{bottom:752.685000px;}
.y76{bottom:753.945000px;}
.ybc{bottom:755.205000px;}
.yf0{bottom:756.645000px;}
.y19{bottom:762.045000px;}
.y49{bottom:767.085000px;}
.y75{bottom:778.065000px;}
.y97{bottom:780.405000px;}
.y18{bottom:782.745000px;}
.ybb{bottom:782.925000px;}
.yef{bottom:784.365000px;}
.y48{bottom:787.785000px;}
.y121{bottom:795.165000px;}
.y74{bottom:802.185000px;}
.y17{bottom:803.445000px;}
.y96{bottom:808.305000px;}
.y47{bottom:808.485000px;}
.yba{bottom:810.645000px;}
.yee{bottom:812.265000px;}
.y16{bottom:824.145000px;}
.y73{bottom:826.305000px;}
.y46{bottom:829.185000px;}
.y95{bottom:836.025000px;}
.yb9{bottom:838.365000px;}
.yed{bottom:839.985000px;}
.y15{bottom:844.845000px;}
.y45{bottom:849.885000px;}
.y72{bottom:850.605000px;}
.y94{bottom:863.790000px;}
.y14{bottom:865.590000px;}
.yb8{bottom:866.310000px;}
.yec{bottom:867.750000px;}
.y44{bottom:870.630000px;}
.y71{bottom:874.770000px;}
.y13{bottom:886.290000px;}
.y43{bottom:891.330000px;}
.y93{bottom:891.690000px;}
.yb7{bottom:894.030000px;}
.yeb{bottom:895.470000px;}
.y70{bottom:898.890000px;}
.y12{bottom:906.990000px;}
.y42{bottom:912.030000px;}
.y92{bottom:919.410000px;}
.yb6{bottom:921.750000px;}
.y6f{bottom:923.010000px;}
.yea{bottom:923.370000px;}
.y11{bottom:927.690000px;}
.y41{bottom:932.730000px;}
.y6e{bottom:947.130000px;}
.y10{bottom:948.390000px;}
.yb5{bottom:949.650000px;}
.ye9{bottom:950.550000px;}
.y40{bottom:953.430000px;}
.yf{bottom:966.930000px;}
.y6d{bottom:971.250000px;}
.y3f{bottom:974.130000px;}
.yb4{bottom:977.370000px;}
.y3e{bottom:994.830000px;}
.y6c{bottom:995.370000px;}
.ye{bottom:1000.050000px;}
.yb3{bottom:1005.090000px;}
.ye8{bottom:1007.790000px;}
.yd{bottom:1015.530000px;}
.y6b{bottom:1019.670000px;}
.yb2{bottom:1032.810000px;}
.yc{bottom:1036.230000px;}
.y6a{bottom:1043.790000px;}
.yb{bottom:1056.570000px;}
.y3d{bottom:1056.930000px;}
.yb1{bottom:1060.710000px;}
.ye7{bottom:1064.850000px;}
.y69{bottom:1067.910000px;}
.ya{bottom:1076.010000px;}
.y3c{bottom:1077.630000px;}
.yb0{bottom:1088.430000px;}
.y9{bottom:1091.670000px;}
.y68{bottom:1092.030000px;}
.y3b{bottom:1098.330000px;}
.y8{bottom:1115.790000px;}
.y67{bottom:1116.150000px;}
.y3a{bottom:1119.030000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h1a{height:20.692500px;}
.h14{height:20.730000px;}
.h1c{height:29.678906px;}
.h3{height:33.120000px;}
.h7{height:38.697900px;}
.h10{height:40.964766px;}
.h11{height:40.985156px;}
.h17{height:41.385000px;}
.h19{height:41.392500px;}
.hd{height:42.086250px;}
.h5{height:44.098500px;}
.he{height:47.321367px;}
.ha{height:48.616875px;}
.h1e{height:50.273438px;}
.hf{height:52.628906px;}
.h13{height:58.819922px;}
.h15{height:62.085000px;}
.h18{height:62.121000px;}
.h2{height:65.884219px;}
.hc{height:70.628906px;}
.h16{height:70.664062px;}
.hb{height:72.562500px;}
.h1d{height:74.004654px;}
.h8{height:78.626953px;}
.h1b{height:82.635820px;}
.h12{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.276000px;}
.w2{width:66.225000px;}
.w4{width:66.270000px;}
.w5{width:95.601000px;}
.w6{width:374.473500px;}
.w7{width:374.475000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x5{left:10.620000px;}
.x1b{left:12.240000px;}
.x16{left:15.480000px;}
.x23{left:21.090000px;}
.x15{left:23.070000px;}
.x8{left:25.185000px;}
.x3{left:26.460000px;}
.x17{left:29.190000px;}
.x1c{left:31.710000px;}
.x22{left:42.150000px;}
.x1{left:63.900000px;}
.x20{left:65.370000px;}
.x29{left:68.580000px;}
.x1f{left:75.810000px;}
.x9{left:77.400000px;}
.x2a{left:82.260000px;}
.x25{left:85.530000px;}
.x2c{left:95.976000px;}
.x28{left:97.776000px;}
.xf{left:106.416000px;}
.x11{left:117.936000px;}
.x18{left:121.710000px;}
.x1e{left:124.050000px;}
.x1d{left:135.570000px;}
.x12{left:142.770000px;}
.x21{left:144.208500px;}
.x1a{left:146.188500px;}
.x24{left:152.490000px;}
.x13{left:156.268500px;}
.x19{left:157.530000px;}
.x7{left:195.165000px;}
.x2b{left:199.830000px;}
.xd{left:225.570000px;}
.xa{left:231.690000px;}
.x26{left:271.470000px;}
.xe{left:311.295000px;}
.xc{left:318.135000px;}
.x4{left:447.915000px;}
.xb{left:452.055000px;}
.x10{left:473.325000px;}
.x2{left:714.390000px;}
.x27{left:736.170000px;}
.x6{left:821.850000px;}
@media print{
.v2{vertical-align:-69.760000pt;}
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls10{letter-spacing:-0.328533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.211733pt;}
.ls7{letter-spacing:0.303467pt;}
.ls3{letter-spacing:16.000000pt;}
.ls2{letter-spacing:28.160000pt;}
.ls14{letter-spacing:30.336000pt;}
.ls0{letter-spacing:114.186667pt;}
.ls12{letter-spacing:170.208000pt;}
.ls13{letter-spacing:1309.386667pt;}
.ws6{word-spacing:-19.023467pt;}
.ws8{word-spacing:-18.753280pt;}
.ws7{word-spacing:-18.744960pt;}
.ws5{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.391467pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-0.318613pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-2.047360pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.555627pt;}
._d{width:3.112960pt;}
._9{width:4.096000pt;}
._a{width:5.292373pt;}
._2b{width:6.275200pt;}
._c{width:7.168000pt;}
._24{width:8.128000pt;}
._e{width:9.454080pt;}
._8{width:10.408960pt;}
._17{width:11.310080pt;}
._18{width:12.362667pt;}
._26{width:13.290667pt;}
._b{width:14.464000pt;}
._28{width:15.653120pt;}
._7{width:17.024000pt;}
._25{width:18.026667pt;}
._f{width:19.136000pt;}
._10{width:20.309333pt;}
._6{width:21.587627pt;}
._5{width:22.528000pt;}
._3{width:23.872000pt;}
._4{width:25.024000pt;}
._1a{width:25.920000pt;}
._2e{width:26.941760pt;}
._13{width:27.840000pt;}
._33{width:28.799360pt;}
._14{width:29.717333pt;}
._19{width:30.656000pt;}
._1e{width:31.779413pt;}
._15{width:32.704000pt;}
._31{width:34.295040pt;}
._2a{width:35.387520pt;}
._22{width:36.608000pt;}
._23{width:37.539413pt;}
._2{width:39.338667pt;}
._1b{width:41.152000pt;}
._1c{width:42.304000pt;}
._30{width:43.205760pt;}
._2f{width:45.182720pt;}
._27{width:46.112427pt;}
._1f{width:47.104000pt;}
._20{width:48.000000pt;}
._35{width:49.280000pt;}
._1d{width:51.136000pt;}
._12{width:52.602880pt;}
._11{width:53.610667pt;}
._21{width:55.232000pt;}
._32{width:66.688000pt;}
._2d{width:68.055680pt;}
._16{width:69.120000pt;}
._2c{width:82.817280pt;}
._34{width:170.411733pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:3.680000pt;}
.ydf{bottom:3.986667pt;}
.ye5{bottom:3.993333pt;}
.yd9{bottom:4.000000pt;}
.y6{bottom:4.800000pt;}
.y4{bottom:7.200000pt;}
.y7{bottom:8.000000pt;}
.y5{bottom:13.920000pt;}
.ye1{bottom:22.386667pt;}
.ye4{bottom:22.388000pt;}
.yd8{bottom:22.400000pt;}
.yde{bottom:22.426667pt;}
.yd7{bottom:40.800000pt;}
.ydd{bottom:40.826667pt;}
.y2{bottom:51.200000pt;}
.y120{bottom:73.152000pt;}
.y66{bottom:73.632000pt;}
.yaf{bottom:76.672000pt;}
.yd3{bottom:78.752000pt;}
.y108{bottom:80.032000pt;}
.y141{bottom:82.432000pt;}
.ye6{bottom:89.478667pt;}
.y91{bottom:90.592000pt;}
.y65{bottom:95.072000pt;}
.y11f{bottom:97.792000pt;}
.y39{bottom:100.352000pt;}
.y140{bottom:100.832000pt;}
.yae{bottom:101.312000pt;}
.yd2{bottom:103.392000pt;}
.y107{bottom:104.832000pt;}
.y90{bottom:112.032000pt;}
.y38{bottom:112.992000pt;}
.y64{bottom:116.672000pt;}
.y13f{bottom:119.232000pt;}
.ye3{bottom:121.958667pt;}
.y11e{bottom:122.592000pt;}
.yad{bottom:125.952000pt;}
.yd1{bottom:128.032000pt;}
.y106{bottom:129.472000pt;}
.y37{bottom:131.392000pt;}
.y8f{bottom:133.466667pt;}
.y13e{bottom:137.626667pt;}
.y63{bottom:138.106667pt;}
.y11d{bottom:147.226667pt;}
.y36{bottom:149.786667pt;}
.yac{bottom:150.586667pt;}
.yd0{bottom:152.826667pt;}
.y105{bottom:154.106667pt;}
.y8e{bottom:154.906667pt;}
.y13d{bottom:156.026667pt;}
.y62{bottom:159.546667pt;}
.y35{bottom:168.186667pt;}
.y11c{bottom:171.866667pt;}
.ye2{bottom:172.680000pt;}
.y13c{bottom:174.426667pt;}
.yab{bottom:175.386667pt;}
.y8d{bottom:176.346667pt;}
.ycf{bottom:177.466667pt;}
.y104{bottom:178.746667pt;}
.y61{bottom:180.986667pt;}
.y34{bottom:186.586667pt;}
.y13b{bottom:192.826667pt;}
.y11b{bottom:196.506667pt;}
.y8c{bottom:197.946667pt;}
.yaa{bottom:200.026667pt;}
.yce{bottom:202.106667pt;}
.y60{bottom:202.426667pt;}
.y103{bottom:203.546667pt;}
.y33{bottom:204.986667pt;}
.y13a{bottom:211.226667pt;}
.y8b{bottom:219.386667pt;}
.y11a{bottom:221.306667pt;}
.y32{bottom:223.386667pt;}
.ye0{bottom:223.560000pt;}
.y5f{bottom:223.866667pt;}
.ya9{bottom:224.666667pt;}
.ycd{bottom:226.906667pt;}
.y102{bottom:228.186667pt;}
.y139{bottom:229.626667pt;}
.y8a{bottom:240.826667pt;}
.y31{bottom:241.786667pt;}
.y5e{bottom:245.466667pt;}
.y119{bottom:245.946667pt;}
.y138{bottom:248.026667pt;}
.ya8{bottom:249.306667pt;}
.ycc{bottom:251.546667pt;}
.y101{bottom:252.826667pt;}
.y30{bottom:260.186667pt;}
.y89{bottom:262.266667pt;}
.y137{bottom:266.426667pt;}
.y5d{bottom:266.906667pt;}
.y118{bottom:270.586667pt;}
.ya7{bottom:274.106667pt;}
.ydc{bottom:274.280000pt;}
.ycb{bottom:276.186667pt;}
.y100{bottom:277.626667pt;}
.y2f{bottom:278.586667pt;}
.y88{bottom:283.706667pt;}
.y136{bottom:284.826667pt;}
.y5c{bottom:288.346667pt;}
.y117{bottom:295.426667pt;}
.y2e{bottom:297.026667pt;}
.ya6{bottom:298.786667pt;}
.yca{bottom:300.866667pt;}
.yff{bottom:302.306667pt;}
.y135{bottom:303.266667pt;}
.y87{bottom:305.186667pt;}
.y5b{bottom:309.826667pt;}
.y2d{bottom:315.426667pt;}
.y116{bottom:320.066667pt;}
.y134{bottom:321.666667pt;}
.ya5{bottom:323.426667pt;}
.yc9{bottom:325.666667pt;}
.y86{bottom:326.626667pt;}
.yfe{bottom:326.946667pt;}
.y5a{bottom:331.266667pt;}
.y2c{bottom:333.826667pt;}
.y133{bottom:340.066667pt;}
.ydb{bottom:343.586667pt;}
.y115{bottom:344.706667pt;}
.y85{bottom:348.226667pt;}
.yc8{bottom:350.306667pt;}
.yfd{bottom:351.586667pt;}
.y2b{bottom:352.226667pt;}
.y59{bottom:352.706667pt;}
.y132{bottom:358.466667pt;}
.y114{bottom:369.346667pt;}
.y84{bottom:369.666667pt;}
.y2a{bottom:370.626667pt;}
.ya4{bottom:372.866667pt;}
.y58{bottom:374.146667pt;}
.yc7{bottom:374.946667pt;}
.yfc{bottom:376.386667pt;}
.y131{bottom:376.866667pt;}
.y29{bottom:389.026667pt;}
.y83{bottom:391.106667pt;}
.y113{bottom:394.146667pt;}
.yda{bottom:394.306667pt;}
.y130{bottom:395.266667pt;}
.y57{bottom:395.746667pt;}
.ya3{bottom:397.506667pt;}
.yc6{bottom:399.746667pt;}
.yfb{bottom:401.026667pt;}
.y28{bottom:407.426667pt;}
.y82{bottom:412.546667pt;}
.y12f{bottom:413.666667pt;}
.y56{bottom:417.186667pt;}
.y112{bottom:418.786667pt;}
.ya2{bottom:422.146667pt;}
.yc5{bottom:424.386667pt;}
.yfa{bottom:425.666667pt;}
.y27{bottom:425.826667pt;}
.y12e{bottom:432.066667pt;}
.y81{bottom:433.986667pt;}
.y55{bottom:438.626667pt;}
.y111{bottom:443.426667pt;}
.y26{bottom:444.226667pt;}
.yd6{bottom:445.186667pt;}
.ya1{bottom:446.946667pt;}
.yc4{bottom:449.026667pt;}
.yf9{bottom:450.306667pt;}
.y12d{bottom:450.466667pt;}
.y80{bottom:455.426667pt;}
.y54{bottom:460.066667pt;}
.y25{bottom:462.626667pt;}
.y110{bottom:468.226667pt;}
.y12c{bottom:468.866667pt;}
.ya0{bottom:471.586667pt;}
.yc3{bottom:473.666667pt;}
.yf8{bottom:475.106667pt;}
.y7f{bottom:477.026667pt;}
.y24{bottom:481.026667pt;}
.y53{bottom:481.506667pt;}
.y12b{bottom:487.266667pt;}
.y10f{bottom:492.866667pt;}
.y9f{bottom:496.226667pt;}
.y7e{bottom:498.466667pt;}
.y23{bottom:499.426667pt;}
.yf7{bottom:499.746667pt;}
.y52{bottom:502.946667pt;}
.y12a{bottom:505.666667pt;}
.yd4{bottom:514.306667pt;}
.y10e{bottom:517.506667pt;}
.y22{bottom:517.826667pt;}
.y7d{bottom:519.906667pt;}
.y9e{bottom:521.026667pt;}
.yc2{bottom:523.106667pt;}
.y129{bottom:524.066667pt;}
.yf6{bottom:524.386667pt;}
.y51{bottom:524.546667pt;}
.y21{bottom:534.973333pt;}
.y7c{bottom:541.373333pt;}
.y10d{bottom:542.173333pt;}
.y128{bottom:542.493333pt;}
.y9d{bottom:545.693333pt;}
.y50{bottom:546.013333pt;}
.yc1{bottom:547.773333pt;}
.y20{bottom:548.573333pt;}
.yf5{bottom:549.213333pt;}
.y127{bottom:560.893333pt;}
.y7b{bottom:562.813333pt;}
.y1f{bottom:566.973333pt;}
.y4f{bottom:567.453333pt;}
.y9c{bottom:570.333333pt;}
.yc0{bottom:572.573333pt;}
.yf4{bottom:573.853333pt;}
.y126{bottom:579.293333pt;}
.y7a{bottom:584.253333pt;}
.y1e{bottom:585.373333pt;}
.y4e{bottom:588.893333pt;}
.y10c{bottom:591.613333pt;}
.y9b{bottom:594.973333pt;}
.ybf{bottom:597.213333pt;}
.y125{bottom:597.693333pt;}
.yf3{bottom:598.493333pt;}
.y1d{bottom:603.773333pt;}
.y79{bottom:605.693333pt;}
.y4d{bottom:610.333333pt;}
.y124{bottom:616.093333pt;}
.y10b{bottom:616.253333pt;}
.y9a{bottom:619.773333pt;}
.ybe{bottom:621.853333pt;}
.y1c{bottom:622.173333pt;}
.yf2{bottom:623.133333pt;}
.y78{bottom:627.293333pt;}
.y4c{bottom:631.773333pt;}
.y123{bottom:634.493333pt;}
.y1b{bottom:640.573333pt;}
.y10a{bottom:640.893333pt;}
.y99{bottom:644.413333pt;}
.ybd{bottom:646.493333pt;}
.yf1{bottom:647.933333pt;}
.y77{bottom:648.733333pt;}
.y4b{bottom:650.973333pt;}
.y122{bottom:652.893333pt;}
.y1a{bottom:658.973333pt;}
.y109{bottom:661.213333pt;}
.y4a{bottom:663.453333pt;}
.y98{bottom:669.053333pt;}
.y76{bottom:670.173333pt;}
.ybc{bottom:671.293333pt;}
.yf0{bottom:672.573333pt;}
.y19{bottom:677.373333pt;}
.y49{bottom:681.853333pt;}
.y75{bottom:691.613333pt;}
.y97{bottom:693.693333pt;}
.y18{bottom:695.773333pt;}
.ybb{bottom:695.933333pt;}
.yef{bottom:697.213333pt;}
.y48{bottom:700.253333pt;}
.y121{bottom:706.813333pt;}
.y74{bottom:713.053333pt;}
.y17{bottom:714.173333pt;}
.y96{bottom:718.493333pt;}
.y47{bottom:718.653333pt;}
.yba{bottom:720.573333pt;}
.yee{bottom:722.013333pt;}
.y16{bottom:732.573333pt;}
.y73{bottom:734.493333pt;}
.y46{bottom:737.053333pt;}
.y95{bottom:743.133333pt;}
.yb9{bottom:745.213333pt;}
.yed{bottom:746.653333pt;}
.y15{bottom:750.973333pt;}
.y45{bottom:755.453333pt;}
.y72{bottom:756.093333pt;}
.y94{bottom:767.813333pt;}
.y14{bottom:769.413333pt;}
.yb8{bottom:770.053333pt;}
.yec{bottom:771.333333pt;}
.y44{bottom:773.893333pt;}
.y71{bottom:777.573333pt;}
.y13{bottom:787.813333pt;}
.y43{bottom:792.293333pt;}
.y93{bottom:792.613333pt;}
.yb7{bottom:794.693333pt;}
.yeb{bottom:795.973333pt;}
.y70{bottom:799.013333pt;}
.y12{bottom:806.213333pt;}
.y42{bottom:810.693333pt;}
.y92{bottom:817.253333pt;}
.yb6{bottom:819.333333pt;}
.y6f{bottom:820.453333pt;}
.yea{bottom:820.773333pt;}
.y11{bottom:824.613333pt;}
.y41{bottom:829.093333pt;}
.y6e{bottom:841.893333pt;}
.y10{bottom:843.013333pt;}
.yb5{bottom:844.133333pt;}
.ye9{bottom:844.933333pt;}
.y40{bottom:847.493333pt;}
.yf{bottom:859.493333pt;}
.y6d{bottom:863.333333pt;}
.y3f{bottom:865.893333pt;}
.yb4{bottom:868.773333pt;}
.y3e{bottom:884.293333pt;}
.y6c{bottom:884.773333pt;}
.ye{bottom:888.933333pt;}
.yb3{bottom:893.413333pt;}
.ye8{bottom:895.813333pt;}
.yd{bottom:902.693333pt;}
.y6b{bottom:906.373333pt;}
.yb2{bottom:918.053333pt;}
.yc{bottom:921.093333pt;}
.y6a{bottom:927.813333pt;}
.yb{bottom:939.173333pt;}
.y3d{bottom:939.493333pt;}
.yb1{bottom:942.853333pt;}
.ye7{bottom:946.533333pt;}
.y69{bottom:949.253333pt;}
.ya{bottom:956.453333pt;}
.y3c{bottom:957.893333pt;}
.yb0{bottom:967.493333pt;}
.y9{bottom:970.373333pt;}
.y68{bottom:970.693333pt;}
.y3b{bottom:976.293333pt;}
.y8{bottom:991.813333pt;}
.y67{bottom:992.133333pt;}
.y3a{bottom:994.693333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h1a{height:18.393333pt;}
.h14{height:18.426667pt;}
.h1c{height:26.381250pt;}
.h3{height:29.440000pt;}
.h7{height:34.398133pt;}
.h10{height:36.413125pt;}
.h11{height:36.431250pt;}
.h17{height:36.786667pt;}
.h19{height:36.793333pt;}
.hd{height:37.410000pt;}
.h5{height:39.198667pt;}
.he{height:42.063437pt;}
.ha{height:43.215000pt;}
.h1e{height:44.687500pt;}
.hf{height:46.781250pt;}
.h13{height:52.284375pt;}
.h15{height:55.186667pt;}
.h18{height:55.218667pt;}
.h2{height:58.563750pt;}
.hc{height:62.781250pt;}
.h16{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h8{height:69.890625pt;}
.h1b{height:73.454062pt;}
.h12{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:50.912000pt;}
.w2{width:58.866667pt;}
.w4{width:58.906667pt;}
.w5{width:84.978667pt;}
.w6{width:332.865333pt;}
.w7{width:332.866667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x5{left:9.440000pt;}
.x1b{left:10.880000pt;}
.x16{left:13.760000pt;}
.x23{left:18.746667pt;}
.x15{left:20.506667pt;}
.x8{left:22.386667pt;}
.x3{left:23.520000pt;}
.x17{left:25.946667pt;}
.x1c{left:28.186667pt;}
.x22{left:37.466667pt;}
.x1{left:56.800000pt;}
.x20{left:58.106667pt;}
.x29{left:60.960000pt;}
.x1f{left:67.386667pt;}
.x9{left:68.800000pt;}
.x2a{left:73.120000pt;}
.x25{left:76.026667pt;}
.x2c{left:85.312000pt;}
.x28{left:86.912000pt;}
.xf{left:94.592000pt;}
.x11{left:104.832000pt;}
.x18{left:108.186667pt;}
.x1e{left:110.266667pt;}
.x1d{left:120.506667pt;}
.x12{left:126.906667pt;}
.x21{left:128.185333pt;}
.x1a{left:129.945333pt;}
.x24{left:135.546667pt;}
.x13{left:138.905333pt;}
.x19{left:140.026667pt;}
.x7{left:173.480000pt;}
.x2b{left:177.626667pt;}
.xd{left:200.506667pt;}
.xa{left:205.946667pt;}
.x26{left:241.306667pt;}
.xe{left:276.706667pt;}
.xc{left:282.786667pt;}
.x4{left:398.146667pt;}
.xb{left:401.826667pt;}
.x10{left:420.733333pt;}
.x2{left:635.013333pt;}
.x27{left:654.373333pt;}
.x6{left:730.533333pt;}
}




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