
    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_13ddd3f22052ce2cd5c3f9ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1a43c86992cf1498d067bcf4.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_eb65cafcac2bc6756f39f894.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_84fa9dfdca36a8ec475d7662.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6dbf510fd2b6fdfd817b03a2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c593fe27e92dc075c76d6fff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_913e06e80330b43511bad2b6.woff2')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_5ccf2c7c5a711a16452ccec2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_f80b282a394648c4125b4638.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ce49ab9d109b807a93f42361.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-77.040000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.846000px;}
.ls28{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.025920px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls2a{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.738000px;}
.ls11{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.828000px;}
.ls1b{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.800000px;}
.ls1e{letter-spacing:5.400000px;}
.ls1d{letter-spacing:6.120000px;}
.ls16{letter-spacing:6.660000px;}
.ls25{letter-spacing:6.840000px;}
.ls17{letter-spacing:7.560000px;}
.ls26{letter-spacing:8.820000px;}
.ls18{letter-spacing:13.140000px;}
.ls24{letter-spacing:17.640000px;}
.ls1f{letter-spacing:18.360000px;}
.ls21{letter-spacing:19.080000px;}
.ls1a{letter-spacing:25.308000px;}
.ls22{letter-spacing:31.320000px;}
.lsa{letter-spacing:49.788000px;}
.ls27{letter-spacing:52.200000px;}
.ls8{letter-spacing:52.668000px;}
.ls23{letter-spacing:53.640000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.431360px;}
.wsf{word-spacing:-19.414080px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wse{word-spacing:-14.436000px;}
.ws7{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.824000px;}
.ws11{word-spacing:-13.626000px;}
.ws13{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.672000px;}
.wsb{word-spacing:-9.792000px;}
.ws15{word-spacing:-9.072000px;}
.wsc{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._32{margin-left:-3.150000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._e{width:2.124000px;}
._b{width:3.240000px;}
._f{width:4.260000px;}
._11{width:5.729280px;}
._c{width:7.236000px;}
._7{width:8.262000px;}
._8{width:9.342000px;}
._d{width:10.746000px;}
._13{width:11.757024px;}
._14{width:12.981840px;}
._17{width:14.526000px;}
._9{width:15.606000px;}
._12{width:17.011200px;}
._10{width:18.198000px;}
._6{width:19.818000px;}
._a{width:21.192000px;}
._1a{width:22.314000px;}
._20{width:23.400000px;}
._15{width:25.380000px;}
._16{width:26.676000px;}
._1e{width:27.726000px;}
._19{width:29.376000px;}
._18{width:30.834000px;}
._1b{width:32.670000px;}
._1c{width:33.804000px;}
._1d{width:35.586000px;}
._1f{width:36.612000px;}
._25{width:37.800000px;}
._30{width:39.228000px;}
._28{width:40.554000px;}
._2c{width:42.582000px;}
._21{width:43.848000px;}
._22{width:44.898000px;}
._2d{width:45.930000px;}
._29{width:47.034000px;}
._2e{width:49.032000px;}
._2f{width:50.220000px;}
._38{width:51.588000px;}
._2a{width:54.054000px;}
._2b{width:55.134000px;}
._31{width:57.402000px;}
._34{width:65.664000px;}
._27{width:68.202000px;}
._26{width:69.606000px;}
._23{width:72.414000px;}
._24{width:74.034000px;}
._36{width:75.618000px;}
._37{width:77.190000px;}
._3{width:78.192000px;}
._33{width:101.682000px;}
._4{width:157.860000px;}
._35{width:350.460000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y39{bottom:68.790000px;}
.y38{bottom:88.590000px;}
.y90{bottom:107.280000px;}
.yc6{bottom:107.460000px;}
.y37{bottom:108.390000px;}
.y2c{bottom:115.920000px;}
.y78{bottom:116.280000px;}
.y8f{bottom:125.100000px;}
.yc5{bottom:125.280000px;}
.y111{bottom:127.080000px;}
.y36{bottom:128.190000px;}
.y2b{bottom:133.740000px;}
.y77{bottom:134.100000px;}
.y8e{bottom:143.100000px;}
.y110{bottom:145.080000px;}
.y35{bottom:148.170000px;}
.y2a{bottom:151.740000px;}
.y76{bottom:152.100000px;}
.y8d{bottom:160.920000px;}
.yc4{bottom:161.100000px;}
.y10f{bottom:162.900000px;}
.y34{bottom:167.970000px;}
.y29{bottom:169.560000px;}
.y75{bottom:169.920000px;}
.y8c{bottom:178.740000px;}
.yc3{bottom:178.920000px;}
.y10e{bottom:180.720000px;}
.y28{bottom:187.380000px;}
.y74{bottom:187.740000px;}
.y33{bottom:187.815000px;}
.y8b{bottom:196.560000px;}
.yc2{bottom:196.740000px;}
.y10d{bottom:198.540000px;}
.y27{bottom:205.200000px;}
.y73{bottom:205.590000px;}
.y32{bottom:207.615000px;}
.y8a{bottom:214.050000px;}
.yba{bottom:214.410000px;}
.yc1{bottom:214.590000px;}
.y10c{bottom:216.390000px;}
.yb5{bottom:223.050000px;}
.y72{bottom:223.410000px;}
.y26{bottom:225.030000px;}
.y31{bottom:227.415000px;}
.ybc{bottom:231.870000px;}
.yd6{bottom:232.230000px;}
.yc0{bottom:232.410000px;}
.y10b{bottom:234.210000px;}
.yb4{bottom:240.870000px;}
.y71{bottom:241.230000px;}
.y30{bottom:247.395000px;}
.ybb{bottom:249.870000px;}
.ybf{bottom:250.230000px;}
.y10a{bottom:252.210000px;}
.y70{bottom:259.230000px;}
.y25{bottom:259.950000px;}
.y2f{bottom:267.195000px;}
.yd5{bottom:268.050000px;}
.yb3{bottom:268.230000px;}
.y109{bottom:270.030000px;}
.y2d{bottom:270.720000px;}
.y6f{bottom:277.050000px;}
.yd4{bottom:285.870000px;}
.yb2{bottom:286.050000px;}
.y108{bottom:287.850000px;}
.y3b{bottom:290.190000px;}
.ybe{bottom:294.510000px;}
.y24{bottom:294.690000px;}
.y6e{bottom:294.870000px;}
.y2e{bottom:297.435000px;}
.yd3{bottom:303.690000px;}
.yb1{bottom:303.870000px;}
.y107{bottom:305.670000px;}
.ybd{bottom:312.330000px;}
.y6d{bottom:312.690000px;}
.y3a{bottom:319.710000px;}
.yd2{bottom:321.510000px;}
.yb0{bottom:321.690000px;}
.y106{bottom:323.490000px;}
.y23{bottom:329.430000px;}
.y6c{bottom:330.510000px;}
.yaf{bottom:339.510000px;}
.y105{bottom:341.490000px;}
.y6b{bottom:348.510000px;}
.y22{bottom:355.170000px;}
.yd1{bottom:357.330000px;}
.yae{bottom:357.510000px;}
.y104{bottom:359.310000px;}
.y6a{bottom:366.330000px;}
.y120{bottom:374.250000px;}
.yd0{bottom:375.150000px;}
.yad{bottom:375.330000px;}
.y103{bottom:377.130000px;}
.y21{bottom:381.090000px;}
.y69{bottom:384.150000px;}
.ycf{bottom:392.970000px;}
.yac{bottom:393.150000px;}
.y102{bottom:394.950000px;}
.y11f{bottom:399.990000px;}
.y68{bottom:401.970000px;}
.y20{bottom:406.830000px;}
.yce{bottom:410.790000px;}
.yab{bottom:410.970000px;}
.y101{bottom:412.770000px;}
.y67{bottom:419.790000px;}
.y11e{bottom:425.730000px;}
.ycd{bottom:428.610000px;}
.yaa{bottom:428.790000px;}
.y100{bottom:430.590000px;}
.y1f{bottom:432.570000px;}
.y66{bottom:437.610000px;}
.ya9{bottom:446.655000px;}
.yff{bottom:448.635000px;}
.y11d{bottom:451.695000px;}
.y65{bottom:455.655000px;}
.ycc{bottom:464.475000px;}
.ya8{bottom:464.655000px;}
.y1d{bottom:465.375000px;}
.yfe{bottom:466.455000px;}
.y64{bottom:473.475000px;}
.y11c{bottom:477.435000px;}
.ycb{bottom:481.935000px;}
.ya7{bottom:482.475000px;}
.yfd{bottom:484.275000px;}
.y63{bottom:491.295000px;}
.y1c{bottom:492.375000px;}
.yca{bottom:499.755000px;}
.ya6{bottom:500.295000px;}
.yfc{bottom:502.095000px;}
.y11b{bottom:503.175000px;}
.y62{bottom:509.115000px;}
.ya5{bottom:518.115000px;}
.y1b{bottom:519.195000px;}
.yfb{bottom:519.915000px;}
.yb6{bottom:526.575000px;}
.y61{bottom:526.935000px;}
.y11a{bottom:528.915000px;}
.ya4{bottom:535.935000px;}
.yfa{bottom:537.915000px;}
.y60{bottom:544.935000px;}
.y1a{bottom:546.015000px;}
.ya3{bottom:553.935000px;}
.y119{bottom:554.835000px;}
.yf9{bottom:555.735000px;}
.y5f{bottom:562.755000px;}
.ya2{bottom:571.755000px;}
.y19{bottom:572.835000px;}
.yf8{bottom:573.555000px;}
.y5e{bottom:580.575000px;}
.ya1{bottom:589.575000px;}
.yf7{bottom:591.375000px;}
.y5d{bottom:598.395000px;}
.y18{bottom:599.295000px;}
.y1e{bottom:599.655000px;}
.y118{bottom:606.315000px;}
.ya0{bottom:607.395000px;}
.yf6{bottom:609.195000px;}
.y5c{bottom:616.215000px;}
.y9f{bottom:625.215000px;}
.y17{bottom:627.735000px;}
.y117{bottom:632.055000px;}
.y5b{bottom:634.035000px;}
.yf5{bottom:638.175000px;}
.y9e{bottom:643.035000px;}
.y5a{bottom:652.035000px;}
.y16{bottom:654.195000px;}
.y116{bottom:657.975000px;}
.y9d{bottom:661.035000px;}
.y59{bottom:669.855000px;}
.yf4{bottom:670.935000px;}
.y9c{bottom:678.885000px;}
.y115{bottom:683.745000px;}
.y15{bottom:685.005000px;}
.y58{bottom:687.705000px;}
.yf3{bottom:688.785000px;}
.y9b{bottom:696.705000px;}
.y57{bottom:705.525000px;}
.yf2{bottom:706.605000px;}
.y114{bottom:709.485000px;}
.y9a{bottom:714.525000px;}
.y56{bottom:723.345000px;}
.yf1{bottom:724.425000px;}
.y99{bottom:732.345000px;}
.y14{bottom:733.785000px;}
.y113{bottom:735.225000px;}
.y55{bottom:741.165000px;}
.yf0{bottom:742.245000px;}
.y98{bottom:750.165000px;}
.y112{bottom:758.805000px;}
.y54{bottom:759.165000px;}
.yef{bottom:760.245000px;}
.y97{bottom:768.165000px;}
.y53{bottom:776.985000px;}
.y13{bottom:777.705000px;}
.yee{bottom:778.065000px;}
.y96{bottom:785.985000px;}
.y52{bottom:794.805000px;}
.yed{bottom:795.885000px;}
.y95{bottom:803.805000px;}
.y51{bottom:812.625000px;}
.yec{bottom:813.705000px;}
.y94{bottom:821.625000px;}
.y12{bottom:828.465000px;}
.y50{bottom:830.085000px;}
.y89{bottom:830.445000px;}
.yeb{bottom:831.525000px;}
.y93{bottom:839.445000px;}
.y4f{bottom:848.085000px;}
.y88{bottom:848.445000px;}
.yea{bottom:849.345000px;}
.y92{bottom:857.445000px;}
.y4e{bottom:865.905000px;}
.y87{bottom:866.265000px;}
.ye9{bottom:867.345000px;}
.y11{bottom:874.545000px;}
.y91{bottom:875.265000px;}
.y86{bottom:884.085000px;}
.ye8{bottom:885.165000px;}
.y4d{bottom:893.085000px;}
.y10{bottom:899.745000px;}
.y85{bottom:901.905000px;}
.ye7{bottom:902.985000px;}
.y4c{bottom:910.950000px;}
.yf{bottom:919.590000px;}
.y84{bottom:919.770000px;}
.ye6{bottom:920.850000px;}
.y4b{bottom:928.770000px;}
.y83{bottom:937.590000px;}
.ye5{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y4a{bottom:946.590000px;}
.y82{bottom:955.590000px;}
.ye4{bottom:956.670000px;}
.yd{bottom:959.010000px;}
.y49{bottom:964.590000px;}
.y81{bottom:973.410000px;}
.ye3{bottom:974.490000px;}
.yc{bottom:979.170000px;}
.y48{bottom:982.410000px;}
.y80{bottom:991.230000px;}
.ye2{bottom:992.310000px;}
.y47{bottom:1000.230000px;}
.y7f{bottom:1009.050000px;}
.ye1{bottom:1010.130000px;}
.y46{bottom:1018.050000px;}
.yb{bottom:1019.130000px;}
.y7e{bottom:1026.870000px;}
.ye0{bottom:1027.950000px;}
.ya{bottom:1031.190000px;}
.y45{bottom:1035.870000px;}
.y9{bottom:1043.250000px;}
.y7d{bottom:1044.870000px;}
.ydf{bottom:1045.770000px;}
.y44{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.yb9{bottom:1062.330000px;}
.y7c{bottom:1062.690000px;}
.yde{bottom:1063.770000px;}
.y7{bottom:1069.890000px;}
.y43{bottom:1071.690000px;}
.yb8{bottom:1080.150000px;}
.y7b{bottom:1080.510000px;}
.ydd{bottom:1081.590000px;}
.y42{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.yb7{bottom:1097.970000px;}
.y7a{bottom:1098.330000px;}
.ydc{bottom:1099.410000px;}
.y41{bottom:1107.330000px;}
.y79{bottom:1115.790000px;}
.yc9{bottom:1116.150000px;}
.ydb{bottom:1117.230000px;}
.y40{bottom:1125.150000px;}
.yc8{bottom:1133.610000px;}
.yda{bottom:1135.050000px;}
.y3f{bottom:1142.970000px;}
.yc7{bottom:1151.640000px;}
.yd9{bottom:1153.080000px;}
.y3e{bottom:1161.000000px;}
.yd8{bottom:1170.900000px;}
.y3d{bottom:1178.820000px;}
.yd7{bottom:1190.700000px;}
.y3c{bottom:1196.640000px;}
.h2{height:31.135500px;}
.hf{height:39.049805px;}
.h7{height:40.985156px;}
.h18{height:44.507812px;}
.h17{height:52.971680px;}
.h3{height:52.998047px;}
.hd{height:54.421875px;}
.h14{height:55.503491px;}
.h13{height:56.214844px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h19{height:59.074453px;}
.h15{height:59.092031px;}
.h16{height:59.212031px;}
.h9{height:60.226875px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hb{height:66.757500px;}
.he{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h10{height:324.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x11{left:10.800000px;}
.x10{left:38.340000px;}
.x1{left:45.364500px;}
.x12{left:49.140000px;}
.x5{left:54.000000px;}
.x13{left:81.000000px;}
.x14{left:108.036000px;}
.xb{left:165.450000px;}
.x2{left:222.370500px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:288.975000px;}
.xd{left:310.575000px;}
.xe{left:314.355000px;}
.xc{left:354.315000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.xf{left:473.505000px;}
.x15{left:500.505000px;}
.x16{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.752000pt;}
.ls28{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.023040pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.656000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls1b{letter-spacing:0.832000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:4.800000pt;}
.ls1d{letter-spacing:5.440000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls25{letter-spacing:6.080000pt;}
.ls17{letter-spacing:6.720000pt;}
.ls26{letter-spacing:7.840000pt;}
.ls18{letter-spacing:11.680000pt;}
.ls24{letter-spacing:15.680000pt;}
.ls1f{letter-spacing:16.320000pt;}
.ls21{letter-spacing:16.960000pt;}
.ls1a{letter-spacing:22.496000pt;}
.ls22{letter-spacing:27.840000pt;}
.lsa{letter-spacing:44.256000pt;}
.ls27{letter-spacing:46.400000pt;}
.ls8{letter-spacing:46.816000pt;}
.ls23{letter-spacing:47.680000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.272320pt;}
.wsf{word-spacing:-17.256960pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.832000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.288000pt;}
.ws11{word-spacing:-12.112000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.264000pt;}
.wsb{word-spacing:-8.704000pt;}
.ws15{word-spacing:-8.064000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._32{margin-left:-2.800000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._e{width:1.888000pt;}
._b{width:2.880000pt;}
._f{width:3.786667pt;}
._11{width:5.092693pt;}
._c{width:6.432000pt;}
._7{width:7.344000pt;}
._8{width:8.304000pt;}
._d{width:9.552000pt;}
._13{width:10.450688pt;}
._14{width:11.539413pt;}
._17{width:12.912000pt;}
._9{width:13.872000pt;}
._12{width:15.121067pt;}
._10{width:16.176000pt;}
._6{width:17.616000pt;}
._a{width:18.837333pt;}
._1a{width:19.834667pt;}
._20{width:20.800000pt;}
._15{width:22.560000pt;}
._16{width:23.712000pt;}
._1e{width:24.645333pt;}
._19{width:26.112000pt;}
._18{width:27.408000pt;}
._1b{width:29.040000pt;}
._1c{width:30.048000pt;}
._1d{width:31.632000pt;}
._1f{width:32.544000pt;}
._25{width:33.600000pt;}
._30{width:34.869333pt;}
._28{width:36.048000pt;}
._2c{width:37.850667pt;}
._21{width:38.976000pt;}
._22{width:39.909333pt;}
._2d{width:40.826667pt;}
._29{width:41.808000pt;}
._2e{width:43.584000pt;}
._2f{width:44.640000pt;}
._38{width:45.856000pt;}
._2a{width:48.048000pt;}
._2b{width:49.008000pt;}
._31{width:51.024000pt;}
._34{width:58.368000pt;}
._27{width:60.624000pt;}
._26{width:61.872000pt;}
._23{width:64.368000pt;}
._24{width:65.808000pt;}
._36{width:67.216000pt;}
._37{width:68.613333pt;}
._3{width:69.504000pt;}
._33{width:90.384000pt;}
._4{width:140.320000pt;}
._35{width:311.520000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y39{bottom:61.146667pt;}
.y38{bottom:78.746667pt;}
.y90{bottom:95.360000pt;}
.yc6{bottom:95.520000pt;}
.y37{bottom:96.346667pt;}
.y2c{bottom:103.040000pt;}
.y78{bottom:103.360000pt;}
.y8f{bottom:111.200000pt;}
.yc5{bottom:111.360000pt;}
.y111{bottom:112.960000pt;}
.y36{bottom:113.946667pt;}
.y2b{bottom:118.880000pt;}
.y77{bottom:119.200000pt;}
.y8e{bottom:127.200000pt;}
.y110{bottom:128.960000pt;}
.y35{bottom:131.706667pt;}
.y2a{bottom:134.880000pt;}
.y76{bottom:135.200000pt;}
.y8d{bottom:143.040000pt;}
.yc4{bottom:143.200000pt;}
.y10f{bottom:144.800000pt;}
.y34{bottom:149.306667pt;}
.y29{bottom:150.720000pt;}
.y75{bottom:151.040000pt;}
.y8c{bottom:158.880000pt;}
.yc3{bottom:159.040000pt;}
.y10e{bottom:160.640000pt;}
.y28{bottom:166.560000pt;}
.y74{bottom:166.880000pt;}
.y33{bottom:166.946667pt;}
.y8b{bottom:174.720000pt;}
.yc2{bottom:174.880000pt;}
.y10d{bottom:176.480000pt;}
.y27{bottom:182.400000pt;}
.y73{bottom:182.746667pt;}
.y32{bottom:184.546667pt;}
.y8a{bottom:190.266667pt;}
.yba{bottom:190.586667pt;}
.yc1{bottom:190.746667pt;}
.y10c{bottom:192.346667pt;}
.yb5{bottom:198.266667pt;}
.y72{bottom:198.586667pt;}
.y26{bottom:200.026667pt;}
.y31{bottom:202.146667pt;}
.ybc{bottom:206.106667pt;}
.yd6{bottom:206.426667pt;}
.yc0{bottom:206.586667pt;}
.y10b{bottom:208.186667pt;}
.yb4{bottom:214.106667pt;}
.y71{bottom:214.426667pt;}
.y30{bottom:219.906667pt;}
.ybb{bottom:222.106667pt;}
.ybf{bottom:222.426667pt;}
.y10a{bottom:224.186667pt;}
.y70{bottom:230.426667pt;}
.y25{bottom:231.066667pt;}
.y2f{bottom:237.506667pt;}
.yd5{bottom:238.266667pt;}
.yb3{bottom:238.426667pt;}
.y109{bottom:240.026667pt;}
.y2d{bottom:240.640000pt;}
.y6f{bottom:246.266667pt;}
.yd4{bottom:254.106667pt;}
.yb2{bottom:254.266667pt;}
.y108{bottom:255.866667pt;}
.y3b{bottom:257.946667pt;}
.ybe{bottom:261.786667pt;}
.y24{bottom:261.946667pt;}
.y6e{bottom:262.106667pt;}
.y2e{bottom:264.386667pt;}
.yd3{bottom:269.946667pt;}
.yb1{bottom:270.106667pt;}
.y107{bottom:271.706667pt;}
.ybd{bottom:277.626667pt;}
.y6d{bottom:277.946667pt;}
.y3a{bottom:284.186667pt;}
.yd2{bottom:285.786667pt;}
.yb0{bottom:285.946667pt;}
.y106{bottom:287.546667pt;}
.y23{bottom:292.826667pt;}
.y6c{bottom:293.786667pt;}
.yaf{bottom:301.786667pt;}
.y105{bottom:303.546667pt;}
.y6b{bottom:309.786667pt;}
.y22{bottom:315.706667pt;}
.yd1{bottom:317.626667pt;}
.yae{bottom:317.786667pt;}
.y104{bottom:319.386667pt;}
.y6a{bottom:325.626667pt;}
.y120{bottom:332.666667pt;}
.yd0{bottom:333.466667pt;}
.yad{bottom:333.626667pt;}
.y103{bottom:335.226667pt;}
.y21{bottom:338.746667pt;}
.y69{bottom:341.466667pt;}
.ycf{bottom:349.306667pt;}
.yac{bottom:349.466667pt;}
.y102{bottom:351.066667pt;}
.y11f{bottom:355.546667pt;}
.y68{bottom:357.306667pt;}
.y20{bottom:361.626667pt;}
.yce{bottom:365.146667pt;}
.yab{bottom:365.306667pt;}
.y101{bottom:366.906667pt;}
.y67{bottom:373.146667pt;}
.y11e{bottom:378.426667pt;}
.ycd{bottom:380.986667pt;}
.yaa{bottom:381.146667pt;}
.y100{bottom:382.746667pt;}
.y1f{bottom:384.506667pt;}
.y66{bottom:388.986667pt;}
.ya9{bottom:397.026667pt;}
.yff{bottom:398.786667pt;}
.y11d{bottom:401.506667pt;}
.y65{bottom:405.026667pt;}
.ycc{bottom:412.866667pt;}
.ya8{bottom:413.026667pt;}
.y1d{bottom:413.666667pt;}
.yfe{bottom:414.626667pt;}
.y64{bottom:420.866667pt;}
.y11c{bottom:424.386667pt;}
.ycb{bottom:428.386667pt;}
.ya7{bottom:428.866667pt;}
.yfd{bottom:430.466667pt;}
.y63{bottom:436.706667pt;}
.y1c{bottom:437.666667pt;}
.yca{bottom:444.226667pt;}
.ya6{bottom:444.706667pt;}
.yfc{bottom:446.306667pt;}
.y11b{bottom:447.266667pt;}
.y62{bottom:452.546667pt;}
.ya5{bottom:460.546667pt;}
.y1b{bottom:461.506667pt;}
.yfb{bottom:462.146667pt;}
.yb6{bottom:468.066667pt;}
.y61{bottom:468.386667pt;}
.y11a{bottom:470.146667pt;}
.ya4{bottom:476.386667pt;}
.yfa{bottom:478.146667pt;}
.y60{bottom:484.386667pt;}
.y1a{bottom:485.346667pt;}
.ya3{bottom:492.386667pt;}
.y119{bottom:493.186667pt;}
.yf9{bottom:493.986667pt;}
.y5f{bottom:500.226667pt;}
.ya2{bottom:508.226667pt;}
.y19{bottom:509.186667pt;}
.yf8{bottom:509.826667pt;}
.y5e{bottom:516.066667pt;}
.ya1{bottom:524.066667pt;}
.yf7{bottom:525.666667pt;}
.y5d{bottom:531.906667pt;}
.y18{bottom:532.706667pt;}
.y1e{bottom:533.026667pt;}
.y118{bottom:538.946667pt;}
.ya0{bottom:539.906667pt;}
.yf6{bottom:541.506667pt;}
.y5c{bottom:547.746667pt;}
.y9f{bottom:555.746667pt;}
.y17{bottom:557.986667pt;}
.y117{bottom:561.826667pt;}
.y5b{bottom:563.586667pt;}
.yf5{bottom:567.266667pt;}
.y9e{bottom:571.586667pt;}
.y5a{bottom:579.586667pt;}
.y16{bottom:581.506667pt;}
.y116{bottom:584.866667pt;}
.y9d{bottom:587.586667pt;}
.y59{bottom:595.426667pt;}
.yf4{bottom:596.386667pt;}
.y9c{bottom:603.453333pt;}
.y115{bottom:607.773333pt;}
.y15{bottom:608.893333pt;}
.y58{bottom:611.293333pt;}
.yf3{bottom:612.253333pt;}
.y9b{bottom:619.293333pt;}
.y57{bottom:627.133333pt;}
.yf2{bottom:628.093333pt;}
.y114{bottom:630.653333pt;}
.y9a{bottom:635.133333pt;}
.y56{bottom:642.973333pt;}
.yf1{bottom:643.933333pt;}
.y99{bottom:650.973333pt;}
.y14{bottom:652.253333pt;}
.y113{bottom:653.533333pt;}
.y55{bottom:658.813333pt;}
.yf0{bottom:659.773333pt;}
.y98{bottom:666.813333pt;}
.y112{bottom:674.493333pt;}
.y54{bottom:674.813333pt;}
.yef{bottom:675.773333pt;}
.y97{bottom:682.813333pt;}
.y53{bottom:690.653333pt;}
.y13{bottom:691.293333pt;}
.yee{bottom:691.613333pt;}
.y96{bottom:698.653333pt;}
.y52{bottom:706.493333pt;}
.yed{bottom:707.453333pt;}
.y95{bottom:714.493333pt;}
.y51{bottom:722.333333pt;}
.yec{bottom:723.293333pt;}
.y94{bottom:730.333333pt;}
.y12{bottom:736.413333pt;}
.y50{bottom:737.853333pt;}
.y89{bottom:738.173333pt;}
.yeb{bottom:739.133333pt;}
.y93{bottom:746.173333pt;}
.y4f{bottom:753.853333pt;}
.y88{bottom:754.173333pt;}
.yea{bottom:754.973333pt;}
.y92{bottom:762.173333pt;}
.y4e{bottom:769.693333pt;}
.y87{bottom:770.013333pt;}
.ye9{bottom:770.973333pt;}
.y11{bottom:777.373333pt;}
.y91{bottom:778.013333pt;}
.y86{bottom:785.853333pt;}
.ye8{bottom:786.813333pt;}
.y4d{bottom:793.853333pt;}
.y10{bottom:799.773333pt;}
.y85{bottom:801.693333pt;}
.ye7{bottom:802.653333pt;}
.y4c{bottom:809.733333pt;}
.yf{bottom:817.413333pt;}
.y84{bottom:817.573333pt;}
.ye6{bottom:818.533333pt;}
.y4b{bottom:825.573333pt;}
.y83{bottom:833.413333pt;}
.ye5{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y4a{bottom:841.413333pt;}
.y82{bottom:849.413333pt;}
.ye4{bottom:850.373333pt;}
.yd{bottom:852.453333pt;}
.y49{bottom:857.413333pt;}
.y81{bottom:865.253333pt;}
.ye3{bottom:866.213333pt;}
.yc{bottom:870.373333pt;}
.y48{bottom:873.253333pt;}
.y80{bottom:881.093333pt;}
.ye2{bottom:882.053333pt;}
.y47{bottom:889.093333pt;}
.y7f{bottom:896.933333pt;}
.ye1{bottom:897.893333pt;}
.y46{bottom:904.933333pt;}
.yb{bottom:905.893333pt;}
.y7e{bottom:912.773333pt;}
.ye0{bottom:913.733333pt;}
.ya{bottom:916.613333pt;}
.y45{bottom:920.773333pt;}
.y9{bottom:927.333333pt;}
.y7d{bottom:928.773333pt;}
.ydf{bottom:929.573333pt;}
.y44{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.yb9{bottom:944.293333pt;}
.y7c{bottom:944.613333pt;}
.yde{bottom:945.573333pt;}
.y7{bottom:951.013333pt;}
.y43{bottom:952.613333pt;}
.yb8{bottom:960.133333pt;}
.y7b{bottom:960.453333pt;}
.ydd{bottom:961.413333pt;}
.y42{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.yb7{bottom:975.973333pt;}
.y7a{bottom:976.293333pt;}
.ydc{bottom:977.253333pt;}
.y41{bottom:984.293333pt;}
.y79{bottom:991.813333pt;}
.yc9{bottom:992.133333pt;}
.ydb{bottom:993.093333pt;}
.y40{bottom:1000.133333pt;}
.yc8{bottom:1007.653333pt;}
.yda{bottom:1008.933333pt;}
.y3f{bottom:1015.973333pt;}
.yc7{bottom:1023.680000pt;}
.yd9{bottom:1024.960000pt;}
.y3e{bottom:1032.000000pt;}
.yd8{bottom:1040.800000pt;}
.y3d{bottom:1047.840000pt;}
.yd7{bottom:1058.400000pt;}
.y3c{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.hf{height:34.710938pt;}
.h7{height:36.431250pt;}
.h18{height:39.562500pt;}
.h17{height:47.085938pt;}
.h3{height:47.109375pt;}
.hd{height:48.375000pt;}
.h14{height:49.336436pt;}
.h13{height:49.968750pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h19{height:52.510625pt;}
.h15{height:52.526250pt;}
.h16{height:52.632917pt;}
.h9{height:53.535000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hb{height:59.340000pt;}
.he{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h10{height:288.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x11{left:9.600000pt;}
.x10{left:34.080000pt;}
.x1{left:40.324000pt;}
.x12{left:43.680000pt;}
.x5{left:48.000000pt;}
.x13{left:72.000000pt;}
.x14{left:96.032000pt;}
.xb{left:147.066667pt;}
.x2{left:197.662667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:256.866667pt;}
.xd{left:276.066667pt;}
.xe{left:279.426667pt;}
.xc{left:314.946667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.xf{left:420.893333pt;}
.x15{left:444.893333pt;}
.x16{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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