
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_aa3dfda86a2edc7865a5579c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_14cbd20c6eceda57fc47cd11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_786fb85c54c14e973f5f3aae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_ef7e0d8077061667981c0081.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8c68cdf9cbd6d5b27f227707.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_977459a5a0d71ef1d112d375.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_2ab48801e899402c5e42cea0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_10d9c792817495ec1d9dcc8c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea85514c27a1433bfe3dd406.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.446000px;}
.ls24{letter-spacing:-1.014000px;}
.ls15{letter-spacing:-0.960000px;}
.ls40{letter-spacing:-0.900000px;}
.ls39{letter-spacing:-0.876000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls45{letter-spacing:-0.762000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls38{letter-spacing:-0.696000px;}
.ls21{letter-spacing:-0.684000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls22{letter-spacing:-0.560400px;}
.ls23{letter-spacing:-0.544200px;}
.ls35{letter-spacing:-0.428400px;}
.ls32{letter-spacing:-0.398400px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.ls16{letter-spacing:-0.335400px;}
.ls1c{letter-spacing:-0.291600px;}
.ls41{letter-spacing:-0.287400px;}
.ls2c{letter-spacing:-0.282000px;}
.ls30{letter-spacing:-0.276000px;}
.ls3{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.161400px;}
.ls3a{letter-spacing:-0.154800px;}
.ls25{letter-spacing:-0.145200px;}
.ls3b{letter-spacing:-0.093000px;}
.ls37{letter-spacing:-0.085200px;}
.ls2e{letter-spacing:-0.064800px;}
.ls42{letter-spacing:-0.038160px;}
.ls2d{letter-spacing:-0.037440px;}
.ls19{letter-spacing:-0.023040px;}
.ls18{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.025920px;}
.lsb{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls36{letter-spacing:0.099600px;}
.ls13{letter-spacing:0.107280px;}
.ls1d{letter-spacing:0.107400px;}
.ls2f{letter-spacing:0.110400px;}
.ls8{letter-spacing:0.126000px;}
.ls14{letter-spacing:0.135840px;}
.lsc{letter-spacing:0.159840px;}
.lsa{letter-spacing:0.161280px;}
.ls1f{letter-spacing:0.175800px;}
.ls0{letter-spacing:0.181440px;}
.ls3e{letter-spacing:0.232800px;}
.ls34{letter-spacing:0.261600px;}
.ls12{letter-spacing:0.266400px;}
.ls17{letter-spacing:0.270600px;}
.ls33{letter-spacing:0.291600px;}
.ls11{letter-spacing:0.319680px;}
.ls31{letter-spacing:0.321600px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.369360px;}
.ls47{letter-spacing:0.378600px;}
.ls7{letter-spacing:0.378720px;}
.ls10{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.504000px;}
.lse{letter-spacing:0.540000px;}
.ls26{letter-spacing:7.020000px;}
.ls27{letter-spacing:7.740000px;}
.ls3d{letter-spacing:12.780000px;}
.ls28{letter-spacing:19.260000px;}
.ls44{letter-spacing:21.420000px;}
.ls1{letter-spacing:26.460000px;}
.ls43{letter-spacing:73.980000px;}
.ls29{letter-spacing:101.340000px;}
.ls48{letter-spacing:126.341280px;}
.ls3f{letter-spacing:135.900000px;}
.ls46{letter-spacing:168.077280px;}
.ls2a{letter-spacing:168.426720px;}
.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;}
}
.ws17{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.300000px;}
.ws2b{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws1b{word-spacing:-21.381600px;}
.ws1e{word-spacing:-21.351600px;}
.ws8{word-spacing:-21.330600px;}
.ws12{word-spacing:-21.326400px;}
.ws26{word-spacing:-21.292800px;}
.wsf{word-spacing:-21.235800px;}
.ws19{word-spacing:-21.170400px;}
.wse{word-spacing:-21.167400px;}
.ws1f{word-spacing:-21.159600px;}
.wsd{word-spacing:-21.097440px;}
.ws27{word-spacing:-21.088080px;}
.ws1d{word-spacing:-21.085920px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.041280px;}
.wsa{word-spacing:-21.036960px;}
.ws16{word-spacing:-21.022560px;}
.ws29{word-spacing:-21.021840px;}
.ws18{word-spacing:-20.995200px;}
.ws20{word-spacing:-20.974800px;}
.ws25{word-spacing:-20.967000px;}
.ws14{word-spacing:-20.914800px;}
.ws24{word-spacing:-20.905200px;}
.ws1a{word-spacing:-20.784000px;}
.ws15{word-spacing:-20.778000px;}
.ws28{word-spacing:-20.772600px;}
.ws7{word-spacing:-20.724600px;}
.ws2{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws1c{word-spacing:-20.661600px;}
.ws22{word-spacing:-20.631600px;}
.ws13{word-spacing:-20.515800px;}
.ws11{word-spacing:-20.499600px;}
.wsc{word-spacing:-20.448000px;}
.ws10{word-spacing:-20.376000px;}
.ws21{word-spacing:-20.364000px;}
.ws2a{word-spacing:-20.298000px;}
.wsb{word-spacing:-20.196000px;}
.ws23{word-spacing:-20.184000px;}
.ws6{word-spacing:-20.100000px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-6.053280px;}
._3{margin-left:-4.464720px;}
._35{margin-left:-3.325920px;}
._1c{margin-left:-2.274480px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._15{width:2.488560px;}
._a{width:3.706560px;}
._12{width:5.496240px;}
._14{width:6.915600px;}
._8{width:8.760960px;}
._9{width:9.986160px;}
._3b{width:11.850240px;}
._d{width:13.225680px;}
._18{width:14.342880px;}
._6{width:15.415920px;}
._5{width:16.511040px;}
._f{width:17.712960px;}
._7{width:19.258560px;}
._13{width:22.323600px;}
._4b{width:23.671440px;}
._20{width:24.884880px;}
._2{width:26.271360px;}
._e{width:27.333840px;}
._3d{width:28.649760px;}
._4a{width:29.989440px;}
._2e{width:31.408080px;}
._4{width:33.230640px;}
._1d{width:34.538400px;}
._2f{width:35.541840px;}
._1e{width:37.264080px;}
._1f{width:38.643840px;}
._58{width:40.071600px;}
._53{width:41.579520px;}
._50{width:42.625440px;}
._24{width:43.804800px;}
._54{width:44.972640px;}
._48{width:46.051200px;}
._47{width:47.258640px;}
._2d{width:49.280400px;}
._11{width:50.749680px;}
._10{width:51.807600px;}
._26{width:52.902720px;}
._25{width:54.756000px;}
._42{width:56.771040px;}
._27{width:57.788640px;}
._28{width:58.822080px;}
._21{width:60.484320px;}
._5e{width:61.579440px;}
._33{width:62.674560px;}
._34{width:64.529760px;}
._c{width:65.814240px;}
._b{width:67.139280px;}
._1a{width:68.397360px;}
._30{width:70.677360px;}
._31{width:71.940960px;}
._5b{width:73.465200px;}
._23{width:79.859520px;}
._22{width:80.870400px;}
._4c{width:82.218240px;}
._16{width:83.930160px;}
._17{width:85.098960px;}
._40{width:88.121280px;}
._4f{width:91.675680px;}
._2b{width:93.674880px;}
._2c{width:94.938480px;}
._61{width:98.493600px;}
._32{width:99.924960px;}
._1b{width:101.340720px;}
._5f{width:110.438640px;}
._55{width:112.620960px;}
._29{width:119.199600px;}
._2a{width:120.463200px;}
._3e{width:122.094480px;}
._52{width:125.096400px;}
._51{width:126.360000px;}
._4e{width:130.325040px;}
._4d{width:131.498640px;}
._5d{width:132.762240px;}
._59{width:135.074640px;}
._57{width:136.105200px;}
._5c{width:146.072160px;}
._60{width:147.982080px;}
._3f{width:149.493600px;}
._3c{width:152.675040px;}
._39{width:157.602000px;}
._56{width:165.765360px;}
._43{width:187.021200px;}
._37{width:202.765680px;}
._38{width:204.415680px;}
._3a{width:323.734320px;}
._45{width:327.098640px;}
._46{width:328.114800px;}
._44{width:341.891760px;}
._49{width:351.702000px;}
._36{width:389.610000px;}
._5a{width:394.664400px;}
._41{width:570.834480px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y44{bottom:16.560000px;}
.y66{bottom:16.740000px;}
.y6{bottom:34.200000px;}
.y5d{bottom:34.560000px;}
.y64{bottom:34.740000px;}
.y91{bottom:52.734000px;}
.y4d{bottom:52.740000px;}
.y88{bottom:52.785000px;}
.y84{bottom:52.914000px;}
.y65{bottom:52.920000px;}
.y5b{bottom:70.914000px;}
.y52{bottom:70.920000px;}
.y62{bottom:71.100000px;}
.y5f{bottom:88.914000px;}
.y56{bottom:88.920000px;}
.y87{bottom:88.965000px;}
.y83{bottom:89.094000px;}
.y4c{bottom:89.100000px;}
.y96{bottom:89.145000px;}
.y27{bottom:89.496000px;}
.y5a{bottom:97.056000px;}
.y8d{bottom:97.776000px;}
.y7b{bottom:99.216000px;}
.y5c{bottom:107.094000px;}
.y51{bottom:107.100000px;}
.y57{bottom:107.145000px;}
.y63{bottom:107.280000px;}
.y79{bottom:114.336000px;}
.yaa{bottom:115.776000px;}
.y42{bottom:117.396000px;}
.y5e{bottom:125.274000px;}
.y48{bottom:125.280000px;}
.y59{bottom:125.325000px;}
.y26{bottom:125.856000px;}
.y8f{bottom:143.274000px;}
.y94{bottom:143.325000px;}
.y50{bottom:143.460000px;}
.y78{bottom:150.510000px;}
.ya9{bottom:152.130000px;}
.y41{bottom:153.570000px;}
.y7f{bottom:161.454000px;}
.y46{bottom:161.460000px;}
.y58{bottom:161.505000px;}
.y25{bottom:162.030000px;}
.y7c{bottom:179.634000px;}
.y4f{bottom:179.670000px;}
.y93{bottom:179.685000px;}
.y77{bottom:186.690000px;}
.ya8{bottom:188.310000px;}
.y40{bottom:189.750000px;}
.y7e{bottom:197.634000px;}
.y54{bottom:197.670000px;}
.y47{bottom:197.685000px;}
.y24{bottom:198.210000px;}
.y8e{bottom:215.814000px;}
.y76{bottom:223.050000px;}
.ya7{bottom:224.490000px;}
.y3f{bottom:225.930000px;}
.y90{bottom:233.814000px;}
.y4b{bottom:233.865000px;}
.y7d{bottom:233.994000px;}
.y53{bottom:234.030000px;}
.y95{bottom:234.045000px;}
.y23{bottom:234.390000px;}
.y55{bottom:242.670000px;}
.y75{bottom:259.230000px;}
.ya6{bottom:260.670000px;}
.y3e{bottom:262.290000px;}
.y8c{bottom:270.210000px;}
.y82{bottom:270.219000px;}
.y4a{bottom:270.225000px;}
.y22{bottom:270.750000px;}
.y74{bottom:295.410000px;}
.ya5{bottom:296.850000px;}
.y3d{bottom:298.470000px;}
.y8b{bottom:306.390000px;}
.y81{bottom:306.399000px;}
.y49{bottom:306.405000px;}
.y21{bottom:306.930000px;}
.y73{bottom:331.590000px;}
.ya4{bottom:333.210000px;}
.y3c{bottom:334.650000px;}
.y8a{bottom:342.570000px;}
.y80{bottom:342.579000px;}
.y20{bottom:343.155000px;}
.y72{bottom:367.995000px;}
.ya3{bottom:369.435000px;}
.y3b{bottom:370.875000px;}
.y89{bottom:378.930000px;}
.y1f{bottom:379.335000px;}
.y71{bottom:404.175000px;}
.ya2{bottom:405.615000px;}
.y3a{bottom:407.235000px;}
.y1e{bottom:415.515000px;}
.y4e{bottom:424.515000px;}
.y70{bottom:440.355000px;}
.ya1{bottom:441.795000px;}
.y39{bottom:443.415000px;}
.y1d{bottom:451.875000px;}
.y7a{bottom:462.315000px;}
.y6f{bottom:476.535000px;}
.ya0{bottom:478.155000px;}
.y38{bottom:479.595000px;}
.y1c{bottom:488.055000px;}
.y6e{bottom:512.895000px;}
.y9f{bottom:514.335000px;}
.y37{bottom:515.775000px;}
.y1b{bottom:524.235000px;}
.y6d{bottom:549.075000px;}
.y9e{bottom:550.515000px;}
.y36{bottom:551.955000px;}
.y1a{bottom:560.415000px;}
.y6c{bottom:585.255000px;}
.y9d{bottom:586.695000px;}
.y35{bottom:588.315000px;}
.y19{bottom:596.775000px;}
.y6b{bottom:621.465000px;}
.y9c{bottom:623.085000px;}
.y34{bottom:624.525000px;}
.y18{bottom:632.985000px;}
.y6a{bottom:657.645000px;}
.y9b{bottom:659.265000px;}
.y33{bottom:660.705000px;}
.y17{bottom:669.165000px;}
.y45{bottom:678.885000px;}
.y69{bottom:694.005000px;}
.y9a{bottom:695.445000px;}
.y32{bottom:696.885000px;}
.y16{bottom:705.345000px;}
.y68{bottom:730.185000px;}
.y99{bottom:731.625000px;}
.y31{bottom:733.245000px;}
.y15{bottom:741.705000px;}
.y67{bottom:750.525000px;}
.y98{bottom:767.985000px;}
.y30{bottom:769.425000px;}
.y14{bottom:777.885000px;}
.y97{bottom:804.165000px;}
.y2f{bottom:805.605000px;}
.y13{bottom:814.065000px;}
.y86{bottom:823.785000px;}
.y92{bottom:824.505000px;}
.y2e{bottom:841.785000px;}
.y12{bottom:850.245000px;}
.y2d{bottom:878.190000px;}
.y11{bottom:886.470000px;}
.y2c{bottom:914.370000px;}
.y10{bottom:922.830000px;}
.y61{bottom:932.370000px;}
.y2b{bottom:950.550000px;}
.yf{bottom:959.010000px;}
.y2a{bottom:986.730000px;}
.ye{bottom:995.190000px;}
.y43{bottom:1005.630000px;}
.y29{bottom:1022.910000px;}
.yd{bottom:1031.370000px;}
.y85{bottom:1041.810000px;}
.y28{bottom:1059.270000px;}
.yc{bottom:1067.730000px;}
.y60{bottom:1078.170000px;}
.yb{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.hf{height:36.180000px;}
.h8{height:47.344922px;}
.hd{height:59.066719px;}
.h11{height:61.423863px;}
.hc{height:61.575820px;}
.h3{height:62.028281px;}
.h15{height:72.396000px;}
.he{height:72.846211px;}
.hb{height:82.635820px;}
.h9{height:82.676953px;}
.h6{height:83.787539px;}
.ha{height:84.898125px;}
.h1b{height:86.585445px;}
.h7{height:96.508125px;}
.h17{height:108.756000px;}
.h14{height:144.900000px;}
.h13{height:181.110000px;}
.h18{height:217.290000px;}
.h12{height:253.650000px;}
.h10{height:326.010000px;}
.h1a{height:326.055000px;}
.h16{height:362.190000px;}
.h19{height:398.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:36.576000px;}
.w6{width:63.756000px;}
.wa{width:187.050000px;}
.w8{width:232.410000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w9{width:451.335000px;}
.wb{width:496.335000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.560000px;}
.x5{left:8.640000px;}
.x9{left:19.800000px;}
.x7{left:28.620000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x1a{left:88.199987px;}
.x4{left:98.850000px;}
.x2{left:110.376000px;}
.xb{left:112.355987px;}
.x1b{left:118.295987px;}
.x1f{left:123.156000px;}
.xa{left:127.475987px;}
.x15{left:152.489987px;}
.xc{left:158.069987px;}
.x14{left:181.649987px;}
.x17{left:229.889987px;}
.x18{left:235.109987px;}
.x11{left:240.689987px;}
.xf{left:251.309987px;}
.x1d{left:259.049987px;}
.x16{left:262.649987px;}
.x23{left:264.089987px;}
.x1c{left:306.254987px;}
.x22{left:310.935000px;}
.x10{left:313.094987px;}
.xd{left:329.114987px;}
.x12{left:336.134987px;}
.x20{left:356.475000px;}
.x13{left:373.574987px;}
.x19{left:378.434987px;}
.x1e{left:392.654987px;}
.xe{left:446.474987px;}
.x3{left:457.095000px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.285333pt;}
.ls24{letter-spacing:-0.901333pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls40{letter-spacing:-0.800000pt;}
.ls39{letter-spacing:-0.778667pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls45{letter-spacing:-0.677333pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls38{letter-spacing:-0.618667pt;}
.ls21{letter-spacing:-0.608000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls22{letter-spacing:-0.498133pt;}
.ls23{letter-spacing:-0.483733pt;}
.ls35{letter-spacing:-0.380800pt;}
.ls32{letter-spacing:-0.354133pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls16{letter-spacing:-0.298133pt;}
.ls1c{letter-spacing:-0.259200pt;}
.ls41{letter-spacing:-0.255467pt;}
.ls2c{letter-spacing:-0.250667pt;}
.ls30{letter-spacing:-0.245333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.143467pt;}
.ls3a{letter-spacing:-0.137600pt;}
.ls25{letter-spacing:-0.129067pt;}
.ls3b{letter-spacing:-0.082667pt;}
.ls37{letter-spacing:-0.075733pt;}
.ls2e{letter-spacing:-0.057600pt;}
.ls42{letter-spacing:-0.033920pt;}
.ls2d{letter-spacing:-0.033280pt;}
.ls19{letter-spacing:-0.020480pt;}
.ls18{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.023040pt;}
.lsb{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls36{letter-spacing:0.088533pt;}
.ls13{letter-spacing:0.095360pt;}
.ls1d{letter-spacing:0.095467pt;}
.ls2f{letter-spacing:0.098133pt;}
.ls8{letter-spacing:0.112000pt;}
.ls14{letter-spacing:0.120747pt;}
.lsc{letter-spacing:0.142080pt;}
.lsa{letter-spacing:0.143360pt;}
.ls1f{letter-spacing:0.156267pt;}
.ls0{letter-spacing:0.161280pt;}
.ls3e{letter-spacing:0.206933pt;}
.ls34{letter-spacing:0.232533pt;}
.ls12{letter-spacing:0.236800pt;}
.ls17{letter-spacing:0.240533pt;}
.ls33{letter-spacing:0.259200pt;}
.ls11{letter-spacing:0.284160pt;}
.ls31{letter-spacing:0.285867pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.328320pt;}
.ls47{letter-spacing:0.336533pt;}
.ls7{letter-spacing:0.336640pt;}
.ls10{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.480000pt;}
.ls26{letter-spacing:6.240000pt;}
.ls27{letter-spacing:6.880000pt;}
.ls3d{letter-spacing:11.360000pt;}
.ls28{letter-spacing:17.120000pt;}
.ls44{letter-spacing:19.040000pt;}
.ls1{letter-spacing:23.520000pt;}
.ls43{letter-spacing:65.760000pt;}
.ls29{letter-spacing:90.080000pt;}
.ls48{letter-spacing:112.303360pt;}
.ls3f{letter-spacing:120.800000pt;}
.ls46{letter-spacing:149.402027pt;}
.ls2a{letter-spacing:149.712640pt;}
.ws17{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws2b{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws1b{word-spacing:-19.005867pt;}
.ws1e{word-spacing:-18.979200pt;}
.ws8{word-spacing:-18.960533pt;}
.ws12{word-spacing:-18.956800pt;}
.ws26{word-spacing:-18.926933pt;}
.wsf{word-spacing:-18.876267pt;}
.ws19{word-spacing:-18.818133pt;}
.wse{word-spacing:-18.815467pt;}
.ws1f{word-spacing:-18.808533pt;}
.wsd{word-spacing:-18.753280pt;}
.ws27{word-spacing:-18.744960pt;}
.ws1d{word-spacing:-18.743040pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.703360pt;}
.wsa{word-spacing:-18.699520pt;}
.ws16{word-spacing:-18.686720pt;}
.ws29{word-spacing:-18.686080pt;}
.ws18{word-spacing:-18.662400pt;}
.ws20{word-spacing:-18.644267pt;}
.ws25{word-spacing:-18.637333pt;}
.ws14{word-spacing:-18.590933pt;}
.ws24{word-spacing:-18.582400pt;}
.ws1a{word-spacing:-18.474667pt;}
.ws15{word-spacing:-18.469333pt;}
.ws28{word-spacing:-18.464533pt;}
.ws7{word-spacing:-18.421867pt;}
.ws2{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws1c{word-spacing:-18.365867pt;}
.ws22{word-spacing:-18.339200pt;}
.ws13{word-spacing:-18.236267pt;}
.ws11{word-spacing:-18.221867pt;}
.wsc{word-spacing:-18.176000pt;}
.ws10{word-spacing:-18.112000pt;}
.ws21{word-spacing:-18.101333pt;}
.ws2a{word-spacing:-18.042667pt;}
.wsb{word-spacing:-17.952000pt;}
.ws23{word-spacing:-17.941333pt;}
.ws6{word-spacing:-17.866667pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-5.380693pt;}
._3{margin-left:-3.968640pt;}
._35{margin-left:-2.956373pt;}
._1c{margin-left:-2.021760pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._15{width:2.212053pt;}
._a{width:3.294720pt;}
._12{width:4.885547pt;}
._14{width:6.147200pt;}
._8{width:7.787520pt;}
._9{width:8.876587pt;}
._3b{width:10.533547pt;}
._d{width:11.756160pt;}
._18{width:12.749227pt;}
._6{width:13.703040pt;}
._5{width:14.676480pt;}
._f{width:15.744853pt;}
._7{width:17.118720pt;}
._13{width:19.843200pt;}
._4b{width:21.041280pt;}
._20{width:22.119893pt;}
._2{width:23.352320pt;}
._e{width:24.296747pt;}
._3d{width:25.466453pt;}
._4a{width:26.657280pt;}
._2e{width:27.918293pt;}
._4{width:29.538347pt;}
._1d{width:30.700800pt;}
._2f{width:31.592747pt;}
._1e{width:33.123627pt;}
._1f{width:34.350080pt;}
._58{width:35.619200pt;}
._53{width:36.959573pt;}
._50{width:37.889280pt;}
._24{width:38.937600pt;}
._54{width:39.975680pt;}
._48{width:40.934400pt;}
._47{width:42.007680pt;}
._2d{width:43.804800pt;}
._11{width:45.110827pt;}
._10{width:46.051200pt;}
._26{width:47.024640pt;}
._25{width:48.672000pt;}
._42{width:50.463147pt;}
._27{width:51.367680pt;}
._28{width:52.286293pt;}
._21{width:53.763840pt;}
._5e{width:54.737280pt;}
._33{width:55.710720pt;}
._34{width:57.359787pt;}
._c{width:58.501547pt;}
._b{width:59.679360pt;}
._1a{width:60.797653pt;}
._30{width:62.824320pt;}
._31{width:63.947520pt;}
._5b{width:65.302400pt;}
._23{width:70.986240pt;}
._22{width:71.884800pt;}
._4c{width:73.082880pt;}
._16{width:74.604587pt;}
._17{width:75.643520pt;}
._40{width:78.330027pt;}
._4f{width:81.489493pt;}
._2b{width:83.266560pt;}
._2c{width:84.389760pt;}
._61{width:87.549867pt;}
._32{width:88.822187pt;}
._1b{width:90.080640pt;}
._5f{width:98.167680pt;}
._55{width:100.107520pt;}
._29{width:105.955200pt;}
._2a{width:107.078400pt;}
._3e{width:108.528427pt;}
._52{width:111.196800pt;}
._51{width:112.320000pt;}
._4e{width:115.844480pt;}
._4d{width:116.887680pt;}
._5d{width:118.010880pt;}
._59{width:120.066347pt;}
._57{width:120.982400pt;}
._5c{width:129.841920pt;}
._60{width:131.539627pt;}
._3f{width:132.883200pt;}
._3c{width:135.711147pt;}
._39{width:140.090667pt;}
._56{width:147.346987pt;}
._43{width:166.241067pt;}
._37{width:180.236160pt;}
._38{width:181.702827pt;}
._3a{width:287.763840pt;}
._45{width:290.754347pt;}
._46{width:291.657600pt;}
._44{width:303.903787pt;}
._49{width:312.624000pt;}
._36{width:346.320000pt;}
._5a{width:350.812800pt;}
._41{width:507.408427pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y44{bottom:14.720000pt;}
.y66{bottom:14.880000pt;}
.y6{bottom:30.400000pt;}
.y5d{bottom:30.720000pt;}
.y64{bottom:30.880000pt;}
.y91{bottom:46.874667pt;}
.y4d{bottom:46.880000pt;}
.y88{bottom:46.920000pt;}
.y84{bottom:47.034667pt;}
.y65{bottom:47.040000pt;}
.y5b{bottom:63.034667pt;}
.y52{bottom:63.040000pt;}
.y62{bottom:63.200000pt;}
.y5f{bottom:79.034667pt;}
.y56{bottom:79.040000pt;}
.y87{bottom:79.080000pt;}
.y83{bottom:79.194667pt;}
.y4c{bottom:79.200000pt;}
.y96{bottom:79.240000pt;}
.y27{bottom:79.552000pt;}
.y5a{bottom:86.272000pt;}
.y8d{bottom:86.912000pt;}
.y7b{bottom:88.192000pt;}
.y5c{bottom:95.194667pt;}
.y51{bottom:95.200000pt;}
.y57{bottom:95.240000pt;}
.y63{bottom:95.360000pt;}
.y79{bottom:101.632000pt;}
.yaa{bottom:102.912000pt;}
.y42{bottom:104.352000pt;}
.y5e{bottom:111.354667pt;}
.y48{bottom:111.360000pt;}
.y59{bottom:111.400000pt;}
.y26{bottom:111.872000pt;}
.y8f{bottom:127.354667pt;}
.y94{bottom:127.400000pt;}
.y50{bottom:127.520000pt;}
.y78{bottom:133.786667pt;}
.ya9{bottom:135.226667pt;}
.y41{bottom:136.506667pt;}
.y7f{bottom:143.514667pt;}
.y46{bottom:143.520000pt;}
.y58{bottom:143.560000pt;}
.y25{bottom:144.026667pt;}
.y7c{bottom:159.674667pt;}
.y4f{bottom:159.706667pt;}
.y93{bottom:159.720000pt;}
.y77{bottom:165.946667pt;}
.ya8{bottom:167.386667pt;}
.y40{bottom:168.666667pt;}
.y7e{bottom:175.674667pt;}
.y54{bottom:175.706667pt;}
.y47{bottom:175.720000pt;}
.y24{bottom:176.186667pt;}
.y8e{bottom:191.834667pt;}
.y76{bottom:198.266667pt;}
.ya7{bottom:199.546667pt;}
.y3f{bottom:200.826667pt;}
.y90{bottom:207.834667pt;}
.y4b{bottom:207.880000pt;}
.y7d{bottom:207.994667pt;}
.y53{bottom:208.026667pt;}
.y95{bottom:208.040000pt;}
.y23{bottom:208.346667pt;}
.y55{bottom:215.706667pt;}
.y75{bottom:230.426667pt;}
.ya6{bottom:231.706667pt;}
.y3e{bottom:233.146667pt;}
.y8c{bottom:240.186667pt;}
.y82{bottom:240.194667pt;}
.y4a{bottom:240.200000pt;}
.y22{bottom:240.666667pt;}
.y74{bottom:262.586667pt;}
.ya5{bottom:263.866667pt;}
.y3d{bottom:265.306667pt;}
.y8b{bottom:272.346667pt;}
.y81{bottom:272.354667pt;}
.y49{bottom:272.360000pt;}
.y21{bottom:272.826667pt;}
.y73{bottom:294.746667pt;}
.ya4{bottom:296.186667pt;}
.y3c{bottom:297.466667pt;}
.y8a{bottom:304.506667pt;}
.y80{bottom:304.514667pt;}
.y20{bottom:305.026667pt;}
.y72{bottom:327.106667pt;}
.ya3{bottom:328.386667pt;}
.y3b{bottom:329.666667pt;}
.y89{bottom:336.826667pt;}
.y1f{bottom:337.186667pt;}
.y71{bottom:359.266667pt;}
.ya2{bottom:360.546667pt;}
.y3a{bottom:361.986667pt;}
.y1e{bottom:369.346667pt;}
.y4e{bottom:377.346667pt;}
.y70{bottom:391.426667pt;}
.ya1{bottom:392.706667pt;}
.y39{bottom:394.146667pt;}
.y1d{bottom:401.666667pt;}
.y7a{bottom:410.946667pt;}
.y6f{bottom:423.586667pt;}
.ya0{bottom:425.026667pt;}
.y38{bottom:426.306667pt;}
.y1c{bottom:433.826667pt;}
.y6e{bottom:455.906667pt;}
.y9f{bottom:457.186667pt;}
.y37{bottom:458.466667pt;}
.y1b{bottom:465.986667pt;}
.y6d{bottom:488.066667pt;}
.y9e{bottom:489.346667pt;}
.y36{bottom:490.626667pt;}
.y1a{bottom:498.146667pt;}
.y6c{bottom:520.226667pt;}
.y9d{bottom:521.506667pt;}
.y35{bottom:522.946667pt;}
.y19{bottom:530.466667pt;}
.y6b{bottom:552.413333pt;}
.y9c{bottom:553.853333pt;}
.y34{bottom:555.133333pt;}
.y18{bottom:562.653333pt;}
.y6a{bottom:584.573333pt;}
.y9b{bottom:586.013333pt;}
.y33{bottom:587.293333pt;}
.y17{bottom:594.813333pt;}
.y45{bottom:603.453333pt;}
.y69{bottom:616.893333pt;}
.y9a{bottom:618.173333pt;}
.y32{bottom:619.453333pt;}
.y16{bottom:626.973333pt;}
.y68{bottom:649.053333pt;}
.y99{bottom:650.333333pt;}
.y31{bottom:651.773333pt;}
.y15{bottom:659.293333pt;}
.y67{bottom:667.133333pt;}
.y98{bottom:682.653333pt;}
.y30{bottom:683.933333pt;}
.y14{bottom:691.453333pt;}
.y97{bottom:714.813333pt;}
.y2f{bottom:716.093333pt;}
.y13{bottom:723.613333pt;}
.y86{bottom:732.253333pt;}
.y92{bottom:732.893333pt;}
.y2e{bottom:748.253333pt;}
.y12{bottom:755.773333pt;}
.y2d{bottom:780.613333pt;}
.y11{bottom:787.973333pt;}
.y2c{bottom:812.773333pt;}
.y10{bottom:820.293333pt;}
.y61{bottom:828.773333pt;}
.y2b{bottom:844.933333pt;}
.yf{bottom:852.453333pt;}
.y2a{bottom:877.093333pt;}
.ye{bottom:884.613333pt;}
.y43{bottom:893.893333pt;}
.y29{bottom:909.253333pt;}
.yd{bottom:916.773333pt;}
.y85{bottom:926.053333pt;}
.y28{bottom:941.573333pt;}
.yc{bottom:949.093333pt;}
.y60{bottom:958.373333pt;}
.yb{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.hf{height:32.160000pt;}
.h8{height:42.084375pt;}
.hd{height:52.503750pt;}
.h11{height:54.598989pt;}
.hc{height:54.734062pt;}
.h3{height:55.136250pt;}
.h15{height:64.352000pt;}
.he{height:64.752187pt;}
.hb{height:73.454062pt;}
.h9{height:73.490625pt;}
.h6{height:74.477812pt;}
.ha{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h7{height:85.785000pt;}
.h17{height:96.672000pt;}
.h14{height:128.800000pt;}
.h13{height:160.986667pt;}
.h18{height:193.146667pt;}
.h12{height:225.466667pt;}
.h10{height:289.786667pt;}
.h1a{height:289.826667pt;}
.h16{height:321.946667pt;}
.h19{height:354.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:32.512000pt;}
.w6{width:56.672000pt;}
.wa{width:166.266667pt;}
.w8{width:206.586667pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w9{width:401.186667pt;}
.wb{width:441.186667pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.720000pt;}
.x5{left:7.680000pt;}
.x9{left:17.600000pt;}
.x7{left:25.440000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x1a{left:78.399988pt;}
.x4{left:87.866667pt;}
.x2{left:98.112000pt;}
.xb{left:99.871988pt;}
.x1b{left:105.151988pt;}
.x1f{left:109.472000pt;}
.xa{left:113.311988pt;}
.x15{left:135.546655pt;}
.xc{left:140.506655pt;}
.x14{left:161.466655pt;}
.x17{left:204.346655pt;}
.x18{left:208.986655pt;}
.x11{left:213.946655pt;}
.xf{left:223.386655pt;}
.x1d{left:230.266655pt;}
.x16{left:233.466655pt;}
.x23{left:234.746655pt;}
.x1c{left:272.226655pt;}
.x22{left:276.386667pt;}
.x10{left:278.306655pt;}
.xd{left:292.546655pt;}
.x12{left:298.786655pt;}
.x20{left:316.866667pt;}
.x13{left:332.066655pt;}
.x19{left:336.386655pt;}
.x1e{left:349.026655pt;}
.xe{left:396.866655pt;}
.x3{left:406.306667pt;}
.x8{left:708.933333pt;}
}




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