
    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_3248d8656ebee34d89b3afb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a0d55142b6939c7d4151045.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_76510d7ad62696d82b9fb89f.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_56b2ef6c172d9ecc15b7790b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c89574897ff8c09de409707.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_8d477308d20e35af3caf9cb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_43cfd290133538e0e23c50fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_45208cb4ea17c749c9329fe8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_165a430342464b36626b91d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.745117;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;}
.m3{transform:matrix(0.000000,-0.249583,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249583,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249583,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249240,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249240,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249240,0.250000,0.000000,0,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.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251006,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);}
.v7{vertical-align:-46.408657px;}
.v4{vertical-align:-31.415206px;}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-18.948854px;}
.v6{vertical-align:-4.996514px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.146009px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:29.838756px;}
.lsa{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.118347px;}
.ls7{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.050530px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008858px;}
.ls12{letter-spacing:0.039963px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls15{letter-spacing:2.160000px;}
.ls1{letter-spacing:9.360000px;}
.ls4{letter-spacing:13.680000px;}
.ls5{letter-spacing:21.197280px;}
.ls13{letter-spacing:33.960000px;}
.lsb{letter-spacing:206.032427px;}
.ls11{letter-spacing:303.840376px;}
.lsc{letter-spacing:1364.451243px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.ws0{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.230817px;}
.ws8{word-spacing:-7.396912px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:164.952300px;}
.wsc{word-spacing:209.490274px;}
.wsd{word-spacing:255.136466px;}
.wsb{word-spacing:517.176614px;}
._18{margin-left:-13.848000px;}
._f{margin-left:-4.392000px;}
._10{margin-left:-3.361440px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._5{width:2.164320px;}
._13{width:3.523680px;}
._17{width:4.752000px;}
._15{width:6.336000px;}
._16{width:7.992000px;}
._28{width:9.000000px;}
._14{width:10.008000px;}
._22{width:11.935680px;}
._11{width:13.019520px;}
._e{width:14.172480px;}
._12{width:15.233760px;}
._29{width:16.848480px;}
._1d{width:19.368000px;}
._1e{width:20.690400px;}
._20{width:21.736800px;}
._21{width:23.112000px;}
._23{width:24.264000px;}
._24{width:25.332000px;}
._19{width:27.120000px;}
._1a{width:28.200000px;}
._2a{width:29.522400px;}
._1f{width:30.672000px;}
._1b{width:32.544000px;}
._1c{width:33.768000px;}
._3{width:36.723120px;}
._2{width:38.016720px;}
._6{width:42.517440px;}
._7{width:43.570800px;}
._4{width:47.233200px;}
._a{width:57.958320px;}
._d{width:74.524800px;}
._9{width:81.898320px;}
._8{width:83.023920px;}
._25{width:84.083995px;}
._b{width:132.938400px;}
._c{width:134.056080px;}
._27{width:147.084291px;}
._26{width:177.633270px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.575735px;}
.fs9{font-size:33.204377px;}
.fs6{font-size:39.958812px;}
.fs7{font-size:40.025603px;}
.fs5{font-size:41.760000px;}
.fse{font-size:44.350515px;}
.fsa{font-size:46.388126px;}
.fs4{font-size:48.240000px;}
.fsf{font-size:53.428109px;}
.fsc{font-size:53.526437px;}
.fsd{font-size:64.544900px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:73.162525px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y95{bottom:12.001772px;}
.y9e{bottom:12.605975px;}
.yd3{bottom:15.717520px;}
.y96{bottom:16.153067px;}
.yc2{bottom:18.969436px;}
.y97{bottom:26.228373px;}
.ya0{bottom:26.812629px;}
.y9f{bottom:28.969308px;}
.yd5{bottom:31.382867px;}
.yc3{bottom:37.875880px;}
.ya9{bottom:50.309209px;}
.y5{bottom:56.520000px;}
.yd4{bottom:58.110088px;}
.ya8{bottom:65.302074px;}
.y98{bottom:68.727828px;}
.y4{bottom:75.456000px;}
.ya1{bottom:79.931753px;}
.yd6{bottom:88.120905px;}
.y3{bottom:94.536000px;}
.yc4{bottom:94.951561px;}
.ya7{bottom:95.874555px;}
.yaa{bottom:108.407394px;}
.y99{bottom:111.224789px;}
.y2{bottom:113.616000px;}
.y1{bottom:132.516000px;}
.ya2{bottom:133.049216px;}
.yde{bottom:139.425137px;}
.ycb{bottom:144.517991px;}
.yd7{bottom:144.864494px;}
.yac{bottom:148.989524px;}
.yc5{bottom:151.966954px;}
.y9a{bottom:153.668561px;}
.ya6{bottom:155.762908px;}
.y2d{bottom:160.590000px;}
.ybe{bottom:165.810000px;}
.y8b{bottom:166.890000px;}
.y11a{bottom:169.590000px;}
.ye3{bottom:175.170000px;}
.y53{bottom:176.250000px;}
.ye4{bottom:177.330000px;}
.y2c{bottom:181.290000px;}
.ya3{bottom:186.172495px;}
.y119{bottom:190.290000px;}
.yad{bottom:192.031681px;}
.ye2{bottom:194.790000px;}
.yd2{bottom:194.865000px;}
.ybd{bottom:195.510000px;}
.y9b{bottom:196.162199px;}
.ya5{bottom:197.616606px;}
.y8a{bottom:198.030000px;}
.yd8{bottom:201.522607px;}
.y2b{bottom:201.990000px;}
.y52{bottom:207.210000px;}
.y6f{bottom:208.290000px;}
.yc6{bottom:209.039956px;}
.ye0{bottom:209.426325px;}
.y118{bottom:210.990000px;}
.ye1{bottom:211.124736px;}
.yb0{bottom:215.468422px;}
.yf9{bottom:217.110000px;}
.y9d{bottom:218.352304px;}
.y2a{bottom:222.690000px;}
.ybc{bottom:226.650000px;}
.yaf{bottom:227.884908px;}
.yae{bottom:228.848973px;}
.yab{bottom:228.915460px;}
.y89{bottom:228.990000px;}
.ydc{bottom:230.317894px;}
.yf8{bottom:237.810000px;}
.y51{bottom:238.350000px;}
.y9c{bottom:238.622592px;}
.ya4{bottom:239.212666px;}
.y6e{bottom:239.430000px;}
.y29{bottom:243.390000px;}
.y117{bottom:246.630000px;}
.ybb{bottom:257.610000px;}
.yd9{bottom:258.258425px;}
.yf7{bottom:258.510000px;}
.y88{bottom:259.950000px;}
.y28{bottom:264.090000px;}
.yc7{bottom:266.019176px;}
.y116{bottom:267.330000px;}
.y50{bottom:269.310000px;}
.y6d{bottom:270.390000px;}
.ydf{bottom:271.146370px;}
.ydd{bottom:276.097294px;}
.y27{bottom:284.790000px;}
.yba{bottom:288.750000px;}
.y87{bottom:291.090000px;}
.yf6{bottom:294.150000px;}
.ydb{bottom:296.589237px;}
.y4f{bottom:300.450000px;}
.y6c{bottom:301.350000px;}
.y115{bottom:303.150000px;}
.y26{bottom:305.490000px;}
.yf5{bottom:314.850000px;}
.yda{bottom:314.916538px;}
.yb9{bottom:319.710000px;}
.yc8{bottom:323.092178px;}
.y114{bottom:323.850000px;}
.y86{bottom:324.390000px;}
.y25{bottom:326.190000px;}
.y4e{bottom:331.410000px;}
.y6b{bottom:332.490000px;}
.yf4{bottom:335.550000px;}
.y24{bottom:346.935000px;}
.yb8{bottom:350.895000px;}
.yca{bottom:351.776045px;}
.y85{bottom:358.455000px;}
.y113{bottom:359.535000px;}
.y4d{bottom:362.595000px;}
.y6a{bottom:363.495000px;}
.y23{bottom:367.455000px;}
.yf3{bottom:371.415000px;}
.yc9{bottom:380.071398px;}
.y112{bottom:380.235000px;}
.yb7{bottom:381.855000px;}
.y22{bottom:388.155000px;}
.y84{bottom:389.415000px;}
.yf2{bottom:392.115000px;}
.y4c{bottom:393.555000px;}
.y69{bottom:394.635000px;}
.y21{bottom:408.855000px;}
.yf1{bottom:412.815000px;}
.yb6{bottom:412.995000px;}
.y111{bottom:415.875000px;}
.y83{bottom:420.555000px;}
.y4b{bottom:424.695000px;}
.y68{bottom:425.595000px;}
.y20{bottom:429.555000px;}
.y110{bottom:436.575000px;}
.yb5{bottom:443.955000px;}
.yf0{bottom:448.455000px;}
.y82{bottom:451.515000px;}
.y1f{bottom:453.495000px;}
.y4a{bottom:455.655000px;}
.y67{bottom:456.735000px;}
.yef{bottom:469.155000px;}
.y10f{bottom:472.215000px;}
.yb4{bottom:475.095000px;}
.y1e{bottom:477.255000px;}
.y81{bottom:482.655000px;}
.y66{bottom:487.695000px;}
.y49{bottom:488.955000px;}
.yee{bottom:489.855000px;}
.y10e{bottom:492.915000px;}
.y1d{bottom:501.015000px;}
.yb3{bottom:506.055000px;}
.yed{bottom:510.555000px;}
.y80{bottom:513.615000px;}
.y48{bottom:515.775000px;}
.y65{bottom:518.835000px;}
.y1c{bottom:524.775000px;}
.yb2{bottom:526.395000px;}
.y10d{bottom:528.735000px;}
.y47{bottom:539.535000px;}
.yb1{bottom:544.575000px;}
.y94{bottom:544.590000px;}
.y7f{bottom:544.755000px;}
.yec{bottom:546.195000px;}
.y10c{bottom:549.435000px;}
.y64{bottom:549.795000px;}
.y1b{bottom:555.555000px;}
.yd1{bottom:560.415000px;}
.y46{bottom:563.295000px;}
.yeb{bottom:566.895000px;}
.y1a{bottom:572.475000px;}
.y7e{bottom:575.715000px;}
.yd0{bottom:579.315000px;}
.y63{bottom:580.935000px;}
.y10b{bottom:585.075000px;}
.y45{bottom:587.055000px;}
.ycf{bottom:598.395000px;}
.yea{bottom:602.715000px;}
.y19{bottom:603.075000px;}
.y10a{bottom:605.805000px;}
.y7d{bottom:606.885000px;}
.y44{bottom:611.025000px;}
.y62{bottom:611.925000px;}
.yce{bottom:617.325000px;}
.y18{bottom:620.025000px;}
.ye9{bottom:623.445000px;}
.y43{bottom:634.785000px;}
.ycd{bottom:636.225000px;}
.y7c{bottom:637.845000px;}
.y109{bottom:641.445000px;}
.y61{bottom:643.065000px;}
.ye8{bottom:644.145000px;}
.y17{bottom:650.805000px;}
.yc1{bottom:654.389959px;}
.ycc{bottom:654.405000px;}
.y42{bottom:658.545000px;}
.y108{bottom:662.145000px;}
.y7b{bottom:668.985000px;}
.y60{bottom:674.025000px;}
.y16{bottom:674.565000px;}
.ye7{bottom:679.785000px;}
.y41{bottom:682.305000px;}
.y15{bottom:691.485000px;}
.y107{bottom:697.965000px;}
.y7a{bottom:699.945000px;}
.ye6{bottom:700.485000px;}
.y5f{bottom:705.165000px;}
.y40{bottom:706.245000px;}
.y14{bottom:715.245000px;}
.y106{bottom:718.665000px;}
.ye5{bottom:721.185000px;}
.y3f{bottom:730.005000px;}
.y79{bottom:731.085000px;}
.y5e{bottom:736.125000px;}
.y13{bottom:739.185000px;}
.y105{bottom:739.365000px;}
.y3e{bottom:753.765000px;}
.y104{bottom:760.065000px;}
.y78{bottom:762.045000px;}
.y12{bottom:764.025000px;}
.y5d{bottom:767.265000px;}
.y3d{bottom:777.525000px;}
.y11{bottom:793.005000px;}
.y103{bottom:795.705000px;}
.y5c{bottom:798.225000px;}
.y3c{bottom:801.285000px;}
.y102{bottom:816.405000px;}
.y93{bottom:822.165000px;}
.y77{bottom:824.145000px;}
.y10{bottom:824.685000px;}
.y3b{bottom:825.225000px;}
.y5b{bottom:829.365000px;}
.y92{bottom:841.065000px;}
.y3a{bottom:848.985000px;}
.y101{bottom:852.045000px;}
.y76{bottom:855.105000px;}
.yf{bottom:856.545000px;}
.y91{bottom:860.145000px;}
.y5a{bottom:860.325000px;}
.y39{bottom:872.790000px;}
.y90{bottom:879.090000px;}
.y11d{bottom:884.490000px;}
.y75{bottom:886.290000px;}
.ye{bottom:888.270000px;}
.y59{bottom:891.510000px;}
.y38{bottom:896.550000px;}
.y8f{bottom:897.990000px;}
.y100{bottom:908.610000px;}
.y8e{bottom:917.070000px;}
.y74{bottom:917.250000px;}
.yd{bottom:919.950000px;}
.y37{bottom:920.490000px;}
.y58{bottom:922.470000px;}
.yff{bottom:929.310000px;}
.y8d{bottom:935.970000px;}
.y36{bottom:944.250000px;}
.y73{bottom:948.390000px;}
.yfe{bottom:950.010000px;}
.yc{bottom:951.810000px;}
.y57{bottom:953.610000px;}
.y8c{bottom:955.050000px;}
.y11c{bottom:964.950000px;}
.y35{bottom:968.010000px;}
.y72{bottom:979.350000px;}
.yb{bottom:983.490000px;}
.y56{bottom:984.570000px;}
.yfd{bottom:985.650000px;}
.y34{bottom:991.770000px;}
.yfc{bottom:1006.350000px;}
.y71{bottom:1010.490000px;}
.ya{bottom:1015.170000px;}
.y33{bottom:1015.710000px;}
.y11b{bottom:1021.290000px;}
.y32{bottom:1036.410000px;}
.yfb{bottom:1041.990000px;}
.y70{bottom:1043.790000px;}
.y55{bottom:1046.670000px;}
.y9{bottom:1047.030000px;}
.y31{bottom:1057.110000px;}
.yfa{bottom:1062.690000px;}
.y30{bottom:1077.810000px;}
.y8{bottom:1078.710000px;}
.yc0{bottom:1097.430000px;}
.y2f{bottom:1098.510000px;}
.y54{bottom:1108.770000px;}
.y7{bottom:1110.390000px;}
.y2e{bottom:1119.210000px;}
.y6{bottom:1139.940000px;}
.ybf{bottom:1141.200000px;}
.h12{height:29.767205px;}
.h10{height:35.822451px;}
.h1a{height:39.759543px;}
.h14{height:41.586230px;}
.h8{height:43.246406px;}
.h11{height:43.970740px;}
.h13{height:44.039002px;}
.h1b{height:47.897465px;}
.h17{height:47.985615px;}
.h3{height:48.224531px;}
.h15{height:53.264318px;}
.hd{height:54.596250px;}
.h18{height:57.863494px;}
.hb{height:58.429688px;}
.h9{height:59.343750px;}
.h2{height:59.383125px;}
.he{height:61.779375px;}
.ha{height:63.949219px;}
.h4{height:64.546875px;}
.h1c{height:69.598299px;}
.h7{height:70.606406px;}
.hc{height:74.820586px;}
.h6{height:75.519844px;}
.h5{height:85.052461px;}
.hf{height:273.744460px;}
.h19{height:361.806011px;}
.h16{height:436.662096px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:480.601337px;}
.w4{width:557.262037px;}
.w3{width:704.319086px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:12.965874px;}
.x2e{left:15.565012px;}
.x27{left:16.884126px;}
.x18{left:22.428661px;}
.x17{left:27.058913px;}
.x30{left:29.136936px;}
.x16{left:31.669185px;}
.x25{left:32.986725px;}
.x2f{left:35.329983px;}
.x20{left:78.277194px;}
.x14{left:91.889070px;}
.x31{left:97.158009px;}
.x1c{left:108.030839px;}
.x32{left:112.804303px;}
.x26{left:116.722641px;}
.x2d{left:118.349318px;}
.x1{left:127.655987px;}
.x22{left:129.095987px;}
.xc{left:133.415987px;}
.x35{left:138.335867px;}
.x7{left:141.335987px;}
.x23{left:143.855987px;}
.x29{left:145.835987px;}
.xe{left:147.275987px;}
.xb{left:149.615987px;}
.xd{left:153.029987px;}
.x2a{left:160.589987px;}
.x5{left:162.929987px;}
.x1d{left:167.403256px;}
.x24{left:169.049987px;}
.x3{left:172.649987px;}
.xa{left:180.749987px;}
.x2c{left:206.190000px;}
.x36{left:216.934779px;}
.x1e{left:223.920275px;}
.x1a{left:226.800653px;}
.x2b{left:236.009987px;}
.x8{left:244.289987px;}
.x1b{left:268.899133px;}
.x33{left:273.052999px;}
.x4{left:281.954987px;}
.x6{left:284.114987px;}
.x19{left:285.507089px;}
.x37{left:297.203876px;}
.x1f{left:311.072526px;}
.x9{left:328.034987px;}
.x11{left:349.874392px;}
.x34{left:352.442465px;}
.x12{left:359.356330px;}
.x38{left:375.001099px;}
.xf{left:413.714987px;}
.x13{left:428.327229px;}
.x10{left:440.331588px;}
.x2{left:446.474987px;}
.x39{left:686.849987px;}
.x28{left:725.189987px;}
.x21{left:832.109987px;}
@media print{
.v7{vertical-align:-41.252140pt;}
.v4{vertical-align:-27.924628pt;}
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-16.843426pt;}
.v6{vertical-align:-4.441346pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.907564pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:26.523338pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.105198pt;}
.ls7{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.044916pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007873pt;}
.ls12{letter-spacing:0.035522pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls4{letter-spacing:12.160000pt;}
.ls5{letter-spacing:18.842027pt;}
.ls13{letter-spacing:30.186667pt;}
.lsb{letter-spacing:183.139935pt;}
.ls11{letter-spacing:270.080334pt;}
.lsc{letter-spacing:1212.845549pt;}
.ws5{word-spacing:-19.040000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.205170pt;}
.ws8{word-spacing:-6.575033pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:146.624267pt;}
.wsc{word-spacing:186.213577pt;}
.wsd{word-spacing:226.787969pt;}
.wsb{word-spacing:459.712545pt;}
._18{margin-left:-12.309333pt;}
._f{margin-left:-3.904000pt;}
._10{margin-left:-2.987947pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._5{width:1.923840pt;}
._13{width:3.132160pt;}
._17{width:4.224000pt;}
._15{width:5.632000pt;}
._16{width:7.104000pt;}
._28{width:8.000000pt;}
._14{width:8.896000pt;}
._22{width:10.609493pt;}
._11{width:11.572907pt;}
._e{width:12.597760pt;}
._12{width:13.541120pt;}
._29{width:14.976427pt;}
._1d{width:17.216000pt;}
._1e{width:18.391467pt;}
._20{width:19.321600pt;}
._21{width:20.544000pt;}
._23{width:21.568000pt;}
._24{width:22.517333pt;}
._19{width:24.106667pt;}
._1a{width:25.066667pt;}
._2a{width:26.242133pt;}
._1f{width:27.264000pt;}
._1b{width:28.928000pt;}
._1c{width:30.016000pt;}
._3{width:32.642773pt;}
._2{width:33.792640pt;}
._6{width:37.793280pt;}
._7{width:38.729600pt;}
._4{width:41.985067pt;}
._a{width:51.518507pt;}
._d{width:66.244267pt;}
._9{width:72.798507pt;}
._8{width:73.799040pt;}
._25{width:74.741329pt;}
._b{width:118.167467pt;}
._c{width:119.160960pt;}
._27{width:130.741592pt;}
._26{width:157.896240pt;}
.fs8{font-size:23.622875pt;}
.fs9{font-size:29.515002pt;}
.fs6{font-size:35.518944pt;}
.fs7{font-size:35.578314pt;}
.fs5{font-size:37.120000pt;}
.fse{font-size:39.422680pt;}
.fsa{font-size:41.233889pt;}
.fs4{font-size:42.880000pt;}
.fsf{font-size:47.491652pt;}
.fsc{font-size:47.579056pt;}
.fsd{font-size:57.373244pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:65.033355pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:10.668242pt;}
.y9e{bottom:11.205311pt;}
.yd3{bottom:13.971129pt;}
.y96{bottom:14.358282pt;}
.yc2{bottom:16.861721pt;}
.y97{bottom:23.314109pt;}
.ya0{bottom:23.833448pt;}
.y9f{bottom:25.750496pt;}
.yd5{bottom:27.895882pt;}
.yc3{bottom:33.667449pt;}
.ya9{bottom:44.719297pt;}
.y5{bottom:50.240000pt;}
.yd4{bottom:51.653412pt;}
.ya8{bottom:58.046288pt;}
.y98{bottom:61.091402pt;}
.y4{bottom:67.072000pt;}
.ya1{bottom:71.050448pt;}
.yd6{bottom:78.329693pt;}
.y3{bottom:84.032000pt;}
.yc4{bottom:84.401388pt;}
.ya7{bottom:85.221827pt;}
.yaa{bottom:96.362128pt;}
.y99{bottom:98.866479pt;}
.y2{bottom:100.992000pt;}
.y1{bottom:117.792000pt;}
.ya2{bottom:118.265969pt;}
.yde{bottom:123.933455pt;}
.ycb{bottom:128.460436pt;}
.yd7{bottom:128.768439pt;}
.yac{bottom:132.435132pt;}
.yc5{bottom:135.081737pt;}
.y9a{bottom:136.594277pt;}
.ya6{bottom:138.455919pt;}
.y2d{bottom:142.746667pt;}
.ybe{bottom:147.386667pt;}
.y8b{bottom:148.346667pt;}
.y11a{bottom:150.746667pt;}
.ye3{bottom:155.706667pt;}
.y53{bottom:156.666667pt;}
.ye4{bottom:157.626667pt;}
.y2c{bottom:161.146667pt;}
.ya3{bottom:165.486663pt;}
.y119{bottom:169.146667pt;}
.yad{bottom:170.694827pt;}
.ye2{bottom:173.146667pt;}
.yd2{bottom:173.213333pt;}
.ybd{bottom:173.786667pt;}
.y9b{bottom:174.366399pt;}
.ya5{bottom:175.659206pt;}
.y8a{bottom:176.026667pt;}
.yd8{bottom:179.131206pt;}
.y2b{bottom:179.546667pt;}
.y52{bottom:184.186667pt;}
.y6f{bottom:185.146667pt;}
.yc6{bottom:185.813294pt;}
.ye0{bottom:186.156733pt;}
.y118{bottom:187.546667pt;}
.ye1{bottom:187.666432pt;}
.yb0{bottom:191.527486pt;}
.yf9{bottom:192.986667pt;}
.y9d{bottom:194.090937pt;}
.y2a{bottom:197.946667pt;}
.ybc{bottom:201.466667pt;}
.yaf{bottom:202.564363pt;}
.yae{bottom:203.421309pt;}
.yab{bottom:203.480409pt;}
.y89{bottom:203.546667pt;}
.ydc{bottom:204.727017pt;}
.yf8{bottom:211.386667pt;}
.y51{bottom:211.866667pt;}
.y9c{bottom:212.108971pt;}
.ya4{bottom:212.633481pt;}
.y6e{bottom:212.826667pt;}
.y29{bottom:216.346667pt;}
.y117{bottom:219.226667pt;}
.ybb{bottom:228.986667pt;}
.yd9{bottom:229.563045pt;}
.yf7{bottom:229.786667pt;}
.y88{bottom:231.066667pt;}
.y28{bottom:234.746667pt;}
.yc7{bottom:236.461490pt;}
.y116{bottom:237.626667pt;}
.y50{bottom:239.386667pt;}
.y6d{bottom:240.346667pt;}
.ydf{bottom:241.018995pt;}
.ydd{bottom:245.419817pt;}
.y27{bottom:253.146667pt;}
.yba{bottom:256.666667pt;}
.y87{bottom:258.746667pt;}
.yf6{bottom:261.466667pt;}
.ydb{bottom:263.634878pt;}
.y4f{bottom:267.066667pt;}
.y6c{bottom:267.866667pt;}
.y115{bottom:269.466667pt;}
.y26{bottom:271.546667pt;}
.yf5{bottom:279.866667pt;}
.yda{bottom:279.925812pt;}
.yb9{bottom:284.186667pt;}
.yc8{bottom:287.193047pt;}
.y114{bottom:287.866667pt;}
.y86{bottom:288.346667pt;}
.y25{bottom:289.946667pt;}
.y4e{bottom:294.586667pt;}
.y6b{bottom:295.546667pt;}
.yf4{bottom:298.266667pt;}
.y24{bottom:308.386667pt;}
.yb8{bottom:311.906667pt;}
.yca{bottom:312.689818pt;}
.y85{bottom:318.626667pt;}
.y113{bottom:319.586667pt;}
.y4d{bottom:322.306667pt;}
.y6a{bottom:323.106667pt;}
.y23{bottom:326.626667pt;}
.yf3{bottom:330.146667pt;}
.yc9{bottom:337.841243pt;}
.y112{bottom:337.986667pt;}
.yb7{bottom:339.426667pt;}
.y22{bottom:345.026667pt;}
.y84{bottom:346.146667pt;}
.yf2{bottom:348.546667pt;}
.y4c{bottom:349.826667pt;}
.y69{bottom:350.786667pt;}
.y21{bottom:363.426667pt;}
.yf1{bottom:366.946667pt;}
.yb6{bottom:367.106667pt;}
.y111{bottom:369.666667pt;}
.y83{bottom:373.826667pt;}
.y4b{bottom:377.506667pt;}
.y68{bottom:378.306667pt;}
.y20{bottom:381.826667pt;}
.y110{bottom:388.066667pt;}
.yb5{bottom:394.626667pt;}
.yf0{bottom:398.626667pt;}
.y82{bottom:401.346667pt;}
.y1f{bottom:403.106667pt;}
.y4a{bottom:405.026667pt;}
.y67{bottom:405.986667pt;}
.yef{bottom:417.026667pt;}
.y10f{bottom:419.746667pt;}
.yb4{bottom:422.306667pt;}
.y1e{bottom:424.226667pt;}
.y81{bottom:429.026667pt;}
.y66{bottom:433.506667pt;}
.y49{bottom:434.626667pt;}
.yee{bottom:435.426667pt;}
.y10e{bottom:438.146667pt;}
.y1d{bottom:445.346667pt;}
.yb3{bottom:449.826667pt;}
.yed{bottom:453.826667pt;}
.y80{bottom:456.546667pt;}
.y48{bottom:458.466667pt;}
.y65{bottom:461.186667pt;}
.y1c{bottom:466.466667pt;}
.yb2{bottom:467.906667pt;}
.y10d{bottom:469.986667pt;}
.y47{bottom:479.586667pt;}
.yb1{bottom:484.066667pt;}
.y94{bottom:484.080000pt;}
.y7f{bottom:484.226667pt;}
.yec{bottom:485.506667pt;}
.y10c{bottom:488.386667pt;}
.y64{bottom:488.706667pt;}
.y1b{bottom:493.826667pt;}
.yd1{bottom:498.146667pt;}
.y46{bottom:500.706667pt;}
.yeb{bottom:503.906667pt;}
.y1a{bottom:508.866667pt;}
.y7e{bottom:511.746667pt;}
.yd0{bottom:514.946667pt;}
.y63{bottom:516.386667pt;}
.y10b{bottom:520.066667pt;}
.y45{bottom:521.826667pt;}
.ycf{bottom:531.906667pt;}
.yea{bottom:535.746667pt;}
.y19{bottom:536.066667pt;}
.y10a{bottom:538.493333pt;}
.y7d{bottom:539.453333pt;}
.y44{bottom:543.133333pt;}
.y62{bottom:543.933333pt;}
.yce{bottom:548.733333pt;}
.y18{bottom:551.133333pt;}
.ye9{bottom:554.173333pt;}
.y43{bottom:564.253333pt;}
.ycd{bottom:565.533333pt;}
.y7c{bottom:566.973333pt;}
.y109{bottom:570.173333pt;}
.y61{bottom:571.613333pt;}
.ye8{bottom:572.573333pt;}
.y17{bottom:578.493333pt;}
.yc1{bottom:581.679964pt;}
.ycc{bottom:581.693333pt;}
.y42{bottom:585.373333pt;}
.y108{bottom:588.573333pt;}
.y7b{bottom:594.653333pt;}
.y60{bottom:599.133333pt;}
.y16{bottom:599.613333pt;}
.ye7{bottom:604.253333pt;}
.y41{bottom:606.493333pt;}
.y15{bottom:614.653333pt;}
.y107{bottom:620.413333pt;}
.y7a{bottom:622.173333pt;}
.ye6{bottom:622.653333pt;}
.y5f{bottom:626.813333pt;}
.y40{bottom:627.773333pt;}
.y14{bottom:635.773333pt;}
.y106{bottom:638.813333pt;}
.ye5{bottom:641.053333pt;}
.y3f{bottom:648.893333pt;}
.y79{bottom:649.853333pt;}
.y5e{bottom:654.333333pt;}
.y13{bottom:657.053333pt;}
.y105{bottom:657.213333pt;}
.y3e{bottom:670.013333pt;}
.y104{bottom:675.613333pt;}
.y78{bottom:677.373333pt;}
.y12{bottom:679.133333pt;}
.y5d{bottom:682.013333pt;}
.y3d{bottom:691.133333pt;}
.y11{bottom:704.893333pt;}
.y103{bottom:707.293333pt;}
.y5c{bottom:709.533333pt;}
.y3c{bottom:712.253333pt;}
.y102{bottom:725.693333pt;}
.y93{bottom:730.813333pt;}
.y77{bottom:732.573333pt;}
.y10{bottom:733.053333pt;}
.y3b{bottom:733.533333pt;}
.y5b{bottom:737.213333pt;}
.y92{bottom:747.613333pt;}
.y3a{bottom:754.653333pt;}
.y101{bottom:757.373333pt;}
.y76{bottom:760.093333pt;}
.yf{bottom:761.373333pt;}
.y91{bottom:764.573333pt;}
.y5a{bottom:764.733333pt;}
.y39{bottom:775.813333pt;}
.y90{bottom:781.413333pt;}
.y11d{bottom:786.213333pt;}
.y75{bottom:787.813333pt;}
.ye{bottom:789.573333pt;}
.y59{bottom:792.453333pt;}
.y38{bottom:796.933333pt;}
.y8f{bottom:798.213333pt;}
.y100{bottom:807.653333pt;}
.y8e{bottom:815.173333pt;}
.y74{bottom:815.333333pt;}
.yd{bottom:817.733333pt;}
.y37{bottom:818.213333pt;}
.y58{bottom:819.973333pt;}
.yff{bottom:826.053333pt;}
.y8d{bottom:831.973333pt;}
.y36{bottom:839.333333pt;}
.y73{bottom:843.013333pt;}
.yfe{bottom:844.453333pt;}
.yc{bottom:846.053333pt;}
.y57{bottom:847.653333pt;}
.y8c{bottom:848.933333pt;}
.y11c{bottom:857.733333pt;}
.y35{bottom:860.453333pt;}
.y72{bottom:870.533333pt;}
.yb{bottom:874.213333pt;}
.y56{bottom:875.173333pt;}
.yfd{bottom:876.133333pt;}
.y34{bottom:881.573333pt;}
.yfc{bottom:894.533333pt;}
.y71{bottom:898.213333pt;}
.ya{bottom:902.373333pt;}
.y33{bottom:902.853333pt;}
.y11b{bottom:907.813333pt;}
.y32{bottom:921.253333pt;}
.yfb{bottom:926.213333pt;}
.y70{bottom:927.813333pt;}
.y55{bottom:930.373333pt;}
.y9{bottom:930.693333pt;}
.y31{bottom:939.653333pt;}
.yfa{bottom:944.613333pt;}
.y30{bottom:958.053333pt;}
.y8{bottom:958.853333pt;}
.yc0{bottom:975.493333pt;}
.y2f{bottom:976.453333pt;}
.y54{bottom:985.573333pt;}
.y7{bottom:987.013333pt;}
.y2e{bottom:994.853333pt;}
.y6{bottom:1013.280000pt;}
.ybf{bottom:1014.400000pt;}
.h12{height:26.459738pt;}
.h10{height:31.842179pt;}
.h1a{height:35.341816pt;}
.h14{height:36.965538pt;}
.h8{height:38.441250pt;}
.h11{height:39.085102pt;}
.h13{height:39.145780pt;}
.h1b{height:42.575524pt;}
.h17{height:42.653880pt;}
.h3{height:42.866250pt;}
.h15{height:47.346061pt;}
.hd{height:48.530000pt;}
.h18{height:51.434217pt;}
.hb{height:51.937500pt;}
.h9{height:52.750000pt;}
.h2{height:52.785000pt;}
.he{height:54.915000pt;}
.ha{height:56.843750pt;}
.h4{height:57.375000pt;}
.h1c{height:61.865155pt;}
.h7{height:62.761250pt;}
.hc{height:66.507188pt;}
.h6{height:67.128750pt;}
.h5{height:75.602187pt;}
.hf{height:243.328409pt;}
.h19{height:321.605343pt;}
.h16{height:388.144085pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:427.201188pt;}
.w4{width:495.344033pt;}
.w3{width:626.061410pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:11.525221pt;}
.x2e{left:13.835566pt;}
.x27{left:15.008112pt;}
.x18{left:19.936588pt;}
.x17{left:24.052367pt;}
.x30{left:25.899499pt;}
.x16{left:28.150387pt;}
.x25{left:29.321534pt;}
.x2f{left:31.404429pt;}
.x20{left:69.579728pt;}
.x14{left:81.679173pt;}
.x31{left:86.362675pt;}
.x1c{left:96.027413pt;}
.x32{left:100.270492pt;}
.x26{left:103.753459pt;}
.x2d{left:105.199394pt;}
.x1{left:113.471988pt;}
.x22{left:114.751988pt;}
.xc{left:118.591988pt;}
.x35{left:122.965215pt;}
.x7{left:125.631988pt;}
.x23{left:127.871988pt;}
.x29{left:129.631988pt;}
.xe{left:130.911988pt;}
.xb{left:132.991988pt;}
.xd{left:136.026655pt;}
.x2a{left:142.746655pt;}
.x5{left:144.826655pt;}
.x1d{left:148.802894pt;}
.x24{left:150.266655pt;}
.x3{left:153.466655pt;}
.xa{left:160.666655pt;}
.x2c{left:183.280000pt;}
.x36{left:192.830914pt;}
.x1e{left:199.040245pt;}
.x1a{left:201.600581pt;}
.x2b{left:209.786655pt;}
.x8{left:217.146655pt;}
.x1b{left:239.021452pt;}
.x33{left:242.713777pt;}
.x4{left:250.626655pt;}
.x6{left:252.546655pt;}
.x19{left:253.784079pt;}
.x37{left:264.181223pt;}
.x1f{left:276.508912pt;}
.x9{left:291.586655pt;}
.x11{left:310.999459pt;}
.x34{left:313.282191pt;}
.x12{left:319.427849pt;}
.x38{left:333.334310pt;}
.xf{left:367.746655pt;}
.x13{left:380.735315pt;}
.x10{left:391.405856pt;}
.x2{left:396.866655pt;}
.x39{left:610.533322pt;}
.x28{left:644.613322pt;}
.x21{left:739.653322pt;}
}




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