
    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_0232762c2dbb7524a94efeaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_97a873ecbba9925dcbbb061a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_bff0188daaf1cc8a4b5a6198.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922363;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_355216b6ca1702eb35e19f92.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_db92212b1765742cb95a7f28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922363;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_26f021a5ca3db58aafdb483a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.059082;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_3c816f4255b6d9a2cf8545e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913086;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_e06d98cbc97b4a45b197ce81.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922363;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_36f2aa0bbfe1700f98a011e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_0232762c2dbb7524a94efeaf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_355216b6ca1702eb35e19f92.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_db92212b1765742cb95a7f28.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922363;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:ffd;src:url('chunks/assets/font_1914d054331e640fa51e47aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930176;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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:31.968000px;}
.ls1{letter-spacing:-1.260000px;}
.ls2{letter-spacing:-1.140000px;}
.ls5{letter-spacing:-0.420000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.016800px;}
.ls6{letter-spacing:0.021000px;}
.ls9{letter-spacing:0.300000px;}
.lsc{letter-spacing:1.639800px;}
.lse{letter-spacing:2.550600px;}
.ls8{letter-spacing:3.738600px;}
.lsa{letter-spacing:5.392200px;}
.ls7{letter-spacing:6.201600px;}
.lsd{letter-spacing:6.415200px;}
.ls3{letter-spacing:6.660000px;}
.lsf{letter-spacing:8.882400px;}
.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;}
}
.ws3c{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.200000px;}
.ws29{word-spacing:-12.780000px;}
.ws0{word-spacing:-11.880000px;}
.ws15{word-spacing:-7.695600px;}
.ws43{word-spacing:-6.900000px;}
.ws17{word-spacing:-6.660000px;}
.ws16{word-spacing:-6.156480px;}
.ws24{word-spacing:-5.040000px;}
.ws1f{word-spacing:-2.700000px;}
.ws20{word-spacing:-2.280000px;}
.wsb{word-spacing:-2.214000px;}
.ws2d{word-spacing:-2.160000px;}
.ws3f{word-spacing:-2.040000px;}
.ws8{word-spacing:-1.944000px;}
.ws18{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.404000px;}
.ws2f{word-spacing:-1.320000px;}
.ws1e{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.027984px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.120000px;}
.ws26{word-spacing:0.240000px;}
.ws11{word-spacing:0.648000px;}
.ws5{word-spacing:0.702000px;}
.ws27{word-spacing:0.720000px;}
.ws1c{word-spacing:0.780000px;}
.ws1b{word-spacing:0.840000px;}
.ws14{word-spacing:1.140000px;}
.ws13{word-spacing:1.260000px;}
.ws3b{word-spacing:1.320000px;}
.wsa{word-spacing:1.404000px;}
.ws10{word-spacing:1.566000px;}
.ws44{word-spacing:1.620000px;}
.ws2c{word-spacing:2.040000px;}
.ws39{word-spacing:2.280000px;}
.ws3e{word-spacing:2.340000px;}
.ws2b{word-spacing:2.400000px;}
.ws47{word-spacing:2.460000px;}
.ws34{word-spacing:2.520000px;}
.ws19{word-spacing:2.700000px;}
.ws32{word-spacing:2.760000px;}
.ws38{word-spacing:2.820000px;}
.wsd{word-spacing:2.970000px;}
.ws42{word-spacing:3.000000px;}
.ws36{word-spacing:3.060000px;}
.wsc{word-spacing:3.078000px;}
.ws1d{word-spacing:3.180000px;}
.ws23{word-spacing:3.240000px;}
.ws1a{word-spacing:3.540000px;}
.wse{word-spacing:3.618000px;}
.ws40{word-spacing:3.720000px;}
.ws6{word-spacing:3.996000px;}
.ws30{word-spacing:4.020000px;}
.ws12{word-spacing:4.080000px;}
.ws3a{word-spacing:4.260000px;}
.ws2a{word-spacing:4.500000px;}
.ws3d{word-spacing:4.680000px;}
.ws33{word-spacing:4.920000px;}
.ws2e{word-spacing:5.340000px;}
.ws4{word-spacing:5.400000px;}
.ws35{word-spacing:5.580000px;}
.ws41{word-spacing:6.120000px;}
.ws45{word-spacing:6.360000px;}
.ws46{word-spacing:6.420000px;}
.ws49{word-spacing:6.600000px;}
.ws7{word-spacing:6.912000px;}
.ws21{word-spacing:7.500000px;}
.ws37{word-spacing:7.860000px;}
.ws48{word-spacing:8.760000px;}
.ws4a{word-spacing:8.880000px;}
.ws31{word-spacing:9.000000px;}
.ws25{word-spacing:9.180000px;}
.ws22{word-spacing:12.480000px;}
.ws3{word-spacing:239.490000px;}
._1{margin-left:-3362.457600px;}
._14{margin-left:-13.260000px;}
._4{margin-left:-8.419200px;}
._11{margin-left:-6.431400px;}
._3{margin-left:-4.680600px;}
._0{margin-left:-3.302400px;}
._5{margin-left:-2.140200px;}
._2{margin-left:-1.107000px;}
._6{width:1.016400px;}
._7{width:2.026800px;}
._10{width:3.090000px;}
._8{width:4.141800px;}
._9{width:5.158800px;}
._a{width:7.057800px;}
._c{width:8.628000px;}
._e{width:10.518000px;}
._d{width:11.674200px;}
._12{width:14.364000px;}
._15{width:15.498000px;}
._13{width:16.878000px;}
._f{width:24.840000px;}
._b{width:239.512800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs7{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs6{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:55.968000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y99{bottom:103.844400px;}
.ya4{bottom:104.831400px;}
.ye9{bottom:104.836500px;}
.y9f{bottom:104.881800px;}
.y26{bottom:109.870050px;}
.yea{bottom:113.340450px;}
.y9e{bottom:118.681800px;}
.y25{bottom:119.674050px;}
.y13e{bottom:120.568800px;}
.y98{bottom:121.844400px;}
.ycc{bottom:122.375850px;}
.ye8{bottom:122.836500px;}
.y71{bottom:131.340450px;}
.y107{bottom:131.871900px;}
.ye0{bottom:132.332550px;}
.y9d{bottom:132.481800px;}
.y24{bottom:137.470050px;}
.y13d{bottom:138.568800px;}
.y97{bottom:139.844400px;}
.ycb{bottom:140.375850px;}
.ye7{bottom:140.836500px;}
.y9c{bottom:146.281800px;}
.y70{bottom:149.340450px;}
.y4a{bottom:149.855100px;}
.y106{bottom:149.871900px;}
.ydf{bottom:150.332550px;}
.y126{bottom:156.568800px;}
.y96{bottom:157.844400px;}
.yca{bottom:158.375850px;}
.ye6{bottom:158.836500px;}
.y9b{bottom:160.081800px;}
.y6f{bottom:167.340450px;}
.y49{bottom:167.855100px;}
.y105{bottom:167.871900px;}
.yde{bottom:168.332550px;}
.y125{bottom:174.568800px;}
.y95{bottom:175.844400px;}
.yc9{bottom:176.375850px;}
.ye5{bottom:176.836500px;}
.y9a{bottom:177.877950px;}
.y13c{bottom:178.820700px;}
.y23{bottom:179.280150px;}
.y6e{bottom:185.340450px;}
.y48{bottom:185.855100px;}
.y104{bottom:185.871900px;}
.ydd{bottom:186.332550px;}
.y94{bottom:193.844400px;}
.yc8{bottom:194.375850px;}
.ye4{bottom:194.836500px;}
.y22{bottom:195.480000px;}
.y124{bottom:196.820700px;}
.y6d{bottom:203.340450px;}
.y47{bottom:203.855100px;}
.y103{bottom:203.871900px;}
.ydc{bottom:204.332550px;}
.y21{bottom:211.680150px;}
.y93{bottom:211.844400px;}
.yc7{bottom:212.375850px;}
.ye3{bottom:212.836500px;}
.y123{bottom:214.820700px;}
.y6c{bottom:221.340450px;}
.y46{bottom:221.855100px;}
.y102{bottom:221.871900px;}
.ydb{bottom:222.332550px;}
.y20{bottom:227.880000px;}
.y92{bottom:229.844400px;}
.yc6{bottom:230.375850px;}
.ye2{bottom:230.836500px;}
.y122{bottom:237.072750px;}
.y6b{bottom:239.340450px;}
.y45{bottom:239.855100px;}
.y101{bottom:239.871900px;}
.yda{bottom:240.332550px;}
.y1f{bottom:244.080000px;}
.y91{bottom:247.844400px;}
.yc5{bottom:248.375850px;}
.ye1{bottom:248.836500px;}
.y121{bottom:255.072750px;}
.y6a{bottom:257.340450px;}
.y44{bottom:257.855100px;}
.y100{bottom:257.871900px;}
.yd9{bottom:258.332550px;}
.y1e{bottom:260.280150px;}
.y90{bottom:265.844400px;}
.yc4{bottom:266.375850px;}
.y120{bottom:273.072750px;}
.y69{bottom:275.340450px;}
.y43{bottom:275.855100px;}
.yff{bottom:275.871900px;}
.yd8{bottom:276.332550px;}
.y1d{bottom:276.480000px;}
.y13b{bottom:277.324650px;}
.y8f{bottom:283.844400px;}
.yc3{bottom:284.375850px;}
.y1c{bottom:292.680150px;}
.y68{bottom:293.340450px;}
.y42{bottom:293.855100px;}
.yfe{bottom:293.871900px;}
.yd7{bottom:294.332550px;}
.y11f{bottom:295.324650px;}
.y8e{bottom:301.844400px;}
.yc2{bottom:302.375850px;}
.y1b{bottom:308.880000px;}
.y67{bottom:311.340450px;}
.y41{bottom:311.855100px;}
.yfd{bottom:311.871900px;}
.yd6{bottom:312.332550px;}
.y11e{bottom:313.324650px;}
.y13a{bottom:317.576550px;}
.y8d{bottom:319.844400px;}
.yc1{bottom:320.375850px;}
.y1a{bottom:329.332050px;}
.y66{bottom:329.340450px;}
.y40{bottom:329.855100px;}
.yfc{bottom:329.871900px;}
.yd5{bottom:330.332550px;}
.y11d{bottom:331.324650px;}
.y139{bottom:335.576550px;}
.y8c{bottom:337.844400px;}
.yc0{bottom:338.375850px;}
.y65{bottom:347.340450px;}
.y3f{bottom:347.855100px;}
.yfb{bottom:347.871900px;}
.y11c{bottom:349.324650px;}
.y19{bottom:349.783950px;}
.y8b{bottom:355.844400px;}
.ybf{bottom:356.375850px;}
.yd4{bottom:356.836500px;}
.y138{bottom:357.828600px;}
.y64{bottom:365.340450px;}
.y3e{bottom:365.855100px;}
.yfa{bottom:365.871900px;}
.y11b{bottom:371.576550px;}
.y8a{bottom:373.844400px;}
.ybe{bottom:374.375850px;}
.y137{bottom:375.828600px;}
.y63{bottom:383.340450px;}
.y3d{bottom:383.855100px;}
.yf9{bottom:383.871900px;}
.y11a{bottom:389.576550px;}
.y89{bottom:391.844400px;}
.ya3{bottom:392.340450px;}
.ybd{bottom:392.375850px;}
.y136{bottom:398.080500px;}
.y18{bottom:398.383950px;}
.y62{bottom:401.340450px;}
.y3c{bottom:401.855100px;}
.yf8{bottom:401.871900px;}
.y119{bottom:407.576550px;}
.ya2{bottom:408.540450px;}
.y88{bottom:409.844400px;}
.ybc{bottom:410.375850px;}
.yd3{bottom:410.836500px;}
.y135{bottom:416.080500px;}
.y17{bottom:418.836000px;}
.y61{bottom:419.340450px;}
.y3b{bottom:419.855100px;}
.yf7{bottom:419.871900px;}
.ya1{bottom:424.740300px;}
.y87{bottom:427.844400px;}
.ybb{bottom:428.375850px;}
.yd2{bottom:428.836500px;}
.y118{bottom:429.828600px;}
.y134{bottom:434.080500px;}
.y16{bottom:435.036000px;}
.y60{bottom:437.340450px;}
.y3a{bottom:437.855100px;}
.yf6{bottom:437.871900px;}
.ya0{bottom:440.940450px;}
.y86{bottom:445.844400px;}
.yba{bottom:446.375850px;}
.yd1{bottom:446.836500px;}
.y117{bottom:447.828600px;}
.y15{bottom:451.236000px;}
.y5f{bottom:455.340300px;}
.y39{bottom:455.855100px;}
.yf5{bottom:455.871900px;}
.y133{bottom:456.332550px;}
.y85{bottom:463.844400px;}
.yb9{bottom:464.375850px;}
.yd0{bottom:464.836500px;}
.y116{bottom:465.828600px;}
.y14{bottom:467.436000px;}
.y5e{bottom:473.340300px;}
.y38{bottom:473.855100px;}
.yf4{bottom:473.871900px;}
.y132{bottom:474.332550px;}
.y84{bottom:481.844400px;}
.yb8{bottom:482.375850px;}
.ycf{bottom:482.836500px;}
.y13{bottom:483.636000px;}
.y115{bottom:483.828600px;}
.y5d{bottom:491.340300px;}
.y37{bottom:491.855100px;}
.yf3{bottom:491.871900px;}
.y131{bottom:492.332550px;}
.y12{bottom:499.836000px;}
.y83{bottom:499.844400px;}
.yb7{bottom:500.375850px;}
.yce{bottom:500.836500px;}
.y114{bottom:506.080500px;}
.y5c{bottom:509.340300px;}
.y36{bottom:509.855100px;}
.yf2{bottom:509.871900px;}
.y130{bottom:514.584450px;}
.y11{bottom:516.036000px;}
.y82{bottom:517.844400px;}
.yb6{bottom:518.375850px;}
.ycd{bottom:518.836500px;}
.y5b{bottom:527.340300px;}
.y35{bottom:527.855100px;}
.yf1{bottom:527.871900px;}
.y113{bottom:528.332550px;}
.y10{bottom:532.236000px;}
.y12f{bottom:532.584450px;}
.y81{bottom:535.844400px;}
.yb5{bottom:536.375850px;}
.y5a{bottom:545.340300px;}
.y34{bottom:545.855100px;}
.yf0{bottom:545.871900px;}
.y112{bottom:546.332550px;}
.yf{bottom:548.436000px;}
.y12e{bottom:550.584450px;}
.y80{bottom:553.844400px;}
.yb4{bottom:554.375850px;}
.y59{bottom:563.340300px;}
.y33{bottom:563.855100px;}
.yef{bottom:563.871900px;}
.ye{bottom:564.636000px;}
.y111{bottom:568.584450px;}
.y7f{bottom:571.844400px;}
.yb3{bottom:572.375850px;}
.y12d{bottom:572.836500px;}
.yd{bottom:580.836000px;}
.y58{bottom:581.340300px;}
.y32{bottom:581.855100px;}
.yee{bottom:581.871900px;}
.y110{bottom:586.584450px;}
.y7e{bottom:589.844400px;}
.yb2{bottom:590.375850px;}
.y12c{bottom:590.836500px;}
.yc{bottom:597.036000px;}
.y57{bottom:599.340300px;}
.y31{bottom:599.855100px;}
.yed{bottom:599.871900px;}
.y7d{bottom:607.844400px;}
.yb1{bottom:608.375850px;}
.y10f{bottom:608.836500px;}
.y56{bottom:617.340300px;}
.yb{bottom:617.487900px;}
.y30{bottom:617.855100px;}
.yec{bottom:617.871900px;}
.y7c{bottom:625.844400px;}
.yb0{bottom:626.375850px;}
.y10e{bottom:626.836500px;}
.y12b{bottom:631.088400px;}
.y55{bottom:635.340300px;}
.y2f{bottom:635.855100px;}
.yeb{bottom:635.871900px;}
.y7b{bottom:643.844400px;}
.yaf{bottom:644.375850px;}
.y10d{bottom:644.836500px;}
.y54{bottom:653.340450px;}
.y2e{bottom:653.855100px;}
.y7a{bottom:661.844400px;}
.yae{bottom:662.375850px;}
.y10c{bottom:667.088400px;}
.y53{bottom:671.340450px;}
.y2d{bottom:671.855100px;}
.y79{bottom:679.844400px;}
.yad{bottom:680.375850px;}
.y10b{bottom:685.088400px;}
.ya{bottom:687.687900px;}
.y52{bottom:689.340450px;}
.y2c{bottom:689.855100px;}
.y78{bottom:697.844400px;}
.yac{bottom:698.375850px;}
.y10a{bottom:703.088400px;}
.y9{bottom:703.887900px;}
.y51{bottom:707.340450px;}
.y12a{bottom:711.592350px;}
.y77{bottom:715.844400px;}
.y2b{bottom:716.359200px;}
.yab{bottom:716.375850px;}
.y50{bottom:725.340450px;}
.y129{bottom:729.592350px;}
.y76{bottom:733.844400px;}
.yaa{bottom:734.375850px;}
.y8{bottom:738.087900px;}
.y4f{bottom:743.340450px;}
.y128{bottom:747.592350px;}
.y75{bottom:751.844400px;}
.ya9{bottom:752.375850px;}
.y4e{bottom:761.340450px;}
.y127{bottom:765.592350px;}
.y74{bottom:769.844400px;}
.y2a{bottom:770.359200px;}
.ya8{bottom:770.375850px;}
.y4d{bottom:779.340300px;}
.y109{bottom:783.592350px;}
.y73{bottom:787.844400px;}
.ya7{bottom:788.375850px;}
.y7{bottom:789.843900px;}
.y29{bottom:792.611100px;}
.y4c{bottom:797.340300px;}
.y108{bottom:801.592350px;}
.y72{bottom:805.844400px;}
.ya6{bottom:806.375850px;}
.y28{bottom:808.811100px;}
.y6{bottom:816.843900px;}
.y4b{bottom:823.844400px;}
.ya5{bottom:824.375850px;}
.y27{bottom:825.011100px;}
.y5{bottom:857.860050px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.hd{height:25.781025px;}
.ha{height:25.781625px;}
.h2{height:33.632812px;}
.h8{height:38.021484px;}
.h9{height:38.891602px;}
.hb{height:41.765625px;}
.he{height:42.246094px;}
.hf{height:43.212891px;}
.h3{height:46.986328px;}
.hc{height:50.419922px;}
.h6{height:50.695312px;}
.h4{height:52.207031px;}
.h7{height:62.648438px;}
.h5{height:80.671875px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x10{left:101.963550px;}
.xf{left:104.689200px;}
.xb{left:106.299150px;}
.xc{left:110.551200px;}
.xd{left:127.559100px;}
.x6{left:132.624300px;}
.x8{left:161.316600px;}
.xa{left:162.472950px;}
.x9{left:165.356850px;}
.x5{left:168.004200px;}
.x7{left:184.006200px;}
.x11{left:191.157150px;}
.xe{left:257.576100px;}
.x4{left:281.975250px;}
.x3{left:445.646850px;}
.x2{left:532.787400px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:28.416000pt;}
.ls1{letter-spacing:-1.120000pt;}
.ls2{letter-spacing:-1.013333pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.014933pt;}
.ls6{letter-spacing:0.018667pt;}
.ls9{letter-spacing:0.266667pt;}
.lsc{letter-spacing:1.457600pt;}
.lse{letter-spacing:2.267200pt;}
.ls8{letter-spacing:3.323200pt;}
.lsa{letter-spacing:4.793067pt;}
.ls7{letter-spacing:5.512533pt;}
.lsd{letter-spacing:5.702400pt;}
.ls3{letter-spacing:5.920000pt;}
.lsf{letter-spacing:7.895467pt;}
.ws3c{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.733333pt;}
.ws29{word-spacing:-11.360000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws15{word-spacing:-6.840533pt;}
.ws43{word-spacing:-6.133333pt;}
.ws17{word-spacing:-5.920000pt;}
.ws16{word-spacing:-5.472427pt;}
.ws24{word-spacing:-4.480000pt;}
.ws1f{word-spacing:-2.400000pt;}
.ws20{word-spacing:-2.026667pt;}
.wsb{word-spacing:-1.968000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws3f{word-spacing:-1.813333pt;}
.ws8{word-spacing:-1.728000pt;}
.ws18{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.248000pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws1e{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.024875pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.106667pt;}
.ws26{word-spacing:0.213333pt;}
.ws11{word-spacing:0.576000pt;}
.ws5{word-spacing:0.624000pt;}
.ws27{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.693333pt;}
.ws1b{word-spacing:0.746667pt;}
.ws14{word-spacing:1.013333pt;}
.ws13{word-spacing:1.120000pt;}
.ws3b{word-spacing:1.173333pt;}
.wsa{word-spacing:1.248000pt;}
.ws10{word-spacing:1.392000pt;}
.ws44{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.813333pt;}
.ws39{word-spacing:2.026667pt;}
.ws3e{word-spacing:2.080000pt;}
.ws2b{word-spacing:2.133333pt;}
.ws47{word-spacing:2.186667pt;}
.ws34{word-spacing:2.240000pt;}
.ws19{word-spacing:2.400000pt;}
.ws32{word-spacing:2.453333pt;}
.ws38{word-spacing:2.506667pt;}
.wsd{word-spacing:2.640000pt;}
.ws42{word-spacing:2.666667pt;}
.ws36{word-spacing:2.720000pt;}
.wsc{word-spacing:2.736000pt;}
.ws1d{word-spacing:2.826667pt;}
.ws23{word-spacing:2.880000pt;}
.ws1a{word-spacing:3.146667pt;}
.wse{word-spacing:3.216000pt;}
.ws40{word-spacing:3.306667pt;}
.ws6{word-spacing:3.552000pt;}
.ws30{word-spacing:3.573333pt;}
.ws12{word-spacing:3.626667pt;}
.ws3a{word-spacing:3.786667pt;}
.ws2a{word-spacing:4.000000pt;}
.ws3d{word-spacing:4.160000pt;}
.ws33{word-spacing:4.373333pt;}
.ws2e{word-spacing:4.746667pt;}
.ws4{word-spacing:4.800000pt;}
.ws35{word-spacing:4.960000pt;}
.ws41{word-spacing:5.440000pt;}
.ws45{word-spacing:5.653333pt;}
.ws46{word-spacing:5.706667pt;}
.ws49{word-spacing:5.866667pt;}
.ws7{word-spacing:6.144000pt;}
.ws21{word-spacing:6.666667pt;}
.ws37{word-spacing:6.986667pt;}
.ws48{word-spacing:7.786667pt;}
.ws4a{word-spacing:7.893333pt;}
.ws31{word-spacing:8.000000pt;}
.ws25{word-spacing:8.160000pt;}
.ws22{word-spacing:11.093333pt;}
.ws3{word-spacing:212.880000pt;}
._1{margin-left:-2988.851200pt;}
._14{margin-left:-11.786667pt;}
._4{margin-left:-7.483733pt;}
._11{margin-left:-5.716800pt;}
._3{margin-left:-4.160533pt;}
._0{margin-left:-2.935467pt;}
._5{margin-left:-1.902400pt;}
._2{margin-left:-0.984000pt;}
._6{width:0.903467pt;}
._7{width:1.801600pt;}
._10{width:2.746667pt;}
._8{width:3.681600pt;}
._9{width:4.585600pt;}
._a{width:6.273600pt;}
._c{width:7.669333pt;}
._e{width:9.349333pt;}
._d{width:10.377067pt;}
._12{width:12.768000pt;}
._15{width:13.776000pt;}
._13{width:15.002667pt;}
._f{width:22.080000pt;}
._b{width:212.900267pt;}
.fs7{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:49.749333pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y99{bottom:92.306133pt;}
.ya4{bottom:93.183467pt;}
.ye9{bottom:93.188000pt;}
.y9f{bottom:93.228267pt;}
.y26{bottom:97.662267pt;}
.yea{bottom:100.747067pt;}
.y9e{bottom:105.494933pt;}
.y25{bottom:106.376933pt;}
.y13e{bottom:107.172267pt;}
.y98{bottom:108.306133pt;}
.ycc{bottom:108.778533pt;}
.ye8{bottom:109.188000pt;}
.y71{bottom:116.747067pt;}
.y107{bottom:117.219467pt;}
.ye0{bottom:117.628933pt;}
.y9d{bottom:117.761600pt;}
.y24{bottom:122.195600pt;}
.y13d{bottom:123.172267pt;}
.y97{bottom:124.306133pt;}
.ycb{bottom:124.778533pt;}
.ye7{bottom:125.188000pt;}
.y9c{bottom:130.028267pt;}
.y70{bottom:132.747067pt;}
.y4a{bottom:133.204533pt;}
.y106{bottom:133.219467pt;}
.ydf{bottom:133.628933pt;}
.y126{bottom:139.172267pt;}
.y96{bottom:140.306133pt;}
.yca{bottom:140.778533pt;}
.ye6{bottom:141.188000pt;}
.y9b{bottom:142.294933pt;}
.y6f{bottom:148.747067pt;}
.y49{bottom:149.204533pt;}
.y105{bottom:149.219467pt;}
.yde{bottom:149.628933pt;}
.y125{bottom:155.172267pt;}
.y95{bottom:156.306133pt;}
.yc9{bottom:156.778533pt;}
.ye5{bottom:157.188000pt;}
.y9a{bottom:158.113733pt;}
.y13c{bottom:158.951733pt;}
.y23{bottom:159.360133pt;}
.y6e{bottom:164.747067pt;}
.y48{bottom:165.204533pt;}
.y104{bottom:165.219467pt;}
.ydd{bottom:165.628933pt;}
.y94{bottom:172.306133pt;}
.yc8{bottom:172.778533pt;}
.ye4{bottom:173.188000pt;}
.y22{bottom:173.760000pt;}
.y124{bottom:174.951733pt;}
.y6d{bottom:180.747067pt;}
.y47{bottom:181.204533pt;}
.y103{bottom:181.219467pt;}
.ydc{bottom:181.628933pt;}
.y21{bottom:188.160133pt;}
.y93{bottom:188.306133pt;}
.yc7{bottom:188.778533pt;}
.ye3{bottom:189.188000pt;}
.y123{bottom:190.951733pt;}
.y6c{bottom:196.747067pt;}
.y46{bottom:197.204533pt;}
.y102{bottom:197.219467pt;}
.ydb{bottom:197.628933pt;}
.y20{bottom:202.560000pt;}
.y92{bottom:204.306133pt;}
.yc6{bottom:204.778533pt;}
.ye2{bottom:205.188000pt;}
.y122{bottom:210.731333pt;}
.y6b{bottom:212.747067pt;}
.y45{bottom:213.204533pt;}
.y101{bottom:213.219467pt;}
.yda{bottom:213.628933pt;}
.y1f{bottom:216.960000pt;}
.y91{bottom:220.306133pt;}
.yc5{bottom:220.778533pt;}
.ye1{bottom:221.188000pt;}
.y121{bottom:226.731333pt;}
.y6a{bottom:228.747067pt;}
.y44{bottom:229.204533pt;}
.y100{bottom:229.219467pt;}
.yd9{bottom:229.628933pt;}
.y1e{bottom:231.360133pt;}
.y90{bottom:236.306133pt;}
.yc4{bottom:236.778533pt;}
.y120{bottom:242.731333pt;}
.y69{bottom:244.747067pt;}
.y43{bottom:245.204533pt;}
.yff{bottom:245.219467pt;}
.yd8{bottom:245.628933pt;}
.y1d{bottom:245.760000pt;}
.y13b{bottom:246.510800pt;}
.y8f{bottom:252.306133pt;}
.yc3{bottom:252.778533pt;}
.y1c{bottom:260.160133pt;}
.y68{bottom:260.747067pt;}
.y42{bottom:261.204533pt;}
.yfe{bottom:261.219467pt;}
.yd7{bottom:261.628933pt;}
.y11f{bottom:262.510800pt;}
.y8e{bottom:268.306133pt;}
.yc2{bottom:268.778533pt;}
.y1b{bottom:274.560000pt;}
.y67{bottom:276.747067pt;}
.y41{bottom:277.204533pt;}
.yfd{bottom:277.219467pt;}
.yd6{bottom:277.628933pt;}
.y11e{bottom:278.510800pt;}
.y13a{bottom:282.290267pt;}
.y8d{bottom:284.306133pt;}
.yc1{bottom:284.778533pt;}
.y1a{bottom:292.739600pt;}
.y66{bottom:292.747067pt;}
.y40{bottom:293.204533pt;}
.yfc{bottom:293.219467pt;}
.yd5{bottom:293.628933pt;}
.y11d{bottom:294.510800pt;}
.y139{bottom:298.290267pt;}
.y8c{bottom:300.306133pt;}
.yc0{bottom:300.778533pt;}
.y65{bottom:308.747067pt;}
.y3f{bottom:309.204533pt;}
.yfb{bottom:309.219467pt;}
.y11c{bottom:310.510800pt;}
.y19{bottom:310.919067pt;}
.y8b{bottom:316.306133pt;}
.ybf{bottom:316.778533pt;}
.yd4{bottom:317.188000pt;}
.y138{bottom:318.069867pt;}
.y64{bottom:324.747067pt;}
.y3e{bottom:325.204533pt;}
.yfa{bottom:325.219467pt;}
.y11b{bottom:330.290267pt;}
.y8a{bottom:332.306133pt;}
.ybe{bottom:332.778533pt;}
.y137{bottom:334.069867pt;}
.y63{bottom:340.747067pt;}
.y3d{bottom:341.204533pt;}
.yf9{bottom:341.219467pt;}
.y11a{bottom:346.290267pt;}
.y89{bottom:348.306133pt;}
.ya3{bottom:348.747067pt;}
.ybd{bottom:348.778533pt;}
.y136{bottom:353.849333pt;}
.y18{bottom:354.119067pt;}
.y62{bottom:356.747067pt;}
.y3c{bottom:357.204533pt;}
.yf8{bottom:357.219467pt;}
.y119{bottom:362.290267pt;}
.ya2{bottom:363.147067pt;}
.y88{bottom:364.306133pt;}
.ybc{bottom:364.778533pt;}
.yd3{bottom:365.188000pt;}
.y135{bottom:369.849333pt;}
.y17{bottom:372.298667pt;}
.y61{bottom:372.747067pt;}
.y3b{bottom:373.204533pt;}
.yf7{bottom:373.219467pt;}
.ya1{bottom:377.546933pt;}
.y87{bottom:380.306133pt;}
.ybb{bottom:380.778533pt;}
.yd2{bottom:381.188000pt;}
.y118{bottom:382.069867pt;}
.y134{bottom:385.849333pt;}
.y16{bottom:386.698667pt;}
.y60{bottom:388.747067pt;}
.y3a{bottom:389.204533pt;}
.yf6{bottom:389.219467pt;}
.ya0{bottom:391.947067pt;}
.y86{bottom:396.306133pt;}
.yba{bottom:396.778533pt;}
.yd1{bottom:397.188000pt;}
.y117{bottom:398.069867pt;}
.y15{bottom:401.098667pt;}
.y5f{bottom:404.746933pt;}
.y39{bottom:405.204533pt;}
.yf5{bottom:405.219467pt;}
.y133{bottom:405.628933pt;}
.y85{bottom:412.306133pt;}
.yb9{bottom:412.778533pt;}
.yd0{bottom:413.188000pt;}
.y116{bottom:414.069867pt;}
.y14{bottom:415.498667pt;}
.y5e{bottom:420.746933pt;}
.y38{bottom:421.204533pt;}
.yf4{bottom:421.219467pt;}
.y132{bottom:421.628933pt;}
.y84{bottom:428.306133pt;}
.yb8{bottom:428.778533pt;}
.ycf{bottom:429.188000pt;}
.y13{bottom:429.898667pt;}
.y115{bottom:430.069867pt;}
.y5d{bottom:436.746933pt;}
.y37{bottom:437.204533pt;}
.yf3{bottom:437.219467pt;}
.y131{bottom:437.628933pt;}
.y12{bottom:444.298667pt;}
.y83{bottom:444.306133pt;}
.yb7{bottom:444.778533pt;}
.yce{bottom:445.188000pt;}
.y114{bottom:449.849333pt;}
.y5c{bottom:452.746933pt;}
.y36{bottom:453.204533pt;}
.yf2{bottom:453.219467pt;}
.y130{bottom:457.408400pt;}
.y11{bottom:458.698667pt;}
.y82{bottom:460.306133pt;}
.yb6{bottom:460.778533pt;}
.ycd{bottom:461.188000pt;}
.y5b{bottom:468.746933pt;}
.y35{bottom:469.204533pt;}
.yf1{bottom:469.219467pt;}
.y113{bottom:469.628933pt;}
.y10{bottom:473.098667pt;}
.y12f{bottom:473.408400pt;}
.y81{bottom:476.306133pt;}
.yb5{bottom:476.778533pt;}
.y5a{bottom:484.746933pt;}
.y34{bottom:485.204533pt;}
.yf0{bottom:485.219467pt;}
.y112{bottom:485.628933pt;}
.yf{bottom:487.498667pt;}
.y12e{bottom:489.408400pt;}
.y80{bottom:492.306133pt;}
.yb4{bottom:492.778533pt;}
.y59{bottom:500.746933pt;}
.y33{bottom:501.204533pt;}
.yef{bottom:501.219467pt;}
.ye{bottom:501.898667pt;}
.y111{bottom:505.408400pt;}
.y7f{bottom:508.306133pt;}
.yb3{bottom:508.778533pt;}
.y12d{bottom:509.188000pt;}
.yd{bottom:516.298667pt;}
.y58{bottom:516.746933pt;}
.y32{bottom:517.204533pt;}
.yee{bottom:517.219467pt;}
.y110{bottom:521.408400pt;}
.y7e{bottom:524.306133pt;}
.yb2{bottom:524.778533pt;}
.y12c{bottom:525.188000pt;}
.yc{bottom:530.698667pt;}
.y57{bottom:532.746933pt;}
.y31{bottom:533.204533pt;}
.yed{bottom:533.219467pt;}
.y7d{bottom:540.306133pt;}
.yb1{bottom:540.778533pt;}
.y10f{bottom:541.188000pt;}
.y56{bottom:548.746933pt;}
.yb{bottom:548.878133pt;}
.y30{bottom:549.204533pt;}
.yec{bottom:549.219467pt;}
.y7c{bottom:556.306133pt;}
.yb0{bottom:556.778533pt;}
.y10e{bottom:557.188000pt;}
.y12b{bottom:560.967467pt;}
.y55{bottom:564.746933pt;}
.y2f{bottom:565.204533pt;}
.yeb{bottom:565.219467pt;}
.y7b{bottom:572.306133pt;}
.yaf{bottom:572.778533pt;}
.y10d{bottom:573.188000pt;}
.y54{bottom:580.747067pt;}
.y2e{bottom:581.204533pt;}
.y7a{bottom:588.306133pt;}
.yae{bottom:588.778533pt;}
.y10c{bottom:592.967467pt;}
.y53{bottom:596.747067pt;}
.y2d{bottom:597.204533pt;}
.y79{bottom:604.306133pt;}
.yad{bottom:604.778533pt;}
.y10b{bottom:608.967467pt;}
.ya{bottom:611.278133pt;}
.y52{bottom:612.747067pt;}
.y2c{bottom:613.204533pt;}
.y78{bottom:620.306133pt;}
.yac{bottom:620.778533pt;}
.y10a{bottom:624.967467pt;}
.y9{bottom:625.678133pt;}
.y51{bottom:628.747067pt;}
.y12a{bottom:632.526533pt;}
.y77{bottom:636.306133pt;}
.y2b{bottom:636.763733pt;}
.yab{bottom:636.778533pt;}
.y50{bottom:644.747067pt;}
.y129{bottom:648.526533pt;}
.y76{bottom:652.306133pt;}
.yaa{bottom:652.778533pt;}
.y8{bottom:656.078133pt;}
.y4f{bottom:660.747067pt;}
.y128{bottom:664.526533pt;}
.y75{bottom:668.306133pt;}
.ya9{bottom:668.778533pt;}
.y4e{bottom:676.747067pt;}
.y127{bottom:680.526533pt;}
.y74{bottom:684.306133pt;}
.y2a{bottom:684.763733pt;}
.ya8{bottom:684.778533pt;}
.y4d{bottom:692.746933pt;}
.y109{bottom:696.526533pt;}
.y73{bottom:700.306133pt;}
.ya7{bottom:700.778533pt;}
.y7{bottom:702.083467pt;}
.y29{bottom:704.543200pt;}
.y4c{bottom:708.746933pt;}
.y108{bottom:712.526533pt;}
.y72{bottom:716.306133pt;}
.ya6{bottom:716.778533pt;}
.y28{bottom:718.943200pt;}
.y6{bottom:726.083467pt;}
.y4b{bottom:732.306133pt;}
.ya5{bottom:732.778533pt;}
.y27{bottom:733.343200pt;}
.y5{bottom:762.542267pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.hd{height:22.916467pt;}
.ha{height:22.917000pt;}
.h2{height:29.895833pt;}
.h8{height:33.796875pt;}
.h9{height:34.570312pt;}
.hb{height:37.125000pt;}
.he{height:37.552083pt;}
.hf{height:38.411458pt;}
.h3{height:41.765625pt;}
.hc{height:44.817708pt;}
.h6{height:45.062500pt;}
.h4{height:46.406250pt;}
.h7{height:55.687500pt;}
.h5{height:71.708333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x10{left:90.634267pt;}
.xf{left:93.057067pt;}
.xb{left:94.488133pt;}
.xc{left:98.267733pt;}
.xd{left:113.385867pt;}
.x6{left:117.888267pt;}
.x8{left:143.392533pt;}
.xa{left:144.420400pt;}
.x9{left:146.983867pt;}
.x5{left:149.337067pt;}
.x7{left:163.561067pt;}
.x11{left:169.917467pt;}
.xe{left:228.956533pt;}
.x4{left:250.644667pt;}
.x3{left:396.130533pt;}
.x2{left:473.588800pt;}
}




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