
    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_477fd82da78a93c9d609cb47.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_6c6b48cbfa419f58060cfcba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_723a40f1be46b270b12feaf9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_be3219666193f6c8bd5c383e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3893f7db00f42511daae6a49.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d06763d0769bac73af5050e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031250;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_1c76959d9e85943ad0cd7a04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8f838f21db1fdb56bd46732.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aa02142bbc9800e042016039.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a649053458ba87c7b6ec4a75.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:48.000000px;}
.v1{vertical-align:54.600000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls17{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls24{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls10{letter-spacing:6.000000px;}
.ls13{letter-spacing:9.000000px;}
.ls12{letter-spacing:16.392000px;}
.ls1f{letter-spacing:19.200000px;}
.lse{letter-spacing:19.956000px;}
.lsb{letter-spacing:20.016000px;}
.ls1e{letter-spacing:20.520000px;}
.ls1c{letter-spacing:24.600000px;}
.ls20{letter-spacing:27.660000px;}
.ls23{letter-spacing:30.984000px;}
.ls1d{letter-spacing:41.460000px;}
.ls22{letter-spacing:42.000000px;}
.lsc{letter-spacing:54.000000px;}
.lsd{letter-spacing:54.030000px;}
.ls21{letter-spacing:59.370000px;}
.ls11{letter-spacing:61.800000px;}
.lsf{letter-spacing:65.550000px;}
.ls1b{letter-spacing:105.150000px;}
.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;}
}
.wsc{word-spacing:-72.144000px;}
.ws11{word-spacing:-72.096000px;}
.ws17{word-spacing:-56.268000px;}
.ws10{word-spacing:-56.244000px;}
.ws1b{word-spacing:-56.184000px;}
.ws15{word-spacing:-54.984000px;}
.ws16{word-spacing:-54.204000px;}
.wsf{word-spacing:-51.948000px;}
.wse{word-spacing:-50.844000px;}
.ws1a{word-spacing:-50.544000px;}
.wsb{word-spacing:-50.472000px;}
.ws19{word-spacing:-50.172000px;}
.ws14{word-spacing:-49.248000px;}
.ws13{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.192000px;}
.ws9{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws18{word-spacing:112.896000px;}
._3a{margin-left:-4.392000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._e{width:2.052000px;}
._11{width:3.108000px;}
._9{width:4.248000px;}
._a{width:5.256000px;}
._17{width:6.984000px;}
._6{width:8.424000px;}
._7{width:9.504000px;}
._b{width:10.836000px;}
._2a{width:12.528000px;}
._8{width:14.040000px;}
._5{width:15.672000px;}
._4{width:16.746000px;}
._3e{width:18.660000px;}
._f{width:19.728000px;}
._10{width:21.042000px;}
._1a{width:22.176000px;}
._1b{width:23.496000px;}
._27{width:25.272000px;}
._c{width:26.784000px;}
._d{width:27.936000px;}
._2b{width:29.292000px;}
._12{width:30.312000px;}
._13{width:32.040000px;}
._30{width:33.264000px;}
._31{width:34.446000px;}
._39{width:35.496000px;}
._20{width:36.504000px;}
._21{width:38.304000px;}
._3b{width:40.320000px;}
._40{width:41.622000px;}
._1e{width:43.776000px;}
._2c{width:45.360000px;}
._2d{width:46.542000px;}
._14{width:47.808000px;}
._15{width:48.888000px;}
._4e{width:50.256000px;}
._36{width:52.230000px;}
._2f{width:53.424000px;}
._1f{width:54.792000px;}
._25{width:56.088000px;}
._32{width:57.384000px;}
._24{width:58.968000px;}
._35{width:61.128000px;}
._26{width:62.928000px;}
._45{width:63.936000px;}
._34{width:65.394000px;}
._44{width:67.404000px;}
._38{width:68.904000px;}
._22{width:70.488000px;}
._23{width:71.496000px;}
._55{width:72.648000px;}
._46{width:74.430000px;}
._43{width:76.092000px;}
._52{width:77.202000px;}
._41{width:78.372000px;}
._53{width:81.360000px;}
._54{width:82.572000px;}
._4c{width:86.040000px;}
._37{width:90.840000px;}
._1c{width:92.160000px;}
._1d{width:93.600000px;}
._2e{width:94.824000px;}
._47{width:96.336000px;}
._48{width:97.374000px;}
._4d{width:98.610000px;}
._51{width:99.750000px;}
._16{width:100.944000px;}
._3f{width:104.970000px;}
._3c{width:107.136000px;}
._3d{width:108.300000px;}
._4b{width:109.458000px;}
._18{width:118.584000px;}
._19{width:120.240000px;}
._4f{width:121.464000px;}
._49{width:122.760000px;}
._4a{width:123.840000px;}
._42{width:126.648000px;}
._50{width:134.640000px;}
._33{width:140.256000px;}
._28{width:167.760000px;}
._29{width:168.984000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.yc8{bottom:3.300000px;}
.yd0{bottom:3.315000px;}
.y1e{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.yce{bottom:20.565000px;}
.y1d{bottom:24.600000px;}
.ycc{bottom:29.235000px;}
.yd2{bottom:29.250000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.yc6{bottom:37.800000px;}
.ycf{bottom:37.815000px;}
.y1c{bottom:45.300000px;}
.yc3{bottom:46.350000px;}
.yc5{bottom:55.050000px;}
.yd3{bottom:55.095000px;}
.y3{bottom:57.637500px;}
.y1b{bottom:66.000000px;}
.yc4{bottom:72.300000px;}
.y2{bottom:81.637500px;}
.y1a{bottom:86.700000px;}
.yc7{bottom:89.550000px;}
.yec{bottom:105.637500px;}
.y66{bottom:106.537500px;}
.y7e{bottom:106.837500px;}
.y19{bottom:107.400000px;}
.y3a{bottom:121.987500px;}
.y9f{bottom:125.737500px;}
.yee{bottom:126.637500px;}
.ybc{bottom:127.687500px;}
.y18{bottom:128.100000px;}
.yeb{bottom:129.337500px;}
.y65{bottom:130.387500px;}
.y7d{bottom:130.687500px;}
.y39{bottom:145.837500px;}
.y17{bottom:148.800000px;}
.y9e{bottom:149.587500px;}
.yed{bottom:150.495000px;}
.ybb{bottom:151.380000px;}
.yea{bottom:153.195000px;}
.y64{bottom:154.245000px;}
.y7c{bottom:154.545000px;}
.y16{bottom:169.500000px;}
.y38{bottom:169.695000px;}
.y9d{bottom:173.445000px;}
.yc1{bottom:174.345000px;}
.yba{bottom:175.245000px;}
.ye9{bottom:177.045000px;}
.y63{bottom:177.930000px;}
.y7b{bottom:178.380000px;}
.y37{bottom:193.395000px;}
.y9c{bottom:197.145000px;}
.yc0{bottom:198.195000px;}
.yb9{bottom:199.080000px;}
.ye8{bottom:200.745000px;}
.y62{bottom:201.795000px;}
.y7a{bottom:202.095000px;}
.y36{bottom:217.245000px;}
.y9b{bottom:220.995000px;}
.ybf{bottom:221.895000px;}
.yb8{bottom:222.795000px;}
.ye7{bottom:224.595000px;}
.y61{bottom:225.630000px;}
.y79{bottom:225.945000px;}
.y35{bottom:241.095000px;}
.y9a{bottom:244.845000px;}
.ybe{bottom:245.745000px;}
.y78{bottom:245.880000px;}
.yb7{bottom:246.630000px;}
.ye6{bottom:248.445000px;}
.y60{bottom:249.345000px;}
.y77{bottom:257.895000px;}
.y34{bottom:264.795000px;}
.y99{bottom:268.545000px;}
.ybd{bottom:269.595000px;}
.yb6{bottom:270.495000px;}
.ye5{bottom:272.145000px;}
.y5f{bottom:273.195000px;}
.y33{bottom:288.645000px;}
.y98{bottom:292.395000px;}
.y76{bottom:293.295000px;}
.yb5{bottom:294.195000px;}
.ye4{bottom:295.995000px;}
.y5e{bottom:297.195000px;}
.y32{bottom:312.495000px;}
.y97{bottom:316.245000px;}
.y75{bottom:317.130000px;}
.yb4{bottom:318.045000px;}
.ye3{bottom:319.845000px;}
.y5d{bottom:321.330000px;}
.y31{bottom:336.195000px;}
.y96{bottom:339.945000px;}
.y74{bottom:340.995000px;}
.yb3{bottom:341.895000px;}
.ye2{bottom:343.695000px;}
.y5c{bottom:345.045000px;}
.y30{bottom:360.045000px;}
.y95{bottom:363.795000px;}
.y73{bottom:364.695000px;}
.yb2{bottom:365.745000px;}
.ye1{bottom:367.380000px;}
.y5b{bottom:368.895000px;}
.y2f{bottom:383.925000px;}
.y94{bottom:387.675000px;}
.y72{bottom:388.575000px;}
.yb1{bottom:389.475000px;}
.ye0{bottom:391.275000px;}
.y5a{bottom:392.775000px;}
.y2e{bottom:407.775000px;}
.y93{bottom:411.525000px;}
.y71{bottom:412.425000px;}
.yb0{bottom:413.325000px;}
.ydf{bottom:415.125000px;}
.y59{bottom:416.475000px;}
.y2d{bottom:431.475000px;}
.y92{bottom:435.225000px;}
.y70{bottom:436.125000px;}
.yaf{bottom:437.175000px;}
.yde{bottom:438.825000px;}
.y58{bottom:440.325000px;}
.y2c{bottom:455.325000px;}
.y91{bottom:459.075000px;}
.y6f{bottom:459.975000px;}
.yae{bottom:460.875000px;}
.ydd{bottom:462.675000px;}
.y57{bottom:464.175000px;}
.y2b{bottom:479.175000px;}
.y90{bottom:482.925000px;}
.y6e{bottom:483.825000px;}
.yad{bottom:484.725000px;}
.ydc{bottom:486.525000px;}
.y56{bottom:487.875000px;}
.y2a{bottom:502.875000px;}
.y8f{bottom:506.625000px;}
.y6d{bottom:507.525000px;}
.yac{bottom:508.575000px;}
.ydb{bottom:510.225000px;}
.y55{bottom:511.725000px;}
.y29{bottom:526.725000px;}
.y8e{bottom:530.625000px;}
.y6c{bottom:531.375000px;}
.yab{bottom:532.275000px;}
.yda{bottom:534.075000px;}
.y54{bottom:535.575000px;}
.y28{bottom:550.575000px;}
.y8d{bottom:554.775000px;}
.y6b{bottom:555.225000px;}
.yaa{bottom:556.125000px;}
.yd9{bottom:557.925000px;}
.y53{bottom:559.275000px;}
.y27{bottom:574.275000px;}
.y8c{bottom:578.475000px;}
.y6a{bottom:579.075000px;}
.ya9{bottom:579.975000px;}
.yd8{bottom:581.625000px;}
.y52{bottom:583.125000px;}
.y26{bottom:598.125000px;}
.y8b{bottom:602.325000px;}
.y69{bottom:602.775000px;}
.ya8{bottom:603.675000px;}
.yd7{bottom:605.475000px;}
.y51{bottom:606.975000px;}
.y25{bottom:621.975000px;}
.y8a{bottom:626.175000px;}
.y68{bottom:626.625000px;}
.y50{bottom:626.925000px;}
.ya7{bottom:627.525000px;}
.yd6{bottom:629.325000px;}
.y4f{bottom:638.925000px;}
.y24{bottom:645.675000px;}
.y89{bottom:649.875000px;}
.y67{bottom:650.475000px;}
.ya6{bottom:651.375000px;}
.yd5{bottom:653.025000px;}
.y23{bottom:669.525000px;}
.y88{bottom:673.725000px;}
.y4e{bottom:674.175000px;}
.ya5{bottom:675.075000px;}
.yd4{bottom:676.875000px;}
.y22{bottom:693.375000px;}
.yd1{bottom:694.425000px;}
.y87{bottom:697.575000px;}
.y4d{bottom:698.025000px;}
.ya4{bottom:698.925000px;}
.y86{bottom:721.425000px;}
.y4c{bottom:721.875000px;}
.ya3{bottom:722.775000px;}
.y21{bottom:726.075000px;}
.y20{bottom:742.920000px;}
.y85{bottom:745.170000px;}
.y4b{bottom:745.620000px;}
.ya2{bottom:746.520000px;}
.ycd{bottom:764.205000px;}
.y84{bottom:769.020000px;}
.y4a{bottom:769.470000px;}
.ya1{bottom:770.370000px;}
.ya0{bottom:790.320000px;}
.y83{bottom:792.870000px;}
.y49{bottom:793.320000px;}
.y1f{bottom:805.020000px;}
.y82{bottom:816.570000px;}
.ycb{bottom:816.720000px;}
.y48{bottom:817.020000px;}
.y15{bottom:825.720000px;}
.y81{bottom:840.420000px;}
.y47{bottom:840.870000px;}
.y80{bottom:864.270000px;}
.y46{bottom:864.720000px;}
.yca{bottom:886.470000px;}
.y7f{bottom:888.120000px;}
.y45{bottom:888.420000px;}
.y44{bottom:912.270000px;}
.y43{bottom:936.120000px;}
.yc9{bottom:938.970000px;}
.y42{bottom:959.970000px;}
.y41{bottom:983.670000px;}
.yc2{bottom:991.470000px;}
.y40{bottom:1007.520000px;}
.y14{bottom:1015.620000px;}
.y3f{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y3e{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3d{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3c{bottom:1102.800000px;}
.y3b{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.685000px;}
.h19{height:42.333984px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hc{height:50.484375px;}
.ha{height:50.800781px;}
.h1a{height:51.735000px;}
.h1c{height:51.750000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h16{height:59.343750px;}
.h18{height:60.468750px;}
.h11{height:62.100000px;}
.he{height:64.775391px;}
.h9{height:65.645508px;}
.h1b{height:68.985000px;}
.h1d{height:69.037500px;}
.h14{height:70.628906px;}
.hd{height:70.664062px;}
.hb{height:72.562500px;}
.h1e{height:74.004654px;}
.h2{height:82.441406px;}
.h17{height:103.500000px;}
.h12{height:115.279688px;}
.h13{height:118.664062px;}
.h15{height:118.724062px;}
.hf{height:186.285000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:28.350000px;}
.wc{width:72.300000px;}
.wb{width:90.037500px;}
.wd{width:92.250000px;}
.wa{width:105.900000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x29{left:69.449987px;}
.x10{left:88.649987px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1e{left:161.279987px;}
.x23{left:177.644987px;}
.x22{left:192.944987px;}
.x1c{left:203.594987px;}
.x1d{left:250.694987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:318.794987px;}
.x13{left:448.724987px;}
.x1b{left:457.274987px;}
.x2a{left:484.124987px;}
.x25{left:487.125000px;}
.x1f{left:510.374987px;}
.x15{left:551.174987px;}
.x12{left:559.124987px;}
.x20{left:574.724987px;}
.x26{left:593.775000px;}
.xc{left:625.425000px;}
.x21{left:663.569987px;}
.x27{left:684.570000px;}
.x14{left:701.654987px;}
.xf{left:713.655000px;}
.x28{left:757.620000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
.x24{left:852.119987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:42.666667pt;}
.v1{vertical-align:48.533333pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls24{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls10{letter-spacing:5.333333pt;}
.ls13{letter-spacing:8.000000pt;}
.ls12{letter-spacing:14.570667pt;}
.ls1f{letter-spacing:17.066667pt;}
.lse{letter-spacing:17.738667pt;}
.lsb{letter-spacing:17.792000pt;}
.ls1e{letter-spacing:18.240000pt;}
.ls1c{letter-spacing:21.866667pt;}
.ls20{letter-spacing:24.586667pt;}
.ls23{letter-spacing:27.541333pt;}
.ls1d{letter-spacing:36.853333pt;}
.ls22{letter-spacing:37.333333pt;}
.lsc{letter-spacing:48.000000pt;}
.lsd{letter-spacing:48.026667pt;}
.ls21{letter-spacing:52.773333pt;}
.ls11{letter-spacing:54.933333pt;}
.lsf{letter-spacing:58.266667pt;}
.ls1b{letter-spacing:93.466667pt;}
.wsc{word-spacing:-64.128000pt;}
.ws11{word-spacing:-64.085333pt;}
.ws17{word-spacing:-50.016000pt;}
.ws10{word-spacing:-49.994667pt;}
.ws1b{word-spacing:-49.941333pt;}
.ws15{word-spacing:-48.874667pt;}
.ws16{word-spacing:-48.181333pt;}
.wsf{word-spacing:-46.176000pt;}
.wse{word-spacing:-45.194667pt;}
.ws1a{word-spacing:-44.928000pt;}
.wsb{word-spacing:-44.864000pt;}
.ws19{word-spacing:-44.597333pt;}
.ws14{word-spacing:-43.776000pt;}
.ws13{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.170667pt;}
.ws9{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws18{word-spacing:100.352000pt;}
._3a{margin-left:-3.904000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._e{width:1.824000pt;}
._11{width:2.762667pt;}
._9{width:3.776000pt;}
._a{width:4.672000pt;}
._17{width:6.208000pt;}
._6{width:7.488000pt;}
._7{width:8.448000pt;}
._b{width:9.632000pt;}
._2a{width:11.136000pt;}
._8{width:12.480000pt;}
._5{width:13.930667pt;}
._4{width:14.885333pt;}
._3e{width:16.586667pt;}
._f{width:17.536000pt;}
._10{width:18.704000pt;}
._1a{width:19.712000pt;}
._1b{width:20.885333pt;}
._27{width:22.464000pt;}
._c{width:23.808000pt;}
._d{width:24.832000pt;}
._2b{width:26.037333pt;}
._12{width:26.944000pt;}
._13{width:28.480000pt;}
._30{width:29.568000pt;}
._31{width:30.618667pt;}
._39{width:31.552000pt;}
._20{width:32.448000pt;}
._21{width:34.048000pt;}
._3b{width:35.840000pt;}
._40{width:36.997333pt;}
._1e{width:38.912000pt;}
._2c{width:40.320000pt;}
._2d{width:41.370667pt;}
._14{width:42.496000pt;}
._15{width:43.456000pt;}
._4e{width:44.672000pt;}
._36{width:46.426667pt;}
._2f{width:47.488000pt;}
._1f{width:48.704000pt;}
._25{width:49.856000pt;}
._32{width:51.008000pt;}
._24{width:52.416000pt;}
._35{width:54.336000pt;}
._26{width:55.936000pt;}
._45{width:56.832000pt;}
._34{width:58.128000pt;}
._44{width:59.914667pt;}
._38{width:61.248000pt;}
._22{width:62.656000pt;}
._23{width:63.552000pt;}
._55{width:64.576000pt;}
._46{width:66.160000pt;}
._43{width:67.637333pt;}
._52{width:68.624000pt;}
._41{width:69.664000pt;}
._53{width:72.320000pt;}
._54{width:73.397333pt;}
._4c{width:76.480000pt;}
._37{width:80.746667pt;}
._1c{width:81.920000pt;}
._1d{width:83.200000pt;}
._2e{width:84.288000pt;}
._47{width:85.632000pt;}
._48{width:86.554667pt;}
._4d{width:87.653333pt;}
._51{width:88.666667pt;}
._16{width:89.728000pt;}
._3f{width:93.306667pt;}
._3c{width:95.232000pt;}
._3d{width:96.266667pt;}
._4b{width:97.296000pt;}
._18{width:105.408000pt;}
._19{width:106.880000pt;}
._4f{width:107.968000pt;}
._49{width:109.120000pt;}
._4a{width:110.080000pt;}
._42{width:112.576000pt;}
._50{width:119.680000pt;}
._33{width:124.672000pt;}
._28{width:149.120000pt;}
._29{width:150.208000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.yc8{bottom:2.933333pt;}
.yd0{bottom:2.946667pt;}
.y1e{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.yce{bottom:18.280000pt;}
.y1d{bottom:21.866667pt;}
.ycc{bottom:25.986667pt;}
.yd2{bottom:26.000000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.yc6{bottom:33.600000pt;}
.ycf{bottom:33.613333pt;}
.y1c{bottom:40.266667pt;}
.yc3{bottom:41.200000pt;}
.yc5{bottom:48.933333pt;}
.yd3{bottom:48.973333pt;}
.y3{bottom:51.233333pt;}
.y1b{bottom:58.666667pt;}
.yc4{bottom:64.266667pt;}
.y2{bottom:72.566667pt;}
.y1a{bottom:77.066667pt;}
.yc7{bottom:79.600000pt;}
.yec{bottom:93.900000pt;}
.y66{bottom:94.700000pt;}
.y7e{bottom:94.966667pt;}
.y19{bottom:95.466667pt;}
.y3a{bottom:108.433333pt;}
.y9f{bottom:111.766667pt;}
.yee{bottom:112.566667pt;}
.ybc{bottom:113.500000pt;}
.y18{bottom:113.866667pt;}
.yeb{bottom:114.966667pt;}
.y65{bottom:115.900000pt;}
.y7d{bottom:116.166667pt;}
.y39{bottom:129.633333pt;}
.y17{bottom:132.266667pt;}
.y9e{bottom:132.966667pt;}
.yed{bottom:133.773333pt;}
.ybb{bottom:134.560000pt;}
.yea{bottom:136.173333pt;}
.y64{bottom:137.106667pt;}
.y7c{bottom:137.373333pt;}
.y16{bottom:150.666667pt;}
.y38{bottom:150.840000pt;}
.y9d{bottom:154.173333pt;}
.yc1{bottom:154.973333pt;}
.yba{bottom:155.773333pt;}
.ye9{bottom:157.373333pt;}
.y63{bottom:158.160000pt;}
.y7b{bottom:158.560000pt;}
.y37{bottom:171.906667pt;}
.y9c{bottom:175.240000pt;}
.yc0{bottom:176.173333pt;}
.yb9{bottom:176.960000pt;}
.ye8{bottom:178.440000pt;}
.y62{bottom:179.373333pt;}
.y7a{bottom:179.640000pt;}
.y36{bottom:193.106667pt;}
.y9b{bottom:196.440000pt;}
.ybf{bottom:197.240000pt;}
.yb8{bottom:198.040000pt;}
.ye7{bottom:199.640000pt;}
.y61{bottom:200.560000pt;}
.y79{bottom:200.840000pt;}
.y35{bottom:214.306667pt;}
.y9a{bottom:217.640000pt;}
.ybe{bottom:218.440000pt;}
.y78{bottom:218.560000pt;}
.yb7{bottom:219.226667pt;}
.ye6{bottom:220.840000pt;}
.y60{bottom:221.640000pt;}
.y77{bottom:229.240000pt;}
.y34{bottom:235.373333pt;}
.y99{bottom:238.706667pt;}
.ybd{bottom:239.640000pt;}
.yb6{bottom:240.440000pt;}
.ye5{bottom:241.906667pt;}
.y5f{bottom:242.840000pt;}
.y33{bottom:256.573333pt;}
.y98{bottom:259.906667pt;}
.y76{bottom:260.706667pt;}
.yb5{bottom:261.506667pt;}
.ye4{bottom:263.106667pt;}
.y5e{bottom:264.173333pt;}
.y32{bottom:277.773333pt;}
.y97{bottom:281.106667pt;}
.y75{bottom:281.893333pt;}
.yb4{bottom:282.706667pt;}
.ye3{bottom:284.306667pt;}
.y5d{bottom:285.626667pt;}
.y31{bottom:298.840000pt;}
.y96{bottom:302.173333pt;}
.y74{bottom:303.106667pt;}
.yb3{bottom:303.906667pt;}
.ye2{bottom:305.506667pt;}
.y5c{bottom:306.706667pt;}
.y30{bottom:320.040000pt;}
.y95{bottom:323.373333pt;}
.y73{bottom:324.173333pt;}
.yb2{bottom:325.106667pt;}
.ye1{bottom:326.560000pt;}
.y5b{bottom:327.906667pt;}
.y2f{bottom:341.266667pt;}
.y94{bottom:344.600000pt;}
.y72{bottom:345.400000pt;}
.yb1{bottom:346.200000pt;}
.ye0{bottom:347.800000pt;}
.y5a{bottom:349.133333pt;}
.y2e{bottom:362.466667pt;}
.y93{bottom:365.800000pt;}
.y71{bottom:366.600000pt;}
.yb0{bottom:367.400000pt;}
.ydf{bottom:369.000000pt;}
.y59{bottom:370.200000pt;}
.y2d{bottom:383.533333pt;}
.y92{bottom:386.866667pt;}
.y70{bottom:387.666667pt;}
.yaf{bottom:388.600000pt;}
.yde{bottom:390.066667pt;}
.y58{bottom:391.400000pt;}
.y2c{bottom:404.733333pt;}
.y91{bottom:408.066667pt;}
.y6f{bottom:408.866667pt;}
.yae{bottom:409.666667pt;}
.ydd{bottom:411.266667pt;}
.y57{bottom:412.600000pt;}
.y2b{bottom:425.933333pt;}
.y90{bottom:429.266667pt;}
.y6e{bottom:430.066667pt;}
.yad{bottom:430.866667pt;}
.ydc{bottom:432.466667pt;}
.y56{bottom:433.666667pt;}
.y2a{bottom:447.000000pt;}
.y8f{bottom:450.333333pt;}
.y6d{bottom:451.133333pt;}
.yac{bottom:452.066667pt;}
.ydb{bottom:453.533333pt;}
.y55{bottom:454.866667pt;}
.y29{bottom:468.200000pt;}
.y8e{bottom:471.666667pt;}
.y6c{bottom:472.333333pt;}
.yab{bottom:473.133333pt;}
.yda{bottom:474.733333pt;}
.y54{bottom:476.066667pt;}
.y28{bottom:489.400000pt;}
.y8d{bottom:493.133333pt;}
.y6b{bottom:493.533333pt;}
.yaa{bottom:494.333333pt;}
.yd9{bottom:495.933333pt;}
.y53{bottom:497.133333pt;}
.y27{bottom:510.466667pt;}
.y8c{bottom:514.200000pt;}
.y6a{bottom:514.733333pt;}
.ya9{bottom:515.533333pt;}
.yd8{bottom:517.000000pt;}
.y52{bottom:518.333333pt;}
.y26{bottom:531.666667pt;}
.y8b{bottom:535.400000pt;}
.y69{bottom:535.800000pt;}
.ya8{bottom:536.600000pt;}
.yd7{bottom:538.200000pt;}
.y51{bottom:539.533333pt;}
.y25{bottom:552.866667pt;}
.y8a{bottom:556.600000pt;}
.y68{bottom:557.000000pt;}
.y50{bottom:557.266667pt;}
.ya7{bottom:557.800000pt;}
.yd6{bottom:559.400000pt;}
.y4f{bottom:567.933333pt;}
.y24{bottom:573.933333pt;}
.y89{bottom:577.666667pt;}
.y67{bottom:578.200000pt;}
.ya6{bottom:579.000000pt;}
.yd5{bottom:580.466667pt;}
.y23{bottom:595.133333pt;}
.y88{bottom:598.866667pt;}
.y4e{bottom:599.266667pt;}
.ya5{bottom:600.066667pt;}
.yd4{bottom:601.666667pt;}
.y22{bottom:616.333333pt;}
.yd1{bottom:617.266667pt;}
.y87{bottom:620.066667pt;}
.y4d{bottom:620.466667pt;}
.ya4{bottom:621.266667pt;}
.y86{bottom:641.266667pt;}
.y4c{bottom:641.666667pt;}
.ya3{bottom:642.466667pt;}
.y21{bottom:645.400000pt;}
.y20{bottom:660.373333pt;}
.y85{bottom:662.373333pt;}
.y4b{bottom:662.773333pt;}
.ya2{bottom:663.573333pt;}
.ycd{bottom:679.293333pt;}
.y84{bottom:683.573333pt;}
.y4a{bottom:683.973333pt;}
.ya1{bottom:684.773333pt;}
.ya0{bottom:702.506667pt;}
.y83{bottom:704.773333pt;}
.y49{bottom:705.173333pt;}
.y1f{bottom:715.573333pt;}
.y82{bottom:725.840000pt;}
.ycb{bottom:725.973333pt;}
.y48{bottom:726.240000pt;}
.y15{bottom:733.973333pt;}
.y81{bottom:747.040000pt;}
.y47{bottom:747.440000pt;}
.y80{bottom:768.240000pt;}
.y46{bottom:768.640000pt;}
.yca{bottom:787.973333pt;}
.y7f{bottom:789.440000pt;}
.y45{bottom:789.706667pt;}
.y44{bottom:810.906667pt;}
.y43{bottom:832.106667pt;}
.yc9{bottom:834.640000pt;}
.y42{bottom:853.306667pt;}
.y41{bottom:874.373333pt;}
.yc2{bottom:881.306667pt;}
.y40{bottom:895.573333pt;}
.y14{bottom:902.773333pt;}
.y3f{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y3e{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3d{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3c{bottom:980.266667pt;}
.y3b{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.386667pt;}
.h19{height:37.630208pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hc{height:44.875000pt;}
.ha{height:45.156250pt;}
.h1a{height:45.986667pt;}
.h1c{height:46.000000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h16{height:52.750000pt;}
.h18{height:53.750000pt;}
.h11{height:55.200000pt;}
.he{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1b{height:61.320000pt;}
.h1d{height:61.366667pt;}
.h14{height:62.781250pt;}
.hd{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h2{height:73.281250pt;}
.h17{height:92.000000pt;}
.h12{height:102.470833pt;}
.h13{height:105.479167pt;}
.h15{height:105.532500pt;}
.hf{height:165.586667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:25.200000pt;}
.wc{width:64.266667pt;}
.wb{width:80.033333pt;}
.wd{width:82.000000pt;}
.wa{width:94.133333pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x29{left:61.733322pt;}
.x10{left:78.799988pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1e{left:143.359988pt;}
.x23{left:157.906655pt;}
.x22{left:171.506655pt;}
.x1c{left:180.973322pt;}
.x1d{left:222.839988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:283.373322pt;}
.x13{left:398.866655pt;}
.x1b{left:406.466655pt;}
.x2a{left:430.333322pt;}
.x25{left:433.000000pt;}
.x1f{left:453.666655pt;}
.x15{left:489.933322pt;}
.x12{left:496.999988pt;}
.x20{left:510.866655pt;}
.x26{left:527.800000pt;}
.xc{left:555.933333pt;}
.x21{left:589.839988pt;}
.x27{left:608.506667pt;}
.x14{left:623.693322pt;}
.xf{left:634.360000pt;}
.x28{left:673.440000pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
.x24{left:757.439988pt;}
}




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