
    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_7542720c5691bbfb5f4f1e62.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_d555983708ce07d4d6cfa84f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887695;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_5783035ee05b7526d654a17e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f06cdb9d64645e93d8cfbd91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730957;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_6a3f35e10a8fdf60ff8fbdb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_dc1d3aa5d6720efc8b1c05f6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_abd58da5d9daeb842234119c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f96c78ee29bd2b3f363c74de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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_40e177906bca8670e61e8a16.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ac137502e725fbe507551446.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_bbf45a4cbc1d7c9753cbf242.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_324501ca9549c8b48e9a7e95.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_70d635c410792ff99c8ad722.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_83ed824e9762e086334a5cf9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.722656;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_ee711c0af8f4e0dd31016b81.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls49{letter-spacing:-1.064448px;}
.ls45{letter-spacing:-0.997920px;}
.ls47{letter-spacing:-0.985824px;}
.ls48{letter-spacing:-0.937440px;}
.ls44{letter-spacing:-0.919296px;}
.ls38{letter-spacing:-0.858816px;}
.ls39{letter-spacing:-0.743904px;}
.ls46{letter-spacing:-0.695520px;}
.ls41{letter-spacing:-0.576000px;}
.ls43{letter-spacing:-0.501120px;}
.ls3d{letter-spacing:-0.478080px;}
.ls30{letter-spacing:-0.459648px;}
.ls22{letter-spacing:-0.426240px;}
.ls26{letter-spacing:-0.403200px;}
.ls1a{letter-spacing:-0.399168px;}
.ls1c{letter-spacing:-0.381024px;}
.ls21{letter-spacing:-0.374400px;}
.ls1d{letter-spacing:-0.338688px;}
.ls27{letter-spacing:-0.322560px;}
.ls18{letter-spacing:-0.320544px;}
.ls12{letter-spacing:-0.317376px;}
.ls15{letter-spacing:-0.302400px;}
.ls42{letter-spacing:-0.299520px;}
.ls11{letter-spacing:-0.283968px;}
.ls16{letter-spacing:-0.260064px;}
.ls40{letter-spacing:-0.247680px;}
.ls10{letter-spacing:-0.242208px;}
.ls19{letter-spacing:-0.241920px;}
.ls2b{letter-spacing:-0.198720px;}
.ls28{letter-spacing:-0.178560px;}
.ls33{letter-spacing:-0.169344px;}
.ls29{letter-spacing:-0.161280px;}
.ls14{letter-spacing:-0.158976px;}
.ls1e{letter-spacing:-0.157248px;}
.ls17{letter-spacing:-0.145152px;}
.ls2a{letter-spacing:-0.125856px;}
.ls3e{letter-spacing:-0.120960px;}
.ls1b{letter-spacing:-0.096768px;}
.ls13{letter-spacing:-0.014400px;}
.lsf{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.014400px;}
.ls37{letter-spacing:0.027216px;}
.ls2{letter-spacing:0.140040px;}
.ls1{letter-spacing:0.273480px;}
.ls0{letter-spacing:0.274080px;}
.ls8{letter-spacing:1.512000px;}
.ls9{letter-spacing:1.572480px;}
.ls20{letter-spacing:1.705536px;}
.ls31{letter-spacing:1.814400px;}
.ls23{letter-spacing:2.721600px;}
.ls36{letter-spacing:3.265920px;}
.ls32{letter-spacing:3.749760px;}
.lse{letter-spacing:3.798144px;}
.ls5{letter-spacing:4.638816px;}
.ls6{letter-spacing:4.650912px;}
.ls7{letter-spacing:4.656960px;}
.ls35{letter-spacing:4.959360px;}
.ls3a{letter-spacing:5.140800px;}
.ls4{letter-spacing:6.350400px;}
.ls1f{letter-spacing:6.785856px;}
.lsc{letter-spacing:10.342080px;}
.lsb{letter-spacing:10.378368px;}
.ls3b{letter-spacing:11.249280px;}
.ls2f{letter-spacing:11.309760px;}
.ls3{letter-spacing:11.672640px;}
.ls2c{letter-spacing:12.337920px;}
.lsd{letter-spacing:13.728960px;}
.ls2d{letter-spacing:15.059520px;}
.lsa{letter-spacing:16.148160px;}
.ls2e{letter-spacing:18.385920px;}
.ls25{letter-spacing:47.460960px;}
.ls34{letter-spacing:49.968000px;}
.ls3f{letter-spacing:88.415712px;}
.ls3c{letter-spacing:847.065600px;}
.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;}
}
.ws0{word-spacing:-22.901184px;}
.wse{word-spacing:-20.030400px;}
.ws4{word-spacing:-20.001600px;}
.ws11{word-spacing:-18.414720px;}
.wsf{word-spacing:-18.288864px;}
.ws10{word-spacing:-18.255744px;}
.ws2{word-spacing:-16.813440px;}
.ws6{word-spacing:-16.716672px;}
.ws9{word-spacing:-16.668288px;}
.ws7{word-spacing:-16.656192px;}
.ws5{word-spacing:-16.571520px;}
.ws1{word-spacing:-16.553376px;}
.ws13{word-spacing:-16.511040px;}
.ws12{word-spacing:-16.492896px;}
.ws3{word-spacing:-16.474752px;}
.ws1b{word-spacing:-16.069536px;}
.wsd{word-spacing:-16.012800px;}
.ws1c{word-spacing:-15.954624px;}
.ws16{word-spacing:-15.891840px;}
.ws14{word-spacing:-15.834240px;}
.ws17{word-spacing:-15.765120px;}
.ws19{word-spacing:-15.713280px;}
.wsc{word-spacing:-15.690240px;}
.wsa{word-spacing:-15.638400px;}
.wsb{word-spacing:-15.609600px;}
.ws18{word-spacing:-15.586560px;}
.ws1a{word-spacing:-15.436800px;}
.ws15{word-spacing:-0.066096px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-11.211264px;}
._c{margin-left:-4.496544px;}
._2{margin-left:-2.566080px;}
._0{margin-left:-1.002240px;}
._1{width:1.059840px;}
._4{width:2.540160px;}
._3{width:3.628800px;}
._6{width:4.759776px;}
._5{width:5.806080px;}
._8{width:6.894720px;}
._b{width:8.890560px;}
._9{width:10.342080px;}
._7{width:11.491200px;}
._f{width:12.640320px;}
._d{width:13.970880px;}
._e{width:15.088320px;}
._10{width:18.325440px;}
._17{width:21.470400px;}
._15{width:23.405760px;}
._14{width:24.433920px;}
._13{width:27.095040px;}
._11{width:49.924800px;}
._12{width:51.589440px;}
._a{width:69.552000px;}
._18{width:1200.963456px;}
.fc4{color:rgb(30,35,40);}
.fc3{color:rgb(70,80,90);}
.fc2{color:rgb(35,45,55);}
.fc1{color:rgb(45,60,75);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fs7{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.239280px;}
.y36{bottom:3.900000px;}
.y72{bottom:5.580000px;}
.y80{bottom:5.640000px;}
.y107{bottom:5.700000px;}
.y68{bottom:5.760000px;}
.y114{bottom:5.820000px;}
.yfe{bottom:5.880000px;}
.y84{bottom:5.940000px;}
.y10b{bottom:6.000000px;}
.y6c{bottom:6.060000px;}
.y102{bottom:6.180000px;}
.y88{bottom:6.240000px;}
.y10f{bottom:6.300000px;}
.y70{bottom:6.360000px;}
.y7e{bottom:6.420000px;}
.y7a{bottom:6.480000px;}
.y8b{bottom:6.540000px;}
.y112{bottom:6.600000px;}
.y82{bottom:6.720000px;}
.y109{bottom:6.780000px;}
.y6a{bottom:6.840000px;}
.y116{bottom:6.900000px;}
.y76{bottom:6.960000px;}
.y86{bottom:7.020000px;}
.y10d{bottom:7.080000px;}
.y6e{bottom:7.140000px;}
.y7c{bottom:7.200000px;}
.y104{bottom:7.260000px;}
.y78{bottom:14.400000px;}
.y74{bottom:14.880000px;}
.y35{bottom:18.300000px;}
.y79{bottom:23.040000px;}
.y75{bottom:23.520000px;}
.y34{bottom:33.329603px;}
.y38{bottom:39.426110px;}
.y37{bottom:49.169681px;}
.y33{bottom:109.406160px;}
.y61{bottom:118.050480px;}
.y9a{bottom:120.593520px;}
.y4c{bottom:123.480000px;}
.y32{bottom:126.688320px;}
.y130{bottom:132.832080px;}
.y60{bottom:135.332640px;}
.y99{bottom:137.875680px;}
.y31{bottom:143.970480px;}
.y4b{bottom:144.699840px;}
.y12f{bottom:150.114240px;}
.y5f{bottom:152.614800px;}
.y98{bottom:155.157840px;}
.y5e{bottom:169.896960px;}
.y30{bottom:170.249040px;}
.yfb{bottom:170.638560px;}
.yd8{bottom:171.720000px;}
.y12e{bottom:176.392800px;}
.y97{bottom:180.000000px;}
.y5d{bottom:186.816240px;}
.y2f{bottom:187.531200px;}
.yd7{bottom:188.280000px;}
.y12d{bottom:193.674960px;}
.yfa{bottom:196.191360px;}
.y96{bottom:197.282160px;}
.y2e{bottom:204.813360px;}
.yd6{bottom:209.130480px;}
.y12c{bottom:210.957120px;}
.y5c{bottom:213.094800px;}
.yf9{bottom:213.473520px;}
.y2d{bottom:222.095520px;}
.y95{bottom:223.560720px;}
.y5b{bottom:230.376960px;}
.yf8{bottom:230.755680px;}
.yc3{bottom:232.191360px;}
.y12b{bottom:237.235680px;}
.yee{bottom:242.271360px;}
.y5a{bottom:247.659120px;}
.yf7{bottom:248.037840px;}
.y2c{bottom:248.374080px;}
.yc2{bottom:249.473520px;}
.y94{bottom:249.839280px;}
.y12a{bottom:254.517840px;}
.yed{bottom:259.553520px;}
.y59{bottom:264.941280px;}
.yf6{bottom:265.320000px;}
.y2b{bottom:265.656240px;}
.yc1{bottom:266.755680px;}
.y93{bottom:267.121440px;}
.y129{bottom:271.800000px;}
.yec{bottom:276.835680px;}
.y58{bottom:282.223440px;}
.y2a{bottom:282.938400px;}
.yc0{bottom:284.037840px;}
.y92{bottom:293.400000px;}
.yeb{bottom:294.117840px;}
.y128{bottom:298.440000px;}
.y57{bottom:299.505600px;}
.y29{bottom:299.857680px;}
.ybf{bottom:301.320000px;}
.yf5{bottom:303.120000px;}
.yea{bottom:311.400000px;}
.y56{bottom:316.787760px;}
.y28{bottom:317.139840px;}
.y91{bottom:319.680000px;}
.yf4{bottom:323.994240px;}
.ybe{bottom:327.960000px;}
.y55{bottom:334.069920px;}
.y27{bottom:334.422000px;}
.y127{bottom:345.593520px;}
.ye9{bottom:349.200000px;}
.y54{bottom:351.352080px;}
.y26{bottom:351.704160px;}
.y90{bottom:353.515680px;}
.y126{bottom:362.875680px;}
.ybd{bottom:366.840000px;}
.y53{bottom:368.634240px;}
.ye8{bottom:370.072080px;}
.y8f{bottom:370.797840px;}
.y25{bottom:377.982720px;}
.y125{bottom:380.157840px;}
.y52{bottom:385.553520px;}
.y8e{bottom:388.080000px;}
.y24{bottom:395.264880px;}
.y124{bottom:397.440000px;}
.y51{bottom:402.835680px;}
.y23{bottom:412.547040px;}
.ybc{bottom:413.987040px;}
.y8d{bottom:414.720000px;}
.y50{bottom:420.117840px;}
.y123{bottom:424.080000px;}
.y22{bottom:429.829200px;}
.ybb{bottom:431.269200px;}
.y4f{bottom:437.400000px;}
.y21{bottom:447.111360px;}
.yba{bottom:448.551360px;}
.y8c{bottom:452.160000px;}
.y20{bottom:464.393520px;}
.yb9{bottom:465.833520px;}
.y8a{bottom:466.500000px;}
.y122{bottom:471.222720px;}
.y4e{bottom:475.200000px;}
.y1f{bottom:481.675680px;}
.yb8{bottom:483.115680px;}
.y121{bottom:488.504880px;}
.y89{bottom:492.000000px;}
.y4d{bottom:496.438560px;}
.y1e{bottom:498.594960px;}
.yb7{bottom:500.034960px;}
.yd5{bottom:500.734800px;}
.y120{bottom:505.787040px;}
.y1d{bottom:516.240000px;}
.yb6{bottom:517.680000px;}
.yd4{bottom:518.016960px;}
.y87{bottom:519.000000px;}
.y11f{bottom:523.069200px;}
.yd3{bottom:535.299120px;}
.y11e{bottom:540.351360px;}
.y1c{bottom:542.880000px;}
.yb5{bottom:543.960000px;}
.y85{bottom:544.500000px;}
.yd2{bottom:552.581280px;}
.y11d{bottom:557.633520px;}
.yd1{bottom:569.863440px;}
.y83{bottom:571.500000px;}
.y11c{bottom:574.552800px;}
.yb4{bottom:577.761840px;}
.yd0{bottom:587.145600px;}
.y1b{bottom:590.024160px;}
.y11b{bottom:591.834960px;}
.yb3{bottom:595.044000px;}
.y81{bottom:597.000000px;}
.ycf{bottom:604.427760px;}
.y11a{bottom:609.480000px;}
.y1a{bottom:616.302720px;}
.yb2{bottom:619.523280px;}
.yce{bottom:621.709920px;}
.y7f{bottom:624.000000px;}
.y19{bottom:633.584880px;}
.y119{bottom:636.120000px;}
.yb1{bottom:636.805440px;}
.ycd{bottom:638.992080px;}
.y7d{bottom:649.500000px;}
.y18{bottom:650.867040px;}
.yb0{bottom:654.087600px;}
.ycc{bottom:655.911360px;}
.y17{bottom:667.786320px;}
.yaf{bottom:671.369760px;}
.ycb{bottom:673.193520px;}
.y7b{bottom:675.000000px;}
.y118{bottom:683.277840px;}
.yae{bottom:688.651920px;}
.yca{bottom:690.475680px;}
.y16{bottom:694.064880px;}
.y117{bottom:700.560000px;}
.y77{bottom:702.000000px;}
.yc9{bottom:707.757840px;}
.y15{bottom:711.347040px;}
.yad{bottom:713.494080px;}
.yf3{bottom:721.075680px;}
.yc8{bottom:725.040000px;}
.y14{bottom:728.629200px;}
.yac{bottom:730.776240px;}
.y115{bottom:736.500000px;}
.yf2{bottom:738.357840px;}
.y73{bottom:744.000000px;}
.y13{bottom:745.911360px;}
.yab{bottom:755.255520px;}
.yf1{bottom:755.640000px;}
.yc7{bottom:762.840000px;}
.y12{bottom:763.193520px;}
.y113{bottom:763.500000px;}
.yaa{bottom:780.097680px;}
.yc6{bottom:784.080000px;}
.y71{bottom:787.500000px;}
.y111{bottom:789.000000px;}
.y11{bottom:789.472080px;}
.y4a{bottom:791.987040px;}
.yf0{bottom:793.440000px;}
.ya9{bottom:797.379840px;}
.y10{bottom:806.754240px;}
.y49{bottom:809.269200px;}
.y6f{bottom:813.000000px;}
.yef{bottom:814.321440px;}
.y110{bottom:814.500000px;}
.y13d{bottom:821.503440px;}
.ya8{bottom:822.222000px;}
.ye7{bottom:822.235680px;}
.yf{bottom:824.036400px;}
.y48{bottom:826.551360px;}
.y6d{bottom:838.500000px;}
.y13c{bottom:838.785600px;}
.ya7{bottom:839.504160px;}
.ye6{bottom:839.517840px;}
.ye{bottom:841.318560px;}
.y10e{bottom:841.500000px;}
.y47{bottom:852.467040px;}
.yd{bottom:858.600720px;}
.ya6{bottom:863.983440px;}
.y13b{bottom:865.064160px;}
.y6b{bottom:865.500000px;}
.ye5{bottom:865.796400px;}
.y10c{bottom:867.000000px;}
.y46{bottom:869.749200px;}
.yc{bottom:875.520000px;}
.ya5{bottom:881.265600px;}
.y13a{bottom:882.346320px;}
.ye4{bottom:883.078560px;}
.y45{bottom:887.031360px;}
.y69{bottom:891.000000px;}
.y10a{bottom:894.000000px;}
.ya4{bottom:898.547760px;}
.y139{bottom:899.628480px;}
.ye3{bottom:900.360720px;}
.yb{bottom:902.520000px;}
.y44{bottom:904.313520px;}
.y67{bottom:918.000000px;}
.y108{bottom:919.500000px;}
.y43{bottom:921.595680px;}
.ya3{bottom:923.389920px;}
.y138{bottom:925.907040px;}
.ye2{bottom:926.276400px;}
.y42{bottom:938.877840px;}
.y137{bottom:943.189200px;}
.y106{bottom:946.500000px;}
.ya2{bottom:948.232080px;}
.ye1{bottom:952.554960px;}
.y41{bottom:956.160000px;}
.y66{bottom:956.520000px;}
.y136{bottom:960.471360px;}
.yc5{bottom:962.280000px;}
.ya1{bottom:965.514240px;}
.ya{bottom:965.880000px;}
.ye0{bottom:970.200000px;}
.y105{bottom:972.000000px;}
.ya0{bottom:982.796400px;}
.y40{bottom:982.800000px;}
.yc4{bottom:983.166480px;}
.y9{bottom:984.960000px;}
.y135{bottom:986.387040px;}
.y65{bottom:995.383440px;}
.ydf{bottom:996.840000px;}
.y103{bottom:997.500000px;}
.y9f{bottom:999.715680px;}
.y134{bottom:1003.669200px;}
.y8{bottom:1003.680000px;}
.y9e{bottom:1016.997840px;}
.y133{bottom:1020.951360px;}
.y64{bottom:1021.662000px;}
.y101{bottom:1024.500000px;}
.y7{bottom:1024.920000px;}
.y3f{bottom:1029.947760px;}
.yde{bottom:1034.994960px;}
.y63{bottom:1038.944160px;}
.y9d{bottom:1041.840000px;}
.y3e{bottom:1047.229920px;}
.y100{bottom:1050.000000px;}
.y62{bottom:1056.226320px;}
.ydd{bottom:1061.273520px;}
.y132{bottom:1064.512080px;}
.y6{bottom:1064.530800px;}
.y9c{bottom:1067.040000px;}
.y3d{bottom:1073.508480px;}
.yff{bottom:1077.000000px;}
.ydc{bottom:1078.555680px;}
.y131{bottom:1081.794240px;}
.y5{bottom:1088.647200px;}
.y3c{bottom:1090.790640px;}
.ydb{bottom:1095.474960px;}
.y9b{bottom:1100.512800px;}
.yfd{bottom:1104.000000px;}
.y3b{bottom:1108.072800px;}
.y4{bottom:1112.763600px;}
.yda{bottom:1113.120000px;}
.y3a{bottom:1125.354960px;}
.y3{bottom:1136.880000px;}
.yd9{bottom:1139.760000px;}
.y39{bottom:1142.637120px;}
.yfc{bottom:1143.000000px;}
.y1{bottom:1248.840000px;}
.h9{height:15.876000px;}
.ha{height:15.971985px;}
.hd{height:25.500000px;}
.he{height:27.000000px;}
.h5{height:30.015000px;}
.h7{height:30.276000px;}
.hb{height:34.500000px;}
.h8{height:34.945312px;}
.h11{height:36.692578px;}
.hc{height:41.934375px;}
.hf{height:41.962500px;}
.h10{height:43.500000px;}
.h13{height:44.031094px;}
.h12{height:48.224531px;}
.h6{height:52.417969px;}
.h2{height:52.565625px;}
.h4{height:58.635000px;}
.h3{height:60.804844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:26.688000px;}
.w8{width:97.500000px;}
.w3{width:137.399989px;}
.w7{width:207.000000px;}
.w9{width:208.500000px;}
.w6{width:229.500000px;}
.w2{width:271.464000px;}
.w5{width:453.000000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.750450px;}
.x13{left:8.340000px;}
.x28{left:27.452700px;}
.x26{left:31.415100px;}
.x22{left:35.719800px;}
.x25{left:41.319900px;}
.x27{left:42.520050px;}
.x2a{left:45.282300px;}
.x12{left:88.217250px;}
.x1{left:106.200000px;}
.x3{left:114.226650px;}
.x20{left:116.130300px;}
.x1c{left:118.965600px;}
.x14{left:123.225120px;}
.x16{left:127.534500px;}
.x2{left:131.035050px;}
.x4{left:133.185690px;}
.x1b{left:143.085600px;}
.x15{left:148.732560px;}
.x10{left:201.116100px;}
.xf{left:202.465200px;}
.xd{left:208.831800px;}
.xe{left:262.300800px;}
.x6{left:279.838950px;}
.x29{left:294.000000px;}
.x21{left:295.500000px;}
.x18{left:309.796200px;}
.x19{left:320.094000px;}
.x7{left:334.410600px;}
.x8{left:342.209400px;}
.x5{left:403.706970px;}
.x9{left:409.927650px;}
.x1f{left:427.409280px;}
.xb{left:433.232254px;}
.x23{left:501.000000px;}
.x11{left:558.000000px;}
.x1e{left:611.132400px;}
.x17{left:616.363920px;}
.x1d{left:618.526080px;}
.xa{left:647.042496px;}
.xc{left:701.686080px;}
.x1a{left:786.448800px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls49{letter-spacing:-0.946176pt;}
.ls45{letter-spacing:-0.887040pt;}
.ls47{letter-spacing:-0.876288pt;}
.ls48{letter-spacing:-0.833280pt;}
.ls44{letter-spacing:-0.817152pt;}
.ls38{letter-spacing:-0.763392pt;}
.ls39{letter-spacing:-0.661248pt;}
.ls46{letter-spacing:-0.618240pt;}
.ls41{letter-spacing:-0.512000pt;}
.ls43{letter-spacing:-0.445440pt;}
.ls3d{letter-spacing:-0.424960pt;}
.ls30{letter-spacing:-0.408576pt;}
.ls22{letter-spacing:-0.378880pt;}
.ls26{letter-spacing:-0.358400pt;}
.ls1a{letter-spacing:-0.354816pt;}
.ls1c{letter-spacing:-0.338688pt;}
.ls21{letter-spacing:-0.332800pt;}
.ls1d{letter-spacing:-0.301056pt;}
.ls27{letter-spacing:-0.286720pt;}
.ls18{letter-spacing:-0.284928pt;}
.ls12{letter-spacing:-0.282112pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls42{letter-spacing:-0.266240pt;}
.ls11{letter-spacing:-0.252416pt;}
.ls16{letter-spacing:-0.231168pt;}
.ls40{letter-spacing:-0.220160pt;}
.ls10{letter-spacing:-0.215296pt;}
.ls19{letter-spacing:-0.215040pt;}
.ls2b{letter-spacing:-0.176640pt;}
.ls28{letter-spacing:-0.158720pt;}
.ls33{letter-spacing:-0.150528pt;}
.ls29{letter-spacing:-0.143360pt;}
.ls14{letter-spacing:-0.141312pt;}
.ls1e{letter-spacing:-0.139776pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls2a{letter-spacing:-0.111872pt;}
.ls3e{letter-spacing:-0.107520pt;}
.ls1b{letter-spacing:-0.086016pt;}
.ls13{letter-spacing:-0.012800pt;}
.lsf{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.012800pt;}
.ls37{letter-spacing:0.024192pt;}
.ls2{letter-spacing:0.124480pt;}
.ls1{letter-spacing:0.243093pt;}
.ls0{letter-spacing:0.243627pt;}
.ls8{letter-spacing:1.344000pt;}
.ls9{letter-spacing:1.397760pt;}
.ls20{letter-spacing:1.516032pt;}
.ls31{letter-spacing:1.612800pt;}
.ls23{letter-spacing:2.419200pt;}
.ls36{letter-spacing:2.903040pt;}
.ls32{letter-spacing:3.333120pt;}
.lse{letter-spacing:3.376128pt;}
.ls5{letter-spacing:4.123392pt;}
.ls6{letter-spacing:4.134144pt;}
.ls7{letter-spacing:4.139520pt;}
.ls35{letter-spacing:4.408320pt;}
.ls3a{letter-spacing:4.569600pt;}
.ls4{letter-spacing:5.644800pt;}
.ls1f{letter-spacing:6.031872pt;}
.lsc{letter-spacing:9.192960pt;}
.lsb{letter-spacing:9.225216pt;}
.ls3b{letter-spacing:9.999360pt;}
.ls2f{letter-spacing:10.053120pt;}
.ls3{letter-spacing:10.375680pt;}
.ls2c{letter-spacing:10.967040pt;}
.lsd{letter-spacing:12.203520pt;}
.ls2d{letter-spacing:13.386240pt;}
.lsa{letter-spacing:14.353920pt;}
.ls2e{letter-spacing:16.343040pt;}
.ls25{letter-spacing:42.187520pt;}
.ls34{letter-spacing:44.416000pt;}
.ls3f{letter-spacing:78.591744pt;}
.ls3c{letter-spacing:752.947200pt;}
.ws0{word-spacing:-20.356608pt;}
.wse{word-spacing:-17.804800pt;}
.ws4{word-spacing:-17.779200pt;}
.ws11{word-spacing:-16.368640pt;}
.wsf{word-spacing:-16.256768pt;}
.ws10{word-spacing:-16.227328pt;}
.ws2{word-spacing:-14.945280pt;}
.ws6{word-spacing:-14.859264pt;}
.ws9{word-spacing:-14.816256pt;}
.ws7{word-spacing:-14.805504pt;}
.ws5{word-spacing:-14.730240pt;}
.ws1{word-spacing:-14.714112pt;}
.ws13{word-spacing:-14.676480pt;}
.ws12{word-spacing:-14.660352pt;}
.ws3{word-spacing:-14.644224pt;}
.ws1b{word-spacing:-14.284032pt;}
.wsd{word-spacing:-14.233600pt;}
.ws1c{word-spacing:-14.181888pt;}
.ws16{word-spacing:-14.126080pt;}
.ws14{word-spacing:-14.074880pt;}
.ws17{word-spacing:-14.013440pt;}
.ws19{word-spacing:-13.967360pt;}
.wsc{word-spacing:-13.946880pt;}
.wsa{word-spacing:-13.900800pt;}
.wsb{word-spacing:-13.875200pt;}
.ws18{word-spacing:-13.854720pt;}
.ws1a{word-spacing:-13.721600pt;}
.ws15{word-spacing:-0.058752pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-9.965568pt;}
._c{margin-left:-3.996928pt;}
._2{margin-left:-2.280960pt;}
._0{margin-left:-0.890880pt;}
._1{width:0.942080pt;}
._4{width:2.257920pt;}
._3{width:3.225600pt;}
._6{width:4.230912pt;}
._5{width:5.160960pt;}
._8{width:6.128640pt;}
._b{width:7.902720pt;}
._9{width:9.192960pt;}
._7{width:10.214400pt;}
._f{width:11.235840pt;}
._d{width:12.418560pt;}
._e{width:13.411840pt;}
._10{width:16.289280pt;}
._17{width:19.084800pt;}
._15{width:20.805120pt;}
._14{width:21.719040pt;}
._13{width:24.084480pt;}
._11{width:44.377600pt;}
._12{width:45.857280pt;}
._a{width:61.824000pt;}
._18{width:1067.523072pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fs7{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.879360pt;}
.y36{bottom:3.466667pt;}
.y72{bottom:4.960000pt;}
.y80{bottom:5.013333pt;}
.y107{bottom:5.066667pt;}
.y68{bottom:5.120000pt;}
.y114{bottom:5.173333pt;}
.yfe{bottom:5.226667pt;}
.y84{bottom:5.280000pt;}
.y10b{bottom:5.333333pt;}
.y6c{bottom:5.386667pt;}
.y102{bottom:5.493333pt;}
.y88{bottom:5.546667pt;}
.y10f{bottom:5.600000pt;}
.y70{bottom:5.653333pt;}
.y7e{bottom:5.706667pt;}
.y7a{bottom:5.760000pt;}
.y8b{bottom:5.813333pt;}
.y112{bottom:5.866667pt;}
.y82{bottom:5.973333pt;}
.y109{bottom:6.026667pt;}
.y6a{bottom:6.080000pt;}
.y116{bottom:6.133333pt;}
.y76{bottom:6.186667pt;}
.y86{bottom:6.240000pt;}
.y10d{bottom:6.293333pt;}
.y6e{bottom:6.346667pt;}
.y7c{bottom:6.400000pt;}
.y104{bottom:6.453333pt;}
.y78{bottom:12.800000pt;}
.y74{bottom:13.226667pt;}
.y35{bottom:16.266667pt;}
.y79{bottom:20.480000pt;}
.y75{bottom:20.906667pt;}
.y34{bottom:29.626313pt;}
.y38{bottom:35.045431pt;}
.y37{bottom:43.706383pt;}
.y33{bottom:97.249920pt;}
.y61{bottom:104.933760pt;}
.y9a{bottom:107.194240pt;}
.y4c{bottom:109.760000pt;}
.y32{bottom:112.611840pt;}
.y130{bottom:118.072960pt;}
.y60{bottom:120.295680pt;}
.y99{bottom:122.556160pt;}
.y31{bottom:127.973760pt;}
.y4b{bottom:128.622080pt;}
.y12f{bottom:133.434880pt;}
.y5f{bottom:135.657600pt;}
.y98{bottom:137.918080pt;}
.y5e{bottom:151.019520pt;}
.y30{bottom:151.332480pt;}
.yfb{bottom:151.678720pt;}
.yd8{bottom:152.640000pt;}
.y12e{bottom:156.793600pt;}
.y97{bottom:160.000000pt;}
.y5d{bottom:166.058880pt;}
.y2f{bottom:166.694400pt;}
.yd7{bottom:167.360000pt;}
.y12d{bottom:172.155520pt;}
.yfa{bottom:174.392320pt;}
.y96{bottom:175.361920pt;}
.y2e{bottom:182.056320pt;}
.yd6{bottom:185.893760pt;}
.y12c{bottom:187.517440pt;}
.y5c{bottom:189.417600pt;}
.yf9{bottom:189.754240pt;}
.y2d{bottom:197.418240pt;}
.y95{bottom:198.720640pt;}
.y5b{bottom:204.779520pt;}
.yf8{bottom:205.116160pt;}
.yc3{bottom:206.392320pt;}
.y12b{bottom:210.876160pt;}
.yee{bottom:215.352320pt;}
.y5a{bottom:220.141440pt;}
.yf7{bottom:220.478080pt;}
.y2c{bottom:220.776960pt;}
.yc2{bottom:221.754240pt;}
.y94{bottom:222.079360pt;}
.y12a{bottom:226.238080pt;}
.yed{bottom:230.714240pt;}
.y59{bottom:235.503360pt;}
.yf6{bottom:235.840000pt;}
.y2b{bottom:236.138880pt;}
.yc1{bottom:237.116160pt;}
.y93{bottom:237.441280pt;}
.y129{bottom:241.600000pt;}
.yec{bottom:246.076160pt;}
.y58{bottom:250.865280pt;}
.y2a{bottom:251.500800pt;}
.yc0{bottom:252.478080pt;}
.y92{bottom:260.800000pt;}
.yeb{bottom:261.438080pt;}
.y128{bottom:265.280000pt;}
.y57{bottom:266.227200pt;}
.y29{bottom:266.540160pt;}
.ybf{bottom:267.840000pt;}
.yf5{bottom:269.440000pt;}
.yea{bottom:276.800000pt;}
.y56{bottom:281.589120pt;}
.y28{bottom:281.902080pt;}
.y91{bottom:284.160000pt;}
.yf4{bottom:287.994880pt;}
.ybe{bottom:291.520000pt;}
.y55{bottom:296.951040pt;}
.y27{bottom:297.264000pt;}
.y127{bottom:307.194240pt;}
.ye9{bottom:310.400000pt;}
.y54{bottom:312.312960pt;}
.y26{bottom:312.625920pt;}
.y90{bottom:314.236160pt;}
.y126{bottom:322.556160pt;}
.ybd{bottom:326.080000pt;}
.y53{bottom:327.674880pt;}
.ye8{bottom:328.952960pt;}
.y8f{bottom:329.598080pt;}
.y25{bottom:335.984640pt;}
.y125{bottom:337.918080pt;}
.y52{bottom:342.714240pt;}
.y8e{bottom:344.960000pt;}
.y24{bottom:351.346560pt;}
.y124{bottom:353.280000pt;}
.y51{bottom:358.076160pt;}
.y23{bottom:366.708480pt;}
.ybc{bottom:367.988480pt;}
.y8d{bottom:368.640000pt;}
.y50{bottom:373.438080pt;}
.y123{bottom:376.960000pt;}
.y22{bottom:382.070400pt;}
.ybb{bottom:383.350400pt;}
.y4f{bottom:388.800000pt;}
.y21{bottom:397.432320pt;}
.yba{bottom:398.712320pt;}
.y8c{bottom:401.920000pt;}
.y20{bottom:412.794240pt;}
.yb9{bottom:414.074240pt;}
.y8a{bottom:414.666667pt;}
.y122{bottom:418.864640pt;}
.y4e{bottom:422.400000pt;}
.y1f{bottom:428.156160pt;}
.yb8{bottom:429.436160pt;}
.y121{bottom:434.226560pt;}
.y89{bottom:437.333333pt;}
.y4d{bottom:441.278720pt;}
.y1e{bottom:443.195520pt;}
.yb7{bottom:444.475520pt;}
.yd5{bottom:445.097600pt;}
.y120{bottom:449.588480pt;}
.y1d{bottom:458.880000pt;}
.yb6{bottom:460.160000pt;}
.yd4{bottom:460.459520pt;}
.y87{bottom:461.333333pt;}
.y11f{bottom:464.950400pt;}
.yd3{bottom:475.821440pt;}
.y11e{bottom:480.312320pt;}
.y1c{bottom:482.560000pt;}
.yb5{bottom:483.520000pt;}
.y85{bottom:484.000000pt;}
.yd2{bottom:491.183360pt;}
.y11d{bottom:495.674240pt;}
.yd1{bottom:506.545280pt;}
.y83{bottom:508.000000pt;}
.y11c{bottom:510.713600pt;}
.yb4{bottom:513.566080pt;}
.yd0{bottom:521.907200pt;}
.y1b{bottom:524.465920pt;}
.y11b{bottom:526.075520pt;}
.yb3{bottom:528.928000pt;}
.y81{bottom:530.666667pt;}
.ycf{bottom:537.269120pt;}
.y11a{bottom:541.760000pt;}
.y1a{bottom:547.824640pt;}
.yb2{bottom:550.687360pt;}
.yce{bottom:552.631040pt;}
.y7f{bottom:554.666667pt;}
.y19{bottom:563.186560pt;}
.y119{bottom:565.440000pt;}
.yb1{bottom:566.049280pt;}
.ycd{bottom:567.992960pt;}
.y7d{bottom:577.333333pt;}
.y18{bottom:578.548480pt;}
.yb0{bottom:581.411200pt;}
.ycc{bottom:583.032320pt;}
.y17{bottom:593.587840pt;}
.yaf{bottom:596.773120pt;}
.ycb{bottom:598.394240pt;}
.y7b{bottom:600.000000pt;}
.y118{bottom:607.358080pt;}
.yae{bottom:612.135040pt;}
.yca{bottom:613.756160pt;}
.y16{bottom:616.946560pt;}
.y117{bottom:622.720000pt;}
.y77{bottom:624.000000pt;}
.yc9{bottom:629.118080pt;}
.y15{bottom:632.308480pt;}
.yad{bottom:634.216960pt;}
.yf3{bottom:640.956160pt;}
.yc8{bottom:644.480000pt;}
.y14{bottom:647.670400pt;}
.yac{bottom:649.578880pt;}
.y115{bottom:654.666667pt;}
.yf2{bottom:656.318080pt;}
.y73{bottom:661.333333pt;}
.y13{bottom:663.032320pt;}
.yab{bottom:671.338240pt;}
.yf1{bottom:671.680000pt;}
.yc7{bottom:678.080000pt;}
.y12{bottom:678.394240pt;}
.y113{bottom:678.666667pt;}
.yaa{bottom:693.420160pt;}
.yc6{bottom:696.960000pt;}
.y71{bottom:700.000000pt;}
.y111{bottom:701.333333pt;}
.y11{bottom:701.752960pt;}
.y4a{bottom:703.988480pt;}
.yf0{bottom:705.280000pt;}
.ya9{bottom:708.782080pt;}
.y10{bottom:717.114880pt;}
.y49{bottom:719.350400pt;}
.y6f{bottom:722.666667pt;}
.yef{bottom:723.841280pt;}
.y110{bottom:724.000000pt;}
.y13d{bottom:730.225280pt;}
.ya8{bottom:730.864000pt;}
.ye7{bottom:730.876160pt;}
.yf{bottom:732.476800pt;}
.y48{bottom:734.712320pt;}
.y6d{bottom:745.333333pt;}
.y13c{bottom:745.587200pt;}
.ya7{bottom:746.225920pt;}
.ye6{bottom:746.238080pt;}
.ye{bottom:747.838720pt;}
.y10e{bottom:748.000000pt;}
.y47{bottom:757.748480pt;}
.yd{bottom:763.200640pt;}
.ya6{bottom:767.985280pt;}
.y13b{bottom:768.945920pt;}
.y6b{bottom:769.333333pt;}
.ye5{bottom:769.596800pt;}
.y10c{bottom:770.666667pt;}
.y46{bottom:773.110400pt;}
.yc{bottom:778.240000pt;}
.ya5{bottom:783.347200pt;}
.y13a{bottom:784.307840pt;}
.ye4{bottom:784.958720pt;}
.y45{bottom:788.472320pt;}
.y69{bottom:792.000000pt;}
.y10a{bottom:794.666667pt;}
.ya4{bottom:798.709120pt;}
.y139{bottom:799.669760pt;}
.ye3{bottom:800.320640pt;}
.yb{bottom:802.240000pt;}
.y44{bottom:803.834240pt;}
.y67{bottom:816.000000pt;}
.y108{bottom:817.333333pt;}
.y43{bottom:819.196160pt;}
.ya3{bottom:820.791040pt;}
.y138{bottom:823.028480pt;}
.ye2{bottom:823.356800pt;}
.y42{bottom:834.558080pt;}
.y137{bottom:838.390400pt;}
.y106{bottom:841.333333pt;}
.ya2{bottom:842.872960pt;}
.ye1{bottom:846.715520pt;}
.y41{bottom:849.920000pt;}
.y66{bottom:850.240000pt;}
.y136{bottom:853.752320pt;}
.yc5{bottom:855.360000pt;}
.ya1{bottom:858.234880pt;}
.ya{bottom:858.560000pt;}
.ye0{bottom:862.400000pt;}
.y105{bottom:864.000000pt;}
.ya0{bottom:873.596800pt;}
.y40{bottom:873.600000pt;}
.yc4{bottom:873.925760pt;}
.y9{bottom:875.520000pt;}
.y135{bottom:876.788480pt;}
.y65{bottom:884.785280pt;}
.ydf{bottom:886.080000pt;}
.y103{bottom:886.666667pt;}
.y9f{bottom:888.636160pt;}
.y134{bottom:892.150400pt;}
.y8{bottom:892.160000pt;}
.y9e{bottom:903.998080pt;}
.y133{bottom:907.512320pt;}
.y64{bottom:908.144000pt;}
.y101{bottom:910.666667pt;}
.y7{bottom:911.040000pt;}
.y3f{bottom:915.509120pt;}
.yde{bottom:919.995520pt;}
.y63{bottom:923.505920pt;}
.y9d{bottom:926.080000pt;}
.y3e{bottom:930.871040pt;}
.y100{bottom:933.333333pt;}
.y62{bottom:938.867840pt;}
.ydd{bottom:943.354240pt;}
.y132{bottom:946.232960pt;}
.y6{bottom:946.249600pt;}
.y9c{bottom:948.480000pt;}
.y3d{bottom:954.229760pt;}
.yff{bottom:957.333333pt;}
.ydc{bottom:958.716160pt;}
.y131{bottom:961.594880pt;}
.y5{bottom:967.686400pt;}
.y3c{bottom:969.591680pt;}
.ydb{bottom:973.755520pt;}
.y9b{bottom:978.233600pt;}
.yfd{bottom:981.333333pt;}
.y3b{bottom:984.953600pt;}
.y4{bottom:989.123200pt;}
.yda{bottom:989.440000pt;}
.y3a{bottom:1000.315520pt;}
.y3{bottom:1010.560000pt;}
.yd9{bottom:1013.120000pt;}
.y39{bottom:1015.677440pt;}
.yfc{bottom:1016.000000pt;}
.y1{bottom:1110.080000pt;}
.h9{height:14.112000pt;}
.ha{height:14.197320pt;}
.hd{height:22.666667pt;}
.he{height:24.000000pt;}
.h5{height:26.680000pt;}
.h7{height:26.912000pt;}
.hb{height:30.666667pt;}
.h8{height:31.062500pt;}
.h11{height:32.615625pt;}
.hc{height:37.275000pt;}
.hf{height:37.300000pt;}
.h10{height:38.666667pt;}
.h13{height:39.138750pt;}
.h12{height:42.866250pt;}
.h6{height:46.593750pt;}
.h2{height:46.725000pt;}
.h4{height:52.120000pt;}
.h3{height:54.048750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:23.722667pt;}
.w8{width:86.666667pt;}
.w3{width:122.133324pt;}
.w7{width:184.000000pt;}
.w9{width:185.333333pt;}
.w6{width:204.000000pt;}
.w2{width:241.301333pt;}
.w5{width:402.666667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.000400pt;}
.x13{left:7.413333pt;}
.x28{left:24.402400pt;}
.x26{left:27.924533pt;}
.x22{left:31.750933pt;}
.x25{left:36.728800pt;}
.x27{left:37.795600pt;}
.x2a{left:40.250933pt;}
.x12{left:78.415333pt;}
.x1{left:94.400000pt;}
.x3{left:101.534800pt;}
.x20{left:103.226933pt;}
.x1c{left:105.747200pt;}
.x14{left:109.533440pt;}
.x16{left:113.364000pt;}
.x2{left:116.475600pt;}
.x4{left:118.387280pt;}
.x1b{left:127.187200pt;}
.x15{left:132.206720pt;}
.x10{left:178.769867pt;}
.xf{left:179.969067pt;}
.xd{left:185.628267pt;}
.xe{left:233.156267pt;}
.x6{left:248.745733pt;}
.x29{left:261.333333pt;}
.x21{left:262.666667pt;}
.x18{left:275.374400pt;}
.x19{left:284.528000pt;}
.x7{left:297.253867pt;}
.x8{left:304.186133pt;}
.x5{left:358.850640pt;}
.x9{left:364.380133pt;}
.x1f{left:379.919360pt;}
.xb{left:385.095337pt;}
.x23{left:445.333333pt;}
.x11{left:496.000000pt;}
.x1e{left:543.228800pt;}
.x17{left:547.879040pt;}
.x1d{left:549.800960pt;}
.xa{left:575.148885pt;}
.xc{left:623.720960pt;}
.x1a{left:699.065600pt;}
}




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