
    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_20082871d8e8bb65d500a815.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2b97ec00a1ba53a16208d92d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ec647bce167d20e4a4a4eab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_02c8008a8adbcd7061876b9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_16757239da31b1af286cf9df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.407227;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_4757f5cde48fac65ce177e2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_c78d6b2081874563ff74f13e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.352051;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_c7281334a4373dd601e12213.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.801000;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_0822e464458fcce9938a1bcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.864258;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_9bf6164803cac42242744e24.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.352051;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_c912bb8fde4420d5831af267.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.407227;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5e0fd1fd4f98cddfd0a1243f.woff2')format("woff");}.fff{font-family:fff;line-height:0.864258;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_cb339fd4bc824f03bd9ba613.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.095703;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_eeee1ec407f66ccfdb457de4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:27.360000px;}
.ls18{letter-spacing:-0.726000px;}
.ls10{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.274200px;}
.ls11{letter-spacing:-0.240600px;}
.ls2a{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.136800px;}
.lsd{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.065400px;}
.ls25{letter-spacing:-0.008348px;}
.lsf{letter-spacing:-0.007920px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.025920px;}
.ls1f{letter-spacing:0.030240px;}
.ls1c{letter-spacing:0.066240px;}
.ls21{letter-spacing:0.072720px;}
.ls26{letter-spacing:0.141000px;}
.ls6{letter-spacing:0.169920px;}
.ls29{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.189360px;}
.ls1b{letter-spacing:0.189600px;}
.ls17{letter-spacing:0.198000px;}
.ls15{letter-spacing:0.239040px;}
.ls27{letter-spacing:0.260400px;}
.ls1e{letter-spacing:0.298200px;}
.lsb{letter-spacing:0.331800px;}
.ls8{letter-spacing:0.331920px;}
.lsc{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.437040px;}
.ls1d{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.714000px;}
.ls0{letter-spacing:0.828000px;}
.ls3{letter-spacing:9.360000px;}
.ls24{letter-spacing:13.626720px;}
.ls7{letter-spacing:37.386720px;}
.ls14{letter-spacing:40.266720px;}
.ls4{letter-spacing:41.868000px;}
.ls16{letter-spacing:46.026720px;}
.ls22{letter-spacing:64.026720px;}
.ls28{letter-spacing:64.170720px;}
.ls2{letter-spacing:958.620000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-59.760000px;}
.ws9{word-spacing:-54.000000px;}
.ws1e{word-spacing:-48.240000px;}
.ws6{word-spacing:-47.718720px;}
.ws5{word-spacing:-47.692800px;}
.ws1b{word-spacing:-45.354198px;}
.ws14{word-spacing:-43.266240px;}
.ws8{word-spacing:-43.027200px;}
.ws19{word-spacing:-42.961800px;}
.ws15{word-spacing:-42.753000px;}
.wsd{word-spacing:-34.732800px;}
.wsf{word-spacing:-34.596000px;}
.wse{word-spacing:-34.492200px;}
.ws4{word-spacing:-30.067200px;}
.ws1a{word-spacing:-18.704280px;}
.ws18{word-spacing:-18.436320px;}
.ws12{word-spacing:-16.691760px;}
.ws1d{word-spacing:-16.634640px;}
.ws16{word-spacing:-16.563840px;}
.ws1c{word-spacing:-16.515240px;}
.ws13{word-spacing:-16.374240px;}
.ws0{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199920px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.857920px;}
.wsa{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws11{word-spacing:0.000000px;}
._7{margin-left:-35.568000px;}
._f{margin-left:-20.568960px;}
._d{margin-left:-19.069920px;}
._1e{margin-left:-17.815920px;}
._17{margin-left:-15.726240px;}
._28{margin-left:-12.293520px;}
._23{margin-left:-10.974960px;}
._10{margin-left:-8.977680px;}
._9{margin-left:-6.432480px;}
._11{margin-left:-4.926240px;}
._5{margin-left:-3.240000px;}
._13{margin-left:-2.162880px;}
._4{margin-left:-1.122480px;}
._1{width:1.135440px;}
._6{width:2.880000px;}
._b{width:4.562640px;}
._a{width:5.696640px;}
._c{width:6.718800px;}
._12{width:8.327760px;}
._14{width:10.218960px;}
._15{width:11.892240px;}
._16{width:13.117200px;}
._20{width:14.521680px;}
._18{width:15.774480px;}
._1a{width:16.958880px;}
._29{width:17.959680px;}
._1b{width:18.966240px;}
._e{width:20.079360px;}
._1f{width:21.370320px;}
._1d{width:22.995360px;}
._1c{width:24.561360px;}
._24{width:25.696800px;}
._27{width:26.742960px;}
._26{width:27.756720px;}
._21{width:29.674080px;}
._22{width:30.726720px;}
._25{width:31.759200px;}
._8{width:35.208000px;}
._2a{width:48.626400px;}
._2d{width:50.179680px;}
._19{width:87.804000px;}
._2f{width:120.853440px;}
._2e{width:122.310000px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._2b{width:423.638640px;}
._2c{width:1051.417440px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y46{bottom:2.556000px;}
.y39{bottom:2.880000px;}
.yfe{bottom:3.060000px;}
.y37{bottom:3.600000px;}
.y17{bottom:3.780000px;}
.y18{bottom:5.940000px;}
.y33{bottom:6.120000px;}
.y7{bottom:9.396000px;}
.y44{bottom:9.576000px;}
.yc{bottom:14.040000px;}
.yd3{bottom:16.200000px;}
.y103{bottom:16.374000px;}
.y8{bottom:16.776000px;}
.y45{bottom:16.956000px;}
.yfd{bottom:18.900000px;}
.y31{bottom:19.260000px;}
.y102{bottom:30.054000px;}
.yd2{bottom:30.060000px;}
.y36{bottom:34.920000px;}
.ya{bottom:35.460000px;}
.y30{bottom:35.640000px;}
.yfc{bottom:36.000000px;}
.y47{bottom:41.400000px;}
.y101{bottom:43.914000px;}
.yd1{bottom:43.920000px;}
.y35{bottom:50.760000px;}
.y2f{bottom:51.300000px;}
.y28{bottom:52.785000px;}
.yfb{bottom:53.280000px;}
.y100{bottom:57.594000px;}
.yd0{bottom:57.600000px;}
.y6{bottom:58.140000px;}
.y43{bottom:64.080000px;}
.y2e{bottom:66.780000px;}
.yfa{bottom:70.560000px;}
.y27{bottom:72.765000px;}
.y2d{bottom:82.260000px;}
.yf9{bottom:87.840000px;}
.y26{bottom:92.745000px;}
.y2c{bottom:97.770000px;}
.yf8{bottom:105.165000px;}
.y38{bottom:106.245000px;}
.y25{bottom:112.725000px;}
.y2b{bottom:113.430000px;}
.y42{bottom:113.436000px;}
.ya7{bottom:122.796000px;}
.y75{bottom:126.756000px;}
.y2a{bottom:128.910000px;}
.y9f{bottom:130.896000px;}
.y41{bottom:131.256000px;}
.y24{bottom:132.705000px;}
.ycc{bottom:134.496000px;}
.yf6{bottom:135.936000px;}
.ya6{bottom:145.656000px;}
.y74{bottom:146.736000px;}
.yff{bottom:147.276000px;}
.y40{bottom:149.256000px;}
.y9e{bottom:150.870000px;}
.y23{bottom:152.685000px;}
.ycb{bottom:157.530000px;}
.y73{bottom:166.710000px;}
.y3f{bottom:167.250000px;}
.ya5{bottom:168.690000px;}
.y9d{bottom:170.850000px;}
.y22{bottom:172.485000px;}
.yca{bottom:180.390000px;}
.y3e{bottom:185.250000px;}
.y72{bottom:186.510000px;}
.y9c{bottom:190.830000px;}
.ya4{bottom:191.550000px;}
.y21{bottom:192.465000px;}
.y3d{bottom:203.070000px;}
.yc9{bottom:203.430000px;}
.y71{bottom:206.490000px;}
.y9b{bottom:210.810000px;}
.y20{bottom:212.445000px;}
.ya3{bottom:214.410000px;}
.yf7{bottom:216.930000px;}
.y3c{bottom:221.070000px;}
.yc8{bottom:226.290000px;}
.y70{bottom:226.470000px;}
.y9a{bottom:230.790000px;}
.y1f{bottom:232.425000px;}
.ya2{bottom:237.450000px;}
.y3b{bottom:239.430000px;}
.y6f{bottom:246.450000px;}
.yc7{bottom:249.330000px;}
.y99{bottom:250.590000px;}
.y1e{bottom:252.405000px;}
.y3a{bottom:258.510000px;}
.ya1{bottom:260.310000px;}
.y6e{bottom:266.430000px;}
.y98{bottom:270.570000px;}
.y19{bottom:271.830000px;}
.yc6{bottom:272.190000px;}
.y1d{bottom:272.385000px;}
.ya0{bottom:283.350000px;}
.y6d{bottom:286.410000px;}
.y97{bottom:290.550000px;}
.y1c{bottom:292.185000px;}
.yc5{bottom:295.230000px;}
.y6c{bottom:306.210000px;}
.y96{bottom:310.530000px;}
.y1b{bottom:312.195000px;}
.yc4{bottom:318.135000px;}
.y6b{bottom:326.235000px;}
.y95{bottom:330.555000px;}
.y1a{bottom:331.815000px;}
.yc3{bottom:341.175000px;}
.yf5{bottom:343.515000px;}
.y6a{bottom:346.215000px;}
.y94{bottom:350.535000px;}
.yf4{bottom:357.375000px;}
.yc2{bottom:364.035000px;}
.y69{bottom:366.195000px;}
.y93{bottom:370.335000px;}
.yf3{bottom:371.235000px;}
.yf2{bottom:384.915000px;}
.y68{bottom:386.175000px;}
.yc1{bottom:386.895000px;}
.y92{bottom:390.315000px;}
.y34{bottom:391.395000px;}
.yf1{bottom:398.775000px;}
.y67{bottom:406.155000px;}
.yc0{bottom:409.935000px;}
.y91{bottom:410.295000px;}
.yf0{bottom:412.635000px;}
.y66{bottom:426.135000px;}
.yef{bottom:426.315000px;}
.y90{bottom:430.275000px;}
.ybf{bottom:432.795000px;}
.yee{bottom:440.175000px;}
.y65{bottom:445.935000px;}
.y8f{bottom:450.255000px;}
.yed{bottom:454.035000px;}
.y32{bottom:455.835000px;}
.y64{bottom:465.915000px;}
.yec{bottom:467.715000px;}
.y8e{bottom:470.235000px;}
.y29{bottom:476.715000px;}
.ybe{bottom:478.695000px;}
.yeb{bottom:481.575000px;}
.y63{bottom:485.895000px;}
.y8d{bottom:490.035000px;}
.yea{bottom:495.435000px;}
.ybd{bottom:501.735000px;}
.y62{bottom:505.875000px;}
.ye9{bottom:509.115000px;}
.y8c{bottom:510.015000px;}
.ye8{bottom:522.975000px;}
.ybc{bottom:524.595000px;}
.y61{bottom:525.855000px;}
.y8b{bottom:529.995000px;}
.ye7{bottom:536.835000px;}
.y60{bottom:545.835000px;}
.ybb{bottom:547.635000px;}
.y8a{bottom:549.975000px;}
.ye6{bottom:550.515000px;}
.ye5{bottom:564.375000px;}
.y5f{bottom:565.635000px;}
.y89{bottom:569.985000px;}
.yba{bottom:570.525000px;}
.ye4{bottom:578.265000px;}
.y5e{bottom:585.645000px;}
.y88{bottom:589.965000px;}
.ye3{bottom:591.945000px;}
.yb9{bottom:593.565000px;}
.y5d{bottom:605.625000px;}
.ye2{bottom:605.805000px;}
.y87{bottom:609.765000px;}
.yb8{bottom:616.425000px;}
.y16{bottom:618.945000px;}
.ye1{bottom:619.665000px;}
.y5c{bottom:625.605000px;}
.y86{bottom:629.745000px;}
.ye0{bottom:633.345000px;}
.yb7{bottom:639.465000px;}
.y5b{bottom:645.585000px;}
.ydf{bottom:647.205000px;}
.y85{bottom:649.725000px;}
.y15{bottom:656.385000px;}
.yde{bottom:661.065000px;}
.yb6{bottom:662.325000px;}
.y5a{bottom:665.565000px;}
.y84{bottom:669.705000px;}
.ydd{bottom:674.745000px;}
.y14{bottom:676.905000px;}
.yb5{bottom:685.185000px;}
.y59{bottom:685.365000px;}
.ydc{bottom:688.605000px;}
.y83{bottom:689.685000px;}
.ydb{bottom:702.465000px;}
.y58{bottom:705.345000px;}
.yb4{bottom:708.225000px;}
.y82{bottom:709.665000px;}
.y13{bottom:713.085000px;}
.yda{bottom:716.145000px;}
.y57{bottom:725.325000px;}
.y81{bottom:729.645000px;}
.yd9{bottom:730.005000px;}
.yb3{bottom:731.085000px;}
.y12{bottom:735.045000px;}
.yd8{bottom:743.865000px;}
.y56{bottom:745.305000px;}
.y80{bottom:749.445000px;}
.y11{bottom:750.525000px;}
.yb2{bottom:753.405000px;}
.yd7{bottom:757.545000px;}
.y55{bottom:765.285000px;}
.y7f{bottom:769.425000px;}
.yd6{bottom:771.405000px;}
.yb1{bottom:772.125000px;}
.y10{bottom:775.725000px;}
.y54{bottom:785.265000px;}
.y7e{bottom:789.405000px;}
.yb0{bottom:795.165000px;}
.yd5{bottom:798.945000px;}
.y53{bottom:805.065000px;}
.yf{bottom:807.765000px;}
.y7d{bottom:809.385000px;}
.yd4{bottom:812.805000px;}
.yaf{bottom:818.025000px;}
.ycf{bottom:824.910000px;}
.y52{bottom:825.090000px;}
.y7c{bottom:829.410000px;}
.yae{bottom:841.110000px;}
.ye{bottom:842.730000px;}
.y51{bottom:845.070000px;}
.y7b{bottom:849.390000px;}
.yad{bottom:863.970000px;}
.y50{bottom:865.050000px;}
.y7a{bottom:869.190000px;}
.yd{bottom:871.710000px;}
.y4f{bottom:885.030000px;}
.yb{bottom:887.010000px;}
.y79{bottom:889.170000px;}
.yce{bottom:894.570000px;}
.y4e{bottom:905.010000px;}
.y78{bottom:909.150000px;}
.yac{bottom:909.870000px;}
.ycd{bottom:912.930000px;}
.y4d{bottom:924.990000px;}
.y77{bottom:929.130000px;}
.yab{bottom:932.910000px;}
.y4c{bottom:944.790000px;}
.y76{bottom:948.930000px;}
.yaa{bottom:955.770000px;}
.y4b{bottom:964.770000px;}
.ya9{bottom:978.810000px;}
.y4a{bottom:984.750000px;}
.ya8{bottom:1001.670000px;}
.y49{bottom:1004.730000px;}
.y48{bottom:1024.710000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h22{height:13.860000px;}
.h11{height:19.980000px;}
.h4{height:29.736000px;}
.h25{height:33.683203px;}
.h23{height:34.036523px;}
.h1a{height:37.705078px;}
.h1d{height:38.100586px;}
.h7{height:39.336328px;}
.h17{height:39.999023px;}
.h5{height:41.726953px;}
.h13{height:42.164648px;}
.h1b{height:43.254000px;}
.h1f{height:44.236406px;}
.h18{height:44.265586px;}
.he{height:45.063281px;}
.h9{height:46.251562px;}
.h15{height:46.458984px;}
.h1e{height:47.867760px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.h20{height:51.414609px;}
.h6{height:52.055859px;}
.ha{height:53.755312px;}
.h10{height:58.271484px;}
.h1{height:58.429688px;}
.h19{height:63.720000px;}
.h12{height:64.487109px;}
.h21{height:67.974702px;}
.h24{height:68.940000px;}
.hf{height:75.410156px;}
.hb{height:76.201172px;}
.hd{height:79.415859px;}
.hc{height:116.542969px;}
.h1c{height:118.836000px;}
.h26{height:119.196000px;}
.h16{height:141.516000px;}
.h8{height:153.900000px;}
.h14{height:346.395000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:201.270000px;}
.w7{width:329.295000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.660000px;}
.x5{left:8.640000px;}
.x32{left:12.420000px;}
.x16{left:18.045000px;}
.x12{left:20.205000px;}
.x14{left:24.705000px;}
.x15{left:26.505000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1a{left:57.059986px;}
.x31{left:58.680000px;}
.x3{left:60.659986px;}
.x17{left:65.519986px;}
.x30{left:80.130000px;}
.x1b{left:84.059986px;}
.x2f{left:85.140000px;}
.x2e{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xf{left:190.289986px;}
.xb{left:202.709986px;}
.xe{left:209.009986px;}
.x2{left:220.709986px;}
.xd{left:325.694986px;}
.xa{left:459.074986px;}
.xc{left:464.294986px;}
.x10{left:465.374986px;}
.x1c{left:475.634986px;}
.x18{left:478.334986px;}
.x1f{left:502.664986px;}
.x19{left:505.364986px;}
.x29{left:532.004986px;}
.x2d{left:534.524986px;}
.x2a{left:558.284986px;}
.x24{left:569.084986px;}
.x28{left:571.964986px;}
.x22{left:592.484986px;}
.x20{left:595.364986px;}
.x1d{left:609.044986px;}
.x2c{left:611.024986px;}
.x26{left:633.164986px;}
.x11{left:661.245000px;}
.x1e{left:684.149986px;}
.x21{left:691.169986px;}
.x2b{left:744.809986px;}
.x25{left:804.029986px;}
.x9{left:812.490000px;}
.x23{left:831.389986px;}
.x27{left:860.909986px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls18{letter-spacing:-0.645333pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.243733pt;}
.ls11{letter-spacing:-0.213867pt;}
.ls2a{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.121600pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.058133pt;}
.ls25{letter-spacing:-0.007421pt;}
.lsf{letter-spacing:-0.007040pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.023040pt;}
.ls1f{letter-spacing:0.026880pt;}
.ls1c{letter-spacing:0.058880pt;}
.ls21{letter-spacing:0.064640pt;}
.ls26{letter-spacing:0.125333pt;}
.ls6{letter-spacing:0.151040pt;}
.ls29{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.168320pt;}
.ls1b{letter-spacing:0.168533pt;}
.ls17{letter-spacing:0.176000pt;}
.ls15{letter-spacing:0.212480pt;}
.ls27{letter-spacing:0.231467pt;}
.ls1e{letter-spacing:0.265067pt;}
.lsb{letter-spacing:0.294933pt;}
.ls8{letter-spacing:0.295040pt;}
.lsc{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.388480pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.634667pt;}
.ls0{letter-spacing:0.736000pt;}
.ls3{letter-spacing:8.320000pt;}
.ls24{letter-spacing:12.112640pt;}
.ls7{letter-spacing:33.232640pt;}
.ls14{letter-spacing:35.792640pt;}
.ls4{letter-spacing:37.216000pt;}
.ls16{letter-spacing:40.912640pt;}
.ls22{letter-spacing:56.912640pt;}
.ls28{letter-spacing:57.040640pt;}
.ls2{letter-spacing:852.106667pt;}
.ws17{word-spacing:-53.120000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws1e{word-spacing:-42.880000pt;}
.ws6{word-spacing:-42.416640pt;}
.ws5{word-spacing:-42.393600pt;}
.ws1b{word-spacing:-40.314842pt;}
.ws14{word-spacing:-38.458880pt;}
.ws8{word-spacing:-38.246400pt;}
.ws19{word-spacing:-38.188267pt;}
.ws15{word-spacing:-38.002667pt;}
.wsd{word-spacing:-30.873600pt;}
.wsf{word-spacing:-30.752000pt;}
.wse{word-spacing:-30.659733pt;}
.ws4{word-spacing:-26.726400pt;}
.ws1a{word-spacing:-16.626027pt;}
.ws18{word-spacing:-16.387840pt;}
.ws12{word-spacing:-14.837120pt;}
.ws1d{word-spacing:-14.786347pt;}
.ws16{word-spacing:-14.723413pt;}
.ws1c{word-spacing:-14.680213pt;}
.ws13{word-spacing:-14.554880pt;}
.ws0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.511040pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.207040pt;}
.wsa{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws11{word-spacing:0.000000pt;}
._7{margin-left:-31.616000pt;}
._f{margin-left:-18.283520pt;}
._d{margin-left:-16.951040pt;}
._1e{margin-left:-15.836373pt;}
._17{margin-left:-13.978880pt;}
._28{margin-left:-10.927573pt;}
._23{margin-left:-9.755520pt;}
._10{margin-left:-7.980160pt;}
._9{margin-left:-5.717760pt;}
._11{margin-left:-4.378880pt;}
._5{margin-left:-2.880000pt;}
._13{margin-left:-1.922560pt;}
._4{margin-left:-0.997760pt;}
._1{width:1.009280pt;}
._6{width:2.560000pt;}
._b{width:4.055680pt;}
._a{width:5.063680pt;}
._c{width:5.972267pt;}
._12{width:7.402453pt;}
._14{width:9.083520pt;}
._15{width:10.570880pt;}
._16{width:11.659733pt;}
._20{width:12.908160pt;}
._18{width:14.021760pt;}
._1a{width:15.074560pt;}
._29{width:15.964160pt;}
._1b{width:16.858880pt;}
._e{width:17.848320pt;}
._1f{width:18.995840pt;}
._1d{width:20.440320pt;}
._1c{width:21.832320pt;}
._24{width:22.841600pt;}
._27{width:23.771520pt;}
._26{width:24.672640pt;}
._21{width:26.376960pt;}
._22{width:27.312640pt;}
._25{width:28.230400pt;}
._8{width:31.296000pt;}
._2a{width:43.223467pt;}
._2d{width:44.604160pt;}
._19{width:78.048000pt;}
._2f{width:107.425280pt;}
._2e{width:108.720000pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._2b{width:376.567680pt;}
._2c{width:934.593280pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y46{bottom:2.272000pt;}
.y39{bottom:2.560000pt;}
.yfe{bottom:2.720000pt;}
.y37{bottom:3.200000pt;}
.y17{bottom:3.360000pt;}
.y18{bottom:5.280000pt;}
.y33{bottom:5.440000pt;}
.y7{bottom:8.352000pt;}
.y44{bottom:8.512000pt;}
.yc{bottom:12.480000pt;}
.yd3{bottom:14.400000pt;}
.y103{bottom:14.554667pt;}
.y8{bottom:14.912000pt;}
.y45{bottom:15.072000pt;}
.yfd{bottom:16.800000pt;}
.y31{bottom:17.120000pt;}
.y102{bottom:26.714667pt;}
.yd2{bottom:26.720000pt;}
.y36{bottom:31.040000pt;}
.ya{bottom:31.520000pt;}
.y30{bottom:31.680000pt;}
.yfc{bottom:32.000000pt;}
.y47{bottom:36.800000pt;}
.y101{bottom:39.034667pt;}
.yd1{bottom:39.040000pt;}
.y35{bottom:45.120000pt;}
.y2f{bottom:45.600000pt;}
.y28{bottom:46.920000pt;}
.yfb{bottom:47.360000pt;}
.y100{bottom:51.194667pt;}
.yd0{bottom:51.200000pt;}
.y6{bottom:51.680000pt;}
.y43{bottom:56.960000pt;}
.y2e{bottom:59.360000pt;}
.yfa{bottom:62.720000pt;}
.y27{bottom:64.680000pt;}
.y2d{bottom:73.120000pt;}
.yf9{bottom:78.080000pt;}
.y26{bottom:82.440000pt;}
.y2c{bottom:86.906667pt;}
.yf8{bottom:93.480000pt;}
.y38{bottom:94.440000pt;}
.y25{bottom:100.200000pt;}
.y2b{bottom:100.826667pt;}
.y42{bottom:100.832000pt;}
.ya7{bottom:109.152000pt;}
.y75{bottom:112.672000pt;}
.y2a{bottom:114.586667pt;}
.y9f{bottom:116.352000pt;}
.y41{bottom:116.672000pt;}
.y24{bottom:117.960000pt;}
.ycc{bottom:119.552000pt;}
.yf6{bottom:120.832000pt;}
.ya6{bottom:129.472000pt;}
.y74{bottom:130.432000pt;}
.yff{bottom:130.912000pt;}
.y40{bottom:132.672000pt;}
.y9e{bottom:134.106667pt;}
.y23{bottom:135.720000pt;}
.ycb{bottom:140.026667pt;}
.y73{bottom:148.186667pt;}
.y3f{bottom:148.666667pt;}
.ya5{bottom:149.946667pt;}
.y9d{bottom:151.866667pt;}
.y22{bottom:153.320000pt;}
.yca{bottom:160.346667pt;}
.y3e{bottom:164.666667pt;}
.y72{bottom:165.786667pt;}
.y9c{bottom:169.626667pt;}
.ya4{bottom:170.266667pt;}
.y21{bottom:171.080000pt;}
.y3d{bottom:180.506667pt;}
.yc9{bottom:180.826667pt;}
.y71{bottom:183.546667pt;}
.y9b{bottom:187.386667pt;}
.y20{bottom:188.840000pt;}
.ya3{bottom:190.586667pt;}
.yf7{bottom:192.826667pt;}
.y3c{bottom:196.506667pt;}
.yc8{bottom:201.146667pt;}
.y70{bottom:201.306667pt;}
.y9a{bottom:205.146667pt;}
.y1f{bottom:206.600000pt;}
.ya2{bottom:211.066667pt;}
.y3b{bottom:212.826667pt;}
.y6f{bottom:219.066667pt;}
.yc7{bottom:221.626667pt;}
.y99{bottom:222.746667pt;}
.y1e{bottom:224.360000pt;}
.y3a{bottom:229.786667pt;}
.ya1{bottom:231.386667pt;}
.y6e{bottom:236.826667pt;}
.y98{bottom:240.506667pt;}
.y19{bottom:241.626667pt;}
.yc6{bottom:241.946667pt;}
.y1d{bottom:242.120000pt;}
.ya0{bottom:251.866667pt;}
.y6d{bottom:254.586667pt;}
.y97{bottom:258.266667pt;}
.y1c{bottom:259.720000pt;}
.yc5{bottom:262.426667pt;}
.y6c{bottom:272.186667pt;}
.y96{bottom:276.026667pt;}
.y1b{bottom:277.506667pt;}
.yc4{bottom:282.786667pt;}
.y6b{bottom:289.986667pt;}
.y95{bottom:293.826667pt;}
.y1a{bottom:294.946667pt;}
.yc3{bottom:303.266667pt;}
.yf5{bottom:305.346667pt;}
.y6a{bottom:307.746667pt;}
.y94{bottom:311.586667pt;}
.yf4{bottom:317.666667pt;}
.yc2{bottom:323.586667pt;}
.y69{bottom:325.506667pt;}
.y93{bottom:329.186667pt;}
.yf3{bottom:329.986667pt;}
.yf2{bottom:342.146667pt;}
.y68{bottom:343.266667pt;}
.yc1{bottom:343.906667pt;}
.y92{bottom:346.946667pt;}
.y34{bottom:347.906667pt;}
.yf1{bottom:354.466667pt;}
.y67{bottom:361.026667pt;}
.yc0{bottom:364.386667pt;}
.y91{bottom:364.706667pt;}
.yf0{bottom:366.786667pt;}
.y66{bottom:378.786667pt;}
.yef{bottom:378.946667pt;}
.y90{bottom:382.466667pt;}
.ybf{bottom:384.706667pt;}
.yee{bottom:391.266667pt;}
.y65{bottom:396.386667pt;}
.y8f{bottom:400.226667pt;}
.yed{bottom:403.586667pt;}
.y32{bottom:405.186667pt;}
.y64{bottom:414.146667pt;}
.yec{bottom:415.746667pt;}
.y8e{bottom:417.986667pt;}
.y29{bottom:423.746667pt;}
.ybe{bottom:425.506667pt;}
.yeb{bottom:428.066667pt;}
.y63{bottom:431.906667pt;}
.y8d{bottom:435.586667pt;}
.yea{bottom:440.386667pt;}
.ybd{bottom:445.986667pt;}
.y62{bottom:449.666667pt;}
.ye9{bottom:452.546667pt;}
.y8c{bottom:453.346667pt;}
.ye8{bottom:464.866667pt;}
.ybc{bottom:466.306667pt;}
.y61{bottom:467.426667pt;}
.y8b{bottom:471.106667pt;}
.ye7{bottom:477.186667pt;}
.y60{bottom:485.186667pt;}
.ybb{bottom:486.786667pt;}
.y8a{bottom:488.866667pt;}
.ye6{bottom:489.346667pt;}
.ye5{bottom:501.666667pt;}
.y5f{bottom:502.786667pt;}
.y89{bottom:506.653333pt;}
.yba{bottom:507.133333pt;}
.ye4{bottom:514.013333pt;}
.y5e{bottom:520.573333pt;}
.y88{bottom:524.413333pt;}
.ye3{bottom:526.173333pt;}
.yb9{bottom:527.613333pt;}
.y5d{bottom:538.333333pt;}
.ye2{bottom:538.493333pt;}
.y87{bottom:542.013333pt;}
.yb8{bottom:547.933333pt;}
.y16{bottom:550.173333pt;}
.ye1{bottom:550.813333pt;}
.y5c{bottom:556.093333pt;}
.y86{bottom:559.773333pt;}
.ye0{bottom:562.973333pt;}
.yb7{bottom:568.413333pt;}
.y5b{bottom:573.853333pt;}
.ydf{bottom:575.293333pt;}
.y85{bottom:577.533333pt;}
.y15{bottom:583.453333pt;}
.yde{bottom:587.613333pt;}
.yb6{bottom:588.733333pt;}
.y5a{bottom:591.613333pt;}
.y84{bottom:595.293333pt;}
.ydd{bottom:599.773333pt;}
.y14{bottom:601.693333pt;}
.yb5{bottom:609.053333pt;}
.y59{bottom:609.213333pt;}
.ydc{bottom:612.093333pt;}
.y83{bottom:613.053333pt;}
.ydb{bottom:624.413333pt;}
.y58{bottom:626.973333pt;}
.yb4{bottom:629.533333pt;}
.y82{bottom:630.813333pt;}
.y13{bottom:633.853333pt;}
.yda{bottom:636.573333pt;}
.y57{bottom:644.733333pt;}
.y81{bottom:648.573333pt;}
.yd9{bottom:648.893333pt;}
.yb3{bottom:649.853333pt;}
.y12{bottom:653.373333pt;}
.yd8{bottom:661.213333pt;}
.y56{bottom:662.493333pt;}
.y80{bottom:666.173333pt;}
.y11{bottom:667.133333pt;}
.yb2{bottom:669.693333pt;}
.yd7{bottom:673.373333pt;}
.y55{bottom:680.253333pt;}
.y7f{bottom:683.933333pt;}
.yd6{bottom:685.693333pt;}
.yb1{bottom:686.333333pt;}
.y10{bottom:689.533333pt;}
.y54{bottom:698.013333pt;}
.y7e{bottom:701.693333pt;}
.yb0{bottom:706.813333pt;}
.yd5{bottom:710.173333pt;}
.y53{bottom:715.613333pt;}
.yf{bottom:718.013333pt;}
.y7d{bottom:719.453333pt;}
.yd4{bottom:722.493333pt;}
.yaf{bottom:727.133333pt;}
.ycf{bottom:733.253333pt;}
.y52{bottom:733.413333pt;}
.y7c{bottom:737.253333pt;}
.yae{bottom:747.653333pt;}
.ye{bottom:749.093333pt;}
.y51{bottom:751.173333pt;}
.y7b{bottom:755.013333pt;}
.yad{bottom:767.973333pt;}
.y50{bottom:768.933333pt;}
.y7a{bottom:772.613333pt;}
.yd{bottom:774.853333pt;}
.y4f{bottom:786.693333pt;}
.yb{bottom:788.453333pt;}
.y79{bottom:790.373333pt;}
.yce{bottom:795.173333pt;}
.y4e{bottom:804.453333pt;}
.y78{bottom:808.133333pt;}
.yac{bottom:808.773333pt;}
.ycd{bottom:811.493333pt;}
.y4d{bottom:822.213333pt;}
.y77{bottom:825.893333pt;}
.yab{bottom:829.253333pt;}
.y4c{bottom:839.813333pt;}
.y76{bottom:843.493333pt;}
.yaa{bottom:849.573333pt;}
.y4b{bottom:857.573333pt;}
.ya9{bottom:870.053333pt;}
.y4a{bottom:875.333333pt;}
.ya8{bottom:890.373333pt;}
.y49{bottom:893.093333pt;}
.y48{bottom:910.853333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h22{height:12.320000pt;}
.h11{height:17.760000pt;}
.h4{height:26.432000pt;}
.h25{height:29.940625pt;}
.h23{height:30.254687pt;}
.h1a{height:33.515625pt;}
.h1d{height:33.867188pt;}
.h7{height:34.965625pt;}
.h17{height:35.554688pt;}
.h5{height:37.090625pt;}
.h13{height:37.479688pt;}
.h1b{height:38.448000pt;}
.h1f{height:39.321250pt;}
.h18{height:39.347188pt;}
.he{height:40.056250pt;}
.h9{height:41.112500pt;}
.h15{height:41.296875pt;}
.h1e{height:42.549120pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.h20{height:45.701875pt;}
.h6{height:46.271875pt;}
.ha{height:47.782500pt;}
.h10{height:51.796875pt;}
.h1{height:51.937500pt;}
.h19{height:56.640000pt;}
.h12{height:57.321875pt;}
.h21{height:60.421957pt;}
.h24{height:61.280000pt;}
.hf{height:67.031250pt;}
.hb{height:67.734375pt;}
.hd{height:70.591875pt;}
.hc{height:103.593750pt;}
.h1c{height:105.632000pt;}
.h26{height:105.952000pt;}
.h16{height:125.792000pt;}
.h8{height:136.800000pt;}
.h14{height:307.906667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:178.906667pt;}
.w7{width:292.706667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.920000pt;}
.x5{left:7.680000pt;}
.x32{left:11.040000pt;}
.x16{left:16.040000pt;}
.x12{left:17.960000pt;}
.x14{left:21.960000pt;}
.x15{left:23.560000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1a{left:50.719988pt;}
.x31{left:52.160000pt;}
.x3{left:53.919988pt;}
.x17{left:58.239988pt;}
.x30{left:71.226667pt;}
.x1b{left:74.719988pt;}
.x2f{left:75.680000pt;}
.x2e{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xf{left:169.146655pt;}
.xb{left:180.186655pt;}
.xe{left:185.786655pt;}
.x2{left:196.186655pt;}
.xd{left:289.506655pt;}
.xa{left:408.066655pt;}
.xc{left:412.706655pt;}
.x10{left:413.666655pt;}
.x1c{left:422.786655pt;}
.x18{left:425.186655pt;}
.x1f{left:446.813321pt;}
.x19{left:449.213321pt;}
.x29{left:472.893321pt;}
.x2d{left:475.133321pt;}
.x2a{left:496.253321pt;}
.x24{left:505.853321pt;}
.x28{left:508.413321pt;}
.x22{left:526.653321pt;}
.x20{left:529.213321pt;}
.x1d{left:541.373321pt;}
.x2c{left:543.133321pt;}
.x26{left:562.813321pt;}
.x11{left:587.773333pt;}
.x1e{left:608.133321pt;}
.x21{left:614.373321pt;}
.x2b{left:662.053321pt;}
.x25{left:714.693321pt;}
.x9{left:722.213333pt;}
.x23{left:739.013321pt;}
.x27{left:765.253321pt;}
}




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