
    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_d839c1a4409dd4a1dd301f58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_6ea80eb4a3c93be51ee0191e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_728a6b055588900f43957193.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0bd3b2d6fe8230eaf4e3e18d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.993164;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.573600px;}
.v1{vertical-align:15.129720px;}
.ls5d{letter-spacing:-2.489760px;}
.ls3a{letter-spacing:-2.202480px;}
.ls5e{letter-spacing:-2.154600px;}
.ls5b{letter-spacing:-1.771560px;}
.ls33{letter-spacing:-1.482480px;}
.ls5f{letter-spacing:-1.436400px;}
.ls24{letter-spacing:-1.404000px;}
.ls34{letter-spacing:-1.380240px;}
.ls50{letter-spacing:-1.305720px;}
.ls3e{letter-spacing:-1.292760px;}
.ls4c{letter-spacing:-1.221480px;}
.ls52{letter-spacing:-1.137240px;}
.ls60{letter-spacing:-0.972000px;}
.ls65{letter-spacing:-0.957600px;}
.ls4d{letter-spacing:-0.926640px;}
.ls56{letter-spacing:-0.884520px;}
.ls3b{letter-spacing:-0.861840px;}
.ls1f{letter-spacing:-0.855000px;}
.ls2d{letter-spacing:-0.828000px;}
.ls26{letter-spacing:-0.792000px;}
.ls58{letter-spacing:-0.758160px;}
.ls44{letter-spacing:-0.718200px;}
.ls46{letter-spacing:-0.670320px;}
.ls31{letter-spacing:-0.612000px;}
.ls63{letter-spacing:-0.547560px;}
.ls25{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.478800px;}
.ls45{letter-spacing:-0.430920px;}
.ls3f{letter-spacing:-0.383040px;}
.ls57{letter-spacing:-0.379080px;}
.ls3c{letter-spacing:-0.335160px;}
.ls22{letter-spacing:-0.324000px;}
.ls41{letter-spacing:-0.287280px;}
.ls49{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.252000px;}
.ls47{letter-spacing:-0.191520px;}
.ls51{letter-spacing:-0.168480px;}
.ls39{letter-spacing:-0.143640px;}
.ls64{letter-spacing:-0.095760px;}
.ls43{letter-spacing:-0.047880px;}
.ls20{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.028728px;}
.ls66{letter-spacing:0.033516px;}
.ls42{letter-spacing:0.047880px;}
.ls18{letter-spacing:0.069120px;}
.ls1e{letter-spacing:0.095760px;}
.ls61{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113760px;}
.lse{letter-spacing:0.143640px;}
.ls48{letter-spacing:0.191520px;}
.ls4b{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.299520px;}
.ls38{letter-spacing:0.357840px;}
.ls21{letter-spacing:0.450000px;}
.ls40{letter-spacing:0.478800px;}
.ls10{letter-spacing:0.505440px;}
.ls37{letter-spacing:0.511200px;}
.ls2e{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.631800px;}
.ls2f{letter-spacing:0.684000px;}
.ls36{letter-spacing:0.715680px;}
.ls16{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.861840px;}
.ls2b{letter-spacing:0.864000px;}
.ls59{letter-spacing:0.884520px;}
.ls29{letter-spacing:0.900000px;}
.ls4f{letter-spacing:0.926640px;}
.ls14{letter-spacing:0.968760px;}
.ls28{letter-spacing:0.972000px;}
.ls4a{letter-spacing:1.010880px;}
.ls30{letter-spacing:1.044000px;}
.ls17{letter-spacing:1.053000px;}
.ls32{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.137240px;}
.ls27{letter-spacing:1.152000px;}
.ls35{letter-spacing:1.175760px;}
.ls5a{letter-spacing:1.179360px;}
.lsc{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.558440px;}
.ls2a{letter-spacing:1.584000px;}
.ls5c{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls53{letter-spacing:1.728000px;}
.ls4e{letter-spacing:1.811160px;}
.ls55{letter-spacing:1.836000px;}
.ls54{letter-spacing:1.979640px;}
.lsb{letter-spacing:1.980000px;}
.ls2c{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsa{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls1a{letter-spacing:35.957880px;}
.ls19{letter-spacing:90.876240px;}
.ls67{letter-spacing:167.599440px;}
.ls1b{letter-spacing:320.077800px;}
.ls1c{letter-spacing:479.230920px;}
.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;}
}
.ws2f{word-spacing:-18.738000px;}
.ws2d{word-spacing:-18.630000px;}
.ws3d{word-spacing:-18.036000px;}
.ws25{word-spacing:-16.902000px;}
.ws26{word-spacing:-16.632000px;}
.ws14{word-spacing:-16.153920px;}
.ws3c{word-spacing:-15.930000px;}
.ws15{word-spacing:-15.489360px;}
.ws1c{word-spacing:-15.465240px;}
.ws2e{word-spacing:-15.163200px;}
.ws1e{word-spacing:-15.034320px;}
.ws2b{word-spacing:-14.994720px;}
.ws19{word-spacing:-14.986440px;}
.ws13{word-spacing:-14.978160px;}
.ws1f{word-spacing:-14.938560px;}
.ws40{word-spacing:-14.890680px;}
.ws16{word-spacing:-14.842800px;}
.ws1d{word-spacing:-14.699160px;}
.ws1a{word-spacing:-14.507640px;}
.ws36{word-spacing:-14.362920px;}
.ws20{word-spacing:-14.268240px;}
.ws28{word-spacing:-14.194440px;}
.ws35{word-spacing:-14.152320px;}
.ws18{word-spacing:-14.124600px;}
.ws1b{word-spacing:-13.693680px;}
.ws2{word-spacing:-13.635000px;}
.ws12{word-spacing:-13.495680px;}
.ws37{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws34{word-spacing:-13.225680px;}
.ws1{word-spacing:-13.185000px;}
.ws27{word-spacing:-13.183560px;}
.ws17{word-spacing:-12.783960px;}
.ws30{word-spacing:-12.762360px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.348000px;}
.ws32{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws2a{word-spacing:-12.256920px;}
.ws8{word-spacing:-12.060000px;}
.ws2c{word-spacing:-12.046320px;}
.ws29{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws39{word-spacing:-11.874240px;}
.ws3e{word-spacing:-11.709360px;}
.ws33{word-spacing:-11.583000px;}
.ws3b{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws3f{word-spacing:-11.161800px;}
.ws38{word-spacing:-11.156040px;}
.ws10{word-spacing:-10.944000px;}
.ws31{word-spacing:-10.824840px;}
.ws3a{word-spacing:-10.820880px;}
.wsf{word-spacing:-10.656000px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws22{word-spacing:-1.757160px;}
.ws48{word-spacing:-1.584000px;}
.ws6b{word-spacing:-1.484280px;}
.ws4c{word-spacing:-1.440000px;}
.ws6e{word-spacing:-1.340640px;}
.ws4b{word-spacing:-1.152000px;}
.ws67{word-spacing:-1.053000px;}
.ws46{word-spacing:-0.972000px;}
.ws70{word-spacing:-0.957600px;}
.ws5c{word-spacing:-0.926640px;}
.ws47{word-spacing:-0.900000px;}
.ws49{word-spacing:-0.864000px;}
.ws5b{word-spacing:-0.716040px;}
.ws50{word-spacing:-0.715680px;}
.ws4e{word-spacing:-0.612000px;}
.ws5f{word-spacing:-0.505440px;}
.ws51{word-spacing:-0.357840px;}
.ws4d{word-spacing:-0.324000px;}
.ws66{word-spacing:-0.294840px;}
.ws5a{word-spacing:-0.210600px;}
.ws62{word-spacing:-0.191520px;}
.ws69{word-spacing:-0.143640px;}
.ws64{word-spacing:-0.108000px;}
.ws6d{word-spacing:-0.095760px;}
.ws23{word-spacing:-0.090360px;}
.ws6c{word-spacing:-0.047880px;}
.ws59{word-spacing:-0.042120px;}
.ws41{word-spacing:0.000000px;}
.ws6f{word-spacing:0.047880px;}
.ws65{word-spacing:0.084240px;}
.ws68{word-spacing:0.143640px;}
.ws5e{word-spacing:0.168480px;}
.ws57{word-spacing:0.239400px;}
.ws42{word-spacing:0.252000px;}
.ws56{word-spacing:0.287280px;}
.ws44{word-spacing:0.324000px;}
.ws52{word-spacing:0.335160px;}
.ws54{word-spacing:0.383040px;}
.ws58{word-spacing:0.430920px;}
.ws53{word-spacing:0.478800px;}
.ws43{word-spacing:0.540000px;}
.ws45{word-spacing:0.792000px;}
.ws4a{word-spacing:0.828000px;}
.ws6a{word-spacing:0.957600px;}
.ws55{word-spacing:1.292760px;}
.ws5d{word-spacing:1.305720px;}
.ws4f{word-spacing:1.380240px;}
.ws60{word-spacing:1.771560px;}
.ws63{word-spacing:2.154600px;}
.ws61{word-spacing:2.489760px;}
.ws24{word-spacing:5.373720px;}
.ws21{word-spacing:9.299880px;}
._6{margin-left:-5.938920px;}
._7{margin-left:-4.831560px;}
._3{margin-left:-3.009600px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._a{width:39.405240px;}
._9{width:46.624680px;}
._5{width:51.976080px;}
._8{width:53.020080px;}
._b{width:322.759080px;}
._c{width:479.853360px;}
._d{width:499.675680px;}
._4{width:1853.884080px;}
.fc6{color:rgb(18,73,154);}
.fc5{color:rgb(12,100,171);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs6{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs9{font-size:42.840000px;}
.fs0{font-size:45.000000px;}
.fs4{font-size:47.880000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.y76{bottom:25.800150px;}
.y80{bottom:40.202850px;}
.y61{bottom:74.204400px;}
.y60{bottom:96.299400px;}
.y43{bottom:103.383030px;}
.y42{bottom:118.417350px;}
.y13{bottom:120.432000px;}
.y41{bottom:131.467350px;}
.y12{bottom:132.136200px;}
.y5f{bottom:136.120230px;}
.y40{bottom:139.567350px;}
.y5e{bottom:148.177080px;}
.y3f{bottom:161.527350px;}
.y11{bottom:161.530200px;}
.y5d{bottom:173.101590px;}
.y10{bottom:173.230200px;}
.y3e{bottom:183.397350px;}
.yf{bottom:196.126200px;}
.y5c{bottom:198.657900px;}
.y3d{bottom:200.768880px;}
.y7b{bottom:201.584850px;}
.y5b{bottom:210.714750px;}
.ye{bottom:214.126200px;}
.y5a{bottom:230.279550px;}
.yd{bottom:232.036200px;}
.y3c{bottom:232.932270px;}
.y75{bottom:248.121750px;}
.y74{bottom:263.331750px;}
.y73{bottom:276.921750px;}
.y28{bottom:280.350600px;}
.y27{bottom:292.045800px;}
.y72{bottom:294.201750px;}
.y71{bottom:309.501750px;}
.y26{bottom:322.339800px;}
.y70{bottom:323.091750px;}
.y25{bottom:334.039800px;}
.y6f{bottom:337.131750px;}
.y3b{bottom:345.498150px;}
.y6e{bottom:349.191750px;}
.y24{bottom:356.044800px;}
.y59{bottom:364.288590px;}
.y23{bottom:374.044800px;}
.y3a{bottom:377.910540px;}
.y6d{bottom:382.553400px;}
.yb1{bottom:382.770000px;}
.y22{bottom:391.954950px;}
.y39{bottom:392.944860px;}
.yb0{bottom:394.470000px;}
.y6c{bottom:396.593400px;}
.yaf{bottom:405.720000px;}
.y6b{bottom:408.653400px;}
.yae{bottom:417.870000px;}
.y6a{bottom:423.593400px;}
.yad{bottom:426.420000px;}
.y69{bottom:435.653400px;}
.yac{bottom:438.120000px;}
.y21{bottom:440.269350px;}
.y68{bottom:450.593400px;}
.y20{bottom:451.964550px;}
.yab{bottom:460.124400px;}
.y67{bottom:462.653400px;}
.ybb{bottom:463.866660px;}
.y38{bottom:466.560360px;}
.yaa{bottom:478.124400px;}
.y1f{bottom:482.258550px;}
.y66{bottom:483.111750px;}
.y37{bottom:490.500360px;}
.y1e{bottom:493.958550px;}
.ya9{bottom:496.034400px;}
.yba{bottom:496.927800px;}
.y58{bottom:504.200700px;}
.y36{bottom:508.323690px;}
.y1d{bottom:514.883550px;}
.y57{bottom:516.257550px;}
.y1c{bottom:534.323550px;}
.y35{bottom:537.841710px;}
.ya8{bottom:542.688600px;}
.y1b{bottom:551.873400px;}
.y56{bottom:552.826950px;}
.y34{bottom:552.876030px;}
.ya7{bottom:554.388450px;}
.ya6{bottom:565.638600px;}
.ya5{bottom:577.788600px;}
.ya4{bottom:586.338600px;}
.y55{bottom:591.213150px;}
.ya3{bottom:598.038600px;}
.y1a{bottom:600.187950px;}
.y54{bottom:609.618600px;}
.y19{bottom:611.883000px;}
.ya2{bottom:618.963000px;}
.y53{bottom:621.676110px;}
.yb9{bottom:623.785260px;}
.ya1{bottom:638.403000px;}
.y65{bottom:641.069550px;}
.y18{bottom:642.177000px;}
.y64{bottom:653.039550px;}
.y17{bottom:653.877000px;}
.ya0{bottom:655.953000px;}
.yb8{bottom:656.846400px;}
.y63{bottom:665.009550px;}
.y16{bottom:674.802000px;}
.y62{bottom:677.069550px;}
.y33{bottom:679.614390px;}
.y15{bottom:694.242000px;}
.y52{bottom:695.923140px;}
.y9f{bottom:702.607200px;}
.y51{bottom:707.895750px;}
.y14{bottom:711.792000px;}
.y32{bottom:712.675530px;}
.y9e{bottom:714.307200px;}
.y50{bottom:719.952600px;}
.y9d{bottom:725.557200px;}
.y9c{bottom:737.707200px;}
.y4f{bottom:737.730750px;}
.y9b{bottom:746.257200px;}
.y4e{bottom:756.673950px;}
.y9a{bottom:757.957200px;}
.y31{bottom:760.495680px;}
.y4d{bottom:768.643950px;}
.y30{bottom:775.530000px;}
.y99{bottom:778.881600px;}
.y4c{bottom:780.705750px;}
.yb7{bottom:781.023510px;}
.y2f{bottom:796.676940px;}
.y98{bottom:798.321600px;}
.y4b{bottom:798.480390px;}
.yb6{bottom:814.084650px;}
.y97{bottom:815.871600px;}
.y4a{bottom:816.349800px;}
.y86{bottom:832.373310px;}
.y49{bottom:835.029150px;}
.y7a{bottom:837.450000px;}
.y48{bottom:847.899150px;}
.y85{bottom:852.470940px;}
.y96{bottom:862.525800px;}
.y47{bottom:865.899150px;}
.y84{bottom:872.568570px;}
.y95{bottom:874.225800px;}
.y46{bottom:882.999150px;}
.y94{bottom:885.475650px;}
.y83{bottom:892.666200px;}
.y45{bottom:895.059150px;}
.y93{bottom:906.175800px;}
.y82{bottom:912.763830px;}
.y92{bottom:917.875800px;}
.yc{bottom:927.172350px;}
.y44{bottom:931.628400px;}
.y7f{bottom:938.790000px;}
.y91{bottom:938.800050px;}
.yb{bottom:938.871600px;}
.yb5{bottom:940.942260px;}
.y81{bottom:947.728200px;}
.y90{bottom:958.240050px;}
.ya{bottom:969.165600px;}
.yb4{bottom:974.003400px;}
.y8f{bottom:975.790200px;}
.y7e{bottom:978.992850px;}
.y9{bottom:980.865600px;}
.y2e{bottom:980.979030px;}
.y2d{bottom:996.010920px;}
.y8{bottom:1001.223600px;}
.y7d{bottom:1006.997280px;}
.y8e{bottom:1024.998000px;}
.y7c{bottom:1025.624850px;}
.y2c{bottom:1030.412700px;}
.y8d{bottom:1036.698000px;}
.y2b{bottom:1045.702440px;}
.y79{bottom:1050.194850px;}
.y2a{bottom:1059.926580px;}
.y8c{bottom:1066.856700px;}
.y78{bottom:1071.494550px;}
.y29{bottom:1075.952700px;}
.y8b{bottom:1078.556700px;}
.yb3{bottom:1083.763470px;}
.y77{bottom:1088.504550px;}
.y8a{bottom:1103.406450px;}
.yb2{bottom:1116.369750px;}
.y7{bottom:1120.800450px;}
.y89{bottom:1121.226450px;}
.y6{bottom:1133.040450px;}
.ybe{bottom:1140.255000px;}
.y5{bottom:1170.076200px;}
.y3{bottom:1172.554800px;}
.y2{bottom:1183.534950px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.ybd{bottom:1217.844570px;}
.y88{bottom:1217.867160px;}
.ybc{bottom:1232.244480px;}
.y87{bottom:1232.267070px;}
.h8{height:24.642246px;}
.hf{height:37.111816px;}
.h2{height:38.412000px;}
.h11{height:39.486973px;}
.h12{height:42.045117px;}
.h5{height:42.159023px;}
.hc{height:43.929844px;}
.ha{height:44.942040px;}
.hb{height:44.945280px;}
.h1{height:48.015000px;}
.hd{height:49.937344px;}
.h6{height:51.087960px;}
.h4{height:54.545040px;}
.h13{height:56.604960px;}
.h7{height:56.614680px;}
.h9{height:57.618000px;}
.h3{height:60.690960px;}
.h10{height:88.200000px;}
.he{height:390.601500px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:39.030000px;}
.x17{left:47.970000px;}
.x4{left:51.612450px;}
.xc{left:53.469000px;}
.x12{left:57.936000px;}
.x16{left:59.667000px;}
.x18{left:60.707250px;}
.xd{left:72.189000px;}
.x11{left:78.474690px;}
.xe{left:86.530140px;}
.x10{left:88.288650px;}
.x1c{left:89.932200px;}
.x14{left:97.776150px;}
.xf{left:100.819200px;}
.x13{left:115.113600px;}
.x19{left:159.347250px;}
.x1{left:175.152900px;}
.x8{left:225.577080px;}
.x7{left:226.970100px;}
.x1d{left:231.386850px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x9{left:334.233270px;}
.xb{left:337.674150px;}
.xa{left:353.328120px;}
.x1b{left:395.981160px;}
.x1a{left:398.040000px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.176533pt;}
.v1{vertical-align:13.448640pt;}
.ls5d{letter-spacing:-2.213120pt;}
.ls3a{letter-spacing:-1.957760pt;}
.ls5e{letter-spacing:-1.915200pt;}
.ls5b{letter-spacing:-1.574720pt;}
.ls33{letter-spacing:-1.317760pt;}
.ls5f{letter-spacing:-1.276800pt;}
.ls24{letter-spacing:-1.248000pt;}
.ls34{letter-spacing:-1.226880pt;}
.ls50{letter-spacing:-1.160640pt;}
.ls3e{letter-spacing:-1.149120pt;}
.ls4c{letter-spacing:-1.085760pt;}
.ls52{letter-spacing:-1.010880pt;}
.ls60{letter-spacing:-0.864000pt;}
.ls65{letter-spacing:-0.851200pt;}
.ls4d{letter-spacing:-0.823680pt;}
.ls56{letter-spacing:-0.786240pt;}
.ls3b{letter-spacing:-0.766080pt;}
.ls1f{letter-spacing:-0.760000pt;}
.ls2d{letter-spacing:-0.736000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls58{letter-spacing:-0.673920pt;}
.ls44{letter-spacing:-0.638400pt;}
.ls46{letter-spacing:-0.595840pt;}
.ls31{letter-spacing:-0.544000pt;}
.ls63{letter-spacing:-0.486720pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.425600pt;}
.ls45{letter-spacing:-0.383040pt;}
.ls3f{letter-spacing:-0.340480pt;}
.ls57{letter-spacing:-0.336960pt;}
.ls3c{letter-spacing:-0.297920pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls41{letter-spacing:-0.255360pt;}
.ls49{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls47{letter-spacing:-0.170240pt;}
.ls51{letter-spacing:-0.149760pt;}
.ls39{letter-spacing:-0.127680pt;}
.ls64{letter-spacing:-0.085120pt;}
.ls43{letter-spacing:-0.042560pt;}
.ls20{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.025536pt;}
.ls66{letter-spacing:0.029792pt;}
.ls42{letter-spacing:0.042560pt;}
.ls18{letter-spacing:0.061440pt;}
.ls1e{letter-spacing:0.085120pt;}
.ls61{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101120pt;}
.lse{letter-spacing:0.127680pt;}
.ls48{letter-spacing:0.170240pt;}
.ls4b{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.266240pt;}
.ls38{letter-spacing:0.318080pt;}
.ls21{letter-spacing:0.400000pt;}
.ls40{letter-spacing:0.425600pt;}
.ls10{letter-spacing:0.449280pt;}
.ls37{letter-spacing:0.454400pt;}
.ls2e{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.561600pt;}
.ls2f{letter-spacing:0.608000pt;}
.ls36{letter-spacing:0.636160pt;}
.ls16{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.766080pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls59{letter-spacing:0.786240pt;}
.ls29{letter-spacing:0.800000pt;}
.ls4f{letter-spacing:0.823680pt;}
.ls14{letter-spacing:0.861120pt;}
.ls28{letter-spacing:0.864000pt;}
.ls4a{letter-spacing:0.898560pt;}
.ls30{letter-spacing:0.928000pt;}
.ls17{letter-spacing:0.936000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls62{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.010880pt;}
.ls27{letter-spacing:1.024000pt;}
.ls35{letter-spacing:1.045120pt;}
.ls5a{letter-spacing:1.048320pt;}
.lsc{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.385280pt;}
.ls2a{letter-spacing:1.408000pt;}
.ls5c{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls53{letter-spacing:1.536000pt;}
.ls4e{letter-spacing:1.609920pt;}
.ls55{letter-spacing:1.632000pt;}
.ls54{letter-spacing:1.759680pt;}
.lsb{letter-spacing:1.760000pt;}
.ls2c{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsa{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls1a{letter-spacing:31.962560pt;}
.ls19{letter-spacing:80.778880pt;}
.ls67{letter-spacing:148.977280pt;}
.ls1b{letter-spacing:284.513600pt;}
.ls1c{letter-spacing:425.983040pt;}
.ws2f{word-spacing:-16.656000pt;}
.ws2d{word-spacing:-16.560000pt;}
.ws3d{word-spacing:-16.032000pt;}
.ws25{word-spacing:-15.024000pt;}
.ws26{word-spacing:-14.784000pt;}
.ws14{word-spacing:-14.359040pt;}
.ws3c{word-spacing:-14.160000pt;}
.ws15{word-spacing:-13.768320pt;}
.ws1c{word-spacing:-13.746880pt;}
.ws2e{word-spacing:-13.478400pt;}
.ws1e{word-spacing:-13.363840pt;}
.ws2b{word-spacing:-13.328640pt;}
.ws19{word-spacing:-13.321280pt;}
.ws13{word-spacing:-13.313920pt;}
.ws1f{word-spacing:-13.278720pt;}
.ws40{word-spacing:-13.236160pt;}
.ws16{word-spacing:-13.193600pt;}
.ws1d{word-spacing:-13.065920pt;}
.ws1a{word-spacing:-12.895680pt;}
.ws36{word-spacing:-12.767040pt;}
.ws20{word-spacing:-12.682880pt;}
.ws28{word-spacing:-12.617280pt;}
.ws35{word-spacing:-12.579840pt;}
.ws18{word-spacing:-12.555200pt;}
.ws1b{word-spacing:-12.172160pt;}
.ws2{word-spacing:-12.120000pt;}
.ws12{word-spacing:-11.996160pt;}
.ws37{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws34{word-spacing:-11.756160pt;}
.ws1{word-spacing:-11.720000pt;}
.ws27{word-spacing:-11.718720pt;}
.ws17{word-spacing:-11.363520pt;}
.ws30{word-spacing:-11.344320pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.976000pt;}
.ws32{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws2a{word-spacing:-10.895040pt;}
.ws8{word-spacing:-10.720000pt;}
.ws2c{word-spacing:-10.707840pt;}
.ws29{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws39{word-spacing:-10.554880pt;}
.ws3e{word-spacing:-10.408320pt;}
.ws33{word-spacing:-10.296000pt;}
.ws3b{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws3f{word-spacing:-9.921600pt;}
.ws38{word-spacing:-9.916480pt;}
.ws10{word-spacing:-9.728000pt;}
.ws31{word-spacing:-9.622080pt;}
.ws3a{word-spacing:-9.618560pt;}
.wsf{word-spacing:-9.472000pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws22{word-spacing:-1.561920pt;}
.ws48{word-spacing:-1.408000pt;}
.ws6b{word-spacing:-1.319360pt;}
.ws4c{word-spacing:-1.280000pt;}
.ws6e{word-spacing:-1.191680pt;}
.ws4b{word-spacing:-1.024000pt;}
.ws67{word-spacing:-0.936000pt;}
.ws46{word-spacing:-0.864000pt;}
.ws70{word-spacing:-0.851200pt;}
.ws5c{word-spacing:-0.823680pt;}
.ws47{word-spacing:-0.800000pt;}
.ws49{word-spacing:-0.768000pt;}
.ws5b{word-spacing:-0.636480pt;}
.ws50{word-spacing:-0.636160pt;}
.ws4e{word-spacing:-0.544000pt;}
.ws5f{word-spacing:-0.449280pt;}
.ws51{word-spacing:-0.318080pt;}
.ws4d{word-spacing:-0.288000pt;}
.ws66{word-spacing:-0.262080pt;}
.ws5a{word-spacing:-0.187200pt;}
.ws62{word-spacing:-0.170240pt;}
.ws69{word-spacing:-0.127680pt;}
.ws64{word-spacing:-0.096000pt;}
.ws6d{word-spacing:-0.085120pt;}
.ws23{word-spacing:-0.080320pt;}
.ws6c{word-spacing:-0.042560pt;}
.ws59{word-spacing:-0.037440pt;}
.ws41{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.042560pt;}
.ws65{word-spacing:0.074880pt;}
.ws68{word-spacing:0.127680pt;}
.ws5e{word-spacing:0.149760pt;}
.ws57{word-spacing:0.212800pt;}
.ws42{word-spacing:0.224000pt;}
.ws56{word-spacing:0.255360pt;}
.ws44{word-spacing:0.288000pt;}
.ws52{word-spacing:0.297920pt;}
.ws54{word-spacing:0.340480pt;}
.ws58{word-spacing:0.383040pt;}
.ws53{word-spacing:0.425600pt;}
.ws43{word-spacing:0.480000pt;}
.ws45{word-spacing:0.704000pt;}
.ws4a{word-spacing:0.736000pt;}
.ws6a{word-spacing:0.851200pt;}
.ws55{word-spacing:1.149120pt;}
.ws5d{word-spacing:1.160640pt;}
.ws4f{word-spacing:1.226880pt;}
.ws60{word-spacing:1.574720pt;}
.ws63{word-spacing:1.915200pt;}
.ws61{word-spacing:2.213120pt;}
.ws24{word-spacing:4.776640pt;}
.ws21{word-spacing:8.266560pt;}
._6{margin-left:-5.279040pt;}
._7{margin-left:-4.294720pt;}
._3{margin-left:-2.675200pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._a{width:35.026880pt;}
._9{width:41.444160pt;}
._5{width:46.200960pt;}
._8{width:47.128960pt;}
._b{width:286.896960pt;}
._c{width:426.536320pt;}
._d{width:444.156160pt;}
._4{width:1647.896960pt;}
.fs6{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs9{font-size:38.080000pt;}
.fs0{font-size:40.000000pt;}
.fs4{font-size:42.560000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:22.933467pt;}
.y80{bottom:35.735867pt;}
.y61{bottom:65.959467pt;}
.y60{bottom:85.599467pt;}
.y43{bottom:91.896027pt;}
.y42{bottom:105.259867pt;}
.y13{bottom:107.050667pt;}
.y41{bottom:116.859867pt;}
.y12{bottom:117.454400pt;}
.y5f{bottom:120.995760pt;}
.y40{bottom:124.059867pt;}
.y5e{bottom:131.712960pt;}
.y3f{bottom:143.579867pt;}
.y11{bottom:143.582400pt;}
.y5d{bottom:153.868080pt;}
.y10{bottom:153.982400pt;}
.y3e{bottom:163.019867pt;}
.yf{bottom:174.334400pt;}
.y5c{bottom:176.584800pt;}
.y3d{bottom:178.461227pt;}
.y7b{bottom:179.186533pt;}
.y5b{bottom:187.302000pt;}
.ye{bottom:190.334400pt;}
.y5a{bottom:204.692933pt;}
.yd{bottom:206.254400pt;}
.y3c{bottom:207.050907pt;}
.y75{bottom:220.552667pt;}
.y74{bottom:234.072667pt;}
.y73{bottom:246.152667pt;}
.y28{bottom:249.200533pt;}
.y27{bottom:259.596267pt;}
.y72{bottom:261.512667pt;}
.y71{bottom:275.112667pt;}
.y26{bottom:286.524267pt;}
.y70{bottom:287.192667pt;}
.y25{bottom:296.924267pt;}
.y6f{bottom:299.672667pt;}
.y3b{bottom:307.109467pt;}
.y6e{bottom:310.392667pt;}
.y24{bottom:316.484267pt;}
.y59{bottom:323.812080pt;}
.y23{bottom:332.484267pt;}
.y3a{bottom:335.920480pt;}
.y6d{bottom:340.047467pt;}
.yb1{bottom:340.240000pt;}
.y22{bottom:348.404400pt;}
.y39{bottom:349.284320pt;}
.yb0{bottom:350.640000pt;}
.y6c{bottom:352.527467pt;}
.yaf{bottom:360.640000pt;}
.y6b{bottom:363.247467pt;}
.yae{bottom:371.440000pt;}
.y6a{bottom:376.527467pt;}
.yad{bottom:379.040000pt;}
.y69{bottom:387.247467pt;}
.yac{bottom:389.440000pt;}
.y21{bottom:391.350533pt;}
.y68{bottom:400.527467pt;}
.y20{bottom:401.746267pt;}
.yab{bottom:408.999467pt;}
.y67{bottom:411.247467pt;}
.ybb{bottom:412.325920pt;}
.y38{bottom:414.720320pt;}
.yaa{bottom:424.999467pt;}
.y1f{bottom:428.674267pt;}
.y66{bottom:429.432667pt;}
.y37{bottom:436.000320pt;}
.y1e{bottom:439.074267pt;}
.ya9{bottom:440.919467pt;}
.yba{bottom:441.713600pt;}
.y58{bottom:448.178400pt;}
.y36{bottom:451.843280pt;}
.y1d{bottom:457.674267pt;}
.y57{bottom:458.895600pt;}
.y1c{bottom:474.954267pt;}
.y35{bottom:478.081520pt;}
.ya8{bottom:482.389867pt;}
.y1b{bottom:490.554133pt;}
.y56{bottom:491.401733pt;}
.y34{bottom:491.445360pt;}
.ya7{bottom:492.789733pt;}
.ya6{bottom:502.789867pt;}
.ya5{bottom:513.589867pt;}
.ya4{bottom:521.189867pt;}
.y55{bottom:525.522800pt;}
.ya3{bottom:531.589867pt;}
.y1a{bottom:533.500400pt;}
.y54{bottom:541.883200pt;}
.y19{bottom:543.896000pt;}
.ya2{bottom:550.189333pt;}
.y53{bottom:552.600987pt;}
.yb9{bottom:554.475787pt;}
.ya1{bottom:567.469333pt;}
.y65{bottom:569.839600pt;}
.y18{bottom:570.824000pt;}
.y64{bottom:580.479600pt;}
.y17{bottom:581.224000pt;}
.ya0{bottom:583.069333pt;}
.yb8{bottom:583.863467pt;}
.y63{bottom:591.119600pt;}
.y16{bottom:599.824000pt;}
.y62{bottom:601.839600pt;}
.y33{bottom:604.101680pt;}
.y15{bottom:617.104000pt;}
.y52{bottom:618.598347pt;}
.y9f{bottom:624.539733pt;}
.y51{bottom:629.240667pt;}
.y14{bottom:632.704000pt;}
.y32{bottom:633.489360pt;}
.y9e{bottom:634.939733pt;}
.y50{bottom:639.957867pt;}
.y9d{bottom:644.939733pt;}
.y9c{bottom:655.739733pt;}
.y4f{bottom:655.760667pt;}
.y9b{bottom:663.339733pt;}
.y4e{bottom:672.599067pt;}
.y9a{bottom:673.739733pt;}
.y31{bottom:675.996160pt;}
.y4d{bottom:683.239067pt;}
.y30{bottom:689.360000pt;}
.y99{bottom:692.339200pt;}
.y4c{bottom:693.960667pt;}
.yb7{bottom:694.243120pt;}
.y2f{bottom:708.157280pt;}
.y98{bottom:709.619200pt;}
.y4b{bottom:709.760347pt;}
.yb6{bottom:723.630800pt;}
.y97{bottom:725.219200pt;}
.y4a{bottom:725.644267pt;}
.y86{bottom:739.887387pt;}
.y49{bottom:742.248133pt;}
.y7a{bottom:744.400000pt;}
.y48{bottom:753.688133pt;}
.y85{bottom:757.751947pt;}
.y96{bottom:766.689600pt;}
.y47{bottom:769.688133pt;}
.y84{bottom:775.616507pt;}
.y95{bottom:777.089600pt;}
.y46{bottom:784.888133pt;}
.y94{bottom:787.089467pt;}
.y83{bottom:793.481067pt;}
.y45{bottom:795.608133pt;}
.y93{bottom:805.489600pt;}
.y82{bottom:811.345627pt;}
.y92{bottom:815.889600pt;}
.yc{bottom:824.153200pt;}
.y44{bottom:828.114133pt;}
.y7f{bottom:834.480000pt;}
.y91{bottom:834.488933pt;}
.yb{bottom:834.552533pt;}
.yb5{bottom:836.393120pt;}
.y81{bottom:842.425067pt;}
.y90{bottom:851.768933pt;}
.ya{bottom:861.480533pt;}
.yb4{bottom:865.780800pt;}
.y8f{bottom:867.369067pt;}
.y7e{bottom:870.215867pt;}
.y9{bottom:871.880533pt;}
.y2e{bottom:871.981360pt;}
.y2d{bottom:885.343040pt;}
.y8{bottom:889.976533pt;}
.y7d{bottom:895.108693pt;}
.y8e{bottom:911.109333pt;}
.y7c{bottom:911.666533pt;}
.y2c{bottom:915.922400pt;}
.y8d{bottom:921.509333pt;}
.y2b{bottom:929.513280pt;}
.y79{bottom:933.506533pt;}
.y2a{bottom:942.156960pt;}
.y8c{bottom:948.317067pt;}
.y78{bottom:952.439600pt;}
.y29{bottom:956.402400pt;}
.y8b{bottom:958.717067pt;}
.yb3{bottom:963.345307pt;}
.y77{bottom:967.559600pt;}
.y8a{bottom:980.805733pt;}
.yb2{bottom:992.328667pt;}
.y7{bottom:996.267067pt;}
.y89{bottom:996.645733pt;}
.y6{bottom:1007.147067pt;}
.ybe{bottom:1013.560000pt;}
.y5{bottom:1040.067733pt;}
.y3{bottom:1042.270933pt;}
.y2{bottom:1052.031067pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.ybd{bottom:1082.528507pt;}
.y88{bottom:1082.548587pt;}
.ybc{bottom:1095.328427pt;}
.y87{bottom:1095.348507pt;}
.h8{height:21.904219pt;}
.hf{height:32.988281pt;}
.h2{height:34.144000pt;}
.h11{height:35.099531pt;}
.h12{height:37.373437pt;}
.h5{height:37.474687pt;}
.hc{height:39.048750pt;}
.ha{height:39.948480pt;}
.hb{height:39.951360pt;}
.h1{height:42.680000pt;}
.hd{height:44.388750pt;}
.h6{height:45.411520pt;}
.h4{height:48.484480pt;}
.h13{height:50.315520pt;}
.h7{height:50.324160pt;}
.h9{height:51.216000pt;}
.h3{height:53.947520pt;}
.h10{height:78.400000pt;}
.he{height:347.201333pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:34.693333pt;}
.x17{left:42.640000pt;}
.x4{left:45.877733pt;}
.xc{left:47.528000pt;}
.x12{left:51.498667pt;}
.x16{left:53.037333pt;}
.x18{left:53.962000pt;}
.xd{left:64.168000pt;}
.x11{left:69.755280pt;}
.xe{left:76.915680pt;}
.x10{left:78.478800pt;}
.x1c{left:79.939733pt;}
.x14{left:86.912133pt;}
.xf{left:89.617067pt;}
.x13{left:102.323200pt;}
.x19{left:141.642000pt;}
.x1{left:155.691467pt;}
.x8{left:200.512960pt;}
.x7{left:201.751200pt;}
.x1d{left:205.677200pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x9{left:297.096240pt;}
.xb{left:300.154800pt;}
.xa{left:314.069440pt;}
.x1b{left:351.983253pt;}
.x1a{left:353.813333pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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