
    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_d9f7f13793ca9b3950898aca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.424316;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_0b777748706b6d899756cb82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.361816;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_c98f35543d3674265bd396f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.350098;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_e7e77a130cf8e3c9bbbedfdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.332520;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_afc19e1f5ce75dc4d116f9d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.291016;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_5be45c276b0a991f11e85b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_7b04119687f3f4947582575c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331055;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_70813a26e8e7656dc54b0ae9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331055;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_5d103ba32ea3f072b938b8f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080500;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_796f71aefe8c65f8f1f80b87.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.349609;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008220px;}
.ls5{letter-spacing:0.009120px;}
.ls2{letter-spacing:0.010980px;}
.ls1{letter-spacing:18.336900px;}
.ls3{letter-spacing:33.808020px;}
.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;}
}
.ws1{word-spacing:-0.396000px;}
.ws6f{word-spacing:-0.082980px;}
.ws4b{word-spacing:-0.072000px;}
.wsca{word-spacing:-0.069120px;}
.ws18{word-spacing:-0.066000px;}
.wsc8{word-spacing:-0.062220px;}
.ws98{word-spacing:-0.060000px;}
.wsc9{word-spacing:-0.054000px;}
.ws56{word-spacing:-0.048000px;}
.ws15{word-spacing:0.000000px;}
.ws5{word-spacing:13.393860px;}
.ws6{word-spacing:13.401900px;}
.ws45{word-spacing:13.824000px;}
.ws46{word-spacing:13.860000px;}
.wsa0{word-spacing:13.896000px;}
.wscb{word-spacing:14.887980px;}
.ws14{word-spacing:14.957160px;}
.wscc{word-spacing:14.992860px;}
.ws7{word-spacing:14.993880px;}
.ws1d{word-spacing:16.410780px;}
.wsc6{word-spacing:16.619040px;}
.wsc7{word-spacing:16.659840px;}
.ws4{word-spacing:17.730540px;}
.ws9e{word-spacing:18.265500px;}
.ws29{word-spacing:18.270900px;}
.ws4f{word-spacing:18.271440px;}
.ws1e{word-spacing:18.280920px;}
.ws9{word-spacing:18.280980px;}
.ws55{word-spacing:18.282000px;}
.ws58{word-spacing:18.325380px;}
.ws95{word-spacing:18.447120px;}
.ws9a{word-spacing:18.568500px;}
.ws37{word-spacing:18.614280px;}
.wsae{word-spacing:18.670620px;}
.wsab{word-spacing:18.747480px;}
.wsc5{word-spacing:18.785160px;}
.wsc3{word-spacing:18.795180px;}
.wsc0{word-spacing:18.847860px;}
.ws91{word-spacing:18.916440px;}
.ws36{word-spacing:19.186920px;}
.ws83{word-spacing:19.670640px;}
.ws63{word-spacing:19.691760px;}
.ws62{word-spacing:19.820280px;}
.ws33{word-spacing:19.874700px;}
.ws8b{word-spacing:19.880880px;}
.ws2e{word-spacing:19.942860px;}
.ws5c{word-spacing:19.948740px;}
.wsc2{word-spacing:19.991820px;}
.ws9f{word-spacing:19.992420px;}
.ws94{word-spacing:20.122980px;}
.ws9b{word-spacing:20.256540px;}
.ws4e{word-spacing:20.276820px;}
.wsc4{word-spacing:20.503800px;}
.ws35{word-spacing:20.597460px;}
.ws90{word-spacing:20.636760px;}
.ws12{word-spacing:21.093840px;}
.wsa3{word-spacing:21.096600px;}
.ws42{word-spacing:21.289200px;}
.ws22{word-spacing:21.561780px;}
.ws2d{word-spacing:21.604740px;}
.ws23{word-spacing:21.604800px;}
.ws8a{word-spacing:21.698640px;}
.ws78{word-spacing:21.880620px;}
.ws57{word-spacing:22.008840px;}
.ws40{word-spacing:22.011780px;}
.ws17{word-spacing:22.137360px;}
.ws16{word-spacing:22.147440px;}
.wse{word-spacing:22.315980px;}
.ws43{word-spacing:22.351620px;}
.wsa4{word-spacing:22.915080px;}
.ws99{word-spacing:23.155980px;}
.ws89{word-spacing:23.227020px;}
.ws88{word-spacing:23.406900px;}
.wsa9{word-spacing:23.434500px;}
.ws54{word-spacing:23.467260px;}
.ws21{word-spacing:23.477580px;}
.ws44{word-spacing:23.624160px;}
.ws9d{word-spacing:23.643540px;}
.ws3{word-spacing:23.643720px;}
.ws87{word-spacing:23.704680px;}
.ws2f{word-spacing:23.862780px;}
.ws30{word-spacing:23.978580px;}
.ws3e{word-spacing:24.375660px;}
.wsa5{word-spacing:24.698820px;}
.ws1b{word-spacing:24.703020px;}
.ws1c{word-spacing:24.713100px;}
.ws7c{word-spacing:24.740100px;}
.wsa{word-spacing:24.881220px;}
.ws31{word-spacing:25.016400px;}
.ws82{word-spacing:25.199340px;}
.ws24{word-spacing:25.364940px;}
.wsb7{word-spacing:25.377720px;}
.ws59{word-spacing:25.448580px;}
.ws5b{word-spacing:25.493460px;}
.ws1a{word-spacing:25.705080px;}
.ws19{word-spacing:25.721640px;}
.wsb6{word-spacing:25.799640px;}
.ws11{word-spacing:26.255400px;}
.ws3a{word-spacing:26.295900px;}
.ws1f{word-spacing:26.590500px;}
.ws13{word-spacing:26.655720px;}
.ws32{word-spacing:26.922900px;}
.wsa6{word-spacing:26.955120px;}
.wsc{word-spacing:27.448920px;}
.wsb8{word-spacing:27.684780px;}
.ws5a{word-spacing:27.768000px;}
.ws26{word-spacing:27.969660px;}
.ws73{word-spacing:28.027440px;}
.wsb1{word-spacing:28.233900px;}
.ws69{word-spacing:28.274580px;}
.ws10{word-spacing:29.385600px;}
.ws8{word-spacing:29.456040px;}
.wsb{word-spacing:29.685180px;}
.ws20{word-spacing:30.147060px;}
.wsd{word-spacing:30.161940px;}
.ws3c{word-spacing:30.238620px;}
.wsbf{word-spacing:30.279600px;}
.ws72{word-spacing:30.575400px;}
.wsa1{word-spacing:30.584940px;}
.ws3d{word-spacing:30.831480px;}
.wsa7{word-spacing:31.262700px;}
.wsad{word-spacing:31.605600px;}
.ws5d{word-spacing:32.132700px;}
.ws38{word-spacing:32.408160px;}
.wsbe{word-spacing:33.032280px;}
.wsa2{word-spacing:33.365400px;}
.wsb9{word-spacing:33.747540px;}
.wsa8{word-spacing:34.104780px;}
.ws28{word-spacing:34.171920px;}
.ws5e{word-spacing:35.113980px;}
.ws75{word-spacing:35.313720px;}
.ws71{word-spacing:35.416020px;}
.wsc1{word-spacing:35.540460px;}
.wsac{word-spacing:35.622720px;}
.ws3b{word-spacing:36.042060px;}
.ws6c{word-spacing:36.127680px;}
.ws61{word-spacing:36.181980px;}
.ws41{word-spacing:36.263220px;}
.wsba{word-spacing:36.820440px;}
.ws7b{word-spacing:37.436880px;}
.ws96{word-spacing:37.464300px;}
.ws7a{word-spacing:37.762380px;}
.ws74{word-spacing:38.119560px;}
.ws39{word-spacing:38.222400px;}
.ws2c{word-spacing:38.596620px;}
.ws84{word-spacing:38.730660px;}
.ws86{word-spacing:38.731200px;}
.ws85{word-spacing:38.735640px;}
.ws3f{word-spacing:39.024480px;}
.ws53{word-spacing:39.327480px;}
.ws6b{word-spacing:39.422940px;}
.ws60{word-spacing:39.471300px;}
.ws64{word-spacing:40.071600px;}
.ws6e{word-spacing:40.319640px;}
.ws6d{word-spacing:40.324620px;}
.ws70{word-spacing:40.329720px;}
.ws48{word-spacing:40.454460px;}
.ws47{word-spacing:40.459440px;}
.ws65{word-spacing:40.601040px;}
.ws68{word-spacing:40.644000px;}
.ws2a{word-spacing:41.040480px;}
.ws79{word-spacing:41.170620px;}
.wsaa{word-spacing:42.024360px;}
.ws25{word-spacing:42.415500px;}
.ws97{word-spacing:42.743880px;}
.ws52{word-spacing:42.963240px;}
.ws9c{word-spacing:43.236780px;}
.ws49{word-spacing:44.143140px;}
.ws93{word-spacing:44.352480px;}
.ws92{word-spacing:45.446520px;}
.ws67{word-spacing:46.138140px;}
.wsf{word-spacing:46.580520px;}
.ws27{word-spacing:47.375700px;}
.ws7d{word-spacing:49.536660px;}
.ws2b{word-spacing:50.076120px;}
.ws4c{word-spacing:50.493600px;}
.ws66{word-spacing:50.881080px;}
.ws8e{word-spacing:52.327980px;}
.wsb5{word-spacing:52.549500px;}
.ws80{word-spacing:54.132960px;}
.ws7f{word-spacing:54.137940px;}
.ws8c{word-spacing:56.906520px;}
.ws8f{word-spacing:57.085020px;}
.ws81{word-spacing:59.065080px;}
.wsb3{word-spacing:60.908580px;}
.ws76{word-spacing:61.621260px;}
.ws50{word-spacing:62.928780px;}
.ws2{word-spacing:62.961900px;}
.ws4d{word-spacing:68.632740px;}
.ws51{word-spacing:68.699160px;}
.wsb2{word-spacing:69.252480px;}
.wsbc{word-spacing:70.153920px;}
.ws34{word-spacing:72.508020px;}
.wsbb{word-spacing:76.531500px;}
.ws0{word-spacing:76.679460px;}
.wsbd{word-spacing:83.777040px;}
.wsb4{word-spacing:83.842020px;}
.ws77{word-spacing:86.428440px;}
.ws6a{word-spacing:86.490960px;}
.ws4a{word-spacing:91.915140px;}
.ws5f{word-spacing:99.685020px;}
.ws8d{word-spacing:109.555380px;}
.wsaf{word-spacing:114.908160px;}
.wsb0{word-spacing:114.912660px;}
.ws7e{word-spacing:176.765100px;}
._1{margin-left:-28.133040px;}
._6{margin-left:-7.942680px;}
._9{margin-left:-5.401320px;}
._5{margin-left:-3.559620px;}
._14{margin-left:-2.521080px;}
._3{margin-left:-1.440600px;}
._0{width:1.104000px;}
._8{width:4.211820px;}
._2{width:13.220100px;}
._4{width:14.911860px;}
._12{width:16.457940px;}
._a{width:18.929940px;}
._b{width:20.124840px;}
._15{width:24.648900px;}
._f{width:28.407600px;}
._7{width:30.136620px;}
._19{width:31.195080px;}
._d{width:34.641360px;}
._c{width:36.181860px;}
._18{width:37.844340px;}
._13{width:42.667500px;}
._e{width:44.234520px;}
._17{width:48.846900px;}
._11{width:59.258040px;}
._10{width:123.505200px;}
._16{width:125.431260px;}
.fc5{color:rgb(25,84,255);}
.fc4{color:rgb(240,248,255);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(69,139,0);}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs2{font-size:132.000000px;}
.fs0{font-size:276.000000px;}
.fs1{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:97.518285px;}
.y1a{bottom:98.505000px;}
.y23{bottom:98.657340px;}
.y7{bottom:142.518285px;}
.yb5{bottom:143.822550px;}
.y6{bottom:165.018285px;}
.y59{bottom:166.322550px;}
.yb4{bottom:170.822550px;}
.y58{bottom:193.322550px;}
.y8c{bottom:196.550505px;}
.yb3{bottom:197.822550px;}
.y30{bottom:205.444515px;}
.y5{bottom:210.018285px;}
.y17{bottom:220.937550px;}
.y8b{bottom:223.550505px;}
.yb2{bottom:224.822550px;}
.y2f{bottom:232.444515px;}
.y4{bottom:232.518285px;}
.y46{bottom:236.944515px;}
.y57{bottom:241.322550px;}
.yd6{bottom:244.322550px;}
.y16{bottom:247.937550px;}
.y8a{bottom:250.550505px;}
.yb1{bottom:251.822550px;}
.y45{bottom:263.944515px;}
.y56{bottom:268.322550px;}
.yd5{bottom:271.322550px;}
.y15{bottom:274.937550px;}
.y89{bottom:277.550505px;}
.y2e{bottom:286.444515px;}
.y44{bottom:290.944515px;}
.y55{bottom:295.322550px;}
.y3{bottom:295.569030px;}
.yd4{bottom:298.322550px;}
.yb0{bottom:307.528005px;}
.y2d{bottom:313.444515px;}
.y63{bottom:321.492825px;}
.yd3{bottom:325.322550px;}
.y14{bottom:328.937550px;}
.y54{bottom:331.322550px;}
.yaf{bottom:334.528005px;}
.y43{bottom:337.322550px;}
.y6e{bottom:337.715505px;}
.y2c{bottom:340.444515px;}
.ydb{bottom:345.327825px;}
.y83{bottom:348.050505px;}
.y62{bottom:351.492825px;}
.yd2{bottom:352.322550px;}
.y13{bottom:355.937550px;}
.y53{bottom:358.322550px;}
.yf2{bottom:358.740405px;}
.y9c{bottom:360.215505px;}
.yae{bottom:361.528005px;}
.y42{bottom:364.322550px;}
.y6d{bottom:364.715505px;}
.y2{bottom:373.245300px;}
.y82{bottom:375.050505px;}
.yd1{bottom:379.322550px;}
.yf1{bottom:381.240405px;}
.y61{bottom:381.492825px;}
.yda{bottom:382.827825px;}
.y12{bottom:382.937550px;}
.y9b{bottom:387.215505px;}
.yad{bottom:388.528005px;}
.y6c{bottom:391.715505px;}
.ye6{bottom:392.862825px;}
.y2b{bottom:394.444515px;}
.y81{bottom:402.050505px;}
.yf0{bottom:403.740405px;}
.y40{bottom:410.822550px;}
.y60{bottom:411.492825px;}
.y9a{bottom:414.215505px;}
.y6b{bottom:418.715505px;}
.yd9{bottom:420.327825px;}
.y2a{bottom:421.444515px;}
.y88{bottom:423.492825px;}
.y80{bottom:429.050505px;}
.ye5{bottom:430.362825px;}
.y11{bottom:436.937550px;}
.y3f{bottom:437.822550px;}
.yd0{bottom:439.730505px;}
.y99{bottom:441.215505px;}
.y5f{bottom:441.492825px;}
.yf5{bottom:445.894215px;}
.y29{bottom:448.444515px;}
.ybc{bottom:450.492825px;}
.y87{bottom:453.492825px;}
.y7f{bottom:456.050505px;}
.yd8{bottom:457.827825px;}
.yac{bottom:459.215505px;}
.y10{bottom:463.937550px;}
.y3e{bottom:464.822550px;}
.ycf{bottom:466.730505px;}
.y98{bottom:468.215505px;}
.y5e{bottom:471.492825px;}
.yf4{bottom:472.894215px;}
.y1{bottom:473.024595px;}
.y28{bottom:475.444515px;}
.y7e{bottom:483.050505px;}
.y86{bottom:483.492825px;}
.y6a{bottom:484.950240px;}
.yab{bottom:486.215505px;}
.ybb{bottom:487.992825px;}
.yf{bottom:490.937550px;}
.yce{bottom:493.730505px;}
.y97{bottom:495.215505px;}
.ye4{bottom:497.862825px;}
.yf3{bottom:499.894215px;}
.y5d{bottom:501.492825px;}
.y27{bottom:502.444515px;}
.y3d{bottom:509.822550px;}
.y7d{bottom:510.050505px;}
.y69{bottom:511.950240px;}
.yaa{bottom:513.215505px;}
.y85{bottom:513.492825px;}
.ycd{bottom:520.730505px;}
.yd7{bottom:525.327825px;}
.yba{bottom:525.492825px;}
.y26{bottom:529.444515px;}
.y5c{bottom:531.492825px;}
.y3c{bottom:536.822550px;}
.y7c{bottom:537.050505px;}
.y68{bottom:538.950240px;}
.yeb{bottom:539.414595px;}
.ya9{bottom:540.215505px;}
.ye{bottom:544.937550px;}
.ycc{bottom:547.730505px;}
.yea{bottom:561.914595px;}
.yb9{bottom:562.992825px;}
.y7b{bottom:564.050505px;}
.y67{bottom:565.950240px;}
.ya8{bottom:567.215505px;}
.yd{bottom:571.937550px;}
.ycb{bottom:574.730505px;}
.y25{bottom:575.123460px;}
.y3b{bottom:580.444515px;}
.ye9{bottom:584.414595px;}
.y7a{bottom:591.050505px;}
.y5b{bottom:591.492825px;}
.y66{bottom:592.950240px;}
.ya7{bottom:594.215505px;}
.yc{bottom:598.937550px;}
.yb8{bottom:600.492825px;}
.y84{bottom:603.492825px;}
.ye3{bottom:609.215505px;}
.y3a{bottom:617.807550px;}
.y79{bottom:618.050505px;}
.y65{bottom:619.950240px;}
.ya6{bottom:621.215505px;}
.yb{bottom:625.937550px;}
.y24{bottom:626.807550px;}
.yef{bottom:629.414595px;}
.yca{bottom:636.215505px;}
.yb7{bottom:637.992825px;}
.y39{bottom:644.807550px;}
.y78{bottom:645.050505px;}
.y96{bottom:646.950240px;}
.ya5{bottom:648.215505px;}
.y1e{bottom:653.807550px;}
.yee{bottom:656.414595px;}
.yc9{bottom:663.215505px;}
.y38{bottom:671.807550px;}
.ye8{bottom:673.550505px;}
.y95{bottom:673.950240px;}
.ya4{bottom:675.215505px;}
.yb6{bottom:675.492825px;}
.ya{bottom:679.937550px;}
.y1d{bottom:680.807550px;}
.yed{bottom:683.414595px;}
.yc8{bottom:690.215505px;}
.ye7{bottom:700.550505px;}
.y94{bottom:700.950240px;}
.ya3{bottom:702.215505px;}
.y9{bottom:706.937550px;}
.y1c{bottom:707.807550px;}
.y64{bottom:710.123460px;}
.yec{bottom:710.414595px;}
.y77{bottom:711.050505px;}
.yc7{bottom:717.215505px;}
.y41{bottom:727.220505px;}
.y93{bottom:727.950240px;}
.y1b{bottom:734.807550px;}
.y52{bottom:737.822550px;}
.yc6{bottom:744.215505px;}
.y92{bottom:754.950240px;}
.y51{bottom:764.822550px;}
.ya2{bottom:768.215505px;}
.yc5{bottom:771.215505px;}
.ye2{bottom:772.279515px;}
.y18{bottom:780.017340px;}
.y76{bottom:781.550505px;}
.y91{bottom:781.950240px;}
.y37{bottom:784.322550px;}
.y4a{bottom:794.822550px;}
.ya1{bottom:795.215505px;}
.yc4{bottom:798.215505px;}
.ye1{bottom:799.279515px;}
.y22{bottom:800.944515px;}
.y50{bottom:808.322550px;}
.y75{bottom:808.550505px;}
.y90{bottom:808.950240px;}
.y36{bottom:811.322550px;}
.ya0{bottom:822.215505px;}
.yc3{bottom:825.215505px;}
.y49{bottom:830.822550px;}
.ye0{bottom:832.358970px;}
.y4f{bottom:835.322550px;}
.y74{bottom:835.550505px;}
.y8f{bottom:835.950240px;}
.y21{bottom:844.444515px;}
.y35{bottom:848.822550px;}
.yc2{bottom:852.215505px;}
.y48{bottom:857.822550px;}
.y4e{bottom:862.322550px;}
.ydf{bottom:865.157550px;}
.y9f{bottom:868.715505px;}
.y34{bottom:875.822550px;}
.yc1{bottom:879.215505px;}
.y20{bottom:889.444515px;}
.yde{bottom:892.157550px;}
.y73{bottom:894.050505px;}
.y9e{bottom:895.715505px;}
.y4d{bottom:896.822550px;}
.y33{bottom:902.822550px;}
.y72{bottom:921.050505px;}
.y9d{bottom:922.715505px;}
.y4c{bottom:923.822550px;}
.yc0{bottom:936.435240px;}
.ydd{bottom:940.565505px;}
.y8e{bottom:949.715505px;}
.y1f{bottom:950.082450px;}
.y4b{bottom:950.822550px;}
.y71{bottom:961.279515px;}
.ybf{bottom:963.435240px;}
.ydc{bottom:967.565505px;}
.y32{bottom:973.220505px;}
.y47{bottom:973.235505px;}
.y70{bottom:988.279515px;}
.ybe{bottom:990.435240px;}
.y5a{bottom:1014.623460px;}
.y8d{bottom:1016.123460px;}
.ybd{bottom:1017.435240px;}
.y31{bottom:1023.623460px;}
.y6f{bottom:1031.657550px;}
.y19{bottom:1135.991625px;}
.hc{height:50.296875px;}
.h8{height:56.003906px;}
.hb{height:56.583984px;}
.h7{height:57.322266px;}
.h14{height:61.494141px;}
.h16{height:62.226562px;}
.h15{height:62.871094px;}
.h17{height:63.632812px;}
.h13{height:64.404000px;}
.h9{height:68.449219px;}
.h11{height:69.158203px;}
.he{height:69.996094px;}
.h10{height:75.445312px;}
.h6{height:76.394531px;}
.hf{height:81.732422px;}
.hd{height:87.445312px;}
.ha{height:100.593750px;}
.h5{height:101.859375px;}
.h12{height:114.486328px;}
.h4{height:136.898438px;}
.h2{height:289.207031px;}
.h3{height:414.949219px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:63.000000px;}
.x18{left:66.375000px;}
.x10{left:70.277340px;}
.x5{left:75.000000px;}
.x7{left:76.951170px;}
.x1{left:90.665040px;}
.xd{left:101.250000px;}
.x4{left:129.000000px;}
.x2{left:138.850200px;}
.x12{left:148.500000px;}
.xb{left:150.000000px;}
.x15{left:168.000000px;}
.x17{left:172.500000px;}
.xc{left:204.000000px;}
.x16{left:225.000000px;}
.xa{left:255.000000px;}
.x9{left:256.500000px;}
.xe{left:437.250000px;}
.xf{left:438.750000px;}
.x13{left:464.250000px;}
.x14{left:495.000000px;}
.x11{left:521.250000px;}
.x8{left:608.525385px;}
.x6{left:634.787115px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007307pt;}
.ls5{letter-spacing:0.008107pt;}
.ls2{letter-spacing:0.009760pt;}
.ls1{letter-spacing:16.299467pt;}
.ls3{letter-spacing:30.051573pt;}
.ws1{word-spacing:-0.352000pt;}
.ws6f{word-spacing:-0.073760pt;}
.ws4b{word-spacing:-0.064000pt;}
.wsca{word-spacing:-0.061440pt;}
.ws18{word-spacing:-0.058667pt;}
.wsc8{word-spacing:-0.055307pt;}
.ws98{word-spacing:-0.053333pt;}
.wsc9{word-spacing:-0.048000pt;}
.ws56{word-spacing:-0.042667pt;}
.ws15{word-spacing:0.000000pt;}
.ws5{word-spacing:11.905653pt;}
.ws6{word-spacing:11.912800pt;}
.ws45{word-spacing:12.288000pt;}
.ws46{word-spacing:12.320000pt;}
.wsa0{word-spacing:12.352000pt;}
.wscb{word-spacing:13.233760pt;}
.ws14{word-spacing:13.295253pt;}
.wscc{word-spacing:13.326987pt;}
.ws7{word-spacing:13.327893pt;}
.ws1d{word-spacing:14.587360pt;}
.wsc6{word-spacing:14.772480pt;}
.wsc7{word-spacing:14.808747pt;}
.ws4{word-spacing:15.760480pt;}
.ws9e{word-spacing:16.236000pt;}
.ws29{word-spacing:16.240800pt;}
.ws4f{word-spacing:16.241280pt;}
.ws1e{word-spacing:16.249707pt;}
.ws9{word-spacing:16.249760pt;}
.ws55{word-spacing:16.250667pt;}
.ws58{word-spacing:16.289227pt;}
.ws95{word-spacing:16.397440pt;}
.ws9a{word-spacing:16.505333pt;}
.ws37{word-spacing:16.546027pt;}
.wsae{word-spacing:16.596107pt;}
.wsab{word-spacing:16.664427pt;}
.wsc5{word-spacing:16.697920pt;}
.wsc3{word-spacing:16.706827pt;}
.wsc0{word-spacing:16.753653pt;}
.ws91{word-spacing:16.814613pt;}
.ws36{word-spacing:17.055040pt;}
.ws83{word-spacing:17.485013pt;}
.ws63{word-spacing:17.503787pt;}
.ws62{word-spacing:17.618027pt;}
.ws33{word-spacing:17.666400pt;}
.ws8b{word-spacing:17.671893pt;}
.ws2e{word-spacing:17.726987pt;}
.ws5c{word-spacing:17.732213pt;}
.wsc2{word-spacing:17.770507pt;}
.ws9f{word-spacing:17.771040pt;}
.ws94{word-spacing:17.887093pt;}
.ws9b{word-spacing:18.005813pt;}
.ws4e{word-spacing:18.023840pt;}
.wsc4{word-spacing:18.225600pt;}
.ws35{word-spacing:18.308853pt;}
.ws90{word-spacing:18.343787pt;}
.ws12{word-spacing:18.750080pt;}
.wsa3{word-spacing:18.752533pt;}
.ws42{word-spacing:18.923733pt;}
.ws22{word-spacing:19.166027pt;}
.ws2d{word-spacing:19.204213pt;}
.ws23{word-spacing:19.204267pt;}
.ws8a{word-spacing:19.287680pt;}
.ws78{word-spacing:19.449440pt;}
.ws57{word-spacing:19.563413pt;}
.ws40{word-spacing:19.566027pt;}
.ws17{word-spacing:19.677653pt;}
.ws16{word-spacing:19.686613pt;}
.wse{word-spacing:19.836427pt;}
.ws43{word-spacing:19.868107pt;}
.wsa4{word-spacing:20.368960pt;}
.ws99{word-spacing:20.583093pt;}
.ws89{word-spacing:20.646240pt;}
.ws88{word-spacing:20.806133pt;}
.wsa9{word-spacing:20.830667pt;}
.ws54{word-spacing:20.859787pt;}
.ws21{word-spacing:20.868960pt;}
.ws44{word-spacing:20.999253pt;}
.ws9d{word-spacing:21.016480pt;}
.ws3{word-spacing:21.016640pt;}
.ws87{word-spacing:21.070827pt;}
.ws2f{word-spacing:21.211360pt;}
.ws30{word-spacing:21.314293pt;}
.ws3e{word-spacing:21.667253pt;}
.wsa5{word-spacing:21.954507pt;}
.ws1b{word-spacing:21.958240pt;}
.ws1c{word-spacing:21.967200pt;}
.ws7c{word-spacing:21.991200pt;}
.wsa{word-spacing:22.116640pt;}
.ws31{word-spacing:22.236800pt;}
.ws82{word-spacing:22.399413pt;}
.ws24{word-spacing:22.546613pt;}
.wsb7{word-spacing:22.557973pt;}
.ws59{word-spacing:22.620960pt;}
.ws5b{word-spacing:22.660853pt;}
.ws1a{word-spacing:22.848960pt;}
.ws19{word-spacing:22.863680pt;}
.wsb6{word-spacing:22.933013pt;}
.ws11{word-spacing:23.338133pt;}
.ws3a{word-spacing:23.374133pt;}
.ws1f{word-spacing:23.636000pt;}
.ws13{word-spacing:23.693973pt;}
.ws32{word-spacing:23.931467pt;}
.wsa6{word-spacing:23.960107pt;}
.wsc{word-spacing:24.399040pt;}
.wsb8{word-spacing:24.608693pt;}
.ws5a{word-spacing:24.682667pt;}
.ws26{word-spacing:24.861920pt;}
.ws73{word-spacing:24.913280pt;}
.wsb1{word-spacing:25.096800pt;}
.ws69{word-spacing:25.132960pt;}
.ws10{word-spacing:26.120533pt;}
.ws8{word-spacing:26.183147pt;}
.wsb{word-spacing:26.386827pt;}
.ws20{word-spacing:26.797387pt;}
.wsd{word-spacing:26.810613pt;}
.ws3c{word-spacing:26.878773pt;}
.wsbf{word-spacing:26.915200pt;}
.ws72{word-spacing:27.178133pt;}
.wsa1{word-spacing:27.186613pt;}
.ws3d{word-spacing:27.405760pt;}
.wsa7{word-spacing:27.789067pt;}
.wsad{word-spacing:28.093867pt;}
.ws5d{word-spacing:28.562400pt;}
.ws38{word-spacing:28.807253pt;}
.wsbe{word-spacing:29.362027pt;}
.wsa2{word-spacing:29.658133pt;}
.wsb9{word-spacing:29.997813pt;}
.wsa8{word-spacing:30.315360pt;}
.ws28{word-spacing:30.375040pt;}
.ws5e{word-spacing:31.212427pt;}
.ws75{word-spacing:31.389973pt;}
.ws71{word-spacing:31.480907pt;}
.wsc1{word-spacing:31.591520pt;}
.wsac{word-spacing:31.664640pt;}
.ws3b{word-spacing:32.037387pt;}
.ws6c{word-spacing:32.113493pt;}
.ws61{word-spacing:32.161760pt;}
.ws41{word-spacing:32.233973pt;}
.wsba{word-spacing:32.729280pt;}
.ws7b{word-spacing:33.277227pt;}
.ws96{word-spacing:33.301600pt;}
.ws7a{word-spacing:33.566560pt;}
.ws74{word-spacing:33.884053pt;}
.ws39{word-spacing:33.975467pt;}
.ws2c{word-spacing:34.308107pt;}
.ws84{word-spacing:34.427253pt;}
.ws86{word-spacing:34.427733pt;}
.ws85{word-spacing:34.431680pt;}
.ws3f{word-spacing:34.688427pt;}
.ws53{word-spacing:34.957760pt;}
.ws6b{word-spacing:35.042613pt;}
.ws60{word-spacing:35.085600pt;}
.ws64{word-spacing:35.619200pt;}
.ws6e{word-spacing:35.839680pt;}
.ws6d{word-spacing:35.844107pt;}
.ws70{word-spacing:35.848640pt;}
.ws48{word-spacing:35.959520pt;}
.ws47{word-spacing:35.963947pt;}
.ws65{word-spacing:36.089813pt;}
.ws68{word-spacing:36.128000pt;}
.ws2a{word-spacing:36.480427pt;}
.ws79{word-spacing:36.596107pt;}
.wsaa{word-spacing:37.354987pt;}
.ws25{word-spacing:37.702667pt;}
.ws97{word-spacing:37.994560pt;}
.ws52{word-spacing:38.189547pt;}
.ws9c{word-spacing:38.432693pt;}
.ws49{word-spacing:39.238347pt;}
.ws93{word-spacing:39.424427pt;}
.ws92{word-spacing:40.396907pt;}
.ws67{word-spacing:41.011680pt;}
.wsf{word-spacing:41.404907pt;}
.ws27{word-spacing:42.111733pt;}
.ws7d{word-spacing:44.032587pt;}
.ws2b{word-spacing:44.512107pt;}
.ws4c{word-spacing:44.883200pt;}
.ws66{word-spacing:45.227627pt;}
.ws8e{word-spacing:46.513760pt;}
.wsb5{word-spacing:46.710667pt;}
.ws80{word-spacing:48.118187pt;}
.ws7f{word-spacing:48.122613pt;}
.ws8c{word-spacing:50.583573pt;}
.ws8f{word-spacing:50.742240pt;}
.ws81{word-spacing:52.502293pt;}
.wsb3{word-spacing:54.140960pt;}
.ws76{word-spacing:54.774453pt;}
.ws50{word-spacing:55.936693pt;}
.ws2{word-spacing:55.966133pt;}
.ws4d{word-spacing:61.006880pt;}
.ws51{word-spacing:61.065920pt;}
.wsb2{word-spacing:61.557760pt;}
.wsbc{word-spacing:62.359040pt;}
.ws34{word-spacing:64.451573pt;}
.wsbb{word-spacing:68.028000pt;}
.ws0{word-spacing:68.159520pt;}
.wsbd{word-spacing:74.468480pt;}
.wsb4{word-spacing:74.526240pt;}
.ws77{word-spacing:76.825280pt;}
.ws6a{word-spacing:76.880853pt;}
.ws4a{word-spacing:81.702347pt;}
.ws5f{word-spacing:88.608907pt;}
.ws8d{word-spacing:97.382560pt;}
.wsaf{word-spacing:102.140587pt;}
.wsb0{word-spacing:102.144587pt;}
.ws7e{word-spacing:157.124533pt;}
._1{margin-left:-25.007147pt;}
._6{margin-left:-7.060160pt;}
._9{margin-left:-4.801173pt;}
._5{margin-left:-3.164107pt;}
._14{margin-left:-2.240960pt;}
._3{margin-left:-1.280533pt;}
._0{width:0.981333pt;}
._8{width:3.743840pt;}
._2{width:11.751200pt;}
._4{width:13.254987pt;}
._12{width:14.629280pt;}
._a{width:16.826613pt;}
._b{width:17.888747pt;}
._15{width:21.910133pt;}
._f{width:25.251200pt;}
._7{width:26.788107pt;}
._19{width:27.728960pt;}
._d{width:30.792320pt;}
._c{width:32.161653pt;}
._18{width:33.639413pt;}
._13{width:37.926667pt;}
._e{width:39.319573pt;}
._17{width:43.419467pt;}
._11{width:52.673813pt;}
._10{width:109.782400pt;}
._16{width:111.494453pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs2{font-size:117.333333pt;}
.fs0{font-size:245.333333pt;}
.fs1{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:86.682920pt;}
.y1a{bottom:87.560000pt;}
.y23{bottom:87.695413pt;}
.y7{bottom:126.682920pt;}
.yb5{bottom:127.842267pt;}
.y6{bottom:146.682920pt;}
.y59{bottom:147.842267pt;}
.yb4{bottom:151.842267pt;}
.y58{bottom:171.842267pt;}
.y8c{bottom:174.711560pt;}
.yb3{bottom:175.842267pt;}
.y30{bottom:182.617347pt;}
.y5{bottom:186.682920pt;}
.y17{bottom:196.388933pt;}
.y8b{bottom:198.711560pt;}
.yb2{bottom:199.842267pt;}
.y2f{bottom:206.617347pt;}
.y4{bottom:206.682920pt;}
.y46{bottom:210.617347pt;}
.y57{bottom:214.508933pt;}
.yd6{bottom:217.175600pt;}
.y16{bottom:220.388933pt;}
.y8a{bottom:222.711560pt;}
.yb1{bottom:223.842267pt;}
.y45{bottom:234.617347pt;}
.y56{bottom:238.508933pt;}
.yd5{bottom:241.175600pt;}
.y15{bottom:244.388933pt;}
.y89{bottom:246.711560pt;}
.y2e{bottom:254.617347pt;}
.y44{bottom:258.617347pt;}
.y55{bottom:262.508933pt;}
.y3{bottom:262.728027pt;}
.yd4{bottom:265.175600pt;}
.yb0{bottom:273.358227pt;}
.y2d{bottom:278.617347pt;}
.y63{bottom:285.771400pt;}
.yd3{bottom:289.175600pt;}
.y14{bottom:292.388933pt;}
.y54{bottom:294.508933pt;}
.yaf{bottom:297.358227pt;}
.y43{bottom:299.842267pt;}
.y6e{bottom:300.191560pt;}
.y2c{bottom:302.617347pt;}
.ydb{bottom:306.958067pt;}
.y83{bottom:309.378227pt;}
.y62{bottom:312.438067pt;}
.yd2{bottom:313.175600pt;}
.y13{bottom:316.388933pt;}
.y53{bottom:318.508933pt;}
.yf2{bottom:318.880360pt;}
.y9c{bottom:320.191560pt;}
.yae{bottom:321.358227pt;}
.y42{bottom:323.842267pt;}
.y6d{bottom:324.191560pt;}
.y2{bottom:331.773600pt;}
.y82{bottom:333.378227pt;}
.yd1{bottom:337.175600pt;}
.yf1{bottom:338.880360pt;}
.y61{bottom:339.104733pt;}
.yda{bottom:340.291400pt;}
.y12{bottom:340.388933pt;}
.y9b{bottom:344.191560pt;}
.yad{bottom:345.358227pt;}
.y6c{bottom:348.191560pt;}
.ye6{bottom:349.211400pt;}
.y2b{bottom:350.617347pt;}
.y81{bottom:357.378227pt;}
.yf0{bottom:358.880360pt;}
.y40{bottom:365.175600pt;}
.y60{bottom:365.771400pt;}
.y9a{bottom:368.191560pt;}
.y6b{bottom:372.191560pt;}
.yd9{bottom:373.624733pt;}
.y2a{bottom:374.617347pt;}
.y88{bottom:376.438067pt;}
.y80{bottom:381.378227pt;}
.ye5{bottom:382.544733pt;}
.y11{bottom:388.388933pt;}
.y3f{bottom:389.175600pt;}
.yd0{bottom:390.871560pt;}
.y99{bottom:392.191560pt;}
.y5f{bottom:392.438067pt;}
.yf5{bottom:396.350413pt;}
.y29{bottom:398.617347pt;}
.ybc{bottom:400.438067pt;}
.y87{bottom:403.104733pt;}
.y7f{bottom:405.378227pt;}
.yd8{bottom:406.958067pt;}
.yac{bottom:408.191560pt;}
.y10{bottom:412.388933pt;}
.y3e{bottom:413.175600pt;}
.ycf{bottom:414.871560pt;}
.y98{bottom:416.191560pt;}
.y5e{bottom:419.104733pt;}
.yf4{bottom:420.350413pt;}
.y1{bottom:420.466307pt;}
.y28{bottom:422.617347pt;}
.y7e{bottom:429.378227pt;}
.y86{bottom:429.771400pt;}
.y6a{bottom:431.066880pt;}
.yab{bottom:432.191560pt;}
.ybb{bottom:433.771400pt;}
.yf{bottom:436.388933pt;}
.yce{bottom:438.871560pt;}
.y97{bottom:440.191560pt;}
.ye4{bottom:442.544733pt;}
.yf3{bottom:444.350413pt;}
.y5d{bottom:445.771400pt;}
.y27{bottom:446.617347pt;}
.y3d{bottom:453.175600pt;}
.y7d{bottom:453.378227pt;}
.y69{bottom:455.066880pt;}
.yaa{bottom:456.191560pt;}
.y85{bottom:456.438067pt;}
.ycd{bottom:462.871560pt;}
.yd7{bottom:466.958067pt;}
.yba{bottom:467.104733pt;}
.y26{bottom:470.617347pt;}
.y5c{bottom:472.438067pt;}
.y3c{bottom:477.175600pt;}
.y7c{bottom:477.378227pt;}
.y68{bottom:479.066880pt;}
.yeb{bottom:479.479640pt;}
.ya9{bottom:480.191560pt;}
.ye{bottom:484.388933pt;}
.ycc{bottom:486.871560pt;}
.yea{bottom:499.479640pt;}
.yb9{bottom:500.438067pt;}
.y7b{bottom:501.378227pt;}
.y67{bottom:503.066880pt;}
.ya8{bottom:504.191560pt;}
.yd{bottom:508.388933pt;}
.ycb{bottom:510.871560pt;}
.y25{bottom:511.220853pt;}
.y3b{bottom:515.950680pt;}
.ye9{bottom:519.479640pt;}
.y7a{bottom:525.378227pt;}
.y5b{bottom:525.771400pt;}
.y66{bottom:527.066880pt;}
.ya7{bottom:528.191560pt;}
.yc{bottom:532.388933pt;}
.yb8{bottom:533.771400pt;}
.y84{bottom:536.438067pt;}
.ye3{bottom:541.524893pt;}
.y3a{bottom:549.162267pt;}
.y79{bottom:549.378227pt;}
.y65{bottom:551.066880pt;}
.ya6{bottom:552.191560pt;}
.yb{bottom:556.388933pt;}
.y24{bottom:557.162267pt;}
.yef{bottom:559.479640pt;}
.yca{bottom:565.524893pt;}
.yb7{bottom:567.104733pt;}
.y39{bottom:573.162267pt;}
.y78{bottom:573.378227pt;}
.y96{bottom:575.066880pt;}
.ya5{bottom:576.191560pt;}
.y1e{bottom:581.162267pt;}
.yee{bottom:583.479640pt;}
.yc9{bottom:589.524893pt;}
.y38{bottom:597.162267pt;}
.ye8{bottom:598.711560pt;}
.y95{bottom:599.066880pt;}
.ya4{bottom:600.191560pt;}
.yb6{bottom:600.438067pt;}
.ya{bottom:604.388933pt;}
.y1d{bottom:605.162267pt;}
.yed{bottom:607.479640pt;}
.yc8{bottom:613.524893pt;}
.ye7{bottom:622.711560pt;}
.y94{bottom:623.066880pt;}
.ya3{bottom:624.191560pt;}
.y9{bottom:628.388933pt;}
.y1c{bottom:629.162267pt;}
.y64{bottom:631.220853pt;}
.yec{bottom:631.479640pt;}
.y77{bottom:632.044893pt;}
.yc7{bottom:637.524893pt;}
.y41{bottom:646.418227pt;}
.y93{bottom:647.066880pt;}
.y1b{bottom:653.162267pt;}
.y52{bottom:655.842267pt;}
.yc6{bottom:661.524893pt;}
.y92{bottom:671.066880pt;}
.y51{bottom:679.842267pt;}
.ya2{bottom:682.858227pt;}
.yc5{bottom:685.524893pt;}
.ye2{bottom:686.470680pt;}
.y18{bottom:693.348747pt;}
.y76{bottom:694.711560pt;}
.y91{bottom:695.066880pt;}
.y37{bottom:697.175600pt;}
.y4a{bottom:706.508933pt;}
.ya1{bottom:706.858227pt;}
.yc4{bottom:709.524893pt;}
.ye1{bottom:710.470680pt;}
.y22{bottom:711.950680pt;}
.y50{bottom:718.508933pt;}
.y75{bottom:718.711560pt;}
.y90{bottom:719.066880pt;}
.y36{bottom:721.175600pt;}
.ya0{bottom:730.858227pt;}
.yc3{bottom:733.524893pt;}
.y49{bottom:738.508933pt;}
.ye0{bottom:739.874640pt;}
.y4f{bottom:742.508933pt;}
.y74{bottom:742.711560pt;}
.y8f{bottom:743.066880pt;}
.y21{bottom:750.617347pt;}
.y35{bottom:754.508933pt;}
.yc2{bottom:757.524893pt;}
.y48{bottom:762.508933pt;}
.y4e{bottom:766.508933pt;}
.ydf{bottom:769.028933pt;}
.y9f{bottom:772.191560pt;}
.y34{bottom:778.508933pt;}
.yc1{bottom:781.524893pt;}
.y20{bottom:790.617347pt;}
.yde{bottom:793.028933pt;}
.y73{bottom:794.711560pt;}
.y9e{bottom:796.191560pt;}
.y4d{bottom:797.175600pt;}
.y33{bottom:802.508933pt;}
.y72{bottom:818.711560pt;}
.y9d{bottom:820.191560pt;}
.y4c{bottom:821.175600pt;}
.yc0{bottom:832.386880pt;}
.ydd{bottom:836.058227pt;}
.y8e{bottom:844.191560pt;}
.y1f{bottom:844.517733pt;}
.y4b{bottom:845.175600pt;}
.y71{bottom:854.470680pt;}
.ybf{bottom:856.386880pt;}
.ydc{bottom:860.058227pt;}
.y32{bottom:865.084893pt;}
.y47{bottom:865.098227pt;}
.y70{bottom:878.470680pt;}
.ybe{bottom:880.386880pt;}
.y5a{bottom:901.887520pt;}
.y8d{bottom:903.220853pt;}
.ybd{bottom:904.386880pt;}
.y31{bottom:909.887520pt;}
.y6f{bottom:917.028933pt;}
.y19{bottom:1009.770333pt;}
.hc{height:44.708333pt;}
.h8{height:49.781250pt;}
.hb{height:50.296875pt;}
.h7{height:50.953125pt;}
.h14{height:54.661458pt;}
.h16{height:55.312500pt;}
.h15{height:55.885417pt;}
.h17{height:56.562500pt;}
.h13{height:57.248000pt;}
.h9{height:60.843750pt;}
.h11{height:61.473958pt;}
.he{height:62.218750pt;}
.h10{height:67.062500pt;}
.h6{height:67.906250pt;}
.hf{height:72.651042pt;}
.hd{height:77.729167pt;}
.ha{height:89.416667pt;}
.h5{height:90.541667pt;}
.h12{height:101.765625pt;}
.h4{height:121.687500pt;}
.h2{height:257.072917pt;}
.h3{height:368.843750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:56.000000pt;}
.x18{left:59.000000pt;}
.x10{left:62.468747pt;}
.x5{left:66.666667pt;}
.x7{left:68.401040pt;}
.x1{left:80.591147pt;}
.xd{left:90.000000pt;}
.x4{left:114.666667pt;}
.x2{left:123.422400pt;}
.x12{left:132.000000pt;}
.xb{left:133.333333pt;}
.x15{left:149.333333pt;}
.x17{left:153.333333pt;}
.xc{left:181.333333pt;}
.x16{left:200.000000pt;}
.xa{left:226.666667pt;}
.x9{left:228.000000pt;}
.xe{left:388.666667pt;}
.xf{left:390.000000pt;}
.x13{left:412.666667pt;}
.x14{left:440.000000pt;}
.x11{left:463.333333pt;}
.x8{left:540.911453pt;}
.x6{left:564.255213pt;}
}




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