
    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_5a254c373028cdc477c81c5d.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_dc9546651e84a2778edd7cad.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_77c1411880ba47fcb0d2084f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eb64c168d077925ef943e83b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b502669179f4d6f4968b73d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_d304e6117cb7921c43e09816.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a4ce3b376ebc8e5383653f42.woff2')format("woff");}.ff7{font-family:ff7;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:-69.120000px;}
.v7{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v8{vertical-align:-61.380000px;}
.v4{vertical-align:-18.000000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.702000px;}
.ls25{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.220800px;}
.ls23{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.027360px;}
.ls18{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.702000px;}
.ls15{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.738000px;}
.ls1c{letter-spacing:0.936000px;}
.ls26{letter-spacing:2.988000px;}
.ls4{letter-spacing:3.060000px;}
.ls21{letter-spacing:30.348000px;}
.ls5{letter-spacing:52.560000px;}
.ls7{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1a{letter-spacing:537.420000px;}
.ls1b{letter-spacing:971.760000px;}
.ls13{letter-spacing:973.200000px;}
.ls14{letter-spacing:1233.840000px;}
.ls1e{letter-spacing:1270.560000px;}
.ls6{letter-spacing:1367.040000px;}
.ls1f{letter-spacing:1410.960000px;}
.ls20{letter-spacing:1467.840000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.436000px;}
.ws14{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.716000px;}
.wse{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws11{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.248000px;}
.wsa{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.798000px;}
.wsb{word-spacing:-12.780000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._b{margin-left:-4.312560px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.335920px;}
._6{width:3.834000px;}
._7{width:5.454000px;}
._a{width:7.154880px;}
._9{width:9.696000px;}
._8{width:11.088000px;}
._d{width:288.893760px;}
._10{width:366.654000px;}
._e{width:527.268000px;}
._c{width:1041.420000px;}
._f{width:1115.274000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yad{bottom:2.880000px;}
.y82{bottom:3.060000px;}
.y86{bottom:3.240000px;}
.yef{bottom:3.285000px;}
.y8c{bottom:3.420000px;}
.yc0{bottom:18.360000px;}
.ye2{bottom:18.390000px;}
.y84{bottom:18.540000px;}
.y94{bottom:18.720000px;}
.yc8{bottom:18.900000px;}
.ybf{bottom:33.840000px;}
.y83{bottom:34.020000px;}
.yc3{bottom:34.200000px;}
.yc7{bottom:34.380000px;}
.yca{bottom:49.860000px;}
.yc5{bottom:49.905000px;}
.y2{bottom:57.960000px;}
.yc9{bottom:65.340000px;}
.yc4{bottom:65.385000px;}
.ycd{bottom:65.520000px;}
.y1{bottom:76.860000px;}
.ycc{bottom:81.000000px;}
.yce{bottom:96.480000px;}
.y11b{bottom:98.280000px;}
.y7f{bottom:101.520000px;}
.ybc{bottom:106.560000px;}
.y39{bottom:107.640000px;}
.y11a{bottom:113.760000px;}
.y7e{bottom:117.180000px;}
.ye0{bottom:117.900000px;}
.ybb{bottom:122.220000px;}
.y38{bottom:123.120000px;}
.y119{bottom:129.240000px;}
.y7d{bottom:132.660000px;}
.ydf{bottom:133.560000px;}
.yba{bottom:135.216000px;}
.y37{bottom:138.816000px;}
.y118{bottom:144.936000px;}
.y7c{bottom:148.176000px;}
.yde{bottom:149.256000px;}
.yb9{bottom:152.670000px;}
.y36{bottom:154.290000px;}
.y117{bottom:160.050000px;}
.y7b{bottom:163.470000px;}
.ydd{bottom:164.730000px;}
.y35{bottom:169.770000px;}
.yb8{bottom:169.950000px;}
.y116{bottom:175.710000px;}
.y7a{bottom:179.130000px;}
.ydc{bottom:180.390000px;}
.y34{bottom:185.250000px;}
.yb7{bottom:187.410000px;}
.y115{bottom:191.370000px;}
.y79{bottom:194.610000px;}
.ydb{bottom:195.870000px;}
.y33{bottom:200.910000px;}
.yb6{bottom:204.870000px;}
.y114{bottom:206.850000px;}
.y78{bottom:210.630000px;}
.yda{bottom:211.350000px;}
.y32{bottom:216.390000px;}
.yb5{bottom:222.150000px;}
.y113{bottom:222.870000px;}
.y77{bottom:226.110000px;}
.yd9{bottom:226.830000px;}
.y31{bottom:231.870000px;}
.y112{bottom:238.170000px;}
.yb4{bottom:239.610000px;}
.y76{bottom:241.770000px;}
.yd8{bottom:242.490000px;}
.y30{bottom:247.350000px;}
.y75{bottom:256.890000px;}
.yb3{bottom:257.070000px;}
.yd7{bottom:257.970000px;}
.y2f{bottom:263.010000px;}
.y111{bottom:269.670000px;}
.y74{bottom:272.550000px;}
.yd6{bottom:273.630000px;}
.yb2{bottom:274.350000px;}
.y2e{bottom:278.490000px;}
.y110{bottom:284.970000px;}
.yd5{bottom:286.590000px;}
.y73{bottom:288.210000px;}
.yb1{bottom:291.810000px;}
.y2d{bottom:293.970000px;}
.y72{bottom:304.050000px;}
.yb0{bottom:309.270000px;}
.y2c{bottom:309.450000px;}
.y10f{bottom:316.470000px;}
.y71{bottom:319.530000px;}
.y2b{bottom:325.110000px;}
.yaf{bottom:326.550000px;}
.y10e{bottom:332.130000px;}
.y70{bottom:335.190000px;}
.y2a{bottom:340.590000px;}
.yae{bottom:344.010000px;}
.y10d{bottom:347.250000px;}
.yd4{bottom:349.410000px;}
.y6f{bottom:350.670000px;}
.y29{bottom:356.070000px;}
.yac{bottom:361.470000px;}
.y6e{bottom:366.330000px;}
.y28{bottom:371.550000px;}
.y10c{bottom:378.750000px;}
.y6d{bottom:381.450000px;}
.y10b{bottom:394.275000px;}
.y6c{bottom:397.155000px;}
.yab{bottom:397.695000px;}
.y27{bottom:402.555000px;}
.y10a{bottom:409.935000px;}
.yd3{bottom:412.275000px;}
.y6b{bottom:413.175000px;}
.yaa{bottom:413.355000px;}
.y109{bottom:425.415000px;}
.y6a{bottom:428.295000px;}
.ya9{bottom:428.475000px;}
.y26{bottom:433.515000px;}
.y108{bottom:440.895000px;}
.ya8{bottom:444.135000px;}
.yd2{bottom:448.635000px;}
.y25{bottom:451.695000px;}
.y107{bottom:456.375000px;}
.y69{bottom:459.795000px;}
.y106{bottom:472.035000px;}
.y68{bottom:475.275000px;}
.y24{bottom:480.675000px;}
.y105{bottom:487.515000px;}
.y67{bottom:490.935000px;}
.y23{bottom:499.035000px;}
.yd1{bottom:500.655000px;}
.y104{bottom:502.995000px;}
.y66{bottom:506.415000px;}
.ya7{bottom:506.595000px;}
.y22{bottom:514.515000px;}
.y103{bottom:518.475000px;}
.y65{bottom:521.895000px;}
.ya6{bottom:522.435000px;}
.y21{bottom:529.995000px;}
.y102{bottom:534.135000px;}
.y64{bottom:537.375000px;}
.ya5{bottom:537.915000px;}
.y20{bottom:545.475000px;}
.y101{bottom:549.435000px;}
.yd0{bottom:552.675000px;}
.y63{bottom:553.035000px;}
.ya4{bottom:553.395000px;}
.y1f{bottom:561.135000px;}
.y62{bottom:568.515000px;}
.ya3{bottom:569.055000px;}
.y1e{bottom:576.615000px;}
.y100{bottom:580.575000px;}
.y61{bottom:584.175000px;}
.ya2{bottom:584.535000px;}
.y1d{bottom:592.095000px;}
.yff{bottom:596.415000px;}
.y60{bottom:599.655000px;}
.ya1{bottom:600.195000px;}
.ycf{bottom:604.695000px;}
.y1c{bottom:607.575000px;}
.yfe{bottom:612.075000px;}
.y5f{bottom:615.135000px;}
.ya0{bottom:615.675000px;}
.y1b{bottom:623.055000px;}
.yfd{bottom:627.555000px;}
.y5e{bottom:630.615000px;}
.y9f{bottom:631.155000px;}
.y1a{bottom:638.715000px;}
.yfc{bottom:643.065000px;}
.y5d{bottom:646.305000px;}
.y9e{bottom:646.845000px;}
.y19{bottom:654.405000px;}
.ycb{bottom:656.745000px;}
.yfb{bottom:658.725000px;}
.y5c{bottom:661.785000px;}
.y9d{bottom:662.325000px;}
.yfa{bottom:674.205000px;}
.y18{bottom:676.545000px;}
.y5b{bottom:677.265000px;}
.y9c{bottom:677.805000px;}
.yf9{bottom:689.685000px;}
.y5a{bottom:692.925000px;}
.y9b{bottom:693.285000px;}
.y17{bottom:703.185000px;}
.yf8{bottom:705.345000px;}
.y59{bottom:708.405000px;}
.y9a{bottom:708.945000px;}
.y16{bottom:718.665000px;}
.yf7{bottom:720.825000px;}
.y58{bottom:723.885000px;}
.y99{bottom:724.425000px;}
.y15{bottom:734.325000px;}
.yf6{bottom:736.485000px;}
.y57{bottom:739.365000px;}
.y98{bottom:740.085000px;}
.yf5{bottom:751.605000px;}
.y56{bottom:755.025000px;}
.y97{bottom:755.205000px;}
.yf4{bottom:764.925000px;}
.yc6{bottom:766.185000px;}
.y14{bottom:768.885000px;}
.y55{bottom:770.505000px;}
.y96{bottom:770.865000px;}
.yf3{bottom:785.265000px;}
.y54{bottom:786.165000px;}
.y95{bottom:786.885000px;}
.y13{bottom:789.045000px;}
.y93{bottom:799.845000px;}
.y53{bottom:801.645000px;}
.yf2{bottom:805.425000px;}
.y52{bottom:817.125000px;}
.y12{bottom:821.445000px;}
.yf1{bottom:825.585000px;}
.y92{bottom:831.525000px;}
.y51{bottom:832.605000px;}
.y11{bottom:843.765000px;}
.yc2{bottom:844.665000px;}
.y50{bottom:848.085000px;}
.y10{bottom:852.225000px;}
.y91{bottom:853.305000px;}
.y4f{bottom:863.745000px;}
.y90{bottom:875.085000px;}
.yf0{bottom:875.985000px;}
.yf{bottom:877.785000px;}
.y4e{bottom:879.225000px;}
.yee{bottom:889.305000px;}
.y4d{bottom:894.750000px;}
.y8f{bottom:896.910000px;}
.y4c{bottom:910.410000px;}
.yed{bottom:912.570000px;}
.ye{bottom:916.890000px;}
.y8e{bottom:918.690000px;}
.yc1{bottom:923.010000px;}
.y4b{bottom:925.890000px;}
.yec{bottom:935.790000px;}
.y8d{bottom:940.470000px;}
.yd{bottom:941.190000px;}
.y4a{bottom:941.370000px;}
.ybe{bottom:948.210000px;}
.y49{bottom:957.030000px;}
.yeb{bottom:959.010000px;}
.y8b{bottom:962.070000px;}
.y48{bottom:972.510000px;}
.y8a{bottom:983.850000px;}
.y47{bottom:987.990000px;}
.yea{bottom:994.290000px;}
.yc{bottom:1000.590000px;}
.y46{bottom:1003.470000px;}
.y11c{bottom:1003.650000px;}
.y89{bottom:1005.630000px;}
.ye9{bottom:1009.770000px;}
.y45{bottom:1019.130000px;}
.ye8{bottom:1025.430000px;}
.y88{bottom:1027.410000px;}
.y9{bottom:1034.070000px;}
.y44{bottom:1034.610000px;}
.yb{bottom:1039.290000px;}
.ye7{bottom:1040.910000px;}
.y87{bottom:1049.190000px;}
.y43{bottom:1050.090000px;}
.ye6{bottom:1056.210000px;}
.y8{bottom:1057.290000px;}
.y42{bottom:1065.570000px;}
.ybd{bottom:1065.750000px;}
.ye5{bottom:1069.530000px;}
.y85{bottom:1070.970000px;}
.ya{bottom:1071.330000px;}
.y41{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y81{bottom:1092.570000px;}
.ye4{bottom:1092.750000px;}
.y40{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y3f{bottom:1112.190000px;}
.ye3{bottom:1115.970000px;}
.y5{bottom:1122.990000px;}
.y3e{bottom:1127.850000px;}
.ye1{bottom:1139.370000px;}
.y4{bottom:1140.270000px;}
.y3d{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.y3c{bottom:1158.840000px;}
.y80{bottom:1159.020000px;}
.y3b{bottom:1175.220000px;}
.y3a{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h19{height:16.560000px;}
.h1a{height:16.740000px;}
.h2a{height:19.260000px;}
.h29{height:19.440000px;}
.h15{height:20.880000px;}
.h16{height:21.060000px;}
.h17{height:21.096000px;}
.h26{height:22.500000px;}
.h28{height:22.536000px;}
.h1c{height:24.300000px;}
.h18{height:30.960000px;}
.h25{height:30.996000px;}
.h27{height:31.140000px;}
.hc{height:35.314453px;}
.h22{height:35.460000px;}
.h11{height:38.158594px;}
.h14{height:46.620000px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.h1b{height:51.300000px;}
.h21{height:51.336000px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.hd{height:53.314453px;}
.h1f{height:53.332031px;}
.hf{height:54.421875px;}
.h2b{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.h24{height:62.100000px;}
.h23{height:62.136000px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h1e{height:77.580000px;}
.h1d{height:77.616000px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h20{height:108.720000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:66.240000px;}
.w17{width:71.100000px;}
.w13{width:71.316000px;}
.w14{width:71.640000px;}
.wd{width:83.556000px;}
.w1b{width:90.756000px;}
.w1c{width:91.080000px;}
.w15{width:95.256000px;}
.w3{width:96.696000px;}
.w6{width:97.056000px;}
.w5{width:97.236000px;}
.we{width:102.780000px;}
.w18{width:113.076000px;}
.w10{width:118.476000px;}
.w1d{width:121.356000px;}
.w4{width:125.280000px;}
.w7{width:127.620000px;}
.w19{width:130.176000px;}
.wf{width:140.256000px;}
.w11{width:158.610000px;}
.w1e{width:173.010000px;}
.wa{width:198.075000px;}
.w16{width:203.430000px;}
.wb{width:213.690000px;}
.w8{width:222.330000px;}
.w1a{width:268.590000px;}
.w9{width:545.325000px;}
.w12{width:605.130000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x3f{left:9.000000px;}
.x35{left:10.080000px;}
.x41{left:11.160000px;}
.x1a{left:13.140000px;}
.x17{left:15.120000px;}
.x3a{left:16.380000px;}
.x42{left:17.460000px;}
.x45{left:18.540000px;}
.x40{left:19.620000px;}
.x38{left:20.880000px;}
.x16{left:21.990000px;}
.x1f{left:24.480000px;}
.x15{left:26.490000px;}
.x3c{left:27.900000px;}
.x32{left:28.980000px;}
.x2{left:30.059987px;}
.x43{left:31.680000px;}
.x21{left:33.480000px;}
.x13{left:34.920000px;}
.x20{left:36.360000px;}
.x11{left:37.800000px;}
.x44{left:39.060000px;}
.x1c{left:40.350000px;}
.x23{left:41.580000px;}
.x36{left:43.200000px;}
.x1b{left:45.000000px;}
.xc{left:46.799987px;}
.xe{left:50.399987px;}
.x22{left:52.200000px;}
.x46{left:53.460000px;}
.x1e{left:55.440000px;}
.x59{left:57.240000px;}
.x48{left:58.350000px;}
.x3d{left:59.400000px;}
.x1d{left:60.480000px;}
.x39{left:61.770000px;}
.x47{left:62.820000px;}
.x8{left:65.339987px;}
.x3b{left:70.230000px;}
.xa{left:71.279987px;}
.x5b{left:74.339987px;}
.x3e{left:79.380000px;}
.x2a{left:81.765000px;}
.x2c{left:82.845000px;}
.x2d{left:84.825000px;}
.x28{left:86.265000px;}
.x4e{left:90.000000px;}
.x29{left:91.800000px;}
.x2b{left:95.220000px;}
.x24{left:96.885000px;}
.x2e{left:98.640000px;}
.x2f{left:117.216000px;}
.x53{left:122.625000px;}
.x50{left:161.130000px;}
.x54{left:168.690000px;}
.x10{left:180.390000px;}
.x30{left:183.810000px;}
.x49{left:215.865000px;}
.x4a{left:231.690000px;}
.x5{left:244.109987px;}
.x26{left:246.990000px;}
.x55{left:259.815000px;}
.x31{left:267.735000px;}
.x3{left:270.254987px;}
.x12{left:277.455000px;}
.x4{left:290.594987px;}
.x4b{left:303.375000px;}
.x4f{left:313.454987px;}
.x51{left:346.035000px;}
.x56{left:351.255000px;}
.xf{left:355.754987px;}
.x33{left:370.875000px;}
.x4c{left:375.375000px;}
.x14{left:403.095000px;}
.xd{left:412.454987px;}
.x9{left:424.514987px;}
.x5a{left:430.844987px;}
.x1{left:440.744987px;}
.x27{left:445.425000px;}
.xb{left:449.204987px;}
.x4d{left:470.985000px;}
.x57{left:472.965000px;}
.x52{left:476.565000px;}
.x6{left:478.904987px;}
.x18{left:500.685000px;}
.x7{left:506.444987px;}
.x34{left:511.485000px;}
.x19{left:598.110000px;}
.x37{left:630.330000px;}
.x58{left:646.350000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v7{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v8{vertical-align:-54.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.624000pt;}
.ls25{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.196267pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.024320pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.624000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.656000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls26{letter-spacing:2.656000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls21{letter-spacing:26.976000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls7{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1a{letter-spacing:477.706667pt;}
.ls1b{letter-spacing:863.786667pt;}
.ls13{letter-spacing:865.066667pt;}
.ls14{letter-spacing:1096.746667pt;}
.ls1e{letter-spacing:1129.386667pt;}
.ls6{letter-spacing:1215.146667pt;}
.ls1f{letter-spacing:1254.186667pt;}
.ls20{letter-spacing:1304.746667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.832000pt;}
.ws14{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws11{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.776000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.376000pt;}
.wsb{word-spacing:-11.360000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._b{margin-left:-3.833387pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.076373pt;}
._6{width:3.408000pt;}
._7{width:4.848000pt;}
._a{width:6.359893pt;}
._9{width:8.618667pt;}
._8{width:9.856000pt;}
._d{width:256.794453pt;}
._10{width:325.914667pt;}
._e{width:468.682667pt;}
._c{width:925.706667pt;}
._f{width:991.354667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.560000pt;}
.y82{bottom:2.720000pt;}
.y86{bottom:2.880000pt;}
.yef{bottom:2.920000pt;}
.y8c{bottom:3.040000pt;}
.yc0{bottom:16.320000pt;}
.ye2{bottom:16.346667pt;}
.y84{bottom:16.480000pt;}
.y94{bottom:16.640000pt;}
.yc8{bottom:16.800000pt;}
.ybf{bottom:30.080000pt;}
.y83{bottom:30.240000pt;}
.yc3{bottom:30.400000pt;}
.yc7{bottom:30.560000pt;}
.yca{bottom:44.320000pt;}
.yc5{bottom:44.360000pt;}
.y2{bottom:51.520000pt;}
.yc9{bottom:58.080000pt;}
.yc4{bottom:58.120000pt;}
.ycd{bottom:58.240000pt;}
.y1{bottom:68.320000pt;}
.ycc{bottom:72.000000pt;}
.yce{bottom:85.760000pt;}
.y11b{bottom:87.360000pt;}
.y7f{bottom:90.240000pt;}
.ybc{bottom:94.720000pt;}
.y39{bottom:95.680000pt;}
.y11a{bottom:101.120000pt;}
.y7e{bottom:104.160000pt;}
.ye0{bottom:104.800000pt;}
.ybb{bottom:108.640000pt;}
.y38{bottom:109.440000pt;}
.y119{bottom:114.880000pt;}
.y7d{bottom:117.920000pt;}
.ydf{bottom:118.720000pt;}
.yba{bottom:120.192000pt;}
.y37{bottom:123.392000pt;}
.y118{bottom:128.832000pt;}
.y7c{bottom:131.712000pt;}
.yde{bottom:132.672000pt;}
.yb9{bottom:135.706667pt;}
.y36{bottom:137.146667pt;}
.y117{bottom:142.266667pt;}
.y7b{bottom:145.306667pt;}
.ydd{bottom:146.426667pt;}
.y35{bottom:150.906667pt;}
.yb8{bottom:151.066667pt;}
.y116{bottom:156.186667pt;}
.y7a{bottom:159.226667pt;}
.ydc{bottom:160.346667pt;}
.y34{bottom:164.666667pt;}
.yb7{bottom:166.586667pt;}
.y115{bottom:170.106667pt;}
.y79{bottom:172.986667pt;}
.ydb{bottom:174.106667pt;}
.y33{bottom:178.586667pt;}
.yb6{bottom:182.106667pt;}
.y114{bottom:183.866667pt;}
.y78{bottom:187.226667pt;}
.yda{bottom:187.866667pt;}
.y32{bottom:192.346667pt;}
.yb5{bottom:197.466667pt;}
.y113{bottom:198.106667pt;}
.y77{bottom:200.986667pt;}
.yd9{bottom:201.626667pt;}
.y31{bottom:206.106667pt;}
.y112{bottom:211.706667pt;}
.yb4{bottom:212.986667pt;}
.y76{bottom:214.906667pt;}
.yd8{bottom:215.546667pt;}
.y30{bottom:219.866667pt;}
.y75{bottom:228.346667pt;}
.yb3{bottom:228.506667pt;}
.yd7{bottom:229.306667pt;}
.y2f{bottom:233.786667pt;}
.y111{bottom:239.706667pt;}
.y74{bottom:242.266667pt;}
.yd6{bottom:243.226667pt;}
.yb2{bottom:243.866667pt;}
.y2e{bottom:247.546667pt;}
.y110{bottom:253.306667pt;}
.yd5{bottom:254.746667pt;}
.y73{bottom:256.186667pt;}
.yb1{bottom:259.386667pt;}
.y2d{bottom:261.306667pt;}
.y72{bottom:270.266667pt;}
.yb0{bottom:274.906667pt;}
.y2c{bottom:275.066667pt;}
.y10f{bottom:281.306667pt;}
.y71{bottom:284.026667pt;}
.y2b{bottom:288.986667pt;}
.yaf{bottom:290.266667pt;}
.y10e{bottom:295.226667pt;}
.y70{bottom:297.946667pt;}
.y2a{bottom:302.746667pt;}
.yae{bottom:305.786667pt;}
.y10d{bottom:308.666667pt;}
.yd4{bottom:310.586667pt;}
.y6f{bottom:311.706667pt;}
.y29{bottom:316.506667pt;}
.yac{bottom:321.306667pt;}
.y6e{bottom:325.626667pt;}
.y28{bottom:330.266667pt;}
.y10c{bottom:336.666667pt;}
.y6d{bottom:339.066667pt;}
.y10b{bottom:350.466667pt;}
.y6c{bottom:353.026667pt;}
.yab{bottom:353.506667pt;}
.y27{bottom:357.826667pt;}
.y10a{bottom:364.386667pt;}
.yd3{bottom:366.466667pt;}
.y6b{bottom:367.266667pt;}
.yaa{bottom:367.426667pt;}
.y109{bottom:378.146667pt;}
.y6a{bottom:380.706667pt;}
.ya9{bottom:380.866667pt;}
.y26{bottom:385.346667pt;}
.y108{bottom:391.906667pt;}
.ya8{bottom:394.786667pt;}
.yd2{bottom:398.786667pt;}
.y25{bottom:401.506667pt;}
.y107{bottom:405.666667pt;}
.y69{bottom:408.706667pt;}
.y106{bottom:419.586667pt;}
.y68{bottom:422.466667pt;}
.y24{bottom:427.266667pt;}
.y105{bottom:433.346667pt;}
.y67{bottom:436.386667pt;}
.y23{bottom:443.586667pt;}
.yd1{bottom:445.026667pt;}
.y104{bottom:447.106667pt;}
.y66{bottom:450.146667pt;}
.ya7{bottom:450.306667pt;}
.y22{bottom:457.346667pt;}
.y103{bottom:460.866667pt;}
.y65{bottom:463.906667pt;}
.ya6{bottom:464.386667pt;}
.y21{bottom:471.106667pt;}
.y102{bottom:474.786667pt;}
.y64{bottom:477.666667pt;}
.ya5{bottom:478.146667pt;}
.y20{bottom:484.866667pt;}
.y101{bottom:488.386667pt;}
.yd0{bottom:491.266667pt;}
.y63{bottom:491.586667pt;}
.ya4{bottom:491.906667pt;}
.y1f{bottom:498.786667pt;}
.y62{bottom:505.346667pt;}
.ya3{bottom:505.826667pt;}
.y1e{bottom:512.546667pt;}
.y100{bottom:516.066667pt;}
.y61{bottom:519.266667pt;}
.ya2{bottom:519.586667pt;}
.y1d{bottom:526.306667pt;}
.yff{bottom:530.146667pt;}
.y60{bottom:533.026667pt;}
.ya1{bottom:533.506667pt;}
.ycf{bottom:537.506667pt;}
.y1c{bottom:540.066667pt;}
.yfe{bottom:544.066667pt;}
.y5f{bottom:546.786667pt;}
.ya0{bottom:547.266667pt;}
.y1b{bottom:553.826667pt;}
.yfd{bottom:557.826667pt;}
.y5e{bottom:560.546667pt;}
.y9f{bottom:561.026667pt;}
.y1a{bottom:567.746667pt;}
.yfc{bottom:571.613333pt;}
.y5d{bottom:574.493333pt;}
.y9e{bottom:574.973333pt;}
.y19{bottom:581.693333pt;}
.ycb{bottom:583.773333pt;}
.yfb{bottom:585.533333pt;}
.y5c{bottom:588.253333pt;}
.y9d{bottom:588.733333pt;}
.yfa{bottom:599.293333pt;}
.y18{bottom:601.373333pt;}
.y5b{bottom:602.013333pt;}
.y9c{bottom:602.493333pt;}
.yf9{bottom:613.053333pt;}
.y5a{bottom:615.933333pt;}
.y9b{bottom:616.253333pt;}
.y17{bottom:625.053333pt;}
.yf8{bottom:626.973333pt;}
.y59{bottom:629.693333pt;}
.y9a{bottom:630.173333pt;}
.y16{bottom:638.813333pt;}
.yf7{bottom:640.733333pt;}
.y58{bottom:643.453333pt;}
.y99{bottom:643.933333pt;}
.y15{bottom:652.733333pt;}
.yf6{bottom:654.653333pt;}
.y57{bottom:657.213333pt;}
.y98{bottom:657.853333pt;}
.yf5{bottom:668.093333pt;}
.y56{bottom:671.133333pt;}
.y97{bottom:671.293333pt;}
.yf4{bottom:679.933333pt;}
.yc6{bottom:681.053333pt;}
.y14{bottom:683.453333pt;}
.y55{bottom:684.893333pt;}
.y96{bottom:685.213333pt;}
.yf3{bottom:698.013333pt;}
.y54{bottom:698.813333pt;}
.y95{bottom:699.453333pt;}
.y13{bottom:701.373333pt;}
.y93{bottom:710.973333pt;}
.y53{bottom:712.573333pt;}
.yf2{bottom:715.933333pt;}
.y52{bottom:726.333333pt;}
.y12{bottom:730.173333pt;}
.yf1{bottom:733.853333pt;}
.y92{bottom:739.133333pt;}
.y51{bottom:740.093333pt;}
.y11{bottom:750.013333pt;}
.yc2{bottom:750.813333pt;}
.y50{bottom:753.853333pt;}
.y10{bottom:757.533333pt;}
.y91{bottom:758.493333pt;}
.y4f{bottom:767.773333pt;}
.y90{bottom:777.853333pt;}
.yf0{bottom:778.653333pt;}
.yf{bottom:780.253333pt;}
.y4e{bottom:781.533333pt;}
.yee{bottom:790.493333pt;}
.y4d{bottom:795.333333pt;}
.y8f{bottom:797.253333pt;}
.y4c{bottom:809.253333pt;}
.yed{bottom:811.173333pt;}
.ye{bottom:815.013333pt;}
.y8e{bottom:816.613333pt;}
.yc1{bottom:820.453333pt;}
.y4b{bottom:823.013333pt;}
.yec{bottom:831.813333pt;}
.y8d{bottom:835.973333pt;}
.yd{bottom:836.613333pt;}
.y4a{bottom:836.773333pt;}
.ybe{bottom:842.853333pt;}
.y49{bottom:850.693333pt;}
.yeb{bottom:852.453333pt;}
.y8b{bottom:855.173333pt;}
.y48{bottom:864.453333pt;}
.y8a{bottom:874.533333pt;}
.y47{bottom:878.213333pt;}
.yea{bottom:883.813333pt;}
.yc{bottom:889.413333pt;}
.y46{bottom:891.973333pt;}
.y11c{bottom:892.133333pt;}
.y89{bottom:893.893333pt;}
.ye9{bottom:897.573333pt;}
.y45{bottom:905.893333pt;}
.ye8{bottom:911.493333pt;}
.y88{bottom:913.253333pt;}
.y9{bottom:919.173333pt;}
.y44{bottom:919.653333pt;}
.yb{bottom:923.813333pt;}
.ye7{bottom:925.253333pt;}
.y87{bottom:932.613333pt;}
.y43{bottom:933.413333pt;}
.ye6{bottom:938.853333pt;}
.y8{bottom:939.813333pt;}
.y42{bottom:947.173333pt;}
.ybd{bottom:947.333333pt;}
.ye5{bottom:950.693333pt;}
.y85{bottom:951.973333pt;}
.ya{bottom:952.293333pt;}
.y41{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y81{bottom:971.173333pt;}
.ye4{bottom:971.333333pt;}
.y40{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y3f{bottom:988.613333pt;}
.ye3{bottom:991.973333pt;}
.y5{bottom:998.213333pt;}
.y3e{bottom:1002.533333pt;}
.ye1{bottom:1012.773333pt;}
.y4{bottom:1013.573333pt;}
.y3d{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.y3c{bottom:1030.080000pt;}
.y80{bottom:1030.240000pt;}
.y3b{bottom:1044.640000pt;}
.y3a{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h19{height:14.720000pt;}
.h1a{height:14.880000pt;}
.h2a{height:17.120000pt;}
.h29{height:17.280000pt;}
.h15{height:18.560000pt;}
.h16{height:18.720000pt;}
.h17{height:18.752000pt;}
.h26{height:20.000000pt;}
.h28{height:20.032000pt;}
.h1c{height:21.600000pt;}
.h18{height:27.520000pt;}
.h25{height:27.552000pt;}
.h27{height:27.680000pt;}
.hc{height:31.390625pt;}
.h22{height:31.520000pt;}
.h11{height:33.918750pt;}
.h14{height:41.440000pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.h1b{height:45.600000pt;}
.h21{height:45.632000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.hd{height:47.390625pt;}
.h1f{height:47.406250pt;}
.hf{height:48.375000pt;}
.h2b{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.h24{height:55.200000pt;}
.h23{height:55.232000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h1e{height:68.960000pt;}
.h1d{height:68.992000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h20{height:96.640000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:58.880000pt;}
.w17{width:63.200000pt;}
.w13{width:63.392000pt;}
.w14{width:63.680000pt;}
.wd{width:74.272000pt;}
.w1b{width:80.672000pt;}
.w1c{width:80.960000pt;}
.w15{width:84.672000pt;}
.w3{width:85.952000pt;}
.w6{width:86.272000pt;}
.w5{width:86.432000pt;}
.we{width:91.360000pt;}
.w18{width:100.512000pt;}
.w10{width:105.312000pt;}
.w1d{width:107.872000pt;}
.w4{width:111.360000pt;}
.w7{width:113.440000pt;}
.w19{width:115.712000pt;}
.wf{width:124.672000pt;}
.w11{width:140.986667pt;}
.w1e{width:153.786667pt;}
.wa{width:176.066667pt;}
.w16{width:180.826667pt;}
.wb{width:189.946667pt;}
.w8{width:197.626667pt;}
.w1a{width:238.746667pt;}
.w9{width:484.733333pt;}
.w12{width:537.893333pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x3f{left:8.000000pt;}
.x35{left:8.960000pt;}
.x41{left:9.920000pt;}
.x1a{left:11.680000pt;}
.x17{left:13.440000pt;}
.x3a{left:14.560000pt;}
.x42{left:15.520000pt;}
.x45{left:16.480000pt;}
.x40{left:17.440000pt;}
.x38{left:18.560000pt;}
.x16{left:19.546667pt;}
.x1f{left:21.760000pt;}
.x15{left:23.546667pt;}
.x3c{left:24.800000pt;}
.x32{left:25.760000pt;}
.x2{left:26.719988pt;}
.x43{left:28.160000pt;}
.x21{left:29.760000pt;}
.x13{left:31.040000pt;}
.x20{left:32.320000pt;}
.x11{left:33.600000pt;}
.x44{left:34.720000pt;}
.x1c{left:35.866667pt;}
.x23{left:36.960000pt;}
.x36{left:38.400000pt;}
.x1b{left:40.000000pt;}
.xc{left:41.599988pt;}
.xe{left:44.799988pt;}
.x22{left:46.400000pt;}
.x46{left:47.520000pt;}
.x1e{left:49.280000pt;}
.x59{left:50.880000pt;}
.x48{left:51.866667pt;}
.x3d{left:52.800000pt;}
.x1d{left:53.760000pt;}
.x39{left:54.906667pt;}
.x47{left:55.840000pt;}
.x8{left:58.079988pt;}
.x3b{left:62.426667pt;}
.xa{left:63.359988pt;}
.x5b{left:66.079988pt;}
.x3e{left:70.560000pt;}
.x2a{left:72.680000pt;}
.x2c{left:73.640000pt;}
.x2d{left:75.400000pt;}
.x28{left:76.680000pt;}
.x4e{left:80.000000pt;}
.x29{left:81.600000pt;}
.x2b{left:84.640000pt;}
.x24{left:86.120000pt;}
.x2e{left:87.680000pt;}
.x2f{left:104.192000pt;}
.x53{left:109.000000pt;}
.x50{left:143.226667pt;}
.x54{left:149.946667pt;}
.x10{left:160.346667pt;}
.x30{left:163.386667pt;}
.x49{left:191.880000pt;}
.x4a{left:205.946667pt;}
.x5{left:216.986655pt;}
.x26{left:219.546667pt;}
.x55{left:230.946667pt;}
.x31{left:237.986667pt;}
.x3{left:240.226655pt;}
.x12{left:246.626667pt;}
.x4{left:258.306655pt;}
.x4b{left:269.666667pt;}
.x4f{left:278.626655pt;}
.x51{left:307.586667pt;}
.x56{left:312.226667pt;}
.xf{left:316.226655pt;}
.x33{left:329.666667pt;}
.x4c{left:333.666667pt;}
.x14{left:358.306667pt;}
.xd{left:366.626655pt;}
.x9{left:377.346655pt;}
.x5a{left:382.973321pt;}
.x1{left:391.773321pt;}
.x27{left:395.933333pt;}
.xb{left:399.293321pt;}
.x4d{left:418.653333pt;}
.x57{left:420.413333pt;}
.x52{left:423.613333pt;}
.x6{left:425.693321pt;}
.x18{left:445.053333pt;}
.x7{left:450.173321pt;}
.x34{left:454.653333pt;}
.x19{left:531.653333pt;}
.x37{left:560.293333pt;}
.x58{left:574.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; }
  