
    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_324916f7cda1a7d935803f2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_df44cd94f3f1e170cb95e16f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4dc3c098aa444d0bd9162f54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_3e000331082e917b49e69370.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_5650881db2bf8dd7250761fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_59e72ca7fe5bab75c990319b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_a7230c26edcdc8435ad5f463.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_bf2fc27b7628628e18403167.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_62f0c5acf6c5fe30b76d71ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6861ddd0338c401efb66ef4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_65674d2df13c5241c0f41d39.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_05222d9f46ae60d14228b97b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_33380b8fc60c64af765052df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.049805;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:ffe;src:url('chunks/assets/font_f10015544383f9df89c095a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.035000;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:fff;src:url('chunks/assets/font_d1b049011497f3c62ce66f50.woff2')format("woff");}.fff{font-family:fff;line-height:0.884766;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:ff10;src:url('chunks/assets/font_002077731f1a0cb29f37d361.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.ls5{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.078420px;}
.ls11{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.147000px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.613440px;}
.lsc{letter-spacing:0.666001px;}
.lsd{letter-spacing:0.828001px;}
.ls8{letter-spacing:0.864001px;}
.ls9{letter-spacing:21.744017px;}
.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;}
}
.ws9{word-spacing:-40.032032px;}
.wse{word-spacing:-23.752219px;}
.ws2{word-spacing:-20.016016px;}
.wsa{word-spacing:-19.944016px;}
.ws8{word-spacing:-18.414735px;}
.ws1{word-spacing:-18.305535px;}
.ws7{word-spacing:-16.613293px;}
.ws0{word-spacing:-16.506493px;}
.wsc{word-spacing:-15.606012px;}
.ws3{word-spacing:-15.300012px;}
.wsf{word-spacing:-15.199812px;}
.wsb{word-spacing:-15.046812px;}
.ws4{word-spacing:-14.940012px;}
.ws10{word-spacing:-14.886732px;}
.ws11{word-spacing:-14.733612px;}
.ws5{word-spacing:-14.580012px;}
.wsd{word-spacing:-7.045885px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.412041px;}
._0{width:1.244664px;}
._6{width:2.947544px;}
._1c{width:3.978138px;}
._1b{width:5.077572px;}
._1d{width:6.129274px;}
._2{width:7.194416px;}
._10{width:8.352051px;}
._f{width:9.636744px;}
._e{width:10.649320px;}
._8{width:11.951965px;}
._7{width:13.099536px;}
._1e{width:16.011253px;}
._18{width:17.132747px;}
._19{width:18.254353px;}
._1f{width:19.332293px;}
._15{width:21.146508px;}
._3{width:22.169329px;}
._4{width:23.319088px;}
._11{width:24.341581px;}
._12{width:25.987514px;}
._14{width:27.380384px;}
._d{width:28.722450px;}
._13{width:32.535107px;}
._17{width:51.403567px;}
._16{width:52.405935px;}
._9{width:54.648026px;}
._a{width:55.656470px;}
._5{width:61.483638px;}
._b{width:73.746604px;}
._c{width:74.807285px;}
._1a{width:93.567353px;}
._23{width:96.453397px;}
._20{width:108.344679px;}
._22{width:132.660135px;}
._21{width:185.220292px;}
.fc5{color:rgb(0,111,192);}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,31,95);}
.fc6{color:rgb(17,17,17);}
.fc3{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240039px;}
.fs0{font-size:59.760048px;}
.fs1{font-size:66.240053px;}
.fs2{font-size:72.000058px;}
.fs4{font-size:74.880060px;}
.fs3{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.ye6{bottom:3.419603px;}
.y10b{bottom:3.421096px;}
.yf8{bottom:3.779520px;}
.yea{bottom:3.779561px;}
.y107{bottom:3.781138px;}
.y103{bottom:3.781194px;}
.yfd{bottom:3.781264px;}
.y10a{bottom:20.521110px;}
.ye5{bottom:20.699617px;}
.yf7{bottom:20.879533px;}
.ye9{bottom:21.059575px;}
.y106{bottom:21.061152px;}
.y102{bottom:21.061208px;}
.yfc{bottom:21.061277px;}
.ye4{bottom:37.799631px;}
.y109{bottom:37.801124px;}
.yf6{bottom:38.159547px;}
.y101{bottom:38.161222px;}
.ye8{bottom:38.339589px;}
.y105{bottom:38.341166px;}
.yfb{bottom:38.341291px;}
.ye3{bottom:55.079645px;}
.y100{bottom:55.441235px;}
.y104{bottom:55.621180px;}
.yfa{bottom:55.666305px;}
.y3{bottom:57.600046px;}
.ye2{bottom:72.359658px;}
.yff{bottom:72.721249px;}
.y2{bottom:77.796662px;}
.ye1{bottom:89.639672px;}
.y1{bottom:110.196688px;}
.y2c{bottom:133.057156px;}
.y57{bottom:136.296259px;}
.yde{bottom:142.236264px;}
.ya9{bottom:142.236714px;}
.y8f{bottom:142.596714px;}
.y2b{bottom:153.750123px;}
.y56{bottom:156.989226px;}
.ydd{bottom:159.509228px;}
.ya8{bottom:159.509678px;}
.y8e{bottom:159.869678px;}
.y125{bottom:171.030137px;}
.y2a{bottom:174.450140px;}
.ya7{bottom:176.249691px;}
.ydc{bottom:176.609241px;}
.y8d{bottom:176.969692px;}
.y55{bottom:177.689242px;}
.yf4{bottom:179.281279px;}
.y124{bottom:188.310151px;}
.ya6{bottom:193.529705px;}
.ydb{bottom:193.889255px;}
.y8c{bottom:194.249705px;}
.y29{bottom:195.150156px;}
.yf3{bottom:196.561292px;}
.y54{bottom:198.389259px;}
.y123{bottom:205.590164px;}
.yda{bottom:211.169269px;}
.ya5{bottom:211.169719px;}
.y8b{bottom:211.529719px;}
.y132{bottom:211.530169px;}
.yf2{bottom:213.886306px;}
.y28{bottom:215.850173px;}
.y53{bottom:219.089275px;}
.y122{bottom:222.870178px;}
.yd9{bottom:228.449283px;}
.ya4{bottom:228.449733px;}
.y8a{bottom:228.809733px;}
.y131{bottom:228.810183px;}
.yf1{bottom:231.166320px;}
.y27{bottom:236.550189px;}
.y52{bottom:239.789292px;}
.y121{bottom:239.970192px;}
.yd8{bottom:245.729297px;}
.ya3{bottom:245.729747px;}
.y89{bottom:246.089747px;}
.y130{bottom:246.090197px;}
.yf0{bottom:248.446334px;}
.y26{bottom:256.530205px;}
.y120{bottom:257.250206px;}
.y51{bottom:260.489308px;}
.yd7{bottom:262.829310px;}
.ya2{bottom:263.009760px;}
.y88{bottom:263.189761px;}
.y12f{bottom:263.190211px;}
.yef{bottom:265.546348px;}
.y25{bottom:273.630219px;}
.y11f{bottom:274.530220px;}
.yd6{bottom:280.109324px;}
.ya1{bottom:280.109774px;}
.y87{bottom:280.469774px;}
.y12e{bottom:280.470224px;}
.y50{bottom:281.189325px;}
.yee{bottom:282.826361px;}
.y24{bottom:290.910233px;}
.y11e{bottom:291.810233px;}
.yd5{bottom:297.389338px;}
.ya0{bottom:297.389788px;}
.y86{bottom:297.749788px;}
.y12d{bottom:297.750238px;}
.yed{bottom:300.106375px;}
.y4f{bottom:301.889342px;}
.y23{bottom:308.910247px;}
.y11d{bottom:309.090247px;}
.yd4{bottom:314.669352px;}
.y9f{bottom:314.669802px;}
.y85{bottom:315.029802px;}
.y12c{bottom:315.030252px;}
.yec{bottom:317.386389px;}
.y4e{bottom:322.589358px;}
.y11c{bottom:325.830261px;}
.yd3{bottom:331.949366px;}
.y12b{bottom:332.309366px;}
.y84{bottom:332.309816px;}
.y11b{bottom:343.155275px;}
.y4d{bottom:343.334375px;}
.yd2{bottom:349.274379px;}
.y12a{bottom:349.634380px;}
.y83{bottom:349.634830px;}
.y22{bottom:351.975282px;}
.y11a{bottom:360.435288px;}
.y4c{bottom:364.034391px;}
.yd1{bottom:366.734393px;}
.y82{bottom:366.734843px;}
.y119{bottom:378.075302px;}
.y21{bottom:379.155303px;}
.yd0{bottom:384.014407px;}
.y81{bottom:384.014857px;}
.y4b{bottom:384.734408px;}
.y118{bottom:395.355316px;}
.ycf{bottom:401.294421px;}
.y80{bottom:401.294871px;}
.y4a{bottom:405.434424px;}
.y117{bottom:412.635330px;}
.y20{bottom:412.814430px;}
.yce{bottom:418.574435px;}
.y7f{bottom:418.574885px;}
.y49{bottom:426.134441px;}
.y116{bottom:429.735344px;}
.ycd{bottom:435.854449px;}
.y7e{bottom:435.854899px;}
.y1f{bottom:443.414455px;}
.y48{bottom:446.834457px;}
.y115{bottom:447.015358px;}
.ycc{bottom:453.134463px;}
.y7d{bottom:453.134913px;}
.y114{bottom:464.295371px;}
.y47{bottom:467.534474px;}
.ycb{bottom:470.234476px;}
.y7c{bottom:470.234926px;}
.y1e{bottom:474.014479px;}
.y113{bottom:481.575385px;}
.yca{bottom:487.514490px;}
.y7b{bottom:487.514940px;}
.y46{bottom:488.234491px;}
.y112{bottom:498.855399px;}
.yc9{bottom:504.794504px;}
.y7a{bottom:504.794954px;}
.y1d{bottom:505.334504px;}
.y45{bottom:508.934507px;}
.y111{bottom:516.135413px;}
.y9e{bottom:521.714967px;}
.yc8{bottom:522.074518px;}
.y79{bottom:522.074968px;}
.y44{bottom:529.634524px;}
.y110{bottom:533.235427px;}
.y9d{bottom:538.994981px;}
.yc7{bottom:539.354531px;}
.y78{bottom:539.354981px;}
.y1c{bottom:541.514533px;}
.y43{bottom:550.334540px;}
.y10f{bottom:550.515440px;}
.y9c{bottom:556.274995px;}
.yc6{bottom:556.634545px;}
.y77{bottom:556.634995px;}
.y10e{bottom:567.795454px;}
.y42{bottom:571.034557px;}
.yc5{bottom:573.374559px;}
.y9b{bottom:573.375009px;}
.y129{bottom:573.734559px;}
.y76{bottom:573.735009px;}
.y1b{bottom:576.794561px;}
.y10d{bottom:585.075468px;}
.yc4{bottom:590.654573px;}
.y128{bottom:591.014573px;}
.y75{bottom:591.015023px;}
.y41{bottom:591.734573px;}
.y10c{bottom:602.355482px;}
.yc3{bottom:608.325487px;}
.y74{bottom:608.325937px;}
.y1a{bottom:611.925490px;}
.y40{bottom:612.465490px;}
.y108{bottom:616.604400px;}
.y73{bottom:625.245950px;}
.yc2{bottom:625.605500px;}
.y9a{bottom:625.605950px;}
.y3f{bottom:633.165507px;}
.y72{bottom:642.525964px;}
.yc1{bottom:642.885514px;}
.y99{bottom:642.885964px;}
.y19{bottom:646.485517px;}
.y3e{bottom:653.865523px;}
.yc0{bottom:659.985528px;}
.y71{bottom:659.985978px;}
.yeb{bottom:668.984400px;}
.y18{bottom:670.965537px;}
.y3d{bottom:674.565540px;}
.ybf{bottom:677.265542px;}
.y70{bottom:677.265992px;}
.ybe{bottom:694.545556px;}
.y6f{bottom:694.546006px;}
.y3c{bottom:695.265556px;}
.y17{bottom:707.325566px;}
.ybd{bottom:711.825569px;}
.y6e{bottom:711.826019px;}
.y3b{bottom:715.965573px;}
.y16{bottom:728.025582px;}
.ybc{bottom:729.105583px;}
.y6d{bottom:729.106033px;}
.y3a{bottom:736.665589px;}
.yfe{bottom:738.824400px;}
.ybb{bottom:746.385597px;}
.y6c{bottom:746.386047px;}
.y15{bottom:748.725599px;}
.y39{bottom:757.365606px;}
.yba{bottom:763.485611px;}
.y6b{bottom:763.486061px;}
.y14{bottom:769.425616px;}
.y38{bottom:778.065622px;}
.yb9{bottom:780.765625px;}
.y6a{bottom:780.766075px;}
.y13{bottom:790.845633px;}
.yb8{bottom:798.045638px;}
.y69{bottom:798.046088px;}
.y37{bottom:798.765639px;}
.y12{bottom:812.085650px;}
.yb7{bottom:815.325652px;}
.y68{bottom:815.326102px;}
.y36{bottom:819.465656px;}
.yf9{bottom:825.764400px;}
.y11{bottom:829.905664px;}
.yb6{bottom:832.245666px;}
.y67{bottom:832.606116px;}
.y35{bottom:840.165672px;}
.y10{bottom:847.005678px;}
.yb5{bottom:849.525680px;}
.y127{bottom:849.526130px;}
.y66{bottom:849.886130px;}
.y34{bottom:860.865689px;}
.yf{bottom:864.825692px;}
.yb4{bottom:866.625693px;}
.y65{bottom:866.986144px;}
.y33{bottom:881.610705px;}
.yb3{bottom:884.310707px;}
.y64{bottom:884.311157px;}
.ye{bottom:886.830709px;}
.yf5{bottom:895.651200px;}
.yb2{bottom:901.590721px;}
.y63{bottom:901.591171px;}
.yd{bottom:913.290731px;}
.y32{bottom:916.890734px;}
.y126{bottom:918.511185px;}
.yb1{bottom:918.870735px;}
.y62{bottom:918.871185px;}
.yc{bottom:933.990747px;}
.y61{bottom:935.791199px;}
.yb0{bottom:936.150749px;}
.y98{bottom:936.151199px;}
.ye7{bottom:948.031200px;}
.y31{bottom:950.010760px;}
.y60{bottom:953.071212px;}
.yaf{bottom:953.430763px;}
.y97{bottom:953.431213px;}
.yb{bottom:954.330763px;}
.y30{bottom:970.530776px;}
.y5f{bottom:970.531226px;}
.ya{bottom:973.231229px;}
.yae{bottom:987.810790px;}
.y5e{bottom:987.811240px;}
.y2f{bottom:990.871243px;}
.y9{bottom:992.311244px;}
.ye0{bottom:1000.591200px;}
.yad{bottom:1005.090804px;}
.y5d{bottom:1005.091254px;}
.y8{bottom:1011.571259px;}
.yac{bottom:1022.370818px;}
.y5c{bottom:1022.371268px;}
.y7{bottom:1032.271276px;}
.yab{bottom:1039.290831px;}
.y5b{bottom:1039.291281px;}
.y96{bottom:1039.651282px;}
.y2e{bottom:1049.011289px;}
.y6{bottom:1052.971292px;}
.yaa{bottom:1056.391295px;}
.y95{bottom:1056.751295px;}
.y5a{bottom:1057.291296px;}
.y5{bottom:1069.711306px;}
.y94{bottom:1074.031309px;}
.y59{bottom:1077.991312px;}
.y93{bottom:1091.311323px;}
.y58{bottom:1098.691329px;}
.y92{bottom:1108.591337px;}
.y2d{bottom:1119.391346px;}
.y91{bottom:1125.871351px;}
.y4{bottom:1140.120912px;}
.ydf{bottom:1142.820914px;}
.y90{bottom:1143.180915px;}
.he{height:33.189147px;}
.h8{height:40.618157px;}
.h11{height:41.114913px;}
.hd{height:41.473473px;}
.hf{height:41.772273px;}
.h2{height:43.506949px;}
.h3{height:44.149254px;}
.h9{height:47.988320px;}
.h10{height:48.224570px;}
.h13{height:48.883719px;}
.h12{height:49.838946px;}
.hc{height:49.968040px;}
.h17{height:51.660000px;}
.h15{height:51.840000px;}
.h7{height:52.260862px;}
.hb{height:52.418011px;}
.h5{height:57.927703px;}
.h4{height:62.964894px;}
.ha{height:65.483490px;}
.h6{height:66.457493px;}
.h1a{height:69.120000px;}
.h18{height:69.155280px;}
.h19{height:86.220000px;}
.h14{height:103.500000px;}
.h16{height:330.869520px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:52.380000px;}
.w6{width:52.560000px;}
.w4{width:65.375280px;}
.w3{width:93.960000px;}
.w2{width:465.584400px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.739965px;}
.x11{left:98.136720px;}
.x1{left:106.236685px;}
.xf{left:127.116102px;}
.x9{left:206.128665px;}
.xc{left:224.670180px;}
.x10{left:256.933706px;}
.xa{left:347.835278px;}
.xe{left:356.835285px;}
.xd{left:389.955312px;}
.xb{left:443.445355px;}
.x2{left:446.505957px;}
.x6{left:521.745417px;}
.x13{left:564.451200px;}
.x5{left:648.691119px;}
.x4{left:659.851128px;}
.x14{left:725.220000px;}
.x8{left:734.040587px;}
.x15{left:778.320000px;}
.x7{left:786.780629px;}
.x3{left:788.041230px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.069707pt;}
.ls11{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.130667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230934pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.545280pt;}
.lsc{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.736001pt;}
.ls8{letter-spacing:0.768001pt;}
.ls9{letter-spacing:19.328015pt;}
.ws9{word-spacing:-35.584028pt;}
.wse{word-spacing:-21.113084pt;}
.ws2{word-spacing:-17.792014pt;}
.wsa{word-spacing:-17.728014pt;}
.ws8{word-spacing:-16.368653pt;}
.ws1{word-spacing:-16.271586pt;}
.ws7{word-spacing:-14.767372pt;}
.ws0{word-spacing:-14.672438pt;}
.wsc{word-spacing:-13.872011pt;}
.ws3{word-spacing:-13.600011pt;}
.wsf{word-spacing:-13.510944pt;}
.wsb{word-spacing:-13.374944pt;}
.ws4{word-spacing:-13.280011pt;}
.ws10{word-spacing:-13.232651pt;}
.ws11{word-spacing:-13.096544pt;}
.ws5{word-spacing:-12.960010pt;}
.wsd{word-spacing:-6.263009pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.255148pt;}
._0{width:1.106368pt;}
._6{width:2.620039pt;}
._1c{width:3.536123pt;}
._1b{width:4.513398pt;}
._1d{width:5.448244pt;}
._2{width:6.395036pt;}
._10{width:7.424046pt;}
._f{width:8.565995pt;}
._e{width:9.466062pt;}
._8{width:10.623969pt;}
._7{width:11.644032pt;}
._1e{width:14.232225pt;}
._18{width:15.229109pt;}
._19{width:16.226091pt;}
._1f{width:17.184261pt;}
._15{width:18.796896pt;}
._3{width:19.706070pt;}
._4{width:20.728079pt;}
._11{width:21.636961pt;}
._12{width:23.100012pt;}
._14{width:24.338119pt;}
._d{width:25.531067pt;}
._13{width:28.920095pt;}
._17{width:45.692060pt;}
._16{width:46.583053pt;}
._9{width:48.576023pt;}
._a{width:49.472417pt;}
._5{width:54.652123pt;}
._b{width:65.552537pt;}
._c{width:66.495365pt;}
._1a{width:83.170980pt;}
._23{width:85.736353pt;}
._20{width:96.306381pt;}
._22{width:117.920120pt;}
._21{width:164.640260pt;}
.fs5{font-size:42.880034pt;}
.fs0{font-size:53.120042pt;}
.fs1{font-size:58.880047pt;}
.fs2{font-size:64.000051pt;}
.fs4{font-size:66.560053pt;}
.fs3{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:3.039647pt;}
.y10b{bottom:3.040974pt;}
.yf8{bottom:3.359573pt;}
.yea{bottom:3.359610pt;}
.y107{bottom:3.361012pt;}
.y103{bottom:3.361061pt;}
.yfd{bottom:3.361123pt;}
.y10a{bottom:18.240986pt;}
.ye5{bottom:18.399660pt;}
.yf7{bottom:18.559585pt;}
.ye9{bottom:18.719622pt;}
.y106{bottom:18.721024pt;}
.y102{bottom:18.721074pt;}
.yfc{bottom:18.721136pt;}
.ye4{bottom:33.599672pt;}
.y109{bottom:33.600999pt;}
.yf6{bottom:33.919597pt;}
.y101{bottom:33.921086pt;}
.ye8{bottom:34.079635pt;}
.y105{bottom:34.081036pt;}
.yfb{bottom:34.081148pt;}
.ye3{bottom:48.959684pt;}
.y100{bottom:49.281098pt;}
.y104{bottom:49.441049pt;}
.yfa{bottom:49.481160pt;}
.y3{bottom:51.200041pt;}
.ye2{bottom:64.319696pt;}
.yff{bottom:64.641110pt;}
.y2{bottom:69.152589pt;}
.ye1{bottom:79.679709pt;}
.y1{bottom:97.952612pt;}
.y2c{bottom:118.273028pt;}
.y57{bottom:121.152230pt;}
.yde{bottom:126.432234pt;}
.ya9{bottom:126.432634pt;}
.y8f{bottom:126.752635pt;}
.y2b{bottom:136.666776pt;}
.y56{bottom:139.545978pt;}
.ydd{bottom:141.785980pt;}
.ya8{bottom:141.786380pt;}
.y8e{bottom:142.106380pt;}
.y125{bottom:152.026788pt;}
.y2a{bottom:155.066791pt;}
.ya7{bottom:156.666392pt;}
.ydc{bottom:156.985992pt;}
.y8d{bottom:157.306393pt;}
.y55{bottom:157.945993pt;}
.yf4{bottom:159.361137pt;}
.y124{bottom:167.386801pt;}
.ya6{bottom:172.026404pt;}
.ydb{bottom:172.346005pt;}
.y8c{bottom:172.666405pt;}
.y29{bottom:173.466805pt;}
.yf3{bottom:174.721149pt;}
.y54{bottom:176.346008pt;}
.y123{bottom:182.746813pt;}
.yda{bottom:187.706017pt;}
.ya5{bottom:187.706417pt;}
.y8b{bottom:188.026417pt;}
.y132{bottom:188.026817pt;}
.yf2{bottom:190.121161pt;}
.y28{bottom:191.866820pt;}
.y53{bottom:194.746022pt;}
.y122{bottom:198.106825pt;}
.yd9{bottom:203.066029pt;}
.ya4{bottom:203.066429pt;}
.y8a{bottom:203.386429pt;}
.y131{bottom:203.386829pt;}
.yf1{bottom:205.481173pt;}
.y27{bottom:210.266835pt;}
.y52{bottom:213.146037pt;}
.y121{bottom:213.306837pt;}
.yd8{bottom:218.426041pt;}
.ya3{bottom:218.426441pt;}
.y89{bottom:218.746442pt;}
.y130{bottom:218.746842pt;}
.yf0{bottom:220.841186pt;}
.y26{bottom:228.026849pt;}
.y120{bottom:228.666850pt;}
.y51{bottom:231.546052pt;}
.yd7{bottom:233.626054pt;}
.ya2{bottom:233.786454pt;}
.y88{bottom:233.946454pt;}
.y12f{bottom:233.946854pt;}
.yef{bottom:236.041198pt;}
.y25{bottom:243.226861pt;}
.y11f{bottom:244.026862pt;}
.yd6{bottom:248.986066pt;}
.ya1{bottom:248.986466pt;}
.y87{bottom:249.306466pt;}
.y12e{bottom:249.306866pt;}
.y50{bottom:249.946067pt;}
.yee{bottom:251.401210pt;}
.y24{bottom:258.586874pt;}
.y11e{bottom:259.386874pt;}
.yd5{bottom:264.346078pt;}
.ya0{bottom:264.346478pt;}
.y86{bottom:264.666478pt;}
.y12d{bottom:264.666878pt;}
.yed{bottom:266.761222pt;}
.y4f{bottom:268.346081pt;}
.y23{bottom:274.586886pt;}
.y11d{bottom:274.746886pt;}
.yd4{bottom:279.706090pt;}
.y9f{bottom:279.706490pt;}
.y85{bottom:280.026491pt;}
.y12c{bottom:280.026891pt;}
.yec{bottom:282.121235pt;}
.y4e{bottom:286.746096pt;}
.y11c{bottom:289.626898pt;}
.yd3{bottom:295.066103pt;}
.y12b{bottom:295.386103pt;}
.y84{bottom:295.386503pt;}
.y11b{bottom:305.026911pt;}
.y4d{bottom:305.186111pt;}
.yd2{bottom:310.466115pt;}
.y12a{bottom:310.786115pt;}
.y83{bottom:310.786515pt;}
.y22{bottom:312.866917pt;}
.y11a{bottom:320.386923pt;}
.y4c{bottom:323.586126pt;}
.yd1{bottom:325.986127pt;}
.y82{bottom:325.986527pt;}
.y119{bottom:336.066936pt;}
.y21{bottom:337.026936pt;}
.yd0{bottom:341.346140pt;}
.y81{bottom:341.346540pt;}
.y4b{bottom:341.986140pt;}
.y118{bottom:351.426948pt;}
.ycf{bottom:356.706152pt;}
.y80{bottom:356.706552pt;}
.y4a{bottom:360.386155pt;}
.y117{bottom:366.786960pt;}
.y20{bottom:366.946160pt;}
.yce{bottom:372.066164pt;}
.y7f{bottom:372.066564pt;}
.y49{bottom:378.786170pt;}
.y116{bottom:381.986972pt;}
.ycd{bottom:387.426177pt;}
.y7e{bottom:387.426577pt;}
.y1f{bottom:394.146182pt;}
.y48{bottom:397.186184pt;}
.y115{bottom:397.346985pt;}
.ycc{bottom:402.786189pt;}
.y7d{bottom:402.786589pt;}
.y114{bottom:412.706997pt;}
.y47{bottom:415.586199pt;}
.ycb{bottom:417.986201pt;}
.y7c{bottom:417.986601pt;}
.y1e{bottom:421.346204pt;}
.y113{bottom:428.067009pt;}
.yca{bottom:433.346213pt;}
.y7b{bottom:433.346613pt;}
.y46{bottom:433.986214pt;}
.y112{bottom:443.427021pt;}
.yc9{bottom:448.706226pt;}
.y7a{bottom:448.706626pt;}
.y1d{bottom:449.186226pt;}
.y45{bottom:452.386229pt;}
.y111{bottom:458.787034pt;}
.y9e{bottom:463.746638pt;}
.yc8{bottom:464.066238pt;}
.y79{bottom:464.066638pt;}
.y44{bottom:470.786243pt;}
.y110{bottom:473.987046pt;}
.y9d{bottom:479.106650pt;}
.yc7{bottom:479.426250pt;}
.y78{bottom:479.426650pt;}
.y1c{bottom:481.346252pt;}
.y43{bottom:489.186258pt;}
.y10f{bottom:489.347058pt;}
.y9c{bottom:494.466662pt;}
.yc6{bottom:494.786262pt;}
.y77{bottom:494.786662pt;}
.y10e{bottom:504.707070pt;}
.y42{bottom:507.586273pt;}
.yc5{bottom:509.666274pt;}
.y9b{bottom:509.666674pt;}
.y129{bottom:509.986275pt;}
.y76{bottom:509.986675pt;}
.y1b{bottom:512.706277pt;}
.y10d{bottom:520.067083pt;}
.yc4{bottom:525.026287pt;}
.y128{bottom:525.346287pt;}
.y75{bottom:525.346687pt;}
.y41{bottom:525.986287pt;}
.y10c{bottom:535.427095pt;}
.yc3{bottom:540.733766pt;}
.y74{bottom:540.734166pt;}
.y1a{bottom:543.933768pt;}
.y40{bottom:544.413769pt;}
.y108{bottom:548.092800pt;}
.y73{bottom:555.774178pt;}
.yc2{bottom:556.093778pt;}
.y9a{bottom:556.094178pt;}
.y3f{bottom:562.813784pt;}
.y72{bottom:571.134190pt;}
.yc1{bottom:571.453790pt;}
.y99{bottom:571.454190pt;}
.y19{bottom:574.653793pt;}
.y3e{bottom:581.213798pt;}
.yc0{bottom:586.653803pt;}
.y71{bottom:586.654203pt;}
.yeb{bottom:594.652800pt;}
.y18{bottom:596.413810pt;}
.y3d{bottom:599.613813pt;}
.ybf{bottom:602.013815pt;}
.y70{bottom:602.014215pt;}
.ybe{bottom:617.373827pt;}
.y6f{bottom:617.374227pt;}
.y3c{bottom:618.013828pt;}
.y17{bottom:628.733836pt;}
.ybd{bottom:632.733840pt;}
.y6e{bottom:632.734240pt;}
.y3b{bottom:636.413842pt;}
.y16{bottom:647.133851pt;}
.ybc{bottom:648.093852pt;}
.y6d{bottom:648.094252pt;}
.y3a{bottom:654.813857pt;}
.yfe{bottom:656.732800pt;}
.ybb{bottom:663.453864pt;}
.y6c{bottom:663.454264pt;}
.y15{bottom:665.533866pt;}
.y39{bottom:673.213872pt;}
.yba{bottom:678.653876pt;}
.y6b{bottom:678.654276pt;}
.y14{bottom:683.933880pt;}
.y38{bottom:691.613887pt;}
.yb9{bottom:694.013889pt;}
.y6a{bottom:694.014289pt;}
.y13{bottom:702.973896pt;}
.yb8{bottom:709.373901pt;}
.y69{bottom:709.374301pt;}
.y37{bottom:710.013901pt;}
.y12{bottom:721.853911pt;}
.yb7{bottom:724.733913pt;}
.y68{bottom:724.734313pt;}
.y36{bottom:728.413916pt;}
.yf9{bottom:734.012800pt;}
.y11{bottom:737.693923pt;}
.yb6{bottom:739.773925pt;}
.y67{bottom:740.094325pt;}
.y35{bottom:746.813931pt;}
.y10{bottom:752.893936pt;}
.yb5{bottom:755.133937pt;}
.y127{bottom:755.134337pt;}
.y66{bottom:755.454338pt;}
.y34{bottom:765.213946pt;}
.yf{bottom:768.733948pt;}
.yb4{bottom:770.333950pt;}
.y65{bottom:770.654350pt;}
.y33{bottom:783.653960pt;}
.yb3{bottom:786.053962pt;}
.y64{bottom:786.054362pt;}
.ye{bottom:788.293964pt;}
.yf5{bottom:796.134400pt;}
.yb2{bottom:801.413974pt;}
.y63{bottom:801.414374pt;}
.yd{bottom:811.813983pt;}
.y32{bottom:815.013985pt;}
.y126{bottom:816.454386pt;}
.yb1{bottom:816.773987pt;}
.y62{bottom:816.774387pt;}
.yc{bottom:830.213998pt;}
.y61{bottom:831.814399pt;}
.yb0{bottom:832.133999pt;}
.y98{bottom:832.134399pt;}
.ye7{bottom:842.694400pt;}
.y31{bottom:844.454009pt;}
.y60{bottom:847.174411pt;}
.yaf{bottom:847.494011pt;}
.y97{bottom:847.494411pt;}
.yb{bottom:848.294012pt;}
.y30{bottom:862.694023pt;}
.y5f{bottom:862.694423pt;}
.ya{bottom:865.094425pt;}
.yae{bottom:878.054036pt;}
.y5e{bottom:878.054436pt;}
.y2f{bottom:880.774438pt;}
.y9{bottom:882.054439pt;}
.ye0{bottom:889.414400pt;}
.yad{bottom:893.414048pt;}
.y5d{bottom:893.414448pt;}
.y8{bottom:899.174453pt;}
.yac{bottom:908.774060pt;}
.y5c{bottom:908.774460pt;}
.y7{bottom:917.574467pt;}
.yab{bottom:923.814072pt;}
.y5b{bottom:923.814472pt;}
.y96{bottom:924.134473pt;}
.y2e{bottom:932.454479pt;}
.y6{bottom:935.974482pt;}
.yaa{bottom:939.014485pt;}
.y95{bottom:939.334485pt;}
.y5a{bottom:939.814485pt;}
.y5{bottom:950.854494pt;}
.y94{bottom:954.694497pt;}
.y59{bottom:958.214500pt;}
.y93{bottom:970.054509pt;}
.y58{bottom:976.614515pt;}
.y92{bottom:985.414522pt;}
.y2d{bottom:995.014529pt;}
.y91{bottom:1000.774534pt;}
.y4{bottom:1013.440811pt;}
.ydf{bottom:1015.840813pt;}
.y90{bottom:1016.160813pt;}
.he{height:29.501464pt;}
.h8{height:36.105029pt;}
.h11{height:36.546589pt;}
.hd{height:36.865309pt;}
.hf{height:37.130910pt;}
.h2{height:38.672843pt;}
.h3{height:39.243781pt;}
.h9{height:42.656284pt;}
.h10{height:42.866284pt;}
.h13{height:43.452195pt;}
.h12{height:44.301285pt;}
.hc{height:44.416036pt;}
.h17{height:45.920000pt;}
.h15{height:46.080000pt;}
.h7{height:46.454100pt;}
.hb{height:46.593787pt;}
.h5{height:51.491291pt;}
.h4{height:55.968795pt;}
.ha{height:58.207547pt;}
.h6{height:59.073327pt;}
.h1a{height:61.440000pt;}
.h18{height:61.471360pt;}
.h19{height:76.640000pt;}
.h14{height:92.000000pt;}
.h16{height:294.106240pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:46.560000pt;}
.w6{width:46.720000pt;}
.w4{width:58.111360pt;}
.w3{width:83.520000pt;}
.w2{width:413.852800pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.879969pt;}
.x11{left:87.232640pt;}
.x1{left:94.432609pt;}
.xf{left:112.992090pt;}
.x9{left:183.225480pt;}
.xc{left:199.706826pt;}
.x10{left:228.385516pt;}
.xa{left:309.186914pt;}
.xe{left:317.186920pt;}
.xd{left:346.626944pt;}
.xb{left:394.173649pt;}
.x2{left:396.894184pt;}
.x6{left:463.773704pt;}
.x13{left:501.734400pt;}
.x5{left:576.614328pt;}
.x4{left:586.534336pt;}
.x14{left:644.640000pt;}
.x8{left:652.480522pt;}
.x15{left:691.840000pt;}
.x7{left:699.360559pt;}
.x3{left:700.481094pt;}
}




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