
    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_50d551d83da14d17984d109b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_7204bdb604cffeccdb73bddd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_f64cd144adb85ef36cbed727.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_07db41e3ac11f28e5f885ce7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c57376cd6e5987af66f87a23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.579600px;}
.ls9{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.443400px;}
.lsd{letter-spacing:-0.175800px;}
.ls1b{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.067200px;}
.ls15{letter-spacing:-0.064800px;}
.lsc{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.023760px;}
.ls7{letter-spacing:0.038880px;}
.ls0{letter-spacing:0.061200px;}
.lsb{letter-spacing:0.123000px;}
.ls19{letter-spacing:0.140400px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.393600px;}
.lse{letter-spacing:0.479400px;}
.ls1{letter-spacing:0.654000px;}
.lsf{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.906000px;}
.ls1f{letter-spacing:1.026000px;}
.ls1d{letter-spacing:8.586720px;}
.ls22{letter-spacing:12.186720px;}
.ls18{letter-spacing:25.146720px;}
.ls3{letter-spacing:25.866720px;}
.ls2{letter-spacing:27.306720px;}
.ls1c{letter-spacing:39.546720px;}
.ls21{letter-spacing:42.426720px;}
.ls12{letter-spacing:46.188000px;}
.ls5{letter-spacing:61.585920px;}
.ls14{letter-spacing:123.210720px;}
.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;}
}
.ws9{word-spacing:-54.360000px;}
.ws4{word-spacing:-19.161240px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.506440px;}
.ws2{word-spacing:-14.319360px;}
.ws1{word-spacing:-13.875960px;}
.ws6{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.440960px;}
.wsa{word-spacing:-12.926160px;}
.ws7{word-spacing:0.000000px;}
._24{margin-left:-508.244160px;}
._25{margin-left:-502.873200px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._15{margin-left:-279.279360px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._1c{margin-left:-239.076720px;}
._d{margin-left:-229.059360px;}
._1b{margin-left:-210.107520px;}
._12{margin-left:-193.180320px;}
._11{margin-left:-192.135360px;}
._1e{margin-left:-190.192560px;}
._27{margin-left:-180.086400px;}
._2c{margin-left:-165.343680px;}
._10{margin-left:-162.594720px;}
._f{margin-left:-158.106240px;}
._1d{margin-left:-156.961440px;}
._4{margin-left:-150.068400px;}
._b{margin-left:-147.214080px;}
._18{margin-left:-144.731520px;}
._17{margin-left:-143.261280px;}
._c{margin-left:-142.048800px;}
._2b{margin-left:-136.863360px;}
._e{margin-left:-128.954880px;}
._26{margin-left:-127.359360px;}
._14{margin-left:-110.240640px;}
._2a{margin-left:-105.701760px;}
._29{margin-left:-104.319360px;}
._22{margin-left:-97.328160px;}
._23{margin-left:-95.985360px;}
._8{margin-left:-91.638240px;}
._21{margin-left:-82.800240px;}
._20{margin-left:-79.920000px;}
._16{margin-left:-77.674320px;}
._1a{margin-left:-63.803520px;}
._28{margin-left:-50.900520px;}
._19{margin-left:-46.719360px;}
._1f{margin-left:-30.850800px;}
._3e{margin-left:-5.844480px;}
._2d{margin-left:-4.811760px;}
._3d{margin-left:-3.647520px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._13{width:1.081440px;}
._2e{width:2.207760px;}
._38{width:3.645360px;}
._37{width:4.813920px;}
._39{width:6.677280px;}
._3a{width:7.984800px;}
._33{width:9.461040px;}
._32{width:10.501920px;}
._34{width:12.417840px;}
._3c{width:15.055920px;}
._30{width:16.613280px;}
._31{width:17.651520px;}
._3b{width:18.857520px;}
._2f{width:20.690160px;}
._41{width:22.088160px;}
._36{width:26.033520px;}
._35{width:27.074880px;}
._3f{width:28.726560px;}
._40{width:30.043440px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.940000px;}
.y63{bottom:92.880000px;}
.y31{bottom:100.260000px;}
.yeb{bottom:101.880000px;}
.yc1{bottom:103.320000px;}
.y62{bottom:113.940000px;}
.y163{bottom:115.020000px;}
.y94{bottom:116.100000px;}
.y30{bottom:121.320000px;}
.yea{bottom:122.940000px;}
.y140{bottom:124.560000px;}
.yc0{bottom:124.740000px;}
.y118{bottom:125.820000px;}
.y61{bottom:135.000000px;}
.y162{bottom:136.080000px;}
.y93{bottom:137.160000px;}
.y2f{bottom:142.740000px;}
.ye9{bottom:144.000000px;}
.y13f{bottom:145.620000px;}
.ybf{bottom:145.800000px;}
.y117{bottom:146.880000px;}
.y60{bottom:156.450000px;}
.y161{bottom:157.170000px;}
.y92{bottom:158.250000px;}
.y2e{bottom:163.830000px;}
.ye8{bottom:165.090000px;}
.y13e{bottom:166.710000px;}
.ybe{bottom:167.250000px;}
.y116{bottom:167.970000px;}
.y5f{bottom:177.510000px;}
.y160{bottom:178.230000px;}
.y2d{bottom:184.890000px;}
.ye7{bottom:186.150000px;}
.y13d{bottom:187.770000px;}
.y91{bottom:188.310000px;}
.y115{bottom:189.030000px;}
.y5e{bottom:198.570000px;}
.y15f{bottom:199.290000px;}
.y2c{bottom:205.950000px;}
.ye6{bottom:207.210000px;}
.y13c{bottom:208.830000px;}
.y90{bottom:209.370000px;}
.y114{bottom:210.090000px;}
.ybd{bottom:218.370000px;}
.y5d{bottom:219.990000px;}
.y15e{bottom:220.350000px;}
.y2b{bottom:227.010000px;}
.ye5{bottom:228.270000px;}
.y13b{bottom:229.890000px;}
.y8f{bottom:230.430000px;}
.y113{bottom:231.150000px;}
.ybc{bottom:239.430000px;}
.y5c{bottom:241.050000px;}
.y15d{bottom:241.410000px;}
.y2a{bottom:248.070000px;}
.ye4{bottom:249.330000px;}
.y13a{bottom:250.950000px;}
.y8e{bottom:251.490000px;}
.y112{bottom:252.210000px;}
.ybb{bottom:261.030000px;}
.y15c{bottom:262.470000px;}
.y29{bottom:269.130000px;}
.ye3{bottom:270.390000px;}
.y5b{bottom:271.110000px;}
.y139{bottom:272.010000px;}
.y8d{bottom:272.550000px;}
.y111{bottom:273.270000px;}
.yba{bottom:282.450000px;}
.y15b{bottom:283.530000px;}
.y28{bottom:290.190000px;}
.ye2{bottom:291.450000px;}
.y5a{bottom:292.170000px;}
.y138{bottom:293.070000px;}
.y8c{bottom:293.610000px;}
.y110{bottom:294.330000px;}
.yb9{bottom:303.510000px;}
.y15a{bottom:304.590000px;}
.y27{bottom:311.250000px;}
.ye1{bottom:312.870000px;}
.y59{bottom:313.230000px;}
.y137{bottom:314.130000px;}
.y8b{bottom:314.670000px;}
.y10f{bottom:315.390000px;}
.yb8{bottom:324.570000px;}
.y159{bottom:325.650000px;}
.y26{bottom:332.310000px;}
.ye0{bottom:334.110000px;}
.y58{bottom:334.290000px;}
.y136{bottom:335.190000px;}
.y8a{bottom:335.730000px;}
.y10e{bottom:336.450000px;}
.yb7{bottom:345.630000px;}
.y158{bottom:346.710000px;}
.y25{bottom:353.370000px;}
.y57{bottom:355.530000px;}
.y135{bottom:356.250000px;}
.y89{bottom:356.790000px;}
.y10d{bottom:357.510000px;}
.yb6{bottom:366.690000px;}
.y157{bottom:367.770000px;}
.y24{bottom:374.430000px;}
.y56{bottom:376.950000px;}
.y134{bottom:377.310000px;}
.y88{bottom:377.850000px;}
.y10c{bottom:378.570000px;}
.yb5{bottom:387.570000px;}
.y156{bottom:388.830000px;}
.y23{bottom:395.490000px;}
.y55{bottom:398.010000px;}
.ydf{bottom:398.370000px;}
.y133{bottom:398.730000px;}
.y87{bottom:398.910000px;}
.y10b{bottom:399.630000px;}
.yb4{bottom:408.675000px;}
.y155{bottom:409.935000px;}
.y22{bottom:416.595000px;}
.y54{bottom:419.475000px;}
.yde{bottom:419.655000px;}
.y132{bottom:419.835000px;}
.y86{bottom:420.015000px;}
.y10a{bottom:420.735000px;}
.yb3{bottom:429.915000px;}
.y154{bottom:430.995000px;}
.y21{bottom:437.655000px;}
.y53{bottom:440.535000px;}
.y85{bottom:441.075000px;}
.y109{bottom:441.795000px;}
.yb2{bottom:451.335000px;}
.y153{bottom:452.055000px;}
.y20{bottom:458.715000px;}
.y52{bottom:461.595000px;}
.y84{bottom:462.135000px;}
.ydd{bottom:462.495000px;}
.y108{bottom:462.855000px;}
.yb1{bottom:472.395000px;}
.y152{bottom:473.115000px;}
.y1f{bottom:479.775000px;}
.y51{bottom:483.015000px;}
.y83{bottom:483.195000px;}
.y131{bottom:483.375000px;}
.ydc{bottom:483.555000px;}
.y107{bottom:483.915000px;}
.yb0{bottom:493.455000px;}
.y151{bottom:494.175000px;}
.y1e{bottom:503.355000px;}
.y50{bottom:504.075000px;}
.y82{bottom:504.255000px;}
.y130{bottom:504.435000px;}
.ydb{bottom:504.615000px;}
.y106{bottom:504.975000px;}
.y150{bottom:515.235000px;}
.yaf{bottom:523.515000px;}
.y1d{bottom:524.235000px;}
.y4f{bottom:525.135000px;}
.y81{bottom:525.315000px;}
.y12f{bottom:525.675000px;}
.y105{bottom:526.035000px;}
.yda{bottom:534.675000px;}
.y14f{bottom:536.295000px;}
.yae{bottom:544.935000px;}
.y4e{bottom:546.195000px;}
.y80{bottom:546.375000px;}
.y104{bottom:547.095000px;}
.y1c{bottom:554.295000px;}
.yd9{bottom:555.735000px;}
.y14e{bottom:557.355000px;}
.yad{bottom:565.995000px;}
.y4d{bottom:567.255000px;}
.y7f{bottom:567.435000px;}
.y103{bottom:568.155000px;}
.y1b{bottom:575.355000px;}
.yd8{bottom:576.795000px;}
.y14d{bottom:578.415000px;}
.yac{bottom:587.415000px;}
.y7e{bottom:588.495000px;}
.y4c{bottom:588.675000px;}
.y102{bottom:589.215000px;}
.y1a{bottom:596.415000px;}
.yd7{bottom:597.855000px;}
.y14c{bottom:599.475000px;}
.yab{bottom:608.655000px;}
.y7d{bottom:609.555000px;}
.y4b{bottom:609.735000px;}
.y101{bottom:610.275000px;}
.y12e{bottom:610.635000px;}
.y19{bottom:617.475000px;}
.yd6{bottom:618.915000px;}
.y14b{bottom:620.535000px;}
.yaa{bottom:630.075000px;}
.y100{bottom:631.335000px;}
.y7c{bottom:631.695000px;}
.y18{bottom:638.355000px;}
.y4a{bottom:639.795000px;}
.yd5{bottom:639.975000px;}
.y14a{bottom:641.595000px;}
.ya9{bottom:651.165000px;}
.yff{bottom:652.425000px;}
.y7b{bottom:652.785000px;}
.y17{bottom:659.445000px;}
.y49{bottom:660.885000px;}
.yd4{bottom:661.065000px;}
.y149{bottom:662.685000px;}
.ya8{bottom:672.585000px;}
.yfe{bottom:673.485000px;}
.y7a{bottom:673.845000px;}
.y12d{bottom:674.205000px;}
.y16{bottom:680.505000px;}
.y48{bottom:681.945000px;}
.yd3{bottom:682.485000px;}
.y148{bottom:683.745000px;}
.ya7{bottom:693.645000px;}
.yfd{bottom:694.545000px;}
.y79{bottom:694.905000px;}
.y12c{bottom:695.265000px;}
.y15{bottom:701.565000px;}
.y47{bottom:703.005000px;}
.yd2{bottom:703.725000px;}
.y147{bottom:704.805000px;}
.ya6{bottom:715.065000px;}
.yfc{bottom:715.605000px;}
.y78{bottom:715.965000px;}
.y12b{bottom:716.505000px;}
.y14{bottom:722.625000px;}
.y46{bottom:724.065000px;}
.yd1{bottom:725.145000px;}
.y146{bottom:725.865000px;}
.ya5{bottom:736.125000px;}
.y77{bottom:737.025000px;}
.y12a{bottom:737.925000px;}
.y13{bottom:743.685000px;}
.y45{bottom:745.305000px;}
.yfb{bottom:745.665000px;}
.yd0{bottom:746.205000px;}
.y145{bottom:746.925000px;}
.ya4{bottom:757.185000px;}
.y76{bottom:758.085000px;}
.y129{bottom:758.985000px;}
.y12{bottom:764.745000px;}
.y44{bottom:766.725000px;}
.ycf{bottom:767.625000px;}
.y144{bottom:767.985000px;}
.y75{bottom:779.145000px;}
.y128{bottom:780.045000px;}
.y11{bottom:785.805000px;}
.ya3{bottom:787.245000px;}
.y43{bottom:787.785000px;}
.yfa{bottom:788.145000px;}
.yce{bottom:788.685000px;}
.y143{bottom:789.045000px;}
.y74{bottom:800.205000px;}
.y127{bottom:801.105000px;}
.y10{bottom:806.865000px;}
.ya2{bottom:808.305000px;}
.y42{bottom:808.845000px;}
.yf9{bottom:809.565000px;}
.y142{bottom:810.105000px;}
.ycd{bottom:818.745000px;}
.y73{bottom:821.265000px;}
.y126{bottom:822.165000px;}
.yf{bottom:827.925000px;}
.ya1{bottom:829.365000px;}
.y41{bottom:829.905000px;}
.yf8{bottom:830.805000px;}
.y141{bottom:831.165000px;}
.ycc{bottom:839.805000px;}
.y72{bottom:842.325000px;}
.y125{bottom:843.225000px;}
.ye{bottom:849.165000px;}
.ya0{bottom:850.425000px;}
.y40{bottom:850.965000px;}
.yf7{bottom:852.225000px;}
.ycb{bottom:861.405000px;}
.y71{bottom:863.385000px;}
.y124{bottom:864.285000px;}
.y9f{bottom:871.485000px;}
.yd{bottom:872.385000px;}
.yf6{bottom:873.285000px;}
.yca{bottom:882.825000px;}
.y70{bottom:884.445000px;}
.y123{bottom:885.345000px;}
.y9e{bottom:892.545000px;}
.yc{bottom:893.445000px;}
.yf5{bottom:894.345000px;}
.yc9{bottom:903.930000px;}
.y6f{bottom:905.550000px;}
.y122{bottom:906.450000px;}
.y9d{bottom:913.650000px;}
.y3f{bottom:914.550000px;}
.yb{bottom:915.270000px;}
.yf4{bottom:915.450000px;}
.yc8{bottom:925.350000px;}
.y6e{bottom:926.610000px;}
.y121{bottom:927.510000px;}
.y9c{bottom:934.890000px;}
.y3e{bottom:935.610000px;}
.yf3{bottom:936.510000px;}
.ya{bottom:937.590000px;}
.yc7{bottom:946.410000px;}
.y6d{bottom:947.670000px;}
.y120{bottom:948.570000px;}
.y9b{bottom:956.130000px;}
.y3d{bottom:956.670000px;}
.yf2{bottom:957.570000px;}
.y9{bottom:961.350000px;}
.yc6{bottom:967.830000px;}
.y6c{bottom:968.730000px;}
.y11f{bottom:969.630000px;}
.y9a{bottom:977.190000px;}
.y3c{bottom:977.730000px;}
.yf1{bottom:978.630000px;}
.yc5{bottom:988.890000px;}
.y6b{bottom:989.790000px;}
.y11e{bottom:990.510000px;}
.y8{bottom:990.870000px;}
.y99{bottom:998.430000px;}
.y3b{bottom:999.150000px;}
.yf0{bottom:999.510000px;}
.yc4{bottom:1010.310000px;}
.y6a{bottom:1010.850000px;}
.y11d{bottom:1011.570000px;}
.y98{bottom:1019.850000px;}
.y3a{bottom:1020.210000px;}
.yef{bottom:1020.570000px;}
.y7{bottom:1021.830000px;}
.yc3{bottom:1031.370000px;}
.y69{bottom:1031.910000px;}
.y11c{bottom:1032.630000px;}
.y97{bottom:1040.910000px;}
.y39{bottom:1041.270000px;}
.yee{bottom:1041.630000px;}
.y68{bottom:1052.970000px;}
.y11b{bottom:1053.690000px;}
.y5{bottom:1059.810000px;}
.yc2{bottom:1061.610000px;}
.y96{bottom:1061.970000px;}
.y38{bottom:1062.330000px;}
.yed{bottom:1062.690000px;}
.y11a{bottom:1074.750000px;}
.y67{bottom:1083.030000px;}
.y37{bottom:1083.390000px;}
.yec{bottom:1083.750000px;}
.y4{bottom:1089.330000px;}
.y119{bottom:1095.810000px;}
.y66{bottom:1104.090000px;}
.y95{bottom:1104.450000px;}
.y36{bottom:1104.810000px;}
.y3{bottom:1118.850000px;}
.y65{bottom:1125.510000px;}
.y35{bottom:1125.870000px;}
.y64{bottom:1146.600000px;}
.y34{bottom:1146.960000px;}
.y2{bottom:1148.400000px;}
.y33{bottom:1174.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h8{height:59.439023px;}
.h6{height:61.189805px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:79.379987px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.x5{left:159.329987px;}
.x3{left:275.654987px;}
.x2{left:337.214987px;}
.x4{left:401.834987px;}
.x1{left:478.544987px;}
.xa{left:839.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.515200pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.394133pt;}
.lsd{letter-spacing:-0.156267pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.059733pt;}
.ls15{letter-spacing:-0.057600pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.021120pt;}
.ls7{letter-spacing:0.034560pt;}
.ls0{letter-spacing:0.054400pt;}
.lsb{letter-spacing:0.109333pt;}
.ls19{letter-spacing:0.124800pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.349867pt;}
.lse{letter-spacing:0.426133pt;}
.ls1{letter-spacing:0.581333pt;}
.lsf{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.805333pt;}
.ls1f{letter-spacing:0.912000pt;}
.ls1d{letter-spacing:7.632640pt;}
.ls22{letter-spacing:10.832640pt;}
.ls18{letter-spacing:22.352640pt;}
.ls3{letter-spacing:22.992640pt;}
.ls2{letter-spacing:24.272640pt;}
.ls1c{letter-spacing:35.152640pt;}
.ls21{letter-spacing:37.712640pt;}
.ls12{letter-spacing:41.056000pt;}
.ls5{letter-spacing:54.743040pt;}
.ls14{letter-spacing:109.520640pt;}
.ws9{word-spacing:-48.320000pt;}
.ws4{word-spacing:-17.032213pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.728320pt;}
.ws1{word-spacing:-12.334187pt;}
.ws6{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.947520pt;}
.wsa{word-spacing:-11.489920pt;}
.ws7{word-spacing:0.000000pt;}
._24{margin-left:-451.772587pt;}
._25{margin-left:-446.998400pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._15{margin-left:-248.248320pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._1c{margin-left:-212.512640pt;}
._d{margin-left:-203.608320pt;}
._1b{margin-left:-186.762240pt;}
._12{margin-left:-171.715840pt;}
._11{margin-left:-170.786987pt;}
._1e{margin-left:-169.060053pt;}
._27{margin-left:-160.076800pt;}
._2c{margin-left:-146.972160pt;}
._10{margin-left:-144.528640pt;}
._f{margin-left:-140.538880pt;}
._1d{margin-left:-139.521280pt;}
._4{margin-left:-133.394133pt;}
._b{margin-left:-130.856960pt;}
._18{margin-left:-128.650240pt;}
._17{margin-left:-127.343360pt;}
._c{margin-left:-126.265600pt;}
._2b{margin-left:-121.656320pt;}
._e{margin-left:-114.626560pt;}
._26{margin-left:-113.208320pt;}
._14{margin-left:-97.991680pt;}
._2a{margin-left:-93.957120pt;}
._29{margin-left:-92.728320pt;}
._22{margin-left:-86.513920pt;}
._23{margin-left:-85.320320pt;}
._8{margin-left:-81.456213pt;}
._21{margin-left:-73.600213pt;}
._20{margin-left:-71.040000pt;}
._16{margin-left:-69.043840pt;}
._1a{margin-left:-56.714240pt;}
._28{margin-left:-45.244907pt;}
._19{margin-left:-41.528320pt;}
._1f{margin-left:-27.422933pt;}
._3e{margin-left:-5.195093pt;}
._2d{margin-left:-4.277120pt;}
._3d{margin-left:-3.242240pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._13{width:0.961280pt;}
._2e{width:1.962453pt;}
._38{width:3.240320pt;}
._37{width:4.279040pt;}
._39{width:5.935360pt;}
._3a{width:7.097600pt;}
._33{width:8.409813pt;}
._32{width:9.335040pt;}
._34{width:11.038080pt;}
._3c{width:13.383040pt;}
._30{width:14.767360pt;}
._31{width:15.690240pt;}
._3b{width:16.762240pt;}
._2f{width:18.391253pt;}
._41{width:19.633920pt;}
._36{width:23.140907pt;}
._35{width:24.066560pt;}
._3f{width:25.534720pt;}
._40{width:26.705280pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.280000pt;}
.y63{bottom:82.560000pt;}
.y31{bottom:89.120000pt;}
.yeb{bottom:90.560000pt;}
.yc1{bottom:91.840000pt;}
.y62{bottom:101.280000pt;}
.y163{bottom:102.240000pt;}
.y94{bottom:103.200000pt;}
.y30{bottom:107.840000pt;}
.yea{bottom:109.280000pt;}
.y140{bottom:110.720000pt;}
.yc0{bottom:110.880000pt;}
.y118{bottom:111.840000pt;}
.y61{bottom:120.000000pt;}
.y162{bottom:120.960000pt;}
.y93{bottom:121.920000pt;}
.y2f{bottom:126.880000pt;}
.ye9{bottom:128.000000pt;}
.y13f{bottom:129.440000pt;}
.ybf{bottom:129.600000pt;}
.y117{bottom:130.560000pt;}
.y60{bottom:139.066667pt;}
.y161{bottom:139.706667pt;}
.y92{bottom:140.666667pt;}
.y2e{bottom:145.626667pt;}
.ye8{bottom:146.746667pt;}
.y13e{bottom:148.186667pt;}
.ybe{bottom:148.666667pt;}
.y116{bottom:149.306667pt;}
.y5f{bottom:157.786667pt;}
.y160{bottom:158.426667pt;}
.y2d{bottom:164.346667pt;}
.ye7{bottom:165.466667pt;}
.y13d{bottom:166.906667pt;}
.y91{bottom:167.386667pt;}
.y115{bottom:168.026667pt;}
.y5e{bottom:176.506667pt;}
.y15f{bottom:177.146667pt;}
.y2c{bottom:183.066667pt;}
.ye6{bottom:184.186667pt;}
.y13c{bottom:185.626667pt;}
.y90{bottom:186.106667pt;}
.y114{bottom:186.746667pt;}
.ybd{bottom:194.106667pt;}
.y5d{bottom:195.546667pt;}
.y15e{bottom:195.866667pt;}
.y2b{bottom:201.786667pt;}
.ye5{bottom:202.906667pt;}
.y13b{bottom:204.346667pt;}
.y8f{bottom:204.826667pt;}
.y113{bottom:205.466667pt;}
.ybc{bottom:212.826667pt;}
.y5c{bottom:214.266667pt;}
.y15d{bottom:214.586667pt;}
.y2a{bottom:220.506667pt;}
.ye4{bottom:221.626667pt;}
.y13a{bottom:223.066667pt;}
.y8e{bottom:223.546667pt;}
.y112{bottom:224.186667pt;}
.ybb{bottom:232.026667pt;}
.y15c{bottom:233.306667pt;}
.y29{bottom:239.226667pt;}
.ye3{bottom:240.346667pt;}
.y5b{bottom:240.986667pt;}
.y139{bottom:241.786667pt;}
.y8d{bottom:242.266667pt;}
.y111{bottom:242.906667pt;}
.yba{bottom:251.066667pt;}
.y15b{bottom:252.026667pt;}
.y28{bottom:257.946667pt;}
.ye2{bottom:259.066667pt;}
.y5a{bottom:259.706667pt;}
.y138{bottom:260.506667pt;}
.y8c{bottom:260.986667pt;}
.y110{bottom:261.626667pt;}
.yb9{bottom:269.786667pt;}
.y15a{bottom:270.746667pt;}
.y27{bottom:276.666667pt;}
.ye1{bottom:278.106667pt;}
.y59{bottom:278.426667pt;}
.y137{bottom:279.226667pt;}
.y8b{bottom:279.706667pt;}
.y10f{bottom:280.346667pt;}
.yb8{bottom:288.506667pt;}
.y159{bottom:289.466667pt;}
.y26{bottom:295.386667pt;}
.ye0{bottom:296.986667pt;}
.y58{bottom:297.146667pt;}
.y136{bottom:297.946667pt;}
.y8a{bottom:298.426667pt;}
.y10e{bottom:299.066667pt;}
.yb7{bottom:307.226667pt;}
.y158{bottom:308.186667pt;}
.y25{bottom:314.106667pt;}
.y57{bottom:316.026667pt;}
.y135{bottom:316.666667pt;}
.y89{bottom:317.146667pt;}
.y10d{bottom:317.786667pt;}
.yb6{bottom:325.946667pt;}
.y157{bottom:326.906667pt;}
.y24{bottom:332.826667pt;}
.y56{bottom:335.066667pt;}
.y134{bottom:335.386667pt;}
.y88{bottom:335.866667pt;}
.y10c{bottom:336.506667pt;}
.yb5{bottom:344.506667pt;}
.y156{bottom:345.626667pt;}
.y23{bottom:351.546667pt;}
.y55{bottom:353.786667pt;}
.ydf{bottom:354.106667pt;}
.y133{bottom:354.426667pt;}
.y87{bottom:354.586667pt;}
.y10b{bottom:355.226667pt;}
.yb4{bottom:363.266667pt;}
.y155{bottom:364.386667pt;}
.y22{bottom:370.306667pt;}
.y54{bottom:372.866667pt;}
.yde{bottom:373.026667pt;}
.y132{bottom:373.186667pt;}
.y86{bottom:373.346667pt;}
.y10a{bottom:373.986667pt;}
.yb3{bottom:382.146667pt;}
.y154{bottom:383.106667pt;}
.y21{bottom:389.026667pt;}
.y53{bottom:391.586667pt;}
.y85{bottom:392.066667pt;}
.y109{bottom:392.706667pt;}
.yb2{bottom:401.186667pt;}
.y153{bottom:401.826667pt;}
.y20{bottom:407.746667pt;}
.y52{bottom:410.306667pt;}
.y84{bottom:410.786667pt;}
.ydd{bottom:411.106667pt;}
.y108{bottom:411.426667pt;}
.yb1{bottom:419.906667pt;}
.y152{bottom:420.546667pt;}
.y1f{bottom:426.466667pt;}
.y51{bottom:429.346667pt;}
.y83{bottom:429.506667pt;}
.y131{bottom:429.666667pt;}
.ydc{bottom:429.826667pt;}
.y107{bottom:430.146667pt;}
.yb0{bottom:438.626667pt;}
.y151{bottom:439.266667pt;}
.y1e{bottom:447.426667pt;}
.y50{bottom:448.066667pt;}
.y82{bottom:448.226667pt;}
.y130{bottom:448.386667pt;}
.ydb{bottom:448.546667pt;}
.y106{bottom:448.866667pt;}
.y150{bottom:457.986667pt;}
.yaf{bottom:465.346667pt;}
.y1d{bottom:465.986667pt;}
.y4f{bottom:466.786667pt;}
.y81{bottom:466.946667pt;}
.y12f{bottom:467.266667pt;}
.y105{bottom:467.586667pt;}
.yda{bottom:475.266667pt;}
.y14f{bottom:476.706667pt;}
.yae{bottom:484.386667pt;}
.y4e{bottom:485.506667pt;}
.y80{bottom:485.666667pt;}
.y104{bottom:486.306667pt;}
.y1c{bottom:492.706667pt;}
.yd9{bottom:493.986667pt;}
.y14e{bottom:495.426667pt;}
.yad{bottom:503.106667pt;}
.y4d{bottom:504.226667pt;}
.y7f{bottom:504.386667pt;}
.y103{bottom:505.026667pt;}
.y1b{bottom:511.426667pt;}
.yd8{bottom:512.706667pt;}
.y14d{bottom:514.146667pt;}
.yac{bottom:522.146667pt;}
.y7e{bottom:523.106667pt;}
.y4c{bottom:523.266667pt;}
.y102{bottom:523.746667pt;}
.y1a{bottom:530.146667pt;}
.yd7{bottom:531.426667pt;}
.y14c{bottom:532.866667pt;}
.yab{bottom:541.026667pt;}
.y7d{bottom:541.826667pt;}
.y4b{bottom:541.986667pt;}
.y101{bottom:542.466667pt;}
.y12e{bottom:542.786667pt;}
.y19{bottom:548.866667pt;}
.yd6{bottom:550.146667pt;}
.y14b{bottom:551.586667pt;}
.yaa{bottom:560.066667pt;}
.y100{bottom:561.186667pt;}
.y7c{bottom:561.506667pt;}
.y18{bottom:567.426667pt;}
.y4a{bottom:568.706667pt;}
.yd5{bottom:568.866667pt;}
.y14a{bottom:570.306667pt;}
.ya9{bottom:578.813333pt;}
.yff{bottom:579.933333pt;}
.y7b{bottom:580.253333pt;}
.y17{bottom:586.173333pt;}
.y49{bottom:587.453333pt;}
.yd4{bottom:587.613333pt;}
.y149{bottom:589.053333pt;}
.ya8{bottom:597.853333pt;}
.yfe{bottom:598.653333pt;}
.y7a{bottom:598.973333pt;}
.y12d{bottom:599.293333pt;}
.y16{bottom:604.893333pt;}
.y48{bottom:606.173333pt;}
.yd3{bottom:606.653333pt;}
.y148{bottom:607.773333pt;}
.ya7{bottom:616.573333pt;}
.yfd{bottom:617.373333pt;}
.y79{bottom:617.693333pt;}
.y12c{bottom:618.013333pt;}
.y15{bottom:623.613333pt;}
.y47{bottom:624.893333pt;}
.yd2{bottom:625.533333pt;}
.y147{bottom:626.493333pt;}
.ya6{bottom:635.613333pt;}
.yfc{bottom:636.093333pt;}
.y78{bottom:636.413333pt;}
.y12b{bottom:636.893333pt;}
.y14{bottom:642.333333pt;}
.y46{bottom:643.613333pt;}
.yd1{bottom:644.573333pt;}
.y146{bottom:645.213333pt;}
.ya5{bottom:654.333333pt;}
.y77{bottom:655.133333pt;}
.y12a{bottom:655.933333pt;}
.y13{bottom:661.053333pt;}
.y45{bottom:662.493333pt;}
.yfb{bottom:662.813333pt;}
.yd0{bottom:663.293333pt;}
.y145{bottom:663.933333pt;}
.ya4{bottom:673.053333pt;}
.y76{bottom:673.853333pt;}
.y129{bottom:674.653333pt;}
.y12{bottom:679.773333pt;}
.y44{bottom:681.533333pt;}
.ycf{bottom:682.333333pt;}
.y144{bottom:682.653333pt;}
.y75{bottom:692.573333pt;}
.y128{bottom:693.373333pt;}
.y11{bottom:698.493333pt;}
.ya3{bottom:699.773333pt;}
.y43{bottom:700.253333pt;}
.yfa{bottom:700.573333pt;}
.yce{bottom:701.053333pt;}
.y143{bottom:701.373333pt;}
.y74{bottom:711.293333pt;}
.y127{bottom:712.093333pt;}
.y10{bottom:717.213333pt;}
.ya2{bottom:718.493333pt;}
.y42{bottom:718.973333pt;}
.yf9{bottom:719.613333pt;}
.y142{bottom:720.093333pt;}
.ycd{bottom:727.773333pt;}
.y73{bottom:730.013333pt;}
.y126{bottom:730.813333pt;}
.yf{bottom:735.933333pt;}
.ya1{bottom:737.213333pt;}
.y41{bottom:737.693333pt;}
.yf8{bottom:738.493333pt;}
.y141{bottom:738.813333pt;}
.ycc{bottom:746.493333pt;}
.y72{bottom:748.733333pt;}
.y125{bottom:749.533333pt;}
.ye{bottom:754.813333pt;}
.ya0{bottom:755.933333pt;}
.y40{bottom:756.413333pt;}
.yf7{bottom:757.533333pt;}
.ycb{bottom:765.693333pt;}
.y71{bottom:767.453333pt;}
.y124{bottom:768.253333pt;}
.y9f{bottom:774.653333pt;}
.yd{bottom:775.453333pt;}
.yf6{bottom:776.253333pt;}
.yca{bottom:784.733333pt;}
.y70{bottom:786.173333pt;}
.y123{bottom:786.973333pt;}
.y9e{bottom:793.373333pt;}
.yc{bottom:794.173333pt;}
.yf5{bottom:794.973333pt;}
.yc9{bottom:803.493333pt;}
.y6f{bottom:804.933333pt;}
.y122{bottom:805.733333pt;}
.y9d{bottom:812.133333pt;}
.y3f{bottom:812.933333pt;}
.yb{bottom:813.573333pt;}
.yf4{bottom:813.733333pt;}
.yc8{bottom:822.533333pt;}
.y6e{bottom:823.653333pt;}
.y121{bottom:824.453333pt;}
.y9c{bottom:831.013333pt;}
.y3e{bottom:831.653333pt;}
.yf3{bottom:832.453333pt;}
.ya{bottom:833.413333pt;}
.yc7{bottom:841.253333pt;}
.y6d{bottom:842.373333pt;}
.y120{bottom:843.173333pt;}
.y9b{bottom:849.893333pt;}
.y3d{bottom:850.373333pt;}
.yf2{bottom:851.173333pt;}
.y9{bottom:854.533333pt;}
.yc6{bottom:860.293333pt;}
.y6c{bottom:861.093333pt;}
.y11f{bottom:861.893333pt;}
.y9a{bottom:868.613333pt;}
.y3c{bottom:869.093333pt;}
.yf1{bottom:869.893333pt;}
.yc5{bottom:879.013333pt;}
.y6b{bottom:879.813333pt;}
.y11e{bottom:880.453333pt;}
.y8{bottom:880.773333pt;}
.y99{bottom:887.493333pt;}
.y3b{bottom:888.133333pt;}
.yf0{bottom:888.453333pt;}
.yc4{bottom:898.053333pt;}
.y6a{bottom:898.533333pt;}
.y11d{bottom:899.173333pt;}
.y98{bottom:906.533333pt;}
.y3a{bottom:906.853333pt;}
.yef{bottom:907.173333pt;}
.y7{bottom:908.293333pt;}
.yc3{bottom:916.773333pt;}
.y69{bottom:917.253333pt;}
.y11c{bottom:917.893333pt;}
.y97{bottom:925.253333pt;}
.y39{bottom:925.573333pt;}
.yee{bottom:925.893333pt;}
.y68{bottom:935.973333pt;}
.y11b{bottom:936.613333pt;}
.y5{bottom:942.053333pt;}
.yc2{bottom:943.653333pt;}
.y96{bottom:943.973333pt;}
.y38{bottom:944.293333pt;}
.yed{bottom:944.613333pt;}
.y11a{bottom:955.333333pt;}
.y67{bottom:962.693333pt;}
.y37{bottom:963.013333pt;}
.yec{bottom:963.333333pt;}
.y4{bottom:968.293333pt;}
.y119{bottom:974.053333pt;}
.y66{bottom:981.413333pt;}
.y95{bottom:981.733333pt;}
.y36{bottom:982.053333pt;}
.y3{bottom:994.533333pt;}
.y65{bottom:1000.453333pt;}
.y35{bottom:1000.773333pt;}
.y64{bottom:1019.200000pt;}
.y34{bottom:1019.520000pt;}
.y2{bottom:1020.800000pt;}
.y33{bottom:1043.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h8{height:52.834688pt;}
.h6{height:54.390938pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:70.559988pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.x5{left:141.626655pt;}
.x3{left:245.026655pt;}
.x2{left:299.746655pt;}
.x4{left:357.186655pt;}
.x1{left:425.373322pt;}
.xa{left:746.079988pt;}
}




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