
    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_acd09cf1ccb5c234f685fb0f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_a87de4b1a76f5e1f75f97be7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_850b93c30b92fbdfa2db9d1b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_81fd521f92e58061a1d51e39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_ba89e6da8ce6456567a3fc8b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_856a2c654d21185a87f42c0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_3017383af077a217abeb90dc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d903cc6fca7b0a5e135990a3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_a6b1af3ea40b76d93ab756df.woff')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_99619bc4138c6145d44d0fad.woff')format("woff");}.ffa{font-family:ffa;line-height:0.688000;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_04692273a55cdcd9a9c779dd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.429000;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);}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.153236px;}
.v3{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004200px;}
.ls2{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.984525px;}
.ls3{letter-spacing:2.987675px;}
.ls1{letter-spacing:2.988780px;}
.lsa{letter-spacing:2.989410px;}
.ls8{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.990725px;}
.ls9{letter-spacing:25.874100px;}
.ls7{letter-spacing:25.880100px;}
.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;}
}
.ws4{word-spacing:-16.438350px;}
.ws3{word-spacing:-14.943900px;}
.ws6b{word-spacing:-14.920027px;}
.ws17{word-spacing:-11.955150px;}
.ws27{word-spacing:-10.878728px;}
.ws19{word-spacing:-1.016185px;}
.ws81{word-spacing:-0.717307px;}
.wsb{word-spacing:-0.268992px;}
.wsa3{word-spacing:-0.191282px;}
.ws1e{word-spacing:-0.179327px;}
.ws3b{word-spacing:-0.119551px;}
.ws78{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws6a{word-spacing:-0.008307px;}
.ws26{word-spacing:0.000000px;}
.ws69{word-spacing:0.001968px;}
.ws9e{word-spacing:0.095641px;}
.ws96{word-spacing:0.298878px;}
.ws32{word-spacing:0.358654px;}
.ws3c{word-spacing:0.717307px;}
.ws12{word-spacing:0.914573px;}
.ws86{word-spacing:0.956410px;}
.wsa0{word-spacing:0.956412px;}
.ws3d{word-spacing:1.016185px;}
.ws77{word-spacing:1.075961px;}
.wse{word-spacing:1.183565px;}
.ws29{word-spacing:1.374839px;}
.ws42{word-spacing:1.554166px;}
.ws94{word-spacing:1.613941px;}
.ws5c{word-spacing:2.092146px;}
.ws7f{word-spacing:2.570351px;}
.ws54{word-spacing:2.689902px;}
.ws9f{word-spacing:2.821415px;}
.ws35{word-spacing:2.869229px;}
.ws73{word-spacing:3.048556px;}
.ws34{word-spacing:3.526760px;}
.ws87{word-spacing:3.646312px;}
.ws23{word-spacing:3.765863px;}
.ws11{word-spacing:3.873485px;}
.ws5f{word-spacing:4.303843px;}
.ws52{word-spacing:4.423394px;}
.ws43{word-spacing:4.662497px;}
.ws36{word-spacing:4.782048px;}
.ws1f{word-spacing:4.782060px;}
.ws88{word-spacing:4.961375px;}
.ws85{word-spacing:5.021150px;}
.ws3a{word-spacing:5.140702px;}
.ws46{word-spacing:5.260253px;}
.ws76{word-spacing:5.320028px;}
.ws98{word-spacing:5.439580px;}
.ws64{word-spacing:5.499355px;}
.ws9a{word-spacing:5.738472px;}
.ws93{word-spacing:5.798233px;}
.ws22{word-spacing:5.858009px;}
.ws8b{word-spacing:5.917784px;}
.ws2{word-spacing:5.977560px;}
.ws84{word-spacing:6.037336px;}
.ws72{word-spacing:6.097111px;}
.ws28{word-spacing:6.276438px;}
.ws82{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws71{word-spacing:6.694867px;}
.ws13{word-spacing:6.724800px;}
.ws60{word-spacing:6.754643px;}
.ws2b{word-spacing:6.993745px;}
.ws61{word-spacing:7.053521px;}
.wsa2{word-spacing:7.268731px;}
.wsa1{word-spacing:7.316552px;}
.ws39{word-spacing:7.412174px;}
.ws48{word-spacing:7.591501px;}
.ws49{word-spacing:7.711052px;}
.ws2c{word-spacing:7.770828px;}
.ws83{word-spacing:7.830604px;}
.ws99{word-spacing:7.842578px;}
.ws33{word-spacing:7.950155px;}
.ws4b{word-spacing:8.069706px;}
.ws4e{word-spacing:8.129482px;}
.ws5e{word-spacing:8.308808px;}
.ws4c{word-spacing:8.607686px;}
.ws20{word-spacing:8.846789px;}
.ws8{word-spacing:8.930534px;}
.ws89{word-spacing:8.966340px;}
.ws30{word-spacing:9.026116px;}
.ws79{word-spacing:9.265218px;}
.ws63{word-spacing:9.444545px;}
.ws56{word-spacing:9.564096px;}
.ws74{word-spacing:9.623872px;}
.ws66{word-spacing:9.683647px;}
.wsc{word-spacing:9.898906px;}
.ws97{word-spacing:10.161852px;}
.ws7a{word-spacing:10.281403px;}
.ws37{word-spacing:10.341179px;}
.ws2a{word-spacing:10.400954px;}
.wsf{word-spacing:10.598285px;}
.ws24{word-spacing:10.640057px;}
.wsd{word-spacing:10.652083px;}
.ws55{word-spacing:10.759608px;}
.ws3e{word-spacing:10.819384px;}
.ws25{word-spacing:10.938935px;}
.ws9c{word-spacing:11.046559px;}
.ws18{word-spacing:11.118262px;}
.ws41{word-spacing:11.178037px;}
.ws9b{word-spacing:11.668226px;}
.ws68{word-spacing:11.955120px;}
.ws91{word-spacing:12.074671px;}
.ws6c{word-spacing:12.253998px;}
.ws3f{word-spacing:12.373549px;}
.ws38{word-spacing:12.493100px;}
.ws2e{word-spacing:12.552876px;}
.ws53{word-spacing:12.612652px;}
.ws95{word-spacing:12.732203px;}
.ws70{word-spacing:12.791978px;}
.ws1d{word-spacing:12.851754px;}
.ws62{word-spacing:12.971305px;}
.ws75{word-spacing:13.090856px;}
.ws8f{word-spacing:13.329959px;}
.ws4a{word-spacing:13.509286px;}
.ws50{word-spacing:13.748388px;}
.ws7c{word-spacing:13.808164px;}
.ws45{word-spacing:13.867939px;}
.ws5b{word-spacing:13.927715px;}
.ws58{word-spacing:13.987490px;}
.ws8c{word-spacing:14.166817px;}
.ws90{word-spacing:14.226593px;}
.ws6e{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws57{word-spacing:14.405920px;}
.ws44{word-spacing:14.465695px;}
.ws59{word-spacing:14.943900px;}
.ws8d{word-spacing:15.063451px;}
.ws51{word-spacing:15.242778px;}
.ws7e{word-spacing:15.422105px;}
.ws9d{word-spacing:15.589516px;}
.ws8a{word-spacing:15.780758px;}
.ws40{word-spacing:15.900310px;}
.ws7b{word-spacing:16.079636px;}
.ws5d{word-spacing:16.318739px;}
.ws80{word-spacing:16.498066px;}
.ws7{word-spacing:16.516109px;}
.ws92{word-spacing:16.617617px;}
.ws4d{word-spacing:16.677392px;}
.ws6{word-spacing:16.677504px;}
.ws1c{word-spacing:16.737168px;}
.ws47{word-spacing:16.796944px;}
.ws1b{word-spacing:17.036046px;}
.ws8e{word-spacing:17.275148px;}
.wsa4{word-spacing:17.884904px;}
.ws16{word-spacing:17.932680px;}
.ws9{word-spacing:18.022464px;}
.ws65{word-spacing:18.410885px;}
.ws6d{word-spacing:18.829314px;}
.wsa{word-spacing:18.829440px;}
.ws4f{word-spacing:19.845499px;}
.ws15{word-spacing:20.013005px;}
.ws2d{word-spacing:20.204153px;}
.ws67{word-spacing:20.443255px;}
.ws2f{word-spacing:20.503031px;}
.ws1a{word-spacing:21.100787px;}
.ws21{word-spacing:21.399665px;}
.ws5a{word-spacing:22.236523px;}
.ws6f{word-spacing:22.475626px;}
.ws7d{word-spacing:22.595177px;}
.ws10{word-spacing:22.702925px;}
.ws31{word-spacing:24.089567px;}
.ws14{word-spacing:33.408806px;}
._2{margin-left:-6.276438px;}
._0{margin-left:-5.021163px;}
._4{margin-left:-3.945204px;}
._1{margin-left:-2.151927px;}
._5{margin-left:-1.004249px;}
._9{width:1.030609px;}
._6{width:2.609912px;}
._3{width:3.645227px;}
._e{width:13.524404px;}
._a{width:15.302554px;}
._b{width:18.829319px;}
._d{width:29.887875px;}
._8{width:204.706287px;}
._7{width:222.203755px;}
._c{width:370.608952px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:48.073932px;}
.fs6{font-size:48.135963px;}
.fs7{font-size:53.346557px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs9{font-size:74.747210px;}
.fs8{font-size:74.809241px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y39{bottom:0.355385px;}
.y34{bottom:0.374770px;}
.y37{bottom:0.387693px;}
.y3b{bottom:2.358466px;}
.y3d{bottom:2.371389px;}
.y44{bottom:34.256553px;}
.y3f{bottom:91.385702px;}
.y41{bottom:104.043878px;}
.y2b{bottom:108.000000px;}
.y32{bottom:125.932500px;}
.y40{bottom:126.465457px;}
.y2a{bottom:136.975500px;}
.y31{bottom:143.865000px;}
.y29{bottom:154.908000px;}
.y30{bottom:161.797500px;}
.y81{bottom:162.088500px;}
.y28{bottom:172.840500px;}
.ya6{bottom:179.730000px;}
.y63{bottom:179.731500px;}
.y80{bottom:180.021000px;}
.y2f{bottom:180.126000px;}
.yc4{bottom:184.249500px;}
.y27{bottom:190.773000px;}
.ya5{bottom:197.664000px;}
.y7f{bottom:197.955000px;}
.y2e{bottom:198.058500px;}
.y62{bottom:203.935500px;}
.y42{bottom:208.048987px;}
.y26{bottom:208.705500px;}
.yc3{bottom:211.141500px;}
.ya4{bottom:215.596500px;}
.y7e{bottom:215.887500px;}
.y25{bottom:226.639500px;}
.yc2{bottom:229.074000px;}
.ya3{bottom:233.529000px;}
.y7d{bottom:234.111000px;}
.y61{bottom:234.171000px;}
.y24{bottom:244.572000px;}
.y43{bottom:244.899207px;}
.yc1{bottom:247.008000px;}
.y2d{bottom:250.221000px;}
.ya2{bottom:251.461500px;}
.y7c{bottom:252.043500px;}
.y60{bottom:252.105000px;}
.yc0{bottom:264.940500px;}
.y23{bottom:267.420000px;}
.y2c{bottom:268.155000px;}
.ya1{bottom:269.394000px;}
.y7b{bottom:269.976000px;}
.y5f{bottom:270.037500px;}
.ybf{bottom:282.873000px;}
.ya0{bottom:287.328000px;}
.y7a{bottom:287.908500px;}
.y5e{bottom:287.970000px;}
.y22{bottom:299.890500px;}
.ybe{bottom:300.805500px;}
.y9f{bottom:305.260500px;}
.y79{bottom:305.842500px;}
.y5d{bottom:305.902500px;}
.y21{bottom:314.835000px;}
.ybd{bottom:318.738000px;}
.y78{bottom:323.775000px;}
.y5c{bottom:323.835000px;}
.y9e{bottom:323.965500px;}
.y20{bottom:329.814000px;}
.ybc{bottom:336.670500px;}
.y77{bottom:341.707500px;}
.y5b{bottom:341.769000px;}
.y9d{bottom:341.898000px;}
.y1f{bottom:344.757000px;}
.ybb{bottom:354.604500px;}
.y76{bottom:359.640000px;}
.y1e{bottom:359.701500px;}
.y9c{bottom:359.830500px;}
.yba{bottom:372.537000px;}
.y1d{bottom:374.644500px;}
.y75{bottom:377.572500px;}
.y5a{bottom:377.634000px;}
.y9b{bottom:377.763000px;}
.y1c{bottom:389.589000px;}
.yb9{bottom:390.469500px;}
.y74{bottom:395.505000px;}
.y59{bottom:395.566500px;}
.y9a{bottom:395.697000px;}
.y1b{bottom:404.533500px;}
.yb8{bottom:408.402000px;}
.y73{bottom:413.439000px;}
.y58{bottom:413.499000px;}
.y99{bottom:413.629500px;}
.y1a{bottom:419.476500px;}
.yb7{bottom:426.334500px;}
.y72{bottom:431.371500px;}
.y57{bottom:431.431500px;}
.y98{bottom:431.562000px;}
.y19{bottom:434.421000px;}
.yb6{bottom:444.267000px;}
.y71{bottom:449.304000px;}
.y18{bottom:449.365500px;}
.y97{bottom:449.494500px;}
.y56{bottom:449.625000px;}
.yb5{bottom:462.201000px;}
.y17{bottom:464.308500px;}
.y70{bottom:467.236500px;}
.y96{bottom:467.427000px;}
.y55{bottom:467.559000px;}
.y16{bottom:479.253000px;}
.yb4{bottom:484.653000px;}
.y6f{bottom:485.169000px;}
.y95{bottom:485.359500px;}
.y54{bottom:485.491500px;}
.y15{bottom:494.197500px;}
.y94{bottom:503.293500px;}
.y6e{bottom:503.394000px;}
.y53{bottom:503.424000px;}
.y14{bottom:509.140500px;}
.yb3{bottom:511.545000px;}
.y93{bottom:521.226000px;}
.y6d{bottom:521.326500px;}
.y52{bottom:521.356500px;}
.y13{bottom:524.085000px;}
.yb2{bottom:529.477500px;}
.y6c{bottom:539.259000px;}
.y51{bottom:539.289000px;}
.yb1{bottom:547.410000px;}
.y92{bottom:548.500500px;}
.y6b{bottom:557.191500px;}
.y50{bottom:557.221500px;}
.yb0{bottom:565.342500px;}
.y6a{bottom:575.124000px;}
.y4f{bottom:575.155500px;}
.y12{bottom:576.769500px;}
.y91{bottom:583.087500px;}
.yaf{bottom:583.275000px;}
.y69{bottom:593.056500px;}
.y4e{bottom:593.088000px;}
.y11{bottom:595.261500px;}
.y90{bottom:601.020000px;}
.yae{bottom:601.209000px;}
.y68{bottom:610.990500px;}
.y4d{bottom:611.281500px;}
.y10{bottom:613.977000px;}
.y8f{bottom:618.954000px;}
.yad{bottom:619.141500px;}
.y67{bottom:628.923000px;}
.y4c{bottom:629.214000px;}
.y8e{bottom:636.886500px;}
.yac{bottom:637.074000px;}
.y66{bottom:646.855500px;}
.y4b{bottom:647.146500px;}
.yf{bottom:651.481500px;}
.y8d{bottom:654.819000px;}
.yab{bottom:655.006500px;}
.y65{bottom:664.788000px;}
.y4a{bottom:665.079000px;}
.ye{bottom:669.973500px;}
.y8c{bottom:672.751500px;}
.yaa{bottom:672.939000px;}
.y64{bottom:683.011500px;}
.y49{bottom:683.013000px;}
.yd{bottom:688.689000px;}
.y8b{bottom:690.684000px;}
.ya9{bottom:690.871500px;}
.y48{bottom:700.945500px;}
.y8a{bottom:708.616500px;}
.ya8{bottom:708.805500px;}
.y47{bottom:718.878000px;}
.yc{bottom:726.193500px;}
.y89{bottom:726.550500px;}
.ya7{bottom:726.738000px;}
.y46{bottom:736.810500px;}
.y88{bottom:744.483000px;}
.yb{bottom:744.685500px;}
.y87{bottom:762.415500px;}
.ya{bottom:763.401000px;}
.yd9{bottom:765.280500px;}
.yd8{bottom:778.729500px;}
.y86{bottom:780.348000px;}
.y45{bottom:787.918500px;}
.yd7{bottom:792.180000px;}
.y85{bottom:798.280500px;}
.y9{bottom:800.905500px;}
.yd6{bottom:805.629000px;}
.y3e{bottom:809.437500px;}
.y84{bottom:816.213000px;}
.yd5{bottom:819.078000px;}
.y8{bottom:819.399000px;}
.yd4{bottom:832.528500px;}
.y7{bottom:838.113000px;}
.yd3{bottom:845.977500px;}
.yd2{bottom:859.428000px;}
.y83{bottom:867.322500px;}
.yd1{bottom:872.877000px;}
.y6{bottom:875.617500px;}
.y3c{bottom:877.826545px;}
.yd0{bottom:886.326000px;}
.y82{bottom:892.876500px;}
.y5{bottom:894.111000px;}
.ycf{bottom:899.776500px;}
.y3a{bottom:903.026590px;}
.y4{bottom:912.825000px;}
.yce{bottom:913.225500px;}
.ycd{bottom:926.674500px;}
.y38{bottom:930.320177px;}
.ycc{bottom:940.125000px;}
.ycb{bottom:953.574000px;}
.y36{bottom:955.597761px;}
.y3{bottom:959.899500px;}
.yca{bottom:967.024500px;}
.yc9{bottom:980.473500px;}
.yc8{bottom:993.922500px;}
.y2{bottom:1001.742000px;}
.y35{bottom:1010.650167px;}
.yc7{bottom:1016.115000px;}
.y33{bottom:1025.072347px;}
.y1{bottom:1043.584500px;}
.yc6{bottom:1044.135000px;}
.yc5{bottom:1062.067500px;}
.hd{height:8.296630px;}
.h9{height:8.374169px;}
.hb{height:8.839400px;}
.he{height:11.010481px;}
.h8{height:34.765576px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:43.456861px;}
.h16{height:43.756861px;}
.h17{height:44.831700px;}
.h2{height:47.802722px;}
.ha{height:47.815722px;}
.hc{height:47.877420px;}
.h5{height:48.132722px;}
.h15{height:49.224138px;}
.h14{height:49.287653px;}
.h13{height:51.909427px;}
.h10{height:54.622915px;}
.h12{height:74.345736px;}
.h11{height:74.407434px;}
.h1{height:104.296729px;}
.hf{height:265.182006px;}
.h0{height:1188.000000px;}
.w1{width:19.307111px;}
.w2{width:20.702806px;}
.w4{width:41.948383px;}
.w3{width:43.421616px;}
.w6{width:64.822270px;}
.w5{width:69.474586px;}
.w7{width:604.801071px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:28.410134px;}
.xe{left:81.000000px;}
.x35{left:86.977500px;}
.x25{left:92.955000px;}
.x23{left:95.944500px;}
.xd{left:107.965500px;}
.x1{left:109.798500px;}
.xf{left:118.972500px;}
.x16{left:121.624500px;}
.x5{left:127.044000px;}
.x15{left:141.379500px;}
.x2{left:145.575000px;}
.x31{left:148.917000px;}
.x1b{left:152.554500px;}
.x6{left:156.297000px;}
.x1c{left:167.167500px;}
.x4{left:178.743000px;}
.x28{left:184.047164px;}
.x30{left:213.924000px;}
.x2f{left:219.271500px;}
.x24{left:221.955000px;}
.x34{left:223.674000px;}
.x2e{left:247.025047px;}
.x10{left:339.615000px;}
.x12{left:354.646500px;}
.x11{left:356.022000px;}
.x1e{left:363.405000px;}
.x3{left:377.299500px;}
.x8{left:379.044000px;}
.x7{left:380.719500px;}
.x1f{left:390.102000px;}
.x9{left:391.282500px;}
.x2a{left:409.451875px;}
.x2b{left:411.778033px;}
.x18{left:412.801500px;}
.x17{left:415.963500px;}
.x1d{left:419.092500px;}
.x29{left:423.021130px;}
.x22{left:435.852000px;}
.x26{left:467.967000px;}
.x27{left:482.910000px;}
.x2d{left:527.404625px;}
.x33{left:576.531000px;}
.x32{left:596.002500px;}
.xb{left:631.044000px;}
.x19{left:644.224500px;}
.x1a{left:645.816000px;}
.xc{left:650.352000px;}
.x21{left:663.733500px;}
.x14{left:667.357500px;}
.xa{left:669.510000px;}
.x13{left:690.804000px;}
.x20{left:694.765500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.802877pt;}
.v3{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003733pt;}
.ls2{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.652911pt;}
.ls3{letter-spacing:2.655711pt;}
.ls1{letter-spacing:2.656693pt;}
.lsa{letter-spacing:2.657253pt;}
.ls8{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.658422pt;}
.ls9{letter-spacing:22.999200pt;}
.ls7{letter-spacing:23.004533pt;}
.ws4{word-spacing:-14.611867pt;}
.ws3{word-spacing:-13.283467pt;}
.ws6b{word-spacing:-13.262246pt;}
.ws17{word-spacing:-10.626800pt;}
.ws27{word-spacing:-9.669980pt;}
.ws19{word-spacing:-0.903276pt;}
.ws81{word-spacing:-0.637606pt;}
.wsb{word-spacing:-0.239104pt;}
.wsa3{word-spacing:-0.170029pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws78{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws6a{word-spacing:-0.007384pt;}
.ws26{word-spacing:0.000000pt;}
.ws69{word-spacing:0.001749pt;}
.ws9e{word-spacing:0.085014pt;}
.ws96{word-spacing:0.265669pt;}
.ws32{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.637606pt;}
.ws12{word-spacing:0.812954pt;}
.ws86{word-spacing:0.850142pt;}
.wsa0{word-spacing:0.850144pt;}
.ws3d{word-spacing:0.903276pt;}
.ws77{word-spacing:0.956410pt;}
.wse{word-spacing:1.052058pt;}
.ws29{word-spacing:1.222079pt;}
.ws42{word-spacing:1.381481pt;}
.ws94{word-spacing:1.434614pt;}
.ws5c{word-spacing:1.859685pt;}
.ws7f{word-spacing:2.284756pt;}
.ws54{word-spacing:2.391024pt;}
.ws9f{word-spacing:2.507925pt;}
.ws35{word-spacing:2.550426pt;}
.ws73{word-spacing:2.709827pt;}
.ws34{word-spacing:3.134898pt;}
.ws87{word-spacing:3.241166pt;}
.ws23{word-spacing:3.347434pt;}
.ws11{word-spacing:3.443098pt;}
.ws5f{word-spacing:3.825638pt;}
.ws52{word-spacing:3.931906pt;}
.ws43{word-spacing:4.144442pt;}
.ws36{word-spacing:4.250709pt;}
.ws1f{word-spacing:4.250720pt;}
.ws88{word-spacing:4.410111pt;}
.ws85{word-spacing:4.463245pt;}
.ws3a{word-spacing:4.569513pt;}
.ws46{word-spacing:4.675780pt;}
.ws76{word-spacing:4.728914pt;}
.ws98{word-spacing:4.835182pt;}
.ws64{word-spacing:4.888316pt;}
.ws9a{word-spacing:5.100864pt;}
.ws93{word-spacing:5.153985pt;}
.ws22{word-spacing:5.207119pt;}
.ws8b{word-spacing:5.260253pt;}
.ws2{word-spacing:5.313387pt;}
.ws84{word-spacing:5.366521pt;}
.ws72{word-spacing:5.419654pt;}
.ws28{word-spacing:5.579056pt;}
.ws82{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws71{word-spacing:5.950993pt;}
.ws13{word-spacing:5.977600pt;}
.ws60{word-spacing:6.004127pt;}
.ws2b{word-spacing:6.216662pt;}
.ws61{word-spacing:6.269796pt;}
.wsa2{word-spacing:6.461094pt;}
.wsa1{word-spacing:6.503602pt;}
.ws39{word-spacing:6.588599pt;}
.ws48{word-spacing:6.748001pt;}
.ws49{word-spacing:6.854269pt;}
.ws2c{word-spacing:6.907403pt;}
.ws83{word-spacing:6.960537pt;}
.ws99{word-spacing:6.971181pt;}
.ws33{word-spacing:7.066804pt;}
.ws4b{word-spacing:7.173072pt;}
.ws4e{word-spacing:7.226206pt;}
.ws5e{word-spacing:7.385607pt;}
.ws4c{word-spacing:7.651277pt;}
.ws20{word-spacing:7.863812pt;}
.ws8{word-spacing:7.938253pt;}
.ws89{word-spacing:7.970080pt;}
.ws30{word-spacing:8.023214pt;}
.ws79{word-spacing:8.235749pt;}
.ws63{word-spacing:8.395151pt;}
.ws56{word-spacing:8.501419pt;}
.ws74{word-spacing:8.554553pt;}
.ws66{word-spacing:8.607686pt;}
.wsc{word-spacing:8.799027pt;}
.ws97{word-spacing:9.032757pt;}
.ws7a{word-spacing:9.139025pt;}
.ws37{word-spacing:9.192159pt;}
.ws2a{word-spacing:9.245293pt;}
.wsf{word-spacing:9.420698pt;}
.ws24{word-spacing:9.457828pt;}
.wsd{word-spacing:9.468518pt;}
.ws55{word-spacing:9.564096pt;}
.ws3e{word-spacing:9.617230pt;}
.ws25{word-spacing:9.723498pt;}
.ws9c{word-spacing:9.819163pt;}
.ws18{word-spacing:9.882899pt;}
.ws41{word-spacing:9.936033pt;}
.ws9b{word-spacing:10.371757pt;}
.ws68{word-spacing:10.626773pt;}
.ws91{word-spacing:10.733041pt;}
.ws6c{word-spacing:10.892443pt;}
.ws3f{word-spacing:10.998710pt;}
.ws38{word-spacing:11.104978pt;}
.ws2e{word-spacing:11.158112pt;}
.ws53{word-spacing:11.211246pt;}
.ws95{word-spacing:11.317514pt;}
.ws70{word-spacing:11.370647pt;}
.ws1d{word-spacing:11.423781pt;}
.ws62{word-spacing:11.530049pt;}
.ws75{word-spacing:11.636317pt;}
.ws8f{word-spacing:11.848852pt;}
.ws4a{word-spacing:12.008254pt;}
.ws50{word-spacing:12.220789pt;}
.ws7c{word-spacing:12.273923pt;}
.ws45{word-spacing:12.327057pt;}
.ws5b{word-spacing:12.380191pt;}
.ws58{word-spacing:12.433325pt;}
.ws8c{word-spacing:12.592726pt;}
.ws90{word-spacing:12.645860pt;}
.ws6e{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws57{word-spacing:12.805262pt;}
.ws44{word-spacing:12.858396pt;}
.ws59{word-spacing:13.283467pt;}
.ws8d{word-spacing:13.389734pt;}
.ws51{word-spacing:13.549136pt;}
.ws7e{word-spacing:13.708538pt;}
.ws9d{word-spacing:13.857347pt;}
.ws8a{word-spacing:14.027341pt;}
.ws40{word-spacing:14.133609pt;}
.ws7b{word-spacing:14.293010pt;}
.ws5d{word-spacing:14.505546pt;}
.ws80{word-spacing:14.664947pt;}
.ws7{word-spacing:14.680986pt;}
.ws92{word-spacing:14.771215pt;}
.ws4d{word-spacing:14.824349pt;}
.ws6{word-spacing:14.824448pt;}
.ws1c{word-spacing:14.877483pt;}
.ws47{word-spacing:14.930617pt;}
.ws1b{word-spacing:15.143152pt;}
.ws8e{word-spacing:15.355687pt;}
.wsa4{word-spacing:15.897693pt;}
.ws16{word-spacing:15.940160pt;}
.ws9{word-spacing:16.019968pt;}
.ws65{word-spacing:16.365231pt;}
.ws6d{word-spacing:16.737168pt;}
.wsa{word-spacing:16.737280pt;}
.ws4f{word-spacing:17.640444pt;}
.ws15{word-spacing:17.789338pt;}
.ws2d{word-spacing:17.959247pt;}
.ws67{word-spacing:18.171782pt;}
.ws2f{word-spacing:18.224916pt;}
.ws1a{word-spacing:18.756255pt;}
.ws21{word-spacing:19.021924pt;}
.ws5a{word-spacing:19.765798pt;}
.ws6f{word-spacing:19.978334pt;}
.ws7d{word-spacing:20.084602pt;}
.ws10{word-spacing:20.180378pt;}
.ws31{word-spacing:21.412948pt;}
.ws14{word-spacing:29.696717pt;}
._2{margin-left:-5.579056pt;}
._0{margin-left:-4.463256pt;}
._4{margin-left:-3.506848pt;}
._1{margin-left:-1.912824pt;}
._5{margin-left:-0.892666pt;}
._9{width:0.916096pt;}
._6{width:2.319922pt;}
._3{width:3.240202pt;}
._e{width:12.021692pt;}
._a{width:13.602270pt;}
._b{width:16.737173pt;}
._d{width:26.567000pt;}
._8{width:181.961144pt;}
._7{width:197.514449pt;}
._c{width:329.430179pt;}
.fsa{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:42.732384pt;}
.fs6{font-size:42.787523pt;}
.fs7{font-size:47.419162pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs9{font-size:66.441965pt;}
.fs8{font-size:66.497103pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:0.315898pt;}
.y34{bottom:0.333129pt;}
.y37{bottom:0.344616pt;}
.y3b{bottom:2.096414pt;}
.y3d{bottom:2.107901pt;}
.y44{bottom:30.450270pt;}
.y3f{bottom:81.231735pt;}
.y41{bottom:92.483447pt;}
.y2b{bottom:96.000000pt;}
.y32{bottom:111.940000pt;}
.y40{bottom:112.413739pt;}
.y2a{bottom:121.756000pt;}
.y31{bottom:127.880000pt;}
.y29{bottom:137.696000pt;}
.y30{bottom:143.820000pt;}
.y81{bottom:144.078667pt;}
.y28{bottom:153.636000pt;}
.ya6{bottom:159.760000pt;}
.y63{bottom:159.761333pt;}
.y80{bottom:160.018667pt;}
.y2f{bottom:160.112000pt;}
.yc4{bottom:163.777333pt;}
.y27{bottom:169.576000pt;}
.ya5{bottom:175.701333pt;}
.y7f{bottom:175.960000pt;}
.y2e{bottom:176.052000pt;}
.y62{bottom:181.276000pt;}
.y42{bottom:184.932433pt;}
.y26{bottom:185.516000pt;}
.yc3{bottom:187.681333pt;}
.ya4{bottom:191.641333pt;}
.y7e{bottom:191.900000pt;}
.y25{bottom:201.457333pt;}
.yc2{bottom:203.621333pt;}
.ya3{bottom:207.581333pt;}
.y7d{bottom:208.098667pt;}
.y61{bottom:208.152000pt;}
.y24{bottom:217.397333pt;}
.y43{bottom:217.688184pt;}
.yc1{bottom:219.562667pt;}
.y2d{bottom:222.418667pt;}
.ya2{bottom:223.521333pt;}
.y7c{bottom:224.038667pt;}
.y60{bottom:224.093333pt;}
.yc0{bottom:235.502667pt;}
.y23{bottom:237.706667pt;}
.y2c{bottom:238.360000pt;}
.ya1{bottom:239.461333pt;}
.y7b{bottom:239.978667pt;}
.y5f{bottom:240.033333pt;}
.ybf{bottom:251.442667pt;}
.ya0{bottom:255.402667pt;}
.y7a{bottom:255.918667pt;}
.y5e{bottom:255.973333pt;}
.y22{bottom:266.569333pt;}
.ybe{bottom:267.382667pt;}
.y9f{bottom:271.342667pt;}
.y79{bottom:271.860000pt;}
.y5d{bottom:271.913333pt;}
.y21{bottom:279.853333pt;}
.ybd{bottom:283.322667pt;}
.y78{bottom:287.800000pt;}
.y5c{bottom:287.853333pt;}
.y9e{bottom:287.969333pt;}
.y20{bottom:293.168000pt;}
.ybc{bottom:299.262667pt;}
.y77{bottom:303.740000pt;}
.y5b{bottom:303.794667pt;}
.y9d{bottom:303.909333pt;}
.y1f{bottom:306.450667pt;}
.ybb{bottom:315.204000pt;}
.y76{bottom:319.680000pt;}
.y1e{bottom:319.734667pt;}
.y9c{bottom:319.849333pt;}
.yba{bottom:331.144000pt;}
.y1d{bottom:333.017333pt;}
.y75{bottom:335.620000pt;}
.y5a{bottom:335.674667pt;}
.y9b{bottom:335.789333pt;}
.y1c{bottom:346.301333pt;}
.yb9{bottom:347.084000pt;}
.y74{bottom:351.560000pt;}
.y59{bottom:351.614667pt;}
.y9a{bottom:351.730667pt;}
.y1b{bottom:359.585333pt;}
.yb8{bottom:363.024000pt;}
.y73{bottom:367.501333pt;}
.y58{bottom:367.554667pt;}
.y99{bottom:367.670667pt;}
.y1a{bottom:372.868000pt;}
.yb7{bottom:378.964000pt;}
.y72{bottom:383.441333pt;}
.y57{bottom:383.494667pt;}
.y98{bottom:383.610667pt;}
.y19{bottom:386.152000pt;}
.yb6{bottom:394.904000pt;}
.y71{bottom:399.381333pt;}
.y18{bottom:399.436000pt;}
.y97{bottom:399.550667pt;}
.y56{bottom:399.666667pt;}
.yb5{bottom:410.845333pt;}
.y17{bottom:412.718667pt;}
.y70{bottom:415.321333pt;}
.y96{bottom:415.490667pt;}
.y55{bottom:415.608000pt;}
.y16{bottom:426.002667pt;}
.yb4{bottom:430.802667pt;}
.y6f{bottom:431.261333pt;}
.y95{bottom:431.430667pt;}
.y54{bottom:431.548000pt;}
.y15{bottom:439.286667pt;}
.y94{bottom:447.372000pt;}
.y6e{bottom:447.461333pt;}
.y53{bottom:447.488000pt;}
.y14{bottom:452.569333pt;}
.yb3{bottom:454.706667pt;}
.y93{bottom:463.312000pt;}
.y6d{bottom:463.401333pt;}
.y52{bottom:463.428000pt;}
.y13{bottom:465.853333pt;}
.yb2{bottom:470.646667pt;}
.y6c{bottom:479.341333pt;}
.y51{bottom:479.368000pt;}
.yb1{bottom:486.586667pt;}
.y92{bottom:487.556000pt;}
.y6b{bottom:495.281333pt;}
.y50{bottom:495.308000pt;}
.yb0{bottom:502.526667pt;}
.y6a{bottom:511.221333pt;}
.y4f{bottom:511.249333pt;}
.y12{bottom:512.684000pt;}
.y91{bottom:518.300000pt;}
.yaf{bottom:518.466667pt;}
.y69{bottom:527.161333pt;}
.y4e{bottom:527.189333pt;}
.y11{bottom:529.121333pt;}
.y90{bottom:534.240000pt;}
.yae{bottom:534.408000pt;}
.y68{bottom:543.102667pt;}
.y4d{bottom:543.361333pt;}
.y10{bottom:545.757333pt;}
.y8f{bottom:550.181333pt;}
.yad{bottom:550.348000pt;}
.y67{bottom:559.042667pt;}
.y4c{bottom:559.301333pt;}
.y8e{bottom:566.121333pt;}
.yac{bottom:566.288000pt;}
.y66{bottom:574.982667pt;}
.y4b{bottom:575.241333pt;}
.yf{bottom:579.094667pt;}
.y8d{bottom:582.061333pt;}
.yab{bottom:582.228000pt;}
.y65{bottom:590.922667pt;}
.y4a{bottom:591.181333pt;}
.ye{bottom:595.532000pt;}
.y8c{bottom:598.001333pt;}
.yaa{bottom:598.168000pt;}
.y64{bottom:607.121333pt;}
.y49{bottom:607.122667pt;}
.yd{bottom:612.168000pt;}
.y8b{bottom:613.941333pt;}
.ya9{bottom:614.108000pt;}
.y48{bottom:623.062667pt;}
.y8a{bottom:629.881333pt;}
.ya8{bottom:630.049333pt;}
.y47{bottom:639.002667pt;}
.yc{bottom:645.505333pt;}
.y89{bottom:645.822667pt;}
.ya7{bottom:645.989333pt;}
.y46{bottom:654.942667pt;}
.y88{bottom:661.762667pt;}
.yb{bottom:661.942667pt;}
.y87{bottom:677.702667pt;}
.ya{bottom:678.578667pt;}
.yd9{bottom:680.249333pt;}
.yd8{bottom:692.204000pt;}
.y86{bottom:693.642667pt;}
.y45{bottom:700.372000pt;}
.yd7{bottom:704.160000pt;}
.y85{bottom:709.582667pt;}
.y9{bottom:711.916000pt;}
.yd6{bottom:716.114667pt;}
.y3e{bottom:719.500000pt;}
.y84{bottom:725.522667pt;}
.yd5{bottom:728.069333pt;}
.y8{bottom:728.354667pt;}
.yd4{bottom:740.025333pt;}
.y7{bottom:744.989333pt;}
.yd3{bottom:751.980000pt;}
.yd2{bottom:763.936000pt;}
.y83{bottom:770.953333pt;}
.yd1{bottom:775.890667pt;}
.y6{bottom:778.326667pt;}
.y3c{bottom:780.290262pt;}
.yd0{bottom:787.845333pt;}
.y82{bottom:793.668000pt;}
.y5{bottom:794.765333pt;}
.ycf{bottom:799.801333pt;}
.y3a{bottom:802.690302pt;}
.y4{bottom:811.400000pt;}
.yce{bottom:811.756000pt;}
.ycd{bottom:823.710667pt;}
.y38{bottom:826.951269pt;}
.ycc{bottom:835.666667pt;}
.ycb{bottom:847.621333pt;}
.y36{bottom:849.420232pt;}
.y3{bottom:853.244000pt;}
.yca{bottom:859.577333pt;}
.yc9{bottom:871.532000pt;}
.yc8{bottom:883.486667pt;}
.y2{bottom:890.437333pt;}
.y35{bottom:898.355704pt;}
.yc7{bottom:903.213333pt;}
.y33{bottom:911.175419pt;}
.y1{bottom:927.630667pt;}
.yc6{bottom:928.120000pt;}
.yc5{bottom:944.060000pt;}
.hd{height:7.374782pt;}
.h9{height:7.443706pt;}
.hb{height:7.857245pt;}
.he{height:9.787094pt;}
.h8{height:30.902734pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:38.628321pt;}
.h16{height:38.894988pt;}
.h17{height:39.850400pt;}
.h2{height:42.491308pt;}
.ha{height:42.502864pt;}
.hc{height:42.557707pt;}
.h5{height:42.784642pt;}
.h15{height:43.754790pt;}
.h14{height:43.811247pt;}
.h13{height:46.141713pt;}
.h10{height:48.553702pt;}
.h12{height:66.085099pt;}
.h11{height:66.139941pt;}
.h1{height:92.708203pt;}
.hf{height:235.717338pt;}
.h0{height:1056.000000pt;}
.w1{width:17.161877pt;}
.w2{width:18.402494pt;}
.w4{width:37.287451pt;}
.w3{width:38.596992pt;}
.w6{width:57.619795pt;}
.w5{width:61.755187pt;}
.w7{width:537.600952pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:25.253452pt;}
.xe{left:72.000000pt;}
.x35{left:77.313333pt;}
.x25{left:82.626667pt;}
.x23{left:85.284000pt;}
.xd{left:95.969333pt;}
.x1{left:97.598667pt;}
.xf{left:105.753333pt;}
.x16{left:108.110667pt;}
.x5{left:112.928000pt;}
.x15{left:125.670667pt;}
.x2{left:129.400000pt;}
.x31{left:132.370667pt;}
.x1b{left:135.604000pt;}
.x6{left:138.930667pt;}
.x1c{left:148.593333pt;}
.x4{left:158.882667pt;}
.x28{left:163.597479pt;}
.x30{left:190.154667pt;}
.x2f{left:194.908000pt;}
.x24{left:197.293333pt;}
.x34{left:198.821333pt;}
.x2e{left:219.577820pt;}
.x10{left:301.880000pt;}
.x12{left:315.241333pt;}
.x11{left:316.464000pt;}
.x1e{left:323.026667pt;}
.x3{left:335.377333pt;}
.x8{left:336.928000pt;}
.x7{left:338.417333pt;}
.x1f{left:346.757333pt;}
.x9{left:347.806667pt;}
.x2a{left:363.957222pt;}
.x2b{left:366.024918pt;}
.x18{left:366.934667pt;}
.x17{left:369.745333pt;}
.x1d{left:372.526667pt;}
.x29{left:376.018782pt;}
.x22{left:387.424000pt;}
.x26{left:415.970667pt;}
.x27{left:429.253333pt;}
.x2d{left:468.804111pt;}
.x33{left:512.472000pt;}
.x32{left:529.780000pt;}
.xb{left:560.928000pt;}
.x19{left:572.644000pt;}
.x1a{left:574.058667pt;}
.xc{left:578.090667pt;}
.x21{left:589.985333pt;}
.x14{left:593.206667pt;}
.xa{left:595.120000pt;}
.x13{left:614.048000pt;}
.x20{left:617.569333pt;}
}




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