
    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_a3c9171920055762d92a5bc0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_38064466e9d0d8a569d4e3dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_6116440f6a06018b6badafcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1edcff075fa1111ec4739f1.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_17bc5405daad21bf0d0ae80c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_43262a43b656aa8b035da4ca.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_0272adb71d18559dc6d9fbda.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_36810054f475689cd1a4421c.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.150879;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_cd66426765328fbc08541a9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_a069e0d302f8c57e780a8931.woff2')format("woff");}.ffa{font-family:ffa;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);}
.va{vertical-align:-115.200000px;}
.v9{vertical-align:-96.600000px;}
.v12{vertical-align:-43.200000px;}
.v11{vertical-align:-27.600000px;}
.v5{vertical-align:-26.400000px;}
.v1{vertical-align:-14.400000px;}
.vd{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.vb{vertical-align:26.400000px;}
.vc{vertical-align:28.800000px;}
.v4{vertical-align:40.800000px;}
.ve{vertical-align:44.400000px;}
.v7{vertical-align:47.580000px;}
.v10{vertical-align:52.200000px;}
.vf{vertical-align:54.000000px;}
.v3{vertical-align:68.400000px;}
.v8{vertical-align:92.580000px;}
.v6{vertical-align:98.580000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls40{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls33{letter-spacing:0.021000px;}
.ls1{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.048000px;}
.ls31{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.213000px;}
.ls32{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.303000px;}
.ls41{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.501000px;}
.ls21{letter-spacing:1.797000px;}
.ls1e{letter-spacing:1.848000px;}
.ls23{letter-spacing:1.857000px;}
.ls1c{letter-spacing:2.004000px;}
.ls3a{letter-spacing:2.340000px;}
.ls3e{letter-spacing:2.400000px;}
.ls25{letter-spacing:2.775000px;}
.lsd{letter-spacing:2.811000px;}
.ls22{letter-spacing:2.835000px;}
.ls35{letter-spacing:2.967000px;}
.ls1b{letter-spacing:2.976000px;}
.ls12{letter-spacing:3.102000px;}
.ls28{letter-spacing:3.168000px;}
.ls36{letter-spacing:3.231000px;}
.ls37{letter-spacing:3.261000px;}
.ls27{letter-spacing:3.435000px;}
.lsc{letter-spacing:3.471000px;}
.ls2f{letter-spacing:4.020000px;}
.ls29{letter-spacing:4.104000px;}
.ls2d{letter-spacing:4.200000px;}
.lse{letter-spacing:4.548000px;}
.ls2e{letter-spacing:4.560000px;}
.ls16{letter-spacing:4.839000px;}
.ls17{letter-spacing:4.899000px;}
.ls15{letter-spacing:4.917000px;}
.ls3d{letter-spacing:7.200000px;}
.ls3c{letter-spacing:8.871000px;}
.ls14{letter-spacing:11.928000px;}
.ls2c{letter-spacing:12.528000px;}
.ls13{letter-spacing:13.272000px;}
.ls24{letter-spacing:18.975000px;}
.ls2a{letter-spacing:22.767000px;}
.ls20{letter-spacing:23.301000px;}
.ls3b{letter-spacing:30.411000px;}
.ls43{letter-spacing:30.984000px;}
.ls2b{letter-spacing:69.120000px;}
.ls38{letter-spacing:69.525000px;}
.lsb{letter-spacing:71.271000px;}
.ls19{letter-spacing:76.800000px;}
.ls3f{letter-spacing:274.671000px;}
.ls39{letter-spacing:322.851000px;}
.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;}
}
.ws12{word-spacing:-72.240000px;}
.wsd{word-spacing:-72.000000px;}
.ws1c{word-spacing:-71.640000px;}
.ws18{word-spacing:-51.213000px;}
.ws10{word-spacing:-51.054000px;}
.ws17{word-spacing:-51.021000px;}
.ws11{word-spacing:-51.000000px;}
.ws13{word-spacing:-50.838000px;}
.ws14{word-spacing:-47.784000px;}
.wsf{word-spacing:-38.904000px;}
.ws1e{word-spacing:-38.844000px;}
.ws1b{word-spacing:-38.754000px;}
.ws16{word-spacing:-26.460000px;}
.ws1d{word-spacing:-26.427000px;}
.wse{word-spacing:-25.617000px;}
.ws1a{word-spacing:-19.965000px;}
.ws9{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.784000px;}
.wsc{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:44.211000px;}
.ws15{word-spacing:44.991000px;}
._42{margin-left:-10.479000px;}
._43{margin-left:-7.470000px;}
._44{margin-left:-5.616000px;}
._19{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._8{width:2.664000px;}
._9{width:4.176000px;}
._23{width:5.904000px;}
._a{width:7.488000px;}
._b{width:8.958000px;}
._36{width:10.302000px;}
._49{width:11.304000px;}
._1b{width:12.600000px;}
._1c{width:13.608000px;}
._3d{width:14.664000px;}
._6{width:16.056000px;}
._48{width:17.259000px;}
._7{width:19.056000px;}
._13{width:20.700000px;}
._3b{width:21.714000px;}
._5{width:22.854000px;}
._4{width:24.006000px;}
._24{width:25.272000px;}
._32{width:26.424000px;}
._27{width:27.504000px;}
._1d{width:28.944000px;}
._21{width:30.456000px;}
._f{width:31.464000px;}
._2a{width:32.472000px;}
._d{width:33.624000px;}
._e{width:34.992000px;}
._11{width:36.576000px;}
._12{width:38.046000px;}
._41{width:39.168000px;}
._3e{width:41.184000px;}
._37{width:43.128000px;}
._16{width:45.072000px;}
._17{width:46.110000px;}
._4e{width:47.232000px;}
._2f{width:48.246000px;}
._1f{width:50.328000px;}
._20{width:51.408000px;}
._31{width:52.806000px;}
._3f{width:54.720000px;}
._40{width:56.088000px;}
._29{width:57.168000px;}
._4a{width:58.854000px;}
._15{width:60.120000px;}
._1e{width:61.488000px;}
._39{width:62.928000px;}
._3a{width:64.368000px;}
._18{width:66.384000px;}
._10{width:68.064000px;}
._47{width:69.096000px;}
._35{width:70.320000px;}
._4d{width:71.640000px;}
._38{width:73.512000px;}
._c{width:74.880000px;}
._25{width:76.248000px;}
._26{width:77.400000px;}
._34{width:79.776000px;}
._2d{width:81.246000px;}
._14{width:82.800000px;}
._52{width:83.952000px;}
._45{width:85.104000px;}
._46{width:86.688000px;}
._2b{width:89.268000px;}
._22{width:90.288000px;}
._1a{width:91.944000px;}
._33{width:94.608000px;}
._51{width:100.728000px;}
._3c{width:107.976000px;}
._2e{width:114.246000px;}
._53{width:120.888000px;}
._28{width:121.968000px;}
._2c{width:124.938000px;}
._4f{width:148.536000px;}
._50{width:149.832000px;}
._4b{width:152.838000px;}
._4c{width:182.808000px;}
._30{width:213.246000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y50{bottom:3.600000px;}
.y55{bottom:3.750000px;}
.y21{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y4e{bottom:13.050000px;}
.y59{bottom:13.200000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y4f{bottom:22.650000px;}
.y20{bottom:24.600000px;}
.y57{bottom:32.100000px;}
.y6a{bottom:32.250000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y5b{bottom:41.550000px;}
.y52{bottom:41.700000px;}
.y1f{bottom:45.300000px;}
.y5e{bottom:51.135000px;}
.y56{bottom:51.150000px;}
.y69{bottom:51.157500px;}
.y3{bottom:57.637500px;}
.y53{bottom:60.600000px;}
.y66{bottom:60.607500px;}
.y1e{bottom:66.000000px;}
.y63{bottom:70.035000px;}
.y5f{bottom:70.080000px;}
.y68{bottom:70.207500px;}
.y5c{bottom:79.500000px;}
.y61{bottom:79.530000px;}
.y54{bottom:79.650000px;}
.y67{bottom:79.657500px;}
.y2{bottom:81.637500px;}
.y1d{bottom:86.700000px;}
.y64{bottom:98.550000px;}
.y60{bottom:98.580000px;}
.y65{bottom:107.137500px;}
.y1c{bottom:107.400000px;}
.y3b{bottom:107.587500px;}
.yfa{bottom:121.237500px;}
.yb1{bottom:124.237500px;}
.y84{bottom:126.637500px;}
.y1b{bottom:128.100000px;}
.ye0{bottom:128.287500px;}
.y3a{bottom:131.287500px;}
.yf9{bottom:145.087500px;}
.yb0{bottom:148.087500px;}
.y1a{bottom:148.800000px;}
.y83{bottom:150.495000px;}
.ydf{bottom:152.130000px;}
.y39{bottom:155.130000px;}
.yaf{bottom:167.895000px;}
.yf8{bottom:168.930000px;}
.y82{bottom:174.345000px;}
.yde{bottom:175.995000px;}
.y38{bottom:178.995000px;}
.yad{bottom:179.895000px;}
.yac{bottom:190.995000px;}
.yf7{bottom:192.630000px;}
.y81{bottom:198.195000px;}
.ydd{bottom:199.695000px;}
.y37{bottom:202.695000px;}
.y62{bottom:202.845000px;}
.yf6{bottom:216.495000px;}
.yae{bottom:217.545000px;}
.y80{bottom:221.895000px;}
.ydc{bottom:223.545000px;}
.y36{bottom:226.545000px;}
.yab{bottom:233.745000px;}
.yf5{bottom:240.330000px;}
.y7f{bottom:245.745000px;}
.ydb{bottom:247.395000px;}
.y35{bottom:250.395000px;}
.yaa{bottom:257.595000px;}
.yf4{bottom:264.045000px;}
.y7e{bottom:269.595000px;}
.yda{bottom:271.095000px;}
.y34{bottom:274.080000px;}
.ya9{bottom:281.295000px;}
.yf3{bottom:287.895000px;}
.y7d{bottom:293.295000px;}
.yd9{bottom:294.945000px;}
.y33{bottom:297.945000px;}
.ya8{bottom:305.295000px;}
.yf2{bottom:311.745000px;}
.y7c{bottom:317.130000px;}
.y5d{bottom:317.445000px;}
.yd8{bottom:318.795000px;}
.y32{bottom:321.795000px;}
.ya7{bottom:329.595000px;}
.yf1{bottom:335.595000px;}
.y7b{bottom:340.995000px;}
.yd7{bottom:342.495000px;}
.y31{bottom:345.645000px;}
.ya6{bottom:355.545000px;}
.yf0{bottom:359.295000px;}
.y7a{bottom:364.695000px;}
.yd6{bottom:366.345000px;}
.y30{bottom:369.345000px;}
.ya5{bottom:381.375000px;}
.yef{bottom:383.175000px;}
.y79{bottom:388.575000px;}
.yd5{bottom:390.225000px;}
.y2f{bottom:393.225000px;}
.ya4{bottom:405.075000px;}
.yee{bottom:407.025000px;}
.y78{bottom:412.425000px;}
.yd4{bottom:413.925000px;}
.y2e{bottom:417.075000px;}
.yed{bottom:430.725000px;}
.y5a{bottom:432.075000px;}
.y77{bottom:436.125000px;}
.yd3{bottom:437.775000px;}
.y2d{bottom:440.775000px;}
.yec{bottom:454.575000px;}
.ya3{bottom:457.875000px;}
.y76{bottom:459.975000px;}
.yd2{bottom:461.625000px;}
.y2c{bottom:464.625000px;}
.yeb{bottom:478.425000px;}
.ya2{bottom:481.725000px;}
.y75{bottom:483.825000px;}
.yd1{bottom:485.325000px;}
.y2b{bottom:488.475000px;}
.yea{bottom:502.125000px;}
.ya1{bottom:505.575000px;}
.y74{bottom:507.525000px;}
.yd0{bottom:509.175000px;}
.y2a{bottom:512.175000px;}
.ye9{bottom:525.975000px;}
.y58{bottom:527.625000px;}
.ya0{bottom:529.425000px;}
.y73{bottom:531.375000px;}
.ycf{bottom:533.025000px;}
.y29{bottom:536.025000px;}
.ye8{bottom:549.825000px;}
.y72{bottom:555.225000px;}
.yce{bottom:556.875000px;}
.y28{bottom:559.875000px;}
.ye7{bottom:573.525000px;}
.y71{bottom:579.075000px;}
.y9f{bottom:580.275000px;}
.ycd{bottom:580.575000px;}
.y27{bottom:583.575000px;}
.ye6{bottom:597.375000px;}
.y70{bottom:602.775000px;}
.y51{bottom:604.275000px;}
.ycc{bottom:604.575000px;}
.y26{bottom:607.425000px;}
.ye5{bottom:621.225000px;}
.ycb{bottom:624.825000px;}
.y6f{bottom:626.625000px;}
.y9e{bottom:628.425000px;}
.y25{bottom:631.275000px;}
.yc9{bottom:641.925000px;}
.ye4{bottom:644.925000px;}
.y6e{bottom:650.475000px;}
.y9d{bottom:652.275000px;}
.yca{bottom:662.325000px;}
.y24{bottom:663.975000px;}
.ye3{bottom:668.775000px;}
.y6d{bottom:674.175000px;}
.y9c{bottom:676.425000px;}
.yc8{bottom:680.175000px;}
.y23{bottom:680.775000px;}
.ye2{bottom:692.625000px;}
.y6c{bottom:698.025000px;}
.y4d{bottom:699.975000px;}
.y9b{bottom:700.275000px;}
.yc7{bottom:704.025000px;}
.ye1{bottom:712.575000px;}
.y9a{bottom:720.075000px;}
.y6b{bottom:721.875000px;}
.yc6{bottom:727.875000px;}
.y98{bottom:731.175000px;}
.y97{bottom:732.225000px;}
.y22{bottom:742.920000px;}
.y96{bottom:743.220000px;}
.y4c{bottom:745.620000px;}
.yc5{bottom:752.220000px;}
.y19{bottom:763.620000px;}
.y4b{bottom:769.470000px;}
.y99{bottom:769.920000px;}
.yc4{bottom:778.620000px;}
.y95{bottom:786.120000px;}
.y4a{bottom:793.320000px;}
.yc3{bottom:802.920000px;}
.y94{bottom:809.970000px;}
.y49{bottom:817.020000px;}
.yc2{bottom:827.070000px;}
.y93{bottom:833.670000px;}
.y48{bottom:840.870000px;}
.yc1{bottom:850.920000px;}
.y92{bottom:857.670000px;}
.y47{bottom:864.720000px;}
.yc0{bottom:874.770000px;}
.y91{bottom:881.970000px;}
.y46{bottom:888.420000px;}
.ybe{bottom:895.170000px;}
.ybc{bottom:901.320000px;}
.y90{bottom:906.270000px;}
.y45{bottom:912.270000px;}
.ybf{bottom:919.170000px;}
.y8f{bottom:930.570000px;}
.ybd{bottom:932.670000px;}
.y18{bottom:932.820000px;}
.y44{bottom:936.120000px;}
.ybb{bottom:950.370000px;}
.y17{bottom:952.020000px;}
.y8e{bottom:954.720000px;}
.y43{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.yba{bottom:974.220000px;}
.y8d{bottom:978.870000px;}
.y42{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.yb9{bottom:998.070000px;}
.y8c{bottom:1002.870000px;}
.y41{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yb8{bottom:1018.020000px;}
.y8b{bottom:1027.020000px;}
.yb7{bottom:1029.120000px;}
.y40{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y8a{bottom:1050.870000px;}
.yb6{bottom:1053.420000px;}
.y3f{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y89{bottom:1075.020000px;}
.y11{bottom:1076.220000px;}
.yb5{bottom:1077.570000px;}
.y3e{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y88{bottom:1098.900000px;}
.yb4{bottom:1101.450000px;}
.y3d{bottom:1102.800000px;}
.y87{bottom:1118.850000px;}
.yb3{bottom:1125.750000px;}
.y3c{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y85{bottom:1135.950000px;}
.yb2{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y86{bottom:1156.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h12{height:37.987500px;}
.h6{height:45.300000px;}
.h14{height:46.567383px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h16{height:57.782227px;}
.h4{height:58.886719px;}
.h10{height:62.137500px;}
.hc{height:63.035156px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h13{height:66.515625px;}
.h1c{height:69.278320px;}
.h25{height:70.204688px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h28{height:74.004654px;}
.h17{height:75.900000px;}
.h2{height:82.441406px;}
.h18{height:94.800000px;}
.h15{height:94.950000px;}
.h1b{height:97.804688px;}
.h21{height:98.078320px;}
.h26{height:98.404687px;}
.h1a{height:113.850000px;}
.h19{height:113.887500px;}
.h27{height:139.064062px;}
.h24{height:141.604688px;}
.h22{height:142.204687px;}
.h1f{height:145.984687px;}
.he{height:165.600000px;}
.h1d{height:166.204687px;}
.h23{height:190.204687px;}
.h20{height:190.384687px;}
.h1e{height:196.384687px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:23.550000px;}
.wa{width:119.587500px;}
.wc{width:120.487500px;}
.wb{width:126.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x20{left:67.650000px;}
.x3a{left:69.449987px;}
.x30{left:74.999987px;}
.x31{left:79.799987px;}
.x2d{left:92.399987px;}
.x1d{left:95.699987px;}
.x1b{left:100.200000px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x10{left:110.099987px;}
.x33{left:119.999987px;}
.x6{left:121.687500px;}
.x32{left:126.637487px;}
.xa{left:128.130000px;}
.x36{left:150.029987px;}
.x21{left:187.995000px;}
.x2e{left:200.444987px;}
.x2f{left:241.844987px;}
.x38{left:274.844987px;}
.x34{left:276.344987px;}
.x37{left:281.444987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x22{left:314.745000px;}
.x35{left:364.994987px;}
.x11{left:383.024987px;}
.x1e{left:457.274987px;}
.x23{left:468.074987px;}
.x3b{left:484.124987px;}
.x26{left:489.974987px;}
.x1f{left:510.374987px;}
.x25{left:523.424987px;}
.x29{left:527.624987px;}
.x24{left:530.024987px;}
.x19{left:543.074987px;}
.x17{left:548.174987px;}
.x14{left:557.174987px;}
.x12{left:575.174987px;}
.x27{left:581.324987px;}
.x16{left:586.574987px;}
.x28{left:596.024987px;}
.x13{left:602.174987px;}
.x2a{left:615.524987px;}
.xc{left:625.425000px;}
.x2c{left:665.504987px;}
.x2b{left:670.919987px;}
.x18{left:695.654987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x15{left:850.619987px;}
.x39{left:858.704987px;}
@media print{
.va{vertical-align:-102.400000pt;}
.v9{vertical-align:-85.866667pt;}
.v12{vertical-align:-38.400000pt;}
.v11{vertical-align:-24.533333pt;}
.v5{vertical-align:-23.466667pt;}
.v1{vertical-align:-12.800000pt;}
.vd{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.vb{vertical-align:23.466667pt;}
.vc{vertical-align:25.600000pt;}
.v4{vertical-align:36.266667pt;}
.ve{vertical-align:39.466667pt;}
.v7{vertical-align:42.293333pt;}
.v10{vertical-align:46.400000pt;}
.vf{vertical-align:48.000000pt;}
.v3{vertical-align:60.800000pt;}
.v8{vertical-align:82.293333pt;}
.v6{vertical-align:87.626667pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls40{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls33{letter-spacing:0.018667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.042667pt;}
.ls31{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.189333pt;}
.ls32{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.269333pt;}
.ls41{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.445333pt;}
.ls21{letter-spacing:1.597333pt;}
.ls1e{letter-spacing:1.642667pt;}
.ls23{letter-spacing:1.650667pt;}
.ls1c{letter-spacing:1.781333pt;}
.ls3a{letter-spacing:2.080000pt;}
.ls3e{letter-spacing:2.133333pt;}
.ls25{letter-spacing:2.466667pt;}
.lsd{letter-spacing:2.498667pt;}
.ls22{letter-spacing:2.520000pt;}
.ls35{letter-spacing:2.637333pt;}
.ls1b{letter-spacing:2.645333pt;}
.ls12{letter-spacing:2.757333pt;}
.ls28{letter-spacing:2.816000pt;}
.ls36{letter-spacing:2.872000pt;}
.ls37{letter-spacing:2.898667pt;}
.ls27{letter-spacing:3.053333pt;}
.lsc{letter-spacing:3.085333pt;}
.ls2f{letter-spacing:3.573333pt;}
.ls29{letter-spacing:3.648000pt;}
.ls2d{letter-spacing:3.733333pt;}
.lse{letter-spacing:4.042667pt;}
.ls2e{letter-spacing:4.053333pt;}
.ls16{letter-spacing:4.301333pt;}
.ls17{letter-spacing:4.354667pt;}
.ls15{letter-spacing:4.370667pt;}
.ls3d{letter-spacing:6.400000pt;}
.ls3c{letter-spacing:7.885333pt;}
.ls14{letter-spacing:10.602667pt;}
.ls2c{letter-spacing:11.136000pt;}
.ls13{letter-spacing:11.797333pt;}
.ls24{letter-spacing:16.866667pt;}
.ls2a{letter-spacing:20.237333pt;}
.ls20{letter-spacing:20.712000pt;}
.ls3b{letter-spacing:27.032000pt;}
.ls43{letter-spacing:27.541333pt;}
.ls2b{letter-spacing:61.440000pt;}
.ls38{letter-spacing:61.800000pt;}
.lsb{letter-spacing:63.352000pt;}
.ls19{letter-spacing:68.266667pt;}
.ls3f{letter-spacing:244.152000pt;}
.ls39{letter-spacing:286.978667pt;}
.ws12{word-spacing:-64.213333pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1c{word-spacing:-63.680000pt;}
.ws18{word-spacing:-45.522667pt;}
.ws10{word-spacing:-45.381333pt;}
.ws17{word-spacing:-45.352000pt;}
.ws11{word-spacing:-45.333333pt;}
.ws13{word-spacing:-45.189333pt;}
.ws14{word-spacing:-42.474667pt;}
.wsf{word-spacing:-34.581333pt;}
.ws1e{word-spacing:-34.528000pt;}
.ws1b{word-spacing:-34.448000pt;}
.ws16{word-spacing:-23.520000pt;}
.ws1d{word-spacing:-23.490667pt;}
.wse{word-spacing:-22.770667pt;}
.ws1a{word-spacing:-17.746667pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.808000pt;}
.wsc{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:39.298667pt;}
.ws15{word-spacing:39.992000pt;}
._42{margin-left:-9.314667pt;}
._43{margin-left:-6.640000pt;}
._44{margin-left:-4.992000pt;}
._19{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._8{width:2.368000pt;}
._9{width:3.712000pt;}
._23{width:5.248000pt;}
._a{width:6.656000pt;}
._b{width:7.962667pt;}
._36{width:9.157333pt;}
._49{width:10.048000pt;}
._1b{width:11.200000pt;}
._1c{width:12.096000pt;}
._3d{width:13.034667pt;}
._6{width:14.272000pt;}
._48{width:15.341333pt;}
._7{width:16.938667pt;}
._13{width:18.400000pt;}
._3b{width:19.301333pt;}
._5{width:20.314667pt;}
._4{width:21.338667pt;}
._24{width:22.464000pt;}
._32{width:23.488000pt;}
._27{width:24.448000pt;}
._1d{width:25.728000pt;}
._21{width:27.072000pt;}
._f{width:27.968000pt;}
._2a{width:28.864000pt;}
._d{width:29.888000pt;}
._e{width:31.104000pt;}
._11{width:32.512000pt;}
._12{width:33.818667pt;}
._41{width:34.816000pt;}
._3e{width:36.608000pt;}
._37{width:38.336000pt;}
._16{width:40.064000pt;}
._17{width:40.986667pt;}
._4e{width:41.984000pt;}
._2f{width:42.885333pt;}
._1f{width:44.736000pt;}
._20{width:45.696000pt;}
._31{width:46.938667pt;}
._3f{width:48.640000pt;}
._40{width:49.856000pt;}
._29{width:50.816000pt;}
._4a{width:52.314667pt;}
._15{width:53.440000pt;}
._1e{width:54.656000pt;}
._39{width:55.936000pt;}
._3a{width:57.216000pt;}
._18{width:59.008000pt;}
._10{width:60.501333pt;}
._47{width:61.418667pt;}
._35{width:62.506667pt;}
._4d{width:63.680000pt;}
._38{width:65.344000pt;}
._c{width:66.560000pt;}
._25{width:67.776000pt;}
._26{width:68.800000pt;}
._34{width:70.912000pt;}
._2d{width:72.218667pt;}
._14{width:73.600000pt;}
._52{width:74.624000pt;}
._45{width:75.648000pt;}
._46{width:77.056000pt;}
._2b{width:79.349333pt;}
._22{width:80.256000pt;}
._1a{width:81.728000pt;}
._33{width:84.096000pt;}
._51{width:89.536000pt;}
._3c{width:95.978667pt;}
._2e{width:101.552000pt;}
._53{width:107.456000pt;}
._28{width:108.416000pt;}
._2c{width:111.056000pt;}
._4f{width:132.032000pt;}
._50{width:133.184000pt;}
._4b{width:135.856000pt;}
._4c{width:162.496000pt;}
._30{width:189.552000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y50{bottom:3.200000pt;}
.y55{bottom:3.333333pt;}
.y21{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y4e{bottom:11.600000pt;}
.y59{bottom:11.733333pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y4f{bottom:20.133333pt;}
.y20{bottom:21.866667pt;}
.y57{bottom:28.533333pt;}
.y6a{bottom:28.666667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y5b{bottom:36.933333pt;}
.y52{bottom:37.066667pt;}
.y1f{bottom:40.266667pt;}
.y5e{bottom:45.453333pt;}
.y56{bottom:45.466667pt;}
.y69{bottom:45.473333pt;}
.y3{bottom:51.233333pt;}
.y53{bottom:53.866667pt;}
.y66{bottom:53.873333pt;}
.y1e{bottom:58.666667pt;}
.y63{bottom:62.253333pt;}
.y5f{bottom:62.293333pt;}
.y68{bottom:62.406667pt;}
.y5c{bottom:70.666667pt;}
.y61{bottom:70.693333pt;}
.y54{bottom:70.800000pt;}
.y67{bottom:70.806667pt;}
.y2{bottom:72.566667pt;}
.y1d{bottom:77.066667pt;}
.y64{bottom:87.600000pt;}
.y60{bottom:87.626667pt;}
.y65{bottom:95.233333pt;}
.y1c{bottom:95.466667pt;}
.y3b{bottom:95.633333pt;}
.yfa{bottom:107.766667pt;}
.yb1{bottom:110.433333pt;}
.y84{bottom:112.566667pt;}
.y1b{bottom:113.866667pt;}
.ye0{bottom:114.033333pt;}
.y3a{bottom:116.700000pt;}
.yf9{bottom:128.966667pt;}
.yb0{bottom:131.633333pt;}
.y1a{bottom:132.266667pt;}
.y83{bottom:133.773333pt;}
.ydf{bottom:135.226667pt;}
.y39{bottom:137.893333pt;}
.yaf{bottom:149.240000pt;}
.yf8{bottom:150.160000pt;}
.y82{bottom:154.973333pt;}
.yde{bottom:156.440000pt;}
.y38{bottom:159.106667pt;}
.yad{bottom:159.906667pt;}
.yac{bottom:169.773333pt;}
.yf7{bottom:171.226667pt;}
.y81{bottom:176.173333pt;}
.ydd{bottom:177.506667pt;}
.y37{bottom:180.173333pt;}
.y62{bottom:180.306667pt;}
.yf6{bottom:192.440000pt;}
.yae{bottom:193.373333pt;}
.y80{bottom:197.240000pt;}
.ydc{bottom:198.706667pt;}
.y36{bottom:201.373333pt;}
.yab{bottom:207.773333pt;}
.yf5{bottom:213.626667pt;}
.y7f{bottom:218.440000pt;}
.ydb{bottom:219.906667pt;}
.y35{bottom:222.573333pt;}
.yaa{bottom:228.973333pt;}
.yf4{bottom:234.706667pt;}
.y7e{bottom:239.640000pt;}
.yda{bottom:240.973333pt;}
.y34{bottom:243.626667pt;}
.ya9{bottom:250.040000pt;}
.yf3{bottom:255.906667pt;}
.y7d{bottom:260.706667pt;}
.yd9{bottom:262.173333pt;}
.y33{bottom:264.840000pt;}
.ya8{bottom:271.373333pt;}
.yf2{bottom:277.106667pt;}
.y7c{bottom:281.893333pt;}
.y5d{bottom:282.173333pt;}
.yd8{bottom:283.373333pt;}
.y32{bottom:286.040000pt;}
.ya7{bottom:292.973333pt;}
.yf1{bottom:298.306667pt;}
.y7b{bottom:303.106667pt;}
.yd7{bottom:304.440000pt;}
.y31{bottom:307.240000pt;}
.ya6{bottom:316.040000pt;}
.yf0{bottom:319.373333pt;}
.y7a{bottom:324.173333pt;}
.yd6{bottom:325.640000pt;}
.y30{bottom:328.306667pt;}
.ya5{bottom:339.000000pt;}
.yef{bottom:340.600000pt;}
.y79{bottom:345.400000pt;}
.yd5{bottom:346.866667pt;}
.y2f{bottom:349.533333pt;}
.ya4{bottom:360.066667pt;}
.yee{bottom:361.800000pt;}
.y78{bottom:366.600000pt;}
.yd4{bottom:367.933333pt;}
.y2e{bottom:370.733333pt;}
.yed{bottom:382.866667pt;}
.y5a{bottom:384.066667pt;}
.y77{bottom:387.666667pt;}
.yd3{bottom:389.133333pt;}
.y2d{bottom:391.800000pt;}
.yec{bottom:404.066667pt;}
.ya3{bottom:407.000000pt;}
.y76{bottom:408.866667pt;}
.yd2{bottom:410.333333pt;}
.y2c{bottom:413.000000pt;}
.yeb{bottom:425.266667pt;}
.ya2{bottom:428.200000pt;}
.y75{bottom:430.066667pt;}
.yd1{bottom:431.400000pt;}
.y2b{bottom:434.200000pt;}
.yea{bottom:446.333333pt;}
.ya1{bottom:449.400000pt;}
.y74{bottom:451.133333pt;}
.yd0{bottom:452.600000pt;}
.y2a{bottom:455.266667pt;}
.ye9{bottom:467.533333pt;}
.y58{bottom:469.000000pt;}
.ya0{bottom:470.600000pt;}
.y73{bottom:472.333333pt;}
.ycf{bottom:473.800000pt;}
.y29{bottom:476.466667pt;}
.ye8{bottom:488.733333pt;}
.y72{bottom:493.533333pt;}
.yce{bottom:495.000000pt;}
.y28{bottom:497.666667pt;}
.ye7{bottom:509.800000pt;}
.y71{bottom:514.733333pt;}
.y9f{bottom:515.800000pt;}
.ycd{bottom:516.066667pt;}
.y27{bottom:518.733333pt;}
.ye6{bottom:531.000000pt;}
.y70{bottom:535.800000pt;}
.y51{bottom:537.133333pt;}
.ycc{bottom:537.400000pt;}
.y26{bottom:539.933333pt;}
.ye5{bottom:552.200000pt;}
.ycb{bottom:555.400000pt;}
.y6f{bottom:557.000000pt;}
.y9e{bottom:558.600000pt;}
.y25{bottom:561.133333pt;}
.yc9{bottom:570.600000pt;}
.ye4{bottom:573.266667pt;}
.y6e{bottom:578.200000pt;}
.y9d{bottom:579.800000pt;}
.yca{bottom:588.733333pt;}
.y24{bottom:590.200000pt;}
.ye3{bottom:594.466667pt;}
.y6d{bottom:599.266667pt;}
.y9c{bottom:601.266667pt;}
.yc8{bottom:604.600000pt;}
.y23{bottom:605.133333pt;}
.ye2{bottom:615.666667pt;}
.y6c{bottom:620.466667pt;}
.y4d{bottom:622.200000pt;}
.y9b{bottom:622.466667pt;}
.yc7{bottom:625.800000pt;}
.ye1{bottom:633.400000pt;}
.y9a{bottom:640.066667pt;}
.y6b{bottom:641.666667pt;}
.yc6{bottom:647.000000pt;}
.y98{bottom:649.933333pt;}
.y97{bottom:650.866667pt;}
.y22{bottom:660.373333pt;}
.y96{bottom:660.640000pt;}
.y4c{bottom:662.773333pt;}
.yc5{bottom:668.640000pt;}
.y19{bottom:678.773333pt;}
.y4b{bottom:683.973333pt;}
.y99{bottom:684.373333pt;}
.yc4{bottom:692.106667pt;}
.y95{bottom:698.773333pt;}
.y4a{bottom:705.173333pt;}
.yc3{bottom:713.706667pt;}
.y94{bottom:719.973333pt;}
.y49{bottom:726.240000pt;}
.yc2{bottom:735.173333pt;}
.y93{bottom:741.040000pt;}
.y48{bottom:747.440000pt;}
.yc1{bottom:756.373333pt;}
.y92{bottom:762.373333pt;}
.y47{bottom:768.640000pt;}
.yc0{bottom:777.573333pt;}
.y91{bottom:783.973333pt;}
.y46{bottom:789.706667pt;}
.ybe{bottom:795.706667pt;}
.ybc{bottom:801.173333pt;}
.y90{bottom:805.573333pt;}
.y45{bottom:810.906667pt;}
.ybf{bottom:817.040000pt;}
.y8f{bottom:827.173333pt;}
.ybd{bottom:829.040000pt;}
.y18{bottom:829.173333pt;}
.y44{bottom:832.106667pt;}
.ybb{bottom:844.773333pt;}
.y17{bottom:846.240000pt;}
.y8e{bottom:848.640000pt;}
.y43{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.yba{bottom:865.973333pt;}
.y8d{bottom:870.106667pt;}
.y42{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.yb9{bottom:887.173333pt;}
.y8c{bottom:891.440000pt;}
.y41{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yb8{bottom:904.906667pt;}
.y8b{bottom:912.906667pt;}
.yb7{bottom:914.773333pt;}
.y40{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y8a{bottom:934.106667pt;}
.yb6{bottom:936.373333pt;}
.y3f{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y89{bottom:955.573333pt;}
.y11{bottom:956.640000pt;}
.yb5{bottom:957.840000pt;}
.y3e{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y88{bottom:976.800000pt;}
.yb4{bottom:979.066667pt;}
.y3d{bottom:980.266667pt;}
.y87{bottom:994.533333pt;}
.yb3{bottom:1000.666667pt;}
.y3c{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y85{bottom:1009.733333pt;}
.yb2{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y86{bottom:1027.866667pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h12{height:33.766667pt;}
.h6{height:40.266667pt;}
.h14{height:41.393229pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h16{height:51.361979pt;}
.h4{height:52.343750pt;}
.h10{height:55.233333pt;}
.hc{height:56.031250pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h13{height:59.125000pt;}
.h1c{height:61.580729pt;}
.h25{height:62.404167pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h28{height:65.781915pt;}
.h17{height:67.466667pt;}
.h2{height:73.281250pt;}
.h18{height:84.266667pt;}
.h15{height:84.400000pt;}
.h1b{height:86.937500pt;}
.h21{height:87.180729pt;}
.h26{height:87.470833pt;}
.h1a{height:101.200000pt;}
.h19{height:101.233333pt;}
.h27{height:123.612500pt;}
.h24{height:125.870833pt;}
.h22{height:126.404167pt;}
.h1f{height:129.764167pt;}
.he{height:147.200000pt;}
.h1d{height:147.737500pt;}
.h23{height:169.070833pt;}
.h20{height:169.230833pt;}
.h1e{height:174.564167pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:20.933333pt;}
.wa{width:106.300000pt;}
.wc{width:107.100000pt;}
.wb{width:112.000000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x20{left:60.133333pt;}
.x3a{left:61.733322pt;}
.x30{left:66.666655pt;}
.x31{left:70.933322pt;}
.x2d{left:82.133322pt;}
.x1d{left:85.066655pt;}
.x1b{left:89.066667pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x10{left:97.866655pt;}
.x33{left:106.666655pt;}
.x6{left:108.166667pt;}
.x32{left:112.566655pt;}
.xa{left:113.893333pt;}
.x36{left:133.359988pt;}
.x21{left:167.106667pt;}
.x2e{left:178.173322pt;}
.x2f{left:214.973322pt;}
.x38{left:244.306655pt;}
.x34{left:245.639988pt;}
.x37{left:250.173322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x22{left:279.773333pt;}
.x35{left:324.439988pt;}
.x11{left:340.466655pt;}
.x1e{left:406.466655pt;}
.x23{left:416.066655pt;}
.x3b{left:430.333322pt;}
.x26{left:435.533322pt;}
.x1f{left:453.666655pt;}
.x25{left:465.266655pt;}
.x29{left:468.999988pt;}
.x24{left:471.133322pt;}
.x19{left:482.733322pt;}
.x17{left:487.266655pt;}
.x14{left:495.266655pt;}
.x12{left:511.266655pt;}
.x27{left:516.733322pt;}
.x16{left:521.399988pt;}
.x28{left:529.799988pt;}
.x13{left:535.266655pt;}
.x2a{left:547.133322pt;}
.xc{left:555.933333pt;}
.x2c{left:591.559988pt;}
.x2b{left:596.373322pt;}
.x18{left:618.359988pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x15{left:756.106655pt;}
.x39{left:763.293322pt;}
}




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