
    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_3c5baeccfaf21c26118cbf9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_b07a4170f0f89ea83a49e8e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.888000;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_18763bcf4ea2d9dcac5972af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_fef37bbda0272f3fc8a64939.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998222;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_5e82608f9061b4a1ceca4852.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666667;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_c46259b1920b427197322abe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888000;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_1fa7d8458d3ee0f1dbce5aec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.872889;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_810ceacbd4aa276012dc2dcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.826667;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_72eb7f1e3cd555c9f85b832b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666667;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_63d1fc3bfbad208826ab3576.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a621c6149d5e27a187287fd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888000;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_e8f9d1018ab75996ad7d5898.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;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_260a7e0894c1e4e16765265c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c478dbb23faa4180fccb9f9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880889;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_334701e709ef08f9f8a9ffa6.woff2')format("woff");}.fff{font-family:fff;line-height:0.684444;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_869d139bb7a0695956d36388.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.888000;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_09313bc14926332e497db431.woff2')format("woff");}.ff11{font-family:ff11;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.v2{vertical-align:50.400000px;}
.ls4e{letter-spacing:-0.648000px;}
.ls49{letter-spacing:-0.619200px;}
.ls4b{letter-spacing:-0.576000px;}
.ls4d{letter-spacing:-0.504000px;}
.ls38{letter-spacing:-0.385920px;}
.ls43{letter-spacing:-0.299088px;}
.ls4c{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.279792px;}
.ls44{letter-spacing:-0.270144px;}
.ls16{letter-spacing:-0.252720px;}
.ls18{letter-spacing:-0.250848px;}
.ls36{letter-spacing:-0.231552px;}
.ls37{letter-spacing:-0.221904px;}
.ls1f{letter-spacing:-0.212256px;}
.ls34{letter-spacing:-0.192960px;}
.ls1a{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.144720px;}
.ls15{letter-spacing:-0.125856px;}
.ls14{letter-spacing:-0.112608px;}
.ls19{letter-spacing:-0.077184px;}
.ls1e{letter-spacing:-0.036000px;}
.ls46{letter-spacing:-0.032400px;}
.ls1b{letter-spacing:-0.028800px;}
.ls1d{letter-spacing:-0.021600px;}
.ls1c{letter-spacing:-0.014400px;}
.ls17{letter-spacing:-0.007200px;}
.ls13{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.007200px;}
.ls45{letter-spacing:0.012960px;}
.ls21{letter-spacing:0.014400px;}
.ls27{letter-spacing:0.014688px;}
.ls24{letter-spacing:0.014832px;}
.ls2f{letter-spacing:0.015840px;}
.ls1{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.023040px;}
.ls3d{letter-spacing:0.024480px;}
.lsf{letter-spacing:0.028800px;}
.ls11{letter-spacing:0.050400px;}
.ls4a{letter-spacing:0.504000px;}
.ls3c{letter-spacing:1.157616px;}
.ls3b{letter-spacing:1.172160px;}
.ls3a{letter-spacing:1.172448px;}
.lsc{letter-spacing:3.748320px;}
.ls2b{letter-spacing:4.266144px;}
.ls12{letter-spacing:8.176320px;}
.ls39{letter-spacing:9.292320px;}
.ls3f{letter-spacing:9.780480px;}
.ls42{letter-spacing:10.209600px;}
.ls26{letter-spacing:10.465344px;}
.lsa{letter-spacing:10.951200px;}
.ls41{letter-spacing:11.721600px;}
.ls3e{letter-spacing:13.082400px;}
.ls32{letter-spacing:13.825440px;}
.ls33{letter-spacing:13.826880px;}
.ls2c{letter-spacing:13.996800px;}
.ls25{letter-spacing:14.491584px;}
.ls28{letter-spacing:15.004224px;}
.ls22{letter-spacing:17.202096px;}
.ls23{letter-spacing:17.203680px;}
.ls40{letter-spacing:17.733600px;}
.ls31{letter-spacing:18.944640px;}
.lse{letter-spacing:19.080000px;}
.ls2a{letter-spacing:19.506240px;}
.ls2e{letter-spacing:20.675520px;}
.lsb{letter-spacing:26.566272px;}
.ls10{letter-spacing:27.311040px;}
.ls29{letter-spacing:30.176208px;}
.ls30{letter-spacing:32.091840px;}
.lsd{letter-spacing:32.615280px;}
.ls2d{letter-spacing:33.700320px;}
.ls7{letter-spacing:36.913680px;}
.ls5{letter-spacing:37.969776px;}
.ls2{letter-spacing:37.969920px;}
.ls6{letter-spacing:38.353680px;}
.ls9{letter-spacing:40.401504px;}
.ls47{letter-spacing:46.977984px;}
.ls4{letter-spacing:47.025504px;}
.ls0{letter-spacing:47.025648px;}
.ls48{letter-spacing:95.729400px;}
.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;}
}
.ws15{word-spacing:-24.591600px;}
.ws9{word-spacing:-21.852720px;}
.wsb{word-spacing:-21.804480px;}
.ws8{word-spacing:-21.785184px;}
.wse{word-spacing:-21.775536px;}
.wsc{word-spacing:-21.765888px;}
.ws14{word-spacing:-21.746592px;}
.ws13{word-spacing:-21.698352px;}
.wsf{word-spacing:-21.611520px;}
.ws6{word-spacing:-16.444800px;}
.ws0{word-spacing:-16.437600px;}
.ws12{word-spacing:-16.430400px;}
.wsd{word-spacing:-16.423200px;}
.ws5{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.408800px;}
.ws4{word-spacing:-16.401600px;}
.ws10{word-spacing:-16.394400px;}
.ws3{word-spacing:-16.387200px;}
.ws11{word-spacing:-16.380000px;}
.ws1d{word-spacing:-16.128000px;}
.ws16{word-spacing:-15.796800px;}
.ws1{word-spacing:-0.063360px;}
.wsa{word-spacing:0.000000px;}
.ws2{word-spacing:0.095040px;}
.ws1b{word-spacing:19.055400px;}
.ws1a{word-spacing:29.665800px;}
.ws19{word-spacing:42.358800px;}
.ws17{word-spacing:42.514800px;}
.ws18{word-spacing:43.895400px;}
.ws1c{word-spacing:114.924600px;}
._3{margin-left:-4.142448px;}
._1c{margin-left:-2.539872px;}
._2{margin-left:-1.001376px;}
._1{width:1.001088px;}
._c{width:2.923200px;}
._a{width:4.082400px;}
._6{width:5.112000px;}
._5{width:6.879600px;}
._4{width:7.928064px;}
._b{width:8.983008px;}
._7{width:10.847232px;}
._8{width:11.979072px;}
._9{width:13.939200px;}
._19{width:15.314400px;}
._1b{width:17.925408px;}
._f{width:19.075392px;}
._17{width:20.567808px;}
._24{width:21.722400px;}
._18{width:23.205600px;}
._3c{width:24.220800px;}
._e{width:25.480800px;}
._10{width:27.360000px;}
._12{width:28.823040px;}
._15{width:30.255840px;}
._25{width:31.422672px;}
._d{width:32.520528px;}
._0{width:33.914880px;}
._16{width:34.971840px;}
._2a{width:36.089280px;}
._13{width:38.247840px;}
._1a{width:39.926592px;}
._1d{width:41.112000px;}
._1e{width:42.208128px;}
._31{width:43.846560px;}
._20{width:45.360000px;}
._2e{width:46.584000px;}
._2c{width:48.681792px;}
._23{width:50.133600px;}
._21{width:51.962400px;}
._28{width:53.240256px;}
._14{width:54.360000px;}
._30{width:55.411200px;}
._26{width:56.476800px;}
._38{width:61.552800px;}
._41{width:63.568800px;}
._11{width:64.684800px;}
._22{width:66.232800px;}
._2b{width:67.544064px;}
._44{width:71.352000px;}
._46{width:75.902400px;}
._27{width:78.984000px;}
._2f{width:81.120096px;}
._3e{width:82.224000px;}
._29{width:85.157136px;}
._34{width:87.840000px;}
._42{width:92.304000px;}
._32{width:98.632800px;}
._40{width:99.885600px;}
._3a{width:104.616000px;}
._36{width:131.356800px;}
._45{width:135.360000px;}
._37{width:143.215200px;}
._3f{width:147.240000px;}
._2d{width:148.500000px;}
._33{width:153.864000px;}
._1f{width:155.016000px;}
._35{width:193.989600px;}
._39{width:286.704000px;}
._43{width:551.810304px;}
._3b{width:604.535040px;}
._3d{width:739.977120px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:96.480000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:113.760000px;}
.fs3{font-size:132.480000px;}
.fs2{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.yda{bottom:1.320000px;}
.y5{bottom:3.540000px;}
.y44{bottom:4.380000px;}
.yba{bottom:4.680000px;}
.ycd{bottom:4.860000px;}
.ye3{bottom:5.640000px;}
.yc8{bottom:7.200000px;}
.ycb{bottom:9.720000px;}
.yc6{bottom:12.720000px;}
.yd8{bottom:18.360000px;}
.y4{bottom:24.060000px;}
.yb9{bottom:27.360000px;}
.ye2{bottom:28.320000px;}
.y3{bottom:40.620000px;}
.y8{bottom:44.040000px;}
.yb8{bottom:49.680000px;}
.ye1{bottom:50.640000px;}
.y43{bottom:52.500000px;}
.y42{bottom:57.240000px;}
.y7{bottom:72.120000px;}
.yb7{bottom:72.360000px;}
.ye0{bottom:73.320000px;}
.yd2{bottom:93.240000px;}
.yd5{bottom:93.960000px;}
.yb6{bottom:94.680000px;}
.ydf{bottom:95.640000px;}
.yaf{bottom:108.000000px;}
.yb5{bottom:117.360000px;}
.yde{bottom:118.320000px;}
.y99{bottom:123.840000px;}
.y33{bottom:127.080000px;}
.y6f{bottom:133.560000px;}
.yb4{bottom:139.680000px;}
.ydd{bottom:140.640000px;}
.y98{bottom:146.520000px;}
.yd3{bottom:147.960000px;}
.y32{bottom:149.400000px;}
.yd6{bottom:150.480000px;}
.y6e{bottom:155.880000px;}
.y41{bottom:156.960000px;}
.yb3{bottom:162.360000px;}
.ydc{bottom:163.320000px;}
.y97{bottom:169.200000px;}
.y31{bottom:172.080000px;}
.y6d{bottom:178.560000px;}
.y40{bottom:179.640000px;}
.yb2{bottom:184.680000px;}
.y96{bottom:191.520000px;}
.y30{bottom:194.400000px;}
.y6c{bottom:200.880000px;}
.y3f{bottom:201.960000px;}
.yd4{bottom:202.680000px;}
.yd7{bottom:205.200000px;}
.yb1{bottom:207.360000px;}
.y95{bottom:214.200000px;}
.y2f{bottom:217.080000px;}
.y6b{bottom:223.560000px;}
.y3e{bottom:224.640000px;}
.yb0{bottom:231.840000px;}
.y94{bottom:236.520000px;}
.y2e{bottom:239.400000px;}
.y6a{bottom:245.880000px;}
.y3d{bottom:246.960000px;}
.y93{bottom:259.200000px;}
.y2d{bottom:262.080000px;}
.y69{bottom:268.560000px;}
.y3c{bottom:269.640000px;}
.y92{bottom:281.520000px;}
.y2c{bottom:284.400000px;}
.y68{bottom:290.880000px;}
.y3b{bottom:291.960000px;}
.y91{bottom:304.200000px;}
.y2b{bottom:307.080000px;}
.y67{bottom:313.560000px;}
.y3a{bottom:314.640000px;}
.y90{bottom:326.520000px;}
.y2a{bottom:329.400000px;}
.y66{bottom:335.880000px;}
.y39{bottom:336.960000px;}
.y8f{bottom:349.200000px;}
.y29{bottom:352.080000px;}
.yd0{bottom:354.960000px;}
.y38{bottom:359.640000px;}
.y65{bottom:360.000000px;}
.y8e{bottom:371.520000px;}
.y28{bottom:374.760000px;}
.ycf{bottom:377.640000px;}
.y37{bottom:381.960000px;}
.y64{bottom:389.880000px;}
.y8d{bottom:394.200000px;}
.y27{bottom:397.080000px;}
.yce{bottom:399.960000px;}
.y36{bottom:404.640000px;}
.y8c{bottom:416.520000px;}
.y63{bottom:418.320000px;}
.ycc{bottom:418.500000px;}
.y26{bottom:419.760000px;}
.y35{bottom:426.960000px;}
.y8b{bottom:439.200000px;}
.y62{bottom:441.000000px;}
.y25{bottom:443.520000px;}
.y34{bottom:449.640000px;}
.y8a{bottom:461.520000px;}
.y61{bottom:463.320000px;}
.y24{bottom:471.960000px;}
.y89{bottom:484.200000px;}
.yae{bottom:485.640000px;}
.y60{bottom:486.000000px;}
.y23{bottom:494.640000px;}
.y88{bottom:506.520000px;}
.y5f{bottom:508.320000px;}
.yad{bottom:515.520000px;}
.y22{bottom:519.120000px;}
.y87{bottom:529.200000px;}
.y5e{bottom:531.000000px;}
.y21{bottom:541.800000px;}
.yac{bottom:543.960000px;}
.y86{bottom:551.520000px;}
.y5d{bottom:553.320000px;}
.y20{bottom:564.480000px;}
.yab{bottom:566.640000px;}
.y85{bottom:574.200000px;}
.y5c{bottom:577.440000px;}
.y1f{bottom:586.800000px;}
.yaa{bottom:588.960000px;}
.y84{bottom:596.520000px;}
.y5b{bottom:608.040000px;}
.y1e{bottom:609.480000px;}
.ya9{bottom:611.640000px;}
.y83{bottom:619.200000px;}
.yc4{bottom:630.360000px;}
.y1d{bottom:631.800000px;}
.y5a{bottom:632.160000px;}
.ya8{bottom:633.960000px;}
.y82{bottom:641.520000px;}
.yc3{bottom:652.680000px;}
.y1c{bottom:654.480000px;}
.y59{bottom:656.640000px;}
.y81{bottom:664.200000px;}
.yc2{bottom:675.360000px;}
.y1b{bottom:676.800000px;}
.ya7{bottom:678.960000px;}
.y58{bottom:680.760000px;}
.y80{bottom:686.520000px;}
.yc1{bottom:698.040000px;}
.y1a{bottom:699.480000px;}
.ya6{bottom:701.640000px;}
.y57{bottom:705.240000px;}
.y7f{bottom:709.200000px;}
.yc0{bottom:720.360000px;}
.y19{bottom:721.800000px;}
.ya5{bottom:723.960000px;}
.y56{bottom:729.360000px;}
.y7e{bottom:731.520000px;}
.ybf{bottom:743.040000px;}
.y18{bottom:744.480000px;}
.ya4{bottom:746.640000px;}
.y55{bottom:753.480000px;}
.y7d{bottom:754.200000px;}
.ybe{bottom:765.360000px;}
.y17{bottom:766.800000px;}
.ya3{bottom:768.960000px;}
.y7c{bottom:776.520000px;}
.y54{bottom:777.960000px;}
.ye4{bottom:786.240000px;}
.y16{bottom:789.480000px;}
.ybd{bottom:790.200000px;}
.ya2{bottom:791.640000px;}
.y7b{bottom:799.200000px;}
.y53{bottom:802.080000px;}
.ydb{bottom:804.000000px;}
.y15{bottom:811.800000px;}
.ya1{bottom:813.960000px;}
.y7a{bottom:821.520000px;}
.yca{bottom:824.760000px;}
.y52{bottom:826.560000px;}
.y14{bottom:834.120000px;}
.ya0{bottom:836.640000px;}
.y79{bottom:844.200000px;}
.yc9{bottom:847.440000px;}
.y51{bottom:850.680000px;}
.y13{bottom:857.160000px;}
.y9f{bottom:859.320000px;}
.yc7{bottom:864.000000px;}
.y78{bottom:866.520000px;}
.y50{bottom:875.160000px;}
.y9e{bottom:881.640000px;}
.yc5{bottom:888.000000px;}
.y12{bottom:888.840000px;}
.y77{bottom:889.200000px;}
.y4f{bottom:899.280000px;}
.yd1{bottom:901.800000px;}
.y9d{bottom:904.320000px;}
.y11{bottom:909.720000px;}
.y76{bottom:911.520000px;}
.y4e{bottom:923.760000px;}
.y9c{bottom:926.640000px;}
.y10{bottom:932.040000px;}
.y75{bottom:934.200000px;}
.y4d{bottom:947.880000px;}
.y9b{bottom:949.320000px;}
.yf{bottom:954.360000px;}
.y74{bottom:956.520000px;}
.y4c{bottom:972.360000px;}
.y9a{bottom:973.080000px;}
.ye{bottom:976.680000px;}
.y73{bottom:979.200000px;}
.yd9{bottom:984.000000px;}
.y4b{bottom:996.480000px;}
.y72{bottom:1001.520000px;}
.yd{bottom:1005.120000px;}
.y4a{bottom:1020.960000px;}
.y71{bottom:1024.200000px;}
.yc{bottom:1025.640000px;}
.y49{bottom:1045.080000px;}
.y70{bottom:1046.520000px;}
.yb{bottom:1049.040000px;}
.y48{bottom:1069.200000px;}
.ya{bottom:1084.680000px;}
.y47{bottom:1091.520000px;}
.ybc{bottom:1093.680000px;}
.y46{bottom:1114.200000px;}
.y9{bottom:1121.400000px;}
.ybb{bottom:1127.520000px;}
.y2{bottom:1135.500000px;}
.y45{bottom:1136.520000px;}
.y6{bottom:1140.000000px;}
.y1{bottom:1193.400000px;}
.hd{height:21.000000px;}
.h15{height:24.000000px;}
.h13{height:25.500000px;}
.h4{height:44.954880px;}
.he{height:48.352000px;}
.h2{height:48.656250px;}
.h11{height:48.864000px;}
.h7{height:56.800000px;}
.hc{height:65.477760px;}
.h10{height:72.528000px;}
.hb{height:73.296000px;}
.h9{height:77.205120px;}
.h8{height:88.320000px;}
.ha{height:96.480000px;}
.h6{height:114.341760px;}
.h5{height:115.500000px;}
.h3{height:120.000000px;}
.h17{height:126.000000px;}
.h18{height:181.500000px;}
.h16{height:253.080000px;}
.hf{height:259.500000px;}
.h12{height:267.000000px;}
.h14{height:379.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:10.500000px;}
.w3{width:252.000000px;}
.w5{width:312.000000px;}
.w2{width:433.500000px;}
.w9{width:664.500000px;}
.w8{width:676.440000px;}
.w6{width:748.500000px;}
.w7{width:750.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:4.500000px;}
.x13{left:7.920036px;}
.x4{left:10.620115px;}
.x6{left:44.517240px;}
.x21{left:46.057500px;}
.x20{left:105.638700px;}
.x1{left:108.000000px;}
.x7{left:117.339120px;}
.xb{left:118.780884px;}
.x9{left:124.076304px;}
.x23{left:129.000000px;}
.xd{left:135.000000px;}
.x16{left:142.920000px;}
.xa{left:159.270624px;}
.xe{left:162.000000px;}
.x22{left:174.053100px;}
.xc{left:176.700096px;}
.x3{left:215.100216px;}
.x1f{left:303.797400px;}
.x17{left:305.914050px;}
.x18{left:319.939050px;}
.x1a{left:328.060500px;}
.x19{left:352.582050px;}
.x1b{left:378.995850px;}
.x10{left:441.000000px;}
.x8{left:446.249880px;}
.x1c{left:466.206300px;}
.xf{left:472.680000px;}
.x1d{left:493.126350px;}
.x11{left:499.680000px;}
.x12{left:526.680000px;}
.x1e{left:528.791700px;}
.x24{left:565.440000px;}
.x5{left:639.000000px;}
.x15{left:710.677440px;}
.x14{left:711.974880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.v2{vertical-align:44.800000pt;}
.ls4e{letter-spacing:-0.576000pt;}
.ls49{letter-spacing:-0.550400pt;}
.ls4b{letter-spacing:-0.512000pt;}
.ls4d{letter-spacing:-0.448000pt;}
.ls38{letter-spacing:-0.343040pt;}
.ls43{letter-spacing:-0.265856pt;}
.ls4c{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.248704pt;}
.ls44{letter-spacing:-0.240128pt;}
.ls16{letter-spacing:-0.224640pt;}
.ls18{letter-spacing:-0.222976pt;}
.ls36{letter-spacing:-0.205824pt;}
.ls37{letter-spacing:-0.197248pt;}
.ls1f{letter-spacing:-0.188672pt;}
.ls34{letter-spacing:-0.171520pt;}
.ls1a{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.128640pt;}
.ls15{letter-spacing:-0.111872pt;}
.ls14{letter-spacing:-0.100096pt;}
.ls19{letter-spacing:-0.068608pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls46{letter-spacing:-0.028800pt;}
.ls1b{letter-spacing:-0.025600pt;}
.ls1d{letter-spacing:-0.019200pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.006400pt;}
.ls45{letter-spacing:0.011520pt;}
.ls21{letter-spacing:0.012800pt;}
.ls27{letter-spacing:0.013056pt;}
.ls24{letter-spacing:0.013184pt;}
.ls2f{letter-spacing:0.014080pt;}
.ls1{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.020480pt;}
.ls3d{letter-spacing:0.021760pt;}
.lsf{letter-spacing:0.025600pt;}
.ls11{letter-spacing:0.044800pt;}
.ls4a{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:1.028992pt;}
.ls3b{letter-spacing:1.041920pt;}
.ls3a{letter-spacing:1.042176pt;}
.lsc{letter-spacing:3.331840pt;}
.ls2b{letter-spacing:3.792128pt;}
.ls12{letter-spacing:7.267840pt;}
.ls39{letter-spacing:8.259840pt;}
.ls3f{letter-spacing:8.693760pt;}
.ls42{letter-spacing:9.075200pt;}
.ls26{letter-spacing:9.302528pt;}
.lsa{letter-spacing:9.734400pt;}
.ls41{letter-spacing:10.419200pt;}
.ls3e{letter-spacing:11.628800pt;}
.ls32{letter-spacing:12.289280pt;}
.ls33{letter-spacing:12.290560pt;}
.ls2c{letter-spacing:12.441600pt;}
.ls25{letter-spacing:12.881408pt;}
.ls28{letter-spacing:13.337088pt;}
.ls22{letter-spacing:15.290752pt;}
.ls23{letter-spacing:15.292160pt;}
.ls40{letter-spacing:15.763200pt;}
.ls31{letter-spacing:16.839680pt;}
.lse{letter-spacing:16.960000pt;}
.ls2a{letter-spacing:17.338880pt;}
.ls2e{letter-spacing:18.378240pt;}
.lsb{letter-spacing:23.614464pt;}
.ls10{letter-spacing:24.276480pt;}
.ls29{letter-spacing:26.823296pt;}
.ls30{letter-spacing:28.526080pt;}
.lsd{letter-spacing:28.991360pt;}
.ls2d{letter-spacing:29.955840pt;}
.ls7{letter-spacing:32.812160pt;}
.ls5{letter-spacing:33.750912pt;}
.ls2{letter-spacing:33.751040pt;}
.ls6{letter-spacing:34.092160pt;}
.ls9{letter-spacing:35.912448pt;}
.ls47{letter-spacing:41.758208pt;}
.ls4{letter-spacing:41.800448pt;}
.ls0{letter-spacing:41.800576pt;}
.ls48{letter-spacing:85.092800pt;}
.ws15{word-spacing:-21.859200pt;}
.ws9{word-spacing:-19.424640pt;}
.wsb{word-spacing:-19.381760pt;}
.ws8{word-spacing:-19.364608pt;}
.wse{word-spacing:-19.356032pt;}
.wsc{word-spacing:-19.347456pt;}
.ws14{word-spacing:-19.330304pt;}
.ws13{word-spacing:-19.287424pt;}
.wsf{word-spacing:-19.210240pt;}
.ws6{word-spacing:-14.617600pt;}
.ws0{word-spacing:-14.611200pt;}
.ws12{word-spacing:-14.604800pt;}
.wsd{word-spacing:-14.598400pt;}
.ws5{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.585600pt;}
.ws4{word-spacing:-14.579200pt;}
.ws10{word-spacing:-14.572800pt;}
.ws3{word-spacing:-14.566400pt;}
.ws11{word-spacing:-14.560000pt;}
.ws1d{word-spacing:-14.336000pt;}
.ws16{word-spacing:-14.041600pt;}
.ws1{word-spacing:-0.056320pt;}
.wsa{word-spacing:0.000000pt;}
.ws2{word-spacing:0.084480pt;}
.ws1b{word-spacing:16.938133pt;}
.ws1a{word-spacing:26.369600pt;}
.ws19{word-spacing:37.652267pt;}
.ws17{word-spacing:37.790933pt;}
.ws18{word-spacing:39.018133pt;}
.ws1c{word-spacing:102.155200pt;}
._3{margin-left:-3.682176pt;}
._1c{margin-left:-2.257664pt;}
._2{margin-left:-0.890112pt;}
._1{width:0.889856pt;}
._c{width:2.598400pt;}
._a{width:3.628800pt;}
._6{width:4.544000pt;}
._5{width:6.115200pt;}
._4{width:7.047168pt;}
._b{width:7.984896pt;}
._7{width:9.641984pt;}
._8{width:10.648064pt;}
._9{width:12.390400pt;}
._19{width:13.612800pt;}
._1b{width:15.933696pt;}
._f{width:16.955904pt;}
._17{width:18.282496pt;}
._24{width:19.308800pt;}
._18{width:20.627200pt;}
._3c{width:21.529600pt;}
._e{width:22.649600pt;}
._10{width:24.320000pt;}
._12{width:25.620480pt;}
._15{width:26.894080pt;}
._25{width:27.931264pt;}
._d{width:28.907136pt;}
._0{width:30.146560pt;}
._16{width:31.086080pt;}
._2a{width:32.079360pt;}
._13{width:33.998080pt;}
._1a{width:35.490304pt;}
._1d{width:36.544000pt;}
._1e{width:37.518336pt;}
._31{width:38.974720pt;}
._20{width:40.320000pt;}
._2e{width:41.408000pt;}
._2c{width:43.272704pt;}
._23{width:44.563200pt;}
._21{width:46.188800pt;}
._28{width:47.324672pt;}
._14{width:48.320000pt;}
._30{width:49.254400pt;}
._26{width:50.201600pt;}
._38{width:54.713600pt;}
._41{width:56.505600pt;}
._11{width:57.497600pt;}
._22{width:58.873600pt;}
._2b{width:60.039168pt;}
._44{width:63.424000pt;}
._46{width:67.468800pt;}
._27{width:70.208000pt;}
._2f{width:72.106752pt;}
._3e{width:73.088000pt;}
._29{width:75.695232pt;}
._34{width:78.080000pt;}
._42{width:82.048000pt;}
._32{width:87.673600pt;}
._40{width:88.787200pt;}
._3a{width:92.992000pt;}
._36{width:116.761600pt;}
._45{width:120.320000pt;}
._37{width:127.302400pt;}
._3f{width:130.880000pt;}
._2d{width:132.000000pt;}
._33{width:136.768000pt;}
._1f{width:137.792000pt;}
._35{width:172.435200pt;}
._39{width:254.848000pt;}
._43{width:490.498048pt;}
._3b{width:537.364480pt;}
._3d{width:657.757440pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:85.760000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:101.120000pt;}
.fs3{font-size:117.760000pt;}
.fs2{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:1.173333pt;}
.y5{bottom:3.146667pt;}
.y44{bottom:3.893333pt;}
.yba{bottom:4.160000pt;}
.ycd{bottom:4.320000pt;}
.ye3{bottom:5.013333pt;}
.yc8{bottom:6.400000pt;}
.ycb{bottom:8.640000pt;}
.yc6{bottom:11.306667pt;}
.yd8{bottom:16.320000pt;}
.y4{bottom:21.386667pt;}
.yb9{bottom:24.320000pt;}
.ye2{bottom:25.173333pt;}
.y3{bottom:36.106667pt;}
.y8{bottom:39.146667pt;}
.yb8{bottom:44.160000pt;}
.ye1{bottom:45.013333pt;}
.y43{bottom:46.666667pt;}
.y42{bottom:50.880000pt;}
.y7{bottom:64.106667pt;}
.yb7{bottom:64.320000pt;}
.ye0{bottom:65.173333pt;}
.yd2{bottom:82.880000pt;}
.yd5{bottom:83.520000pt;}
.yb6{bottom:84.160000pt;}
.ydf{bottom:85.013333pt;}
.yaf{bottom:96.000000pt;}
.yb5{bottom:104.320000pt;}
.yde{bottom:105.173333pt;}
.y99{bottom:110.080000pt;}
.y33{bottom:112.960000pt;}
.y6f{bottom:118.720000pt;}
.yb4{bottom:124.160000pt;}
.ydd{bottom:125.013333pt;}
.y98{bottom:130.240000pt;}
.yd3{bottom:131.520000pt;}
.y32{bottom:132.800000pt;}
.yd6{bottom:133.760000pt;}
.y6e{bottom:138.560000pt;}
.y41{bottom:139.520000pt;}
.yb3{bottom:144.320000pt;}
.ydc{bottom:145.173333pt;}
.y97{bottom:150.400000pt;}
.y31{bottom:152.960000pt;}
.y6d{bottom:158.720000pt;}
.y40{bottom:159.680000pt;}
.yb2{bottom:164.160000pt;}
.y96{bottom:170.240000pt;}
.y30{bottom:172.800000pt;}
.y6c{bottom:178.560000pt;}
.y3f{bottom:179.520000pt;}
.yd4{bottom:180.160000pt;}
.yd7{bottom:182.400000pt;}
.yb1{bottom:184.320000pt;}
.y95{bottom:190.400000pt;}
.y2f{bottom:192.960000pt;}
.y6b{bottom:198.720000pt;}
.y3e{bottom:199.680000pt;}
.yb0{bottom:206.080000pt;}
.y94{bottom:210.240000pt;}
.y2e{bottom:212.800000pt;}
.y6a{bottom:218.560000pt;}
.y3d{bottom:219.520000pt;}
.y93{bottom:230.400000pt;}
.y2d{bottom:232.960000pt;}
.y69{bottom:238.720000pt;}
.y3c{bottom:239.680000pt;}
.y92{bottom:250.240000pt;}
.y2c{bottom:252.800000pt;}
.y68{bottom:258.560000pt;}
.y3b{bottom:259.520000pt;}
.y91{bottom:270.400000pt;}
.y2b{bottom:272.960000pt;}
.y67{bottom:278.720000pt;}
.y3a{bottom:279.680000pt;}
.y90{bottom:290.240000pt;}
.y2a{bottom:292.800000pt;}
.y66{bottom:298.560000pt;}
.y39{bottom:299.520000pt;}
.y8f{bottom:310.400000pt;}
.y29{bottom:312.960000pt;}
.yd0{bottom:315.520000pt;}
.y38{bottom:319.680000pt;}
.y65{bottom:320.000000pt;}
.y8e{bottom:330.240000pt;}
.y28{bottom:333.120000pt;}
.ycf{bottom:335.680000pt;}
.y37{bottom:339.520000pt;}
.y64{bottom:346.560000pt;}
.y8d{bottom:350.400000pt;}
.y27{bottom:352.960000pt;}
.yce{bottom:355.520000pt;}
.y36{bottom:359.680000pt;}
.y8c{bottom:370.240000pt;}
.y63{bottom:371.840000pt;}
.ycc{bottom:372.000000pt;}
.y26{bottom:373.120000pt;}
.y35{bottom:379.520000pt;}
.y8b{bottom:390.400000pt;}
.y62{bottom:392.000000pt;}
.y25{bottom:394.240000pt;}
.y34{bottom:399.680000pt;}
.y8a{bottom:410.240000pt;}
.y61{bottom:411.840000pt;}
.y24{bottom:419.520000pt;}
.y89{bottom:430.400000pt;}
.yae{bottom:431.680000pt;}
.y60{bottom:432.000000pt;}
.y23{bottom:439.680000pt;}
.y88{bottom:450.240000pt;}
.y5f{bottom:451.840000pt;}
.yad{bottom:458.240000pt;}
.y22{bottom:461.440000pt;}
.y87{bottom:470.400000pt;}
.y5e{bottom:472.000000pt;}
.y21{bottom:481.600000pt;}
.yac{bottom:483.520000pt;}
.y86{bottom:490.240000pt;}
.y5d{bottom:491.840000pt;}
.y20{bottom:501.760000pt;}
.yab{bottom:503.680000pt;}
.y85{bottom:510.400000pt;}
.y5c{bottom:513.280000pt;}
.y1f{bottom:521.600000pt;}
.yaa{bottom:523.520000pt;}
.y84{bottom:530.240000pt;}
.y5b{bottom:540.480000pt;}
.y1e{bottom:541.760000pt;}
.ya9{bottom:543.680000pt;}
.y83{bottom:550.400000pt;}
.yc4{bottom:560.320000pt;}
.y1d{bottom:561.600000pt;}
.y5a{bottom:561.920000pt;}
.ya8{bottom:563.520000pt;}
.y82{bottom:570.240000pt;}
.yc3{bottom:580.160000pt;}
.y1c{bottom:581.760000pt;}
.y59{bottom:583.680000pt;}
.y81{bottom:590.400000pt;}
.yc2{bottom:600.320000pt;}
.y1b{bottom:601.600000pt;}
.ya7{bottom:603.520000pt;}
.y58{bottom:605.120000pt;}
.y80{bottom:610.240000pt;}
.yc1{bottom:620.480000pt;}
.y1a{bottom:621.760000pt;}
.ya6{bottom:623.680000pt;}
.y57{bottom:626.880000pt;}
.y7f{bottom:630.400000pt;}
.yc0{bottom:640.320000pt;}
.y19{bottom:641.600000pt;}
.ya5{bottom:643.520000pt;}
.y56{bottom:648.320000pt;}
.y7e{bottom:650.240000pt;}
.ybf{bottom:660.480000pt;}
.y18{bottom:661.760000pt;}
.ya4{bottom:663.680000pt;}
.y55{bottom:669.760000pt;}
.y7d{bottom:670.400000pt;}
.ybe{bottom:680.320000pt;}
.y17{bottom:681.600000pt;}
.ya3{bottom:683.520000pt;}
.y7c{bottom:690.240000pt;}
.y54{bottom:691.520000pt;}
.ye4{bottom:698.880000pt;}
.y16{bottom:701.760000pt;}
.ybd{bottom:702.400000pt;}
.ya2{bottom:703.680000pt;}
.y7b{bottom:710.400000pt;}
.y53{bottom:712.960000pt;}
.ydb{bottom:714.666667pt;}
.y15{bottom:721.600000pt;}
.ya1{bottom:723.520000pt;}
.y7a{bottom:730.240000pt;}
.yca{bottom:733.120000pt;}
.y52{bottom:734.720000pt;}
.y14{bottom:741.440000pt;}
.ya0{bottom:743.680000pt;}
.y79{bottom:750.400000pt;}
.yc9{bottom:753.280000pt;}
.y51{bottom:756.160000pt;}
.y13{bottom:761.920000pt;}
.y9f{bottom:763.840000pt;}
.yc7{bottom:768.000000pt;}
.y78{bottom:770.240000pt;}
.y50{bottom:777.920000pt;}
.y9e{bottom:783.680000pt;}
.yc5{bottom:789.333333pt;}
.y12{bottom:790.080000pt;}
.y77{bottom:790.400000pt;}
.y4f{bottom:799.360000pt;}
.yd1{bottom:801.600000pt;}
.y9d{bottom:803.840000pt;}
.y11{bottom:808.640000pt;}
.y76{bottom:810.240000pt;}
.y4e{bottom:821.120000pt;}
.y9c{bottom:823.680000pt;}
.y10{bottom:828.480000pt;}
.y75{bottom:830.400000pt;}
.y4d{bottom:842.560000pt;}
.y9b{bottom:843.840000pt;}
.yf{bottom:848.320000pt;}
.y74{bottom:850.240000pt;}
.y4c{bottom:864.320000pt;}
.y9a{bottom:864.960000pt;}
.ye{bottom:868.160000pt;}
.y73{bottom:870.400000pt;}
.yd9{bottom:874.666667pt;}
.y4b{bottom:885.760000pt;}
.y72{bottom:890.240000pt;}
.yd{bottom:893.440000pt;}
.y4a{bottom:907.520000pt;}
.y71{bottom:910.400000pt;}
.yc{bottom:911.680000pt;}
.y49{bottom:928.960000pt;}
.y70{bottom:930.240000pt;}
.yb{bottom:932.480000pt;}
.y48{bottom:950.400000pt;}
.ya{bottom:964.160000pt;}
.y47{bottom:970.240000pt;}
.ybc{bottom:972.160000pt;}
.y46{bottom:990.400000pt;}
.y9{bottom:996.800000pt;}
.ybb{bottom:1002.240000pt;}
.y2{bottom:1009.333333pt;}
.y45{bottom:1010.240000pt;}
.y6{bottom:1013.333333pt;}
.y1{bottom:1060.800000pt;}
.hd{height:18.666667pt;}
.h15{height:21.333333pt;}
.h13{height:22.666667pt;}
.h4{height:39.959893pt;}
.he{height:42.979556pt;}
.h2{height:43.250000pt;}
.h11{height:43.434667pt;}
.h7{height:50.488889pt;}
.hc{height:58.202453pt;}
.h10{height:64.469333pt;}
.hb{height:65.152000pt;}
.h9{height:68.626773pt;}
.h8{height:78.506667pt;}
.ha{height:85.760000pt;}
.h6{height:101.637120pt;}
.h5{height:102.666667pt;}
.h3{height:106.666667pt;}
.h17{height:112.000000pt;}
.h18{height:161.333333pt;}
.h16{height:224.960000pt;}
.hf{height:230.666667pt;}
.h12{height:237.333333pt;}
.h14{height:337.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:9.333333pt;}
.w3{width:224.000000pt;}
.w5{width:277.333333pt;}
.w2{width:385.333333pt;}
.w9{width:590.666667pt;}
.w8{width:601.280000pt;}
.w6{width:665.333333pt;}
.w7{width:666.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:4.000000pt;}
.x13{left:7.040032pt;}
.x4{left:9.440102pt;}
.x6{left:39.570880pt;}
.x21{left:40.940000pt;}
.x20{left:93.901067pt;}
.x1{left:96.000000pt;}
.x7{left:104.301440pt;}
.xb{left:105.583008pt;}
.x9{left:110.290048pt;}
.x23{left:114.666667pt;}
.xd{left:120.000000pt;}
.x16{left:127.040000pt;}
.xa{left:141.573888pt;}
.xe{left:144.000000pt;}
.x22{left:154.713867pt;}
.xc{left:157.066752pt;}
.x3{left:191.200192pt;}
.x1f{left:270.042133pt;}
.x17{left:271.923600pt;}
.x18{left:284.390267pt;}
.x1a{left:291.609333pt;}
.x19{left:313.406267pt;}
.x1b{left:336.885200pt;}
.x10{left:392.000000pt;}
.x8{left:396.666560pt;}
.x1c{left:414.405600pt;}
.xf{left:420.160000pt;}
.x1d{left:438.334533pt;}
.x11{left:444.160000pt;}
.x12{left:468.160000pt;}
.x1e{left:470.037067pt;}
.x24{left:502.613333pt;}
.x5{left:568.000000pt;}
.x15{left:631.713280pt;}
.x14{left:632.866560pt;}
}




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