
    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_46516ea2fe55384dcb664373.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_b61d2175a5078353898d5c2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_48be185293b590247cb84f99.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_b922c94b12517db4a8e2537a.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_ad50253eb7e9db08cac17138.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_305f1fcd2e6b95a94be67cb1.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_713d3d1da115622632c6e456.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d5ec3f20a42d99b5f5f3de23.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_260e22552ae0e0cf35476eea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.600000px;}
.v8{vertical-align:-26.400000px;}
.v1{vertical-align:-16.200000px;}
.v3{vertical-align:-14.400000px;}
.ve{vertical-align:-12.000000px;}
.va{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.800000px;}
.v9{vertical-align:3.000000px;}
.vf{vertical-align:12.000000px;}
.v4{vertical-align:14.400000px;}
.vb{vertical-align:17.400000px;}
.vd{vertical-align:22.200000px;}
.vc{vertical-align:26.400000px;}
.v10{vertical-align:34.200000px;}
.v7{vertical-align:40.800000px;}
.v6{vertical-align:43.800000px;}
.ls10{letter-spacing:-3.000000px;}
.ls12{letter-spacing:-2.994000px;}
.lsf{letter-spacing:-2.988000px;}
.ls11{letter-spacing:-2.700000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.129000px;}
.ls2a{letter-spacing:-0.060000px;}
.lse{letter-spacing:-0.012000px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls1f{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.150000px;}
.ls29{letter-spacing:0.168000px;}
.ls2b{letter-spacing:0.192000px;}
.ls9{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.624000px;}
.ls7{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.560000px;}
.ls15{letter-spacing:2.004000px;}
.ls25{letter-spacing:2.022000px;}
.ls18{letter-spacing:2.256000px;}
.ls27{letter-spacing:2.682000px;}
.ls23{letter-spacing:2.760000px;}
.ls1d{letter-spacing:2.811000px;}
.ls28{letter-spacing:2.862000px;}
.ls1c{letter-spacing:2.871000px;}
.ls4{letter-spacing:3.471000px;}
.ls21{letter-spacing:3.501000px;}
.ls20{letter-spacing:3.531000px;}
.ls1a{letter-spacing:3.945000px;}
.ls24{letter-spacing:3.990000px;}
.ls1e{letter-spacing:4.101000px;}
.ls17{letter-spacing:4.605000px;}
.ls16{letter-spacing:5.550000px;}
.ls6{letter-spacing:5.610000px;}
.ls19{letter-spacing:25.125000px;}
.ls5{letter-spacing:46.800000px;}
.lsb{letter-spacing:48.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;}
}
.ws1a{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws16{word-spacing:-15.984000px;}
.ws14{word-spacing:-15.960000px;}
.ws12{word-spacing:-15.912000px;}
.wse{word-spacing:-15.864000px;}
.wsa{word-spacing:-15.840000px;}
.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;}
.ws25{word-spacing:-13.200000px;}
.ws24{word-spacing:-13.140000px;}
.wsc{word-spacing:-11.220000px;}
.wsb{word-spacing:-11.091000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws20{word-spacing:-4.260000px;}
.ws1f{word-spacing:-4.200000px;}
.ws1e{word-spacing:-3.600000px;}
.ws2a{word-spacing:-3.300000px;}
.ws11{word-spacing:-0.549000px;}
.ws26{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.024000px;}
.wsf{word-spacing:0.000000px;}
.ws17{word-spacing:0.072000px;}
.ws19{word-spacing:0.456000px;}
.ws28{word-spacing:3.180000px;}
.ws23{word-spacing:4.044000px;}
.ws10{word-spacing:4.050000px;}
.wsd{word-spacing:4.080000px;}
.ws1c{word-spacing:4.116000px;}
.ws21{word-spacing:4.140000px;}
.ws15{word-spacing:4.176000px;}
.ws1d{word-spacing:4.236000px;}
.ws29{word-spacing:5.220000px;}
.ws22{word-spacing:5.520000px;}
.ws27{word-spacing:10.242000px;}
.ws18{word-spacing:11.169000px;}
.ws1b{word-spacing:12.231000px;}
._2d{margin-left:-8.040000px;}
._9{margin-left:-4.464000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._1e{width:3.000000px;}
._c{width:4.176000px;}
._d{width:5.550000px;}
._2f{width:6.684000px;}
._f{width:7.698000px;}
._25{width:8.856000px;}
._12{width:10.512000px;}
._1d{width:12.456000px;}
._7{width:13.752000px;}
._8{width:14.976000px;}
._27{width:16.857000px;}
._2c{width:18.552000px;}
._6{width:20.076000px;}
._a{width:22.104000px;}
._b{width:23.196000px;}
._16{width:24.612000px;}
._13{width:25.704000px;}
._10{width:26.712000px;}
._1f{width:28.656000px;}
._20{width:29.838000px;}
._30{width:31.536000px;}
._26{width:33.408000px;}
._22{width:34.560000px;}
._57{width:35.700000px;}
._11{width:36.720000px;}
._e{width:38.424000px;}
._19{width:39.456000px;}
._32{width:41.070000px;}
._3b{width:42.660000px;}
._56{width:44.136000px;}
._18{width:45.360000px;}
._1a{width:47.304000px;}
._1b{width:48.360000px;}
._14{width:50.328000px;}
._15{width:51.480000px;}
._1c{width:52.704000px;}
._41{width:53.940000px;}
._49{width:55.560000px;}
._29{width:56.736000px;}
._28{width:57.744000px;}
._17{width:60.768000px;}
._4e{width:61.776000px;}
._42{width:62.940000px;}
._59{width:64.134000px;}
._3e{width:65.640000px;}
._5{width:66.744000px;}
._4{width:67.770000px;}
._4b{width:72.792000px;}
._4c{width:74.160000px;}
._3d{width:76.740000px;}
._4d{width:77.976000px;}
._58{width:79.632000px;}
._24{width:81.360000px;}
._31{width:82.800000px;}
._2b{width:85.104000px;}
._23{width:87.192000px;}
._33{width:89.784000px;}
._34{width:90.792000px;}
._52{width:93.456000px;}
._53{width:94.680000px;}
._37{width:96.660000px;}
._40{width:97.920000px;}
._54{width:99.792000px;}
._3c{width:111.900000px;}
._44{width:113.100000px;}
._39{width:116.160000px;}
._45{width:118.260000px;}
._3f{width:119.700000px;}
._48{width:122.700000px;}
._21{width:124.344000px;}
._2e{width:129.096000px;}
._47{width:130.260000px;}
._4a{width:131.328000px;}
._43{width:145.560000px;}
._4f{width:147.600000px;}
._51{width:159.696000px;}
._35{width:169.008000px;}
._3a{width:183.360000px;}
._2a{width:185.976000px;}
._46{width:187.380000px;}
._55{width:205.200000px;}
._38{width:213.060000px;}
._36{width:216.480000px;}
._50{width:246.456000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.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;}
.yc8{bottom:3.300000px;}
.y1d{bottom:3.900000px;}
.y1f{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.yd7{bottom:20.542500px;}
.y6{bottom:20.550000px;}
.yfe{bottom:20.580000px;}
.yda{bottom:20.850000px;}
.yd9{bottom:21.150000px;}
.y1c{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.ye4{bottom:37.500000px;}
.yd6{bottom:37.792500px;}
.yc7{bottom:37.800000px;}
.yfd{bottom:37.830000px;}
.y111{bottom:39.157500px;}
.y1b{bottom:45.300000px;}
.yf5{bottom:54.300000px;}
.ye3{bottom:54.750000px;}
.y10a{bottom:55.042500px;}
.yc6{bottom:55.050000px;}
.yd5{bottom:55.057500px;}
.yfc{bottom:55.080000px;}
.y110{bottom:56.407500px;}
.y3{bottom:57.637500px;}
.y1a{bottom:66.000000px;}
.yf4{bottom:71.550000px;}
.ye2{bottom:72.000000px;}
.y109{bottom:72.292500px;}
.ye8{bottom:72.300000px;}
.yd4{bottom:72.307500px;}
.yfb{bottom:72.330000px;}
.y10f{bottom:73.657500px;}
.y2{bottom:81.637500px;}
.y19{bottom:86.700000px;}
.yf3{bottom:88.800000px;}
.ye1{bottom:89.250000px;}
.ye7{bottom:89.550000px;}
.yd3{bottom:89.557500px;}
.yfa{bottom:89.580000px;}
.y10e{bottom:90.907500px;}
.yd8{bottom:105.937500px;}
.ye0{bottom:106.530000px;}
.yef{bottom:106.800000px;}
.yd2{bottom:106.807500px;}
.ye6{bottom:106.830000px;}
.y18{bottom:107.400000px;}
.y10d{bottom:108.157500px;}
.y135{bottom:109.987500px;}
.y81{bottom:111.337500px;}
.y3c{bottom:115.837500px;}
.yab{bottom:120.787500px;}
.ydf{bottom:123.780000px;}
.yee{bottom:124.050000px;}
.yd1{bottom:124.057500px;}
.ye5{bottom:124.080000px;}
.y108{bottom:124.657500px;}
.y10c{bottom:125.407500px;}
.y159{bottom:126.637500px;}
.yff{bottom:127.087500px;}
.y17{bottom:128.100000px;}
.y134{bottom:133.837500px;}
.y55{bottom:134.737500px;}
.y80{bottom:135.637500px;}
.y3b{bottom:139.687500px;}
.yde{bottom:141.030000px;}
.yed{bottom:141.300000px;}
.yd0{bottom:141.307500px;}
.ydc{bottom:141.330000px;}
.y107{bottom:141.607500px;}
.yc9{bottom:141.787500px;}
.y10b{bottom:142.657500px;}
.yaa{bottom:144.637500px;}
.y158{bottom:150.495000px;}
.y133{bottom:157.680000px;}
.ydd{bottom:158.280000px;}
.ycf{bottom:158.542500px;}
.yec{bottom:158.550000px;}
.y54{bottom:158.580000px;}
.yf2{bottom:158.595000px;}
.y106{bottom:159.157500px;}
.y104{bottom:159.742500px;}
.y7f{bottom:159.795000px;}
.y3a{bottom:163.395000px;}
.ya9{bottom:168.495000px;}
.y157{bottom:174.345000px;}
.yce{bottom:175.792500px;}
.yeb{bottom:175.800000px;}
.yf9{bottom:175.830000px;}
.yf1{bottom:175.845000px;}
.y105{bottom:176.707500px;}
.y103{bottom:176.992500px;}
.y132{bottom:181.395000px;}
.y53{bottom:182.295000px;}
.y7e{bottom:183.945000px;}
.y39{bottom:187.245000px;}
.ya8{bottom:192.195000px;}
.ycd{bottom:193.042500px;}
.yea{bottom:193.050000px;}
.yf8{bottom:193.080000px;}
.y102{bottom:194.242500px;}
.y156{bottom:198.195000px;}
.y131{bottom:205.245000px;}
.y52{bottom:207.495000px;}
.y7d{bottom:207.795000px;}
.ycc{bottom:210.307500px;}
.yf7{bottom:210.330000px;}
.y38{bottom:211.095000px;}
.y101{bottom:211.507500px;}
.ya7{bottom:216.045000px;}
.y155{bottom:221.895000px;}
.ycb{bottom:227.557500px;}
.y100{bottom:228.757500px;}
.y130{bottom:228.945000px;}
.y51{bottom:231.195000px;}
.y7c{bottom:231.795000px;}
.y37{bottom:234.795000px;}
.ya6{bottom:239.880000px;}
.yca{bottom:244.837500px;}
.y154{bottom:245.745000px;}
.y12f{bottom:254.145000px;}
.y50{bottom:255.195000px;}
.y7b{bottom:255.795000px;}
.y36{bottom:258.645000px;}
.ya5{bottom:263.580000px;}
.y153{bottom:269.595000px;}
.y12e{bottom:277.995000px;}
.y4f{bottom:279.495000px;}
.y7a{bottom:279.630000px;}
.y35{bottom:282.495000px;}
.ya4{bottom:287.445000px;}
.y152{bottom:293.295000px;}
.y12d{bottom:301.695000px;}
.y4e{bottom:303.795000px;}
.y79{bottom:304.695000px;}
.y34{bottom:306.195000px;}
.ya3{bottom:311.295000px;}
.y151{bottom:317.130000px;}
.y12c{bottom:325.545000px;}
.y4d{bottom:327.795000px;}
.y78{bottom:329.895000px;}
.y33{bottom:330.045000px;}
.ya2{bottom:334.995000px;}
.y150{bottom:340.995000px;}
.y12b{bottom:349.245000px;}
.y4c{bottom:351.645000px;}
.y77{bottom:353.595000px;}
.y32{bottom:353.880000px;}
.ya1{bottom:358.845000px;}
.y14f{bottom:364.695000px;}
.yf6{bottom:370.545000px;}
.y12a{bottom:374.445000px;}
.y4b{bottom:375.495000px;}
.y76{bottom:377.445000px;}
.y31{bottom:377.595000px;}
.ya0{bottom:382.725000px;}
.y14e{bottom:388.575000px;}
.y129{bottom:398.325000px;}
.y4a{bottom:399.225000px;}
.y75{bottom:401.325000px;}
.y30{bottom:401.475000px;}
.y9f{bottom:406.425000px;}
.y14d{bottom:412.425000px;}
.y128{bottom:422.025000px;}
.y49{bottom:423.075000px;}
.y74{bottom:425.025000px;}
.y2f{bottom:425.325000px;}
.y9e{bottom:430.275000px;}
.y14c{bottom:436.125000px;}
.y127{bottom:445.875000px;}
.y48{bottom:446.925000px;}
.y73{bottom:448.875000px;}
.y2e{bottom:449.025000px;}
.y9d{bottom:454.125000px;}
.y14b{bottom:459.975000px;}
.y126{bottom:469.725000px;}
.y47{bottom:470.625000px;}
.y72{bottom:472.725000px;}
.y2d{bottom:472.875000px;}
.y9c{bottom:478.125000px;}
.y14a{bottom:483.825000px;}
.y125{bottom:493.425000px;}
.y46{bottom:494.475000px;}
.y71{bottom:496.425000px;}
.y2c{bottom:496.725000px;}
.yc5{bottom:501.825000px;}
.y9b{bottom:503.025000px;}
.y149{bottom:507.525000px;}
.y45{bottom:518.325000px;}
.y124{bottom:518.625000px;}
.y70{bottom:520.275000px;}
.y2b{bottom:520.575000px;}
.yc4{bottom:525.675000px;}
.y9a{bottom:527.025000px;}
.y148{bottom:531.375000px;}
.y123{bottom:542.475000px;}
.y44{bottom:542.625000px;}
.y6f{bottom:544.125000px;}
.y2a{bottom:544.275000px;}
.yc3{bottom:549.525000px;}
.y99{bottom:550.875000px;}
.y147{bottom:555.225000px;}
.y122{bottom:566.175000px;}
.y43{bottom:566.775000px;}
.y29{bottom:568.125000px;}
.yc2{bottom:573.225000px;}
.y98{bottom:574.725000px;}
.y146{bottom:579.075000px;}
.y121{bottom:590.025000px;}
.y42{bottom:590.475000px;}
.y28{bottom:591.975000px;}
.y6e{bottom:592.275000px;}
.yf0{bottom:595.575000px;}
.yc1{bottom:597.075000px;}
.y97{bottom:598.425000px;}
.y145{bottom:602.775000px;}
.y120{bottom:613.875000px;}
.y41{bottom:614.325000px;}
.y27{bottom:615.675000px;}
.y6d{bottom:616.425000px;}
.yc0{bottom:620.925000px;}
.y96{bottom:622.275000px;}
.y144{bottom:626.625000px;}
.y11f{bottom:637.575000px;}
.y40{bottom:638.325000px;}
.y26{bottom:639.525000px;}
.y6c{bottom:640.425000px;}
.ybf{bottom:644.625000px;}
.y95{bottom:646.275000px;}
.y143{bottom:650.475000px;}
.y11e{bottom:661.425000px;}
.y3f{bottom:662.325000px;}
.y25{bottom:663.375000px;}
.y6b{bottom:664.425000px;}
.ybe{bottom:668.475000px;}
.y94{bottom:670.275000px;}
.y142{bottom:674.175000px;}
.y3d{bottom:686.325000px;}
.y11d{bottom:686.475000px;}
.y24{bottom:687.075000px;}
.y6a{bottom:688.275000px;}
.ybd{bottom:692.325000px;}
.y3e{bottom:693.225000px;}
.y93{bottom:694.125000px;}
.y141{bottom:698.025000px;}
.y11c{bottom:710.325000px;}
.y23{bottom:710.925000px;}
.y69{bottom:712.125000px;}
.ybc{bottom:716.025000px;}
.y92{bottom:717.975000px;}
.y140{bottom:721.875000px;}
.y11b{bottom:734.175000px;}
.y22{bottom:734.775000px;}
.y68{bottom:735.975000px;}
.ybb{bottom:739.920000px;}
.y91{bottom:741.720000px;}
.y13f{bottom:745.620000px;}
.y11a{bottom:757.920000px;}
.y67{bottom:759.720000px;}
.yba{bottom:764.970000px;}
.y90{bottom:765.570000px;}
.y21{bottom:767.520000px;}
.y13e{bottom:769.470000px;}
.y119{bottom:781.770000px;}
.y66{bottom:783.570000px;}
.y20{bottom:784.320000px;}
.ye9{bottom:786.120000px;}
.y8f{bottom:789.420000px;}
.yb9{bottom:790.020000px;}
.y13d{bottom:793.320000px;}
.y118{bottom:805.620000px;}
.y65{bottom:807.420000px;}
.y8e{bottom:813.270000px;}
.yb8{bottom:815.220000px;}
.y13c{bottom:817.020000px;}
.y1e{bottom:825.705000px;}
.y117{bottom:829.320000px;}
.y64{bottom:831.120000px;}
.y8d{bottom:836.970000px;}
.yb7{bottom:839.070000px;}
.y13b{bottom:840.870000px;}
.y16{bottom:846.420000px;}
.y116{bottom:853.170000px;}
.y63{bottom:854.970000px;}
.y8c{bottom:860.820000px;}
.yb6{bottom:862.770000px;}
.y13a{bottom:864.720000px;}
.y115{bottom:877.020000px;}
.y62{bottom:878.970000px;}
.y8b{bottom:884.520000px;}
.yb5{bottom:886.620000px;}
.y139{bottom:888.420000px;}
.y114{bottom:900.720000px;}
.y61{bottom:903.270000px;}
.y8a{bottom:909.720000px;}
.yb4{bottom:910.470000px;}
.y138{bottom:912.270000px;}
.y60{bottom:923.520000px;}
.y113{bottom:924.570000px;}
.y89{bottom:933.420000px;}
.yb3{bottom:934.170000px;}
.y5f{bottom:934.470000px;}
.y137{bottom:936.120000px;}
.y112{bottom:942.120000px;}
.yb2{bottom:958.020000px;}
.y5e{bottom:958.620000px;}
.y136{bottom:959.970000px;}
.yb1{bottom:981.870000px;}
.y5d{bottom:982.470000px;}
.y88{bottom:983.670000px;}
.ydb{bottom:993.870000px;}
.y15{bottom:994.920000px;}
.yb0{bottom:1005.570000px;}
.y5c{bottom:1006.170000px;}
.y87{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yaf{bottom:1029.420000px;}
.y5b{bottom:1030.020000px;}
.y86{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yae{bottom:1053.420000px;}
.y5a{bottom:1053.870000px;}
.y85{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y59{bottom:1077.570000px;}
.y84{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y58{bottom:1101.450000px;}
.y83{bottom:1102.800000px;}
.y57{bottom:1125.300000px;}
.yad{bottom:1125.750000px;}
.y82{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y56{bottom:1149.000000px;}
.yac{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h1c{height:35.100000px;}
.h10{height:41.400000px;}
.h1b{height:42.070312px;}
.h18{height:42.333984px;}
.h12{height:43.064063px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hb{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h23{height:56.486719px;}
.h16{height:58.429688px;}
.h4{height:58.886719px;}
.h19{height:60.468750px;}
.h14{height:60.679688px;}
.h1d{height:63.420703px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h17{height:69.000000px;}
.h11{height:70.628906px;}
.hc{height:70.664062px;}
.ha{height:72.562500px;}
.h13{height:74.004654px;}
.h2{height:82.441406px;}
.h15{height:114.464062px;}
.he{height:144.900000px;}
.h1e{height:172.530000px;}
.h20{height:189.780000px;}
.h1f{height:207.000000px;}
.h21{height:224.280000px;}
.h22{height:242.700000px;}
.h1a{height:258.780000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wb{width:90.600000px;}
.w9{width:90.637500px;}
.we{width:97.500000px;}
.wc{width:97.537500px;}
.wa{width:110.700000px;}
.wd{width:110.887500px;}
.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;}
.x1a{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1b{left:95.699987px;}
.x19{left:100.200000px;}
.x18{left:104.700000px;}
.xd{left:106.980000px;}
.x24{left:118.049987px;}
.x6{left:121.687500px;}
.x22{left:122.737487px;}
.xa{left:128.130000px;}
.x10{left:131.587487px;}
.x2b{left:134.737500px;}
.x23{left:149.737487px;}
.x2a{left:157.679987px;}
.x29{left:168.779987px;}
.x25{left:180.629987px;}
.x26{left:182.729987px;}
.x2c{left:246.345000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2d{left:337.695000px;}
.x11{left:392.024987px;}
.x1d{left:457.274987px;}
.x1c{left:510.374987px;}
.x20{left:537.374987px;}
.x2e{left:549.375000px;}
.x21{left:564.374987px;}
.x13{left:565.874987px;}
.x12{left:567.524987px;}
.x16{left:576.074987px;}
.x27{left:609.524987px;}
.x1f{left:612.074987px;}
.x28{left:615.824987px;}
.xc{left:625.425000px;}
.x2f{left:661.020000px;}
.x14{left:691.169987px;}
.x15{left:697.154987px;}
.xf{left:713.655000px;}
.x30{left:752.370000px;}
.x2{left:819.119987px;}
.x1e{left:827.819987px;}
.x17{left:850.619987px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v8{vertical-align:-23.466667pt;}
.v1{vertical-align:-14.400000pt;}
.v3{vertical-align:-12.800000pt;}
.ve{vertical-align:-10.666667pt;}
.va{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.600000pt;}
.v9{vertical-align:2.666667pt;}
.vf{vertical-align:10.666667pt;}
.v4{vertical-align:12.800000pt;}
.vb{vertical-align:15.466667pt;}
.vd{vertical-align:19.733333pt;}
.vc{vertical-align:23.466667pt;}
.v10{vertical-align:30.400000pt;}
.v7{vertical-align:36.266667pt;}
.v6{vertical-align:38.933333pt;}
.ls10{letter-spacing:-2.666667pt;}
.ls12{letter-spacing:-2.661333pt;}
.lsf{letter-spacing:-2.656000pt;}
.ls11{letter-spacing:-2.400000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.114667pt;}
.ls2a{letter-spacing:-0.053333pt;}
.lse{letter-spacing:-0.010667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1f{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.133333pt;}
.ls29{letter-spacing:0.149333pt;}
.ls2b{letter-spacing:0.170667pt;}
.ls9{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.554667pt;}
.ls7{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.386667pt;}
.ls15{letter-spacing:1.781333pt;}
.ls25{letter-spacing:1.797333pt;}
.ls18{letter-spacing:2.005333pt;}
.ls27{letter-spacing:2.384000pt;}
.ls23{letter-spacing:2.453333pt;}
.ls1d{letter-spacing:2.498667pt;}
.ls28{letter-spacing:2.544000pt;}
.ls1c{letter-spacing:2.552000pt;}
.ls4{letter-spacing:3.085333pt;}
.ls21{letter-spacing:3.112000pt;}
.ls20{letter-spacing:3.138667pt;}
.ls1a{letter-spacing:3.506667pt;}
.ls24{letter-spacing:3.546667pt;}
.ls1e{letter-spacing:3.645333pt;}
.ls17{letter-spacing:4.093333pt;}
.ls16{letter-spacing:4.933333pt;}
.ls6{letter-spacing:4.986667pt;}
.ls19{letter-spacing:22.333333pt;}
.ls5{letter-spacing:41.600000pt;}
.lsb{letter-spacing:43.008000pt;}
.ws1a{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.208000pt;}
.ws14{word-spacing:-14.186667pt;}
.ws12{word-spacing:-14.144000pt;}
.wse{word-spacing:-14.101333pt;}
.wsa{word-spacing:-14.080000pt;}
.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;}
.ws25{word-spacing:-11.733333pt;}
.ws24{word-spacing:-11.680000pt;}
.wsc{word-spacing:-9.973333pt;}
.wsb{word-spacing:-9.858667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws20{word-spacing:-3.786667pt;}
.ws1f{word-spacing:-3.733333pt;}
.ws1e{word-spacing:-3.200000pt;}
.ws2a{word-spacing:-2.933333pt;}
.ws11{word-spacing:-0.488000pt;}
.ws26{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.021333pt;}
.wsf{word-spacing:0.000000pt;}
.ws17{word-spacing:0.064000pt;}
.ws19{word-spacing:0.405333pt;}
.ws28{word-spacing:2.826667pt;}
.ws23{word-spacing:3.594667pt;}
.ws10{word-spacing:3.600000pt;}
.wsd{word-spacing:3.626667pt;}
.ws1c{word-spacing:3.658667pt;}
.ws21{word-spacing:3.680000pt;}
.ws15{word-spacing:3.712000pt;}
.ws1d{word-spacing:3.765333pt;}
.ws29{word-spacing:4.640000pt;}
.ws22{word-spacing:4.906667pt;}
.ws27{word-spacing:9.104000pt;}
.ws18{word-spacing:9.928000pt;}
.ws1b{word-spacing:10.872000pt;}
._2d{margin-left:-7.146667pt;}
._9{margin-left:-3.968000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._1e{width:2.666667pt;}
._c{width:3.712000pt;}
._d{width:4.933333pt;}
._2f{width:5.941333pt;}
._f{width:6.842667pt;}
._25{width:7.872000pt;}
._12{width:9.344000pt;}
._1d{width:11.072000pt;}
._7{width:12.224000pt;}
._8{width:13.312000pt;}
._27{width:14.984000pt;}
._2c{width:16.490667pt;}
._6{width:17.845333pt;}
._a{width:19.648000pt;}
._b{width:20.618667pt;}
._16{width:21.877333pt;}
._13{width:22.848000pt;}
._10{width:23.744000pt;}
._1f{width:25.472000pt;}
._20{width:26.522667pt;}
._30{width:28.032000pt;}
._26{width:29.696000pt;}
._22{width:30.720000pt;}
._57{width:31.733333pt;}
._11{width:32.640000pt;}
._e{width:34.154667pt;}
._19{width:35.072000pt;}
._32{width:36.506667pt;}
._3b{width:37.920000pt;}
._56{width:39.232000pt;}
._18{width:40.320000pt;}
._1a{width:42.048000pt;}
._1b{width:42.986667pt;}
._14{width:44.736000pt;}
._15{width:45.760000pt;}
._1c{width:46.848000pt;}
._41{width:47.946667pt;}
._49{width:49.386667pt;}
._29{width:50.432000pt;}
._28{width:51.328000pt;}
._17{width:54.016000pt;}
._4e{width:54.912000pt;}
._42{width:55.946667pt;}
._59{width:57.008000pt;}
._3e{width:58.346667pt;}
._5{width:59.328000pt;}
._4{width:60.240000pt;}
._4b{width:64.704000pt;}
._4c{width:65.920000pt;}
._3d{width:68.213333pt;}
._4d{width:69.312000pt;}
._58{width:70.784000pt;}
._24{width:72.320000pt;}
._31{width:73.600000pt;}
._2b{width:75.648000pt;}
._23{width:77.504000pt;}
._33{width:79.808000pt;}
._34{width:80.704000pt;}
._52{width:83.072000pt;}
._53{width:84.160000pt;}
._37{width:85.920000pt;}
._40{width:87.040000pt;}
._54{width:88.704000pt;}
._3c{width:99.466667pt;}
._44{width:100.533333pt;}
._39{width:103.253333pt;}
._45{width:105.120000pt;}
._3f{width:106.400000pt;}
._48{width:109.066667pt;}
._21{width:110.528000pt;}
._2e{width:114.752000pt;}
._47{width:115.786667pt;}
._4a{width:116.736000pt;}
._43{width:129.386667pt;}
._4f{width:131.200000pt;}
._51{width:141.952000pt;}
._35{width:150.229333pt;}
._3a{width:162.986667pt;}
._2a{width:165.312000pt;}
._46{width:166.560000pt;}
._55{width:182.400000pt;}
._38{width:189.386667pt;}
._36{width:192.426667pt;}
._50{width:219.072000pt;}
.fs7{font-size:37.333333pt;}
.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;}
.yc8{bottom:2.933333pt;}
.y1d{bottom:3.466667pt;}
.y1f{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.yd7{bottom:18.260000pt;}
.y6{bottom:18.266667pt;}
.yfe{bottom:18.293333pt;}
.yda{bottom:18.533333pt;}
.yd9{bottom:18.800000pt;}
.y1c{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.ye4{bottom:33.333333pt;}
.yd6{bottom:33.593333pt;}
.yc7{bottom:33.600000pt;}
.yfd{bottom:33.626667pt;}
.y111{bottom:34.806667pt;}
.y1b{bottom:40.266667pt;}
.yf5{bottom:48.266667pt;}
.ye3{bottom:48.666667pt;}
.y10a{bottom:48.926667pt;}
.yc6{bottom:48.933333pt;}
.yd5{bottom:48.940000pt;}
.yfc{bottom:48.960000pt;}
.y110{bottom:50.140000pt;}
.y3{bottom:51.233333pt;}
.y1a{bottom:58.666667pt;}
.yf4{bottom:63.600000pt;}
.ye2{bottom:64.000000pt;}
.y109{bottom:64.260000pt;}
.ye8{bottom:64.266667pt;}
.yd4{bottom:64.273333pt;}
.yfb{bottom:64.293333pt;}
.y10f{bottom:65.473333pt;}
.y2{bottom:72.566667pt;}
.y19{bottom:77.066667pt;}
.yf3{bottom:78.933333pt;}
.ye1{bottom:79.333333pt;}
.ye7{bottom:79.600000pt;}
.yd3{bottom:79.606667pt;}
.yfa{bottom:79.626667pt;}
.y10e{bottom:80.806667pt;}
.yd8{bottom:94.166667pt;}
.ye0{bottom:94.693333pt;}
.yef{bottom:94.933333pt;}
.yd2{bottom:94.940000pt;}
.ye6{bottom:94.960000pt;}
.y18{bottom:95.466667pt;}
.y10d{bottom:96.140000pt;}
.y135{bottom:97.766667pt;}
.y81{bottom:98.966667pt;}
.y3c{bottom:102.966667pt;}
.yab{bottom:107.366667pt;}
.ydf{bottom:110.026667pt;}
.yee{bottom:110.266667pt;}
.yd1{bottom:110.273333pt;}
.ye5{bottom:110.293333pt;}
.y108{bottom:110.806667pt;}
.y10c{bottom:111.473333pt;}
.y159{bottom:112.566667pt;}
.yff{bottom:112.966667pt;}
.y17{bottom:113.866667pt;}
.y134{bottom:118.966667pt;}
.y55{bottom:119.766667pt;}
.y80{bottom:120.566667pt;}
.y3b{bottom:124.166667pt;}
.yde{bottom:125.360000pt;}
.yed{bottom:125.600000pt;}
.yd0{bottom:125.606667pt;}
.ydc{bottom:125.626667pt;}
.y107{bottom:125.873333pt;}
.yc9{bottom:126.033333pt;}
.y10b{bottom:126.806667pt;}
.yaa{bottom:128.566667pt;}
.y158{bottom:133.773333pt;}
.y133{bottom:140.160000pt;}
.ydd{bottom:140.693333pt;}
.ycf{bottom:140.926667pt;}
.yec{bottom:140.933333pt;}
.y54{bottom:140.960000pt;}
.yf2{bottom:140.973333pt;}
.y106{bottom:141.473333pt;}
.y104{bottom:141.993333pt;}
.y7f{bottom:142.040000pt;}
.y3a{bottom:145.240000pt;}
.ya9{bottom:149.773333pt;}
.y157{bottom:154.973333pt;}
.yce{bottom:156.260000pt;}
.yeb{bottom:156.266667pt;}
.yf9{bottom:156.293333pt;}
.yf1{bottom:156.306667pt;}
.y105{bottom:157.073333pt;}
.y103{bottom:157.326667pt;}
.y132{bottom:161.240000pt;}
.y53{bottom:162.040000pt;}
.y7e{bottom:163.506667pt;}
.y39{bottom:166.440000pt;}
.ya8{bottom:170.840000pt;}
.ycd{bottom:171.593333pt;}
.yea{bottom:171.600000pt;}
.yf8{bottom:171.626667pt;}
.y102{bottom:172.660000pt;}
.y156{bottom:176.173333pt;}
.y131{bottom:182.440000pt;}
.y52{bottom:184.440000pt;}
.y7d{bottom:184.706667pt;}
.ycc{bottom:186.940000pt;}
.yf7{bottom:186.960000pt;}
.y38{bottom:187.640000pt;}
.y101{bottom:188.006667pt;}
.ya7{bottom:192.040000pt;}
.y155{bottom:197.240000pt;}
.ycb{bottom:202.273333pt;}
.y100{bottom:203.340000pt;}
.y130{bottom:203.506667pt;}
.y51{bottom:205.506667pt;}
.y7c{bottom:206.040000pt;}
.y37{bottom:208.706667pt;}
.ya6{bottom:213.226667pt;}
.yca{bottom:217.633333pt;}
.y154{bottom:218.440000pt;}
.y12f{bottom:225.906667pt;}
.y50{bottom:226.840000pt;}
.y7b{bottom:227.373333pt;}
.y36{bottom:229.906667pt;}
.ya5{bottom:234.293333pt;}
.y153{bottom:239.640000pt;}
.y12e{bottom:247.106667pt;}
.y4f{bottom:248.440000pt;}
.y7a{bottom:248.560000pt;}
.y35{bottom:251.106667pt;}
.ya4{bottom:255.506667pt;}
.y152{bottom:260.706667pt;}
.y12d{bottom:268.173333pt;}
.y4e{bottom:270.040000pt;}
.y79{bottom:270.840000pt;}
.y34{bottom:272.173333pt;}
.ya3{bottom:276.706667pt;}
.y151{bottom:281.893333pt;}
.y12c{bottom:289.373333pt;}
.y4d{bottom:291.373333pt;}
.y78{bottom:293.240000pt;}
.y33{bottom:293.373333pt;}
.ya2{bottom:297.773333pt;}
.y150{bottom:303.106667pt;}
.y12b{bottom:310.440000pt;}
.y4c{bottom:312.573333pt;}
.y77{bottom:314.306667pt;}
.y32{bottom:314.560000pt;}
.ya1{bottom:318.973333pt;}
.y14f{bottom:324.173333pt;}
.yf6{bottom:329.373333pt;}
.y12a{bottom:332.840000pt;}
.y4b{bottom:333.773333pt;}
.y76{bottom:335.506667pt;}
.y31{bottom:335.640000pt;}
.ya0{bottom:340.200000pt;}
.y14e{bottom:345.400000pt;}
.y129{bottom:354.066667pt;}
.y4a{bottom:354.866667pt;}
.y75{bottom:356.733333pt;}
.y30{bottom:356.866667pt;}
.y9f{bottom:361.266667pt;}
.y14d{bottom:366.600000pt;}
.y128{bottom:375.133333pt;}
.y49{bottom:376.066667pt;}
.y74{bottom:377.800000pt;}
.y2f{bottom:378.066667pt;}
.y9e{bottom:382.466667pt;}
.y14c{bottom:387.666667pt;}
.y127{bottom:396.333333pt;}
.y48{bottom:397.266667pt;}
.y73{bottom:399.000000pt;}
.y2e{bottom:399.133333pt;}
.y9d{bottom:403.666667pt;}
.y14b{bottom:408.866667pt;}
.y126{bottom:417.533333pt;}
.y47{bottom:418.333333pt;}
.y72{bottom:420.200000pt;}
.y2d{bottom:420.333333pt;}
.y9c{bottom:425.000000pt;}
.y14a{bottom:430.066667pt;}
.y125{bottom:438.600000pt;}
.y46{bottom:439.533333pt;}
.y71{bottom:441.266667pt;}
.y2c{bottom:441.533333pt;}
.yc5{bottom:446.066667pt;}
.y9b{bottom:447.133333pt;}
.y149{bottom:451.133333pt;}
.y45{bottom:460.733333pt;}
.y124{bottom:461.000000pt;}
.y70{bottom:462.466667pt;}
.y2b{bottom:462.733333pt;}
.yc4{bottom:467.266667pt;}
.y9a{bottom:468.466667pt;}
.y148{bottom:472.333333pt;}
.y123{bottom:482.200000pt;}
.y44{bottom:482.333333pt;}
.y6f{bottom:483.666667pt;}
.y2a{bottom:483.800000pt;}
.yc3{bottom:488.466667pt;}
.y99{bottom:489.666667pt;}
.y147{bottom:493.533333pt;}
.y122{bottom:503.266667pt;}
.y43{bottom:503.800000pt;}
.y29{bottom:505.000000pt;}
.yc2{bottom:509.533333pt;}
.y98{bottom:510.866667pt;}
.y146{bottom:514.733333pt;}
.y121{bottom:524.466667pt;}
.y42{bottom:524.866667pt;}
.y28{bottom:526.200000pt;}
.y6e{bottom:526.466667pt;}
.yf0{bottom:529.400000pt;}
.yc1{bottom:530.733333pt;}
.y97{bottom:531.933333pt;}
.y145{bottom:535.800000pt;}
.y120{bottom:545.666667pt;}
.y41{bottom:546.066667pt;}
.y27{bottom:547.266667pt;}
.y6d{bottom:547.933333pt;}
.yc0{bottom:551.933333pt;}
.y96{bottom:553.133333pt;}
.y144{bottom:557.000000pt;}
.y11f{bottom:566.733333pt;}
.y40{bottom:567.400000pt;}
.y26{bottom:568.466667pt;}
.y6c{bottom:569.266667pt;}
.ybf{bottom:573.000000pt;}
.y95{bottom:574.466667pt;}
.y143{bottom:578.200000pt;}
.y11e{bottom:587.933333pt;}
.y3f{bottom:588.733333pt;}
.y25{bottom:589.666667pt;}
.y6b{bottom:590.600000pt;}
.ybe{bottom:594.200000pt;}
.y94{bottom:595.800000pt;}
.y142{bottom:599.266667pt;}
.y3d{bottom:610.066667pt;}
.y11d{bottom:610.200000pt;}
.y24{bottom:610.733333pt;}
.y6a{bottom:611.800000pt;}
.ybd{bottom:615.400000pt;}
.y3e{bottom:616.200000pt;}
.y93{bottom:617.000000pt;}
.y141{bottom:620.466667pt;}
.y11c{bottom:631.400000pt;}
.y23{bottom:631.933333pt;}
.y69{bottom:633.000000pt;}
.ybc{bottom:636.466667pt;}
.y92{bottom:638.200000pt;}
.y140{bottom:641.666667pt;}
.y11b{bottom:652.600000pt;}
.y22{bottom:653.133333pt;}
.y68{bottom:654.200000pt;}
.ybb{bottom:657.706667pt;}
.y91{bottom:659.306667pt;}
.y13f{bottom:662.773333pt;}
.y11a{bottom:673.706667pt;}
.y67{bottom:675.306667pt;}
.yba{bottom:679.973333pt;}
.y90{bottom:680.506667pt;}
.y21{bottom:682.240000pt;}
.y13e{bottom:683.973333pt;}
.y119{bottom:694.906667pt;}
.y66{bottom:696.506667pt;}
.y20{bottom:697.173333pt;}
.ye9{bottom:698.773333pt;}
.y8f{bottom:701.706667pt;}
.yb9{bottom:702.240000pt;}
.y13d{bottom:705.173333pt;}
.y118{bottom:716.106667pt;}
.y65{bottom:717.706667pt;}
.y8e{bottom:722.906667pt;}
.yb8{bottom:724.640000pt;}
.y13c{bottom:726.240000pt;}
.y1e{bottom:733.960000pt;}
.y117{bottom:737.173333pt;}
.y64{bottom:738.773333pt;}
.y8d{bottom:743.973333pt;}
.yb7{bottom:745.840000pt;}
.y13b{bottom:747.440000pt;}
.y16{bottom:752.373333pt;}
.y116{bottom:758.373333pt;}
.y63{bottom:759.973333pt;}
.y8c{bottom:765.173333pt;}
.yb6{bottom:766.906667pt;}
.y13a{bottom:768.640000pt;}
.y115{bottom:779.573333pt;}
.y62{bottom:781.306667pt;}
.y8b{bottom:786.240000pt;}
.yb5{bottom:788.106667pt;}
.y139{bottom:789.706667pt;}
.y114{bottom:800.640000pt;}
.y61{bottom:802.906667pt;}
.y8a{bottom:808.640000pt;}
.yb4{bottom:809.306667pt;}
.y138{bottom:810.906667pt;}
.y60{bottom:820.906667pt;}
.y113{bottom:821.840000pt;}
.y89{bottom:829.706667pt;}
.yb3{bottom:830.373333pt;}
.y5f{bottom:830.640000pt;}
.y137{bottom:832.106667pt;}
.y112{bottom:837.440000pt;}
.yb2{bottom:851.573333pt;}
.y5e{bottom:852.106667pt;}
.y136{bottom:853.306667pt;}
.yb1{bottom:872.773333pt;}
.y5d{bottom:873.306667pt;}
.y88{bottom:874.373333pt;}
.ydb{bottom:883.440000pt;}
.y15{bottom:884.373333pt;}
.yb0{bottom:893.840000pt;}
.y5c{bottom:894.373333pt;}
.y87{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yaf{bottom:915.040000pt;}
.y5b{bottom:915.573333pt;}
.y86{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yae{bottom:936.373333pt;}
.y5a{bottom:936.773333pt;}
.y85{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y59{bottom:957.840000pt;}
.y84{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y58{bottom:979.066667pt;}
.y83{bottom:980.266667pt;}
.y57{bottom:1000.266667pt;}
.yad{bottom:1000.666667pt;}
.y82{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y56{bottom:1021.333333pt;}
.yac{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h1c{height:31.200000pt;}
.h10{height:36.800000pt;}
.h1b{height:37.395833pt;}
.h18{height:37.630208pt;}
.h12{height:38.279167pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hb{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h23{height:50.210417pt;}
.h16{height:51.937500pt;}
.h4{height:52.343750pt;}
.h19{height:53.750000pt;}
.h14{height:53.937500pt;}
.h1d{height:56.373958pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h17{height:61.333333pt;}
.h11{height:62.781250pt;}
.hc{height:62.812500pt;}
.ha{height:64.500000pt;}
.h13{height:65.781915pt;}
.h2{height:73.281250pt;}
.h15{height:101.745833pt;}
.he{height:128.800000pt;}
.h1e{height:153.360000pt;}
.h20{height:168.693333pt;}
.h1f{height:184.000000pt;}
.h21{height:199.360000pt;}
.h22{height:215.733333pt;}
.h1a{height:230.026667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wb{width:80.533333pt;}
.w9{width:80.566667pt;}
.we{width:86.666667pt;}
.wc{width:86.700000pt;}
.wa{width:98.400000pt;}
.wd{width:98.566667pt;}
.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;}
.x1a{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1b{left:85.066655pt;}
.x19{left:89.066667pt;}
.x18{left:93.066667pt;}
.xd{left:95.093333pt;}
.x24{left:104.933322pt;}
.x6{left:108.166667pt;}
.x22{left:109.099988pt;}
.xa{left:113.893333pt;}
.x10{left:116.966655pt;}
.x2b{left:119.766667pt;}
.x23{left:133.099988pt;}
.x2a{left:140.159988pt;}
.x29{left:150.026655pt;}
.x25{left:160.559988pt;}
.x26{left:162.426655pt;}
.x2c{left:218.973333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2d{left:300.173333pt;}
.x11{left:348.466655pt;}
.x1d{left:406.466655pt;}
.x1c{left:453.666655pt;}
.x20{left:477.666655pt;}
.x2e{left:488.333333pt;}
.x21{left:501.666655pt;}
.x13{left:502.999988pt;}
.x12{left:504.466655pt;}
.x16{left:512.066655pt;}
.x27{left:541.799988pt;}
.x1f{left:544.066655pt;}
.x28{left:547.399988pt;}
.xc{left:555.933333pt;}
.x2f{left:587.573333pt;}
.x14{left:614.373322pt;}
.x15{left:619.693322pt;}
.xf{left:634.360000pt;}
.x30{left:668.773333pt;}
.x2{left:728.106655pt;}
.x1e{left:735.839988pt;}
.x17{left:756.106655pt;}
}




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