
    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_d5e351b563efb41f97ab97ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_5c2196e93513783c398115db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_6137e354118242361107273c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_19a85d8ec76bfad25510786c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972168;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_c16caf1f8740e58a88fad695.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff1eb3b7e822a44bd1350390.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967773;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_f654f3e541f00dc5fb535061.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_9e18a5801e9785727955b3ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;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_316a85fccdb26b6fcc73b8e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_0896b4f23230e07750a35a9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.020020;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_033f325855f152fe05edc442.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000977;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_f1e41f46e4366333bcff02ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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;}
.m7{transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.216730,-0.124625,0.124622,0.216724,0,0);-ms-transform:matrix(0.216730,-0.124625,0.124622,0.216724,0,0);-webkit-transform:matrix(0.216730,-0.124625,0.124622,0.216724,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);}
.m9{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m4{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:-34.368000px;}
.v2{vertical-align:-26.022000px;}
.v6{vertical-align:-22.794000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:31.416000px;}
.v5{vertical-align:41.484000px;}
.v3{vertical-align:48.900000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017270px;}
.ls4{letter-spacing:0.028981px;}
.ls5{letter-spacing:0.042400px;}
.ls6{letter-spacing:0.042879px;}
.ls1{letter-spacing:0.053307px;}
.ls3{letter-spacing:0.065238px;}
.ls7{letter-spacing:0.126405px;}
.lsd{letter-spacing:0.850373px;}
.ls9{letter-spacing:0.892152px;}
.lsa{letter-spacing:0.993357px;}
.lsb{letter-spacing:0.999356px;}
.lsc{letter-spacing:3.879400px;}
.ls8{letter-spacing:63.420252px;}
.lse{letter-spacing:63.426252px;}
.lsf{letter-spacing:67.747200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-104.192400px;}
.ws1b{word-spacing:-57.745044px;}
.wse{word-spacing:-46.545972px;}
.ws0{word-spacing:-33.261606px;}
.ws1c{word-spacing:-29.916000px;}
.ws5{word-spacing:-28.098720px;}
.wsd{word-spacing:-23.096814px;}
.ws2{word-spacing:-16.558812px;}
.ws17{word-spacing:-15.688920px;}
.ws18{word-spacing:-14.392044px;}
.wsa{word-spacing:-13.747140px;}
.ws11{word-spacing:-11.882520px;}
.ws16{word-spacing:-11.767080px;}
.wsb{word-spacing:-11.238240px;}
.ws12{word-spacing:-10.898496px;}
.ws10{word-spacing:-8.910720px;}
.ws7{word-spacing:-0.966498px;}
.wsc{word-spacing:-0.464221px;}
.ws8{word-spacing:-0.074346px;}
.ws3{word-spacing:-0.004722px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:47.522796px;}
.ws1a{word-spacing:62.506064px;}
.ws9{word-spacing:167.918797px;}
.ws13{word-spacing:173.573605px;}
.ws19{word-spacing:228.668096px;}
.ws4{word-spacing:257.393299px;}
.wsf{word-spacing:1199.091840px;}
.ws15{word-spacing:1582.734307px;}
._1c{margin-left:-2447.426780px;}
._14{margin-left:-1854.087979px;}
._19{margin-left:-1679.096954px;}
._1d{margin-left:-1492.128146px;}
._1b{margin-left:-1346.291435px;}
._11{margin-left:-1271.149636px;}
._15{margin-left:-1129.724032px;}
._13{margin-left:-1019.931727px;}
._1f{margin-left:-23.486004px;}
._d{margin-left:-20.006382px;}
._2{margin-left:-8.765694px;}
._4{margin-left:-7.717959px;}
._6{margin-left:-6.441133px;}
._8{margin-left:-4.758144px;}
._b{margin-left:-2.901645px;}
._1{margin-left:-1.801170px;}
._0{width:1.080702px;}
._a{width:2.196120px;}
._7{width:3.327438px;}
._e{width:4.704535px;}
._9{width:7.055469px;}
._3{width:12.659985px;}
._c{width:19.099518px;}
._5{width:49.790066px;}
._f{width:662.826404px;}
._10{width:765.481021px;}
._17{width:874.061009px;}
._16{width:959.017446px;}
._18{width:1009.783538px;}
._1e{width:1266.533862px;}
._12{width:1290.866778px;}
._1a{width:1703.734307px;}
.fcd{color:rgb(255,56,56);}
.fc1{color:rgb(255,255,255);}
.fca{color:rgb(8,66,123);}
.fcc{color:rgb(102,102,102);}
.fc2{color:rgb(44,44,160);}
.fc3{color:rgb(11,121,131);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(0,87,174);}
.fc7{color:rgb(114,159,207);}
.fc4{color:transparent;}
.fc6{color:rgb(100,74,155);}
.fc9{color:rgb(67,141,213);}
.fc8{color:rgb(68,68,68);}
.fcb{color:rgb(17,104,189);}
.fs9{font-size:4.722000px;}
.fs7{font-size:13.218000px;}
.fs8{font-size:19.830000px;}
.fsb{font-size:23.460000px;}
.fs6{font-size:23.478000px;}
.fs3{font-size:25.236000px;}
.fsd{font-size:30.072000px;}
.fs1b{font-size:34.272000px;}
.fs19{font-size:39.984000px;}
.fs1f{font-size:43.200000px;}
.fs13{font-size:43.224000px;}
.fs14{font-size:43.230000px;}
.fs1e{font-size:45.258000px;}
.fs1a{font-size:45.702000px;}
.fse{font-size:48.642000px;}
.fsa{font-size:51.642000px;}
.fs5{font-size:52.236000px;}
.fs1c{font-size:52.800000px;}
.fs4{font-size:54.042000px;}
.fs1d{font-size:60.342000px;}
.fs12{font-size:74.346000px;}
.fs17{font-size:78.066000px;}
.fs16{font-size:83.382000px;}
.fs20{font-size:95.922000px;}
.fsf{font-size:108.000000px;}
.fsc{font-size:108.072000px;}
.fs11{font-size:110.418000px;}
.fs1{font-size:120.078000px;}
.fs15{font-size:144.054000px;}
.fs18{font-size:168.036000px;}
.fs0{font-size:192.018000px;}
.fs2{font-size:263.964000px;}
.fs10{font-size:400.740000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2c{bottom:6.597000px;}
.y3d{bottom:12.810000px;}
.y40{bottom:16.086000px;}
.y2a{bottom:21.684000px;}
.y75{bottom:22.293000px;}
.y53{bottom:22.407000px;}
.y7d{bottom:28.719000px;}
.y92{bottom:29.269500px;}
.y3f{bottom:30.042000px;}
.y3c{bottom:35.685000px;}
.y74{bottom:36.574500px;}
.y9a{bottom:37.755000px;}
.y2b{bottom:38.253000px;}
.y46{bottom:41.400000px;}
.y7c{bottom:43.714500px;}
.y52{bottom:44.178000px;}
.y41{bottom:47.059500px;}
.y91{bottom:48.126000px;}
.y3e{bottom:50.172000px;}
.y99{bottom:57.553500px;}
.y3b{bottom:58.561500px;}
.ya8{bottom:59.569500px;}
.y4c{bottom:64.744500px;}
.y47{bottom:66.289500px;}
.y81{bottom:67.180500px;}
.y64{bottom:72.580500px;}
.y2f{bottom:76.407000px;}
.y5b{bottom:76.789500px;}
.y3a{bottom:81.436500px;}
.y42{bottom:83.095500px;}
.yb3{bottom:86.866500px;}
.y7e{bottom:87.271500px;}
.y48{bottom:91.221000px;}
.ya7{bottom:91.545000px;}
.y45{bottom:96.952500px;}
.y39{bottom:104.311500px;}
.y9b{bottom:115.065000px;}
.y5a{bottom:115.525500px;}
.y49{bottom:116.152500px;}
.ya6{bottom:117.822000px;}
.y43{bottom:119.175000px;}
.y38{bottom:127.188000px;}
.y73{bottom:128.686500px;}
.y6e{bottom:134.398500px;}
.yb2{bottom:138.358500px;}
.y72{bottom:140.110500px;}
.y4a{bottom:141.085500px;}
.y6d{bottom:145.824000px;}
.y77{bottom:147.252000px;}
.y37{bottom:150.063000px;}
.ya5{bottom:151.242000px;}
.y71{bottom:151.536000px;}
.y60{bottom:151.624500px;}
.y44{bottom:155.211000px;}
.y6c{bottom:158.676000px;}
.y76{bottom:161.532000px;}
.y70{bottom:164.389500px;}
.y4b{bottom:166.017000px;}
.y90{bottom:169.749000px;}
.yd{bottom:172.134000px;}
.y36{bottom:172.938000px;}
.y6b{bottom:172.957500px;}
.y8b{bottom:177.291000px;}
.y7{bottom:177.774000px;}
.y6f{bottom:179.383500px;}
.y13{bottom:181.687500px;}
.ya4{bottom:183.217500px;}
.y8f{bottom:184.834500px;}
.yc{bottom:189.355500px;}
.yb1{bottom:189.850500px;}
.y8a{bottom:192.376500px;}
.y94{bottom:194.262000px;}
.y35{bottom:195.814500px;}
.y59{bottom:199.501500px;}
.yb{bottom:199.884000px;}
.y8e{bottom:199.920000px;}
.y12{bottom:201.426000px;}
.y89{bottom:209.347500px;}
.yb8{bottom:210.301500px;}
.ya0{bottom:212.556000px;}
.y93{bottom:213.118500px;}
.ya3{bottom:215.191500px;}
.y5f{bottom:215.872500px;}
.y8d{bottom:216.889500px;}
.y11{bottom:217.122000px;}
.y34{bottom:218.689500px;}
.ye{bottom:227.328000px;}
.y88{bottom:228.204000px;}
.y6{bottom:231.774000px;}
.yb0{bottom:234.835500px;}
.y8c{bottom:236.689500px;}
.y33{bottom:241.566000px;}
.ya2{bottom:247.167000px;}
.y68{bottom:248.647500px;}
.y67{bottom:253.645500px;}
.y29{bottom:257.839500px;}
.y32{bottom:264.441000px;}
.y66{bottom:265.783500px;}
.y58{bottom:271.062000px;}
.y22{bottom:271.588500px;}
.yb7{bottom:274.549500px;}
.y5e{bottom:280.119000px;}
.y21{bottom:280.216500px;}
.y8{bottom:285.774000px;}
.y31{bottom:287.316000px;}
.y4f{bottom:296.787000px;}
.y9f{bottom:306.567000px;}
.y30{bottom:310.192500px;}
.y57{bottom:310.903500px;}
.yad{bottom:312.774000px;}
.y7f{bottom:316.482000px;}
.y85{bottom:328.143000px;}
.yaf{bottom:329.866500px;}
.y84{bottom:334.743000px;}
.yb6{bottom:338.796000px;}
.y5d{bottom:344.367000px;}
.y4e{bottom:345.429000px;}
.yac{bottom:350.574000px;}
.y83{bottom:350.770500px;}
.y28{bottom:351.850500px;}
.y7b{bottom:358.611000px;}
.y4{bottom:371.367000px;}
.y5{bottom:371.833500px;}
.y63{bottom:372.600000px;}
.y79{bottom:376.462500px;}
.yae{bottom:381.358500px;}
.y20{bottom:386.058000px;}
.y78{bottom:391.456500px;}
.y80{bottom:392.170500px;}
.y4d{bottom:394.072500px;}
.y56{bottom:395.389500px;}
.yab{bottom:396.112500px;}
.y1f{bottom:397.662000px;}
.y9e{bottom:400.578000px;}
.yb5{bottom:403.044000px;}
.y19{bottom:406.252500px;}
.y5c{bottom:408.613500px;}
.y1e{bottom:409.308000px;}
.y7a{bottom:410.022000px;}
.y9c{bottom:417.711000px;}
.y17{bottom:420.156000px;}
.y16{bottom:424.308000px;}
.y1d{bottom:424.693500px;}
.y2{bottom:425.196000px;}
.y3{bottom:425.664000px;}
.y15{bottom:432.570000px;}
.yaa{bottom:432.850500px;}
.y55{bottom:434.125500px;}
.y1c{bottom:438.616500px;}
.y62{bottom:440.334000px;}
.y18{bottom:445.005000px;}
.y27{bottom:445.861500px;}
.y10{bottom:454.824000px;}
.yb4{bottom:460.785000px;}
.y14{bottom:463.978500px;}
.y1b{bottom:465.204000px;}
.yf{bottom:470.563500px;}
.y6a{bottom:471.430500px;}
.y54{bottom:472.861500px;}
.y98{bottom:473.337000px;}
.y69{bottom:484.284000px;}
.ya9{bottom:484.341000px;}
.y1a{bottom:485.409000px;}
.y61{bottom:490.081500px;}
.ya1{bottom:493.398000px;}
.y96{bottom:496.908000px;}
.y95{bottom:516.706500px;}
.y9d{bottom:517.650000px;}
.y65{bottom:527.841000px;}
.y97{bottom:541.219500px;}
.y23{bottom:563.428500px;}
.y25{bottom:563.725500px;}
.y24{bottom:563.895000px;}
.y26{bottom:564.193500px;}
.y50{bottom:567.211500px;}
.y51{bottom:567.679500px;}
.y9{bottom:576.481500px;}
.ya{bottom:576.949500px;}
.y2d{bottom:589.237500px;}
.y2e{bottom:589.705500px;}
.y87{bottom:622.302000px;}
.y86{bottom:639.273000px;}
.y82{bottom:696.786000px;}
.hc{height:3.842137px;}
.ha{height:10.111770px;}
.hb{height:15.169950px;}
.he{height:17.946900px;}
.h9{height:17.960670px;}
.h6{height:19.173445px;}
.h10{height:23.005080px;}
.h25{height:26.218080px;}
.h22{height:30.587760px;}
.h18{height:33.066360px;}
.h19{height:33.070950px;}
.h2a{height:34.622370px;}
.h23{height:34.962030px;}
.hd{height:39.506130px;}
.h8{height:39.687117px;}
.h27{height:40.392000px;}
.h7{height:41.059254px;}
.h28{height:46.161630px;}
.h2b{height:50.599444px;}
.h2c{height:50.605444px;}
.h11{height:52.235812px;}
.h1c{height:56.567355px;}
.h2e{height:56.786766px;}
.h16{height:57.901304px;}
.h24{height:66.378030px;}
.h2d{height:73.393444px;}
.h1e{height:78.257812px;}
.h1f{height:82.634766px;}
.hf{height:82.675080px;}
.h14{height:84.469770px;}
.h4{height:87.009645px;}
.h29{height:87.645630px;}
.h1d{height:87.802734px;}
.h1a{height:104.382879px;}
.h1b{height:109.319379px;}
.h12{height:114.462000px;}
.h20{height:121.760461px;}
.h3{height:139.138043px;}
.h5{height:191.270789px;}
.h13{height:306.566100px;}
.h15{height:504.877500px;}
.h17{height:506.238000px;}
.h21{height:516.103500px;}
.h26{height:567.000000px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w5{width:675.000000px;}
.w3{width:729.000000px;}
.w4{width:935.347500px;}
.w7{width:1042.369500px;}
.w6{width:1051.809000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x22{left:-42.988500px;}
.x0{left:0.000000px;}
.x43{left:23.592000px;}
.x80{left:25.639500px;}
.x66{left:31.203000px;}
.x41{left:32.874000px;}
.x2d{left:37.630500px;}
.x64{left:43.461000px;}
.x42{left:45.013500px;}
.x44{left:47.869500px;}
.x81{left:51.151500px;}
.x65{left:59.490000px;}
.x67{left:63.261000px;}
.x1{left:65.395500px;}
.x40{left:72.148500px;}
.x1e{left:77.343000px;}
.x5b{left:81.000000px;}
.x35{left:84.231000px;}
.x2e{left:88.866000px;}
.x63{left:95.319000px;}
.x19{left:96.349500px;}
.x23{left:103.024500px;}
.x21{left:108.765000px;}
.x7e{left:111.147000px;}
.x31{left:114.420000px;}
.x2b{left:118.630500px;}
.x82{left:139.677000px;}
.x2f{left:142.866000px;}
.x32{left:156.387000px;}
.x1b{left:162.000000px;}
.x58{left:164.976000px;}
.x1a{left:172.630500px;}
.x49{left:190.681500px;}
.x1c{left:199.044000px;}
.x3e{left:204.249000px;}
.x1d{left:206.287500px;}
.x37{left:213.532500px;}
.x78{left:217.893000px;}
.x3f{left:227.812500px;}
.x3d{left:229.240500px;}
.x24{left:243.000000px;}
.x34{left:248.314500px;}
.x3c{left:251.377500px;}
.x20{left:253.587000px;}
.x38{left:255.661500px;}
.x2{left:263.281500px;}
.x7f{left:268.299000px;}
.x61{left:269.752500px;}
.x83{left:279.354000px;}
.xc{left:281.703000px;}
.x53{left:283.509000px;}
.xb{left:288.253500px;}
.x62{left:300.867000px;}
.x5{left:301.975500px;}
.x18{left:306.864000px;}
.xa{left:308.247000px;}
.x9{left:317.011500px;}
.x52{left:322.783500px;}
.x60{left:331.981500px;}
.x4b{left:337.063500px;}
.x2c{left:339.945000px;}
.x30{left:343.558500px;}
.x7c{left:362.523000px;}
.x74{left:374.412000px;}
.x4a{left:379.908000px;}
.x47{left:382.050000px;}
.x48{left:396.331500px;}
.x28{left:408.630000px;}
.x27{left:415.666500px;}
.x36{left:417.753000px;}
.x1f{left:426.813000px;}
.x46{left:429.177000px;}
.x45{left:430.606500px;}
.x25{left:433.960500px;}
.x6c{left:445.128000px;}
.xd{left:492.022500px;}
.x33{left:494.929500px;}
.x11{left:501.372000px;}
.x6a{left:504.529500px;}
.x13{left:507.634500px;}
.x26{left:513.225000px;}
.xf{left:514.297500px;}
.xe{left:516.271500px;}
.x6b{left:523.387500px;}
.x10{left:526.330500px;}
.x17{left:528.940500px;}
.x12{left:532.234500px;}
.x5c{left:551.673000px;}
.x57{left:560.565000px;}
.x69{left:566.760000px;}
.x68{left:568.645500px;}
.x4d{left:589.126500px;}
.x56{left:601.266000px;}
.x4c{left:618.403500px;}
.x29{left:622.699500px;}
.x39{left:629.829000px;}
.x14{left:641.382000px;}
.x2a{left:648.930000px;}
.x7d{left:658.630500px;}
.x7b{left:679.905000px;}
.x16{left:684.982500px;}
.x15{left:698.718000px;}
.x4{left:703.318500px;}
.x8{left:715.830000px;}
.x51{left:724.798500px;}
.x7{left:728.419500px;}
.x6{left:739.291500px;}
.x6e{left:777.964500px;}
.x77{left:793.993500px;}
.x6d{left:816.624000px;}
.x5d{left:831.709500px;}
.x50{left:841.189500px;}
.x3{left:847.503000px;}
.x3a{left:858.327000px;}
.x4e{left:865.468500px;}
.x4f{left:868.324500px;}
.x3b{left:870.466500px;}
.x59{left:889.032000px;}
.x5a{left:934.017000px;}
.x73{left:944.854500px;}
.x72{left:957.112500px;}
.x55{left:989.715000px;}
.x54{left:997.569000px;}
.x71{left:1110.802500px;}
.x5e{left:1133.431500px;}
.x6f{left:1142.860500px;}
.x70{left:1146.631500px;}
.x5f{left:1149.460500px;}
.x79{left:1173.975000px;}
.x7a{left:1233.376500px;}
.x76{left:1306.921500px;}
.x75{left:1317.294000px;}
@media print{
.v1{vertical-align:-30.549333pt;}
.v2{vertical-align:-23.130667pt;}
.v6{vertical-align:-20.261333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:27.925333pt;}
.v5{vertical-align:36.874667pt;}
.v3{vertical-align:43.466667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015351pt;}
.ls4{letter-spacing:0.025761pt;}
.ls5{letter-spacing:0.037689pt;}
.ls6{letter-spacing:0.038115pt;}
.ls1{letter-spacing:0.047384pt;}
.ls3{letter-spacing:0.057990pt;}
.ls7{letter-spacing:0.112360pt;}
.lsd{letter-spacing:0.755887pt;}
.ls9{letter-spacing:0.793024pt;}
.lsa{letter-spacing:0.882984pt;}
.lsb{letter-spacing:0.888317pt;}
.lsc{letter-spacing:3.448355pt;}
.ls8{letter-spacing:56.373557pt;}
.lse{letter-spacing:56.378891pt;}
.lsf{letter-spacing:60.219733pt;}
.ws6{word-spacing:-92.615467pt;}
.ws1b{word-spacing:-51.328928pt;}
.wse{word-spacing:-41.374197pt;}
.ws0{word-spacing:-29.565872pt;}
.ws1c{word-spacing:-26.592000pt;}
.ws5{word-spacing:-24.976640pt;}
.wsd{word-spacing:-20.530501pt;}
.ws2{word-spacing:-14.718944pt;}
.ws17{word-spacing:-13.945707pt;}
.ws18{word-spacing:-12.792928pt;}
.wsa{word-spacing:-12.219680pt;}
.ws11{word-spacing:-10.562240pt;}
.ws16{word-spacing:-10.459627pt;}
.wsb{word-spacing:-9.989547pt;}
.ws12{word-spacing:-9.687552pt;}
.ws10{word-spacing:-7.920640pt;}
.ws7{word-spacing:-0.859109pt;}
.wsc{word-spacing:-0.412641pt;}
.ws8{word-spacing:-0.066085pt;}
.ws3{word-spacing:-0.004197pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:42.242486pt;}
.ws1a{word-spacing:55.560946pt;}
.ws9{word-spacing:149.261153pt;}
.ws13{word-spacing:154.287649pt;}
.ws19{word-spacing:203.260530pt;}
.ws4{word-spacing:228.794043pt;}
.wsf{word-spacing:1065.859414pt;}
.ws15{word-spacing:1406.874940pt;}
._1c{margin-left:-2175.490471pt;}
._14{margin-left:-1648.078204pt;}
._19{margin-left:-1492.530625pt;}
._1d{margin-left:-1326.336130pt;}
._1b{margin-left:-1196.703498pt;}
._11{margin-left:-1129.910787pt;}
._15{margin-left:-1004.199139pt;}
._13{margin-left:-906.605980pt;}
._1f{margin-left:-20.876448pt;}
._d{margin-left:-17.783451pt;}
._2{margin-left:-7.791728pt;}
._4{margin-left:-6.860408pt;}
._6{margin-left:-5.725451pt;}
._8{margin-left:-4.229461pt;}
._b{margin-left:-2.579240pt;}
._1{margin-left:-1.601040pt;}
._0{width:0.960624pt;}
._a{width:1.952106pt;}
._7{width:2.957723pt;}
._e{width:4.181809pt;}
._9{width:6.271528pt;}
._3{width:11.253320pt;}
._c{width:16.977349pt;}
._5{width:44.257836pt;}
._f{width:589.179026pt;}
._10{width:680.427574pt;}
._17{width:776.943119pt;}
._16{width:852.459952pt;}
._18{width:897.585367pt;}
._1e{width:1125.807877pt;}
._12{width:1147.437136pt;}
._1a{width:1514.430495pt;}
.fs9{font-size:4.197333pt;}
.fs7{font-size:11.749333pt;}
.fs8{font-size:17.626667pt;}
.fsb{font-size:20.853333pt;}
.fs6{font-size:20.869333pt;}
.fs3{font-size:22.432000pt;}
.fsd{font-size:26.730667pt;}
.fs1b{font-size:30.464000pt;}
.fs19{font-size:35.541333pt;}
.fs1f{font-size:38.400000pt;}
.fs13{font-size:38.421333pt;}
.fs14{font-size:38.426667pt;}
.fs1e{font-size:40.229333pt;}
.fs1a{font-size:40.624000pt;}
.fse{font-size:43.237333pt;}
.fsa{font-size:45.904000pt;}
.fs5{font-size:46.432000pt;}
.fs1c{font-size:46.933333pt;}
.fs4{font-size:48.037333pt;}
.fs1d{font-size:53.637333pt;}
.fs12{font-size:66.085333pt;}
.fs17{font-size:69.392000pt;}
.fs16{font-size:74.117333pt;}
.fs20{font-size:85.264000pt;}
.fsf{font-size:96.000000pt;}
.fsc{font-size:96.064000pt;}
.fs11{font-size:98.149333pt;}
.fs1{font-size:106.736000pt;}
.fs15{font-size:128.048000pt;}
.fs18{font-size:149.365333pt;}
.fs0{font-size:170.682667pt;}
.fs2{font-size:234.634667pt;}
.fs10{font-size:356.213333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2c{bottom:5.864000pt;}
.y3d{bottom:11.386667pt;}
.y40{bottom:14.298667pt;}
.y2a{bottom:19.274667pt;}
.y75{bottom:19.816000pt;}
.y53{bottom:19.917333pt;}
.y7d{bottom:25.528000pt;}
.y92{bottom:26.017333pt;}
.y3f{bottom:26.704000pt;}
.y3c{bottom:31.720000pt;}
.y74{bottom:32.510667pt;}
.y9a{bottom:33.560000pt;}
.y2b{bottom:34.002667pt;}
.y46{bottom:36.800000pt;}
.y7c{bottom:38.857333pt;}
.y52{bottom:39.269333pt;}
.y41{bottom:41.830667pt;}
.y91{bottom:42.778667pt;}
.y3e{bottom:44.597333pt;}
.y99{bottom:51.158667pt;}
.y3b{bottom:52.054667pt;}
.ya8{bottom:52.950667pt;}
.y4c{bottom:57.550667pt;}
.y47{bottom:58.924000pt;}
.y81{bottom:59.716000pt;}
.y64{bottom:64.516000pt;}
.y2f{bottom:67.917333pt;}
.y5b{bottom:68.257333pt;}
.y3a{bottom:72.388000pt;}
.y42{bottom:73.862667pt;}
.yb3{bottom:77.214667pt;}
.y7e{bottom:77.574667pt;}
.y48{bottom:81.085333pt;}
.ya7{bottom:81.373333pt;}
.y45{bottom:86.180000pt;}
.y39{bottom:92.721333pt;}
.y9b{bottom:102.280000pt;}
.y5a{bottom:102.689333pt;}
.y49{bottom:103.246667pt;}
.ya6{bottom:104.730667pt;}
.y43{bottom:105.933333pt;}
.y38{bottom:113.056000pt;}
.y73{bottom:114.388000pt;}
.y6e{bottom:119.465333pt;}
.yb2{bottom:122.985333pt;}
.y72{bottom:124.542667pt;}
.y4a{bottom:125.409333pt;}
.y6d{bottom:129.621333pt;}
.y77{bottom:130.890667pt;}
.y37{bottom:133.389333pt;}
.ya5{bottom:134.437333pt;}
.y71{bottom:134.698667pt;}
.y60{bottom:134.777333pt;}
.y44{bottom:137.965333pt;}
.y6c{bottom:141.045333pt;}
.y76{bottom:143.584000pt;}
.y70{bottom:146.124000pt;}
.y4b{bottom:147.570667pt;}
.y90{bottom:150.888000pt;}
.yd{bottom:153.008000pt;}
.y36{bottom:153.722667pt;}
.y6b{bottom:153.740000pt;}
.y8b{bottom:157.592000pt;}
.y7{bottom:158.021333pt;}
.y6f{bottom:159.452000pt;}
.y13{bottom:161.500000pt;}
.ya4{bottom:162.860000pt;}
.y8f{bottom:164.297333pt;}
.yc{bottom:168.316000pt;}
.yb1{bottom:168.756000pt;}
.y8a{bottom:171.001333pt;}
.y94{bottom:172.677333pt;}
.y35{bottom:174.057333pt;}
.y59{bottom:177.334667pt;}
.yb{bottom:177.674667pt;}
.y8e{bottom:177.706667pt;}
.y12{bottom:179.045333pt;}
.y89{bottom:186.086667pt;}
.yb8{bottom:186.934667pt;}
.ya0{bottom:188.938667pt;}
.y93{bottom:189.438667pt;}
.ya3{bottom:191.281333pt;}
.y5f{bottom:191.886667pt;}
.y8d{bottom:192.790667pt;}
.y11{bottom:192.997333pt;}
.y34{bottom:194.390667pt;}
.ye{bottom:202.069333pt;}
.y88{bottom:202.848000pt;}
.y6{bottom:206.021333pt;}
.yb0{bottom:208.742667pt;}
.y8c{bottom:210.390667pt;}
.y33{bottom:214.725333pt;}
.ya2{bottom:219.704000pt;}
.y68{bottom:221.020000pt;}
.y67{bottom:225.462667pt;}
.y29{bottom:229.190667pt;}
.y32{bottom:235.058667pt;}
.y66{bottom:236.252000pt;}
.y58{bottom:240.944000pt;}
.y22{bottom:241.412000pt;}
.yb7{bottom:244.044000pt;}
.y5e{bottom:248.994667pt;}
.y21{bottom:249.081333pt;}
.y8{bottom:254.021333pt;}
.y31{bottom:255.392000pt;}
.y4f{bottom:263.810667pt;}
.y9f{bottom:272.504000pt;}
.y30{bottom:275.726667pt;}
.y57{bottom:276.358667pt;}
.yad{bottom:278.021333pt;}
.y7f{bottom:281.317333pt;}
.y85{bottom:291.682667pt;}
.yaf{bottom:293.214667pt;}
.y84{bottom:297.549333pt;}
.yb6{bottom:301.152000pt;}
.y5d{bottom:306.104000pt;}
.y4e{bottom:307.048000pt;}
.yac{bottom:311.621333pt;}
.y83{bottom:311.796000pt;}
.y28{bottom:312.756000pt;}
.y7b{bottom:318.765333pt;}
.y4{bottom:330.104000pt;}
.y5{bottom:330.518667pt;}
.y63{bottom:331.200000pt;}
.y79{bottom:334.633333pt;}
.yae{bottom:338.985333pt;}
.y20{bottom:343.162667pt;}
.y78{bottom:347.961333pt;}
.y80{bottom:348.596000pt;}
.y4d{bottom:350.286667pt;}
.y56{bottom:351.457333pt;}
.yab{bottom:352.100000pt;}
.y1f{bottom:353.477333pt;}
.y9e{bottom:356.069333pt;}
.yb5{bottom:358.261333pt;}
.y19{bottom:361.113333pt;}
.y5c{bottom:363.212000pt;}
.y1e{bottom:363.829333pt;}
.y7a{bottom:364.464000pt;}
.y9c{bottom:371.298667pt;}
.y17{bottom:373.472000pt;}
.y16{bottom:377.162667pt;}
.y1d{bottom:377.505333pt;}
.y2{bottom:377.952000pt;}
.y3{bottom:378.368000pt;}
.y15{bottom:384.506667pt;}
.yaa{bottom:384.756000pt;}
.y55{bottom:385.889333pt;}
.y1c{bottom:389.881333pt;}
.y62{bottom:391.408000pt;}
.y18{bottom:395.560000pt;}
.y27{bottom:396.321333pt;}
.y10{bottom:404.288000pt;}
.yb4{bottom:409.586667pt;}
.y14{bottom:412.425333pt;}
.y1b{bottom:413.514667pt;}
.yf{bottom:418.278667pt;}
.y6a{bottom:419.049333pt;}
.y54{bottom:420.321333pt;}
.y98{bottom:420.744000pt;}
.y69{bottom:430.474667pt;}
.ya9{bottom:430.525333pt;}
.y1a{bottom:431.474667pt;}
.y61{bottom:435.628000pt;}
.ya1{bottom:438.576000pt;}
.y96{bottom:441.696000pt;}
.y95{bottom:459.294667pt;}
.y9d{bottom:460.133333pt;}
.y65{bottom:469.192000pt;}
.y97{bottom:481.084000pt;}
.y23{bottom:500.825333pt;}
.y25{bottom:501.089333pt;}
.y24{bottom:501.240000pt;}
.y26{bottom:501.505333pt;}
.y50{bottom:504.188000pt;}
.y51{bottom:504.604000pt;}
.y9{bottom:512.428000pt;}
.ya{bottom:512.844000pt;}
.y2d{bottom:523.766667pt;}
.y2e{bottom:524.182667pt;}
.y87{bottom:553.157333pt;}
.y86{bottom:568.242667pt;}
.y82{bottom:619.365333pt;}
.hc{height:3.415233pt;}
.ha{height:8.988240pt;}
.hb{height:13.484400pt;}
.he{height:15.952800pt;}
.h9{height:15.965040pt;}
.h6{height:17.043063pt;}
.h10{height:20.448960pt;}
.h25{height:23.304960pt;}
.h22{height:27.189120pt;}
.h18{height:29.392320pt;}
.h19{height:29.396400pt;}
.h2a{height:30.775440pt;}
.h23{height:31.077360pt;}
.hd{height:35.116560pt;}
.h8{height:35.277437pt;}
.h27{height:35.904000pt;}
.h7{height:36.497115pt;}
.h28{height:41.032560pt;}
.h2b{height:44.977284pt;}
.h2c{height:44.982617pt;}
.h11{height:46.431833pt;}
.h1c{height:50.282094pt;}
.h2e{height:50.477125pt;}
.h16{height:51.467826pt;}
.h24{height:59.002693pt;}
.h2d{height:65.238617pt;}
.h1e{height:69.562500pt;}
.h1f{height:73.453125pt;}
.hf{height:73.488960pt;}
.h14{height:75.084240pt;}
.h4{height:77.341906pt;}
.h29{height:77.907227pt;}
.h1d{height:78.046875pt;}
.h1a{height:92.784781pt;}
.h1b{height:97.172781pt;}
.h12{height:101.744000pt;}
.h20{height:108.231521pt;}
.h3{height:123.678260pt;}
.h5{height:170.018479pt;}
.h13{height:272.503200pt;}
.h15{height:448.780000pt;}
.h17{height:449.989333pt;}
.h21{height:458.758667pt;}
.h26{height:504.000000pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w5{width:600.000000pt;}
.w3{width:648.000000pt;}
.w4{width:831.420000pt;}
.w7{width:926.550667pt;}
.w6{width:934.941333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x22{left:-38.212000pt;}
.x0{left:0.000000pt;}
.x43{left:20.970667pt;}
.x80{left:22.790667pt;}
.x66{left:27.736000pt;}
.x41{left:29.221333pt;}
.x2d{left:33.449333pt;}
.x64{left:38.632000pt;}
.x42{left:40.012000pt;}
.x44{left:42.550667pt;}
.x81{left:45.468000pt;}
.x65{left:52.880000pt;}
.x67{left:56.232000pt;}
.x1{left:58.129333pt;}
.x40{left:64.132000pt;}
.x1e{left:68.749333pt;}
.x5b{left:72.000000pt;}
.x35{left:74.872000pt;}
.x2e{left:78.992000pt;}
.x63{left:84.728000pt;}
.x19{left:85.644000pt;}
.x23{left:91.577333pt;}
.x21{left:96.680000pt;}
.x7e{left:98.797333pt;}
.x31{left:101.706667pt;}
.x2b{left:105.449333pt;}
.x82{left:124.157333pt;}
.x2f{left:126.992000pt;}
.x32{left:139.010667pt;}
.x1b{left:144.000000pt;}
.x58{left:146.645333pt;}
.x1a{left:153.449333pt;}
.x49{left:169.494667pt;}
.x1c{left:176.928000pt;}
.x3e{left:181.554667pt;}
.x1d{left:183.366667pt;}
.x37{left:189.806667pt;}
.x78{left:193.682667pt;}
.x3f{left:202.500000pt;}
.x3d{left:203.769333pt;}
.x24{left:216.000000pt;}
.x34{left:220.724000pt;}
.x3c{left:223.446667pt;}
.x20{left:225.410667pt;}
.x38{left:227.254667pt;}
.x2{left:234.028000pt;}
.x7f{left:238.488000pt;}
.x61{left:239.780000pt;}
.x83{left:248.314667pt;}
.xc{left:250.402667pt;}
.x53{left:252.008000pt;}
.xb{left:256.225333pt;}
.x62{left:267.437333pt;}
.x5{left:268.422667pt;}
.x18{left:272.768000pt;}
.xa{left:273.997333pt;}
.x9{left:281.788000pt;}
.x52{left:286.918667pt;}
.x60{left:295.094667pt;}
.x4b{left:299.612000pt;}
.x2c{left:302.173333pt;}
.x30{left:305.385333pt;}
.x7c{left:322.242667pt;}
.x74{left:332.810667pt;}
.x4a{left:337.696000pt;}
.x47{left:339.600000pt;}
.x48{left:352.294667pt;}
.x28{left:363.226667pt;}
.x27{left:369.481333pt;}
.x36{left:371.336000pt;}
.x1f{left:379.389333pt;}
.x46{left:381.490667pt;}
.x45{left:382.761333pt;}
.x25{left:385.742667pt;}
.x6c{left:395.669333pt;}
.xd{left:437.353333pt;}
.x33{left:439.937333pt;}
.x11{left:445.664000pt;}
.x6a{left:448.470667pt;}
.x13{left:451.230667pt;}
.x26{left:456.200000pt;}
.xf{left:457.153333pt;}
.xe{left:458.908000pt;}
.x6b{left:465.233333pt;}
.x10{left:467.849333pt;}
.x17{left:470.169333pt;}
.x12{left:473.097333pt;}
.x5c{left:490.376000pt;}
.x57{left:498.280000pt;}
.x69{left:503.786667pt;}
.x68{left:505.462667pt;}
.x4d{left:523.668000pt;}
.x56{left:534.458667pt;}
.x4c{left:549.692000pt;}
.x29{left:553.510667pt;}
.x39{left:559.848000pt;}
.x14{left:570.117333pt;}
.x2a{left:576.826667pt;}
.x7d{left:585.449333pt;}
.x7b{left:604.360000pt;}
.x16{left:608.873333pt;}
.x15{left:621.082667pt;}
.x4{left:625.172000pt;}
.x8{left:636.293333pt;}
.x51{left:644.265333pt;}
.x7{left:647.484000pt;}
.x6{left:657.148000pt;}
.x6e{left:691.524000pt;}
.x77{left:705.772000pt;}
.x6d{left:725.888000pt;}
.x5d{left:739.297333pt;}
.x50{left:747.724000pt;}
.x3{left:753.336000pt;}
.x3a{left:762.957333pt;}
.x4e{left:769.305333pt;}
.x4f{left:771.844000pt;}
.x3b{left:773.748000pt;}
.x59{left:790.250667pt;}
.x5a{left:830.237333pt;}
.x73{left:839.870667pt;}
.x72{left:850.766667pt;}
.x55{left:879.746667pt;}
.x54{left:886.728000pt;}
.x71{left:987.380000pt;}
.x5e{left:1007.494667pt;}
.x6f{left:1015.876000pt;}
.x70{left:1019.228000pt;}
.x5f{left:1021.742667pt;}
.x79{left:1043.533333pt;}
.x7a{left:1096.334667pt;}
.x76{left:1161.708000pt;}
.x75{left:1170.928000pt;}
}




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