
    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_a05fe73b526c8b897f81a73f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_fcbb0751b595306dbc615b5f.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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_7695cc1f6088e59965694b5a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e158fb503fbcb37faa4f1900.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_701d972606846d44017ad675.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_a1b471b2365980f1e0e79f51.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_c10d1bb7c4f0358bbcfafad8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4ca097ae661f7b851cdd6a1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956543;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_e8684066d8dfb11734a9d913.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-84.960000px;}
.v2{vertical-align:-82.800000px;}
.v3{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-2.160000px;}
.ls17{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.454800px;}
.ls30{letter-spacing:-0.414600px;}
.ls2a{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.158400px;}
.ls21{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls12{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.109200px;}
.ls28{letter-spacing:0.109440px;}
.ls1d{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.120960px;}
.ls1f{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.224640px;}
.ls4{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.265200px;}
.lse{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.442080px;}
.lsf{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.440000px;}
.ls20{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls15{letter-spacing:4.320000px;}
.ls23{letter-spacing:5.040000px;}
.ls10{letter-spacing:5.760000px;}
.ls11{letter-spacing:6.480000px;}
.ls24{letter-spacing:9.360000px;}
.ls25{letter-spacing:13.680000px;}
.ls1c{letter-spacing:16.560000px;}
.ls1e{letter-spacing:25.920000px;}
.ls2d{letter-spacing:34.841280px;}
.ls6{letter-spacing:59.220000px;}
.ls27{letter-spacing:67.961280px;}
.ls13{letter-spacing:76.440000px;}
.ls26{letter-spacing:944.796000px;}
.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;}
}
.ws6{word-spacing:-84.060000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-2.128560px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._8{width:2.364000px;}
._c{width:3.643200px;}
._f{width:4.703040px;}
._e{width:6.557760px;}
._b{width:7.972080px;}
._9{width:9.141120px;}
._a{width:10.276080px;}
._10{width:11.327040px;}
._11{width:12.458640px;}
._15{width:13.517520px;}
._14{width:14.779440px;}
._16{width:16.252560px;}
._d{width:18.164160px;}
._1a{width:19.523520px;}
._18{width:21.744000px;}
._19{width:23.132400px;}
._1c{width:26.256000px;}
._20{width:27.532800px;}
._1f{width:28.548000px;}
._17{width:29.592000px;}
._1d{width:35.928000px;}
._1e{width:40.896000px;}
._23{width:41.939760px;}
._1b{width:43.688400px;}
._24{width:45.216000px;}
._12{width:58.423680px;}
._13{width:59.615760px;}
._25{width:66.438720px;}
._22{width:68.112000px;}
._21{width:69.480000px;}
._26{width:158.843520px;}
._7{width:198.666000px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._28{width:846.300000px;}
._2{width:854.940000px;}
._27{width:2550.208560px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yda{bottom:4.140000px;}
.y69{bottom:4.320000px;}
.ye6{bottom:4.485000px;}
.yde{bottom:4.500000px;}
.ye4{bottom:14.745000px;}
.ydc{bottom:14.760000px;}
.ye0{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.ye5{bottom:25.185000px;}
.ydd{bottom:25.200000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yc5{bottom:139.536000px;}
.yef{bottom:144.936000px;}
.y67{bottom:158.790000px;}
.yc4{bottom:161.670000px;}
.yee{bottom:165.630000px;}
.yfc{bottom:166.170000px;}
.y37{bottom:170.310000px;}
.y96{bottom:179.670000px;}
.y66{bottom:180.930000px;}
.yc3{bottom:182.190000px;}
.yfb{bottom:185.250000px;}
.yed{bottom:186.330000px;}
.y36{bottom:189.210000px;}
.y95{bottom:200.190000px;}
.y65{bottom:201.450000px;}
.yfa{bottom:204.150000px;}
.yc2{bottom:204.330000px;}
.yec{bottom:207.030000px;}
.y35{bottom:208.290000px;}
.y94{bottom:222.330000px;}
.yf9{bottom:223.230000px;}
.y64{bottom:223.590000px;}
.yc1{bottom:224.850000px;}
.y34{bottom:227.190000px;}
.yeb{bottom:227.730000px;}
.yf8{bottom:242.130000px;}
.y93{bottom:242.850000px;}
.y63{bottom:244.110000px;}
.y33{bottom:246.270000px;}
.yc0{bottom:246.990000px;}
.yea{bottom:248.070000px;}
.yf7{bottom:261.210000px;}
.y92{bottom:264.990000px;}
.y32{bottom:265.170000px;}
.y62{bottom:266.250000px;}
.ybf{bottom:267.510000px;}
.ye9{bottom:269.130000px;}
.yf6{bottom:280.110000px;}
.y31{bottom:284.070000px;}
.y91{bottom:285.690000px;}
.ye8{bottom:286.245000px;}
.y61{bottom:286.950000px;}
.ybe{bottom:289.650000px;}
.yf5{bottom:299.010000px;}
.y30{bottom:303.150000px;}
.y90{bottom:306.210000px;}
.y60{bottom:309.090000px;}
.ybd{bottom:310.170000px;}
.yf4{bottom:318.090000px;}
.y2f{bottom:322.050000px;}
.y8f{bottom:328.350000px;}
.ye7{bottom:328.365000px;}
.y5f{bottom:329.790000px;}
.ybc{bottom:332.310000px;}
.yf3{bottom:336.990000px;}
.y2e{bottom:341.130000px;}
.y8e{bottom:349.050000px;}
.ye3{bottom:349.785000px;}
.y5e{bottom:350.310000px;}
.ybb{bottom:352.830000px;}
.yf2{bottom:356.070000px;}
.y2d{bottom:360.030000px;}
.y8d{bottom:369.750000px;}
.y5d{bottom:372.450000px;}
.yba{bottom:374.970000px;}
.y2c{bottom:378.930000px;}
.y8c{bottom:391.935000px;}
.y5c{bottom:393.015000px;}
.yf1{bottom:394.095000px;}
.yb9{bottom:395.535000px;}
.y2b{bottom:398.055000px;}
.y8b{bottom:412.635000px;}
.y5b{bottom:415.155000px;}
.y2a{bottom:416.955000px;}
.yb8{bottom:417.675000px;}
.y8a{bottom:433.335000px;}
.ye2{bottom:434.055000px;}
.y5a{bottom:435.855000px;}
.y29{bottom:436.035000px;}
.yb7{bottom:438.375000px;}
.y89{bottom:454.035000px;}
.y28{bottom:454.935000px;}
.ye1{bottom:455.475000px;}
.y59{bottom:456.555000px;}
.yb6{bottom:459.075000px;}
.y27{bottom:473.835000px;}
.y88{bottom:474.735000px;}
.ydf{bottom:476.895000px;}
.y58{bottom:477.255000px;}
.yb5{bottom:479.775000px;}
.y26{bottom:492.915000px;}
.y87{bottom:495.075000px;}
.y57{bottom:497.595000px;}
.yf0{bottom:497.955000px;}
.yb4{bottom:500.475000px;}
.y25{bottom:511.815000px;}
.y86{bottom:516.135000px;}
.y56{bottom:518.655000px;}
.ydb{bottom:519.195000px;}
.yb3{bottom:522.615000px;}
.y24{bottom:530.895000px;}
.y85{bottom:536.835000px;}
.y55{bottom:539.355000px;}
.yb2{bottom:543.135000px;}
.y23{bottom:549.795000px;}
.y84{bottom:557.535000px;}
.y54{bottom:560.055000px;}
.yd9{bottom:561.315000px;}
.yb1{bottom:565.275000px;}
.y22{bottom:568.875000px;}
.y83{bottom:578.235000px;}
.y53{bottom:580.755000px;}
.yb0{bottom:585.795000px;}
.yd8{bottom:587.235000px;}
.y21{bottom:587.775000px;}
.y82{bottom:598.935000px;}
.y52{bottom:601.455000px;}
.y20{bottom:606.675000px;}
.yaf{bottom:607.935000px;}
.y81{bottom:619.635000px;}
.y51{bottom:622.155000px;}
.y1f{bottom:625.755000px;}
.yae{bottom:628.455000px;}
.yd7{bottom:628.635000px;}
.y80{bottom:640.185000px;}
.y50{bottom:642.885000px;}
.y1e{bottom:644.685000px;}
.yd6{bottom:649.365000px;}
.yad{bottom:650.625000px;}
.y7f{bottom:660.885000px;}
.y4f{bottom:663.585000px;}
.y1d{bottom:663.765000px;}
.yd5{bottom:670.065000px;}
.yac{bottom:671.145000px;}
.y7e{bottom:681.585000px;}
.y1c{bottom:682.665000px;}
.y4e{bottom:684.285000px;}
.yd4{bottom:690.585000px;}
.yab{bottom:693.285000px;}
.y1b{bottom:701.565000px;}
.y7d{bottom:702.285000px;}
.y4d{bottom:704.985000px;}
.yd3{bottom:712.725000px;}
.yaa{bottom:713.805000px;}
.y1a{bottom:720.645000px;}
.y7c{bottom:722.985000px;}
.y4c{bottom:725.685000px;}
.yd2{bottom:733.245000px;}
.y110{bottom:734.325000px;}
.ya9{bottom:735.945000px;}
.y19{bottom:740.085000px;}
.y7b{bottom:743.685000px;}
.y4b{bottom:746.385000px;}
.y10f{bottom:755.025000px;}
.yd1{bottom:755.205000px;}
.ya8{bottom:756.645000px;}
.y18{bottom:760.965000px;}
.y7a{bottom:764.385000px;}
.y4a{bottom:767.085000px;}
.y10e{bottom:771.225000px;}
.yd0{bottom:777.345000px;}
.ya7{bottom:778.785000px;}
.y17{bottom:782.925000px;}
.y79{bottom:785.085000px;}
.y49{bottom:787.785000px;}
.y10d{bottom:791.925000px;}
.ycf{bottom:798.045000px;}
.ya6{bottom:799.305000px;}
.y16{bottom:805.785000px;}
.y48{bottom:808.485000px;}
.yce{bottom:820.185000px;}
.ya5{bottom:821.445000px;}
.y78{bottom:826.485000px;}
.y15{bottom:828.285000px;}
.y47{bottom:829.185000px;}
.y10c{bottom:837.285000px;}
.ycd{bottom:840.705000px;}
.ya4{bottom:841.965000px;}
.y77{bottom:847.185000px;}
.y46{bottom:849.885000px;}
.y14{bottom:850.785000px;}
.y10b{bottom:856.185000px;}
.ycc{bottom:862.845000px;}
.ya3{bottom:864.105000px;}
.y76{bottom:867.885000px;}
.y45{bottom:870.585000px;}
.y13{bottom:872.565000px;}
.y10a{bottom:875.265000px;}
.ycb{bottom:883.365000px;}
.ya2{bottom:884.850000px;}
.y75{bottom:888.630000px;}
.y44{bottom:891.330000px;}
.y109{bottom:894.210000px;}
.yca{bottom:905.370000px;}
.ya1{bottom:905.550000px;}
.y74{bottom:909.330000px;}
.y43{bottom:912.030000px;}
.y108{bottom:913.290000px;}
.y12{bottom:916.170000px;}
.ya0{bottom:926.250000px;}
.yc9{bottom:927.510000px;}
.y73{bottom:930.030000px;}
.y107{bottom:932.190000px;}
.y42{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y9f{bottom:946.950000px;}
.yc8{bottom:948.030000px;}
.y72{bottom:950.730000px;}
.y106{bottom:951.270000px;}
.y41{bottom:953.430000px;}
.y10{bottom:964.590000px;}
.y9e{bottom:967.470000px;}
.yc7{bottom:970.170000px;}
.y71{bottom:971.430000px;}
.y40{bottom:974.130000px;}
.yf{bottom:988.710000px;}
.y105{bottom:989.070000px;}
.y9d{bottom:989.610000px;}
.yc6{bottom:990.690000px;}
.y70{bottom:992.130000px;}
.y3f{bottom:994.830000px;}
.y104{bottom:1008.150000px;}
.y9c{bottom:1010.130000px;}
.ye{bottom:1012.830000px;}
.y3e{bottom:1015.530000px;}
.y103{bottom:1027.050000px;}
.y9b{bottom:1032.270000px;}
.y6f{bottom:1033.530000px;}
.y3d{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y102{bottom:1046.130000px;}
.y9a{bottom:1052.790000px;}
.y6e{bottom:1054.230000px;}
.y3c{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.y101{bottom:1065.030000px;}
.y6d{bottom:1074.750000px;}
.y99{bottom:1074.930000px;}
.y6{bottom:1077.090000px;}
.y3b{bottom:1077.630000px;}
.y100{bottom:1083.930000px;}
.y68{bottom:1093.830000px;}
.y98{bottom:1095.450000px;}
.y6c{bottom:1096.890000px;}
.y3a{bottom:1098.330000px;}
.yff{bottom:1103.010000px;}
.y6b{bottom:1117.590000px;}
.y39{bottom:1119.030000px;}
.yfe{bottom:1121.910000px;}
.y97{bottom:1138.320000px;}
.y38{bottom:1139.400000px;}
.y6a{bottom:1139.760000px;}
.yfd{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h13{height:20.685000px;}
.h18{height:20.700000px;}
.h14{height:41.385000px;}
.h19{height:41.400000px;}
.h15{height:41.421000px;}
.h3{height:45.184219px;}
.hb{height:56.213437px;}
.h17{height:59.383125px;}
.h10{height:62.130000px;}
.he{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h16{height:68.084282px;}
.h12{height:70.628906px;}
.h7{height:70.664062px;}
.hd{height:72.562500px;}
.h8{height:72.846211px;}
.hf{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w7{width:112.320000px;}
.w9{width:128.181000px;}
.wa{width:128.190000px;}
.w8{width:129.996000px;}
.w3{width:180.735000px;}
.w6{width:216.253500px;}
.wb{width:337.753500px;}
.wc{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x29{left:10.080000px;}
.x2d{left:13.860000px;}
.x23{left:16.005000px;}
.x25{left:19.440000px;}
.x21{left:23.040000px;}
.x1f{left:25.545000px;}
.x27{left:28.800000px;}
.x26{left:30.960000px;}
.x1b{left:32.580000px;}
.x28{left:35.100000px;}
.x22{left:37.470000px;}
.x1d{left:40.710000px;}
.x2a{left:41.760000px;}
.x2c{left:49.665000px;}
.x24{left:51.465000px;}
.x2b{left:54.570000px;}
.x19{left:67.528500px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x17{left:90.756000px;}
.xa{left:99.036000px;}
.xd{left:103.716000px;}
.x15{left:127.476000px;}
.xe{left:139.716000px;}
.x16{left:141.156000px;}
.x9{left:145.836000px;}
.x5{left:172.650000px;}
.x2f{left:184.530000px;}
.x10{left:230.970000px;}
.x18{left:263.550000px;}
.x1a{left:304.455000px;}
.x13{left:339.735000px;}
.xb{left:364.575000px;}
.x12{left:387.075000px;}
.xf{left:395.175000px;}
.x2e{left:414.795000px;}
.x1c{left:417.675000px;}
.xc{left:446.505000px;}
.x14{left:467.745000px;}
.x1e{left:548.400000px;}
.x4{left:552.900000px;}
.x11{left:640.410000px;}
.x20{left:677.310000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v2{vertical-align:-73.600000pt;}
.v3{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-1.920000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.404267pt;}
.ls30{letter-spacing:-0.368533pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.140800pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls12{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.097067pt;}
.ls28{letter-spacing:0.097280pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.107520pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.199680pt;}
.ls4{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.235733pt;}
.lse{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.392960pt;}
.lsf{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.920000pt;}
.lsd{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls23{letter-spacing:4.480000pt;}
.ls10{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls1e{letter-spacing:23.040000pt;}
.ls2d{letter-spacing:30.970027pt;}
.ls6{letter-spacing:52.640000pt;}
.ls27{letter-spacing:60.410027pt;}
.ls13{letter-spacing:67.946667pt;}
.ls26{letter-spacing:839.818667pt;}
.ws6{word-spacing:-74.720000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-1.892053pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._8{width:2.101333pt;}
._c{width:3.238400pt;}
._f{width:4.180480pt;}
._e{width:5.829120pt;}
._b{width:7.086293pt;}
._9{width:8.125440pt;}
._a{width:9.134293pt;}
._10{width:10.068480pt;}
._11{width:11.074347pt;}
._15{width:12.015573pt;}
._14{width:13.137280pt;}
._16{width:14.446720pt;}
._d{width:16.145920pt;}
._1a{width:17.354240pt;}
._18{width:19.328000pt;}
._19{width:20.562133pt;}
._1c{width:23.338667pt;}
._20{width:24.473600pt;}
._1f{width:25.376000pt;}
._17{width:26.304000pt;}
._1d{width:31.936000pt;}
._1e{width:36.352000pt;}
._23{width:37.279787pt;}
._1b{width:38.834133pt;}
._24{width:40.192000pt;}
._12{width:51.932160pt;}
._13{width:52.991787pt;}
._25{width:59.056640pt;}
._22{width:60.544000pt;}
._21{width:61.760000pt;}
._26{width:141.194240pt;}
._7{width:176.592000pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._28{width:752.266667pt;}
._2{width:759.946667pt;}
._27{width:2266.852053pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yda{bottom:3.680000pt;}
.y69{bottom:3.840000pt;}
.ye6{bottom:3.986667pt;}
.yde{bottom:4.000000pt;}
.ye4{bottom:13.106667pt;}
.ydc{bottom:13.120000pt;}
.ye0{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.ye5{bottom:22.386667pt;}
.ydd{bottom:22.400000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yc5{bottom:124.032000pt;}
.yef{bottom:128.832000pt;}
.y67{bottom:141.146667pt;}
.yc4{bottom:143.706667pt;}
.yee{bottom:147.226667pt;}
.yfc{bottom:147.706667pt;}
.y37{bottom:151.386667pt;}
.y96{bottom:159.706667pt;}
.y66{bottom:160.826667pt;}
.yc3{bottom:161.946667pt;}
.yfb{bottom:164.666667pt;}
.yed{bottom:165.626667pt;}
.y36{bottom:168.186667pt;}
.y95{bottom:177.946667pt;}
.y65{bottom:179.066667pt;}
.yfa{bottom:181.466667pt;}
.yc2{bottom:181.626667pt;}
.yec{bottom:184.026667pt;}
.y35{bottom:185.146667pt;}
.y94{bottom:197.626667pt;}
.yf9{bottom:198.426667pt;}
.y64{bottom:198.746667pt;}
.yc1{bottom:199.866667pt;}
.y34{bottom:201.946667pt;}
.yeb{bottom:202.426667pt;}
.yf8{bottom:215.226667pt;}
.y93{bottom:215.866667pt;}
.y63{bottom:216.986667pt;}
.y33{bottom:218.906667pt;}
.yc0{bottom:219.546667pt;}
.yea{bottom:220.506667pt;}
.yf7{bottom:232.186667pt;}
.y92{bottom:235.546667pt;}
.y32{bottom:235.706667pt;}
.y62{bottom:236.666667pt;}
.ybf{bottom:237.786667pt;}
.ye9{bottom:239.226667pt;}
.yf6{bottom:248.986667pt;}
.y31{bottom:252.506667pt;}
.y91{bottom:253.946667pt;}
.ye8{bottom:254.440000pt;}
.y61{bottom:255.066667pt;}
.ybe{bottom:257.466667pt;}
.yf5{bottom:265.786667pt;}
.y30{bottom:269.466667pt;}
.y90{bottom:272.186667pt;}
.y60{bottom:274.746667pt;}
.ybd{bottom:275.706667pt;}
.yf4{bottom:282.746667pt;}
.y2f{bottom:286.266667pt;}
.y8f{bottom:291.866667pt;}
.ye7{bottom:291.880000pt;}
.y5f{bottom:293.146667pt;}
.ybc{bottom:295.386667pt;}
.yf3{bottom:299.546667pt;}
.y2e{bottom:303.226667pt;}
.y8e{bottom:310.266667pt;}
.ye3{bottom:310.920000pt;}
.y5e{bottom:311.386667pt;}
.ybb{bottom:313.626667pt;}
.yf2{bottom:316.506667pt;}
.y2d{bottom:320.026667pt;}
.y8d{bottom:328.666667pt;}
.y5d{bottom:331.066667pt;}
.yba{bottom:333.306667pt;}
.y2c{bottom:336.826667pt;}
.y8c{bottom:348.386667pt;}
.y5c{bottom:349.346667pt;}
.yf1{bottom:350.306667pt;}
.yb9{bottom:351.586667pt;}
.y2b{bottom:353.826667pt;}
.y8b{bottom:366.786667pt;}
.y5b{bottom:369.026667pt;}
.y2a{bottom:370.626667pt;}
.yb8{bottom:371.266667pt;}
.y8a{bottom:385.186667pt;}
.ye2{bottom:385.826667pt;}
.y5a{bottom:387.426667pt;}
.y29{bottom:387.586667pt;}
.yb7{bottom:389.666667pt;}
.y89{bottom:403.586667pt;}
.y28{bottom:404.386667pt;}
.ye1{bottom:404.866667pt;}
.y59{bottom:405.826667pt;}
.yb6{bottom:408.066667pt;}
.y27{bottom:421.186667pt;}
.y88{bottom:421.986667pt;}
.ydf{bottom:423.906667pt;}
.y58{bottom:424.226667pt;}
.yb5{bottom:426.466667pt;}
.y26{bottom:438.146667pt;}
.y87{bottom:440.066667pt;}
.y57{bottom:442.306667pt;}
.yf0{bottom:442.626667pt;}
.yb4{bottom:444.866667pt;}
.y25{bottom:454.946667pt;}
.y86{bottom:458.786667pt;}
.y56{bottom:461.026667pt;}
.ydb{bottom:461.506667pt;}
.yb3{bottom:464.546667pt;}
.y24{bottom:471.906667pt;}
.y85{bottom:477.186667pt;}
.y55{bottom:479.426667pt;}
.yb2{bottom:482.786667pt;}
.y23{bottom:488.706667pt;}
.y84{bottom:495.586667pt;}
.y54{bottom:497.826667pt;}
.yd9{bottom:498.946667pt;}
.yb1{bottom:502.466667pt;}
.y22{bottom:505.666667pt;}
.y83{bottom:513.986667pt;}
.y53{bottom:516.226667pt;}
.yb0{bottom:520.706667pt;}
.yd8{bottom:521.986667pt;}
.y21{bottom:522.466667pt;}
.y82{bottom:532.386667pt;}
.y52{bottom:534.626667pt;}
.y20{bottom:539.266667pt;}
.yaf{bottom:540.386667pt;}
.y81{bottom:550.786667pt;}
.y51{bottom:553.026667pt;}
.y1f{bottom:556.226667pt;}
.yae{bottom:558.626667pt;}
.yd7{bottom:558.786667pt;}
.y80{bottom:569.053333pt;}
.y50{bottom:571.453333pt;}
.y1e{bottom:573.053333pt;}
.yd6{bottom:577.213333pt;}
.yad{bottom:578.333333pt;}
.y7f{bottom:587.453333pt;}
.y4f{bottom:589.853333pt;}
.y1d{bottom:590.013333pt;}
.yd5{bottom:595.613333pt;}
.yac{bottom:596.573333pt;}
.y7e{bottom:605.853333pt;}
.y1c{bottom:606.813333pt;}
.y4e{bottom:608.253333pt;}
.yd4{bottom:613.853333pt;}
.yab{bottom:616.253333pt;}
.y1b{bottom:623.613333pt;}
.y7d{bottom:624.253333pt;}
.y4d{bottom:626.653333pt;}
.yd3{bottom:633.533333pt;}
.yaa{bottom:634.493333pt;}
.y1a{bottom:640.573333pt;}
.y7c{bottom:642.653333pt;}
.y4c{bottom:645.053333pt;}
.yd2{bottom:651.773333pt;}
.y110{bottom:652.733333pt;}
.ya9{bottom:654.173333pt;}
.y19{bottom:657.853333pt;}
.y7b{bottom:661.053333pt;}
.y4b{bottom:663.453333pt;}
.y10f{bottom:671.133333pt;}
.yd1{bottom:671.293333pt;}
.ya8{bottom:672.573333pt;}
.y18{bottom:676.413333pt;}
.y7a{bottom:679.453333pt;}
.y4a{bottom:681.853333pt;}
.y10e{bottom:685.533333pt;}
.yd0{bottom:690.973333pt;}
.ya7{bottom:692.253333pt;}
.y17{bottom:695.933333pt;}
.y79{bottom:697.853333pt;}
.y49{bottom:700.253333pt;}
.y10d{bottom:703.933333pt;}
.ycf{bottom:709.373333pt;}
.ya6{bottom:710.493333pt;}
.y16{bottom:716.253333pt;}
.y48{bottom:718.653333pt;}
.yce{bottom:729.053333pt;}
.ya5{bottom:730.173333pt;}
.y78{bottom:734.653333pt;}
.y15{bottom:736.253333pt;}
.y47{bottom:737.053333pt;}
.y10c{bottom:744.253333pt;}
.ycd{bottom:747.293333pt;}
.ya4{bottom:748.413333pt;}
.y77{bottom:753.053333pt;}
.y46{bottom:755.453333pt;}
.y14{bottom:756.253333pt;}
.y10b{bottom:761.053333pt;}
.ycc{bottom:766.973333pt;}
.ya3{bottom:768.093333pt;}
.y76{bottom:771.453333pt;}
.y45{bottom:773.853333pt;}
.y13{bottom:775.613333pt;}
.y10a{bottom:778.013333pt;}
.ycb{bottom:785.213333pt;}
.ya2{bottom:786.533333pt;}
.y75{bottom:789.893333pt;}
.y44{bottom:792.293333pt;}
.y109{bottom:794.853333pt;}
.yca{bottom:804.773333pt;}
.ya1{bottom:804.933333pt;}
.y74{bottom:808.293333pt;}
.y43{bottom:810.693333pt;}
.y108{bottom:811.813333pt;}
.y12{bottom:814.373333pt;}
.ya0{bottom:823.333333pt;}
.yc9{bottom:824.453333pt;}
.y73{bottom:826.693333pt;}
.y107{bottom:828.613333pt;}
.y42{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y9f{bottom:841.733333pt;}
.yc8{bottom:842.693333pt;}
.y72{bottom:845.093333pt;}
.y106{bottom:845.573333pt;}
.y41{bottom:847.493333pt;}
.y10{bottom:857.413333pt;}
.y9e{bottom:859.973333pt;}
.yc7{bottom:862.373333pt;}
.y71{bottom:863.493333pt;}
.y40{bottom:865.893333pt;}
.yf{bottom:878.853333pt;}
.y105{bottom:879.173333pt;}
.y9d{bottom:879.653333pt;}
.yc6{bottom:880.613333pt;}
.y70{bottom:881.893333pt;}
.y3f{bottom:884.293333pt;}
.y104{bottom:896.133333pt;}
.y9c{bottom:897.893333pt;}
.ye{bottom:900.293333pt;}
.y3e{bottom:902.693333pt;}
.y103{bottom:912.933333pt;}
.y9b{bottom:917.573333pt;}
.y6f{bottom:918.693333pt;}
.y3d{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y102{bottom:929.893333pt;}
.y9a{bottom:935.813333pt;}
.y6e{bottom:937.093333pt;}
.y3c{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.y101{bottom:946.693333pt;}
.y6d{bottom:955.333333pt;}
.y99{bottom:955.493333pt;}
.y6{bottom:957.413333pt;}
.y3b{bottom:957.893333pt;}
.y100{bottom:963.493333pt;}
.y68{bottom:972.293333pt;}
.y98{bottom:973.733333pt;}
.y6c{bottom:975.013333pt;}
.y3a{bottom:976.293333pt;}
.yff{bottom:980.453333pt;}
.y6b{bottom:993.413333pt;}
.y39{bottom:994.693333pt;}
.yfe{bottom:997.253333pt;}
.y97{bottom:1011.840000pt;}
.y38{bottom:1012.800000pt;}
.y6a{bottom:1013.120000pt;}
.yfd{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h13{height:18.386667pt;}
.h18{height:18.400000pt;}
.h14{height:36.786667pt;}
.h19{height:36.800000pt;}
.h15{height:36.818667pt;}
.h3{height:40.163750pt;}
.hb{height:49.967500pt;}
.h17{height:52.785000pt;}
.h10{height:55.226667pt;}
.he{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h16{height:60.519362pt;}
.h12{height:62.781250pt;}
.h7{height:62.812500pt;}
.hd{height:64.500000pt;}
.h8{height:64.752187pt;}
.hf{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w7{width:99.840000pt;}
.w9{width:113.938667pt;}
.wa{width:113.946667pt;}
.w8{width:115.552000pt;}
.w3{width:160.653333pt;}
.w6{width:192.225333pt;}
.wb{width:300.225333pt;}
.wc{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x29{left:8.960000pt;}
.x2d{left:12.320000pt;}
.x23{left:14.226667pt;}
.x25{left:17.280000pt;}
.x21{left:20.480000pt;}
.x1f{left:22.706667pt;}
.x27{left:25.600000pt;}
.x26{left:27.520000pt;}
.x1b{left:28.960000pt;}
.x28{left:31.200000pt;}
.x22{left:33.306667pt;}
.x1d{left:36.186667pt;}
.x2a{left:37.120000pt;}
.x2c{left:44.146667pt;}
.x24{left:45.746667pt;}
.x2b{left:48.506667pt;}
.x19{left:60.025333pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x17{left:80.672000pt;}
.xa{left:88.032000pt;}
.xd{left:92.192000pt;}
.x15{left:113.312000pt;}
.xe{left:124.192000pt;}
.x16{left:125.472000pt;}
.x9{left:129.632000pt;}
.x5{left:153.466667pt;}
.x2f{left:164.026667pt;}
.x10{left:205.306667pt;}
.x18{left:234.266667pt;}
.x1a{left:270.626667pt;}
.x13{left:301.986667pt;}
.xb{left:324.066667pt;}
.x12{left:344.066667pt;}
.xf{left:351.266667pt;}
.x2e{left:368.706667pt;}
.x1c{left:371.266667pt;}
.xc{left:396.893333pt;}
.x14{left:415.773333pt;}
.x1e{left:487.466667pt;}
.x4{left:491.466667pt;}
.x11{left:569.253333pt;}
.x20{left:602.053333pt;}
.x6{left:652.133333pt;}
.x8{left:718.240000pt;}
}




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