
    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_490a41e44d04f9456522c311.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_ec43ebb0aea8e6966c0907cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_c2f971952cea793ae23a8466.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d6cc6fd204a5ba711c96b404.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_e7067d97fe368f41d04d4e67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119629;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_1460a145ba0f6f1621281b46.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_c055d1fac35ce35ec3a8afdf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v1{vertical-align:17.976000px;}
.lse{letter-spacing:-1.152000px;}
.ls14{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.341400px;}
.ls40{letter-spacing:-0.306600px;}
.ls36{letter-spacing:-0.259800px;}
.ls3f{letter-spacing:-0.253200px;}
.ls27{letter-spacing:-0.223800px;}
.ls15{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.106800px;}
.ls35{letter-spacing:-0.100200px;}
.ls48{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.028080px;}
.ls5{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.089400px;}
.ls28{letter-spacing:0.090600px;}
.ls24{letter-spacing:0.129600px;}
.lsb{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.226200px;}
.ls49{letter-spacing:0.259800px;}
.ls31{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls3d{letter-spacing:0.306600px;}
.ls17{letter-spacing:0.313920px;}
.ls3c{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.369600px;}
.ls6{letter-spacing:0.378600px;}
.ls3b{letter-spacing:0.413400px;}
.ls34{letter-spacing:0.460200px;}
.ls20{letter-spacing:0.541200px;}
.ls19{letter-spacing:0.606720px;}
.ls37{letter-spacing:0.612000px;}
.ls2a{letter-spacing:0.613440px;}
.ls2f{letter-spacing:0.666720px;}
.ls23{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.774000px;}
.ls22{letter-spacing:0.810000px;}
.ls1b{letter-spacing:0.810720px;}
.ls3e{letter-spacing:0.924000px;}
.ls44{letter-spacing:0.979920px;}
.ls10{letter-spacing:1.584000px;}
.ls1c{letter-spacing:2.790720px;}
.ls45{letter-spacing:2.826720px;}
.ls47{letter-spacing:3.546720px;}
.ls2e{letter-spacing:5.706720px;}
.ls2d{letter-spacing:6.426720px;}
.ls26{letter-spacing:6.749280px;}
.lsf{letter-spacing:8.784000px;}
.ls43{letter-spacing:12.306720px;}
.ls16{letter-spacing:12.846720px;}
.ls11{letter-spacing:13.104000px;}
.ls18{letter-spacing:13.590720px;}
.ls33{letter-spacing:14.346720px;}
.ls2c{letter-spacing:15.066720px;}
.ls29{letter-spacing:15.786720px;}
.ls30{letter-spacing:16.506720px;}
.lsa{letter-spacing:26.981280px;}
.ls1d{letter-spacing:37.350720px;}
.ls42{letter-spacing:38.106720px;}
.ls46{letter-spacing:43.266720px;}
.ls2b{letter-spacing:67.626720px;}
.ls41{letter-spacing:128.826720px;}
.ls32{letter-spacing:130.446720px;}
.ls1a{letter-spacing:159.384000px;}
.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;}
}
.ws5{word-spacing:-26.621280px;}
.ws7{word-spacing:-23.797320px;}
.ws8{word-spacing:-23.788320px;}
.wsb{word-spacing:-23.390640px;}
.ws9{word-spacing:-23.077320px;}
.wsc{word-spacing:-20.304000px;}
.ws19{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.ws11{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.296000px;}
.wsa{word-spacing:-19.224000px;}
.ws10{word-spacing:-19.152000px;}
.wse{word-spacing:-18.864000px;}
.ws26{word-spacing:-17.537280px;}
.ws22{word-spacing:-17.387280px;}
.ws1f{word-spacing:-17.225280px;}
.ws1c{word-spacing:-17.073480px;}
.ws23{word-spacing:-17.026680px;}
.ws24{word-spacing:-16.973280px;}
.ws25{word-spacing:-16.919880px;}
.ws2a{word-spacing:-16.873080px;}
.ws20{word-spacing:-16.666560px;}
.ws3{word-spacing:-16.613280px;}
.ws29{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.513080px;}
.ws21{word-spacing:-16.506480px;}
.ws27{word-spacing:-16.360080px;}
.ws1e{word-spacing:-16.353480px;}
.ws28{word-spacing:-16.306680px;}
.ws1b{word-spacing:-13.501320px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws1a{word-spacing:-13.186920px;}
.ws16{word-spacing:-12.419280px;}
.ws17{word-spacing:-12.329280px;}
.ws14{word-spacing:-12.150480px;}
.ws12{word-spacing:-11.835480px;}
.ws15{word-spacing:-11.698680px;}
.ws18{word-spacing:-11.609280px;}
.ws13{word-spacing:-11.430480px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-6.281040px;}
._19{margin-left:-5.148000px;}
._11{margin-left:-4.104000px;}
._17{margin-left:-3.096000px;}
._1d{margin-left:-2.093040px;}
._0{margin-left:-1.061280px;}
._3{width:1.013040px;}
._1c{width:2.017680px;}
._4{width:3.030240px;}
._5{width:4.050000px;}
._9{width:5.562000px;}
._1{width:6.946560px;}
._2{width:8.200800px;}
._7{width:10.085520px;}
._6{width:11.340000px;}
._8{width:13.080960px;}
._24{width:15.048000px;}
._18{width:16.452000px;}
._15{width:17.604000px;}
._a{width:18.846000px;}
._30{width:20.361120px;}
._13{width:21.816000px;}
._d{width:23.298960px;}
._c{width:25.338240px;}
._26{width:26.541120px;}
._25{width:28.008000px;}
._2a{width:29.341440px;}
._12{width:30.437280px;}
._e{width:31.536000px;}
._1a{width:32.598480px;}
._10{width:33.912000px;}
._f{width:35.136000px;}
._14{width:36.709920px;}
._1b{width:38.664000px;}
._29{width:40.320000px;}
._2b{width:41.430960px;}
._28{width:43.344000px;}
._27{width:44.424000px;}
._1f{width:46.872000px;}
._1e{width:48.024000px;}
._2e{width:49.229280px;}
._2c{width:53.568000px;}
._2f{width:60.552000px;}
._20{width:66.384000px;}
._31{width:68.513760px;}
._21{width:69.967920px;}
._23{width:71.058720px;}
._22{width:72.587760px;}
._32{width:84.907200px;}
._34{width:129.207120px;}
._33{width:130.380480px;}
._38{width:152.942640px;}
._37{width:154.793280px;}
._36{width:156.907440px;}
._2d{width:181.470720px;}
._35{width:487.537680px;}
._b{width:844.740000px;}
.fc4{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.160000px;}
.y114{bottom:2.340000px;}
.y119{bottom:2.520000px;}
.yf4{bottom:14.220000px;}
.yff{bottom:14.250000px;}
.y113{bottom:14.400000px;}
.y105{bottom:15.300000px;}
.y11e{bottom:16.380000px;}
.y123{bottom:17.100000px;}
.y124{bottom:18.720000px;}
.y108{bottom:20.520000px;}
.yf3{bottom:26.280000px;}
.yfe{bottom:26.310000px;}
.y112{bottom:26.460000px;}
.y104{bottom:27.360000px;}
.y11d{bottom:30.960000px;}
.y11f{bottom:31.680000px;}
.y122{bottom:31.860000px;}
.y121{bottom:32.580000px;}
.y10a{bottom:38.340000px;}
.yfd{bottom:38.370000px;}
.y111{bottom:38.520000px;}
.y107{bottom:38.880000px;}
.y103{bottom:39.420000px;}
.y11c{bottom:44.640000px;}
.y11b{bottom:45.540000px;}
.y129{bottom:45.585000px;}
.y10c{bottom:50.400000px;}
.yfc{bottom:50.430000px;}
.y110{bottom:50.625000px;}
.y102{bottom:51.660000px;}
.y106{bottom:57.420000px;}
.y9{bottom:57.456000px;}
.y128{bottom:60.165000px;}
.y12a{bottom:61.065000px;}
.yfb{bottom:62.490000px;}
.y10f{bottom:62.685000px;}
.y101{bottom:63.720000px;}
.y127{bottom:74.025000px;}
.yfa{bottom:74.550000px;}
.y126{bottom:74.745000px;}
.y8{bottom:79.056000px;}
.yf9{bottom:86.610000px;}
.yf8{bottom:98.670000px;}
.yf7{bottom:110.910000px;}
.y2e{bottom:130.716000px;}
.y8a{bottom:131.976000px;}
.y15e{bottom:137.376000px;}
.y117{bottom:141.336000px;}
.ye4{bottom:142.776000px;}
.yc7{bottom:145.836000px;}
.y2d{bottom:147.996000px;}
.y53{bottom:152.670000px;}
.y13f{bottom:153.030000px;}
.y15d{bottom:154.650000px;}
.y116{bottom:162.030000px;}
.y182{bottom:162.210000px;}
.ye3{bottom:163.470000px;}
.y2c{bottom:165.090000px;}
.yc6{bottom:166.530000px;}
.ya8{bottom:167.070000px;}
.y2b{bottom:169.590000px;}
.y74{bottom:171.930000px;}
.y52{bottom:173.370000px;}
.y181{bottom:179.490000px;}
.y115{bottom:179.670000px;}
.y2a{bottom:183.630000px;}
.ye2{bottom:184.170000px;}
.yc5{bottom:187.230000px;}
.y15c{bottom:189.750000px;}
.y73{bottom:192.630000px;}
.y13e{bottom:193.170000px;}
.y51{bottom:194.070000px;}
.ya7{bottom:196.770000px;}
.ye1{bottom:204.870000px;}
.y15b{bottom:207.030000px;}
.yc4{bottom:207.930000px;}
.y72{bottom:213.330000px;}
.y50{bottom:214.770000px;}
.y15a{bottom:224.310000px;}
.ye0{bottom:225.570000px;}
.ya6{bottom:226.470000px;}
.yc3{bottom:228.630000px;}
.y180{bottom:231.870000px;}
.y89{bottom:232.770000px;}
.y71{bottom:234.030000px;}
.y4f{bottom:235.470000px;}
.y13d{bottom:237.450000px;}
.y10e{bottom:240.690000px;}
.y159{bottom:241.590000px;}
.ydf{bottom:246.270000px;}
.y17f{bottom:249.150000px;}
.yc2{bottom:249.330000px;}
.y88{bottom:253.470000px;}
.y70{bottom:254.730000px;}
.y4e{bottom:256.170000px;}
.y13c{bottom:258.150000px;}
.y17e{bottom:266.430000px;}
.yc1{bottom:270.030000px;}
.y29{bottom:273.270000px;}
.y87{bottom:274.170000px;}
.y6f{bottom:275.430000px;}
.y4d{bottom:276.870000px;}
.y13b{bottom:278.850000px;}
.yde{bottom:284.970000px;}
.ya5{bottom:285.870000px;}
.yc0{bottom:290.730000px;}
.y28{bottom:294.015000px;}
.y158{bottom:294.195000px;}
.y86{bottom:294.915000px;}
.y4c{bottom:297.615000px;}
.y17d{bottom:301.755000px;}
.ydd{bottom:305.715000px;}
.y157{bottom:311.295000px;}
.ybf{bottom:311.475000px;}
.y10d{bottom:313.995000px;}
.y6e{bottom:314.175000px;}
.y27{bottom:314.715000px;}
.y85{bottom:315.615000px;}
.y13a{bottom:317.595000px;}
.y4b{bottom:318.315000px;}
.y17c{bottom:319.035000px;}
.ydc{bottom:326.415000px;}
.ybe{bottom:332.175000px;}
.y6d{bottom:334.875000px;}
.y26{bottom:335.415000px;}
.y84{bottom:336.315000px;}
.y139{bottom:338.295000px;}
.ya4{bottom:345.315000px;}
.y156{bottom:346.575000px;}
.ydb{bottom:347.115000px;}
.y17b{bottom:353.595000px;}
.y6c{bottom:355.575000px;}
.y25{bottom:356.115000px;}
.y4a{bottom:357.015000px;}
.y138{bottom:358.995000px;}
.y10b{bottom:363.135000px;}
.y155{bottom:363.855000px;}
.yda{bottom:367.815000px;}
.ybd{bottom:371.595000px;}
.ya3{bottom:375.015000px;}
.y6b{bottom:376.275000px;}
.y24{bottom:376.815000px;}
.y49{bottom:377.715000px;}
.y137{bottom:379.695000px;}
.y154{bottom:381.135000px;}
.yd9{bottom:388.515000px;}
.y17a{bottom:388.695000px;}
.y23{bottom:396.615000px;}
.y48{bottom:398.415000px;}
.y136{bottom:400.395000px;}
.ya2{bottom:404.715000px;}
.y179{bottom:405.975000px;}
.yd8{bottom:409.215000px;}
.y22{bottom:412.095000px;}
.ybc{bottom:412.995000px;}
.y6a{bottom:414.975000px;}
.y83{bottom:416.415000px;}
.y47{bottom:419.115000px;}
.y178{bottom:423.255000px;}
.y109{bottom:424.155000px;}
.ya1{bottom:425.415000px;}
.y21{bottom:427.755000px;}
.yd7{bottom:429.915000px;}
.y153{bottom:433.515000px;}
.ybb{bottom:433.695000px;}
.y69{bottom:435.675000px;}
.y82{bottom:437.115000px;}
.y46{bottom:439.815000px;}
.y135{bottom:440.355000px;}
.y177{bottom:440.535000px;}
.y20{bottom:443.235000px;}
.ya0{bottom:446.115000px;}
.yd6{bottom:450.615000px;}
.y152{bottom:450.795000px;}
.yba{bottom:454.395000px;}
.y68{bottom:456.375000px;}
.y81{bottom:457.815000px;}
.y1f{bottom:458.715000px;}
.y45{bottom:460.515000px;}
.y9f{bottom:466.815000px;}
.yd5{bottom:471.315000px;}
.y100{bottom:473.295000px;}
.y1e{bottom:474.195000px;}
.yb9{bottom:475.095000px;}
.y67{bottom:477.075000px;}
.y80{bottom:478.515000px;}
.y134{bottom:484.635000px;}
.y151{bottom:486.075000px;}
.y9e{bottom:487.515000px;}
.y1d{bottom:489.855000px;}
.yd4{bottom:492.015000px;}
.y176{bottom:492.915000px;}
.yb8{bottom:495.795000px;}
.y66{bottom:497.775000px;}
.y44{bottom:499.215000px;}
.y150{bottom:503.355000px;}
.y1c{bottom:505.335000px;}
.y9d{bottom:508.215000px;}
.y175{bottom:510.195000px;}
.yb7{bottom:516.495000px;}
.y65{bottom:518.475000px;}
.y43{bottom:519.915000px;}
.y14f{bottom:520.635000px;}
.y1b{bottom:520.815000px;}
.y133{bottom:526.035000px;}
.y174{bottom:527.475000px;}
.y9c{bottom:528.915000px;}
.yd3{bottom:531.975000px;}
.y1a{bottom:536.295000px;}
.yb6{bottom:537.195000px;}
.y14e{bottom:537.915000px;}
.y42{bottom:540.615000px;}
.y132{bottom:546.735000px;}
.yf6{bottom:547.635000px;}
.y19{bottom:551.805000px;}
.y64{bottom:557.205000px;}
.yb5{bottom:557.925000px;}
.y9b{bottom:558.645000px;}
.y41{bottom:561.345000px;}
.y173{bottom:562.785000px;}
.y18{bottom:567.465000px;}
.y14d{bottom:573.045000px;}
.yd2{bottom:576.285000px;}
.y63{bottom:577.905000px;}
.yb4{bottom:578.625000px;}
.y9a{bottom:579.345000px;}
.y172{bottom:580.065000px;}
.y40{bottom:582.045000px;}
.y17{bottom:582.945000px;}
.y131{bottom:588.165000px;}
.y14c{bottom:590.325000px;}
.yd1{bottom:596.985000px;}
.y171{bottom:597.345000px;}
.y16{bottom:598.425000px;}
.y62{bottom:598.605000px;}
.yb3{bottom:599.325000px;}
.y99{bottom:600.045000px;}
.y3f{bottom:602.745000px;}
.y14b{bottom:607.605000px;}
.y130{bottom:608.865000px;}
.y15{bottom:613.905000px;}
.y170{bottom:614.445000px;}
.y61{bottom:619.305000px;}
.yb2{bottom:620.025000px;}
.y98{bottom:620.745000px;}
.y3e{bottom:623.445000px;}
.y14{bottom:629.565000px;}
.yd0{bottom:635.685000px;}
.yb1{bottom:640.725000px;}
.y97{bottom:641.445000px;}
.y7f{bottom:642.165000px;}
.y14a{bottom:642.885000px;}
.y13{bottom:645.045000px;}
.y12f{bottom:648.825000px;}
.y16f{bottom:649.725000px;}
.ycf{bottom:656.385000px;}
.y60{bottom:658.005000px;}
.y149{bottom:660.165000px;}
.y12{bottom:660.525000px;}
.yb0{bottom:661.425000px;}
.y3d{bottom:662.145000px;}
.y7e{bottom:666.285000px;}
.y16e{bottom:667.005000px;}
.yf2{bottom:669.165000px;}
.y96{bottom:671.865000px;}
.y11{bottom:676.005000px;}
.y148{bottom:677.445000px;}
.y5f{bottom:678.705000px;}
.yaf{bottom:682.125000px;}
.y3c{bottom:682.845000px;}
.y16d{bottom:684.285000px;}
.y12e{bottom:687.165000px;}
.yce{bottom:695.085000px;}
.y5e{bottom:699.405000px;}
.y16c{bottom:701.565000px;}
.y3b{bottom:703.545000px;}
.y95{bottom:704.265000px;}
.y7d{bottom:707.685000px;}
.y12d{bottom:707.865000px;}
.yf1{bottom:709.845000px;}
.y10{bottom:712.005000px;}
.y147{bottom:712.545000px;}
.ycd{bottom:715.785000px;}
.y5d{bottom:720.105000px;}
.yae{bottom:721.545000px;}
.y3a{bottom:724.245000px;}
.y94{bottom:724.965000px;}
.yf{bottom:726.765000px;}
.y7c{bottom:728.385000px;}
.y12c{bottom:728.565000px;}
.y146{bottom:729.825000px;}
.yf0{bottom:730.545000px;}
.y16b{bottom:736.665000px;}
.y5c{bottom:740.805000px;}
.ye{bottom:743.685000px;}
.y39{bottom:744.945000px;}
.y93{bottom:745.665000px;}
.y145{bottom:747.105000px;}
.y7b{bottom:749.085000px;}
.y12b{bottom:749.265000px;}
.yef{bottom:751.245000px;}
.y16a{bottom:753.945000px;}
.ycc{bottom:754.485000px;}
.y5b{bottom:761.505000px;}
.yad{bottom:762.945000px;}
.y144{bottom:764.385000px;}
.y38{bottom:765.645000px;}
.y92{bottom:766.365000px;}
.y125{bottom:766.905000px;}
.y7a{bottom:769.785000px;}
.y169{bottom:771.225000px;}
.yee{bottom:771.945000px;}
.ycb{bottom:775.185000px;}
.yac{bottom:783.645000px;}
.y37{bottom:786.345000px;}
.y91{bottom:787.065000px;}
.y168{bottom:788.505000px;}
.y79{bottom:790.485000px;}
.yed{bottom:792.645000px;}
.y143{bottom:799.665000px;}
.y5a{bottom:800.925000px;}
.yab{bottom:804.345000px;}
.y90{bottom:807.765000px;}
.y78{bottom:811.230000px;}
.yec{bottom:813.390000px;}
.yca{bottom:813.930000px;}
.y142{bottom:816.990000px;}
.y167{bottom:823.830000px;}
.y36{bottom:825.090000px;}
.y8f{bottom:828.510000px;}
.y77{bottom:831.930000px;}
.yeb{bottom:834.090000px;}
.yc9{bottom:834.630000px;}
.y166{bottom:841.110000px;}
.y35{bottom:845.790000px;}
.y8e{bottom:849.210000px;}
.y141{bottom:851.370000px;}
.y76{bottom:852.630000px;}
.y120{bottom:853.710000px;}
.yea{bottom:854.790000px;}
.y165{bottom:858.390000px;}
.y34{bottom:866.490000px;}
.y59{bottom:867.750000px;}
.y8d{bottom:869.910000px;}
.yc8{bottom:873.330000px;}
.ye9{bottom:875.490000px;}
.yd{bottom:881.610000px;}
.y140{bottom:884.310000px;}
.y33{bottom:887.190000px;}
.y8c{bottom:890.610000px;}
.y75{bottom:891.330000px;}
.y164{bottom:893.490000px;}
.ye8{bottom:896.190000px;}
.y11a{bottom:898.350000px;}
.y32{bottom:907.890000px;}
.yc{bottom:909.150000px;}
.y163{bottom:910.770000px;}
.y58{bottom:912.030000px;}
.ye7{bottom:916.890000px;}
.y8b{bottom:921.030000px;}
.y162{bottom:928.050000px;}
.y31{bottom:928.590000px;}
.y57{bottom:932.730000px;}
.ye6{bottom:937.590000px;}
.y161{bottom:945.330000px;}
.y30{bottom:949.290000px;}
.y56{bottom:953.430000px;}
.yb{bottom:955.590000px;}
.y118{bottom:955.770000px;}
.ye5{bottom:958.290000px;}
.yaa{bottom:968.010000px;}
.y55{bottom:974.130000px;}
.y160{bottom:980.430000px;}
.ya{bottom:986.550000px;}
.y2f{bottom:989.250000px;}
.ya9{bottom:992.130000px;}
.y54{bottom:994.830000px;}
.y15f{bottom:997.710000px;}
.y7{bottom:1033.890000px;}
.y6{bottom:1047.570000px;}
.y5{bottom:1061.430000px;}
.y4{bottom:1075.320000px;}
.y3{bottom:1089.000000px;}
.y2{bottom:1102.860000px;}
.y1{bottom:1117.980000px;}
.ha{height:5.163750px;}
.h18{height:13.860000px;}
.hd{height:34.855313px;}
.h10{height:36.180000px;}
.h13{height:37.437188px;}
.h11{height:37.783828px;}
.h3{height:43.246406px;}
.h2{height:43.646836px;}
.h1a{height:43.920000px;}
.h15{height:48.240000px;}
.hc{height:48.410156px;}
.hb{height:48.858398px;}
.h1c{height:53.428008px;}
.he{height:53.573906px;}
.h1{height:54.105469px;}
.h19{height:56.700000px;}
.h4{height:59.383125px;}
.h16{height:60.300000px;}
.h9{height:64.546875px;}
.h8{height:65.144531px;}
.h6{height:65.884219px;}
.h17{height:72.576000px;}
.h14{height:73.620000px;}
.h5{height:74.408203px;}
.hf{height:76.219102px;}
.h1b{height:86.076000px;}
.h7{height:86.642227px;}
.h12{height:120.816000px;}
.h0{height:1188.000000px;}
.w7{width:184.035000px;}
.w5{width:222.870000px;}
.w6{width:244.470000px;}
.w3{width:265.710000px;}
.w4{width:404.205000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x1f{left:13.680000px;}
.x10{left:17.100000px;}
.x1a{left:30.054000px;}
.xf{left:32.934000px;}
.x20{left:34.920000px;}
.x19{left:52.374000px;}
.x17{left:57.234000px;}
.x11{left:66.414000px;}
.x21{left:68.394000px;}
.x1e{left:70.605000px;}
.x1c{left:73.080000px;}
.x14{left:96.114000px;}
.x13{left:99.030000px;}
.x16{left:100.254000px;}
.x18{left:108.354000px;}
.x1{left:127.655986px;}
.xd{left:133.055986px;}
.x3{left:139.895986px;}
.x4{left:152.489986px;}
.xe{left:170.129986px;}
.x6{left:172.289986px;}
.x5{left:180.389986px;}
.xc{left:343.694986px;}
.x1b{left:350.535000px;}
.x12{left:393.375000px;}
.x8{left:397.694986px;}
.xb{left:403.274986px;}
.x2{left:428.294986px;}
.xa{left:459.104986px;}
.x9{left:519.764973px;}
.x7{left:526.964986px;}
.x1d{left:595.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.978667pt;}
.lse{letter-spacing:-1.024000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls40{letter-spacing:-0.272533pt;}
.ls36{letter-spacing:-0.230933pt;}
.ls3f{letter-spacing:-0.225067pt;}
.ls27{letter-spacing:-0.198933pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.094933pt;}
.ls35{letter-spacing:-0.089067pt;}
.ls48{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.079467pt;}
.ls28{letter-spacing:0.080533pt;}
.ls24{letter-spacing:0.115200pt;}
.lsb{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.201067pt;}
.ls49{letter-spacing:0.230933pt;}
.ls31{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls3d{letter-spacing:0.272533pt;}
.ls17{letter-spacing:0.279040pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.328533pt;}
.ls6{letter-spacing:0.336533pt;}
.ls3b{letter-spacing:0.367467pt;}
.ls34{letter-spacing:0.409067pt;}
.ls20{letter-spacing:0.481067pt;}
.ls19{letter-spacing:0.539307pt;}
.ls37{letter-spacing:0.544000pt;}
.ls2a{letter-spacing:0.545280pt;}
.ls2f{letter-spacing:0.592640pt;}
.ls23{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.688000pt;}
.ls22{letter-spacing:0.720000pt;}
.ls1b{letter-spacing:0.720640pt;}
.ls3e{letter-spacing:0.821333pt;}
.ls44{letter-spacing:0.871040pt;}
.ls10{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:2.480640pt;}
.ls45{letter-spacing:2.512640pt;}
.ls47{letter-spacing:3.152640pt;}
.ls2e{letter-spacing:5.072640pt;}
.ls2d{letter-spacing:5.712640pt;}
.ls26{letter-spacing:5.999360pt;}
.lsf{letter-spacing:7.808000pt;}
.ls43{letter-spacing:10.939307pt;}
.ls16{letter-spacing:11.419307pt;}
.ls11{letter-spacing:11.648000pt;}
.ls18{letter-spacing:12.080640pt;}
.ls33{letter-spacing:12.752640pt;}
.ls2c{letter-spacing:13.392640pt;}
.ls29{letter-spacing:14.032640pt;}
.ls30{letter-spacing:14.672640pt;}
.lsa{letter-spacing:23.983360pt;}
.ls1d{letter-spacing:33.200640pt;}
.ls42{letter-spacing:33.872640pt;}
.ls46{letter-spacing:38.459307pt;}
.ls2b{letter-spacing:60.112640pt;}
.ls41{letter-spacing:114.512640pt;}
.ls32{letter-spacing:115.952640pt;}
.ls1a{letter-spacing:141.674667pt;}
.ws5{word-spacing:-23.663360pt;}
.ws7{word-spacing:-21.153173pt;}
.ws8{word-spacing:-21.145173pt;}
.wsb{word-spacing:-20.791680pt;}
.ws9{word-spacing:-20.513173pt;}
.wsc{word-spacing:-18.048000pt;}
.ws19{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.ws11{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.152000pt;}
.wsa{word-spacing:-17.088000pt;}
.ws10{word-spacing:-17.024000pt;}
.wse{word-spacing:-16.768000pt;}
.ws26{word-spacing:-15.588693pt;}
.ws22{word-spacing:-15.455360pt;}
.ws1f{word-spacing:-15.311360pt;}
.ws1c{word-spacing:-15.176427pt;}
.ws23{word-spacing:-15.134827pt;}
.ws24{word-spacing:-15.087360pt;}
.ws25{word-spacing:-15.039893pt;}
.ws2a{word-spacing:-14.998293pt;}
.ws20{word-spacing:-14.814720pt;}
.ws3{word-spacing:-14.767360pt;}
.ws29{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.678293pt;}
.ws21{word-spacing:-14.672427pt;}
.ws27{word-spacing:-14.542293pt;}
.ws1e{word-spacing:-14.536427pt;}
.ws28{word-spacing:-14.494827pt;}
.ws1b{word-spacing:-12.001173pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws1a{word-spacing:-11.721707pt;}
.ws16{word-spacing:-11.039360pt;}
.ws17{word-spacing:-10.959360pt;}
.ws14{word-spacing:-10.800427pt;}
.ws12{word-spacing:-10.520427pt;}
.ws15{word-spacing:-10.398827pt;}
.ws18{word-spacing:-10.319360pt;}
.ws13{word-spacing:-10.160427pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-5.583147pt;}
._19{margin-left:-4.576000pt;}
._11{margin-left:-3.648000pt;}
._17{margin-left:-2.752000pt;}
._1d{margin-left:-1.860480pt;}
._0{margin-left:-0.943360pt;}
._3{width:0.900480pt;}
._1c{width:1.793493pt;}
._4{width:2.693547pt;}
._5{width:3.600000pt;}
._9{width:4.944000pt;}
._1{width:6.174720pt;}
._2{width:7.289600pt;}
._7{width:8.964907pt;}
._6{width:10.080000pt;}
._8{width:11.627520pt;}
._24{width:13.376000pt;}
._18{width:14.624000pt;}
._15{width:15.648000pt;}
._a{width:16.752000pt;}
._30{width:18.098773pt;}
._13{width:19.392000pt;}
._d{width:20.710187pt;}
._c{width:22.522880pt;}
._26{width:23.592107pt;}
._25{width:24.896000pt;}
._2a{width:26.081280pt;}
._12{width:27.055360pt;}
._e{width:28.032000pt;}
._1a{width:28.976427pt;}
._10{width:30.144000pt;}
._f{width:31.232000pt;}
._14{width:32.631040pt;}
._1b{width:34.368000pt;}
._29{width:35.840000pt;}
._2b{width:36.827520pt;}
._28{width:38.528000pt;}
._27{width:39.488000pt;}
._1f{width:41.664000pt;}
._1e{width:42.688000pt;}
._2e{width:43.759360pt;}
._2c{width:47.616000pt;}
._2f{width:53.824000pt;}
._20{width:59.008000pt;}
._31{width:60.901120pt;}
._21{width:62.193707pt;}
._23{width:63.163307pt;}
._22{width:64.522453pt;}
._32{width:75.473067pt;}
._34{width:114.850773pt;}
._33{width:115.893760pt;}
._38{width:135.949013pt;}
._37{width:137.594027pt;}
._36{width:139.473280pt;}
._2d{width:161.307307pt;}
._35{width:433.366827pt;}
._b{width:750.880000pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:1.920000pt;}
.y114{bottom:2.080000pt;}
.y119{bottom:2.240000pt;}
.yf4{bottom:12.640000pt;}
.yff{bottom:12.666667pt;}
.y113{bottom:12.800000pt;}
.y105{bottom:13.600000pt;}
.y11e{bottom:14.560000pt;}
.y123{bottom:15.200000pt;}
.y124{bottom:16.640000pt;}
.y108{bottom:18.240000pt;}
.yf3{bottom:23.360000pt;}
.yfe{bottom:23.386667pt;}
.y112{bottom:23.520000pt;}
.y104{bottom:24.320000pt;}
.y11d{bottom:27.520000pt;}
.y11f{bottom:28.160000pt;}
.y122{bottom:28.320000pt;}
.y121{bottom:28.960000pt;}
.y10a{bottom:34.080000pt;}
.yfd{bottom:34.106667pt;}
.y111{bottom:34.240000pt;}
.y107{bottom:34.560000pt;}
.y103{bottom:35.040000pt;}
.y11c{bottom:39.680000pt;}
.y11b{bottom:40.480000pt;}
.y129{bottom:40.520000pt;}
.y10c{bottom:44.800000pt;}
.yfc{bottom:44.826667pt;}
.y110{bottom:45.000000pt;}
.y102{bottom:45.920000pt;}
.y106{bottom:51.040000pt;}
.y9{bottom:51.072000pt;}
.y128{bottom:53.480000pt;}
.y12a{bottom:54.280000pt;}
.yfb{bottom:55.546667pt;}
.y10f{bottom:55.720000pt;}
.y101{bottom:56.640000pt;}
.y127{bottom:65.800000pt;}
.yfa{bottom:66.266667pt;}
.y126{bottom:66.440000pt;}
.y8{bottom:70.272000pt;}
.yf9{bottom:76.986667pt;}
.yf8{bottom:87.706667pt;}
.yf7{bottom:98.586667pt;}
.y2e{bottom:116.192000pt;}
.y8a{bottom:117.312000pt;}
.y15e{bottom:122.112000pt;}
.y117{bottom:125.632000pt;}
.ye4{bottom:126.912000pt;}
.yc7{bottom:129.632000pt;}
.y2d{bottom:131.552000pt;}
.y53{bottom:135.706667pt;}
.y13f{bottom:136.026667pt;}
.y15d{bottom:137.466667pt;}
.y116{bottom:144.026667pt;}
.y182{bottom:144.186667pt;}
.ye3{bottom:145.306667pt;}
.y2c{bottom:146.746667pt;}
.yc6{bottom:148.026667pt;}
.ya8{bottom:148.506667pt;}
.y2b{bottom:150.746667pt;}
.y74{bottom:152.826667pt;}
.y52{bottom:154.106667pt;}
.y181{bottom:159.546667pt;}
.y115{bottom:159.706667pt;}
.y2a{bottom:163.226667pt;}
.ye2{bottom:163.706667pt;}
.yc5{bottom:166.426667pt;}
.y15c{bottom:168.666667pt;}
.y73{bottom:171.226667pt;}
.y13e{bottom:171.706667pt;}
.y51{bottom:172.506667pt;}
.ya7{bottom:174.906667pt;}
.ye1{bottom:182.106667pt;}
.y15b{bottom:184.026667pt;}
.yc4{bottom:184.826667pt;}
.y72{bottom:189.626667pt;}
.y50{bottom:190.906667pt;}
.y15a{bottom:199.386667pt;}
.ye0{bottom:200.506667pt;}
.ya6{bottom:201.306667pt;}
.yc3{bottom:203.226667pt;}
.y180{bottom:206.106667pt;}
.y89{bottom:206.906667pt;}
.y71{bottom:208.026667pt;}
.y4f{bottom:209.306667pt;}
.y13d{bottom:211.066667pt;}
.y10e{bottom:213.946667pt;}
.y159{bottom:214.746667pt;}
.ydf{bottom:218.906667pt;}
.y17f{bottom:221.466667pt;}
.yc2{bottom:221.626667pt;}
.y88{bottom:225.306667pt;}
.y70{bottom:226.426667pt;}
.y4e{bottom:227.706667pt;}
.y13c{bottom:229.466667pt;}
.y17e{bottom:236.826667pt;}
.yc1{bottom:240.026667pt;}
.y29{bottom:242.906667pt;}
.y87{bottom:243.706667pt;}
.y6f{bottom:244.826667pt;}
.y4d{bottom:246.106667pt;}
.y13b{bottom:247.866667pt;}
.yde{bottom:253.306667pt;}
.ya5{bottom:254.106667pt;}
.yc0{bottom:258.426667pt;}
.y28{bottom:261.346667pt;}
.y158{bottom:261.506667pt;}
.y86{bottom:262.146667pt;}
.y4c{bottom:264.546667pt;}
.y17d{bottom:268.226667pt;}
.ydd{bottom:271.746667pt;}
.y157{bottom:276.706667pt;}
.ybf{bottom:276.866667pt;}
.y10d{bottom:279.106667pt;}
.y6e{bottom:279.266667pt;}
.y27{bottom:279.746667pt;}
.y85{bottom:280.546667pt;}
.y13a{bottom:282.306667pt;}
.y4b{bottom:282.946667pt;}
.y17c{bottom:283.586667pt;}
.ydc{bottom:290.146667pt;}
.ybe{bottom:295.266667pt;}
.y6d{bottom:297.666667pt;}
.y26{bottom:298.146667pt;}
.y84{bottom:298.946667pt;}
.y139{bottom:300.706667pt;}
.ya4{bottom:306.946667pt;}
.y156{bottom:308.066667pt;}
.ydb{bottom:308.546667pt;}
.y17b{bottom:314.306667pt;}
.y6c{bottom:316.066667pt;}
.y25{bottom:316.546667pt;}
.y4a{bottom:317.346667pt;}
.y138{bottom:319.106667pt;}
.y10b{bottom:322.786667pt;}
.y155{bottom:323.426667pt;}
.yda{bottom:326.946667pt;}
.ybd{bottom:330.306667pt;}
.ya3{bottom:333.346667pt;}
.y6b{bottom:334.466667pt;}
.y24{bottom:334.946667pt;}
.y49{bottom:335.746667pt;}
.y137{bottom:337.506667pt;}
.y154{bottom:338.786667pt;}
.yd9{bottom:345.346667pt;}
.y17a{bottom:345.506667pt;}
.y23{bottom:352.546667pt;}
.y48{bottom:354.146667pt;}
.y136{bottom:355.906667pt;}
.ya2{bottom:359.746667pt;}
.y179{bottom:360.866667pt;}
.yd8{bottom:363.746667pt;}
.y22{bottom:366.306667pt;}
.ybc{bottom:367.106667pt;}
.y6a{bottom:368.866667pt;}
.y83{bottom:370.146667pt;}
.y47{bottom:372.546667pt;}
.y178{bottom:376.226667pt;}
.y109{bottom:377.026667pt;}
.ya1{bottom:378.146667pt;}
.y21{bottom:380.226667pt;}
.yd7{bottom:382.146667pt;}
.y153{bottom:385.346667pt;}
.ybb{bottom:385.506667pt;}
.y69{bottom:387.266667pt;}
.y82{bottom:388.546667pt;}
.y46{bottom:390.946667pt;}
.y135{bottom:391.426667pt;}
.y177{bottom:391.586667pt;}
.y20{bottom:393.986667pt;}
.ya0{bottom:396.546667pt;}
.yd6{bottom:400.546667pt;}
.y152{bottom:400.706667pt;}
.yba{bottom:403.906667pt;}
.y68{bottom:405.666667pt;}
.y81{bottom:406.946667pt;}
.y1f{bottom:407.746667pt;}
.y45{bottom:409.346667pt;}
.y9f{bottom:414.946667pt;}
.yd5{bottom:418.946667pt;}
.y100{bottom:420.706667pt;}
.y1e{bottom:421.506667pt;}
.yb9{bottom:422.306667pt;}
.y67{bottom:424.066667pt;}
.y80{bottom:425.346667pt;}
.y134{bottom:430.786667pt;}
.y151{bottom:432.066667pt;}
.y9e{bottom:433.346667pt;}
.y1d{bottom:435.426667pt;}
.yd4{bottom:437.346667pt;}
.y176{bottom:438.146667pt;}
.yb8{bottom:440.706667pt;}
.y66{bottom:442.466667pt;}
.y44{bottom:443.746667pt;}
.y150{bottom:447.426667pt;}
.y1c{bottom:449.186667pt;}
.y9d{bottom:451.746667pt;}
.y175{bottom:453.506667pt;}
.yb7{bottom:459.106667pt;}
.y65{bottom:460.866667pt;}
.y43{bottom:462.146667pt;}
.y14f{bottom:462.786667pt;}
.y1b{bottom:462.946667pt;}
.y133{bottom:467.586667pt;}
.y174{bottom:468.866667pt;}
.y9c{bottom:470.146667pt;}
.yd3{bottom:472.866667pt;}
.y1a{bottom:476.706667pt;}
.yb6{bottom:477.506667pt;}
.y14e{bottom:478.146667pt;}
.y42{bottom:480.546667pt;}
.y132{bottom:485.986667pt;}
.yf6{bottom:486.786667pt;}
.y19{bottom:490.493333pt;}
.y64{bottom:495.293333pt;}
.yb5{bottom:495.933333pt;}
.y9b{bottom:496.573333pt;}
.y41{bottom:498.973333pt;}
.y173{bottom:500.253333pt;}
.y18{bottom:504.413333pt;}
.y14d{bottom:509.373333pt;}
.yd2{bottom:512.253333pt;}
.y63{bottom:513.693333pt;}
.yb4{bottom:514.333333pt;}
.y9a{bottom:514.973333pt;}
.y172{bottom:515.613333pt;}
.y40{bottom:517.373333pt;}
.y17{bottom:518.173333pt;}
.y131{bottom:522.813333pt;}
.y14c{bottom:524.733333pt;}
.yd1{bottom:530.653333pt;}
.y171{bottom:530.973333pt;}
.y16{bottom:531.933333pt;}
.y62{bottom:532.093333pt;}
.yb3{bottom:532.733333pt;}
.y99{bottom:533.373333pt;}
.y3f{bottom:535.773333pt;}
.y14b{bottom:540.093333pt;}
.y130{bottom:541.213333pt;}
.y15{bottom:545.693333pt;}
.y170{bottom:546.173333pt;}
.y61{bottom:550.493333pt;}
.yb2{bottom:551.133333pt;}
.y98{bottom:551.773333pt;}
.y3e{bottom:554.173333pt;}
.y14{bottom:559.613333pt;}
.yd0{bottom:565.053333pt;}
.yb1{bottom:569.533333pt;}
.y97{bottom:570.173333pt;}
.y7f{bottom:570.813333pt;}
.y14a{bottom:571.453333pt;}
.y13{bottom:573.373333pt;}
.y12f{bottom:576.733333pt;}
.y16f{bottom:577.533333pt;}
.ycf{bottom:583.453333pt;}
.y60{bottom:584.893333pt;}
.y149{bottom:586.813333pt;}
.y12{bottom:587.133333pt;}
.yb0{bottom:587.933333pt;}
.y3d{bottom:588.573333pt;}
.y7e{bottom:592.253333pt;}
.y16e{bottom:592.893333pt;}
.yf2{bottom:594.813333pt;}
.y96{bottom:597.213333pt;}
.y11{bottom:600.893333pt;}
.y148{bottom:602.173333pt;}
.y5f{bottom:603.293333pt;}
.yaf{bottom:606.333333pt;}
.y3c{bottom:606.973333pt;}
.y16d{bottom:608.253333pt;}
.y12e{bottom:610.813333pt;}
.yce{bottom:617.853333pt;}
.y5e{bottom:621.693333pt;}
.y16c{bottom:623.613333pt;}
.y3b{bottom:625.373333pt;}
.y95{bottom:626.013333pt;}
.y7d{bottom:629.053333pt;}
.y12d{bottom:629.213333pt;}
.yf1{bottom:630.973333pt;}
.y10{bottom:632.893333pt;}
.y147{bottom:633.373333pt;}
.ycd{bottom:636.253333pt;}
.y5d{bottom:640.093333pt;}
.yae{bottom:641.373333pt;}
.y3a{bottom:643.773333pt;}
.y94{bottom:644.413333pt;}
.yf{bottom:646.013333pt;}
.y7c{bottom:647.453333pt;}
.y12c{bottom:647.613333pt;}
.y146{bottom:648.733333pt;}
.yf0{bottom:649.373333pt;}
.y16b{bottom:654.813333pt;}
.y5c{bottom:658.493333pt;}
.ye{bottom:661.053333pt;}
.y39{bottom:662.173333pt;}
.y93{bottom:662.813333pt;}
.y145{bottom:664.093333pt;}
.y7b{bottom:665.853333pt;}
.y12b{bottom:666.013333pt;}
.yef{bottom:667.773333pt;}
.y16a{bottom:670.173333pt;}
.ycc{bottom:670.653333pt;}
.y5b{bottom:676.893333pt;}
.yad{bottom:678.173333pt;}
.y144{bottom:679.453333pt;}
.y38{bottom:680.573333pt;}
.y92{bottom:681.213333pt;}
.y125{bottom:681.693333pt;}
.y7a{bottom:684.253333pt;}
.y169{bottom:685.533333pt;}
.yee{bottom:686.173333pt;}
.ycb{bottom:689.053333pt;}
.yac{bottom:696.573333pt;}
.y37{bottom:698.973333pt;}
.y91{bottom:699.613333pt;}
.y168{bottom:700.893333pt;}
.y79{bottom:702.653333pt;}
.yed{bottom:704.573333pt;}
.y143{bottom:710.813333pt;}
.y5a{bottom:711.933333pt;}
.yab{bottom:714.973333pt;}
.y90{bottom:718.013333pt;}
.y78{bottom:721.093333pt;}
.yec{bottom:723.013333pt;}
.yca{bottom:723.493333pt;}
.y142{bottom:726.213333pt;}
.y167{bottom:732.293333pt;}
.y36{bottom:733.413333pt;}
.y8f{bottom:736.453333pt;}
.y77{bottom:739.493333pt;}
.yeb{bottom:741.413333pt;}
.yc9{bottom:741.893333pt;}
.y166{bottom:747.653333pt;}
.y35{bottom:751.813333pt;}
.y8e{bottom:754.853333pt;}
.y141{bottom:756.773333pt;}
.y76{bottom:757.893333pt;}
.y120{bottom:758.853333pt;}
.yea{bottom:759.813333pt;}
.y165{bottom:763.013333pt;}
.y34{bottom:770.213333pt;}
.y59{bottom:771.333333pt;}
.y8d{bottom:773.253333pt;}
.yc8{bottom:776.293333pt;}
.ye9{bottom:778.213333pt;}
.yd{bottom:783.653333pt;}
.y140{bottom:786.053333pt;}
.y33{bottom:788.613333pt;}
.y8c{bottom:791.653333pt;}
.y75{bottom:792.293333pt;}
.y164{bottom:794.213333pt;}
.ye8{bottom:796.613333pt;}
.y11a{bottom:798.533333pt;}
.y32{bottom:807.013333pt;}
.yc{bottom:808.133333pt;}
.y163{bottom:809.573333pt;}
.y58{bottom:810.693333pt;}
.ye7{bottom:815.013333pt;}
.y8b{bottom:818.693333pt;}
.y162{bottom:824.933333pt;}
.y31{bottom:825.413333pt;}
.y57{bottom:829.093333pt;}
.ye6{bottom:833.413333pt;}
.y161{bottom:840.293333pt;}
.y30{bottom:843.813333pt;}
.y56{bottom:847.493333pt;}
.yb{bottom:849.413333pt;}
.y118{bottom:849.573333pt;}
.ye5{bottom:851.813333pt;}
.yaa{bottom:860.453333pt;}
.y55{bottom:865.893333pt;}
.y160{bottom:871.493333pt;}
.ya{bottom:876.933333pt;}
.y2f{bottom:879.333333pt;}
.ya9{bottom:881.893333pt;}
.y54{bottom:884.293333pt;}
.y15f{bottom:886.853333pt;}
.y7{bottom:919.013333pt;}
.y6{bottom:931.173333pt;}
.y5{bottom:943.493333pt;}
.y4{bottom:955.840000pt;}
.y3{bottom:968.000000pt;}
.y2{bottom:980.320000pt;}
.y1{bottom:993.760000pt;}
.ha{height:4.590000pt;}
.h18{height:12.320000pt;}
.hd{height:30.982500pt;}
.h10{height:32.160000pt;}
.h13{height:33.277500pt;}
.h11{height:33.585625pt;}
.h3{height:38.441250pt;}
.h2{height:38.797187pt;}
.h1a{height:39.040000pt;}
.h15{height:42.880000pt;}
.hc{height:43.031250pt;}
.hb{height:43.429688pt;}
.h1c{height:47.491563pt;}
.he{height:47.621250pt;}
.h1{height:48.093750pt;}
.h19{height:50.400000pt;}
.h4{height:52.785000pt;}
.h16{height:53.600000pt;}
.h9{height:57.375000pt;}
.h8{height:57.906250pt;}
.h6{height:58.563750pt;}
.h17{height:64.512000pt;}
.h14{height:65.440000pt;}
.h5{height:66.140625pt;}
.hf{height:67.750312pt;}
.h1b{height:76.512000pt;}
.h7{height:77.015312pt;}
.h12{height:107.392000pt;}
.h0{height:1056.000000pt;}
.w7{width:163.586667pt;}
.w5{width:198.106667pt;}
.w6{width:217.306667pt;}
.w3{width:236.186667pt;}
.w4{width:359.293333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x1f{left:12.160000pt;}
.x10{left:15.200000pt;}
.x1a{left:26.714667pt;}
.xf{left:29.274667pt;}
.x20{left:31.040000pt;}
.x19{left:46.554667pt;}
.x17{left:50.874667pt;}
.x11{left:59.034667pt;}
.x21{left:60.794667pt;}
.x1e{left:62.760000pt;}
.x1c{left:64.960000pt;}
.x14{left:85.434667pt;}
.x13{left:88.026667pt;}
.x16{left:89.114667pt;}
.x18{left:96.314667pt;}
.x1{left:113.471988pt;}
.xd{left:118.271988pt;}
.x3{left:124.351988pt;}
.x4{left:135.546655pt;}
.xe{left:151.226655pt;}
.x6{left:153.146655pt;}
.x5{left:160.346655pt;}
.xc{left:305.506655pt;}
.x1b{left:311.586667pt;}
.x12{left:349.666667pt;}
.x8{left:353.506655pt;}
.xb{left:358.466655pt;}
.x2{left:380.706655pt;}
.xa{left:408.093321pt;}
.x9{left:462.013309pt;}
.x7{left:468.413321pt;}
.x1d{left:528.893333pt;}
}




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