
    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_feaabada9d3a21cefeda8d9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f77737095f0ac2b4108a72fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_573e4630a1d0d6bcd1a6470c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_d979dd3ac66474cb7877219d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_676177eda2e33ae68a5b106a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.646000;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_435969e727cace392b9f2039.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.717000;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_21fad33ce6f0af093b5cf8f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947754;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_af5394b8afa6ca13d1039cb1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.452000;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_fb18c00a68edb6d75368b53e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.066000;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_af8a1eb63f65f75e0b49ae1b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5d99652536acfb8eb69bfdd4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_551f53df9d622135055c9bd8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.960938;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_83a62c107ce63bed610960c1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002000;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_afca511ef88e8b0732b4011f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cd7231aaf293560ab986f6d7.woff2')format("woff");}.fff{font-family:fff;line-height:0.719727;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_62a7a5d9a06b8f497a6da872.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.vb{vertical-align:-45.459600px;}
.vc{vertical-align:-36.000000px;}
.v3{vertical-align:-31.077120px;}
.vd{vertical-align:-12.083400px;}
.v6{vertical-align:-7.628904px;}
.v8{vertical-align:-1.630200px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.872000px;}
.v1{vertical-align:3.326400px;}
.va{vertical-align:4.977600px;}
.v2{vertical-align:7.003800px;}
.v5{vertical-align:17.179686px;}
.vf{vertical-align:24.000000px;}
.v7{vertical-align:25.769532px;}
.v9{vertical-align:27.219726px;}
.v4{vertical-align:45.993840px;}
.ls20{letter-spacing:-2.640000px;}
.ls12{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.020520px;}
.ls1b{letter-spacing:-0.019008px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008000px;}
.ls1e{letter-spacing:0.009600px;}
.ls14{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.010920px;}
.ls10{letter-spacing:0.010980px;}
.ls13{letter-spacing:0.011589px;}
.lsc{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.013200px;}
.lsd{letter-spacing:0.014400px;}
.ls15{letter-spacing:0.015600px;}
.ls6{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.018800px;}
.ls18{letter-spacing:0.019008px;}
.ls0{letter-spacing:0.020400px;}
.ls8{letter-spacing:0.020520px;}
.ls2{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.043200px;}
.ls11{letter-spacing:0.044940px;}
.ls25{letter-spacing:0.060000px;}
.lsb{letter-spacing:5.777468px;}
.lsa{letter-spacing:6.463998px;}
.ls4{letter-spacing:36.347296px;}
.ls1d{letter-spacing:82.218840px;}
.ls23{letter-spacing:84.336120px;}
.ls22{letter-spacing:87.576120px;}
.ls16{letter-spacing:91.140000px;}
.ls24{letter-spacing:101.057160px;}
.ls7{letter-spacing:106.590000px;}
.ls19{letter-spacing:109.296060px;}
.ls1c{letter-spacing:112.200000px;}
.lsf{letter-spacing:124.200000px;}
.ls3{letter-spacing:124.200060px;}
.ls9{letter-spacing:196.833060px;}
.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;}
}
.ws10{word-spacing:-60.048000px;}
.wsf{word-spacing:-30.045600px;}
.ws1{word-spacing:-30.024000px;}
.ws4{word-spacing:-28.543320px;}
.ws5{word-spacing:-28.522800px;}
.ws3{word-spacing:-28.502280px;}
.wsb{word-spacing:-28.167993px;}
.wsc{word-spacing:-26.440128px;}
.ws9{word-spacing:-20.016000px;}
.wsa{word-spacing:-15.022800px;}
.ws8{word-spacing:-0.129600px;}
.ws6{word-spacing:-0.124308px;}
.wsd{word-spacing:-0.108000px;}
.wse{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:36.216469px;}
.ws7{word-spacing:1011.625800px;}
._d{margin-left:-12.009660px;}
._1{margin-left:-10.915200px;}
._7{margin-left:-7.981200px;}
._3{margin-left:-5.328000px;}
._2{margin-left:-3.865800px;}
._0{margin-left:-2.678400px;}
._4{margin-left:-1.656000px;}
._13{width:1.005696px;}
._9{width:58.471500px;}
._6{width:61.418520px;}
._12{width:88.930320px;}
._a{width:90.010800px;}
._b{width:93.430800px;}
._15{width:101.057160px;}
._11{width:109.277052px;}
._5{width:124.178460px;}
._16{width:229.146600px;}
._c{width:270.509940px;}
._14{width:661.459800px;}
._8{width:713.829600px;}
._e{width:756.952800px;}
._f{width:880.020600px;}
._10{width:903.147000px;}
._17{width:2425.949400px;}
.fc11{color:rgb(109,36,102);}
.fcf{color:rgb(204,24,97);}
.fcd{color:rgb(0,41,128);}
.fc1{color:rgb(0,51,160);}
.fc2{color:rgb(47,47,47);}
.fc5{color:rgb(68,84,106);}
.fc0{color:rgb(97,196,211);}
.fc7{color:rgb(83,83,83);}
.fc10{color:rgb(160,49,34);}
.fc9{color:rgb(23,23,23);}
.fc3{color:rgb(0,0,0);}
.fc4{color:rgb(78,157,169);}
.fce{color:rgb(119,126,140);}
.fca{color:rgb(88,29,82);}
.fc8{color:rgb(180,75,40);}
.fc6{color:rgb(29,154,120);}
.fcb{color:rgb(191,54,36);}
.fcc{color:rgb(204,0,0);}
.fs3{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs12{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fse{font-size:76.000020px;}
.fsf{font-size:78.000000px;}
.fs10{font-size:79.999980px;}
.fsa{font-size:88.258500px;}
.fs7{font-size:90.000000px;}
.fs13{font-size:94.000020px;}
.fs11{font-size:95.040000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:102.600000px;}
.fs4{font-size:108.000000px;}
.fs9{font-size:124.307760px;}
.fs5{font-size:130.850220px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:216.000000px;}
.fs1{font-size:228.000000px;}
.fs14{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:0.559380px;}
.y12{bottom:0.588810px;}
.y2f{bottom:6.370785px;}
.y14{bottom:6.706110px;}
.y5d{bottom:7.072950px;}
.y60{bottom:7.073100px;}
.y2d{bottom:8.011950px;}
.y2a{bottom:8.011980px;}
.y92{bottom:8.639640px;}
.y86{bottom:8.644800px;}
.y5a{bottom:10.216500px;}
.ya3{bottom:11.279535px;}
.ybb{bottom:11.279550px;}
.y58{bottom:11.788350px;}
.yaa{bottom:14.145900px;}
.y44{bottom:14.146050px;}
.y30{bottom:17.869245px;}
.yc0{bottom:20.893200px;}
.y5c{bottom:22.072950px;}
.y5f{bottom:22.073100px;}
.y7{bottom:30.524775px;}
.y43{bottom:45.646050px;}
.ya9{bottom:49.380450px;}
.y77{bottom:50.024775px;}
.y56{bottom:53.146050px;}
.y6{bottom:58.784040px;}
.ybf{bottom:63.332100px;}
.ya8{bottom:85.318800px;}
.y91{bottom:90.359625px;}
.ya2{bottom:97.234620px;}
.ybe{bottom:99.270450px;}
.y5{bottom:100.867455px;}
.y2c{bottom:103.285455px;}
.yb8{bottom:103.872465px;}
.y2e{bottom:104.926620px;}
.y26{bottom:109.546380px;}
.ya7{bottom:121.257150px;}
.ya1{bottom:128.136690px;}
.yb7{bottom:140.514645px;}
.y4{bottom:142.950885px;}
.y25{bottom:149.914155px;}
.y42{bottom:153.901800px;}
.ya6{bottom:157.899300px;}
.y40{bottom:162.863400px;}
.y93{bottom:164.027250px;}
.ya0{bottom:164.074950px;}
.yb6{bottom:174.397500px;}
.y24{bottom:177.041850px;}
.ya4{bottom:180.808800px;}
.y32{bottom:184.891950px;}
.y3{bottom:185.034300px;}
.ybd{bottom:190.388700px;}
.y3f{bottom:198.801750px;}
.y9f{bottom:200.013300px;}
.y59{bottom:205.856700px;}
.y23{bottom:211.207050px;}
.yb5{bottom:216.836550px;}
.y3e{bottom:234.740100px;}
.y9e{bottom:235.951650px;}
.y4f{bottom:251.304150px;}
.y22{bottom:252.540900px;}
.y83{bottom:254.265600px;}
.yb4{bottom:259.511250px;}
.y62{bottom:268.467750px;}
.y5b{bottom:269.212350px;}
.y3d{bottom:270.678300px;}
.y9d{bottom:272.593800px;}
.y21{bottom:279.668700px;}
.y4e{bottom:279.742500px;}
.y1{bottom:282.579600px;}
.yd2{bottom:287.409600px;}
.y15{bottom:291.829050px;}
.yb3{bottom:295.566000px;}
.y82{bottom:296.422800px;}
.y10{bottom:297.549150px;}
.yca{bottom:302.034150px;}
.y3c{bottom:306.616650px;}
.ya5{bottom:308.049150px;}
.y4d{bottom:308.180850px;}
.y57{bottom:313.423800px;}
.y20{bottom:313.833750px;}
.y5e{bottom:313.834650px;}
.y90{bottom:313.878450px;}
.y9c{bottom:315.328350px;}
.y85{bottom:327.794400px;}
.yb2{bottom:331.504350px;}
.y71{bottom:333.244800px;}
.y81{bottom:334.000500px;}
.yd1{bottom:339.070500px;}
.y13{bottom:340.881900px;}
.y4c{bottom:344.119200px;}
.y75{bottom:345.341700px;}
.yf{bottom:346.601850px;}
.y33{bottom:348.721050px;}
.y3b{bottom:350.055000px;}
.y9b{bottom:351.266700px;}
.yc8{bottom:351.652800px;}
.y55{bottom:351.738450px;}
.y76{bottom:353.038650px;}
.y6a{bottom:354.989550px;}
.y1f{bottom:355.211400px;}
.y69{bottom:357.184050px;}
.y70{bottom:357.244800px;}
.y8f{bottom:358.020600px;}
.y73{bottom:360.645600px;}
.yb1{bottom:368.146500px;}
.y80{bottom:371.578200px;}
.y74{bottom:371.711700px;}
.y4b{bottom:380.057550px;}
.yc7{bottom:380.091150px;}
.yd0{bottom:382.508850px;}
.y2b{bottom:383.700000px;}
.y8e{bottom:385.755150px;}
.y3a{bottom:385.993350px;}
.y9a{bottom:387.205050px;}
.y2{bottom:389.178900px;}
.y1e{bottom:389.961000px;}
.ye{bottom:395.745150px;}
.y72{bottom:404.166450px;}
.y68{bottom:404.798700px;}
.y4a{bottom:409.125300px;}
.y7f{bottom:409.155900px;}
.yb0{bottom:411.116850px;}
.y39{bottom:414.431700px;}
.yc6{bottom:423.529500px;}
.y99{bottom:423.847200px;}
.ycf{bottom:425.947200px;}
.y1d{bottom:430.328700px;}
.y8d{bottom:435.577650px;}
.yd{bottom:438.969450px;}
.y11{bottom:439.212300px;}
.y87{bottom:440.744100px;}
.yba{bottom:444.810600px;}
.y49{bottom:445.789050px;}
.y7e{bottom:446.733750px;}
.yaf{bottom:446.819250px;}
.y38{bottom:450.370050px;}
.y54{bottom:456.042450px;}
.y1c{bottom:457.456500px;}
.yc5{bottom:466.967850px;}
.y98{bottom:467.285550px;}
.y6f{bottom:468.039000px;}
.yce{bottom:469.385550px;}
.y7d{bottom:477.711450px;}
.y8c{bottom:477.780750px;}
.y17{bottom:482.783700px;}
.yae{bottom:482.993400px;}
.y66{bottom:484.987950px;}
.y37{bottom:486.308400px;}
.yc{bottom:487.958250px;}
.y48{bottom:489.227400px;}
.y1b{bottom:491.621550px;}
.y53{bottom:495.042450px;}
.yc4{bottom:502.906200px;}
.y6e{bottom:503.977350px;}
.y7c{bottom:508.689150px;}
.y97{bottom:510.723900px;}
.ycd{bottom:512.823900px;}
.yb{bottom:516.396450px;}
.yad{bottom:518.695950px;}
.y47{bottom:525.165750px;}
.ybc{bottom:526.602150px;}
.y29{bottom:527.278950px;}
.y8b{bottom:527.719800px;}
.y65{bottom:528.426300px;}
.y36{bottom:529.746600px;}
.y1a{bottom:533.539950px;}
.y52{bottom:534.042450px;}
.yc3{bottom:538.844550px;}
.y7b{bottom:539.666850px;}
.y6d{bottom:539.915700px;}
.y50{bottom:544.409100px;}
.y96{bottom:554.162100px;}
.yac{bottom:555.338100px;}
.ycc{bottom:558.662100px;}
.ya{bottom:559.834800px;}
.y46{bottom:561.104100px;}
.y51{bottom:565.542450px;}
.y35{bottom:565.684950px;}
.y8a{bottom:571.510200px;}
.y64{bottom:571.864650px;}
.y19{bottom:573.718200px;}
.y27{bottom:573.942600px;}
.yc2{bottom:574.782900px;}
.y6c{bottom:575.854050px;}
.y7a{bottom:577.244550px;}
.y95{bottom:596.896650px;}
.y45{bottom:597.042450px;}
.y34{bottom:601.623300px;}
.yc1{bottom:603.221100px;}
.y9{bottom:603.273150px;}
.ycb{bottom:605.100450px;}
.yab{bottom:605.277000px;}
.y79{bottom:608.222400px;}
.y18{bottom:613.118700px;}
.y63{bottom:615.303000px;}
.y89{bottom:615.652500px;}
.y6b{bottom:619.292400px;}
.y8{bottom:631.711500px;}
.y94{bottom:633.538800px;}
.y61{bottom:639.096600px;}
.y78{bottom:639.200100px;}
.yc9{bottom:641.261400px;}
.y88{bottom:643.386900px;}
.y84{bottom:644.724600px;}
.y67{bottom:651.170400px;}
.y41{bottom:657.446100px;}
.yb9{bottom:672.337650px;}
.y16{bottom:716.084850px;}
.y31{bottom:735.359850px;}
.h16{height:14.264313px;}
.ha{height:15.015060px;}
.h18{height:21.716865px;}
.h2b{height:22.541010px;}
.h1b{height:25.241931px;}
.h30{height:27.216795px;}
.hc{height:28.819770px;}
.h19{height:29.938590px;}
.h38{height:30.000000px;}
.h24{height:33.392580px;}
.hf{height:34.968750px;}
.h5{height:34.992188px;}
.h26{height:37.541010px;}
.h23{height:38.068365px;}
.h28{height:39.313477px;}
.h27{height:39.339844px;}
.h1d{height:39.366211px;}
.h3b{height:40.249995px;}
.h1c{height:44.208984px;}
.h21{height:46.582035px;}
.h2f{height:46.612537px;}
.h31{height:48.082031px;}
.h1e{height:52.417969px;}
.h39{height:53.050781px;}
.h2a{height:54.703125px;}
.h17{height:54.819722px;}
.h25{height:56.862305px;}
.hb{height:57.704947px;}
.h2c{height:60.781235px;}
.h10{height:65.610352px;}
.h41{height:66.313477px;}
.h2e{height:69.238125px;}
.h3c{height:69.260757px;}
.h2d{height:69.284531px;}
.h3{height:74.308594px;}
.h4{height:74.358398px;}
.h11{height:74.795801px;}
.h14{height:75.597363px;}
.h12{height:77.930801px;}
.h1f{height:78.082035px;}
.h6{height:78.679688px;}
.h7{height:78.732422px;}
.h3f{height:80.604422px;}
.h20{height:80.993837px;}
.h37{height:81.494888px;}
.h32{height:81.547622px;}
.h3a{height:81.547802px;}
.h40{height:81.547862px;}
.h33{height:81.548222px;}
.h13{height:81.799601px;}
.h15{height:81.799841px;}
.h8{height:82.058822px;}
.h9{height:82.624087px;}
.h29{height:83.710022px;}
.h3e{height:84.780000px;}
.h22{height:85.582035px;}
.h36{height:88.060800px;}
.hd{height:88.454749px;}
.h34{height:89.004000px;}
.h35{height:89.004600px;}
.h43{height:90.679688px;}
.h1{height:104.906250px;}
.h1a{height:105.656586px;}
.h42{height:131.706435px;}
.he{height:157.464844px;}
.h2{height:166.101562px;}
.h3d{height:190.335300px;}
.h44{height:218.554688px;}
.h0{height:810.000000px;}
.w4{width:13.642775px;}
.w1{width:14.360814px;}
.w6{width:21.983355px;}
.w5{width:22.292250px;}
.w7{width:67.211250px;}
.w3{width:70.644600px;}
.w14{width:77.667480px;}
.w16{width:87.536130px;}
.wd{width:99.462885px;}
.w9{width:110.620605px;}
.wc{width:112.082520px;}
.w17{width:113.824950px;}
.w13{width:117.413160px;}
.wf{width:123.603510px;}
.w12{width:147.671670px;}
.w10{width:151.840500px;}
.w15{width:158.922300px;}
.w11{width:172.379700px;}
.w2{width:176.913150px;}
.wb{width:212.953950px;}
.we{width:240.677250px;}
.w8{width:448.634700px;}
.w19{width:451.861500px;}
.w18{width:504.385500px;}
.wa{width:613.350600px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:1.025550px;}
.x26{left:3.770550px;}
.x3d{left:5.250000px;}
.x23{left:6.284250px;}
.x20{left:7.540950px;}
.x1d{left:12.041850px;}
.x43{left:24.041100px;}
.x4c{left:26.206500px;}
.x4b{left:32.375850px;}
.x1{left:45.442935px;}
.x2{left:46.504095px;}
.x3{left:48.187530px;}
.x17{left:49.604085px;}
.x13{left:53.509125px;}
.x36{left:56.854035px;}
.x5{left:58.330365px;}
.x21{left:59.848425px;}
.xc{left:65.067870px;}
.x44{left:67.023120px;}
.x3f{left:75.187545px;}
.x4f{left:82.901835px;}
.x4d{left:85.237410px;}
.x1c{left:90.741300px;}
.x18{left:92.916525px;}
.x2f{left:96.267960px;}
.x6{left:98.830380px;}
.xd{left:100.692870px;}
.x46{left:104.523120px;}
.x3b{left:113.216940px;}
.x45{left:121.023120px;}
.x1e{left:132.000120px;}
.x19{left:133.416525px;}
.x25{left:151.310550px;}
.x24{left:162.424350px;}
.x31{left:168.207000px;}
.x32{left:170.456400px;}
.x7{left:176.041800px;}
.x30{left:182.381850px;}
.x22{left:185.781300px;}
.xe{left:208.235400px;}
.x3e{left:232.560300px;}
.x2d{left:245.461500px;}
.x2e{left:254.930700px;}
.xf{left:262.441050px;}
.x9{left:321.352800px;}
.x8{left:356.828400px;}
.x3c{left:420.711150px;}
.x2b{left:492.979650px;}
.x2a{left:498.333000px;}
.x4{left:503.062500px;}
.x42{left:522.600750px;}
.x29{left:532.504050px;}
.x11{left:552.767400px;}
.x34{left:556.221750px;}
.x10{left:558.931500px;}
.x4a{left:584.209050px;}
.x39{left:678.753150px;}
.x38{left:693.079800px;}
.x49{left:752.494200px;}
.x28{left:784.450350px;}
.x41{left:812.750400px;}
.x1b{left:873.005550px;}
.x16{left:875.709450px;}
.x47{left:917.645100px;}
.x14{left:919.015200px;}
.x27{left:954.944250px;}
.x1a{left:972.328650px;}
.x48{left:980.412150px;}
.x15{left:997.382850px;}
.x35{left:1000.498950px;}
.x2c{left:1037.703600px;}
.x40{left:1039.340850px;}
.x33{left:1051.639500px;}
.xb{left:1098.319650px;}
.x4e{left:1105.799700px;}
.x37{left:1170.648750px;}
.x1f{left:1234.993950px;}
.x3a{left:1379.030250px;}
.xa{left:1385.704050px;}
@media print{
.vb{vertical-align:-40.408533pt;}
.vc{vertical-align:-32.000000pt;}
.v3{vertical-align:-27.624107pt;}
.vd{vertical-align:-10.740800pt;}
.v6{vertical-align:-6.781248pt;}
.v8{vertical-align:-1.449067pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.664000pt;}
.v1{vertical-align:2.956800pt;}
.va{vertical-align:4.424533pt;}
.v2{vertical-align:6.225600pt;}
.v5{vertical-align:15.270832pt;}
.vf{vertical-align:21.333333pt;}
.v7{vertical-align:22.906251pt;}
.v9{vertical-align:24.195312pt;}
.v4{vertical-align:40.883413pt;}
.ls20{letter-spacing:-2.346667pt;}
.ls12{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.018240pt;}
.ls1b{letter-spacing:-0.016896pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007111pt;}
.ls1e{letter-spacing:0.008533pt;}
.ls14{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.009707pt;}
.ls10{letter-spacing:0.009760pt;}
.ls13{letter-spacing:0.010301pt;}
.lsc{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.011733pt;}
.lsd{letter-spacing:0.012800pt;}
.ls15{letter-spacing:0.013867pt;}
.ls6{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.016711pt;}
.ls18{letter-spacing:0.016896pt;}
.ls0{letter-spacing:0.018133pt;}
.ls8{letter-spacing:0.018240pt;}
.ls2{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.038400pt;}
.ls11{letter-spacing:0.039947pt;}
.ls25{letter-spacing:0.053333pt;}
.lsb{letter-spacing:5.135527pt;}
.lsa{letter-spacing:5.745776pt;}
.ls4{letter-spacing:32.308707pt;}
.ls1d{letter-spacing:73.083413pt;}
.ls23{letter-spacing:74.965440pt;}
.ls22{letter-spacing:77.845440pt;}
.ls16{letter-spacing:81.013333pt;}
.ls24{letter-spacing:89.828587pt;}
.ls7{letter-spacing:94.746667pt;}
.ls19{letter-spacing:97.152053pt;}
.ls1c{letter-spacing:99.733333pt;}
.lsf{letter-spacing:110.400000pt;}
.ls3{letter-spacing:110.400053pt;}
.ls9{letter-spacing:174.962720pt;}
.ws10{word-spacing:-53.376000pt;}
.wsf{word-spacing:-26.707200pt;}
.ws1{word-spacing:-26.688000pt;}
.ws4{word-spacing:-25.371840pt;}
.ws5{word-spacing:-25.353600pt;}
.ws3{word-spacing:-25.335360pt;}
.wsb{word-spacing:-25.038216pt;}
.wsc{word-spacing:-23.502336pt;}
.ws9{word-spacing:-17.792000pt;}
.wsa{word-spacing:-13.353600pt;}
.ws8{word-spacing:-0.115200pt;}
.ws6{word-spacing:-0.110496pt;}
.wsd{word-spacing:-0.096000pt;}
.wse{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:32.192417pt;}
.ws7{word-spacing:899.222933pt;}
._d{margin-left:-10.675253pt;}
._1{margin-left:-9.702400pt;}
._7{margin-left:-7.094400pt;}
._3{margin-left:-4.736000pt;}
._2{margin-left:-3.436267pt;}
._0{margin-left:-2.380800pt;}
._4{margin-left:-1.472000pt;}
._13{width:0.893952pt;}
._9{width:51.974667pt;}
._6{width:54.594240pt;}
._12{width:79.049173pt;}
._a{width:80.009600pt;}
._b{width:83.049600pt;}
._15{width:89.828587pt;}
._11{width:97.135157pt;}
._5{width:110.380853pt;}
._16{width:203.685867pt;}
._c{width:240.453280pt;}
._14{width:587.964267pt;}
._8{width:634.515200pt;}
._e{width:672.846933pt;}
._f{width:782.240533pt;}
._10{width:802.797333pt;}
._17{width:2156.399467pt;}
.fs3{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs12{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fse{font-size:67.555573pt;}
.fsf{font-size:69.333333pt;}
.fs10{font-size:71.111093pt;}
.fsa{font-size:78.452000pt;}
.fs7{font-size:80.000000pt;}
.fs13{font-size:83.555573pt;}
.fs11{font-size:84.480000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:91.200000pt;}
.fs4{font-size:96.000000pt;}
.fs9{font-size:110.495787pt;}
.fs5{font-size:116.311307pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:192.000000pt;}
.fs1{font-size:202.666667pt;}
.fs14{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:0.497227pt;}
.y12{bottom:0.523387pt;}
.y2f{bottom:5.662920pt;}
.y14{bottom:5.960987pt;}
.y5d{bottom:6.287067pt;}
.y60{bottom:6.287200pt;}
.y2d{bottom:7.121733pt;}
.y2a{bottom:7.121760pt;}
.y92{bottom:7.679680pt;}
.y86{bottom:7.684267pt;}
.y5a{bottom:9.081333pt;}
.ya3{bottom:10.026253pt;}
.ybb{bottom:10.026267pt;}
.y58{bottom:10.478533pt;}
.yaa{bottom:12.574133pt;}
.y44{bottom:12.574267pt;}
.y30{bottom:15.883773pt;}
.yc0{bottom:18.571733pt;}
.y5c{bottom:19.620400pt;}
.y5f{bottom:19.620533pt;}
.y7{bottom:27.133133pt;}
.y43{bottom:40.574267pt;}
.ya9{bottom:43.893733pt;}
.y77{bottom:44.466467pt;}
.y56{bottom:47.240933pt;}
.y6{bottom:52.252480pt;}
.ybf{bottom:56.295200pt;}
.ya8{bottom:75.838933pt;}
.y91{bottom:80.319667pt;}
.ya2{bottom:86.430773pt;}
.ybe{bottom:88.240400pt;}
.y5{bottom:89.659960pt;}
.y2c{bottom:91.809293pt;}
.yb8{bottom:92.331080pt;}
.y2e{bottom:93.268107pt;}
.y26{bottom:97.374560pt;}
.ya7{bottom:107.784133pt;}
.ya1{bottom:113.899280pt;}
.yb7{bottom:124.901907pt;}
.y4{bottom:127.067453pt;}
.y25{bottom:133.257027pt;}
.y42{bottom:136.801600pt;}
.ya6{bottom:140.354933pt;}
.y40{bottom:144.767467pt;}
.y93{bottom:145.802000pt;}
.ya0{bottom:145.844400pt;}
.yb6{bottom:155.020000pt;}
.y24{bottom:157.370533pt;}
.ya4{bottom:160.718933pt;}
.y32{bottom:164.348400pt;}
.y3{bottom:164.474933pt;}
.ybd{bottom:169.234400pt;}
.y3f{bottom:176.712667pt;}
.y9f{bottom:177.789600pt;}
.y59{bottom:182.983733pt;}
.y23{bottom:187.739600pt;}
.yb5{bottom:192.743600pt;}
.y3e{bottom:208.657867pt;}
.y9e{bottom:209.734800pt;}
.y4f{bottom:223.381467pt;}
.y22{bottom:224.480800pt;}
.y83{bottom:226.013867pt;}
.yb4{bottom:230.676667pt;}
.y62{bottom:238.638000pt;}
.y5b{bottom:239.299867pt;}
.y3d{bottom:240.602933pt;}
.y9d{bottom:242.305600pt;}
.y21{bottom:248.594400pt;}
.y4e{bottom:248.660000pt;}
.y1{bottom:251.181867pt;}
.yd2{bottom:255.475200pt;}
.y15{bottom:259.403600pt;}
.yb3{bottom:262.725333pt;}
.y82{bottom:263.486933pt;}
.y10{bottom:264.488133pt;}
.yca{bottom:268.474800pt;}
.y3c{bottom:272.548133pt;}
.ya5{bottom:273.821467pt;}
.y4d{bottom:273.938533pt;}
.y57{bottom:278.598933pt;}
.y20{bottom:278.963333pt;}
.y5e{bottom:278.964133pt;}
.y90{bottom:279.003067pt;}
.y9c{bottom:280.291867pt;}
.y85{bottom:291.372800pt;}
.yb2{bottom:294.670533pt;}
.y71{bottom:296.217600pt;}
.y81{bottom:296.889333pt;}
.yd1{bottom:301.396000pt;}
.y13{bottom:303.006133pt;}
.y4c{bottom:305.883733pt;}
.y75{bottom:306.970400pt;}
.yf{bottom:308.090533pt;}
.y33{bottom:309.974267pt;}
.y3b{bottom:311.160000pt;}
.y9b{bottom:312.237067pt;}
.yc8{bottom:312.580267pt;}
.y55{bottom:312.656400pt;}
.y76{bottom:313.812133pt;}
.y6a{bottom:315.546267pt;}
.y1f{bottom:315.743467pt;}
.y69{bottom:317.496933pt;}
.y70{bottom:317.550933pt;}
.y8f{bottom:318.240533pt;}
.y73{bottom:320.573867pt;}
.yb1{bottom:327.241333pt;}
.y80{bottom:330.291733pt;}
.y74{bottom:330.410400pt;}
.y4b{bottom:337.828933pt;}
.yc7{bottom:337.858800pt;}
.yd0{bottom:340.007867pt;}
.y2b{bottom:341.066667pt;}
.y8e{bottom:342.893467pt;}
.y3a{bottom:343.105200pt;}
.y9a{bottom:344.182267pt;}
.y2{bottom:345.936800pt;}
.y1e{bottom:346.632000pt;}
.ye{bottom:351.773467pt;}
.y72{bottom:359.259067pt;}
.y68{bottom:359.821067pt;}
.y4a{bottom:363.666933pt;}
.y7f{bottom:363.694133pt;}
.yb0{bottom:365.437200pt;}
.y39{bottom:368.383733pt;}
.yc6{bottom:376.470667pt;}
.y99{bottom:376.753067pt;}
.ycf{bottom:378.619733pt;}
.y1d{bottom:382.514400pt;}
.y8d{bottom:387.180133pt;}
.yd{bottom:390.195067pt;}
.y11{bottom:390.410933pt;}
.y87{bottom:391.772533pt;}
.yba{bottom:395.387200pt;}
.y49{bottom:396.256933pt;}
.y7e{bottom:397.096667pt;}
.yaf{bottom:397.172667pt;}
.y38{bottom:400.328933pt;}
.y54{bottom:405.371067pt;}
.y1c{bottom:406.628000pt;}
.yc5{bottom:415.082533pt;}
.y98{bottom:415.364933pt;}
.y6f{bottom:416.034667pt;}
.yce{bottom:417.231600pt;}
.y7d{bottom:424.632400pt;}
.y8c{bottom:424.694000pt;}
.y17{bottom:429.141067pt;}
.yae{bottom:429.327467pt;}
.y66{bottom:431.100400pt;}
.y37{bottom:432.274133pt;}
.yc{bottom:433.740667pt;}
.y48{bottom:434.868800pt;}
.y1b{bottom:436.996933pt;}
.y53{bottom:440.037733pt;}
.yc4{bottom:447.027733pt;}
.y6e{bottom:447.979867pt;}
.y7c{bottom:452.168133pt;}
.y97{bottom:453.976800pt;}
.ycd{bottom:455.843467pt;}
.yb{bottom:459.019067pt;}
.yad{bottom:461.063067pt;}
.y47{bottom:466.814000pt;}
.ybc{bottom:468.090800pt;}
.y29{bottom:468.692400pt;}
.y8b{bottom:469.084267pt;}
.y65{bottom:469.712267pt;}
.y36{bottom:470.885867pt;}
.y1a{bottom:474.257733pt;}
.y52{bottom:474.704400pt;}
.yc3{bottom:478.972933pt;}
.y7b{bottom:479.703867pt;}
.y6d{bottom:479.925067pt;}
.y50{bottom:483.919200pt;}
.y96{bottom:492.588533pt;}
.yac{bottom:493.633867pt;}
.ycc{bottom:496.588533pt;}
.ya{bottom:497.630933pt;}
.y46{bottom:498.759200pt;}
.y51{bottom:502.704400pt;}
.y35{bottom:502.831067pt;}
.y8a{bottom:508.009067pt;}
.y64{bottom:508.324133pt;}
.y19{bottom:509.971733pt;}
.y27{bottom:510.171200pt;}
.yc2{bottom:510.918133pt;}
.y6c{bottom:511.870267pt;}
.y7a{bottom:513.106267pt;}
.y95{bottom:530.574800pt;}
.y45{bottom:530.704400pt;}
.y34{bottom:534.776267pt;}
.yc1{bottom:536.196533pt;}
.y9{bottom:536.242800pt;}
.ycb{bottom:537.867067pt;}
.yab{bottom:538.024000pt;}
.y79{bottom:540.642133pt;}
.y18{bottom:544.994400pt;}
.y63{bottom:546.936000pt;}
.y89{bottom:547.246667pt;}
.y6b{bottom:550.482133pt;}
.y8{bottom:561.521333pt;}
.y94{bottom:563.145600pt;}
.y61{bottom:568.085867pt;}
.y78{bottom:568.177867pt;}
.yc9{bottom:570.010133pt;}
.y88{bottom:571.899467pt;}
.y84{bottom:573.088533pt;}
.y67{bottom:578.818133pt;}
.y41{bottom:584.396533pt;}
.yb9{bottom:597.633467pt;}
.y16{bottom:636.519867pt;}
.y31{bottom:653.653200pt;}
.h16{height:12.679389pt;}
.ha{height:13.346720pt;}
.h18{height:19.303880pt;}
.h2b{height:20.036453pt;}
.h1b{height:22.437272pt;}
.h30{height:24.192707pt;}
.hc{height:25.617573pt;}
.h19{height:26.612080pt;}
.h38{height:26.666667pt;}
.h24{height:29.682293pt;}
.hf{height:31.083333pt;}
.h5{height:31.104167pt;}
.h26{height:33.369787pt;}
.h23{height:33.838547pt;}
.h28{height:34.945312pt;}
.h27{height:34.968750pt;}
.h1d{height:34.992188pt;}
.h3b{height:35.777773pt;}
.h1c{height:39.296875pt;}
.h21{height:41.406253pt;}
.h2f{height:41.433367pt;}
.h31{height:42.739583pt;}
.h1e{height:46.593750pt;}
.h39{height:47.156250pt;}
.h2a{height:48.625000pt;}
.h17{height:48.728642pt;}
.h25{height:50.544271pt;}
.hb{height:51.293286pt;}
.h2c{height:54.027764pt;}
.h10{height:58.320312pt;}
.h41{height:58.945312pt;}
.h2e{height:61.545000pt;}
.h3c{height:61.565117pt;}
.h2d{height:61.586250pt;}
.h3{height:66.052083pt;}
.h4{height:66.096354pt;}
.h11{height:66.485156pt;}
.h14{height:67.197656pt;}
.h12{height:69.271823pt;}
.h1f{height:69.406253pt;}
.h6{height:69.937500pt;}
.h7{height:69.984375pt;}
.h3f{height:71.648375pt;}
.h20{height:71.994522pt;}
.h37{height:72.439900pt;}
.h32{height:72.486775pt;}
.h3a{height:72.486935pt;}
.h40{height:72.486988pt;}
.h33{height:72.487308pt;}
.h13{height:72.710756pt;}
.h15{height:72.710970pt;}
.h8{height:72.941175pt;}
.h9{height:73.443633pt;}
.h29{height:74.408908pt;}
.h3e{height:75.360000pt;}
.h22{height:76.072920pt;}
.h36{height:78.276267pt;}
.hd{height:78.626443pt;}
.h34{height:79.114667pt;}
.h35{height:79.115200pt;}
.h43{height:80.604167pt;}
.h1{height:93.250000pt;}
.h1a{height:93.916965pt;}
.h42{height:117.072387pt;}
.he{height:139.968750pt;}
.h2{height:147.645833pt;}
.h3d{height:169.186933pt;}
.h44{height:194.270833pt;}
.h0{height:720.000000pt;}
.w4{width:12.126911pt;}
.w1{width:12.765168pt;}
.w6{width:19.540760pt;}
.w5{width:19.815333pt;}
.w7{width:59.743333pt;}
.w3{width:62.795200pt;}
.w14{width:69.037760pt;}
.w16{width:77.809893pt;}
.wd{width:88.411453pt;}
.w9{width:98.329427pt;}
.wc{width:99.628907pt;}
.w17{width:101.177733pt;}
.w13{width:104.367253pt;}
.wf{width:109.869787pt;}
.w12{width:131.263707pt;}
.w10{width:134.969333pt;}
.w15{width:141.264267pt;}
.w11{width:153.226400pt;}
.w2{width:157.256133pt;}
.wb{width:189.292400pt;}
.we{width:213.935333pt;}
.w8{width:398.786400pt;}
.w19{width:401.654667pt;}
.w18{width:448.342667pt;}
.wa{width:545.200533pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.911600pt;}
.x26{left:3.351600pt;}
.x3d{left:4.666667pt;}
.x23{left:5.586000pt;}
.x20{left:6.703067pt;}
.x1d{left:10.703867pt;}
.x43{left:21.369867pt;}
.x4c{left:23.294667pt;}
.x4b{left:28.778533pt;}
.x1{left:40.393720pt;}
.x2{left:41.336973pt;}
.x3{left:42.833360pt;}
.x17{left:44.092520pt;}
.x13{left:47.563667pt;}
.x36{left:50.536920pt;}
.x5{left:51.849213pt;}
.x21{left:53.198600pt;}
.xc{left:57.838107pt;}
.x44{left:59.576107pt;}
.x3f{left:66.833373pt;}
.x4f{left:73.690520pt;}
.x4d{left:75.766587pt;}
.x1c{left:80.658933pt;}
.x18{left:82.592467pt;}
.x2f{left:85.571520pt;}
.x6{left:87.849227pt;}
.xd{left:89.504773pt;}
.x46{left:92.909440pt;}
.x3b{left:100.637280pt;}
.x45{left:107.576107pt;}
.x1e{left:117.333440pt;}
.x19{left:118.592467pt;}
.x25{left:134.498267pt;}
.x24{left:144.377200pt;}
.x31{left:149.517333pt;}
.x32{left:151.516800pt;}
.x7{left:156.481600pt;}
.x30{left:162.117200pt;}
.x22{left:165.138933pt;}
.xe{left:185.098133pt;}
.x3e{left:206.720267pt;}
.x2d{left:218.188000pt;}
.x2e{left:226.605067pt;}
.xf{left:233.280933pt;}
.x9{left:285.646933pt;}
.x8{left:317.180800pt;}
.x3c{left:373.965467pt;}
.x2b{left:438.204133pt;}
.x2a{left:442.962667pt;}
.x4{left:447.166667pt;}
.x42{left:464.534000pt;}
.x29{left:473.336933pt;}
.x11{left:491.348800pt;}
.x34{left:494.419333pt;}
.x10{left:496.828000pt;}
.x4a{left:519.296933pt;}
.x39{left:603.336133pt;}
.x38{left:616.070933pt;}
.x49{left:668.883733pt;}
.x28{left:697.289200pt;}
.x41{left:722.444800pt;}
.x1b{left:776.004933pt;}
.x16{left:778.408400pt;}
.x47{left:815.684533pt;}
.x14{left:816.902400pt;}
.x27{left:848.839333pt;}
.x1a{left:864.292133pt;}
.x48{left:871.477467pt;}
.x15{left:886.562533pt;}
.x35{left:889.332400pt;}
.x2c{left:922.403200pt;}
.x40{left:923.858533pt;}
.x33{left:934.790667pt;}
.xb{left:976.284133pt;}
.x4e{left:982.933067pt;}
.x37{left:1040.576667pt;}
.x1f{left:1097.772400pt;}
.x3a{left:1225.804667pt;}
.xa{left:1231.736933pt;}
}




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