
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_92d46e6b388c79f2475c600f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2e67a8baa3ead3a60442b44f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6176dbd417e1f268bb69f0ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087402;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_a1bbe7f1cec7254104ed0e75.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_31512a375782b28f20fd4bac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_ab5e5884a402591e8ccc777c.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_98619697e3363613373767f2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_320f31524ef802a8cffb16ff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_de07e55bf787da4fc3be0d62.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a00372417a4f131ebab647ee.woff')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);}
.m2{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls24{letter-spacing:-0.444600px;}
.lsd{letter-spacing:-0.391800px;}
.lsb{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls22{letter-spacing:-0.096600px;}
.ls7{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.089856px;}
.ls9{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.064800px;}
.ls23{letter-spacing:-0.037800px;}
.ls19{letter-spacing:-0.035943px;}
.ls1d{letter-spacing:-0.031680px;}
.ls18{letter-spacing:-0.017971px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.053400px;}
.ls12{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.071885px;}
.ls4{letter-spacing:0.074160px;}
.ls1b{letter-spacing:0.089856px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.198000px;}
.ls25{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls17{letter-spacing:0.816000px;}
.ls11{letter-spacing:14.853600px;}
.ls20{letter-spacing:47.726640px;}
.ls1e{letter-spacing:80.846640px;}
.ls14{letter-spacing:202.449960px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws9{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.478453px;}
.ws10{word-spacing:-13.460482px;}
.ws14{word-spacing:-13.424400px;}
.ws4{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.279800px;}
.ws15{word-spacing:-13.279680px;}
.wse{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.188600px;}
.wsd{word-spacing:-13.161600px;}
.ws18{word-spacing:-13.141800px;}
.ws16{word-spacing:-13.129800px;}
.wsa{word-spacing:-13.064400px;}
.ws5{word-spacing:-13.039800px;}
.ws11{word-spacing:-11.861039px;}
.ws12{word-spacing:-11.825096px;}
.ws13{word-spacing:-11.771182px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
.ws7{word-spacing:5.651400px;}
._d{margin-left:-202.210343px;}
._c{margin-left:-3.331598px;}
._9{margin-left:-2.140800px;}
._0{margin-left:-1.110000px;}
._3{width:1.174236px;}
._4{width:3.154308px;}
._8{width:4.307640px;}
._5{width:5.371560px;}
._6{width:6.566880px;}
._7{width:8.403120px;}
._b{width:9.859680px;}
._a{width:11.062200px;}
._f{width:12.204360px;}
._12{width:14.308560px;}
._2{width:15.350292px;}
._1{width:16.692036px;}
._14{width:17.776250px;}
._13{width:18.787320px;}
._10{width:20.320560px;}
._11{width:21.560400px;}
._17{width:29.903400px;}
._18{width:31.504200px;}
._16{width:57.715200px;}
._15{width:69.679080px;}
._e{width:202.449960px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsb{font-size:47.880000px;}
.fs9{font-size:53.913813px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:60.024045px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:83.746122px;}
.fs4{font-size:83.880000px;}
.y57{bottom:-16.863042px;}
.y6f{bottom:-8.985605px;}
.y54{bottom:-0.958468px;}
.y0{bottom:0.000000px;}
.y73{bottom:2.785547px;}
.y61{bottom:2.875403px;}
.y5a{bottom:2.995212px;}
.y5c{bottom:4.133392px;}
.y5f{bottom:5.750807px;}
.y56{bottom:5.780759px;}
.y71{bottom:6.469658px;}
.y6e{bottom:6.828484px;}
.y63{bottom:7.727646px;}
.y99{bottom:7.830000px;}
.y96{bottom:7.920000px;}
.y68{bottom:8.446497px;}
.y65{bottom:9.824295px;}
.y76{bottom:10.902571px;}
.y78{bottom:10.962475px;}
.y6d{bottom:22.643202px;}
.y52{bottom:34.504256px;}
.y6c{bottom:38.457921px;}
.y6b{bottom:54.182783px;}
.y6a{bottom:69.997501px;}
.y51{bottom:69.997516px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y50{bottom:105.610584px;}
.y43{bottom:126.120000px;}
.yef{bottom:127.740000px;}
.ya5{bottom:137.280000px;}
.y4f{bottom:141.103844px;}
.y29{bottom:142.500000px;}
.y42{bottom:143.670000px;}
.yee{bottom:145.290000px;}
.yc8{bottom:154.830000px;}
.ya4{bottom:154.920000px;}
.y28{bottom:160.050000px;}
.y41{bottom:170.310000px;}
.yed{bottom:171.840000px;}
.ya3{bottom:172.470000px;}
.y4e{bottom:176.604592px;}
.y27{bottom:177.600000px;}
.yec{bottom:189.480000px;}
.yc7{bottom:190.020000px;}
.ya2{bottom:190.110000px;}
.y26{bottom:195.240000px;}
.y40{bottom:205.860000px;}
.yeb{bottom:207.030000px;}
.ya1{bottom:207.660000px;}
.y4d{bottom:212.217661px;}
.y25{bottom:212.790000px;}
.ya0{bottom:225.210000px;}
.y4c{bottom:229.739650px;}
.y24{bottom:230.340000px;}
.yea{bottom:233.580000px;}
.y3f{bottom:238.080000px;}
.y44{bottom:240.442043px;}
.yc6{bottom:242.760000px;}
.y9f{bottom:242.850000px;}
.y23{bottom:247.980000px;}
.y69{bottom:248.439273px;}
.ye9{bottom:251.220000px;}
.y9e{bottom:260.400000px;}
.y4b{bottom:265.322766px;}
.y22{bottom:265.530000px;}
.ye8{bottom:268.770000px;}
.yc5{bottom:277.950000px;}
.y9d{bottom:278.040000px;}
.y21{bottom:283.170000px;}
.ye7{bottom:295.410000px;}
.yc4{bottom:295.590000px;}
.y20{bottom:300.720000px;}
.y4a{bottom:300.816026px;}
.y9c{bottom:312.870000px;}
.ye6{bottom:312.960000px;}
.y1f{bottom:318.270000px;}
.y9b{bottom:325.020000px;}
.yc3{bottom:330.420000px;}
.ye5{bottom:330.510000px;}
.y1e{bottom:335.910000px;}
.y49{bottom:336.339238px;}
.yc2{bottom:342.570000px;}
.y5b{bottom:343.626505px;}
.y60{bottom:344.884494px;}
.y5e{bottom:345.872914px;}
.y5d{bottom:346.591765px;}
.y9a{bottom:352.380000px;}
.ye4{bottom:357.150000px;}
.y1d{bottom:362.820000px;}
.yc1{bottom:369.930000px;}
.y48{bottom:371.922354px;}
.y10d{bottom:372.540000px;}
.ye3{bottom:374.700000px;}
.y98{bottom:379.740000px;}
.y10c{bottom:390.180000px;}
.yc0{bottom:397.290000px;}
.ye2{bottom:401.340000px;}
.y97{bottom:407.010000px;}
.y47{bottom:407.415614px;}
.y10b{bottom:407.730000px;}
.y1c{bottom:411.420000px;}
.ye1{bottom:418.890000px;}
.ybf{bottom:424.560000px;}
.y95{bottom:434.370000px;}
.ye0{bottom:436.440000px;}
.y46{bottom:443.028682px;}
.y1b{bottom:448.410000px;}
.ybe{bottom:451.920000px;}
.ydf{bottom:463.080000px;}
.y77{bottom:463.622178px;}
.y1a{bottom:466.050000px;}
.y10a{bottom:469.470000px;}
.y7b{bottom:474.494797px;}
.y75{bottom:475.632978px;}
.y79{bottom:477.100632px;}
.y45{bottom:478.521942px;}
.yde{bottom:480.660000px;}
.y67{bottom:480.874598px;}
.y94{bottom:483.090000px;}
.y66{bottom:483.121007px;}
.y19{bottom:483.630000px;}
.y109{bottom:496.140000px;}
.ydd{bottom:498.300000px;}
.ybd{bottom:500.640000px;}
.y18{bottom:501.180000px;}
.y108{bottom:513.690000px;}
.y55{bottom:518.135033px;}
.y93{bottom:518.730000px;}
.y17{bottom:518.820000px;}
.y58{bottom:519.482879px;}
.ydc{bottom:524.850000px;}
.y53{bottom:526.222105px;}
.y59{bottom:527.210525px;}
.y107{bottom:531.330000px;}
.ybc{bottom:535.560000px;}
.y92{bottom:536.280000px;}
.y16{bottom:536.370000px;}
.ydb{bottom:542.400000px;}
.ybb{bottom:547.710000px;}
.y91{bottom:553.830000px;}
.y15{bottom:553.920000px;}
.y106{bottom:557.880000px;}
.yda{bottom:560.040000px;}
.y90{bottom:571.470000px;}
.y14{bottom:571.560000px;}
.yba{bottom:575.070000px;}
.y105{bottom:575.430000px;}
.yd9{bottom:586.590000px;}
.y8f{bottom:589.020000px;}
.y13{bottom:589.110000px;}
.y104{bottom:593.070000px;}
.yb9{bottom:602.340000px;}
.yd8{bottom:604.230000px;}
.y8e{bottom:606.660000px;}
.y12{bottom:606.750000px;}
.y103{bottom:619.620000px;}
.y8d{bottom:624.210000px;}
.y11{bottom:624.300000px;}
.yb8{bottom:629.700000px;}
.yd7{bottom:630.780000px;}
.y102{bottom:637.260000px;}
.y8c{bottom:641.760000px;}
.y10{bottom:641.850000px;}
.yd6{bottom:648.330000px;}
.y74{bottom:655.315734px;}
.y7a{bottom:656.843292px;}
.yb7{bottom:657.060000px;}
.y8b{bottom:659.400000px;}
.yf{bottom:659.490000px;}
.y70{bottom:661.336110px;}
.y101{bottom:663.810000px;}
.y72{bottom:668.794187px;}
.yd5{bottom:674.970000px;}
.y64{bottom:675.802983px;}
.y8a{bottom:676.950000px;}
.ye{bottom:677.040000px;}
.y62{bottom:678.618482px;}
.y100{bottom:681.360000px;}
.yd4{bottom:692.520000px;}
.y89{bottom:694.590000px;}
.yd{bottom:694.680000px;}
.yb6{bottom:705.750000px;}
.yff{bottom:708.000000px;}
.y88{bottom:712.140000px;}
.yc{bottom:712.230000px;}
.yd3{bottom:719.160000px;}
.yfe{bottom:725.550000px;}
.y87{bottom:729.690000px;}
.yb{bottom:739.140000px;}
.yb5{bottom:741.300000px;}
.yfd{bottom:743.190000px;}
.yd2{bottom:745.980000px;}
.y86{bottom:747.330000px;}
.y3e{bottom:756.690000px;}
.yb4{bottom:758.940000px;}
.y85{bottom:764.880000px;}
.yfc{bottom:769.740000px;}
.y3d{bottom:774.330000px;}
.yb3{bottom:776.490000px;}
.y84{bottom:782.520000px;}
.yfb{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y3c{bottom:791.880000px;}
.yb2{bottom:794.130000px;}
.yd1{bottom:794.310000px;}
.yfa{bottom:804.930000px;}
.y83{bottom:809.340000px;}
.y3b{bottom:809.520000px;}
.yb1{bottom:811.680000px;}
.yd0{bottom:821.220000px;}
.y9{bottom:823.200000px;}
.y3a{bottom:827.070000px;}
.yb0{bottom:829.230000px;}
.yf9{bottom:831.480000px;}
.yaf{bottom:846.870000px;}
.yf8{bottom:849.030000px;}
.y39{bottom:853.620000px;}
.y82{bottom:857.670000px;}
.ycf{bottom:858.570000px;}
.y8{bottom:859.200000px;}
.yae{bottom:864.420000px;}
.y81{bottom:875.220000px;}
.yf7{bottom:875.670000px;}
.yad{bottom:882.060000px;}
.y38{bottom:889.260000px;}
.y80{bottom:892.860000px;}
.yf6{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y37{bottom:906.810000px;}
.yf5{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yac{bottom:916.890000px;}
.y7f{bottom:919.410000px;}
.y36{bottom:924.450000px;}
.yf4{bottom:928.410000px;}
.yab{bottom:929.040000px;}
.y35{bottom:942.000000px;}
.y5{bottom:949.290000px;}
.y7e{bottom:954.960000px;}
.yaa{bottom:956.400000px;}
.yce{bottom:959.550000px;}
.y34{bottom:968.910000px;}
.y7d{bottom:972.600000px;}
.ycd{bottom:977.190000px;}
.ya9{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.ycc{bottom:994.740000px;}
.y7c{bottom:999.150000px;}
.ya8{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.yf3{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.ycb{bottom:1029.960000px;}
.yf2{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.ya7{bottom:1038.420000px;}
.yca{bottom:1047.510000px;}
.y31{bottom:1052.370000px;}
.yf1{bottom:1060.920000px;}
.y30{bottom:1069.920000px;}
.yc9{bottom:1074.420000px;}
.yf0{bottom:1078.560000px;}
.ya6{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.he{height:11.681326px;}
.h16{height:15.545149px;}
.h14{height:15.635006px;}
.h15{height:16.803138px;}
.h20{height:16.982851px;}
.h1f{height:17.012803px;}
.h10{height:18.420553px;}
.h22{height:20.666961px;}
.h1d{height:20.696914px;}
.h17{height:21.745238px;}
.h1a{height:22.464089px;}
.h19{height:23.841886px;}
.h21{height:25.159779px;}
.h25{height:26.550000px;}
.h27{height:26.580000px;}
.h23{height:26.640000px;}
.h28{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h26{height:41.661211px;}
.h1c{height:46.911335px;}
.h1e{height:50.821139px;}
.h24{height:50.902383px;}
.hd{height:52.227953px;}
.h6{height:52.252734px;}
.h7{height:52.311445px;}
.h13{height:52.887133px;}
.h8{height:55.779258px;}
.h29{height:57.258984px;}
.h5{height:57.323320px;}
.h18{height:58.910317px;}
.h12{height:59.947175px;}
.h9{height:60.960938px;}
.h2a{height:61.793886px;}
.hb{height:62.585859px;}
.h11{height:63.709208px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.hf{height:82.151347px;}
.h1b{height:82.877511px;}
.hc{height:492.697957px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:29.258470px;}
.w10{width:30.788913px;}
.w12{width:35.200190px;}
.w11{width:36.010425px;}
.w5{width:62.658139px;}
.wd{width:83.814264px;}
.wc{width:83.844272px;}
.w6{width:87.505332px;}
.w1a{width:90.660000px;}
.w7{width:95.967782px;}
.wb{width:102.629710px;}
.w16{width:110.430000px;}
.w18{width:110.460000px;}
.w1d{width:110.520000px;}
.w1b{width:110.550000px;}
.w13{width:116.490000px;}
.w4{width:125.226252px;}
.w9{width:127.296851px;}
.w17{width:143.820000px;}
.w1e{width:143.850000px;}
.w19{width:143.910000px;}
.w8{width:147.192611px;}
.wa{width:147.912819px;}
.w1c{width:149.340000px;}
.w1f{width:155.640000px;}
.w14{width:255.060000px;}
.w15{width:255.090000px;}
.we{width:631.052683px;}
.w3{width:696.741697px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.650000px;}
.x9{left:10.803128px;}
.x7{left:19.805724px;}
.x1{left:68.040000px;}
.x23{left:91.709987px;}
.x6{left:97.837500px;}
.xd{left:109.090755px;}
.x32{left:111.239987px;}
.x2e{left:112.950000px;}
.x29{left:116.100000px;}
.x8{left:119.173670px;}
.x15{left:120.253987px;}
.x1d{left:132.570000px;}
.x16{left:139.789635px;}
.x24{left:145.440000px;}
.x2{left:201.539987px;}
.x11{left:208.839624px;}
.x13{left:218.832521px;}
.x25{left:236.910000px;}
.x1f{left:249.780000px;}
.x2a{left:266.160000px;}
.xe{left:267.266545px;}
.x2f{left:269.310000px;}
.x5{left:281.819987px;}
.xa{left:304.987461px;}
.x27{left:348.150000px;}
.x21{left:361.020000px;}
.x1a{left:373.167199px;}
.x2c{left:377.400000px;}
.x17{left:380.369280px;}
.x1c{left:472.916075px;}
.xf{left:477.027268px;}
.x1b{left:484.889537px;}
.x26{left:492.690000px;}
.x20{left:505.650000px;}
.xb{left:507.005942px;}
.x2b{left:522.060000px;}
.x30{left:525.210000px;}
.x12{left:576.626093px;}
.x14{left:594.931396px;}
.x28{left:603.960000px;}
.x22{left:616.830000px;}
.x2d{left:633.210000px;}
.x31{left:636.360000px;}
.x10{left:650.867592px;}
.xc{left:667.432384px;}
.x18{left:740.953664px;}
.x19{left:746.745344px;}
.x3{left:792.059987px;}
.x4{left:797.639987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls24{letter-spacing:-0.395200pt;}
.lsd{letter-spacing:-0.348267pt;}
.lsb{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls22{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.079872pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.057600pt;}
.ls23{letter-spacing:-0.033600pt;}
.ls19{letter-spacing:-0.031949pt;}
.ls1d{letter-spacing:-0.028160pt;}
.ls18{letter-spacing:-0.015974pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.047467pt;}
.ls12{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.063898pt;}
.ls4{letter-spacing:0.065920pt;}
.ls1b{letter-spacing:0.079872pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.176000pt;}
.ls25{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls17{letter-spacing:0.725333pt;}
.ls11{letter-spacing:13.203200pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ls14{letter-spacing:179.955520pt;}
.ws2{word-spacing:-16.403200pt;}
.ws9{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.980847pt;}
.ws10{word-spacing:-11.964873pt;}
.ws14{word-spacing:-11.932800pt;}
.ws4{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.804267pt;}
.ws15{word-spacing:-11.804160pt;}
.wse{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.723200pt;}
.wsd{word-spacing:-11.699200pt;}
.ws18{word-spacing:-11.681600pt;}
.ws16{word-spacing:-11.670933pt;}
.wsa{word-spacing:-11.612800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws11{word-spacing:-10.543146pt;}
.ws12{word-spacing:-10.511197pt;}
.ws13{word-spacing:-10.463273pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
.ws7{word-spacing:5.023467pt;}
._d{margin-left:-179.742527pt;}
._c{margin-left:-2.961420pt;}
._9{margin-left:-1.902933pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.043765pt;}
._4{width:2.803830pt;}
._8{width:3.829013pt;}
._5{width:4.774720pt;}
._6{width:5.837227pt;}
._7{width:7.469440pt;}
._b{width:8.764160pt;}
._a{width:9.833067pt;}
._f{width:10.848320pt;}
._12{width:12.718720pt;}
._2{width:13.644704pt;}
._1{width:14.837365pt;}
._14{width:15.801111pt;}
._13{width:16.699840pt;}
._10{width:18.062720pt;}
._11{width:19.164800pt;}
._17{width:26.580800pt;}
._18{width:28.003733pt;}
._16{width:51.302400pt;}
._15{width:61.936960pt;}
._e{width:179.955520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsb{font-size:42.560000pt;}
.fs9{font-size:47.923389pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.354706pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:74.440997pt;}
.fs4{font-size:74.560000pt;}
.y57{bottom:-14.989371pt;}
.y6f{bottom:-7.987205pt;}
.y54{bottom:-0.851971pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:2.476042pt;}
.y61{bottom:2.555914pt;}
.y5a{bottom:2.662410pt;}
.y5c{bottom:3.674126pt;}
.y5f{bottom:5.111828pt;}
.y56{bottom:5.138452pt;}
.y71{bottom:5.750807pt;}
.y6e{bottom:6.069763pt;}
.y63{bottom:6.869019pt;}
.y99{bottom:6.960000pt;}
.y96{bottom:7.040000pt;}
.y68{bottom:7.507998pt;}
.y65{bottom:8.732706pt;}
.y76{bottom:9.691174pt;}
.y78{bottom:9.744422pt;}
.y6d{bottom:20.127291pt;}
.y52{bottom:30.670450pt;}
.y6c{bottom:34.184818pt;}
.y6b{bottom:48.162473pt;}
.y6a{bottom:62.220001pt;}
.y51{bottom:62.220014pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y50{bottom:93.876075pt;}
.y43{bottom:112.106667pt;}
.yef{bottom:113.546667pt;}
.ya5{bottom:122.026667pt;}
.y4f{bottom:125.425639pt;}
.y29{bottom:126.666667pt;}
.y42{bottom:127.706667pt;}
.yee{bottom:129.146667pt;}
.yc8{bottom:137.626667pt;}
.ya4{bottom:137.706667pt;}
.y28{bottom:142.266667pt;}
.y41{bottom:151.386667pt;}
.yed{bottom:152.746667pt;}
.ya3{bottom:153.306667pt;}
.y4e{bottom:156.981860pt;}
.y27{bottom:157.866667pt;}
.yec{bottom:168.426667pt;}
.yc7{bottom:168.906667pt;}
.ya2{bottom:168.986667pt;}
.y26{bottom:173.546667pt;}
.y40{bottom:182.986667pt;}
.yeb{bottom:184.026667pt;}
.ya1{bottom:184.586667pt;}
.y4d{bottom:188.637920pt;}
.y25{bottom:189.146667pt;}
.ya0{bottom:200.186667pt;}
.y4c{bottom:204.213022pt;}
.y24{bottom:204.746667pt;}
.yea{bottom:207.626667pt;}
.y3f{bottom:211.626667pt;}
.y44{bottom:213.726260pt;}
.yc6{bottom:215.786667pt;}
.y9f{bottom:215.866667pt;}
.y23{bottom:220.426667pt;}
.y69{bottom:220.834909pt;}
.ye9{bottom:223.306667pt;}
.y9e{bottom:231.466667pt;}
.y4b{bottom:235.842459pt;}
.y22{bottom:236.026667pt;}
.ye8{bottom:238.906667pt;}
.yc5{bottom:247.066667pt;}
.y9d{bottom:247.146667pt;}
.y21{bottom:251.706667pt;}
.ye7{bottom:262.586667pt;}
.yc4{bottom:262.746667pt;}
.y20{bottom:267.306667pt;}
.y4a{bottom:267.392023pt;}
.y9c{bottom:278.106667pt;}
.ye6{bottom:278.186667pt;}
.y1f{bottom:282.906667pt;}
.y9b{bottom:288.906667pt;}
.yc3{bottom:293.706667pt;}
.ye5{bottom:293.786667pt;}
.y1e{bottom:298.586667pt;}
.y49{bottom:298.968211pt;}
.yc2{bottom:304.506667pt;}
.y5b{bottom:305.445783pt;}
.y60{bottom:306.563995pt;}
.y5e{bottom:307.442590pt;}
.y5d{bottom:308.081569pt;}
.y9a{bottom:313.226667pt;}
.ye4{bottom:317.466667pt;}
.y1d{bottom:322.506667pt;}
.yc1{bottom:328.826667pt;}
.y48{bottom:330.597648pt;}
.y10d{bottom:331.146667pt;}
.ye3{bottom:333.066667pt;}
.y98{bottom:337.546667pt;}
.y10c{bottom:346.826667pt;}
.yc0{bottom:353.146667pt;}
.ye2{bottom:356.746667pt;}
.y97{bottom:361.786667pt;}
.y47{bottom:362.147213pt;}
.y10b{bottom:362.426667pt;}
.y1c{bottom:365.706667pt;}
.ye1{bottom:372.346667pt;}
.ybf{bottom:377.386667pt;}
.y95{bottom:386.106667pt;}
.ye0{bottom:387.946667pt;}
.y46{bottom:393.803273pt;}
.y1b{bottom:398.586667pt;}
.ybe{bottom:401.706667pt;}
.ydf{bottom:411.626667pt;}
.y77{bottom:412.108603pt;}
.y1a{bottom:414.266667pt;}
.y10a{bottom:417.306667pt;}
.y7b{bottom:421.773153pt;}
.y75{bottom:422.784869pt;}
.y79{bottom:424.089450pt;}
.y45{bottom:425.352838pt;}
.yde{bottom:427.253333pt;}
.y67{bottom:427.444087pt;}
.y94{bottom:429.413333pt;}
.y66{bottom:429.440895pt;}
.y19{bottom:429.893333pt;}
.y109{bottom:441.013333pt;}
.ydd{bottom:442.933333pt;}
.ybd{bottom:445.013333pt;}
.y18{bottom:445.493333pt;}
.y108{bottom:456.613333pt;}
.y55{bottom:460.564474pt;}
.y93{bottom:461.093333pt;}
.y17{bottom:461.173333pt;}
.y58{bottom:461.762559pt;}
.ydc{bottom:466.533333pt;}
.y53{bottom:467.752982pt;}
.y59{bottom:468.631578pt;}
.y107{bottom:472.293333pt;}
.ybc{bottom:476.053333pt;}
.y92{bottom:476.693333pt;}
.y16{bottom:476.773333pt;}
.ydb{bottom:482.133333pt;}
.ybb{bottom:486.853333pt;}
.y91{bottom:492.293333pt;}
.y15{bottom:492.373333pt;}
.y106{bottom:495.893333pt;}
.yda{bottom:497.813333pt;}
.y90{bottom:507.973333pt;}
.y14{bottom:508.053333pt;}
.yba{bottom:511.173333pt;}
.y105{bottom:511.493333pt;}
.yd9{bottom:521.413333pt;}
.y8f{bottom:523.573333pt;}
.y13{bottom:523.653333pt;}
.y104{bottom:527.173333pt;}
.yb9{bottom:535.413333pt;}
.yd8{bottom:537.093333pt;}
.y8e{bottom:539.253333pt;}
.y12{bottom:539.333333pt;}
.y103{bottom:550.773333pt;}
.y8d{bottom:554.853333pt;}
.y11{bottom:554.933333pt;}
.yb8{bottom:559.733333pt;}
.yd7{bottom:560.693333pt;}
.y102{bottom:566.453333pt;}
.y8c{bottom:570.453333pt;}
.y10{bottom:570.533333pt;}
.yd6{bottom:576.293333pt;}
.y74{bottom:582.502875pt;}
.y7a{bottom:583.860704pt;}
.yb7{bottom:584.053333pt;}
.y8b{bottom:586.133333pt;}
.yf{bottom:586.213333pt;}
.y70{bottom:587.854320pt;}
.y101{bottom:590.053333pt;}
.y72{bottom:594.483722pt;}
.yd5{bottom:599.973333pt;}
.y64{bottom:600.713763pt;}
.y8a{bottom:601.733333pt;}
.ye{bottom:601.813333pt;}
.y62{bottom:603.216428pt;}
.y100{bottom:605.653333pt;}
.yd4{bottom:615.573333pt;}
.y89{bottom:617.413333pt;}
.yd{bottom:617.493333pt;}
.yb6{bottom:627.333333pt;}
.yff{bottom:629.333333pt;}
.y88{bottom:633.013333pt;}
.yc{bottom:633.093333pt;}
.yd3{bottom:639.253333pt;}
.yfe{bottom:644.933333pt;}
.y87{bottom:648.613333pt;}
.yb{bottom:657.013333pt;}
.yb5{bottom:658.933333pt;}
.yfd{bottom:660.613333pt;}
.yd2{bottom:663.093333pt;}
.y86{bottom:664.293333pt;}
.y3e{bottom:672.613333pt;}
.yb4{bottom:674.613333pt;}
.y85{bottom:679.893333pt;}
.yfc{bottom:684.213333pt;}
.y3d{bottom:688.293333pt;}
.yb3{bottom:690.213333pt;}
.y84{bottom:695.573333pt;}
.yfb{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y3c{bottom:703.893333pt;}
.yb2{bottom:705.893333pt;}
.yd1{bottom:706.053333pt;}
.yfa{bottom:715.493333pt;}
.y83{bottom:719.413333pt;}
.y3b{bottom:719.573333pt;}
.yb1{bottom:721.493333pt;}
.yd0{bottom:729.973333pt;}
.y9{bottom:731.733333pt;}
.y3a{bottom:735.173333pt;}
.yb0{bottom:737.093333pt;}
.yf9{bottom:739.093333pt;}
.yaf{bottom:752.773333pt;}
.yf8{bottom:754.693333pt;}
.y39{bottom:758.773333pt;}
.y82{bottom:762.373333pt;}
.ycf{bottom:763.173333pt;}
.y8{bottom:763.733333pt;}
.yae{bottom:768.373333pt;}
.y81{bottom:777.973333pt;}
.yf7{bottom:778.373333pt;}
.yad{bottom:784.053333pt;}
.y38{bottom:790.453333pt;}
.y80{bottom:793.653333pt;}
.yf6{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y37{bottom:806.053333pt;}
.yf5{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yac{bottom:815.013333pt;}
.y7f{bottom:817.253333pt;}
.y36{bottom:821.733333pt;}
.yf4{bottom:825.253333pt;}
.yab{bottom:825.813333pt;}
.y35{bottom:837.333333pt;}
.y5{bottom:843.813333pt;}
.y7e{bottom:848.853333pt;}
.yaa{bottom:850.133333pt;}
.yce{bottom:852.933333pt;}
.y34{bottom:861.253333pt;}
.y7d{bottom:864.533333pt;}
.ycd{bottom:868.613333pt;}
.ya9{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.ycc{bottom:884.213333pt;}
.y7c{bottom:888.133333pt;}
.ya8{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.yf3{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.ycb{bottom:915.520000pt;}
.yf2{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.ya7{bottom:923.040000pt;}
.yca{bottom:931.120000pt;}
.y31{bottom:935.440000pt;}
.yf1{bottom:943.040000pt;}
.y30{bottom:951.040000pt;}
.yc9{bottom:955.040000pt;}
.yf0{bottom:958.720000pt;}
.ya6{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.he{height:10.383401pt;}
.h16{height:13.817910pt;}
.h14{height:13.897783pt;}
.h15{height:14.936123pt;}
.h20{height:15.095868pt;}
.h1f{height:15.122492pt;}
.h10{height:16.373825pt;}
.h22{height:18.370632pt;}
.h1d{height:18.397257pt;}
.h17{height:19.329100pt;}
.h1a{height:19.968079pt;}
.h19{height:21.192788pt;}
.h21{height:22.364248pt;}
.h25{height:23.600000pt;}
.h27{height:23.626667pt;}
.h23{height:23.680000pt;}
.h28{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h26{height:37.032187pt;}
.h1c{height:41.698964pt;}
.h1e{height:45.174346pt;}
.h24{height:45.246562pt;}
.hd{height:46.424847pt;}
.h6{height:46.446875pt;}
.h7{height:46.499062pt;}
.h13{height:47.010785pt;}
.h8{height:49.581562pt;}
.h29{height:50.896875pt;}
.h5{height:50.954062pt;}
.h18{height:52.364726pt;}
.h12{height:53.286378pt;}
.h9{height:54.187500pt;}
.h2a{height:54.927899pt;}
.hb{height:55.631875pt;}
.h11{height:56.630407pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.hf{height:73.023420pt;}
.h1b{height:73.668898pt;}
.hc{height:437.953740pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:26.007529pt;}
.w10{width:27.367923pt;}
.w12{width:31.289058pt;}
.w11{width:32.009267pt;}
.w5{width:55.696124pt;}
.wd{width:74.501568pt;}
.wc{width:74.528242pt;}
.w6{width:77.782517pt;}
.w1a{width:80.586667pt;}
.w7{width:85.304695pt;}
.wb{width:91.226409pt;}
.w16{width:98.160000pt;}
.w18{width:98.186667pt;}
.w1d{width:98.240000pt;}
.w1b{width:98.266667pt;}
.w13{width:103.546667pt;}
.w4{width:111.312224pt;}
.w9{width:113.152756pt;}
.w17{width:127.840000pt;}
.w1e{width:127.866667pt;}
.w19{width:127.920000pt;}
.w8{width:130.837876pt;}
.wa{width:131.478061pt;}
.w1c{width:132.746667pt;}
.w1f{width:138.346667pt;}
.w14{width:226.720000pt;}
.w15{width:226.746667pt;}
.we{width:560.935718pt;}
.w3{width:619.325953pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.800000pt;}
.x9{left:9.602780pt;}
.x7{left:17.605088pt;}
.x1{left:60.480000pt;}
.x23{left:81.519988pt;}
.x6{left:86.966667pt;}
.xd{left:96.969560pt;}
.x32{left:98.879988pt;}
.x2e{left:100.400000pt;}
.x29{left:103.200000pt;}
.x8{left:105.932151pt;}
.x15{left:106.892433pt;}
.x1d{left:117.840000pt;}
.x16{left:124.257454pt;}
.x24{left:129.280000pt;}
.x2{left:179.146655pt;}
.x11{left:185.635221pt;}
.x13{left:194.517796pt;}
.x25{left:210.586667pt;}
.x1f{left:222.026667pt;}
.x2a{left:236.586667pt;}
.xe{left:237.570262pt;}
.x2f{left:239.386667pt;}
.x5{left:250.506655pt;}
.xa{left:271.099965pt;}
.x27{left:309.466667pt;}
.x21{left:320.906667pt;}
.x1a{left:331.704177pt;}
.x2c{left:335.466667pt;}
.x17{left:338.106027pt;}
.x1c{left:420.369844pt;}
.xf{left:424.024238pt;}
.x1b{left:431.012922pt;}
.x26{left:437.946667pt;}
.x20{left:449.466667pt;}
.xb{left:450.671949pt;}
.x2b{left:464.053333pt;}
.x30{left:466.853333pt;}
.x12{left:512.556527pt;}
.x14{left:528.827908pt;}
.x28{left:536.853333pt;}
.x22{left:548.293333pt;}
.x2d{left:562.853333pt;}
.x31{left:565.653333pt;}
.x10{left:578.548971pt;}
.xc{left:593.273230pt;}
.x18{left:658.625479pt;}
.x19{left:663.773640pt;}
.x3{left:704.053322pt;}
.x4{left:709.013322pt;}
}




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