
    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_947a099d1887efac3de29239.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4f0d69130425d6a36b7e7b07.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a2342a4e1d98e2741c8973ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_e3e6971c3bd340d5fbc01349.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1981fcc71235e98545a58a5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a07296b6334ef41907001b3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.221191;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_3164536745c24a3b5acdd00e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.221191;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_ff44fe9a612eff104a2af21a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.186035;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_09c06aa536f55b579bf99202.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6483bd3b1b81f5aba4803085.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929199;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_64b5093af5c01dc49d63e1a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-156.240000px;}
.v2{vertical-align:-93.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.630000px;}
.ls16{letter-spacing:-0.567600px;}
.ls10{letter-spacing:-0.414600px;}
.ls13{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls1e{letter-spacing:-0.222000px;}
.ls1f{letter-spacing:-0.168600px;}
.ls20{letter-spacing:-0.112200px;}
.lsb{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.090600px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.005760px;}
.ls1d{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.134400px;}
.ls17{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.181200px;}
.ls5{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.296640px;}
.lsd{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.318000px;}
.ls19{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.630000px;}
.ls2{letter-spacing:1.016640px;}
.ls14{letter-spacing:1.025280px;}
.ls12{letter-spacing:4.625280px;}
.ls3{letter-spacing:22.733280px;}
.ls18{letter-spacing:849.944640px;}
.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;}
}
.ws6{word-spacing:-131.941200px;}
.ws4{word-spacing:-131.760000px;}
.ws10{word-spacing:-66.240000px;}
.ws3{word-spacing:-37.259280px;}
.ws5{word-spacing:-36.810480px;}
.ws2{word-spacing:-36.763680px;}
.ws0{word-spacing:-36.629280px;}
.ws1{word-spacing:-36.538680px;}
.ws7{word-spacing:-30.024000px;}
.wsa{word-spacing:-18.720120px;}
.wse{word-spacing:-18.676920px;}
.wsc{word-spacing:-18.414720px;}
.ws19{word-spacing:-18.312240px;}
.wsb{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.ws1a{word-spacing:-18.086640px;}
.ws17{word-spacing:-17.994240px;}
.ws18{word-spacing:-17.882040px;}
.ws11{word-spacing:-17.847120px;}
.ws16{word-spacing:-17.825640px;}
.ws13{word-spacing:-17.586720px;}
.ws14{word-spacing:-17.483040px;}
.ws15{word-spacing:-17.364240px;}
.ws12{word-spacing:-11.609280px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:2203.059840px;}
._19{margin-left:-18.567600px;}
._1b{margin-left:-15.929640px;}
._1a{margin-left:-14.040960px;}
._16{margin-left:-11.971680px;}
._17{margin-left:-10.027080px;}
._18{margin-left:-8.421360px;}
._2c{margin-left:-5.803920px;}
._10{margin-left:-4.769280px;}
._5{margin-left:-3.471120px;}
._4{margin-left:-2.318400px;}
._1{margin-left:-1.095120px;}
._0{width:1.317600px;}
._c{width:2.848320px;}
._a{width:3.974400px;}
._b{width:5.100480px;}
._11{width:6.292800px;}
._2{width:7.352640px;}
._3{width:8.419440px;}
._14{width:9.671040px;}
._6{width:10.797120px;}
._7{width:11.861280px;}
._1e{width:13.044960px;}
._22{width:14.049120px;}
._12{width:15.109920px;}
._13{width:16.315200px;}
._24{width:17.322480px;}
._29{width:19.776480px;}
._1f{width:21.263040px;}
._20{width:23.162880px;}
._25{width:24.508800px;}
._d{width:26.562240px;}
._f{width:28.096320px;}
._e{width:29.476800px;}
._15{width:31.254720px;}
._2b{width:32.699040px;}
._21{width:33.988800px;}
._27{width:35.305920px;}
._28{width:36.493680px;}
._34{width:38.027520px;}
._23{width:41.929920px;}
._8{width:43.188480px;}
._9{width:44.844480px;}
._2a{width:53.219520px;}
._32{width:58.291200px;}
._33{width:59.320080px;}
._1d{width:88.841040px;}
._2d{width:90.128880px;}
._2e{width:105.321600px;}
._2f{width:106.447680px;}
._30{width:163.546560px;}
._31{width:165.202560px;}
._26{width:192.421920px;}
._1c{width:845.765280px;}
.fc4{color:rgb(196,89,17);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs0{font-size:105.120000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y14{bottom:56.520000px;}
.y13{bottom:75.456000px;}
.y119{bottom:89.856000px;}
.yb8{bottom:110.916000px;}
.y8c{bottom:113.076000px;}
.y181{bottom:115.776000px;}
.y104{bottom:120.996000px;}
.ye4{bottom:126.036000px;}
.y6a{bottom:126.396000px;}
.y160{bottom:130.176000px;}
.y36{bottom:132.696000px;}
.y144{bottom:134.856000px;}
.y12{bottom:138.276000px;}
.y8b{bottom:141.876000px;}
.y180{bottom:147.636000px;}
.y1b4{bottom:149.076000px;}
.y103{bottom:149.436000px;}
.y98{bottom:151.230000px;}
.yb7{bottom:151.410000px;}
.y69{bottom:154.830000px;}
.ye3{bottom:158.070000px;}
.y15f{bottom:158.790000px;}
.y35{bottom:161.130000px;}
.y143{bottom:163.290000px;}
.y11{bottom:170.130000px;}
.y8a{bottom:170.310000px;}
.yd4{bottom:172.650000px;}
.y102{bottom:177.870000px;}
.y199{bottom:180.750000px;}
.y68{bottom:183.270000px;}
.y17f{bottom:184.710000px;}
.y1b3{bottom:185.610000px;}
.y15e{bottom:187.410000px;}
.ye2{bottom:189.930000px;}
.y118{bottom:190.290000px;}
.yb6{bottom:191.730000px;}
.y89{bottom:198.750000px;}
.yd3{bottom:201.270000px;}
.y34{bottom:201.450000px;}
.y10{bottom:201.990000px;}
.y17e{bottom:203.610000px;}
.y101{bottom:206.310000px;}
.y15d{bottom:215.850000px;}
.y117{bottom:218.730000px;}
.y142{bottom:220.170000px;}
.ye1{bottom:221.790000px;}
.y1b2{bottom:222.150000px;}
.y17d{bottom:222.690000px;}
.y67{bottom:223.590000px;}
.y88{bottom:227.190000px;}
.yd2{bottom:229.710000px;}
.y33{bottom:230.070000px;}
.y100{bottom:234.750000px;}
.yf{bottom:236.730000px;}
.y17c{bottom:241.590000px;}
.y15c{bottom:244.290000px;}
.y198{bottom:246.450000px;}
.y116{bottom:247.170000px;}
.ye0{bottom:253.830000px;}
.y87{bottom:255.630000px;}
.yd1{bottom:258.330000px;}
.y32{bottom:258.510000px;}
.y141{bottom:260.490000px;}
.yff{bottom:263.190000px;}
.y66{bottom:263.910000px;}
.y115{bottom:275.790000px;}
.y15b{bottom:279.570000px;}
.ye{bottom:280.470000px;}
.y197{bottom:282.990000px;}
.yb1{bottom:284.070000px;}
.ydf{bottom:285.690000px;}
.yd0{bottom:286.770000px;}
.y31{bottom:286.950000px;}
.y140{bottom:289.110000px;}
.yfe{bottom:291.630000px;}
.y65{bottom:292.710000px;}
.y1b1{bottom:295.050000px;}
.y86{bottom:295.950000px;}
.y17b{bottom:297.570000px;}
.y114{bottom:304.230000px;}
.yb0{bottom:312.510000px;}
.y30{bottom:315.390000px;}
.y17a{bottom:316.470000px;}
.yde{bottom:317.550000px;}
.y196{bottom:319.530000px;}
.y15a{bottom:319.890000px;}
.yfd{bottom:320.250000px;}
.yd{bottom:320.610000px;}
.y64{bottom:321.150000px;}
.y85{bottom:324.570000px;}
.ycf{bottom:326.910000px;}
.y1b0{bottom:331.635000px;}
.y113{bottom:332.715000px;}
.y2f{bottom:343.875000px;}
.yfc{bottom:348.735000px;}
.y63{bottom:349.635000px;}
.yaf{bottom:352.875000px;}
.y84{bottom:353.055000px;}
.y179{bottom:353.595000px;}
.yce{bottom:355.755000px;}
.y195{bottom:356.115000px;}
.y13f{bottom:357.915000px;}
.yc{bottom:358.095000px;}
.y159{bottom:360.435000px;}
.y112{bottom:361.155000px;}
.y1af{bottom:368.175000px;}
.y2e{bottom:372.315000px;}
.y178{bottom:372.495000px;}
.yfb{bottom:377.175000px;}
.y62{bottom:378.075000px;}
.y83{bottom:381.495000px;}
.ycd{bottom:385.275000px;}
.y13e{bottom:386.535000px;}
.y158{bottom:389.055000px;}
.y111{bottom:389.595000px;}
.y177{bottom:391.395000px;}
.y194{bottom:392.655000px;}
.yb{bottom:394.275000px;}
.y2d{bottom:400.755000px;}
.y1c8{bottom:404.355000px;}
.y1ae{bottom:404.535000px;}
.yfa{bottom:405.615000px;}
.y61{bottom:406.515000px;}
.y82{bottom:409.935000px;}
.y176{bottom:410.475000px;}
.ycc{bottom:413.715000px;}
.y13d{bottom:414.975000px;}
.y157{bottom:417.495000px;}
.y110{bottom:418.035000px;}
.ydd{bottom:421.815000px;}
.ya{bottom:426.135000px;}
.y193{bottom:429.015000px;}
.y2c{bottom:429.375000px;}
.yf9{bottom:434.055000px;}
.y1c7{bottom:436.395000px;}
.y81{bottom:438.375000px;}
.y1ad{bottom:441.075000px;}
.ycb{bottom:443.235000px;}
.y13c{bottom:443.595000px;}
.y156{bottom:445.935000px;}
.y10f{bottom:446.475000px;}
.y60{bottom:446.835000px;}
.y175{bottom:448.455000px;}
.ydc{bottom:450.435000px;}
.y2b{bottom:457.815000px;}
.y9{bottom:458.175000px;}
.yf8{bottom:462.495000px;}
.y49{bottom:465.375000px;}
.y192{bottom:465.555000px;}
.y80{bottom:466.815000px;}
.y13b{bottom:472.035000px;}
.yca{bottom:472.935000px;}
.y155{bottom:474.375000px;}
.y10e{bottom:474.915000px;}
.y5f{bottom:475.455000px;}
.y1ac{bottom:477.615000px;}
.ya6{bottom:478.695000px;}
.y2a{bottom:486.075000px;}
.yeb{bottom:486.255000px;}
.yef{bottom:488.955000px;}
.ydb{bottom:490.755000px;}
.yf7{bottom:490.935000px;}
.y8{bottom:492.735000px;}
.y12b{bottom:493.815000px;}
.y174{bottom:494.895000px;}
.y7f{bottom:495.435000px;}
.y13a{bottom:500.475000px;}
.yc9{bottom:501.375000px;}
.y191{bottom:502.095000px;}
.y154{bottom:502.815000px;}
.y10d{bottom:503.355000px;}
.y5e{bottom:503.895000px;}
.y1c6{bottom:504.795000px;}
.y48{bottom:505.695000px;}
.ya5{bottom:507.315000px;}
.y1ab{bottom:514.155000px;}
.yea{bottom:514.695000px;}
.yee{bottom:517.575000px;}
.yda{bottom:519.375000px;}
.y1c5{bottom:520.275000px;}
.y12a{bottom:522.255000px;}
.y173{bottom:523.335000px;}
.yae{bottom:523.875000px;}
.y29{bottom:525.855000px;}
.y153{bottom:531.435000px;}
.y10c{bottom:531.975000px;}
.y5d{bottom:532.335000px;}
.y7e{bottom:535.575000px;}
.ya4{bottom:535.755000px;}
.y7{bottom:537.375000px;}
.y190{bottom:538.635000px;}
.y139{bottom:540.795000px;}
.y47{bottom:541.695000px;}
.yc8{bottom:542.775000px;}
.ye9{bottom:543.135000px;}
.yed{bottom:546.015000px;}
.yd9{bottom:547.815000px;}
.y1aa{bottom:550.515000px;}
.y129{bottom:550.695000px;}
.y172{bottom:551.775000px;}
.yad{bottom:552.315000px;}
.y28{bottom:554.475000px;}
.y1c4{bottom:556.815000px;}
.y152{bottom:559.875000px;}
.y10b{bottom:560.415000px;}
.y5c{bottom:560.775000px;}
.y7d{bottom:564.195000px;}
.y138{bottom:569.415000px;}
.ye8{bottom:571.575000px;}
.y18f{bottom:574.995000px;}
.yd8{bottom:576.255000px;}
.yf6{bottom:576.435000px;}
.y46{bottom:577.515000px;}
.y128{bottom:579.135000px;}
.y171{bottom:580.215000px;}
.yac{bottom:580.755000px;}
.y27{bottom:582.915000px;}
.yc7{bottom:583.095000px;}
.yec{bottom:586.335000px;}
.y1a9{bottom:587.055000px;}
.y10a{bottom:588.855000px;}
.y5b{bottom:589.215000px;}
.y7c{bottom:592.815000px;}
.y1c3{bottom:593.175000px;}
.y137{bottom:597.885000px;}
.y151{bottom:600.045000px;}
.ye7{bottom:601.485000px;}
.yd7{bottom:604.725000px;}
.yf5{bottom:604.905000px;}
.y127{bottom:607.605000px;}
.y170{bottom:608.685000px;}
.y26{bottom:611.385000px;}
.y18e{bottom:611.565000px;}
.yc6{bottom:611.925000px;}
.y45{bottom:613.545000px;}
.y109{bottom:617.325000px;}
.y5a{bottom:617.685000px;}
.yab{bottom:621.105000px;}
.y7b{bottom:621.285000px;}
.y1a8{bottom:623.625000px;}
.y136{bottom:626.325000px;}
.y126{bottom:627.045000px;}
.y150{bottom:628.845000px;}
.y1c2{bottom:629.745000px;}
.yd6{bottom:633.165000px;}
.yf4{bottom:633.345000px;}
.y25{bottom:639.825000px;}
.yc5{bottom:640.365000px;}
.y108{bottom:645.765000px;}
.y59{bottom:646.305000px;}
.y18d{bottom:648.105000px;}
.y44{bottom:649.545000px;}
.ya3{bottom:649.725000px;}
.yf3{bottom:652.785000px;}
.y135{bottom:654.765000px;}
.y125{bottom:657.105000px;}
.y14f{bottom:657.285000px;}
.y1a7{bottom:660.165000px;}
.y7a{bottom:661.425000px;}
.yd5{bottom:661.605000px;}
.y16f{bottom:664.665000px;}
.y1c1{bottom:666.285000px;}
.y24{bottom:668.265000px;}
.yf2{bottom:673.485000px;}
.y107{bottom:674.205000px;}
.y124{bottom:677.805000px;}
.ya2{bottom:678.165000px;}
.yc4{bottom:680.505000px;}
.y134{bottom:683.205000px;}
.y18c{bottom:684.645000px;}
.y43{bottom:685.545000px;}
.y14e{bottom:685.725000px;}
.y58{bottom:686.445000px;}
.y79{bottom:690.225000px;}
.y106{bottom:693.645000px;}
.y1a6{bottom:696.525000px;}
.y23{bottom:696.705000px;}
.y16e{bottom:701.565000px;}
.y1c0{bottom:702.825000px;}
.yaa{bottom:706.605000px;}
.y123{bottom:707.865000px;}
.y133{bottom:711.645000px;}
.y14d{bottom:714.165000px;}
.ya1{bottom:718.485000px;}
.y78{bottom:718.665000px;}
.y16d{bottom:720.645000px;}
.yc3{bottom:721.005000px;}
.y42{bottom:721.545000px;}
.y57{bottom:726.945000px;}
.y1a5{bottom:733.065000px;}
.y97{bottom:734.865000px;}
.y22{bottom:736.485000px;}
.y122{bottom:737.745000px;}
.y1bf{bottom:739.185000px;}
.y16c{bottom:739.545000px;}
.y132{bottom:740.085000px;}
.y14c{bottom:742.605000px;}
.ya9{bottom:746.925000px;}
.y77{bottom:747.105000px;}
.yc2{bottom:749.625000px;}
.y56{bottom:755.565000px;}
.y41{bottom:757.365000px;}
.y18b{bottom:757.545000px;}
.y16b{bottom:758.625000px;}
.ya0{bottom:758.805000px;}
.y21{bottom:764.925000px;}
.y121{bottom:767.805000px;}
.y1a4{bottom:769.605000px;}
.y14b{bottom:771.045000px;}
.y96{bottom:775.365000px;}
.y76{bottom:775.545000px;}
.y1be{bottom:775.725000px;}
.yc1{bottom:778.245000px;}
.y131{bottom:780.405000px;}
.y55{bottom:784.005000px;}
.ya8{bottom:787.425000px;}
.y9f{bottom:787.605000px;}
.y20{bottom:793.365000px;}
.y18a{bottom:794.085000px;}
.y16a{bottom:795.525000px;}
.y120{bottom:797.865000px;}
.y14a{bottom:799.485000px;}
.yb5{bottom:803.805000px;}
.y75{bottom:803.985000px;}
.y1a3{bottom:806.145000px;}
.y130{bottom:809.025000px;}
.y1bd{bottom:812.265000px;}
.y54{bottom:812.445000px;}
.yc0{bottom:813.525000px;}
.y169{bottom:814.425000px;}
.y9e{bottom:816.045000px;}
.y11f{bottom:818.565000px;}
.y1f{bottom:821.805000px;}
.y149{bottom:827.925000px;}
.y40{bottom:829.365000px;}
.y189{bottom:830.625000px;}
.y74{bottom:832.425000px;}
.y12f{bottom:837.465000px;}
.y53{bottom:841.065000px;}
.y1a2{bottom:842.505000px;}
.yb4{bottom:844.305000px;}
.y9d{bottom:844.485000px;}
.y188{bottom:846.105000px;}
.y11e{bottom:848.445000px;}
.y1bc{bottom:848.805000px;}
.y1e{bottom:850.245000px;}
.y168{bottom:851.505000px;}
.ybf{bottom:853.845000px;}
.y148{bottom:856.365000px;}
.y73{bottom:860.865000px;}
.y3f{bottom:865.410000px;}
.y12e{bottom:865.950000px;}
.y11d{bottom:869.190000px;}
.y52{bottom:869.550000px;}
.y167{bottom:870.450000px;}
.y95{bottom:872.790000px;}
.y9c{bottom:872.970000px;}
.y1d{bottom:878.730000px;}
.y1a1{bottom:879.090000px;}
.y187{bottom:882.510000px;}
.y147{bottom:885.030000px;}
.y1bb{bottom:885.390000px;}
.y72{bottom:889.350000px;}
.y166{bottom:889.530000px;}
.y11c{bottom:889.890000px;}
.ybe{bottom:894.390000px;}
.y12d{bottom:894.570000px;}
.y6{bottom:897.270000px;}
.y51{bottom:897.990000px;}
.y3e{bottom:901.230000px;}
.y94{bottom:901.410000px;}
.y1c{bottom:907.170000px;}
.y11b{bottom:910.590000px;}
.y146{bottom:913.470000px;}
.y1a0{bottom:915.630000px;}
.y71{bottom:917.790000px;}
.y186{bottom:919.050000px;}
.y1ba{bottom:921.750000px;}
.ybd{bottom:923.010000px;}
.y50{bottom:926.430000px;}
.y93{bottom:929.850000px;}
.y5{bottom:932.730000px;}
.y3d{bottom:937.230000px;}
.y11a{bottom:940.650000px;}
.yb3{bottom:941.730000px;}
.y145{bottom:941.910000px;}
.y165{bottom:945.330000px;}
.y70{bottom:946.410000px;}
.y1b{bottom:946.950000px;}
.ybc{bottom:951.450000px;}
.y19f{bottom:952.170000px;}
.y4f{bottom:954.870000px;}
.y185{bottom:955.590000px;}
.yf1{bottom:958.110000px;}
.y92{bottom:958.290000px;}
.y12c{bottom:963.150000px;}
.y164{bottom:964.410000px;}
.y4{bottom:969.810000px;}
.y9b{bottom:970.170000px;}
.yb2{bottom:970.350000px;}
.y3c{bottom:973.230000px;}
.y1a{bottom:975.390000px;}
.ybb{bottom:979.890000px;}
.y4e{bottom:983.310000px;}
.y6f{bottom:986.550000px;}
.y91{bottom:986.730000px;}
.y19e{bottom:988.530000px;}
.ye6{bottom:991.950000px;}
.y184{bottom:992.130000px;}
.y1b9{bottom:994.830000px;}
.y9a{bottom:998.790000px;}
.y163{bottom:1002.390000px;}
.y19{bottom:1003.830000px;}
.y3b{bottom:1009.230000px;}
.y3{bottom:1009.770000px;}
.y4d{bottom:1011.750000px;}
.y90{bottom:1015.170000px;}
.yba{bottom:1020.210000px;}
.ye5{bottom:1020.390000px;}
.y162{bottom:1021.290000px;}
.y19d{bottom:1025.970000px;}
.y6e{bottom:1027.050000px;}
.y99{bottom:1027.230000px;}
.y183{bottom:1029.390000px;}
.y1b8{bottom:1031.370000px;}
.y18{bottom:1032.270000px;}
.y4c{bottom:1040.190000px;}
.y8f{bottom:1043.790000px;}
.y3a{bottom:1045.230000px;}
.yb9{bottom:1048.830000px;}
.y105{bottom:1054.410000px;}
.yf0{bottom:1055.490000px;}
.y6d{bottom:1055.670000px;}
.y161{bottom:1058.190000px;}
.y17{bottom:1060.710000px;}
.y19c{bottom:1065.930000px;}
.y1b7{bottom:1067.730000px;}
.y4b{bottom:1068.630000px;}
.y182{bottom:1069.350000px;}
.y8e{bottom:1072.230000px;}
.y39{bottom:1077.270000px;}
.y6c{bottom:1084.110000px;}
.y2{bottom:1088.610000px;}
.y16{bottom:1089.330000px;}
.y8d{bottom:1100.670000px;}
.y1b6{bottom:1104.270000px;}
.y19b{bottom:1104.990000px;}
.y4a{bottom:1105.530000px;}
.y38{bottom:1105.710000px;}
.ya7{bottom:1112.370000px;}
.y6b{bottom:1112.550000px;}
.y1{bottom:1125.690000px;}
.y15{bottom:1141.020000px;}
.y37{bottom:1141.200000px;}
.y19a{bottom:1141.560000px;}
.y1b5{bottom:1143.900000px;}
.ha{height:48.899531px;}
.hd{height:49.822031px;}
.hc{height:51.818906px;}
.hf{height:53.316562px;}
.h8{height:59.383125px;}
.hb{height:67.145625px;}
.he{height:68.084282px;}
.h4{height:69.086250px;}
.h9{height:74.004654px;}
.h6{height:87.859687px;}
.h7{height:99.874688px;}
.h5{height:112.640625px;}
.h3{height:125.406562px;}
.h2{height:137.421562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:125.315987px;}
.x5{left:127.655987px;}
.x15{left:129.815987px;}
.x13{left:134.495987px;}
.x11{left:136.295987px;}
.x14{left:138.995987px;}
.x10{left:140.975987px;}
.xd{left:144.215987px;}
.xe{left:145.475987px;}
.x12{left:154.649987px;}
.x16{left:156.449987px;}
.x1{left:181.649987px;}
.x2{left:189.389987px;}
.x8{left:210.809987px;}
.x9{left:228.269987px;}
.x7{left:282.989987px;}
.xa{left:299.414987px;}
.x3{left:361.694987px;}
.x6{left:446.474987px;}
.x4{left:473.504987px;}
.x18{left:558.284987px;}
.xf{left:747.149987px;}
.xb{left:756.329987px;}
.xc{left:765.509987px;}
@media print{
.v1{vertical-align:-138.880000pt;}
.v2{vertical-align:-82.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.560000pt;}
.ls16{letter-spacing:-0.504533pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls13{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls1e{letter-spacing:-0.197333pt;}
.ls1f{letter-spacing:-0.149867pt;}
.ls20{letter-spacing:-0.099733pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.080533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.005120pt;}
.ls1d{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.119467pt;}
.ls17{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.161067pt;}
.ls5{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.263680pt;}
.lsd{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.282667pt;}
.ls19{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.903680pt;}
.ls14{letter-spacing:0.911360pt;}
.ls12{letter-spacing:4.111360pt;}
.ls3{letter-spacing:20.207360pt;}
.ls18{letter-spacing:755.506347pt;}
.ws6{word-spacing:-117.281067pt;}
.ws4{word-spacing:-117.120000pt;}
.ws10{word-spacing:-58.880000pt;}
.ws3{word-spacing:-33.119360pt;}
.ws5{word-spacing:-32.720427pt;}
.ws2{word-spacing:-32.678827pt;}
.ws0{word-spacing:-32.559360pt;}
.ws1{word-spacing:-32.478827pt;}
.ws7{word-spacing:-26.688000pt;}
.wsa{word-spacing:-16.640107pt;}
.wse{word-spacing:-16.601707pt;}
.wsc{word-spacing:-16.368640pt;}
.ws19{word-spacing:-16.277547pt;}
.wsb{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.ws1a{word-spacing:-16.077013pt;}
.ws17{word-spacing:-15.994880pt;}
.ws18{word-spacing:-15.895147pt;}
.ws11{word-spacing:-15.864107pt;}
.ws16{word-spacing:-15.845013pt;}
.ws13{word-spacing:-15.632640pt;}
.ws14{word-spacing:-15.540480pt;}
.ws15{word-spacing:-15.434880pt;}
.ws12{word-spacing:-10.319360pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:1958.275413pt;}
._19{margin-left:-16.504533pt;}
._1b{margin-left:-14.159680pt;}
._1a{margin-left:-12.480853pt;}
._16{margin-left:-10.641493pt;}
._17{margin-left:-8.912960pt;}
._18{margin-left:-7.485653pt;}
._2c{margin-left:-5.159040pt;}
._10{margin-left:-4.239360pt;}
._5{margin-left:-3.085440pt;}
._4{margin-left:-2.060800pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.171200pt;}
._c{width:2.531840pt;}
._a{width:3.532800pt;}
._b{width:4.533760pt;}
._11{width:5.593600pt;}
._2{width:6.535680pt;}
._3{width:7.483947pt;}
._14{width:8.596480pt;}
._6{width:9.597440pt;}
._7{width:10.543360pt;}
._1e{width:11.595520pt;}
._22{width:12.488107pt;}
._12{width:13.431040pt;}
._13{width:14.502400pt;}
._24{width:15.397760pt;}
._29{width:17.579093pt;}
._1f{width:18.900480pt;}
._20{width:20.589227pt;}
._25{width:21.785600pt;}
._d{width:23.610880pt;}
._f{width:24.974507pt;}
._e{width:26.201600pt;}
._15{width:27.781973pt;}
._2b{width:29.065813pt;}
._21{width:30.212267pt;}
._27{width:31.383040pt;}
._28{width:32.438827pt;}
._34{width:33.802240pt;}
._23{width:37.271040pt;}
._8{width:38.389760pt;}
._9{width:39.861760pt;}
._2a{width:47.306240pt;}
._32{width:51.814400pt;}
._33{width:52.728960pt;}
._1d{width:78.969813pt;}
._2d{width:80.114560pt;}
._2e{width:93.619200pt;}
._2f{width:94.620160pt;}
._30{width:145.374720pt;}
._31{width:146.846720pt;}
._26{width:171.041707pt;}
._1c{width:751.791360pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs0{font-size:93.440000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:50.240000pt;}
.y13{bottom:67.072000pt;}
.y119{bottom:79.872000pt;}
.yb8{bottom:98.592000pt;}
.y8c{bottom:100.512000pt;}
.y181{bottom:102.912000pt;}
.y104{bottom:107.552000pt;}
.ye4{bottom:112.032000pt;}
.y6a{bottom:112.352000pt;}
.y160{bottom:115.712000pt;}
.y36{bottom:117.952000pt;}
.y144{bottom:119.872000pt;}
.y12{bottom:122.912000pt;}
.y8b{bottom:126.112000pt;}
.y180{bottom:131.232000pt;}
.y1b4{bottom:132.512000pt;}
.y103{bottom:132.832000pt;}
.y98{bottom:134.426667pt;}
.yb7{bottom:134.586667pt;}
.y69{bottom:137.626667pt;}
.ye3{bottom:140.506667pt;}
.y15f{bottom:141.146667pt;}
.y35{bottom:143.226667pt;}
.y143{bottom:145.146667pt;}
.y11{bottom:151.226667pt;}
.y8a{bottom:151.386667pt;}
.yd4{bottom:153.466667pt;}
.y102{bottom:158.106667pt;}
.y199{bottom:160.666667pt;}
.y68{bottom:162.906667pt;}
.y17f{bottom:164.186667pt;}
.y1b3{bottom:164.986667pt;}
.y15e{bottom:166.586667pt;}
.ye2{bottom:168.826667pt;}
.y118{bottom:169.146667pt;}
.yb6{bottom:170.426667pt;}
.y89{bottom:176.666667pt;}
.yd3{bottom:178.906667pt;}
.y34{bottom:179.066667pt;}
.y10{bottom:179.546667pt;}
.y17e{bottom:180.986667pt;}
.y101{bottom:183.386667pt;}
.y15d{bottom:191.866667pt;}
.y117{bottom:194.426667pt;}
.y142{bottom:195.706667pt;}
.ye1{bottom:197.146667pt;}
.y1b2{bottom:197.466667pt;}
.y17d{bottom:197.946667pt;}
.y67{bottom:198.746667pt;}
.y88{bottom:201.946667pt;}
.yd2{bottom:204.186667pt;}
.y33{bottom:204.506667pt;}
.y100{bottom:208.666667pt;}
.yf{bottom:210.426667pt;}
.y17c{bottom:214.746667pt;}
.y15c{bottom:217.146667pt;}
.y198{bottom:219.066667pt;}
.y116{bottom:219.706667pt;}
.ye0{bottom:225.626667pt;}
.y87{bottom:227.226667pt;}
.yd1{bottom:229.626667pt;}
.y32{bottom:229.786667pt;}
.y141{bottom:231.546667pt;}
.yff{bottom:233.946667pt;}
.y66{bottom:234.586667pt;}
.y115{bottom:245.146667pt;}
.y15b{bottom:248.506667pt;}
.ye{bottom:249.306667pt;}
.y197{bottom:251.546667pt;}
.yb1{bottom:252.506667pt;}
.ydf{bottom:253.946667pt;}
.yd0{bottom:254.906667pt;}
.y31{bottom:255.066667pt;}
.y140{bottom:256.986667pt;}
.yfe{bottom:259.226667pt;}
.y65{bottom:260.186667pt;}
.y1b1{bottom:262.266667pt;}
.y86{bottom:263.066667pt;}
.y17b{bottom:264.506667pt;}
.y114{bottom:270.426667pt;}
.yb0{bottom:277.786667pt;}
.y30{bottom:280.346667pt;}
.y17a{bottom:281.306667pt;}
.yde{bottom:282.266667pt;}
.y196{bottom:284.026667pt;}
.y15a{bottom:284.346667pt;}
.yfd{bottom:284.666667pt;}
.yd{bottom:284.986667pt;}
.y64{bottom:285.466667pt;}
.y85{bottom:288.506667pt;}
.ycf{bottom:290.586667pt;}
.y1b0{bottom:294.786667pt;}
.y113{bottom:295.746667pt;}
.y2f{bottom:305.666667pt;}
.yfc{bottom:309.986667pt;}
.y63{bottom:310.786667pt;}
.yaf{bottom:313.666667pt;}
.y84{bottom:313.826667pt;}
.y179{bottom:314.306667pt;}
.yce{bottom:316.226667pt;}
.y195{bottom:316.546667pt;}
.y13f{bottom:318.146667pt;}
.yc{bottom:318.306667pt;}
.y159{bottom:320.386667pt;}
.y112{bottom:321.026667pt;}
.y1af{bottom:327.266667pt;}
.y2e{bottom:330.946667pt;}
.y178{bottom:331.106667pt;}
.yfb{bottom:335.266667pt;}
.y62{bottom:336.066667pt;}
.y83{bottom:339.106667pt;}
.ycd{bottom:342.466667pt;}
.y13e{bottom:343.586667pt;}
.y158{bottom:345.826667pt;}
.y111{bottom:346.306667pt;}
.y177{bottom:347.906667pt;}
.y194{bottom:349.026667pt;}
.yb{bottom:350.466667pt;}
.y2d{bottom:356.226667pt;}
.y1c8{bottom:359.426667pt;}
.y1ae{bottom:359.586667pt;}
.yfa{bottom:360.546667pt;}
.y61{bottom:361.346667pt;}
.y82{bottom:364.386667pt;}
.y176{bottom:364.866667pt;}
.ycc{bottom:367.746667pt;}
.y13d{bottom:368.866667pt;}
.y157{bottom:371.106667pt;}
.y110{bottom:371.586667pt;}
.ydd{bottom:374.946667pt;}
.ya{bottom:378.786667pt;}
.y193{bottom:381.346667pt;}
.y2c{bottom:381.666667pt;}
.yf9{bottom:385.826667pt;}
.y1c7{bottom:387.906667pt;}
.y81{bottom:389.666667pt;}
.y1ad{bottom:392.066667pt;}
.ycb{bottom:393.986667pt;}
.y13c{bottom:394.306667pt;}
.y156{bottom:396.386667pt;}
.y10f{bottom:396.866667pt;}
.y60{bottom:397.186667pt;}
.y175{bottom:398.626667pt;}
.ydc{bottom:400.386667pt;}
.y2b{bottom:406.946667pt;}
.y9{bottom:407.266667pt;}
.yf8{bottom:411.106667pt;}
.y49{bottom:413.666667pt;}
.y192{bottom:413.826667pt;}
.y80{bottom:414.946667pt;}
.y13b{bottom:419.586667pt;}
.yca{bottom:420.386667pt;}
.y155{bottom:421.666667pt;}
.y10e{bottom:422.146667pt;}
.y5f{bottom:422.626667pt;}
.y1ac{bottom:424.546667pt;}
.ya6{bottom:425.506667pt;}
.y2a{bottom:432.066667pt;}
.yeb{bottom:432.226667pt;}
.yef{bottom:434.626667pt;}
.ydb{bottom:436.226667pt;}
.yf7{bottom:436.386667pt;}
.y8{bottom:437.986667pt;}
.y12b{bottom:438.946667pt;}
.y174{bottom:439.906667pt;}
.y7f{bottom:440.386667pt;}
.y13a{bottom:444.866667pt;}
.yc9{bottom:445.666667pt;}
.y191{bottom:446.306667pt;}
.y154{bottom:446.946667pt;}
.y10d{bottom:447.426667pt;}
.y5e{bottom:447.906667pt;}
.y1c6{bottom:448.706667pt;}
.y48{bottom:449.506667pt;}
.ya5{bottom:450.946667pt;}
.y1ab{bottom:457.026667pt;}
.yea{bottom:457.506667pt;}
.yee{bottom:460.066667pt;}
.yda{bottom:461.666667pt;}
.y1c5{bottom:462.466667pt;}
.y12a{bottom:464.226667pt;}
.y173{bottom:465.186667pt;}
.yae{bottom:465.666667pt;}
.y29{bottom:467.426667pt;}
.y153{bottom:472.386667pt;}
.y10c{bottom:472.866667pt;}
.y5d{bottom:473.186667pt;}
.y7e{bottom:476.066667pt;}
.ya4{bottom:476.226667pt;}
.y7{bottom:477.666667pt;}
.y190{bottom:478.786667pt;}
.y139{bottom:480.706667pt;}
.y47{bottom:481.506667pt;}
.yc8{bottom:482.466667pt;}
.ye9{bottom:482.786667pt;}
.yed{bottom:485.346667pt;}
.yd9{bottom:486.946667pt;}
.y1aa{bottom:489.346667pt;}
.y129{bottom:489.506667pt;}
.y172{bottom:490.466667pt;}
.yad{bottom:490.946667pt;}
.y28{bottom:492.866667pt;}
.y1c4{bottom:494.946667pt;}
.y152{bottom:497.666667pt;}
.y10b{bottom:498.146667pt;}
.y5c{bottom:498.466667pt;}
.y7d{bottom:501.506667pt;}
.y138{bottom:506.146667pt;}
.ye8{bottom:508.066667pt;}
.y18f{bottom:511.106667pt;}
.yd8{bottom:512.226667pt;}
.yf6{bottom:512.386667pt;}
.y46{bottom:513.346667pt;}
.y128{bottom:514.786667pt;}
.y171{bottom:515.746667pt;}
.yac{bottom:516.226667pt;}
.y27{bottom:518.146667pt;}
.yc7{bottom:518.306667pt;}
.yec{bottom:521.186667pt;}
.y1a9{bottom:521.826667pt;}
.y10a{bottom:523.426667pt;}
.y5b{bottom:523.746667pt;}
.y7c{bottom:526.946667pt;}
.y1c3{bottom:527.266667pt;}
.y137{bottom:531.453333pt;}
.y151{bottom:533.373333pt;}
.ye7{bottom:534.653333pt;}
.yd7{bottom:537.533333pt;}
.yf5{bottom:537.693333pt;}
.y127{bottom:540.093333pt;}
.y170{bottom:541.053333pt;}
.y26{bottom:543.453333pt;}
.y18e{bottom:543.613333pt;}
.yc6{bottom:543.933333pt;}
.y45{bottom:545.373333pt;}
.y109{bottom:548.733333pt;}
.y5a{bottom:549.053333pt;}
.yab{bottom:552.093333pt;}
.y7b{bottom:552.253333pt;}
.y1a8{bottom:554.333333pt;}
.y136{bottom:556.733333pt;}
.y126{bottom:557.373333pt;}
.y150{bottom:558.973333pt;}
.y1c2{bottom:559.773333pt;}
.yd6{bottom:562.813333pt;}
.yf4{bottom:562.973333pt;}
.y25{bottom:568.733333pt;}
.yc5{bottom:569.213333pt;}
.y108{bottom:574.013333pt;}
.y59{bottom:574.493333pt;}
.y18d{bottom:576.093333pt;}
.y44{bottom:577.373333pt;}
.ya3{bottom:577.533333pt;}
.yf3{bottom:580.253333pt;}
.y135{bottom:582.013333pt;}
.y125{bottom:584.093333pt;}
.y14f{bottom:584.253333pt;}
.y1a7{bottom:586.813333pt;}
.y7a{bottom:587.933333pt;}
.yd5{bottom:588.093333pt;}
.y16f{bottom:590.813333pt;}
.y1c1{bottom:592.253333pt;}
.y24{bottom:594.013333pt;}
.yf2{bottom:598.653333pt;}
.y107{bottom:599.293333pt;}
.y124{bottom:602.493333pt;}
.ya2{bottom:602.813333pt;}
.yc4{bottom:604.893333pt;}
.y134{bottom:607.293333pt;}
.y18c{bottom:608.573333pt;}
.y43{bottom:609.373333pt;}
.y14e{bottom:609.533333pt;}
.y58{bottom:610.173333pt;}
.y79{bottom:613.533333pt;}
.y106{bottom:616.573333pt;}
.y1a6{bottom:619.133333pt;}
.y23{bottom:619.293333pt;}
.y16e{bottom:623.613333pt;}
.y1c0{bottom:624.733333pt;}
.yaa{bottom:628.093333pt;}
.y123{bottom:629.213333pt;}
.y133{bottom:632.573333pt;}
.y14d{bottom:634.813333pt;}
.ya1{bottom:638.653333pt;}
.y78{bottom:638.813333pt;}
.y16d{bottom:640.573333pt;}
.yc3{bottom:640.893333pt;}
.y42{bottom:641.373333pt;}
.y57{bottom:646.173333pt;}
.y1a5{bottom:651.613333pt;}
.y97{bottom:653.213333pt;}
.y22{bottom:654.653333pt;}
.y122{bottom:655.773333pt;}
.y1bf{bottom:657.053333pt;}
.y16c{bottom:657.373333pt;}
.y132{bottom:657.853333pt;}
.y14c{bottom:660.093333pt;}
.ya9{bottom:663.933333pt;}
.y77{bottom:664.093333pt;}
.yc2{bottom:666.333333pt;}
.y56{bottom:671.613333pt;}
.y41{bottom:673.213333pt;}
.y18b{bottom:673.373333pt;}
.y16b{bottom:674.333333pt;}
.ya0{bottom:674.493333pt;}
.y21{bottom:679.933333pt;}
.y121{bottom:682.493333pt;}
.y1a4{bottom:684.093333pt;}
.y14b{bottom:685.373333pt;}
.y96{bottom:689.213333pt;}
.y76{bottom:689.373333pt;}
.y1be{bottom:689.533333pt;}
.yc1{bottom:691.773333pt;}
.y131{bottom:693.693333pt;}
.y55{bottom:696.893333pt;}
.ya8{bottom:699.933333pt;}
.y9f{bottom:700.093333pt;}
.y20{bottom:705.213333pt;}
.y18a{bottom:705.853333pt;}
.y16a{bottom:707.133333pt;}
.y120{bottom:709.213333pt;}
.y14a{bottom:710.653333pt;}
.yb5{bottom:714.493333pt;}
.y75{bottom:714.653333pt;}
.y1a3{bottom:716.573333pt;}
.y130{bottom:719.133333pt;}
.y1bd{bottom:722.013333pt;}
.y54{bottom:722.173333pt;}
.yc0{bottom:723.133333pt;}
.y169{bottom:723.933333pt;}
.y9e{bottom:725.373333pt;}
.y11f{bottom:727.613333pt;}
.y1f{bottom:730.493333pt;}
.y149{bottom:735.933333pt;}
.y40{bottom:737.213333pt;}
.y189{bottom:738.333333pt;}
.y74{bottom:739.933333pt;}
.y12f{bottom:744.413333pt;}
.y53{bottom:747.613333pt;}
.y1a2{bottom:748.893333pt;}
.yb4{bottom:750.493333pt;}
.y9d{bottom:750.653333pt;}
.y188{bottom:752.093333pt;}
.y11e{bottom:754.173333pt;}
.y1bc{bottom:754.493333pt;}
.y1e{bottom:755.773333pt;}
.y168{bottom:756.893333pt;}
.ybf{bottom:758.973333pt;}
.y148{bottom:761.213333pt;}
.y73{bottom:765.213333pt;}
.y3f{bottom:769.253333pt;}
.y12e{bottom:769.733333pt;}
.y11d{bottom:772.613333pt;}
.y52{bottom:772.933333pt;}
.y167{bottom:773.733333pt;}
.y95{bottom:775.813333pt;}
.y9c{bottom:775.973333pt;}
.y1d{bottom:781.093333pt;}
.y1a1{bottom:781.413333pt;}
.y187{bottom:784.453333pt;}
.y147{bottom:786.693333pt;}
.y1bb{bottom:787.013333pt;}
.y72{bottom:790.533333pt;}
.y166{bottom:790.693333pt;}
.y11c{bottom:791.013333pt;}
.ybe{bottom:795.013333pt;}
.y12d{bottom:795.173333pt;}
.y6{bottom:797.573333pt;}
.y51{bottom:798.213333pt;}
.y3e{bottom:801.093333pt;}
.y94{bottom:801.253333pt;}
.y1c{bottom:806.373333pt;}
.y11b{bottom:809.413333pt;}
.y146{bottom:811.973333pt;}
.y1a0{bottom:813.893333pt;}
.y71{bottom:815.813333pt;}
.y186{bottom:816.933333pt;}
.y1ba{bottom:819.333333pt;}
.ybd{bottom:820.453333pt;}
.y50{bottom:823.493333pt;}
.y93{bottom:826.533333pt;}
.y5{bottom:829.093333pt;}
.y3d{bottom:833.093333pt;}
.y11a{bottom:836.133333pt;}
.yb3{bottom:837.093333pt;}
.y145{bottom:837.253333pt;}
.y165{bottom:840.293333pt;}
.y70{bottom:841.253333pt;}
.y1b{bottom:841.733333pt;}
.ybc{bottom:845.733333pt;}
.y19f{bottom:846.373333pt;}
.y4f{bottom:848.773333pt;}
.y185{bottom:849.413333pt;}
.yf1{bottom:851.653333pt;}
.y92{bottom:851.813333pt;}
.y12c{bottom:856.133333pt;}
.y164{bottom:857.253333pt;}
.y4{bottom:862.053333pt;}
.y9b{bottom:862.373333pt;}
.yb2{bottom:862.533333pt;}
.y3c{bottom:865.093333pt;}
.y1a{bottom:867.013333pt;}
.ybb{bottom:871.013333pt;}
.y4e{bottom:874.053333pt;}
.y6f{bottom:876.933333pt;}
.y91{bottom:877.093333pt;}
.y19e{bottom:878.693333pt;}
.ye6{bottom:881.733333pt;}
.y184{bottom:881.893333pt;}
.y1b9{bottom:884.293333pt;}
.y9a{bottom:887.813333pt;}
.y163{bottom:891.013333pt;}
.y19{bottom:892.293333pt;}
.y3b{bottom:897.093333pt;}
.y3{bottom:897.573333pt;}
.y4d{bottom:899.333333pt;}
.y90{bottom:902.373333pt;}
.yba{bottom:906.853333pt;}
.ye5{bottom:907.013333pt;}
.y162{bottom:907.813333pt;}
.y19d{bottom:911.973333pt;}
.y6e{bottom:912.933333pt;}
.y99{bottom:913.093333pt;}
.y183{bottom:915.013333pt;}
.y1b8{bottom:916.773333pt;}
.y18{bottom:917.573333pt;}
.y4c{bottom:924.613333pt;}
.y8f{bottom:927.813333pt;}
.y3a{bottom:929.093333pt;}
.yb9{bottom:932.293333pt;}
.y105{bottom:937.253333pt;}
.yf0{bottom:938.213333pt;}
.y6d{bottom:938.373333pt;}
.y161{bottom:940.613333pt;}
.y17{bottom:942.853333pt;}
.y19c{bottom:947.493333pt;}
.y1b7{bottom:949.093333pt;}
.y4b{bottom:949.893333pt;}
.y182{bottom:950.533333pt;}
.y8e{bottom:953.093333pt;}
.y39{bottom:957.573333pt;}
.y6c{bottom:963.653333pt;}
.y2{bottom:967.653333pt;}
.y16{bottom:968.293333pt;}
.y8d{bottom:978.373333pt;}
.y1b6{bottom:981.573333pt;}
.y19b{bottom:982.213333pt;}
.y4a{bottom:982.693333pt;}
.y38{bottom:982.853333pt;}
.ya7{bottom:988.773333pt;}
.y6b{bottom:988.933333pt;}
.y1{bottom:1000.613333pt;}
.y15{bottom:1014.240000pt;}
.y37{bottom:1014.400000pt;}
.y19a{bottom:1014.720000pt;}
.y1b5{bottom:1016.800000pt;}
.ha{height:43.466250pt;}
.hd{height:44.286250pt;}
.hc{height:46.061250pt;}
.hf{height:47.392500pt;}
.h8{height:52.785000pt;}
.hb{height:59.685000pt;}
.he{height:60.519362pt;}
.h4{height:61.410000pt;}
.h9{height:65.781915pt;}
.h6{height:78.097500pt;}
.h7{height:88.777500pt;}
.h5{height:100.125000pt;}
.h3{height:111.472500pt;}
.h2{height:122.152500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:111.391988pt;}
.x5{left:113.471988pt;}
.x15{left:115.391988pt;}
.x13{left:119.551988pt;}
.x11{left:121.151988pt;}
.x14{left:123.551988pt;}
.x10{left:125.311988pt;}
.xd{left:128.191988pt;}
.xe{left:129.311988pt;}
.x12{left:137.466655pt;}
.x16{left:139.066655pt;}
.x1{left:161.466655pt;}
.x2{left:168.346655pt;}
.x8{left:187.386655pt;}
.x9{left:202.906655pt;}
.x7{left:251.546655pt;}
.xa{left:266.146655pt;}
.x3{left:321.506655pt;}
.x6{left:396.866655pt;}
.x4{left:420.893322pt;}
.x18{left:496.253322pt;}
.xf{left:664.133322pt;}
.xb{left:672.293322pt;}
.xc{left:680.453322pt;}
}




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