
    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_6f021d554aef1a7870c5f35b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_886b001d86ebef6244ce3a5d.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_0a12212ebeec5e4bae84583a.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_9587760f9d4e77be70db3805.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_449963d4a51d8a468136087b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be8033dd535c30a79be70026.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_5fe5fd0daa456cea960576de.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_462893388cb861b4949f1146.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.523926;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_071849f52826bc49c2480e99.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);}
.v4{vertical-align:-116.640000px;}
.v1{vertical-align:-94.320000px;}
.v2{vertical-align:-89.280000px;}
.v8{vertical-align:-82.800000px;}
.v9{vertical-align:-81.360000px;}
.va{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.300000px;}
.v6{vertical-align:42.480000px;}
.v5{vertical-align:49.680000px;}
.v7{vertical-align:92.160000px;}
.ls2d{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls38{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.152400px;}
.ls1a{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls3d{letter-spacing:-0.043920px;}
.ls9{letter-spacing:-0.025920px;}
.lsa{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls3a{letter-spacing:0.027360px;}
.ls3b{letter-spacing:0.030240px;}
.ls3{letter-spacing:0.031680px;}
.ls17{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.109200px;}
.ls23{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.158400px;}
.ls1d{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.256200px;}
.ls31{letter-spacing:0.277200px;}
.ls2a{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.296640px;}
.ls6{letter-spacing:0.305280px;}
.ls44{letter-spacing:0.305400px;}
.ls39{letter-spacing:0.331200px;}
.ls3f{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.414720px;}
.ls16{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.567360px;}
.ls1b{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.840000px;}
.ls2c{letter-spacing:0.936000px;}
.ls1f{letter-spacing:2.160000px;}
.ls15{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls7{letter-spacing:4.320000px;}
.ls27{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.760000px;}
.ls2e{letter-spacing:7.200000px;}
.ls21{letter-spacing:7.920000px;}
.ls2f{letter-spacing:8.040000px;}
.ls24{letter-spacing:8.640000px;}
.ls25{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.800000px;}
.ls28{letter-spacing:11.520000px;}
.ls26{letter-spacing:12.240000px;}
.ls22{letter-spacing:14.400000px;}
.ls20{letter-spacing:15.840000px;}
.ls13{letter-spacing:18.720000px;}
.ls32{letter-spacing:23.592720px;}
.ls1{letter-spacing:24.624000px;}
.ls43{letter-spacing:34.841280px;}
.ls33{letter-spacing:43.475040px;}
.ls41{letter-spacing:67.961280px;}
.ls35{letter-spacing:84.072720px;}
.ls34{letter-spacing:87.552720px;}
.ls37{letter-spacing:749.676000px;}
.ls40{letter-spacing:859.836000px;}
.ls3e{letter-spacing:937.740000px;}
.ls30{letter-spacing:1055.676000px;}
.ls4{letter-spacing:1420.116000px;}
.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:-84.060000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.414080px;}
.wse{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.789000px;}
.ws17{word-spacing:-18.576000px;}
.ws13{word-spacing:-18.488880px;}
.wsd{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.568000px;}
.wsb{word-spacing:-17.208000px;}
.ws19{word-spacing:-16.669200px;}
.ws18{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.407600px;}
.ws4{word-spacing:-16.254600px;}
.ws11{word-spacing:-13.177440px;}
.wsf{word-spacing:-13.174560px;}
.ws10{word-spacing:-13.147200px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:128.779920px;}
._18{margin-left:-4.070400px;}
._10{margin-left:-2.064000px;}
._5{margin-left:-1.008000px;}
._0{width:1.632000px;}
._e{width:2.649600px;}
._6{width:3.775680px;}
._7{width:5.100480px;}
._8{width:6.426240px;}
._b{width:7.513920px;}
._c{width:8.544960px;}
._a{width:9.744000px;}
._9{width:11.009280px;}
._d{width:12.240000px;}
._11{width:13.248000px;}
._12{width:14.400000px;}
._16{width:15.576000px;}
._15{width:16.848000px;}
._f{width:18.149760px;}
._13{width:19.236000px;}
._14{width:21.456000px;}
._1c{width:22.896000px;}
._17{width:24.487920px;}
._1b{width:64.704480px;}
._1a{width:82.980000px;}
._19{width:84.240000px;}
._1{width:479.559840px;}
._4{width:775.740000px;}
._2{width:778.620000px;}
._3{width:850.940640px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:336.240000px;}
.yb9{bottom:-5.955000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.yba{bottom:4.125000px;}
.y67{bottom:4.140000px;}
.ybc{bottom:4.485000px;}
.yc0{bottom:4.492500px;}
.yc4{bottom:4.500000px;}
.yc2{bottom:4.530000px;}
.yc{bottom:21.240000px;}
.yf9{bottom:25.200000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.ybf{bottom:140.983500px;}
.y33{bottom:144.036000px;}
.y98{bottom:146.016000px;}
.y65{bottom:151.230000px;}
.yac{bottom:152.310000px;}
.ybe{bottom:162.405000px;}
.y32{bottom:162.930000px;}
.yf2{bottom:163.470000px;}
.y97{bottom:166.710000px;}
.y64{bottom:171.930000px;}
.yab{bottom:173.010000px;}
.y31{bottom:181.830000px;}
.yf1{bottom:182.370000px;}
.ybd{bottom:184.005000px;}
.y96{bottom:187.410000px;}
.y63{bottom:192.630000px;}
.yaa{bottom:193.710000px;}
.y30{bottom:200.910000px;}
.yf0{bottom:201.450000px;}
.ybb{bottom:205.425000px;}
.y95{bottom:208.110000px;}
.ya9{bottom:209.910000px;}
.y62{bottom:213.330000px;}
.y2f{bottom:219.810000px;}
.yef{bottom:220.350000px;}
.yb8{bottom:226.845000px;}
.y94{bottom:228.810000px;}
.y61{bottom:234.030000px;}
.y2e{bottom:238.890000px;}
.yee{bottom:239.430000px;}
.y93{bottom:249.510000px;}
.yb7{bottom:252.750000px;}
.y60{bottom:254.730000px;}
.y2d{bottom:257.790000px;}
.yed{bottom:258.330000px;}
.y92{bottom:270.210000px;}
.y5f{bottom:275.430000px;}
.y2c{bottom:276.690000px;}
.yec{bottom:277.410000px;}
.y91{bottom:290.910000px;}
.yb6{bottom:293.790000px;}
.y2b{bottom:295.770000px;}
.y5e{bottom:296.130000px;}
.yeb{bottom:296.310000px;}
.y90{bottom:311.610000px;}
.yb5{bottom:313.050000px;}
.y2a{bottom:314.670000px;}
.yea{bottom:315.210000px;}
.y5d{bottom:316.830000px;}
.y8f{bottom:332.310000px;}
.y29{bottom:333.750000px;}
.ye9{bottom:334.290000px;}
.y5c{bottom:337.530000px;}
.y28{bottom:352.650000px;}
.y8e{bottom:353.010000px;}
.ye8{bottom:353.190000px;}
.yb4{bottom:354.450000px;}
.y5b{bottom:358.230000px;}
.y27{bottom:371.550000px;}
.ye7{bottom:372.270000px;}
.y8d{bottom:373.710000px;}
.yb3{bottom:375.150000px;}
.y5a{bottom:378.930000px;}
.y26{bottom:390.675000px;}
.ye6{bottom:391.215000px;}
.y8c{bottom:394.455000px;}
.yb2{bottom:395.895000px;}
.y59{bottom:399.675000px;}
.y25{bottom:410.295000px;}
.ye5{bottom:410.655000px;}
.y8b{bottom:415.155000px;}
.yb1{bottom:416.235000px;}
.y58{bottom:420.375000px;}
.y24{bottom:432.255000px;}
.yb0{bottom:435.675000px;}
.y8a{bottom:435.855000px;}
.y57{bottom:441.075000px;}
.ye4{bottom:452.055000px;}
.y23{bottom:455.295000px;}
.yaf{bottom:456.375000px;}
.y89{bottom:456.555000px;}
.y56{bottom:461.775000px;}
.ye3{bottom:472.755000px;}
.yae{bottom:476.535000px;}
.y88{bottom:477.255000px;}
.y22{bottom:477.615000px;}
.y55{bottom:482.475000px;}
.yad{bottom:491.655000px;}
.ye2{bottom:493.455000px;}
.y87{bottom:497.955000px;}
.y21{bottom:499.575000px;}
.y54{bottom:503.175000px;}
.ye1{bottom:514.155000px;}
.y86{bottom:518.655000px;}
.y20{bottom:522.435000px;}
.y53{bottom:523.875000px;}
.ye0{bottom:534.855000px;}
.y85{bottom:539.355000px;}
.y52{bottom:544.575000px;}
.y1f{bottom:544.935000px;}
.ydf{bottom:555.555000px;}
.y84{bottom:560.055000px;}
.y51{bottom:565.275000px;}
.yde{bottom:576.255000px;}
.y83{bottom:580.755000px;}
.y50{bottom:585.975000px;}
.y1e{bottom:589.035000px;}
.ydd{bottom:596.955000px;}
.y82{bottom:601.455000px;}
.y4f{bottom:606.675000px;}
.y1d{bottom:608.655000px;}
.ydc{bottom:617.655000px;}
.y81{bottom:622.155000px;}
.y4e{bottom:627.375000px;}
.y1c{bottom:630.615000px;}
.ydb{bottom:638.385000px;}
.ya8{bottom:639.645000px;}
.y80{bottom:642.885000px;}
.y4d{bottom:648.105000px;}
.y1b{bottom:653.685000px;}
.yda{bottom:659.085000px;}
.ya7{bottom:660.345000px;}
.y7f{bottom:663.585000px;}
.y4c{bottom:668.805000px;}
.y1a{bottom:676.005000px;}
.yd9{bottom:679.785000px;}
.ya6{bottom:681.045000px;}
.yfc{bottom:682.125000px;}
.y7e{bottom:684.285000px;}
.y4b{bottom:689.505000px;}
.y19{bottom:697.965000px;}
.yd8{bottom:700.485000px;}
.yfb{bottom:701.025000px;}
.ya5{bottom:701.745000px;}
.y7d{bottom:704.985000px;}
.y4a{bottom:710.205000px;}
.yfa{bottom:719.925000px;}
.y18{bottom:720.825000px;}
.yd7{bottom:721.185000px;}
.ya4{bottom:722.085000px;}
.y7c{bottom:725.685000px;}
.y49{bottom:730.905000px;}
.yf8{bottom:734.865000px;}
.yd6{bottom:741.525000px;}
.ya3{bottom:743.145000px;}
.y17{bottom:743.325000px;}
.y7b{bottom:746.385000px;}
.y48{bottom:751.605000px;}
.yf7{bottom:755.565000px;}
.yd5{bottom:762.585000px;}
.ya2{bottom:763.845000px;}
.y16{bottom:765.105000px;}
.y7a{bottom:767.085000px;}
.y47{bottom:772.305000px;}
.ya1{bottom:780.405000px;}
.yd4{bottom:783.285000px;}
.y15{bottom:787.425000px;}
.y79{bottom:787.785000px;}
.y46{bottom:793.005000px;}
.yf6{bottom:799.305000px;}
.yd3{bottom:803.985000px;}
.y14{bottom:807.045000px;}
.y78{bottom:808.485000px;}
.y66{bottom:809.205000px;}
.y45{bottom:813.705000px;}
.yf5{bottom:818.385000px;}
.ya0{bottom:820.185000px;}
.yd2{bottom:824.685000px;}
.y77{bottom:829.185000px;}
.y44{bottom:834.405000px;}
.yf4{bottom:837.285000px;}
.y9f{bottom:840.885000px;}
.yd1{bottom:845.385000px;}
.y76{bottom:849.525000px;}
.y43{bottom:854.565000px;}
.y13{bottom:854.745000px;}
.yf3{bottom:856.185000px;}
.y9e{bottom:861.585000px;}
.yd0{bottom:866.085000px;}
.y75{bottom:870.585000px;}
.y12{bottom:874.365000px;}
.y42{bottom:875.265000px;}
.y9d{bottom:877.965000px;}
.ycf{bottom:886.830000px;}
.y74{bottom:891.330000px;}
.y41{bottom:894.210000px;}
.y11{bottom:898.530000px;}
.yce{bottom:907.530000px;}
.y73{bottom:912.030000px;}
.y40{bottom:913.290000px;}
.y9c{bottom:917.790000px;}
.y10{bottom:922.650000px;}
.ycd{bottom:928.230000px;}
.y3f{bottom:932.190000px;}
.y72{bottom:932.730000px;}
.y9b{bottom:938.490000px;}
.yf{bottom:946.050000px;}
.ycc{bottom:948.930000px;}
.y3e{bottom:951.270000px;}
.y71{bottom:953.430000px;}
.y9a{bottom:959.190000px;}
.y9{bottom:960.990000px;}
.ycb{bottom:969.630000px;}
.y3d{bottom:970.170000px;}
.y70{bottom:974.130000px;}
.y99{bottom:975.750000px;}
.y3c{bottom:989.070000px;}
.yca{bottom:990.330000px;}
.y6f{bottom:994.830000px;}
.y3b{bottom:1008.150000px;}
.yc9{bottom:1011.030000px;}
.y6e{bottom:1015.530000px;}
.y3a{bottom:1027.050000px;}
.yc8{bottom:1031.730000px;}
.y6d{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y39{bottom:1046.130000px;}
.yc7{bottom:1048.650000px;}
.y6c{bottom:1056.930000px;}
.y38{bottom:1065.030000px;}
.yc6{bottom:1070.070000px;}
.y6b{bottom:1077.630000px;}
.y37{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.yc5{bottom:1091.490000px;}
.y6a{bottom:1098.330000px;}
.y36{bottom:1103.010000px;}
.yc3{bottom:1112.910000px;}
.y69{bottom:1119.030000px;}
.y35{bottom:1121.910000px;}
.yc1{bottom:1134.330000px;}
.y6{bottom:1139.580000px;}
.y68{bottom:1139.760000px;}
.y34{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1a{height:20.685000px;}
.h1b{height:20.692500px;}
.h1e{height:20.700000px;}
.h1c{height:20.730000px;}
.h1f{height:41.400000px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.h19{height:61.171875px;}
.h10{height:61.920000px;}
.hf{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h1d{height:68.084282px;}
.h18{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:72.562500px;}
.h9{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h8{height:78.825000px;}
.h13{height:80.464922px;}
.h12{height:80.644922px;}
.ha{height:84.898125px;}
.h17{height:113.144062px;}
.h16{height:113.324062px;}
.h15{height:125.156953px;}
.h7{height:132.789375px;}
.h14{height:184.659609px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w9{width:98.625000px;}
.w7{width:98.841000px;}
.wa{width:113.610000px;}
.w6{width:142.234500px;}
.w8{width:162.930000px;}
.w3{width:180.735000px;}
.wb{width:337.753500px;}
.wc{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x24{left:29.865000px;}
.x27{left:31.845000px;}
.x29{left:32.970000px;}
.x2a{left:37.260000px;}
.x32{left:38.700000px;}
.x2c{left:41.040000px;}
.x30{left:43.200000px;}
.x31{left:45.540000px;}
.x33{left:47.700000px;}
.x2b{left:52.200000px;}
.x2d{left:56.700000px;}
.x2f{left:61.200000px;}
.x2e{left:65.700000px;}
.x22{left:71.128500px;}
.x25{left:75.960000px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.xa{left:90.036000px;}
.x1e{left:95.616000px;}
.xb{left:113.436000px;}
.x35{left:122.610000px;}
.x21{left:124.776000px;}
.xe{left:127.476000px;}
.x1d{left:133.236000px;}
.x17{left:141.156000px;}
.x11{left:157.890000px;}
.x6{left:172.650000px;}
.x2{left:224.670000px;}
.x23{left:230.085000px;}
.x36{left:243.075000px;}
.xd{left:328.755000px;}
.x14{left:378.435000px;}
.xc{left:407.415000px;}
.x15{left:409.755000px;}
.x34{left:414.795000px;}
.x12{left:439.815000px;}
.x20{left:446.505000px;}
.x16{left:458.565000px;}
.x1a{left:465.225000px;}
.x18{left:467.385000px;}
.xf{left:474.045000px;}
.x13{left:479.085000px;}
.x10{left:483.765000px;}
.x26{left:493.320000px;}
.x1b{left:495.285000px;}
.x19{left:509.505000px;}
.x5{left:552.900000px;}
.x28{left:592.680000px;}
.x1c{left:672.630000px;}
.x1f{left:691.710000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v4{vertical-align:-103.680000pt;}
.v1{vertical-align:-83.840000pt;}
.v2{vertical-align:-79.360000pt;}
.v8{vertical-align:-73.600000pt;}
.v9{vertical-align:-72.320000pt;}
.va{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.600000pt;}
.v6{vertical-align:37.760000pt;}
.v5{vertical-align:44.160000pt;}
.v7{vertical-align:81.920000pt;}
.ls2d{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls3d{letter-spacing:-0.039040pt;}
.ls9{letter-spacing:-0.023040pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls3a{letter-spacing:0.024320pt;}
.ls3b{letter-spacing:0.026880pt;}
.ls3{letter-spacing:0.028160pt;}
.ls17{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.097067pt;}
.ls23{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.140800pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.227733pt;}
.ls31{letter-spacing:0.246400pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.263680pt;}
.ls6{letter-spacing:0.271360pt;}
.ls44{letter-spacing:0.271467pt;}
.ls39{letter-spacing:0.294400pt;}
.ls3f{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.368640pt;}
.ls16{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.504320pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.746667pt;}
.ls2c{letter-spacing:0.832000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls15{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls7{letter-spacing:3.840000pt;}
.ls27{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.120000pt;}
.ls2e{letter-spacing:6.400000pt;}
.ls21{letter-spacing:7.040000pt;}
.ls2f{letter-spacing:7.146667pt;}
.ls24{letter-spacing:7.680000pt;}
.ls25{letter-spacing:8.320000pt;}
.ls5{letter-spacing:9.600000pt;}
.ls28{letter-spacing:10.240000pt;}
.ls26{letter-spacing:10.880000pt;}
.ls22{letter-spacing:12.800000pt;}
.ls20{letter-spacing:14.080000pt;}
.ls13{letter-spacing:16.640000pt;}
.ls32{letter-spacing:20.971307pt;}
.ls1{letter-spacing:21.888000pt;}
.ls43{letter-spacing:30.970027pt;}
.ls33{letter-spacing:38.644480pt;}
.ls41{letter-spacing:60.410027pt;}
.ls35{letter-spacing:74.731307pt;}
.ls34{letter-spacing:77.824640pt;}
.ls37{letter-spacing:666.378667pt;}
.ls40{letter-spacing:764.298667pt;}
.ls3e{letter-spacing:833.546667pt;}
.ls30{letter-spacing:938.378667pt;}
.ls4{letter-spacing:1262.325333pt;}
.ws8{word-spacing:-74.720000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.256960pt;}
.wse{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.701333pt;}
.ws17{word-spacing:-16.512000pt;}
.ws13{word-spacing:-16.434560pt;}
.wsd{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.616000pt;}
.wsb{word-spacing:-15.296000pt;}
.ws19{word-spacing:-14.817067pt;}
.ws18{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.584533pt;}
.ws4{word-spacing:-14.448533pt;}
.ws11{word-spacing:-11.713280pt;}
.wsf{word-spacing:-11.710720pt;}
.ws10{word-spacing:-11.686400pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:114.471040pt;}
._18{margin-left:-3.618133pt;}
._10{margin-left:-1.834667pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.450667pt;}
._e{width:2.355200pt;}
._6{width:3.356160pt;}
._7{width:4.533760pt;}
._8{width:5.712213pt;}
._b{width:6.679040pt;}
._c{width:7.595520pt;}
._a{width:8.661333pt;}
._9{width:9.786027pt;}
._d{width:10.880000pt;}
._11{width:11.776000pt;}
._12{width:12.800000pt;}
._16{width:13.845333pt;}
._15{width:14.976000pt;}
._f{width:16.133120pt;}
._13{width:17.098667pt;}
._14{width:19.072000pt;}
._1c{width:20.352000pt;}
._17{width:21.767040pt;}
._1b{width:57.515093pt;}
._1a{width:73.760000pt;}
._19{width:74.880000pt;}
._1{width:426.275413pt;}
._4{width:689.546667pt;}
._2{width:692.106667pt;}
._3{width:756.391680pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:298.880000pt;}
.yb9{bottom:-5.293333pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.yba{bottom:3.666667pt;}
.y67{bottom:3.680000pt;}
.ybc{bottom:3.986667pt;}
.yc0{bottom:3.993333pt;}
.yc4{bottom:4.000000pt;}
.yc2{bottom:4.026667pt;}
.yc{bottom:18.880000pt;}
.yf9{bottom:22.400000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.ybf{bottom:125.318667pt;}
.y33{bottom:128.032000pt;}
.y98{bottom:129.792000pt;}
.y65{bottom:134.426667pt;}
.yac{bottom:135.386667pt;}
.ybe{bottom:144.360000pt;}
.y32{bottom:144.826667pt;}
.yf2{bottom:145.306667pt;}
.y97{bottom:148.186667pt;}
.y64{bottom:152.826667pt;}
.yab{bottom:153.786667pt;}
.y31{bottom:161.626667pt;}
.yf1{bottom:162.106667pt;}
.ybd{bottom:163.560000pt;}
.y96{bottom:166.586667pt;}
.y63{bottom:171.226667pt;}
.yaa{bottom:172.186667pt;}
.y30{bottom:178.586667pt;}
.yf0{bottom:179.066667pt;}
.ybb{bottom:182.600000pt;}
.y95{bottom:184.986667pt;}
.ya9{bottom:186.586667pt;}
.y62{bottom:189.626667pt;}
.y2f{bottom:195.386667pt;}
.yef{bottom:195.866667pt;}
.yb8{bottom:201.640000pt;}
.y94{bottom:203.386667pt;}
.y61{bottom:208.026667pt;}
.y2e{bottom:212.346667pt;}
.yee{bottom:212.826667pt;}
.y93{bottom:221.786667pt;}
.yb7{bottom:224.666667pt;}
.y60{bottom:226.426667pt;}
.y2d{bottom:229.146667pt;}
.yed{bottom:229.626667pt;}
.y92{bottom:240.186667pt;}
.y5f{bottom:244.826667pt;}
.y2c{bottom:245.946667pt;}
.yec{bottom:246.586667pt;}
.y91{bottom:258.586667pt;}
.yb6{bottom:261.146667pt;}
.y2b{bottom:262.906667pt;}
.y5e{bottom:263.226667pt;}
.yeb{bottom:263.386667pt;}
.y90{bottom:276.986667pt;}
.yb5{bottom:278.266667pt;}
.y2a{bottom:279.706667pt;}
.yea{bottom:280.186667pt;}
.y5d{bottom:281.626667pt;}
.y8f{bottom:295.386667pt;}
.y29{bottom:296.666667pt;}
.ye9{bottom:297.146667pt;}
.y5c{bottom:300.026667pt;}
.y28{bottom:313.466667pt;}
.y8e{bottom:313.786667pt;}
.ye8{bottom:313.946667pt;}
.yb4{bottom:315.066667pt;}
.y5b{bottom:318.426667pt;}
.y27{bottom:330.266667pt;}
.ye7{bottom:330.906667pt;}
.y8d{bottom:332.186667pt;}
.yb3{bottom:333.466667pt;}
.y5a{bottom:336.826667pt;}
.y26{bottom:347.266667pt;}
.ye6{bottom:347.746667pt;}
.y8c{bottom:350.626667pt;}
.yb2{bottom:351.906667pt;}
.y59{bottom:355.266667pt;}
.y25{bottom:364.706667pt;}
.ye5{bottom:365.026667pt;}
.y8b{bottom:369.026667pt;}
.yb1{bottom:369.986667pt;}
.y58{bottom:373.666667pt;}
.y24{bottom:384.226667pt;}
.yb0{bottom:387.266667pt;}
.y8a{bottom:387.426667pt;}
.y57{bottom:392.066667pt;}
.ye4{bottom:401.826667pt;}
.y23{bottom:404.706667pt;}
.yaf{bottom:405.666667pt;}
.y89{bottom:405.826667pt;}
.y56{bottom:410.466667pt;}
.ye3{bottom:420.226667pt;}
.yae{bottom:423.586667pt;}
.y88{bottom:424.226667pt;}
.y22{bottom:424.546667pt;}
.y55{bottom:428.866667pt;}
.yad{bottom:437.026667pt;}
.ye2{bottom:438.626667pt;}
.y87{bottom:442.626667pt;}
.y21{bottom:444.066667pt;}
.y54{bottom:447.266667pt;}
.ye1{bottom:457.026667pt;}
.y86{bottom:461.026667pt;}
.y20{bottom:464.386667pt;}
.y53{bottom:465.666667pt;}
.ye0{bottom:475.426667pt;}
.y85{bottom:479.426667pt;}
.y52{bottom:484.066667pt;}
.y1f{bottom:484.386667pt;}
.ydf{bottom:493.826667pt;}
.y84{bottom:497.826667pt;}
.y51{bottom:502.466667pt;}
.yde{bottom:512.226667pt;}
.y83{bottom:516.226667pt;}
.y50{bottom:520.866667pt;}
.y1e{bottom:523.586667pt;}
.ydd{bottom:530.626667pt;}
.y82{bottom:534.626667pt;}
.y4f{bottom:539.266667pt;}
.y1d{bottom:541.026667pt;}
.ydc{bottom:549.026667pt;}
.y81{bottom:553.026667pt;}
.y4e{bottom:557.666667pt;}
.y1c{bottom:560.546667pt;}
.ydb{bottom:567.453333pt;}
.ya8{bottom:568.573333pt;}
.y80{bottom:571.453333pt;}
.y4d{bottom:576.093333pt;}
.y1b{bottom:581.053333pt;}
.yda{bottom:585.853333pt;}
.ya7{bottom:586.973333pt;}
.y7f{bottom:589.853333pt;}
.y4c{bottom:594.493333pt;}
.y1a{bottom:600.893333pt;}
.yd9{bottom:604.253333pt;}
.ya6{bottom:605.373333pt;}
.yfc{bottom:606.333333pt;}
.y7e{bottom:608.253333pt;}
.y4b{bottom:612.893333pt;}
.y19{bottom:620.413333pt;}
.yd8{bottom:622.653333pt;}
.yfb{bottom:623.133333pt;}
.ya5{bottom:623.773333pt;}
.y7d{bottom:626.653333pt;}
.y4a{bottom:631.293333pt;}
.yfa{bottom:639.933333pt;}
.y18{bottom:640.733333pt;}
.yd7{bottom:641.053333pt;}
.ya4{bottom:641.853333pt;}
.y7c{bottom:645.053333pt;}
.y49{bottom:649.693333pt;}
.yf8{bottom:653.213333pt;}
.yd6{bottom:659.133333pt;}
.ya3{bottom:660.573333pt;}
.y17{bottom:660.733333pt;}
.y7b{bottom:663.453333pt;}
.y48{bottom:668.093333pt;}
.yf7{bottom:671.613333pt;}
.yd5{bottom:677.853333pt;}
.ya2{bottom:678.973333pt;}
.y16{bottom:680.093333pt;}
.y7a{bottom:681.853333pt;}
.y47{bottom:686.493333pt;}
.ya1{bottom:693.693333pt;}
.yd4{bottom:696.253333pt;}
.y15{bottom:699.933333pt;}
.y79{bottom:700.253333pt;}
.y46{bottom:704.893333pt;}
.yf6{bottom:710.493333pt;}
.yd3{bottom:714.653333pt;}
.y14{bottom:717.373333pt;}
.y78{bottom:718.653333pt;}
.y66{bottom:719.293333pt;}
.y45{bottom:723.293333pt;}
.yf5{bottom:727.453333pt;}
.ya0{bottom:729.053333pt;}
.yd2{bottom:733.053333pt;}
.y77{bottom:737.053333pt;}
.y44{bottom:741.693333pt;}
.yf4{bottom:744.253333pt;}
.y9f{bottom:747.453333pt;}
.yd1{bottom:751.453333pt;}
.y76{bottom:755.133333pt;}
.y43{bottom:759.613333pt;}
.y13{bottom:759.773333pt;}
.yf3{bottom:761.053333pt;}
.y9e{bottom:765.853333pt;}
.yd0{bottom:769.853333pt;}
.y75{bottom:773.853333pt;}
.y12{bottom:777.213333pt;}
.y42{bottom:778.013333pt;}
.y9d{bottom:780.413333pt;}
.ycf{bottom:788.293333pt;}
.y74{bottom:792.293333pt;}
.y41{bottom:794.853333pt;}
.y11{bottom:798.693333pt;}
.yce{bottom:806.693333pt;}
.y73{bottom:810.693333pt;}
.y40{bottom:811.813333pt;}
.y9c{bottom:815.813333pt;}
.y10{bottom:820.133333pt;}
.ycd{bottom:825.093333pt;}
.y3f{bottom:828.613333pt;}
.y72{bottom:829.093333pt;}
.y9b{bottom:834.213333pt;}
.yf{bottom:840.933333pt;}
.ycc{bottom:843.493333pt;}
.y3e{bottom:845.573333pt;}
.y71{bottom:847.493333pt;}
.y9a{bottom:852.613333pt;}
.y9{bottom:854.213333pt;}
.ycb{bottom:861.893333pt;}
.y3d{bottom:862.373333pt;}
.y70{bottom:865.893333pt;}
.y99{bottom:867.333333pt;}
.y3c{bottom:879.173333pt;}
.yca{bottom:880.293333pt;}
.y6f{bottom:884.293333pt;}
.y3b{bottom:896.133333pt;}
.yc9{bottom:898.693333pt;}
.y6e{bottom:902.693333pt;}
.y3a{bottom:912.933333pt;}
.yc8{bottom:917.093333pt;}
.y6d{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y39{bottom:929.893333pt;}
.yc7{bottom:932.133333pt;}
.y6c{bottom:939.493333pt;}
.y38{bottom:946.693333pt;}
.yc6{bottom:951.173333pt;}
.y6b{bottom:957.893333pt;}
.y37{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.yc5{bottom:970.213333pt;}
.y6a{bottom:976.293333pt;}
.y36{bottom:980.453333pt;}
.yc3{bottom:989.253333pt;}
.y69{bottom:994.693333pt;}
.y35{bottom:997.253333pt;}
.yc1{bottom:1008.293333pt;}
.y6{bottom:1012.960000pt;}
.y68{bottom:1013.120000pt;}
.y34{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1a{height:18.386667pt;}
.h1b{height:18.393333pt;}
.h1e{height:18.400000pt;}
.h1c{height:18.426667pt;}
.h1f{height:36.800000pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.h19{height:54.375000pt;}
.h10{height:55.040000pt;}
.hf{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1d{height:60.519362pt;}
.h18{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:64.500000pt;}
.h9{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h8{height:70.066667pt;}
.h13{height:71.524375pt;}
.h12{height:71.684375pt;}
.ha{height:75.465000pt;}
.h17{height:100.572500pt;}
.h16{height:100.732500pt;}
.h15{height:111.250625pt;}
.h7{height:118.035000pt;}
.h14{height:164.141875pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w9{width:87.666667pt;}
.w7{width:87.858667pt;}
.wa{width:100.986667pt;}
.w6{width:126.430667pt;}
.w8{width:144.826667pt;}
.w3{width:160.653333pt;}
.wb{width:300.225333pt;}
.wc{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x24{left:26.546667pt;}
.x27{left:28.306667pt;}
.x29{left:29.306667pt;}
.x2a{left:33.120000pt;}
.x32{left:34.400000pt;}
.x2c{left:36.480000pt;}
.x30{left:38.400000pt;}
.x31{left:40.480000pt;}
.x33{left:42.400000pt;}
.x2b{left:46.400000pt;}
.x2d{left:50.400000pt;}
.x2f{left:54.400000pt;}
.x2e{left:58.400000pt;}
.x22{left:63.225333pt;}
.x25{left:67.520000pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.xa{left:80.032000pt;}
.x1e{left:84.992000pt;}
.xb{left:100.832000pt;}
.x35{left:108.986667pt;}
.x21{left:110.912000pt;}
.xe{left:113.312000pt;}
.x1d{left:118.432000pt;}
.x17{left:125.472000pt;}
.x11{left:140.346667pt;}
.x6{left:153.466667pt;}
.x2{left:199.706667pt;}
.x23{left:204.520000pt;}
.x36{left:216.066667pt;}
.xd{left:292.226667pt;}
.x14{left:336.386667pt;}
.xc{left:362.146667pt;}
.x15{left:364.226667pt;}
.x34{left:368.706667pt;}
.x12{left:390.946667pt;}
.x20{left:396.893333pt;}
.x16{left:407.613333pt;}
.x1a{left:413.533333pt;}
.x18{left:415.453333pt;}
.xf{left:421.373333pt;}
.x13{left:425.853333pt;}
.x10{left:430.013333pt;}
.x26{left:438.506667pt;}
.x1b{left:440.253333pt;}
.x19{left:452.893333pt;}
.x5{left:491.466667pt;}
.x28{left:526.826667pt;}
.x1c{left:597.893333pt;}
.x1f{left:614.853333pt;}
.x7{left:652.133333pt;}
.x9{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; }
  