
    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_2f0fb41b1738fa4c88dffca6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_a546e6b5d42d55bc3516d967.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_9e2724af9bc7db52ada0a16b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.732000;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_86afb35c85dffb004a002118.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_aef05cf75accdef897e8e0d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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;}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,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);}
.m8{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;}
.v2{vertical-align:15.184800px;}
.v1{vertical-align:23.952000px;}
.ls8{letter-spacing:-0.456000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001371px;}
.ls5{letter-spacing:0.018563px;}
.ls9{letter-spacing:0.936000px;}
.ls1{letter-spacing:1.320000px;}
.ls2{letter-spacing:13.464000px;}
.ls7{letter-spacing:53.031429px;}
.ls3{letter-spacing:1197.311400px;}
.ls0{letter-spacing:2264.095200px;}
.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;}
}
.ws86{word-spacing:-12.000000px;}
.ws5d{word-spacing:-10.296000px;}
.ws35{word-spacing:-9.360000px;}
.ws0{word-spacing:-9.120000px;}
.ws15{word-spacing:-8.664000px;}
.ws26{word-spacing:-3.351600px;}
.ws6a{word-spacing:-3.234000px;}
.ws68{word-spacing:-2.998800px;}
.ws7{word-spacing:-2.822400px;}
.ws28{word-spacing:-2.704800px;}
.ws4b{word-spacing:-2.646000px;}
.ws25{word-spacing:-2.528400px;}
.ws69{word-spacing:-2.234400px;}
.ws79{word-spacing:-1.940400px;}
.ws55{word-spacing:-1.646400px;}
.ws94{word-spacing:-1.641600px;}
.ws59{word-spacing:-1.596000px;}
.ws96{word-spacing:-1.550400px;}
.ws27{word-spacing:-1.528800px;}
.wsc{word-spacing:-1.413600px;}
.ws37{word-spacing:-1.234800px;}
.ws8f{word-spacing:-1.185600px;}
.ws9{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.134000px;}
.ws73{word-spacing:-1.048800px;}
.ws22{word-spacing:-0.940800px;}
.ws8c{word-spacing:-0.912000px;}
.ws80{word-spacing:-0.764400px;}
.ws70{word-spacing:-0.705600px;}
.ws6e{word-spacing:-0.646800px;}
.ws83{word-spacing:-0.638400px;}
.ws30{word-spacing:-0.592800px;}
.ws60{word-spacing:-0.588000px;}
.ws7b{word-spacing:-0.529200px;}
.ws40{word-spacing:-0.470400px;}
.ws85{word-spacing:-0.364800px;}
.ws8b{word-spacing:-0.319200px;}
.ws93{word-spacing:-0.228000px;}
.ws2f{word-spacing:-0.182400px;}
.ws5f{word-spacing:-0.176400px;}
.ws21{word-spacing:-0.117600px;}
.ws1a{word-spacing:-0.058800px;}
.ws1{word-spacing:0.000000px;}
.ws7c{word-spacing:0.117600px;}
.ws82{word-spacing:0.136800px;}
.ws5b{word-spacing:0.228000px;}
.ws6c{word-spacing:0.235200px;}
.ws34{word-spacing:0.273600px;}
.ws2b{word-spacing:0.352800px;}
.wsb{word-spacing:0.364800px;}
.wse{word-spacing:0.501600px;}
.ws24{word-spacing:0.529200px;}
.wsd{word-spacing:0.547200px;}
.ws7d{word-spacing:0.588000px;}
.ws1f{word-spacing:0.646800px;}
.ws64{word-spacing:0.705600px;}
.ws50{word-spacing:0.764400px;}
.wsf{word-spacing:0.820800px;}
.ws5a{word-spacing:0.866400px;}
.ws7a{word-spacing:0.882000px;}
.ws84{word-spacing:0.912000px;}
.ws3f{word-spacing:0.940800px;}
.ws33{word-spacing:0.957600px;}
.ws18{word-spacing:0.999600px;}
.ws95{word-spacing:1.094400px;}
.ws6b{word-spacing:1.117200px;}
.ws32{word-spacing:1.185600px;}
.ws17{word-spacing:1.234800px;}
.ws10{word-spacing:1.276800px;}
.ws66{word-spacing:1.293600px;}
.ws58{word-spacing:1.322400px;}
.ws29{word-spacing:1.352400px;}
.ws57{word-spacing:1.413600px;}
.ws1e{word-spacing:1.470000px;}
.ws2c{word-spacing:1.587600px;}
.ws65{word-spacing:1.646400px;}
.ws6f{word-spacing:1.705200px;}
.wsa{word-spacing:1.778400px;}
.ws20{word-spacing:1.822800px;}
.ws71{word-spacing:1.881600px;}
.ws13{word-spacing:1.915200px;}
.ws1d{word-spacing:1.999200px;}
.ws2d{word-spacing:2.006400px;}
.ws38{word-spacing:2.058000px;}
.ws44{word-spacing:2.234400px;}
.ws4d{word-spacing:2.528400px;}
.ws2e{word-spacing:2.599200px;}
.ws81{word-spacing:2.646000px;}
.ws67{word-spacing:2.704800px;}
.ws5e{word-spacing:2.822400px;}
.ws56{word-spacing:2.872800px;}
.ws8{word-spacing:2.881200px;}
.ws46{word-spacing:2.940000px;}
.ws8d{word-spacing:3.009600px;}
.ws88{word-spacing:3.057600px;}
.ws45{word-spacing:3.175200px;}
.ws23{word-spacing:3.351600px;}
.ws78{word-spacing:3.528000px;}
.ws42{word-spacing:3.602400px;}
.ws72{word-spacing:3.648000px;}
.ws39{word-spacing:3.763200px;}
.ws31{word-spacing:3.784800px;}
.ws2a{word-spacing:3.822000px;}
.ws14{word-spacing:3.876000px;}
.ws91{word-spacing:3.967200px;}
.ws77{word-spacing:3.998400px;}
.ws52{word-spacing:4.057200px;}
.ws36{word-spacing:4.174800px;}
.ws48{word-spacing:4.233600px;}
.ws92{word-spacing:4.332000px;}
.ws3b{word-spacing:4.410000px;}
.ws43{word-spacing:4.468800px;}
.ws4a{word-spacing:4.586400px;}
.ws63{word-spacing:4.645200px;}
.ws1c{word-spacing:4.939200px;}
.ws8e{word-spacing:5.107200px;}
.ws6d{word-spacing:5.174400px;}
.ws19{word-spacing:5.292000px;}
.ws47{word-spacing:5.350800px;}
.ws11{word-spacing:5.380800px;}
.ws74{word-spacing:5.409600px;}
.ws4{word-spacing:5.454000px;}
.ws4c{word-spacing:5.468400px;}
.ws53{word-spacing:5.586000px;}
.ws7e{word-spacing:6.115200px;}
.ws49{word-spacing:6.174000px;}
.ws76{word-spacing:6.232800px;}
.ws61{word-spacing:6.291600px;}
.ws89{word-spacing:6.350400px;}
.ws51{word-spacing:6.409200px;}
.ws3d{word-spacing:6.468000px;}
.ws5c{word-spacing:6.520800px;}
.ws54{word-spacing:6.585600px;}
.ws3{word-spacing:6.588000px;}
.ws3a{word-spacing:6.762000px;}
.ws75{word-spacing:7.114800px;}
.ws1b{word-spacing:7.173600px;}
.ws4f{word-spacing:7.408800px;}
.ws90{word-spacing:7.478400px;}
.ws41{word-spacing:7.526400px;}
.ws62{word-spacing:7.644000px;}
.ws3c{word-spacing:8.232000px;}
.ws4e{word-spacing:8.526000px;}
.ws7f{word-spacing:9.349200px;}
.ws87{word-spacing:9.408000px;}
.ws3e{word-spacing:9.643200px;}
.ws8a{word-spacing:9.760800px;}
.ws2{word-spacing:10.422000px;}
.ws6{word-spacing:12.150000px;}
.ws12{word-spacing:12.494400px;}
.ws16{word-spacing:1583.505600px;}
._8{margin-left:-1583.488800px;}
._7{margin-left:-9.120000px;}
._4{margin-left:-7.758000px;}
._a{margin-left:-6.675480px;}
._9{margin-left:-5.661600px;}
._b{margin-left:-4.292400px;}
._6{margin-left:-2.582160px;}
._1{margin-left:-1.008000px;}
._0{width:1.848000px;}
._2{width:3.840000px;}
._3{width:5.031600px;}
._11{width:24.851750px;}
._10{width:28.179918px;}
._f{width:49.430131px;}
._d{width:51.025518px;}
._c{width:53.031918px;}
._5{width:56.908421px;}
._e{width:1250.068800px;}
.fc3{color:rgb(0,80,152);}
.fc4{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fsb{font-size:26.584800px;}
.fs5{font-size:31.482000px;}
.fs7{font-size:34.280400px;}
.fs8{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs9{font-size:46.800000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:58.800000px;}
.fsa{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y7c{bottom:142.440900px;}
.y6f{bottom:142.900800px;}
.yc7{bottom:142.915350px;}
.yb0{bottom:142.924950px;}
.y21{bottom:142.939350px;}
.y8a{bottom:142.942800px;}
.y52{bottom:142.944150px;}
.y53{bottom:142.948950px;}
.y7e{bottom:143.087250px;}
.yc6{bottom:158.670150px;}
.yaf{bottom:158.679750px;}
.y8f{bottom:158.684550px;}
.y20{bottom:158.694150px;}
.y51{bottom:158.698950px;}
.y7b{bottom:160.440900px;}
.y7d{bottom:161.087250px;}
.y6e{bottom:164.656800px;}
.y88{bottom:164.692800px;}
.y89{bottom:164.698800px;}
.yc5{bottom:174.424950px;}
.yae{bottom:174.434550px;}
.y8e{bottom:174.439350px;}
.y1e{bottom:174.444150px;}
.y1f{bottom:174.448950px;}
.y50{bottom:179.958900px;}
.y6d{bottom:186.412800px;}
.y87{bottom:186.448800px;}
.y1c{bottom:190.174950px;}
.yc4{bottom:190.179750px;}
.yad{bottom:190.189350px;}
.y8d{bottom:190.194150px;}
.y1d{bottom:190.198950px;}
.y7a{bottom:195.680100px;}
.y4f{bottom:201.199800px;}
.y1b{bottom:205.929750px;}
.yc3{bottom:205.934550px;}
.yac{bottom:205.944150px;}
.y8c{bottom:205.948950px;}
.y86{bottom:208.156800px;}
.y6c{bottom:208.168800px;}
.y60{bottom:208.186800px;}
.y61{bottom:208.198800px;}
.y79{bottom:211.434900px;}
.y4e{bottom:216.954600px;}
.y1a{bottom:221.684550px;}
.yc2{bottom:221.689350px;}
.yab{bottom:221.698950px;}
.y78{bottom:227.189700px;}
.y85{bottom:229.912800px;}
.y6b{bottom:229.924800px;}
.y5f{bottom:229.942800px;}
.y4d{bottom:232.709400px;}
.y19{bottom:237.439350px;}
.yc1{bottom:237.444150px;}
.y77{bottom:242.944500px;}
.y4c{bottom:248.464200px;}
.y84{bottom:251.668800px;}
.y6a{bottom:251.680800px;}
.y5d{bottom:251.686800px;}
.y5e{bottom:251.698800px;}
.y18{bottom:253.194150px;}
.yc0{bottom:253.198950px;}
.y8b{bottom:256.593900px;}
.y76{bottom:258.699300px;}
.y4b{bottom:264.213150px;}
.y16{bottom:268.944150px;}
.y17{bottom:268.948950px;}
.y83{bottom:273.424800px;}
.y69{bottom:273.436800px;}
.y5c{bottom:273.442800px;}
.y75{bottom:274.454100px;}
.y15{bottom:284.698950px;}
.y4a{bottom:285.474150px;}
.y74{bottom:290.208900px;}
.yaa{bottom:295.162800px;}
.y59{bottom:295.174800px;}
.y82{bottom:295.180800px;}
.y68{bottom:295.192800px;}
.y5b{bottom:295.198800px;}
.y5a{bottom:300.093900px;}
.y14{bottom:300.444150px;}
.y49{bottom:301.228950px;}
.y13{bottom:316.198950px;}
.ya9{bottom:316.918800px;}
.y58{bottom:316.930800px;}
.y81{bottom:316.936800px;}
.y67{bottom:316.948800px;}
.y48{bottom:316.977900px;}
.y12{bottom:337.458900px;}
.y46{bottom:338.234100px;}
.y47{bottom:338.238900px;}
.y66{bottom:338.662800px;}
.ya8{bottom:338.674800px;}
.y57{bottom:338.686800px;}
.y80{bottom:338.692800px;}
.y11{bottom:353.208900px;}
.y45{bottom:353.988900px;}
.y65{bottom:360.418800px;}
.ya7{bottom:360.430800px;}
.y56{bottom:360.442800px;}
.y7f{bottom:360.448800px;}
.y44{bottom:375.248850px;}
.y64{bottom:382.174800px;}
.ya6{bottom:382.186800px;}
.y72{bottom:382.192800px;}
.y55{bottom:382.198800px;}
.y73{bottom:387.093900px;}
.y54{bottom:403.924800px;}
.y63{bottom:403.930800px;}
.ya5{bottom:403.942800px;}
.y71{bottom:403.948800px;}
.y43{bottom:425.680800px;}
.ye{bottom:425.686800px;}
.ya4{bottom:425.692800px;}
.y10{bottom:425.698800px;}
.yf{bottom:430.593900px;}
.y42{bottom:447.436800px;}
.yd{bottom:447.442800px;}
.ya3{bottom:447.448800px;}
.y41{bottom:469.192800px;}
.yc{bottom:469.198800px;}
.ybf{bottom:476.931600px;}
.ya2{bottom:490.936800px;}
.y40{bottom:490.948800px;}
.ybe{bottom:493.427400px;}
.ybd{bottom:509.923200px;}
.ybc{bottom:509.927400px;}
.y3e{bottom:512.692800px;}
.y3f{bottom:517.593900px;}
.ybb{bottom:522.627000px;}
.y3b{bottom:534.442800px;}
.y3d{bottom:534.448800px;}
.yb{bottom:534.456300px;}
.y70{bottom:534.835350px;}
.y90{bottom:535.898250px;}
.y3c{bottom:539.343900px;}
.ya1{bottom:556.150800px;}
.y38{bottom:556.192800px;}
.y3a{bottom:556.198800px;}
.ya{bottom:556.204800px;}
.y62{bottom:556.349100px;}
.y39{bottom:561.093900px;}
.ya0{bottom:577.906800px;}
.y35{bottom:577.930800px;}
.y37{bottom:577.948800px;}
.y9{bottom:577.953300px;}
.y36{bottom:582.843900px;}
.y9f{bottom:599.662800px;}
.y34{bottom:599.686800px;}
.y8{bottom:599.701800px;}
.yba{bottom:610.446750px;}
.yb9{bottom:610.471950px;}
.y9e{bottom:621.418800px;}
.y33{bottom:621.442800px;}
.y7{bottom:621.450300px;}
.yb8{bottom:626.967750px;}
.y9d{bottom:643.174800px;}
.y31{bottom:643.180800px;}
.y6{bottom:643.198800px;}
.yb7{bottom:643.463550px;}
.y32{bottom:648.093900px;}
.yb6{bottom:659.959350px;}
.y9c{bottom:664.930800px;}
.y30{bottom:664.936800px;}
.yb5{bottom:676.455150px;}
.y9b{bottom:686.686800px;}
.y2f{bottom:686.692800px;}
.yb4{bottom:692.950950px;}
.y2c{bottom:708.436800px;}
.y9a{bottom:708.442800px;}
.y2e{bottom:708.448800px;}
.yb3{bottom:709.446750px;}
.y2d{bottom:713.343900px;}
.y98{bottom:730.156800px;}
.y2b{bottom:730.192800px;}
.y99{bottom:730.198800px;}
.y97{bottom:751.912800px;}
.y2a{bottom:751.948800px;}
.y29{bottom:773.650800px;}
.y96{bottom:773.668800px;}
.yb2{bottom:773.698800px;}
.y5{bottom:790.198800px;}
.y28{bottom:795.406800px;}
.y95{bottom:795.424800px;}
.y27{bottom:817.162800px;}
.y94{bottom:817.180800px;}
.y4{bottom:817.198800px;}
.y26{bottom:838.918800px;}
.y93{bottom:838.936800px;}
.y25{bottom:860.674800px;}
.y92{bottom:860.692800px;}
.y3{bottom:860.698800px;}
.y24{bottom:882.430800px;}
.y91{bottom:882.448800px;}
.y23{bottom:904.186800px;}
.y22{bottom:925.942800px;}
.y2{bottom:947.698800px;}
.yb1{bottom:952.593900px;}
.ha{height:24.819010px;}
.h11{height:33.014400px;}
.hf{height:33.883200px;}
.hd{height:34.351200px;}
.h2{height:40.948800px;}
.hb{height:40.953000px;}
.hc{height:40.972200px;}
.he{height:42.026400px;}
.h10{height:44.040000px;}
.h6{height:45.846000px;}
.h7{height:46.744968px;}
.h3{height:47.718000px;}
.h9{height:49.921200px;}
.h8{height:56.034000px;}
.h12{height:56.133600px;}
.h5{height:75.432000px;}
.h4{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x37{left:98.858250px;}
.x1{left:110.551200px;}
.x38{left:114.068100px;}
.x41{left:116.155050px;}
.x50{left:122.616750px;}
.x4d{left:124.981650px;}
.x6{left:131.811000px;}
.x1b{left:134.795700px;}
.x1d{left:136.063050px;}
.x7{left:138.070650px;}
.x3{left:144.567000px;}
.x39{left:149.405550px;}
.x1e{left:150.816450px;}
.x2{left:153.070950px;}
.x17{left:155.785800px;}
.x42{left:159.859800px;}
.x29{left:161.271150px;}
.x31{left:162.324300px;}
.x2b{left:164.159550px;}
.x43{left:165.520800px;}
.x44{left:169.784700px;}
.x1c{left:172.456650px;}
.x2f{left:173.970300px;}
.x4b{left:214.131150px;}
.xc{left:217.208700px;}
.x12{left:219.275700px;}
.x13{left:223.718400px;}
.x22{left:253.408650px;}
.x4c{left:258.475500px;}
.x4e{left:287.785500px;}
.x16{left:345.706050px;}
.x47{left:354.127800px;}
.x3e{left:363.422550px;}
.x45{left:378.411750px;}
.x27{left:380.015850px;}
.x3c{left:382.287450px;}
.x28{left:388.901100px;}
.x48{left:396.728850px;}
.x46{left:422.116500px;}
.x36{left:428.812950px;}
.x10{left:435.352800px;}
.x11{left:439.795500px;}
.xa{left:444.623550px;}
.x2a{left:447.142650px;}
.x49{left:455.915550px;}
.x15{left:471.105750px;}
.x8{left:479.945400px;}
.x4a{left:499.487100px;}
.x26{left:501.393600px;}
.xd{left:505.234350px;}
.xe{left:509.677050px;}
.x4f{left:521.675100px;}
.x4{left:526.718850px;}
.x2c{left:528.564450px;}
.x5{left:531.254100px;}
.x35{left:542.105400px;}
.x18{left:549.158850px;}
.x2d{left:553.868700px;}
.x2e{left:570.810000px;}
.x3a{left:574.568400px;}
.x34{left:581.348100px;}
.x23{left:588.123600px;}
.x30{left:589.994250px;}
.x19{left:593.457150px;}
.x1a{left:597.899850px;}
.x3b{left:599.138100px;}
.x24{left:606.375300px;}
.x14{left:608.865450px;}
.x1f{left:611.314200px;}
.x32{left:612.424500px;}
.x3d{left:614.586150px;}
.x20{left:616.026600px;}
.x25{left:628.029300px;}
.x21{left:632.968050px;}
.x33{left:639.334050px;}
.x9{left:677.358900px;}
.x3f{left:678.393750px;}
.x40{left:688.252350px;}
.xf{left:692.880300px;}
.xb{left:697.323000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.497600pt;}
.v1{vertical-align:21.290667pt;}
.ls8{letter-spacing:-0.405333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001219pt;}
.ls5{letter-spacing:0.016501pt;}
.ls9{letter-spacing:0.832000pt;}
.ls1{letter-spacing:1.173333pt;}
.ls2{letter-spacing:11.968000pt;}
.ls7{letter-spacing:47.139048pt;}
.ls3{letter-spacing:1064.276800pt;}
.ls0{letter-spacing:2012.529067pt;}
.ws86{word-spacing:-10.666667pt;}
.ws5d{word-spacing:-9.152000pt;}
.ws35{word-spacing:-8.320000pt;}
.ws0{word-spacing:-8.106667pt;}
.ws15{word-spacing:-7.701333pt;}
.ws26{word-spacing:-2.979200pt;}
.ws6a{word-spacing:-2.874667pt;}
.ws68{word-spacing:-2.665600pt;}
.ws7{word-spacing:-2.508800pt;}
.ws28{word-spacing:-2.404267pt;}
.ws4b{word-spacing:-2.352000pt;}
.ws25{word-spacing:-2.247467pt;}
.ws69{word-spacing:-1.986133pt;}
.ws79{word-spacing:-1.724800pt;}
.ws55{word-spacing:-1.463467pt;}
.ws94{word-spacing:-1.459200pt;}
.ws59{word-spacing:-1.418667pt;}
.ws96{word-spacing:-1.378133pt;}
.ws27{word-spacing:-1.358933pt;}
.wsc{word-spacing:-1.256533pt;}
.ws37{word-spacing:-1.097600pt;}
.ws8f{word-spacing:-1.053867pt;}
.ws9{word-spacing:-1.013333pt;}
.ws5{word-spacing:-1.008000pt;}
.ws73{word-spacing:-0.932267pt;}
.ws22{word-spacing:-0.836267pt;}
.ws8c{word-spacing:-0.810667pt;}
.ws80{word-spacing:-0.679467pt;}
.ws70{word-spacing:-0.627200pt;}
.ws6e{word-spacing:-0.574933pt;}
.ws83{word-spacing:-0.567467pt;}
.ws30{word-spacing:-0.526933pt;}
.ws60{word-spacing:-0.522667pt;}
.ws7b{word-spacing:-0.470400pt;}
.ws40{word-spacing:-0.418133pt;}
.ws85{word-spacing:-0.324267pt;}
.ws8b{word-spacing:-0.283733pt;}
.ws93{word-spacing:-0.202667pt;}
.ws2f{word-spacing:-0.162133pt;}
.ws5f{word-spacing:-0.156800pt;}
.ws21{word-spacing:-0.104533pt;}
.ws1a{word-spacing:-0.052267pt;}
.ws1{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.104533pt;}
.ws82{word-spacing:0.121600pt;}
.ws5b{word-spacing:0.202667pt;}
.ws6c{word-spacing:0.209067pt;}
.ws34{word-spacing:0.243200pt;}
.ws2b{word-spacing:0.313600pt;}
.wsb{word-spacing:0.324267pt;}
.wse{word-spacing:0.445867pt;}
.ws24{word-spacing:0.470400pt;}
.wsd{word-spacing:0.486400pt;}
.ws7d{word-spacing:0.522667pt;}
.ws1f{word-spacing:0.574933pt;}
.ws64{word-spacing:0.627200pt;}
.ws50{word-spacing:0.679467pt;}
.wsf{word-spacing:0.729600pt;}
.ws5a{word-spacing:0.770133pt;}
.ws7a{word-spacing:0.784000pt;}
.ws84{word-spacing:0.810667pt;}
.ws3f{word-spacing:0.836267pt;}
.ws33{word-spacing:0.851200pt;}
.ws18{word-spacing:0.888533pt;}
.ws95{word-spacing:0.972800pt;}
.ws6b{word-spacing:0.993067pt;}
.ws32{word-spacing:1.053867pt;}
.ws17{word-spacing:1.097600pt;}
.ws10{word-spacing:1.134933pt;}
.ws66{word-spacing:1.149867pt;}
.ws58{word-spacing:1.175467pt;}
.ws29{word-spacing:1.202133pt;}
.ws57{word-spacing:1.256533pt;}
.ws1e{word-spacing:1.306667pt;}
.ws2c{word-spacing:1.411200pt;}
.ws65{word-spacing:1.463467pt;}
.ws6f{word-spacing:1.515733pt;}
.wsa{word-spacing:1.580800pt;}
.ws20{word-spacing:1.620267pt;}
.ws71{word-spacing:1.672533pt;}
.ws13{word-spacing:1.702400pt;}
.ws1d{word-spacing:1.777067pt;}
.ws2d{word-spacing:1.783467pt;}
.ws38{word-spacing:1.829333pt;}
.ws44{word-spacing:1.986133pt;}
.ws4d{word-spacing:2.247467pt;}
.ws2e{word-spacing:2.310400pt;}
.ws81{word-spacing:2.352000pt;}
.ws67{word-spacing:2.404267pt;}
.ws5e{word-spacing:2.508800pt;}
.ws56{word-spacing:2.553600pt;}
.ws8{word-spacing:2.561067pt;}
.ws46{word-spacing:2.613333pt;}
.ws8d{word-spacing:2.675200pt;}
.ws88{word-spacing:2.717867pt;}
.ws45{word-spacing:2.822400pt;}
.ws23{word-spacing:2.979200pt;}
.ws78{word-spacing:3.136000pt;}
.ws42{word-spacing:3.202133pt;}
.ws72{word-spacing:3.242667pt;}
.ws39{word-spacing:3.345067pt;}
.ws31{word-spacing:3.364267pt;}
.ws2a{word-spacing:3.397333pt;}
.ws14{word-spacing:3.445333pt;}
.ws91{word-spacing:3.526400pt;}
.ws77{word-spacing:3.554133pt;}
.ws52{word-spacing:3.606400pt;}
.ws36{word-spacing:3.710933pt;}
.ws48{word-spacing:3.763200pt;}
.ws92{word-spacing:3.850667pt;}
.ws3b{word-spacing:3.920000pt;}
.ws43{word-spacing:3.972267pt;}
.ws4a{word-spacing:4.076800pt;}
.ws63{word-spacing:4.129067pt;}
.ws1c{word-spacing:4.390400pt;}
.ws8e{word-spacing:4.539733pt;}
.ws6d{word-spacing:4.599467pt;}
.ws19{word-spacing:4.704000pt;}
.ws47{word-spacing:4.756267pt;}
.ws11{word-spacing:4.782933pt;}
.ws74{word-spacing:4.808533pt;}
.ws4{word-spacing:4.848000pt;}
.ws4c{word-spacing:4.860800pt;}
.ws53{word-spacing:4.965333pt;}
.ws7e{word-spacing:5.435733pt;}
.ws49{word-spacing:5.488000pt;}
.ws76{word-spacing:5.540267pt;}
.ws61{word-spacing:5.592533pt;}
.ws89{word-spacing:5.644800pt;}
.ws51{word-spacing:5.697067pt;}
.ws3d{word-spacing:5.749333pt;}
.ws5c{word-spacing:5.796267pt;}
.ws54{word-spacing:5.853867pt;}
.ws3{word-spacing:5.856000pt;}
.ws3a{word-spacing:6.010667pt;}
.ws75{word-spacing:6.324267pt;}
.ws1b{word-spacing:6.376533pt;}
.ws4f{word-spacing:6.585600pt;}
.ws90{word-spacing:6.647467pt;}
.ws41{word-spacing:6.690133pt;}
.ws62{word-spacing:6.794667pt;}
.ws3c{word-spacing:7.317333pt;}
.ws4e{word-spacing:7.578667pt;}
.ws7f{word-spacing:8.310400pt;}
.ws87{word-spacing:8.362667pt;}
.ws3e{word-spacing:8.571733pt;}
.ws8a{word-spacing:8.676267pt;}
.ws2{word-spacing:9.264000pt;}
.ws6{word-spacing:10.800000pt;}
.ws12{word-spacing:11.106133pt;}
.ws16{word-spacing:1407.560533pt;}
._8{margin-left:-1407.545600pt;}
._7{margin-left:-8.106667pt;}
._4{margin-left:-6.896000pt;}
._a{margin-left:-5.933760pt;}
._9{margin-left:-5.032533pt;}
._b{margin-left:-3.815467pt;}
._6{margin-left:-2.295253pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.642667pt;}
._2{width:3.413333pt;}
._3{width:4.472533pt;}
._11{width:22.090444pt;}
._10{width:25.048816pt;}
._f{width:43.937894pt;}
._d{width:45.356016pt;}
._c{width:47.139483pt;}
._5{width:50.585263pt;}
._e{width:1111.172267pt;}
.fsb{font-size:23.630933pt;}
.fs5{font-size:27.984000pt;}
.fs7{font-size:30.471467pt;}
.fs8{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs9{font-size:41.600000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:52.266667pt;}
.fsa{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y7c{bottom:126.614133pt;}
.y6f{bottom:127.022933pt;}
.yc7{bottom:127.035867pt;}
.yb0{bottom:127.044400pt;}
.y21{bottom:127.057200pt;}
.y8a{bottom:127.060267pt;}
.y52{bottom:127.061467pt;}
.y53{bottom:127.065733pt;}
.y7e{bottom:127.188667pt;}
.yc6{bottom:141.040133pt;}
.yaf{bottom:141.048667pt;}
.y8f{bottom:141.052933pt;}
.y20{bottom:141.061467pt;}
.y51{bottom:141.065733pt;}
.y7b{bottom:142.614133pt;}
.y7d{bottom:143.188667pt;}
.y6e{bottom:146.361600pt;}
.y88{bottom:146.393600pt;}
.y89{bottom:146.398933pt;}
.yc5{bottom:155.044400pt;}
.yae{bottom:155.052933pt;}
.y8e{bottom:155.057200pt;}
.y1e{bottom:155.061467pt;}
.y1f{bottom:155.065733pt;}
.y50{bottom:159.963467pt;}
.y6d{bottom:165.700267pt;}
.y87{bottom:165.732267pt;}
.y1c{bottom:169.044400pt;}
.yc4{bottom:169.048667pt;}
.yad{bottom:169.057200pt;}
.y8d{bottom:169.061467pt;}
.y1d{bottom:169.065733pt;}
.y7a{bottom:173.937867pt;}
.y4f{bottom:178.844267pt;}
.y1b{bottom:183.048667pt;}
.yc3{bottom:183.052933pt;}
.yac{bottom:183.061467pt;}
.y8c{bottom:183.065733pt;}
.y86{bottom:185.028267pt;}
.y6c{bottom:185.038933pt;}
.y60{bottom:185.054933pt;}
.y61{bottom:185.065600pt;}
.y79{bottom:187.942133pt;}
.y4e{bottom:192.848533pt;}
.y1a{bottom:197.052933pt;}
.yc2{bottom:197.057200pt;}
.yab{bottom:197.065733pt;}
.y78{bottom:201.946400pt;}
.y85{bottom:204.366933pt;}
.y6b{bottom:204.377600pt;}
.y5f{bottom:204.393600pt;}
.y4d{bottom:206.852800pt;}
.y19{bottom:211.057200pt;}
.yc1{bottom:211.061467pt;}
.y77{bottom:215.950667pt;}
.y4c{bottom:220.857067pt;}
.y84{bottom:223.705600pt;}
.y6a{bottom:223.716267pt;}
.y5d{bottom:223.721600pt;}
.y5e{bottom:223.732267pt;}
.y18{bottom:225.061467pt;}
.yc0{bottom:225.065733pt;}
.y8b{bottom:228.083467pt;}
.y76{bottom:229.954933pt;}
.y4b{bottom:234.856133pt;}
.y16{bottom:239.061467pt;}
.y17{bottom:239.065733pt;}
.y83{bottom:243.044267pt;}
.y69{bottom:243.054933pt;}
.y5c{bottom:243.060267pt;}
.y75{bottom:243.959200pt;}
.y15{bottom:253.065733pt;}
.y4a{bottom:253.754800pt;}
.y74{bottom:257.963467pt;}
.yaa{bottom:262.366933pt;}
.y59{bottom:262.377600pt;}
.y82{bottom:262.382933pt;}
.y68{bottom:262.393600pt;}
.y5b{bottom:262.398933pt;}
.y5a{bottom:266.750133pt;}
.y14{bottom:267.061467pt;}
.y49{bottom:267.759067pt;}
.y13{bottom:281.065733pt;}
.ya9{bottom:281.705600pt;}
.y58{bottom:281.716267pt;}
.y81{bottom:281.721600pt;}
.y67{bottom:281.732267pt;}
.y48{bottom:281.758133pt;}
.y12{bottom:299.963467pt;}
.y46{bottom:300.652533pt;}
.y47{bottom:300.656800pt;}
.y66{bottom:301.033600pt;}
.ya8{bottom:301.044267pt;}
.y57{bottom:301.054933pt;}
.y80{bottom:301.060267pt;}
.y11{bottom:313.963467pt;}
.y45{bottom:314.656800pt;}
.y65{bottom:320.372267pt;}
.ya7{bottom:320.382933pt;}
.y56{bottom:320.393600pt;}
.y7f{bottom:320.398933pt;}
.y44{bottom:333.554533pt;}
.y64{bottom:339.710933pt;}
.ya6{bottom:339.721600pt;}
.y72{bottom:339.726933pt;}
.y55{bottom:339.732267pt;}
.y73{bottom:344.083467pt;}
.y54{bottom:359.044267pt;}
.y63{bottom:359.049600pt;}
.ya5{bottom:359.060267pt;}
.y71{bottom:359.065600pt;}
.y43{bottom:378.382933pt;}
.ye{bottom:378.388267pt;}
.ya4{bottom:378.393600pt;}
.y10{bottom:378.398933pt;}
.yf{bottom:382.750133pt;}
.y42{bottom:397.721600pt;}
.yd{bottom:397.726933pt;}
.ya3{bottom:397.732267pt;}
.y41{bottom:417.060267pt;}
.yc{bottom:417.065600pt;}
.ybf{bottom:423.939200pt;}
.ya2{bottom:436.388267pt;}
.y40{bottom:436.398933pt;}
.ybe{bottom:438.602133pt;}
.ybd{bottom:453.265067pt;}
.ybc{bottom:453.268800pt;}
.y3e{bottom:455.726933pt;}
.y3f{bottom:460.083467pt;}
.ybb{bottom:464.557333pt;}
.y3b{bottom:475.060267pt;}
.y3d{bottom:475.065600pt;}
.yb{bottom:475.072267pt;}
.y70{bottom:475.409200pt;}
.y90{bottom:476.354000pt;}
.y3c{bottom:479.416800pt;}
.ya1{bottom:494.356267pt;}
.y38{bottom:494.393600pt;}
.y3a{bottom:494.398933pt;}
.ya{bottom:494.404267pt;}
.y62{bottom:494.532533pt;}
.y39{bottom:498.750133pt;}
.ya0{bottom:513.694933pt;}
.y35{bottom:513.716267pt;}
.y37{bottom:513.732267pt;}
.y9{bottom:513.736267pt;}
.y36{bottom:518.083467pt;}
.y9f{bottom:533.033600pt;}
.y34{bottom:533.054933pt;}
.y8{bottom:533.068267pt;}
.yba{bottom:542.619333pt;}
.yb9{bottom:542.641733pt;}
.y9e{bottom:552.372267pt;}
.y33{bottom:552.393600pt;}
.y7{bottom:552.400267pt;}
.yb8{bottom:557.304667pt;}
.y9d{bottom:571.710933pt;}
.y31{bottom:571.716267pt;}
.y6{bottom:571.732267pt;}
.yb7{bottom:571.967600pt;}
.y32{bottom:576.083467pt;}
.yb6{bottom:586.630533pt;}
.y9c{bottom:591.049600pt;}
.y30{bottom:591.054933pt;}
.yb5{bottom:601.293467pt;}
.y9b{bottom:610.388267pt;}
.y2f{bottom:610.393600pt;}
.yb4{bottom:615.956400pt;}
.y2c{bottom:629.721600pt;}
.y9a{bottom:629.726933pt;}
.y2e{bottom:629.732267pt;}
.yb3{bottom:630.619333pt;}
.y2d{bottom:634.083467pt;}
.y98{bottom:649.028267pt;}
.y2b{bottom:649.060267pt;}
.y99{bottom:649.065600pt;}
.y97{bottom:668.366933pt;}
.y2a{bottom:668.398933pt;}
.y29{bottom:687.689600pt;}
.y96{bottom:687.705600pt;}
.yb2{bottom:687.732267pt;}
.y5{bottom:702.398933pt;}
.y28{bottom:707.028267pt;}
.y95{bottom:707.044267pt;}
.y27{bottom:726.366933pt;}
.y94{bottom:726.382933pt;}
.y4{bottom:726.398933pt;}
.y26{bottom:745.705600pt;}
.y93{bottom:745.721600pt;}
.y25{bottom:765.044267pt;}
.y92{bottom:765.060267pt;}
.y3{bottom:765.065600pt;}
.y24{bottom:784.382933pt;}
.y91{bottom:784.398933pt;}
.y23{bottom:803.721600pt;}
.y22{bottom:823.060267pt;}
.y2{bottom:842.398933pt;}
.yb1{bottom:846.750133pt;}
.ha{height:22.061342pt;}
.h11{height:29.346133pt;}
.hf{height:30.118400pt;}
.hd{height:30.534400pt;}
.h2{height:36.398933pt;}
.hb{height:36.402667pt;}
.hc{height:36.419733pt;}
.he{height:37.356800pt;}
.h10{height:39.146667pt;}
.h6{height:40.752000pt;}
.h7{height:41.551083pt;}
.h3{height:42.416000pt;}
.h9{height:44.374400pt;}
.h8{height:49.808000pt;}
.h12{height:49.896533pt;}
.h5{height:67.050667pt;}
.h4{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x37{left:87.874000pt;}
.x1{left:98.267733pt;}
.x38{left:101.393867pt;}
.x41{left:103.248933pt;}
.x50{left:108.992667pt;}
.x4d{left:111.094800pt;}
.x6{left:117.165333pt;}
.x1b{left:119.818400pt;}
.x1d{left:120.944933pt;}
.x7{left:122.729467pt;}
.x3{left:128.504000pt;}
.x39{left:132.804933pt;}
.x1e{left:134.059067pt;}
.x2{left:136.063067pt;}
.x17{left:138.476267pt;}
.x42{left:142.097600pt;}
.x29{left:143.352133pt;}
.x31{left:144.288267pt;}
.x2b{left:145.919600pt;}
.x43{left:147.129600pt;}
.x44{left:150.919733pt;}
.x1c{left:153.294800pt;}
.x2f{left:154.640267pt;}
.x4b{left:190.338800pt;}
.xc{left:193.074400pt;}
.x12{left:194.911733pt;}
.x13{left:198.860800pt;}
.x22{left:225.252133pt;}
.x4c{left:229.756000pt;}
.x4e{left:255.809333pt;}
.x16{left:307.294267pt;}
.x47{left:314.780267pt;}
.x3e{left:323.042267pt;}
.x45{left:336.366000pt;}
.x27{left:337.791867pt;}
.x3c{left:339.811067pt;}
.x28{left:345.689867pt;}
.x48{left:352.647867pt;}
.x46{left:375.214667pt;}
.x36{left:381.167067pt;}
.x10{left:386.980267pt;}
.x11{left:390.929333pt;}
.xa{left:395.220933pt;}
.x2a{left:397.460133pt;}
.x49{left:405.258267pt;}
.x15{left:418.760667pt;}
.x8{left:426.618133pt;}
.x4a{left:443.988533pt;}
.x26{left:445.683200pt;}
.xd{left:449.097200pt;}
.xe{left:453.046267pt;}
.x4f{left:463.711200pt;}
.x4{left:468.194533pt;}
.x2c{left:469.835067pt;}
.x5{left:472.225867pt;}
.x35{left:481.871467pt;}
.x18{left:488.141200pt;}
.x2d{left:492.327733pt;}
.x2e{left:507.386667pt;}
.x3a{left:510.727467pt;}
.x34{left:516.753867pt;}
.x23{left:522.776533pt;}
.x30{left:524.439333pt;}
.x19{left:527.517467pt;}
.x1a{left:531.466533pt;}
.x3b{left:532.567200pt;}
.x24{left:539.000267pt;}
.x14{left:541.213733pt;}
.x1f{left:543.390400pt;}
.x32{left:544.377333pt;}
.x3d{left:546.298800pt;}
.x20{left:547.579200pt;}
.x25{left:558.248267pt;}
.x21{left:562.638267pt;}
.x33{left:568.296933pt;}
.x9{left:602.096800pt;}
.x3f{left:603.016667pt;}
.x40{left:611.779867pt;}
.xf{left:615.893600pt;}
.xb{left:619.842667pt;}
}




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