
    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_bcecb65df7aaa828ed88ac01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.721191;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_f670c5ce6dc67893b0b3bf77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_08fe2bc881791605a7e822cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_165d7f43ec0fe11f77570772.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_ca85713d4b786c2dc04d6a72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_d0b2e246f6e74d20afe6f214.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_e15fab6d7e52a75895398f0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_0ce90d33aff89f18249225df.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_a946fc81da275b7e49099d10.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897461;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_831f3cbad0e0c2659288b6a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996094;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_b113a2b20a4d4a0190451fd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls16{letter-spacing:-0.708000px;}
.ls8{letter-spacing:-0.564000px;}
.lse{letter-spacing:-0.414000px;}
.lsf{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.192000px;}
.ls6{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.102000px;}
.lsc{letter-spacing:-0.060000px;}
.ls12{letter-spacing:-0.048000px;}
.ls11{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.492000px;}
.ls2{letter-spacing:0.496800px;}
.lsa{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.534000px;}
.ls13{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.546000px;}
.ls3{letter-spacing:0.556800px;}
.ls1{letter-spacing:0.676800px;}
.ls1c{letter-spacing:0.870000px;}
.lsd{letter-spacing:1.140000px;}
.ls10{letter-spacing:113.880000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws7{word-spacing:-15.048000px;}
.wsd{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.736000px;}
.wsf{word-spacing:-14.586000px;}
.ws4{word-spacing:-14.520000px;}
.wsb{word-spacing:-14.508000px;}
.wsc{word-spacing:-14.472000px;}
.ws11{word-spacing:-14.418000px;}
.wsa{word-spacing:-14.106000px;}
.ws6{word-spacing:-13.956000px;}
.wse{word-spacing:-13.812000px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.200000px;}
.ws9{word-spacing:-12.414000px;}
.ws3{word-spacing:-11.040000px;}
.ws2{word-spacing:-10.368000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-7.084800px;}
._1b{margin-left:-6.000000px;}
._1d{margin-left:-4.382400px;}
._15{margin-left:-3.102000px;}
._0{margin-left:-2.040000px;}
._2{margin-left:-1.035600px;}
._1{width:1.305600px;}
._14{width:2.510400px;}
._5{width:3.531600px;}
._4{width:4.752000px;}
._6{width:6.468000px;}
._7{width:7.899600px;}
._a{width:9.172800px;}
._17{width:10.297200px;}
._d{width:11.696400px;}
._16{width:13.332000px;}
._12{width:15.591600px;}
._11{width:16.654800px;}
._13{width:18.463200px;}
._22{width:19.656000px;}
._18{width:20.658000px;}
._1e{width:21.868800px;}
._1c{width:23.166000px;}
._10{width:24.678000px;}
._8{width:25.952400px;}
._9{width:27.456000px;}
._28{width:28.506000px;}
._29{width:30.020400px;}
._2e{width:31.531200px;}
._19{width:32.774400px;}
._c{width:33.799200px;}
._b{width:34.848000px;}
._2f{width:36.512400px;}
._23{width:38.122800px;}
._21{width:39.183600px;}
._e{width:40.340400px;}
._f{width:41.378400px;}
._24{width:45.684000px;}
._20{width:49.566000px;}
._1f{width:50.644800px;}
._27{width:51.792000px;}
._26{width:56.862000px;}
._2c{width:62.446800px;}
._2b{width:63.558000px;}
._25{width:91.584000px;}
._2d{width:113.880000px;}
._2a{width:309.528000px;}
._1a{width:1035.450000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs8{font-size:12.000000px;}
.fs4{font-size:30.000000px;}
.fs6{font-size:39.600000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:81.600000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.000000px;}
.yd9{bottom:3.045000px;}
.y30{bottom:3.600000px;}
.yf7{bottom:3.900000px;}
.yf4{bottom:3.915000px;}
.y15{bottom:5.745000px;}
.y19{bottom:12.900000px;}
.yd0{bottom:18.885000px;}
.yde{bottom:18.900000px;}
.yd4{bottom:18.915000px;}
.yd8{bottom:18.945000px;}
.y14{bottom:19.845000px;}
.y2f{bottom:23.100000px;}
.y13{bottom:34.545000px;}
.ydd{bottom:34.800000px;}
.yd3{bottom:34.815000px;}
.yd7{bottom:34.830000px;}
.y2e{bottom:42.300000px;}
.ye1{bottom:50.385000px;}
.ydc{bottom:50.400000px;}
.yd6{bottom:50.445000px;}
.y12{bottom:51.945000px;}
.y2d{bottom:61.800000px;}
.ydb{bottom:66.300000px;}
.y11{bottom:69.645000px;}
.y2c{bottom:81.015000px;}
.ya{bottom:84.937500px;}
.y10{bottom:87.345000px;}
.y46{bottom:87.937500px;}
.y7b{bottom:88.237500px;}
.y9{bottom:90.037500px;}
.y2b{bottom:100.500000px;}
.yf{bottom:104.745000px;}
.y45{bottom:105.637500px;}
.y41{bottom:109.237500px;}
.y40{bottom:114.637500px;}
.y2a{bottom:119.745000px;}
.y44{bottom:123.337500px;}
.ye{bottom:124.545000px;}
.y3f{bottom:126.937500px;}
.y3e{bottom:132.337500px;}
.y29{bottom:139.245000px;}
.y3d{bottom:144.637500px;}
.y79{bottom:147.037500px;}
.y3c{bottom:150.045000px;}
.yd{bottom:152.745000px;}
.y7a{bottom:158.430000px;}
.y28{bottom:158.445000px;}
.y10d{bottom:158.730000px;}
.y3b{bottom:162.330000px;}
.y78{bottom:166.545000px;}
.y16{bottom:168.690000px;}
.yc{bottom:177.090000px;}
.y26{bottom:177.945000px;}
.y10c{bottom:177.975000px;}
.y77{bottom:185.775000px;}
.y25{bottom:197.145000px;}
.y10b{bottom:197.475000px;}
.yab{bottom:198.375000px;}
.y76{bottom:204.975000px;}
.y3a{bottom:208.875000px;}
.y24{bottom:216.645000px;}
.y10a{bottom:216.675000px;}
.yaa{bottom:217.575000px;}
.y75{bottom:224.475000px;}
.y39{bottom:228.075000px;}
.ydf{bottom:232.275000px;}
.y23{bottom:235.845000px;}
.y109{bottom:236.175000px;}
.ya9{bottom:237.075000px;}
.y74{bottom:243.675000px;}
.y38{bottom:247.575000px;}
.y22{bottom:255.045000px;}
.y108{bottom:255.375000px;}
.ya8{bottom:256.275000px;}
.y73{bottom:263.175000px;}
.yda{bottom:264.375000px;}
.y37{bottom:266.775000px;}
.y21{bottom:274.545000px;}
.y107{bottom:274.875000px;}
.ya7{bottom:275.775000px;}
.y72{bottom:282.375000px;}
.y36{bottom:286.275000px;}
.y20{bottom:293.790000px;}
.y106{bottom:294.075000px;}
.ya6{bottom:294.975000px;}
.y71{bottom:301.875000px;}
.y35{bottom:305.475000px;}
.y105{bottom:313.275000px;}
.y1f{bottom:313.290000px;}
.ya5{bottom:314.475000px;}
.y70{bottom:321.075000px;}
.y34{bottom:324.975000px;}
.y1e{bottom:332.475000px;}
.y104{bottom:332.775000px;}
.ya4{bottom:333.675000px;}
.y6f{bottom:340.575000px;}
.yd5{bottom:343.875000px;}
.y33{bottom:344.175000px;}
.y1d{bottom:351.990000px;}
.y103{bottom:352.020000px;}
.ya3{bottom:353.205000px;}
.y6e{bottom:359.820000px;}
.y32{bottom:363.705000px;}
.y1c{bottom:371.175000px;}
.y102{bottom:371.505000px;}
.ya2{bottom:372.420000px;}
.y6d{bottom:379.320000px;}
.y27{bottom:381.675000px;}
.y31{bottom:382.920000px;}
.y1b{bottom:390.675000px;}
.y101{bottom:390.705000px;}
.ya1{bottom:391.905000px;}
.y6c{bottom:398.505000px;}
.y1a{bottom:399.405000px;}
.yd2{bottom:407.505000px;}
.y100{bottom:410.205000px;}
.ya0{bottom:411.120000px;}
.y6b{bottom:418.005000px;}
.yff{bottom:429.420000px;}
.y9f{bottom:430.620000px;}
.y6a{bottom:437.205000px;}
.yfe{bottom:448.920000px;}
.y9e{bottom:449.820000px;}
.y69{bottom:456.720000px;}
.ycf{bottom:457.320000px;}
.yfd{bottom:468.120000px;}
.y9d{bottom:469.320000px;}
.y68{bottom:475.920000px;}
.yfc{bottom:487.620000px;}
.y9c{bottom:488.505000px;}
.yce{bottom:492.705000px;}
.y67{bottom:495.405000px;}
.yfb{bottom:506.820000px;}
.y9b{bottom:508.020000px;}
.ycd{bottom:512.220000px;}
.y66{bottom:514.650000px;}
.yfa{bottom:523.350000px;}
.y9a{bottom:527.250000px;}
.ycc{bottom:531.450000px;}
.y65{bottom:534.150000px;}
.yf9{bottom:543.450000px;}
.y99{bottom:546.750000px;}
.ycb{bottom:550.950000px;}
.y64{bottom:553.350000px;}
.yf8{bottom:563.550000px;}
.y98{bottom:565.950000px;}
.yca{bottom:570.150000px;}
.y63{bottom:572.850000px;}
.y125{bottom:582.750000px;}
.y97{bottom:585.450000px;}
.yc9{bottom:589.650000px;}
.y62{bottom:592.050000px;}
.y124{bottom:601.950000px;}
.yf6{bottom:602.850000px;}
.y96{bottom:604.650000px;}
.yc8{bottom:608.850000px;}
.y61{bottom:611.550000px;}
.y123{bottom:621.450000px;}
.y95{bottom:624.150000px;}
.yc7{bottom:628.350000px;}
.y60{bottom:630.750000px;}
.y122{bottom:640.650000px;}
.yf5{bottom:642.450000px;}
.y94{bottom:643.350000px;}
.yc6{bottom:647.550000px;}
.y5f{bottom:650.250000px;}
.y121{bottom:660.150000px;}
.y93{bottom:662.550000px;}
.yc5{bottom:667.050000px;}
.y5e{bottom:669.450000px;}
.y120{bottom:679.350000px;}
.yf3{bottom:681.780000px;}
.y92{bottom:682.095000px;}
.yc4{bottom:686.280000px;}
.y5d{bottom:688.695000px;}
.y11f{bottom:698.895000px;}
.y91{bottom:701.280000px;}
.yc3{bottom:705.495000px;}
.yf2{bottom:705.780000px;}
.y5c{bottom:708.195000px;}
.y11e{bottom:718.095000px;}
.y90{bottom:720.795000px;}
.yc2{bottom:724.980000px;}
.y5b{bottom:727.395000px;}
.y11d{bottom:737.595000px;}
.y8f{bottom:739.995000px;}
.yc1{bottom:743.595000px;}
.yf1{bottom:744.495000px;}
.y5a{bottom:746.880000px;}
.y11c{bottom:756.780000px;}
.y8e{bottom:759.495000px;}
.yc0{bottom:760.380000px;}
.yf0{bottom:763.695000px;}
.y59{bottom:766.080000px;}
.y11b{bottom:776.295000px;}
.ybf{bottom:776.880000px;}
.y8d{bottom:778.695000px;}
.yef{bottom:783.195000px;}
.y58{bottom:785.580000px;}
.ybe{bottom:793.695000px;}
.y11a{bottom:795.495000px;}
.y8c{bottom:798.195000px;}
.yee{bottom:802.380000px;}
.y57{bottom:804.795000px;}
.y18{bottom:806.295000px;}
.ybd{bottom:810.195000px;}
.y119{bottom:814.995000px;}
.y8b{bottom:817.380000px;}
.yed{bottom:821.580000px;}
.y56{bottom:824.295000px;}
.ybc{bottom:826.080000px;}
.y118{bottom:834.195000px;}
.y8a{bottom:836.880000px;}
.yec{bottom:841.080000px;}
.ybb{bottom:842.895000px;}
.y55{bottom:843.480000px;}
.y17{bottom:844.995000px;}
.yb{bottom:847.980000px;}
.y117{bottom:853.725000px;}
.y89{bottom:856.125000px;}
.yba{bottom:859.425000px;}
.yeb{bottom:860.325000px;}
.y54{bottom:863.025000px;}
.y116{bottom:872.925000px;}
.y88{bottom:875.625000px;}
.yb9{bottom:876.225000px;}
.yea{bottom:879.825000px;}
.y53{bottom:882.225000px;}
.y115{bottom:892.125000px;}
.yb8{bottom:893.925000px;}
.y87{bottom:894.825000px;}
.ye9{bottom:899.025000px;}
.y52{bottom:901.725000px;}
.yb7{bottom:910.425000px;}
.y114{bottom:911.625000px;}
.y86{bottom:914.325000px;}
.ye8{bottom:918.525000px;}
.y51{bottom:920.925000px;}
.yb6{bottom:926.025000px;}
.y113{bottom:930.825000px;}
.y85{bottom:933.525000px;}
.ye7{bottom:937.725000px;}
.y50{bottom:940.425000px;}
.yb5{bottom:941.925000px;}
.y112{bottom:950.325000px;}
.y84{bottom:953.025000px;}
.ye6{bottom:957.225000px;}
.yb4{bottom:957.825000px;}
.y4f{bottom:959.625000px;}
.y111{bottom:969.525000px;}
.y83{bottom:972.225000px;}
.yb3{bottom:973.725000px;}
.ye5{bottom:976.425000px;}
.y4e{bottom:979.125000px;}
.y110{bottom:989.025000px;}
.yb2{bottom:990.525000px;}
.y82{bottom:991.725000px;}
.ye4{bottom:995.925000px;}
.y4d{bottom:998.325000px;}
.yb1{bottom:1007.925000px;}
.y10f{bottom:1008.225000px;}
.y81{bottom:1010.925000px;}
.ye3{bottom:1015.125000px;}
.y4c{bottom:1017.870000px;}
.yb0{bottom:1024.455000px;}
.y10e{bottom:1028.955000px;}
.y80{bottom:1030.455000px;}
.ye2{bottom:1034.670000px;}
.y8{bottom:1035.570000px;}
.y4b{bottom:1037.070000px;}
.yaf{bottom:1041.255000px;}
.y7f{bottom:1049.670000px;}
.ye0{bottom:1050.570000px;}
.y7{bottom:1052.955000px;}
.y4a{bottom:1056.570000px;}
.yae{bottom:1057.755000px;}
.y7e{bottom:1069.170000px;}
.y6{bottom:1070.070000px;}
.yad{bottom:1074.570000px;}
.y49{bottom:1075.755000px;}
.y5{bottom:1087.455000px;}
.y7d{bottom:1088.370000px;}
.yac{bottom:1091.070000px;}
.y48{bottom:1095.255000px;}
.y4{bottom:1105.170000px;}
.y7c{bottom:1107.870000px;}
.y47{bottom:1114.455000px;}
.y3{bottom:1122.870000px;}
.y2{bottom:1140.255000px;}
.y43{bottom:1144.455000px;}
.y1{bottom:1159.170000px;}
.y42{bottom:1162.455000px;}
.h4{height:4.189453px;}
.h9{height:10.160156px;}
.h18{height:19.200000px;}
.h15{height:19.500000px;}
.hd{height:27.495703px;}
.h11{height:31.800000px;}
.ha{height:37.500000px;}
.h17{height:38.700000px;}
.h16{height:38.737500px;}
.h8{height:40.640625px;}
.he{height:41.660156px;}
.h3{height:41.894531px;}
.hf{height:45.720703px;}
.h10{height:46.406250px;}
.h12{height:47.700000px;}
.h2{height:50.800781px;}
.hb{height:55.623047px;}
.h6{height:55.880859px;}
.h1{height:57.574219px;}
.h13{height:63.337500px;}
.h19{height:71.613281px;}
.h14{height:79.200000px;}
.h7{height:81.281250px;}
.h5{height:184.275000px;}
.hc{height:406.275000px;}
.h0{height:1263.000000px;}
.w6{width:18.637500px;}
.we{width:33.000000px;}
.w9{width:33.300000px;}
.w12{width:36.000000px;}
.wf{width:82.837500px;}
.wa{width:83.137500px;}
.w4{width:101.130000px;}
.w14{width:106.237500px;}
.w13{width:132.937500px;}
.w10{width:138.937500px;}
.wc{width:139.237500px;}
.w5{width:156.330000px;}
.w11{width:200.775000px;}
.wd{width:201.075000px;}
.wb{width:231.975000px;}
.w15{width:397.950000px;}
.w7{width:494.850000px;}
.w3{width:677.625000px;}
.w8{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.xc{left:-113.445000px;}
.x0{left:0.000000px;}
.x11{left:2.700000px;}
.x32{left:7.492500px;}
.x4{left:8.700000px;}
.x2a{left:17.707500px;}
.x2c{left:22.200000px;}
.x2f{left:24.300000px;}
.x5{left:56.692500px;}
.xa{left:71.137500px;}
.xd{left:98.137487px;}
.x1{left:106.237487px;}
.x14{left:111.337487px;}
.x8{left:112.537500px;}
.x3{left:114.337500px;}
.xe{left:121.837500px;}
.x12{left:138.337487px;}
.x29{left:139.537500px;}
.x31{left:144.037500px;}
.x6{left:175.237500px;}
.x2b{left:222.675000px;}
.x30{left:235.574987px;}
.x16{left:258.974987px;}
.x25{left:266.174987px;}
.x23{left:276.074987px;}
.xf{left:278.175000px;}
.x10{left:296.820000px;}
.x9{left:306.712500px;}
.x22{left:308.204987px;}
.x1c{left:316.319987px;}
.x24{left:320.219987px;}
.x13{left:322.319987px;}
.x7{left:345.112500px;}
.x18{left:352.619987px;}
.x21{left:360.719987px;}
.x28{left:365.519987px;}
.x1f{left:367.019987px;}
.x17{left:370.004987px;}
.x1b{left:373.904987px;}
.x1d{left:378.719987px;}
.x20{left:381.404987px;}
.x1a{left:384.404987px;}
.x1e{left:394.319987px;}
.x27{left:417.449987px;}
.x2{left:433.349987px;}
.x19{left:437.849987px;}
.x26{left:444.449987px;}
.x2d{left:454.650000px;}
.x2e{left:593.895000px;}
.x15{left:782.954987px;}
.xb{left:791.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls16{letter-spacing:-0.629333pt;}
.ls8{letter-spacing:-0.501333pt;}
.lse{letter-spacing:-0.368000pt;}
.lsf{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.170667pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.090667pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls12{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.437333pt;}
.ls2{letter-spacing:0.441600pt;}
.lsa{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.474667pt;}
.ls13{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.485333pt;}
.ls3{letter-spacing:0.494933pt;}
.ls1{letter-spacing:0.601600pt;}
.ls1c{letter-spacing:0.773333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls10{letter-spacing:101.226667pt;}
.ws8{word-spacing:-48.000000pt;}
.ws7{word-spacing:-13.376000pt;}
.wsd{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.098667pt;}
.wsf{word-spacing:-12.965333pt;}
.ws4{word-spacing:-12.906667pt;}
.wsb{word-spacing:-12.896000pt;}
.wsc{word-spacing:-12.864000pt;}
.ws11{word-spacing:-12.816000pt;}
.wsa{word-spacing:-12.538667pt;}
.ws6{word-spacing:-12.405333pt;}
.wse{word-spacing:-12.277333pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.733333pt;}
.ws9{word-spacing:-11.034667pt;}
.ws3{word-spacing:-9.813333pt;}
.ws2{word-spacing:-9.216000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-6.297600pt;}
._1b{margin-left:-5.333333pt;}
._1d{margin-left:-3.895467pt;}
._15{margin-left:-2.757333pt;}
._0{margin-left:-1.813333pt;}
._2{margin-left:-0.920533pt;}
._1{width:1.160533pt;}
._14{width:2.231467pt;}
._5{width:3.139200pt;}
._4{width:4.224000pt;}
._6{width:5.749333pt;}
._7{width:7.021867pt;}
._a{width:8.153600pt;}
._17{width:9.153067pt;}
._d{width:10.396800pt;}
._16{width:11.850667pt;}
._12{width:13.859200pt;}
._11{width:14.804267pt;}
._13{width:16.411733pt;}
._22{width:17.472000pt;}
._18{width:18.362667pt;}
._1e{width:19.438933pt;}
._1c{width:20.592000pt;}
._10{width:21.936000pt;}
._8{width:23.068800pt;}
._9{width:24.405333pt;}
._28{width:25.338667pt;}
._29{width:26.684800pt;}
._2e{width:28.027733pt;}
._19{width:29.132800pt;}
._c{width:30.043733pt;}
._b{width:30.976000pt;}
._2f{width:32.455467pt;}
._23{width:33.886933pt;}
._21{width:34.829867pt;}
._e{width:35.858133pt;}
._f{width:36.780800pt;}
._24{width:40.608000pt;}
._20{width:44.058667pt;}
._1f{width:45.017600pt;}
._27{width:46.037333pt;}
._26{width:50.544000pt;}
._2c{width:55.508267pt;}
._2b{width:56.496000pt;}
._25{width:81.408000pt;}
._2d{width:101.226667pt;}
._2a{width:275.136000pt;}
._1a{width:920.400000pt;}
.fs2{font-size:5.333333pt;}
.fs8{font-size:10.666667pt;}
.fs4{font-size:26.666667pt;}
.fs6{font-size:35.200000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:72.533333pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:2.666667pt;}
.yd9{bottom:2.706667pt;}
.y30{bottom:3.200000pt;}
.yf7{bottom:3.466667pt;}
.yf4{bottom:3.480000pt;}
.y15{bottom:5.106667pt;}
.y19{bottom:11.466667pt;}
.yd0{bottom:16.786667pt;}
.yde{bottom:16.800000pt;}
.yd4{bottom:16.813333pt;}
.yd8{bottom:16.840000pt;}
.y14{bottom:17.640000pt;}
.y2f{bottom:20.533333pt;}
.y13{bottom:30.706667pt;}
.ydd{bottom:30.933333pt;}
.yd3{bottom:30.946667pt;}
.yd7{bottom:30.960000pt;}
.y2e{bottom:37.600000pt;}
.ye1{bottom:44.786667pt;}
.ydc{bottom:44.800000pt;}
.yd6{bottom:44.840000pt;}
.y12{bottom:46.173333pt;}
.y2d{bottom:54.933333pt;}
.ydb{bottom:58.933333pt;}
.y11{bottom:61.906667pt;}
.y2c{bottom:72.013333pt;}
.ya{bottom:75.500000pt;}
.y10{bottom:77.640000pt;}
.y46{bottom:78.166667pt;}
.y7b{bottom:78.433333pt;}
.y9{bottom:80.033333pt;}
.y2b{bottom:89.333333pt;}
.yf{bottom:93.106667pt;}
.y45{bottom:93.900000pt;}
.y41{bottom:97.100000pt;}
.y40{bottom:101.900000pt;}
.y2a{bottom:106.440000pt;}
.y44{bottom:109.633333pt;}
.ye{bottom:110.706667pt;}
.y3f{bottom:112.833333pt;}
.y3e{bottom:117.633333pt;}
.y29{bottom:123.773333pt;}
.y3d{bottom:128.566667pt;}
.y79{bottom:130.700000pt;}
.y3c{bottom:133.373333pt;}
.yd{bottom:135.773333pt;}
.y7a{bottom:140.826667pt;}
.y28{bottom:140.840000pt;}
.y10d{bottom:141.093333pt;}
.y3b{bottom:144.293333pt;}
.y78{bottom:148.040000pt;}
.y16{bottom:149.946667pt;}
.yc{bottom:157.413333pt;}
.y26{bottom:158.173333pt;}
.y10c{bottom:158.200000pt;}
.y77{bottom:165.133333pt;}
.y25{bottom:175.240000pt;}
.y10b{bottom:175.533333pt;}
.yab{bottom:176.333333pt;}
.y76{bottom:182.200000pt;}
.y3a{bottom:185.666667pt;}
.y24{bottom:192.573333pt;}
.y10a{bottom:192.600000pt;}
.yaa{bottom:193.400000pt;}
.y75{bottom:199.533333pt;}
.y39{bottom:202.733333pt;}
.ydf{bottom:206.466667pt;}
.y23{bottom:209.640000pt;}
.y109{bottom:209.933333pt;}
.ya9{bottom:210.733333pt;}
.y74{bottom:216.600000pt;}
.y38{bottom:220.066667pt;}
.y22{bottom:226.706667pt;}
.y108{bottom:227.000000pt;}
.ya8{bottom:227.800000pt;}
.y73{bottom:233.933333pt;}
.yda{bottom:235.000000pt;}
.y37{bottom:237.133333pt;}
.y21{bottom:244.040000pt;}
.y107{bottom:244.333333pt;}
.ya7{bottom:245.133333pt;}
.y72{bottom:251.000000pt;}
.y36{bottom:254.466667pt;}
.y20{bottom:261.146667pt;}
.y106{bottom:261.400000pt;}
.ya6{bottom:262.200000pt;}
.y71{bottom:268.333333pt;}
.y35{bottom:271.533333pt;}
.y105{bottom:278.466667pt;}
.y1f{bottom:278.480000pt;}
.ya5{bottom:279.533333pt;}
.y70{bottom:285.400000pt;}
.y34{bottom:288.866667pt;}
.y1e{bottom:295.533333pt;}
.y104{bottom:295.800000pt;}
.ya4{bottom:296.600000pt;}
.y6f{bottom:302.733333pt;}
.yd5{bottom:305.666667pt;}
.y33{bottom:305.933333pt;}
.y1d{bottom:312.880000pt;}
.y103{bottom:312.906667pt;}
.ya3{bottom:313.960000pt;}
.y6e{bottom:319.840000pt;}
.y32{bottom:323.293333pt;}
.y1c{bottom:329.933333pt;}
.y102{bottom:330.226667pt;}
.ya2{bottom:331.040000pt;}
.y6d{bottom:337.173333pt;}
.y27{bottom:339.266667pt;}
.y31{bottom:340.373333pt;}
.y1b{bottom:347.266667pt;}
.y101{bottom:347.293333pt;}
.ya1{bottom:348.360000pt;}
.y6c{bottom:354.226667pt;}
.y1a{bottom:355.026667pt;}
.yd2{bottom:362.226667pt;}
.y100{bottom:364.626667pt;}
.ya0{bottom:365.440000pt;}
.y6b{bottom:371.560000pt;}
.yff{bottom:381.706667pt;}
.y9f{bottom:382.773333pt;}
.y6a{bottom:388.626667pt;}
.yfe{bottom:399.040000pt;}
.y9e{bottom:399.840000pt;}
.y69{bottom:405.973333pt;}
.ycf{bottom:406.506667pt;}
.yfd{bottom:416.106667pt;}
.y9d{bottom:417.173333pt;}
.y68{bottom:423.040000pt;}
.yfc{bottom:433.440000pt;}
.y9c{bottom:434.226667pt;}
.yce{bottom:437.960000pt;}
.y67{bottom:440.360000pt;}
.yfb{bottom:450.506667pt;}
.y9b{bottom:451.573333pt;}
.ycd{bottom:455.306667pt;}
.y66{bottom:457.466667pt;}
.yfa{bottom:465.200000pt;}
.y9a{bottom:468.666667pt;}
.ycc{bottom:472.400000pt;}
.y65{bottom:474.800000pt;}
.yf9{bottom:483.066667pt;}
.y99{bottom:486.000000pt;}
.ycb{bottom:489.733333pt;}
.y64{bottom:491.866667pt;}
.yf8{bottom:500.933333pt;}
.y98{bottom:503.066667pt;}
.yca{bottom:506.800000pt;}
.y63{bottom:509.200000pt;}
.y125{bottom:518.000000pt;}
.y97{bottom:520.400000pt;}
.yc9{bottom:524.133333pt;}
.y62{bottom:526.266667pt;}
.y124{bottom:535.066667pt;}
.yf6{bottom:535.866667pt;}
.y96{bottom:537.466667pt;}
.yc8{bottom:541.200000pt;}
.y61{bottom:543.600000pt;}
.y123{bottom:552.400000pt;}
.y95{bottom:554.800000pt;}
.yc7{bottom:558.533333pt;}
.y60{bottom:560.666667pt;}
.y122{bottom:569.466667pt;}
.yf5{bottom:571.066667pt;}
.y94{bottom:571.866667pt;}
.yc6{bottom:575.600000pt;}
.y5f{bottom:578.000000pt;}
.y121{bottom:586.800000pt;}
.y93{bottom:588.933333pt;}
.yc5{bottom:592.933333pt;}
.y5e{bottom:595.066667pt;}
.y120{bottom:603.866667pt;}
.yf3{bottom:606.026667pt;}
.y92{bottom:606.306667pt;}
.yc4{bottom:610.026667pt;}
.y5d{bottom:612.173333pt;}
.y11f{bottom:621.240000pt;}
.y91{bottom:623.360000pt;}
.yc3{bottom:627.106667pt;}
.yf2{bottom:627.360000pt;}
.y5c{bottom:629.506667pt;}
.y11e{bottom:638.306667pt;}
.y90{bottom:640.706667pt;}
.yc2{bottom:644.426667pt;}
.y5b{bottom:646.573333pt;}
.y11d{bottom:655.640000pt;}
.y8f{bottom:657.773333pt;}
.yc1{bottom:660.973333pt;}
.yf1{bottom:661.773333pt;}
.y5a{bottom:663.893333pt;}
.y11c{bottom:672.693333pt;}
.y8e{bottom:675.106667pt;}
.yc0{bottom:675.893333pt;}
.yf0{bottom:678.840000pt;}
.y59{bottom:680.960000pt;}
.y11b{bottom:690.040000pt;}
.ybf{bottom:690.560000pt;}
.y8d{bottom:692.173333pt;}
.yef{bottom:696.173333pt;}
.y58{bottom:698.293333pt;}
.ybe{bottom:705.506667pt;}
.y11a{bottom:707.106667pt;}
.y8c{bottom:709.506667pt;}
.yee{bottom:713.226667pt;}
.y57{bottom:715.373333pt;}
.y18{bottom:716.706667pt;}
.ybd{bottom:720.173333pt;}
.y119{bottom:724.440000pt;}
.y8b{bottom:726.560000pt;}
.yed{bottom:730.293333pt;}
.y56{bottom:732.706667pt;}
.ybc{bottom:734.293333pt;}
.y118{bottom:741.506667pt;}
.y8a{bottom:743.893333pt;}
.yec{bottom:747.626667pt;}
.ybb{bottom:749.240000pt;}
.y55{bottom:749.760000pt;}
.y17{bottom:751.106667pt;}
.yb{bottom:753.760000pt;}
.y117{bottom:758.866667pt;}
.y89{bottom:761.000000pt;}
.yba{bottom:763.933333pt;}
.yeb{bottom:764.733333pt;}
.y54{bottom:767.133333pt;}
.y116{bottom:775.933333pt;}
.y88{bottom:778.333333pt;}
.yb9{bottom:778.866667pt;}
.yea{bottom:782.066667pt;}
.y53{bottom:784.200000pt;}
.y115{bottom:793.000000pt;}
.yb8{bottom:794.600000pt;}
.y87{bottom:795.400000pt;}
.ye9{bottom:799.133333pt;}
.y52{bottom:801.533333pt;}
.yb7{bottom:809.266667pt;}
.y114{bottom:810.333333pt;}
.y86{bottom:812.733333pt;}
.ye8{bottom:816.466667pt;}
.y51{bottom:818.600000pt;}
.yb6{bottom:823.133333pt;}
.y113{bottom:827.400000pt;}
.y85{bottom:829.800000pt;}
.ye7{bottom:833.533333pt;}
.y50{bottom:835.933333pt;}
.yb5{bottom:837.266667pt;}
.y112{bottom:844.733333pt;}
.y84{bottom:847.133333pt;}
.ye6{bottom:850.866667pt;}
.yb4{bottom:851.400000pt;}
.y4f{bottom:853.000000pt;}
.y111{bottom:861.800000pt;}
.y83{bottom:864.200000pt;}
.yb3{bottom:865.533333pt;}
.ye5{bottom:867.933333pt;}
.y4e{bottom:870.333333pt;}
.y110{bottom:879.133333pt;}
.yb2{bottom:880.466667pt;}
.y82{bottom:881.533333pt;}
.ye4{bottom:885.266667pt;}
.y4d{bottom:887.400000pt;}
.yb1{bottom:895.933333pt;}
.y10f{bottom:896.200000pt;}
.y81{bottom:898.600000pt;}
.ye3{bottom:902.333333pt;}
.y4c{bottom:904.773333pt;}
.yb0{bottom:910.626667pt;}
.y10e{bottom:914.626667pt;}
.y80{bottom:915.960000pt;}
.ye2{bottom:919.706667pt;}
.y8{bottom:920.506667pt;}
.y4b{bottom:921.840000pt;}
.yaf{bottom:925.560000pt;}
.y7f{bottom:933.040000pt;}
.ye0{bottom:933.840000pt;}
.y7{bottom:935.960000pt;}
.y4a{bottom:939.173333pt;}
.yae{bottom:940.226667pt;}
.y7e{bottom:950.373333pt;}
.y6{bottom:951.173333pt;}
.yad{bottom:955.173333pt;}
.y49{bottom:956.226667pt;}
.y5{bottom:966.626667pt;}
.y7d{bottom:967.440000pt;}
.yac{bottom:969.840000pt;}
.y48{bottom:973.560000pt;}
.y4{bottom:982.373333pt;}
.y7c{bottom:984.773333pt;}
.y47{bottom:990.626667pt;}
.y3{bottom:998.106667pt;}
.y2{bottom:1013.560000pt;}
.y43{bottom:1017.293333pt;}
.y1{bottom:1030.373333pt;}
.y42{bottom:1033.293333pt;}
.h4{height:3.723958pt;}
.h9{height:9.031250pt;}
.h18{height:17.066667pt;}
.h15{height:17.333333pt;}
.hd{height:24.440625pt;}
.h11{height:28.266667pt;}
.ha{height:33.333333pt;}
.h17{height:34.400000pt;}
.h16{height:34.433333pt;}
.h8{height:36.125000pt;}
.he{height:37.031250pt;}
.h3{height:37.239583pt;}
.hf{height:40.640625pt;}
.h10{height:41.250000pt;}
.h12{height:42.400000pt;}
.h2{height:45.156250pt;}
.hb{height:49.442708pt;}
.h6{height:49.671875pt;}
.h1{height:51.177083pt;}
.h13{height:56.300000pt;}
.h19{height:63.656250pt;}
.h14{height:70.400000pt;}
.h7{height:72.250000pt;}
.h5{height:163.800000pt;}
.hc{height:361.133333pt;}
.h0{height:1122.666667pt;}
.w6{width:16.566667pt;}
.we{width:29.333333pt;}
.w9{width:29.600000pt;}
.w12{width:32.000000pt;}
.wf{width:73.633333pt;}
.wa{width:73.900000pt;}
.w4{width:89.893333pt;}
.w14{width:94.433333pt;}
.w13{width:118.166667pt;}
.w10{width:123.500000pt;}
.wc{width:123.766667pt;}
.w5{width:138.960000pt;}
.w11{width:178.466667pt;}
.wd{width:178.733333pt;}
.wb{width:206.200000pt;}
.w15{width:353.733333pt;}
.w7{width:439.866667pt;}
.w3{width:602.333333pt;}
.w8{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.xc{left:-100.840000pt;}
.x0{left:0.000000pt;}
.x11{left:2.400000pt;}
.x32{left:6.660000pt;}
.x4{left:7.733333pt;}
.x2a{left:15.740000pt;}
.x2c{left:19.733333pt;}
.x2f{left:21.600000pt;}
.x5{left:50.393333pt;}
.xa{left:63.233333pt;}
.xd{left:87.233322pt;}
.x1{left:94.433322pt;}
.x14{left:98.966655pt;}
.x8{left:100.033333pt;}
.x3{left:101.633333pt;}
.xe{left:108.300000pt;}
.x12{left:122.966655pt;}
.x29{left:124.033333pt;}
.x31{left:128.033333pt;}
.x6{left:155.766667pt;}
.x2b{left:197.933333pt;}
.x30{left:209.399988pt;}
.x16{left:230.199988pt;}
.x25{left:236.599988pt;}
.x23{left:245.399988pt;}
.xf{left:247.266667pt;}
.x10{left:263.840000pt;}
.x9{left:272.633333pt;}
.x22{left:273.959988pt;}
.x1c{left:281.173322pt;}
.x24{left:284.639988pt;}
.x13{left:286.506655pt;}
.x7{left:306.766667pt;}
.x18{left:313.439988pt;}
.x21{left:320.639988pt;}
.x28{left:324.906655pt;}
.x1f{left:326.239988pt;}
.x17{left:328.893322pt;}
.x1b{left:332.359988pt;}
.x1d{left:336.639988pt;}
.x20{left:339.026655pt;}
.x1a{left:341.693322pt;}
.x1e{left:350.506655pt;}
.x27{left:371.066655pt;}
.x2{left:385.199988pt;}
.x19{left:389.199988pt;}
.x26{left:395.066655pt;}
.x2d{left:404.133333pt;}
.x2e{left:527.906667pt;}
.x15{left:695.959988pt;}
.xb{left:703.973333pt;}
}




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