
    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_7a07261b3d92755ed66b271d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_e6331fc5d9fcbe080e7f65c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8333ef2c91e39989f362f7fb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d38d4514d3b55f7ff7b5b2da.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_85a1d72cc26cd1731f84aaf8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_2461c45437942225ad871ad1.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_4dba19147a2bb6e906539dfc.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_e14d9905d4f59cdcebf4b236.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e76e86c1522721218d5adbfb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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:ffd;src:url('chunks/assets/font_ba259c2d83d572399ddba328.woff')format("woff");}.ffd{font-family:ffd;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls3{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.ls13{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.160000px;}
.ls7{letter-spacing:6.480000px;}
.ls11{letter-spacing:19.440000px;}
.ls9{letter-spacing:22.464000px;}
.ls12{letter-spacing:24.480000px;}
.ls8{letter-spacing:32.544000px;}
.lsd{letter-spacing:54.144000px;}
.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:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.792560px;}
.ws9{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws7{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-15.840000px;}
._3{margin-left:-1.050720px;}
._0{width:1.195200px;}
._4{width:2.664000px;}
._18{width:3.685440px;}
._5{width:4.824000px;}
._6{width:6.336000px;}
._1c{width:7.372800px;}
._9{width:8.424000px;}
._14{width:9.432000px;}
._17{width:11.116320px;}
._e{width:12.384000px;}
._d{width:13.752000px;}
._13{width:15.120000px;}
._7{width:16.344000px;}
._8{width:19.296000px;}
._12{width:20.664000px;}
._f{width:22.440000px;}
._19{width:23.688000px;}
._1a{width:24.912000px;}
._1b{width:26.028000px;}
._15{width:27.648000px;}
._16{width:29.448000px;}
._b{width:30.528000px;}
._c{width:31.610400px;}
._a{width:34.416000px;}
._20{width:35.466720px;}
._21{width:36.792000px;}
._1d{width:40.104000px;}
._1e{width:41.149440px;}
._25{width:44.826720px;}
._24{width:46.008000px;}
._2a{width:47.016000px;}
._23{width:50.976000px;}
._26{width:69.120000px;}
._27{width:70.308000px;}
._28{width:158.148000px;}
._1{width:220.422720px;}
._29{width:232.416000px;}
._11{width:385.386240px;}
._2{width:398.346240px;}
._10{width:721.363440px;}
._22{width:846.156000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:46.800000px;}
.y5{bottom:66.996000px;}
.y4{bottom:86.616000px;}
.y3{bottom:103.536000px;}
.y2{bottom:120.276000px;}
.y1{bottom:139.716000px;}
.y68{bottom:155.730000px;}
.yac{bottom:158.250000px;}
.y67{bottom:160.950000px;}
.y96{bottom:163.830000px;}
.y11c{bottom:167.610000px;}
.y48{bottom:167.790000px;}
.yd2{bottom:170.670000px;}
.yc0{bottom:173.010000px;}
.y66{bottom:174.270000px;}
.y100{bottom:174.450000px;}
.y103{bottom:178.590000px;}
.y25{bottom:184.350000px;}
.ya8{bottom:186.150000px;}
.yab{bottom:186.690000px;}
.y84{bottom:187.050000px;}
.y137{bottom:188.490000px;}
.y95{bottom:194.970000px;}
.y89{bottom:197.130000px;}
.y47{bottom:198.750000px;}
.ye0{bottom:199.110000px;}
.yd1{bottom:201.630000px;}
.ybf{bottom:203.970000px;}
.yff{bottom:205.590000px;}
.y102{bottom:209.550000px;}
.yed{bottom:212.250000px;}
.y24{bottom:214.050000px;}
.ya7{bottom:217.290000px;}
.yaa{bottom:217.650000px;}
.ya5{bottom:218.190000px;}
.y83{bottom:219.450000px;}
.y94{bottom:225.930000px;}
.y88{bottom:228.090000px;}
.y11b{bottom:229.710000px;}
.y46{bottom:229.890000px;}
.ydf{bottom:230.070000px;}
.yd0{bottom:232.770000px;}
.ybe{bottom:235.110000px;}
.yfe{bottom:236.550000px;}
.y101{bottom:236.730000px;}
.yec{bottom:243.390000px;}
.y23{bottom:243.930000px;}
.ya6{bottom:244.290000px;}
.ya9{bottom:244.830000px;}
.ya4{bottom:249.150000px;}
.y65{bottom:250.590000px;}
.y82{bottom:251.670000px;}
.y87{bottom:255.270000px;}
.y93{bottom:257.070000px;}
.y11a{bottom:260.670000px;}
.y45{bottom:260.850000px;}
.yde{bottom:261.030000px;}
.ycf{bottom:263.730000px;}
.ybd{bottom:266.070000px;}
.yfd{bottom:267.690000px;}
.yeb{bottom:274.350000px;}
.y22{bottom:274.890000px;}
.ya3{bottom:280.290000px;}
.y64{bottom:281.550000px;}
.y81{bottom:284.250000px;}
.y92{bottom:288.030000px;}
.y119{bottom:291.810000px;}
.y44{bottom:291.990000px;}
.ydd{bottom:292.170000px;}
.yce{bottom:294.870000px;}
.ybc{bottom:297.210000px;}
.yfc{bottom:298.650000px;}
.yea{bottom:305.490000px;}
.y21{bottom:306.030000px;}
.ya2{bottom:311.250000px;}
.y136{bottom:312.690000px;}
.y63{bottom:313.950000px;}
.y80{bottom:315.030000px;}
.y91{bottom:319.170000px;}
.y118{bottom:322.770000px;}
.y43{bottom:322.950000px;}
.ydc{bottom:323.130000px;}
.ycd{bottom:325.830000px;}
.ybb{bottom:328.215000px;}
.yfb{bottom:329.835000px;}
.ye9{bottom:336.495000px;}
.y20{bottom:337.035000px;}
.ya1{bottom:342.435000px;}
.y135{bottom:343.695000px;}
.y62{bottom:345.135000px;}
.y7f{bottom:347.475000px;}
.y90{bottom:350.175000px;}
.y117{bottom:353.955000px;}
.y42{bottom:354.135000px;}
.ydb{bottom:354.315000px;}
.ycc{bottom:357.015000px;}
.yba{bottom:359.355000px;}
.yfa{bottom:360.795000px;}
.ye8{bottom:367.635000px;}
.y1f{bottom:368.175000px;}
.ya0{bottom:373.395000px;}
.y134{bottom:374.835000px;}
.y61{bottom:376.095000px;}
.y7e{bottom:380.055000px;}
.y8f{bottom:381.315000px;}
.y116{bottom:384.915000px;}
.y41{bottom:385.095000px;}
.yda{bottom:385.275000px;}
.ycb{bottom:387.975000px;}
.yb9{bottom:390.315000px;}
.yf9{bottom:391.935000px;}
.ye7{bottom:398.595000px;}
.y1e{bottom:399.135000px;}
.y9f{bottom:404.535000px;}
.y133{bottom:405.795000px;}
.y60{bottom:407.235000px;}
.y7d{bottom:410.835000px;}
.y8e{bottom:412.275000px;}
.y115{bottom:416.055000px;}
.y40{bottom:416.235000px;}
.yd9{bottom:416.415000px;}
.yca{bottom:419.115000px;}
.yb8{bottom:421.455000px;}
.yf8{bottom:422.895000px;}
.ye6{bottom:429.735000px;}
.y1d{bottom:430.275000px;}
.y9e{bottom:435.495000px;}
.y132{bottom:436.935000px;}
.y5f{bottom:438.195000px;}
.y8d{bottom:443.235000px;}
.y7c{bottom:443.415000px;}
.y114{bottom:447.015000px;}
.y3f{bottom:447.195000px;}
.yd8{bottom:447.375000px;}
.yc9{bottom:450.075000px;}
.yb7{bottom:452.415000px;}
.yf7{bottom:454.035000px;}
.ye5{bottom:460.695000px;}
.y1c{bottom:461.235000px;}
.y9d{bottom:466.635000px;}
.y131{bottom:467.895000px;}
.y5d{bottom:469.335000px;}
.y7b{bottom:474.195000px;}
.y8c{bottom:475.635000px;}
.y5e{bottom:476.175000px;}
.y113{bottom:478.155000px;}
.y3e{bottom:478.335000px;}
.yd7{bottom:478.515000px;}
.yc8{bottom:481.215000px;}
.yb6{bottom:483.555000px;}
.yf6{bottom:484.995000px;}
.ye4{bottom:491.835000px;}
.y1b{bottom:492.375000px;}
.y9c{bottom:497.595000px;}
.y130{bottom:499.035000px;}
.y5c{bottom:500.295000px;}
.y8b{bottom:506.595000px;}
.y7a{bottom:506.775000px;}
.y112{bottom:509.115000px;}
.y3d{bottom:509.295000px;}
.yd6{bottom:509.475000px;}
.yc7{bottom:512.175000px;}
.yb5{bottom:514.515000px;}
.yf5{bottom:516.135000px;}
.ye3{bottom:522.795000px;}
.y1a{bottom:523.335000px;}
.y9b{bottom:528.735000px;}
.y12f{bottom:529.995000px;}
.y5b{bottom:531.255000px;}
.y79{bottom:537.735000px;}
.y8a{bottom:538.995000px;}
.y111{bottom:540.255000px;}
.y3c{bottom:540.435000px;}
.yd5{bottom:540.615000px;}
.yc6{bottom:543.315000px;}
.yb4{bottom:545.475000px;}
.yf4{bottom:547.095000px;}
.y19{bottom:553.035000px;}
.ye2{bottom:553.755000px;}
.y9a{bottom:559.695000px;}
.y12e{bottom:561.135000px;}
.y5a{bottom:562.215000px;}
.y78{bottom:568.875000px;}
.y110{bottom:571.215000px;}
.y3b{bottom:571.395000px;}
.yd4{bottom:571.575000px;}
.yc5{bottom:574.275000px;}
.yb3{bottom:576.615000px;}
.yf3{bottom:578.235000px;}
.ye1{bottom:580.935000px;}
.y18{bottom:581.655000px;}
.y99{bottom:590.835000px;}
.y12d{bottom:592.095000px;}
.y59{bottom:594.825000px;}
.y77{bottom:599.865000px;}
.y11d{bottom:602.205000px;}
.y10f{bottom:602.385000px;}
.y3a{bottom:602.565000px;}
.yc4{bottom:605.445000px;}
.yd3{bottom:606.525000px;}
.yb2{bottom:607.605000px;}
.yf2{bottom:609.225000px;}
.y17{bottom:611.385000px;}
.y98{bottom:621.825000px;}
.y12c{bottom:623.265000px;}
.y58{bottom:625.605000px;}
.y76{bottom:631.005000px;}
.y10e{bottom:633.345000px;}
.y39{bottom:633.525000px;}
.yc3{bottom:636.405000px;}
.yb1{bottom:638.745000px;}
.yf1{bottom:640.365000px;}
.y16{bottom:641.085000px;}
.y97{bottom:648.825000px;}
.y12b{bottom:654.225000px;}
.y57{bottom:658.185000px;}
.y75{bottom:661.965000px;}
.y10d{bottom:664.485000px;}
.y38{bottom:664.665000px;}
.yc2{bottom:667.545000px;}
.yb0{bottom:669.705000px;}
.y15{bottom:670.965000px;}
.yf0{bottom:671.325000px;}
.y12a{bottom:685.365000px;}
.y56{bottom:689.145000px;}
.y74{bottom:693.105000px;}
.yc1{bottom:694.545000px;}
.y10c{bottom:695.445000px;}
.y37{bottom:695.625000px;}
.yaf{bottom:700.845000px;}
.y14{bottom:701.925000px;}
.yef{bottom:702.465000px;}
.y129{bottom:716.325000px;}
.y55{bottom:720.285000px;}
.y73{bottom:724.065000px;}
.y10b{bottom:726.585000px;}
.y36{bottom:726.765000px;}
.yae{bottom:731.805000px;}
.y13{bottom:733.065000px;}
.yee{bottom:733.425000px;}
.y128{bottom:747.465000px;}
.y54{bottom:751.245000px;}
.y72{bottom:755.205000px;}
.y10a{bottom:757.545000px;}
.y35{bottom:757.725000px;}
.yad{bottom:760.425000px;}
.y12{bottom:764.025000px;}
.y127{bottom:778.425000px;}
.y53{bottom:782.385000px;}
.y71{bottom:786.165000px;}
.y109{bottom:788.685000px;}
.y34{bottom:788.865000px;}
.y11{bottom:795.165000px;}
.y126{bottom:809.565000px;}
.y52{bottom:813.345000px;}
.y70{bottom:817.305000px;}
.y108{bottom:819.645000px;}
.y33{bottom:819.825000px;}
.y10{bottom:826.125000px;}
.y125{bottom:840.525000px;}
.y51{bottom:844.485000px;}
.y6f{bottom:848.265000px;}
.y107{bottom:850.785000px;}
.y32{bottom:850.965000px;}
.yf{bottom:857.085000px;}
.y124{bottom:871.710000px;}
.y50{bottom:875.310000px;}
.y6e{bottom:879.450000px;}
.y106{bottom:881.790000px;}
.y31{bottom:881.970000px;}
.ye{bottom:888.270000px;}
.y123{bottom:902.670000px;}
.y4f{bottom:907.890000px;}
.y6d{bottom:910.410000px;}
.y105{bottom:912.750000px;}
.y30{bottom:913.110000px;}
.yd{bottom:917.970000px;}
.y122{bottom:933.810000px;}
.y4e{bottom:938.850000px;}
.y6c{bottom:941.370000px;}
.y2f{bottom:944.070000px;}
.yc{bottom:947.850000px;}
.y121{bottom:964.770000px;}
.y4d{bottom:969.810000px;}
.y6b{bottom:973.770000px;}
.y104{bottom:975.030000px;}
.y2e{bottom:975.210000px;}
.yb{bottom:981.150000px;}
.y120{bottom:995.910000px;}
.y4c{bottom:1002.210000px;}
.y6a{bottom:1004.910000px;}
.y2d{bottom:1006.170000px;}
.ya{bottom:1017.330000px;}
.y11f{bottom:1029.210000px;}
.y4b{bottom:1034.430000px;}
.y86{bottom:1034.610000px;}
.y69{bottom:1035.690000px;}
.y2c{bottom:1037.130000px;}
.y9{bottom:1051.350000px;}
.y11e{bottom:1065.390000px;}
.y85{bottom:1065.570000px;}
.y4a{bottom:1067.010000px;}
.y2b{bottom:1068.270000px;}
.y8{bottom:1082.310000px;}
.y49{bottom:1097.790000px;}
.y2a{bottom:1099.230000px;}
.y7{bottom:1115.610000px;}
.y29{bottom:1120.110000px;}
.y28{bottom:1147.860000px;}
.y27{bottom:1181.160000px;}
.y26{bottom:1207.620000px;}
.he{height:38.158594px;}
.h2{height:46.804219px;}
.hb{height:47.344922px;}
.ha{height:58.651172px;}
.h8{height:63.035156px;}
.h7{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.hc{height:72.562500px;}
.hd{height:74.004654px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.xd{left:132.515987px;}
.x5{left:135.395987px;}
.x17{left:155.909987px;}
.x15{left:167.069987px;}
.x3{left:170.129987px;}
.x20{left:173.549987px;}
.x22{left:180.749987px;}
.x7{left:191.549987px;}
.x1b{left:204.149987px;}
.x19{left:207.209987px;}
.x8{left:212.609987px;}
.x1f{left:231.149987px;}
.x9{left:234.029987px;}
.xf{left:254.729987px;}
.x18{left:281.549987px;}
.x12{left:300.674987px;}
.x21{left:306.254987px;}
.x4{left:329.834987px;}
.xc{left:343.694987px;}
.x1a{left:358.814987px;}
.x1d{left:384.374987px;}
.x10{left:467.894987px;}
.x13{left:489.164987px;}
.xa{left:539.204973px;}
.xb{left:545.324987px;}
.x6{left:582.764987px;}
.x25{left:626.684987px;}
.x26{left:628.664987px;}
.x2a{left:645.224987px;}
.x24{left:654.584987px;}
.x23{left:655.664987px;}
.x29{left:688.649987px;}
.x28{left:700.709987px;}
.x27{left:703.769987px;}
.xe{left:782.969987px;}
.x14{left:797.549987px;}
.x1e{left:802.769987px;}
.x16{left:803.849987px;}
.x1c{left:804.929987px;}
.x11{left:806.549987px;}
.x2{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls7{letter-spacing:5.760000pt;}
.ls11{letter-spacing:17.280000pt;}
.ls9{letter-spacing:19.968000pt;}
.ls12{letter-spacing:21.760000pt;}
.ls8{letter-spacing:28.928000pt;}
.lsd{letter-spacing:48.128000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.926720pt;}
.ws9{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws7{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-14.080000pt;}
._3{margin-left:-0.933973pt;}
._0{width:1.062400pt;}
._4{width:2.368000pt;}
._18{width:3.275947pt;}
._5{width:4.288000pt;}
._6{width:5.632000pt;}
._1c{width:6.553600pt;}
._9{width:7.488000pt;}
._14{width:8.384000pt;}
._17{width:9.881173pt;}
._e{width:11.008000pt;}
._d{width:12.224000pt;}
._13{width:13.440000pt;}
._7{width:14.528000pt;}
._8{width:17.152000pt;}
._12{width:18.368000pt;}
._f{width:19.946667pt;}
._19{width:21.056000pt;}
._1a{width:22.144000pt;}
._1b{width:23.136000pt;}
._15{width:24.576000pt;}
._16{width:26.176000pt;}
._b{width:27.136000pt;}
._c{width:28.098133pt;}
._a{width:30.592000pt;}
._20{width:31.525973pt;}
._21{width:32.704000pt;}
._1d{width:35.648000pt;}
._1e{width:36.577280pt;}
._25{width:39.845973pt;}
._24{width:40.896000pt;}
._2a{width:41.792000pt;}
._23{width:45.312000pt;}
._26{width:61.440000pt;}
._27{width:62.496000pt;}
._28{width:140.576000pt;}
._1{width:195.931307pt;}
._29{width:206.592000pt;}
._11{width:342.565547pt;}
._2{width:354.085547pt;}
._10{width:641.211947pt;}
._22{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:41.600000pt;}
.y5{bottom:59.552000pt;}
.y4{bottom:76.992000pt;}
.y3{bottom:92.032000pt;}
.y2{bottom:106.912000pt;}
.y1{bottom:124.192000pt;}
.y68{bottom:138.426667pt;}
.yac{bottom:140.666667pt;}
.y67{bottom:143.066667pt;}
.y96{bottom:145.626667pt;}
.y11c{bottom:148.986667pt;}
.y48{bottom:149.146667pt;}
.yd2{bottom:151.706667pt;}
.yc0{bottom:153.786667pt;}
.y66{bottom:154.906667pt;}
.y100{bottom:155.066667pt;}
.y103{bottom:158.746667pt;}
.y25{bottom:163.866667pt;}
.ya8{bottom:165.466667pt;}
.yab{bottom:165.946667pt;}
.y84{bottom:166.266667pt;}
.y137{bottom:167.546667pt;}
.y95{bottom:173.306667pt;}
.y89{bottom:175.226667pt;}
.y47{bottom:176.666667pt;}
.ye0{bottom:176.986667pt;}
.yd1{bottom:179.226667pt;}
.ybf{bottom:181.306667pt;}
.yff{bottom:182.746667pt;}
.y102{bottom:186.266667pt;}
.yed{bottom:188.666667pt;}
.y24{bottom:190.266667pt;}
.ya7{bottom:193.146667pt;}
.yaa{bottom:193.466667pt;}
.ya5{bottom:193.946667pt;}
.y83{bottom:195.066667pt;}
.y94{bottom:200.826667pt;}
.y88{bottom:202.746667pt;}
.y11b{bottom:204.186667pt;}
.y46{bottom:204.346667pt;}
.ydf{bottom:204.506667pt;}
.yd0{bottom:206.906667pt;}
.ybe{bottom:208.986667pt;}
.yfe{bottom:210.266667pt;}
.y101{bottom:210.426667pt;}
.yec{bottom:216.346667pt;}
.y23{bottom:216.826667pt;}
.ya6{bottom:217.146667pt;}
.ya9{bottom:217.626667pt;}
.ya4{bottom:221.466667pt;}
.y65{bottom:222.746667pt;}
.y82{bottom:223.706667pt;}
.y87{bottom:226.906667pt;}
.y93{bottom:228.506667pt;}
.y11a{bottom:231.706667pt;}
.y45{bottom:231.866667pt;}
.yde{bottom:232.026667pt;}
.ycf{bottom:234.426667pt;}
.ybd{bottom:236.506667pt;}
.yfd{bottom:237.946667pt;}
.yeb{bottom:243.866667pt;}
.y22{bottom:244.346667pt;}
.ya3{bottom:249.146667pt;}
.y64{bottom:250.266667pt;}
.y81{bottom:252.666667pt;}
.y92{bottom:256.026667pt;}
.y119{bottom:259.386667pt;}
.y44{bottom:259.546667pt;}
.ydd{bottom:259.706667pt;}
.yce{bottom:262.106667pt;}
.ybc{bottom:264.186667pt;}
.yfc{bottom:265.466667pt;}
.yea{bottom:271.546667pt;}
.y21{bottom:272.026667pt;}
.ya2{bottom:276.666667pt;}
.y136{bottom:277.946667pt;}
.y63{bottom:279.066667pt;}
.y80{bottom:280.026667pt;}
.y91{bottom:283.706667pt;}
.y118{bottom:286.906667pt;}
.y43{bottom:287.066667pt;}
.ydc{bottom:287.226667pt;}
.ycd{bottom:289.626667pt;}
.ybb{bottom:291.746667pt;}
.yfb{bottom:293.186667pt;}
.ye9{bottom:299.106667pt;}
.y20{bottom:299.586667pt;}
.ya1{bottom:304.386667pt;}
.y135{bottom:305.506667pt;}
.y62{bottom:306.786667pt;}
.y7f{bottom:308.866667pt;}
.y90{bottom:311.266667pt;}
.y117{bottom:314.626667pt;}
.y42{bottom:314.786667pt;}
.ydb{bottom:314.946667pt;}
.ycc{bottom:317.346667pt;}
.yba{bottom:319.426667pt;}
.yfa{bottom:320.706667pt;}
.ye8{bottom:326.786667pt;}
.y1f{bottom:327.266667pt;}
.ya0{bottom:331.906667pt;}
.y134{bottom:333.186667pt;}
.y61{bottom:334.306667pt;}
.y7e{bottom:337.826667pt;}
.y8f{bottom:338.946667pt;}
.y116{bottom:342.146667pt;}
.y41{bottom:342.306667pt;}
.yda{bottom:342.466667pt;}
.ycb{bottom:344.866667pt;}
.yb9{bottom:346.946667pt;}
.yf9{bottom:348.386667pt;}
.ye7{bottom:354.306667pt;}
.y1e{bottom:354.786667pt;}
.y9f{bottom:359.586667pt;}
.y133{bottom:360.706667pt;}
.y60{bottom:361.986667pt;}
.y7d{bottom:365.186667pt;}
.y8e{bottom:366.466667pt;}
.y115{bottom:369.826667pt;}
.y40{bottom:369.986667pt;}
.yd9{bottom:370.146667pt;}
.yca{bottom:372.546667pt;}
.yb8{bottom:374.626667pt;}
.yf8{bottom:375.906667pt;}
.ye6{bottom:381.986667pt;}
.y1d{bottom:382.466667pt;}
.y9e{bottom:387.106667pt;}
.y132{bottom:388.386667pt;}
.y5f{bottom:389.506667pt;}
.y8d{bottom:393.986667pt;}
.y7c{bottom:394.146667pt;}
.y114{bottom:397.346667pt;}
.y3f{bottom:397.506667pt;}
.yd8{bottom:397.666667pt;}
.yc9{bottom:400.066667pt;}
.yb7{bottom:402.146667pt;}
.yf7{bottom:403.586667pt;}
.ye5{bottom:409.506667pt;}
.y1c{bottom:409.986667pt;}
.y9d{bottom:414.786667pt;}
.y131{bottom:415.906667pt;}
.y5d{bottom:417.186667pt;}
.y7b{bottom:421.506667pt;}
.y8c{bottom:422.786667pt;}
.y5e{bottom:423.266667pt;}
.y113{bottom:425.026667pt;}
.y3e{bottom:425.186667pt;}
.yd7{bottom:425.346667pt;}
.yc8{bottom:427.746667pt;}
.yb6{bottom:429.826667pt;}
.yf6{bottom:431.106667pt;}
.ye4{bottom:437.186667pt;}
.y1b{bottom:437.666667pt;}
.y9c{bottom:442.306667pt;}
.y130{bottom:443.586667pt;}
.y5c{bottom:444.706667pt;}
.y8b{bottom:450.306667pt;}
.y7a{bottom:450.466667pt;}
.y112{bottom:452.546667pt;}
.y3d{bottom:452.706667pt;}
.yd6{bottom:452.866667pt;}
.yc7{bottom:455.266667pt;}
.yb5{bottom:457.346667pt;}
.yf5{bottom:458.786667pt;}
.ye3{bottom:464.706667pt;}
.y1a{bottom:465.186667pt;}
.y9b{bottom:469.986667pt;}
.y12f{bottom:471.106667pt;}
.y5b{bottom:472.226667pt;}
.y79{bottom:477.986667pt;}
.y8a{bottom:479.106667pt;}
.y111{bottom:480.226667pt;}
.y3c{bottom:480.386667pt;}
.yd5{bottom:480.546667pt;}
.yc6{bottom:482.946667pt;}
.yb4{bottom:484.866667pt;}
.yf4{bottom:486.306667pt;}
.y19{bottom:491.586667pt;}
.ye2{bottom:492.226667pt;}
.y9a{bottom:497.506667pt;}
.y12e{bottom:498.786667pt;}
.y5a{bottom:499.746667pt;}
.y78{bottom:505.666667pt;}
.y110{bottom:507.746667pt;}
.y3b{bottom:507.906667pt;}
.yd4{bottom:508.066667pt;}
.yc5{bottom:510.466667pt;}
.yb3{bottom:512.546667pt;}
.yf3{bottom:513.986667pt;}
.ye1{bottom:516.386667pt;}
.y18{bottom:517.026667pt;}
.y99{bottom:525.186667pt;}
.y12d{bottom:526.306667pt;}
.y59{bottom:528.733333pt;}
.y77{bottom:533.213333pt;}
.y11d{bottom:535.293333pt;}
.y10f{bottom:535.453333pt;}
.y3a{bottom:535.613333pt;}
.yc4{bottom:538.173333pt;}
.yd3{bottom:539.133333pt;}
.yb2{bottom:540.093333pt;}
.yf2{bottom:541.533333pt;}
.y17{bottom:543.453333pt;}
.y98{bottom:552.733333pt;}
.y12c{bottom:554.013333pt;}
.y58{bottom:556.093333pt;}
.y76{bottom:560.893333pt;}
.y10e{bottom:562.973333pt;}
.y39{bottom:563.133333pt;}
.yc3{bottom:565.693333pt;}
.yb1{bottom:567.773333pt;}
.yf1{bottom:569.213333pt;}
.y16{bottom:569.853333pt;}
.y97{bottom:576.733333pt;}
.y12b{bottom:581.533333pt;}
.y57{bottom:585.053333pt;}
.y75{bottom:588.413333pt;}
.y10d{bottom:590.653333pt;}
.y38{bottom:590.813333pt;}
.yc2{bottom:593.373333pt;}
.yb0{bottom:595.293333pt;}
.y15{bottom:596.413333pt;}
.yf0{bottom:596.733333pt;}
.y12a{bottom:609.213333pt;}
.y56{bottom:612.573333pt;}
.y74{bottom:616.093333pt;}
.yc1{bottom:617.373333pt;}
.y10c{bottom:618.173333pt;}
.y37{bottom:618.333333pt;}
.yaf{bottom:622.973333pt;}
.y14{bottom:623.933333pt;}
.yef{bottom:624.413333pt;}
.y129{bottom:636.733333pt;}
.y55{bottom:640.253333pt;}
.y73{bottom:643.613333pt;}
.y10b{bottom:645.853333pt;}
.y36{bottom:646.013333pt;}
.yae{bottom:650.493333pt;}
.y13{bottom:651.613333pt;}
.yee{bottom:651.933333pt;}
.y128{bottom:664.413333pt;}
.y54{bottom:667.773333pt;}
.y72{bottom:671.293333pt;}
.y10a{bottom:673.373333pt;}
.y35{bottom:673.533333pt;}
.yad{bottom:675.933333pt;}
.y12{bottom:679.133333pt;}
.y127{bottom:691.933333pt;}
.y53{bottom:695.453333pt;}
.y71{bottom:698.813333pt;}
.y109{bottom:701.053333pt;}
.y34{bottom:701.213333pt;}
.y11{bottom:706.813333pt;}
.y126{bottom:719.613333pt;}
.y52{bottom:722.973333pt;}
.y70{bottom:726.493333pt;}
.y108{bottom:728.573333pt;}
.y33{bottom:728.733333pt;}
.y10{bottom:734.333333pt;}
.y125{bottom:747.133333pt;}
.y51{bottom:750.653333pt;}
.y6f{bottom:754.013333pt;}
.y107{bottom:756.253333pt;}
.y32{bottom:756.413333pt;}
.yf{bottom:761.853333pt;}
.y124{bottom:774.853333pt;}
.y50{bottom:778.053333pt;}
.y6e{bottom:781.733333pt;}
.y106{bottom:783.813333pt;}
.y31{bottom:783.973333pt;}
.ye{bottom:789.573333pt;}
.y123{bottom:802.373333pt;}
.y4f{bottom:807.013333pt;}
.y6d{bottom:809.253333pt;}
.y105{bottom:811.333333pt;}
.y30{bottom:811.653333pt;}
.yd{bottom:815.973333pt;}
.y122{bottom:830.053333pt;}
.y4e{bottom:834.533333pt;}
.y6c{bottom:836.773333pt;}
.y2f{bottom:839.173333pt;}
.yc{bottom:842.533333pt;}
.y121{bottom:857.573333pt;}
.y4d{bottom:862.053333pt;}
.y6b{bottom:865.573333pt;}
.y104{bottom:866.693333pt;}
.y2e{bottom:866.853333pt;}
.yb{bottom:872.133333pt;}
.y120{bottom:885.253333pt;}
.y4c{bottom:890.853333pt;}
.y6a{bottom:893.253333pt;}
.y2d{bottom:894.373333pt;}
.ya{bottom:904.293333pt;}
.y11f{bottom:914.853333pt;}
.y4b{bottom:919.493333pt;}
.y86{bottom:919.653333pt;}
.y69{bottom:920.613333pt;}
.y2c{bottom:921.893333pt;}
.y9{bottom:934.533333pt;}
.y11e{bottom:947.013333pt;}
.y85{bottom:947.173333pt;}
.y4a{bottom:948.453333pt;}
.y2b{bottom:949.573333pt;}
.y8{bottom:962.053333pt;}
.y49{bottom:975.813333pt;}
.y2a{bottom:977.093333pt;}
.y7{bottom:991.653333pt;}
.y29{bottom:995.653333pt;}
.y28{bottom:1020.320000pt;}
.y27{bottom:1049.920000pt;}
.y26{bottom:1073.440000pt;}
.he{height:33.918750pt;}
.h2{height:41.603750pt;}
.hb{height:42.084375pt;}
.ha{height:52.134375pt;}
.h8{height:56.031250pt;}
.h7{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.hc{height:64.500000pt;}
.hd{height:65.781915pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.xd{left:117.791988pt;}
.x5{left:120.351988pt;}
.x17{left:138.586655pt;}
.x15{left:148.506655pt;}
.x3{left:151.226655pt;}
.x20{left:154.266655pt;}
.x22{left:160.666655pt;}
.x7{left:170.266655pt;}
.x1b{left:181.466655pt;}
.x19{left:184.186655pt;}
.x8{left:188.986655pt;}
.x1f{left:205.466655pt;}
.x9{left:208.026655pt;}
.xf{left:226.426655pt;}
.x18{left:250.266655pt;}
.x12{left:267.266655pt;}
.x21{left:272.226655pt;}
.x4{left:293.186655pt;}
.xc{left:305.506655pt;}
.x1a{left:318.946655pt;}
.x1d{left:341.666655pt;}
.x10{left:415.906655pt;}
.x13{left:434.813322pt;}
.xa{left:479.293310pt;}
.xb{left:484.733322pt;}
.x6{left:518.013322pt;}
.x25{left:557.053322pt;}
.x26{left:558.813322pt;}
.x2a{left:573.533322pt;}
.x24{left:581.853322pt;}
.x23{left:582.813322pt;}
.x29{left:612.133322pt;}
.x28{left:622.853322pt;}
.x27{left:625.573322pt;}
.xe{left:695.973322pt;}
.x14{left:708.933322pt;}
.x1e{left:713.573322pt;}
.x16{left:714.533322pt;}
.x1c{left:715.493322pt;}
.x11{left:716.933322pt;}
.x2{left:718.373322pt;}
}




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