
    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_898d9755943fb3e97f98a621.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_5158464c885af08c9e042418.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1d4148a55526ca19efdb4d02.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_75fed1d2a1a383d55ded3d5f.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_ef5b7a549006e16b27dfd66d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_28ab95b7b9686118a981885f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_c1a8cf1f90105baf962ec1a9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ed085f6d945eba304576faf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-8.220000px;}
.ls12{letter-spacing:-5.256000px;}
.ls10{letter-spacing:-5.040000px;}
.lse{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls2{letter-spacing:33.984000px;}
.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;}
}
.wsc{word-spacing:-18.864000px;}
.wsf{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.506480px;}
.ws5{word-spacing:-14.970240px;}
.wse{word-spacing:-12.960000px;}
.wsb{word-spacing:-12.204000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-9.787200px;}
._21{margin-left:-8.443680px;}
._4{margin-left:-7.276320px;}
._1d{margin-left:-6.120000px;}
._6{margin-left:-5.040960px;}
._1{margin-left:-4.021200px;}
._3{margin-left:-2.712000px;}
._2{margin-left:-1.075680px;}
._0{width:1.374480px;}
._f{width:2.664000px;}
._d{width:4.315680px;}
._e{width:5.472000px;}
._c{width:6.624000px;}
._10{width:7.672560px;}
._a{width:8.712960px;}
._9{width:9.724320px;}
._7{width:11.083680px;}
._8{width:12.543120px;}
._b{width:14.348880px;}
._13{width:15.497280px;}
._5{width:16.848000px;}
._11{width:19.020000px;}
._1e{width:20.024640px;}
._12{width:21.527040px;}
._14{width:22.680960px;}
._15{width:23.933520px;}
._1a{width:25.056000px;}
._1b{width:26.856000px;}
._1c{width:27.864000px;}
._16{width:29.376000px;}
._17{width:30.600000px;}
._18{width:32.616240px;}
._19{width:33.695040px;}
._2f{width:34.763760px;}
._3f{width:36.709200px;}
._38{width:37.723680px;}
._2c{width:38.921760px;}
._23{width:40.536000px;}
._39{width:42.415440px;}
._24{width:43.488000px;}
._22{width:44.773200px;}
._30{width:48.672000px;}
._31{width:49.824000px;}
._47{width:51.058800px;}
._1f{width:59.683680px;}
._3d{width:63.633600px;}
._25{width:66.744000px;}
._26{width:68.472000px;}
._3c{width:69.920880px;}
._40{width:71.712000px;}
._41{width:73.800000px;}
._3b{width:77.339760px;}
._3a{width:78.593520px;}
._28{width:80.419680px;}
._27{width:86.112000px;}
._36{width:101.448000px;}
._37{width:102.900000px;}
._2d{width:118.584000px;}
._2e{width:119.787360px;}
._42{width:131.827680px;}
._43{width:132.906480px;}
._44{width:134.712000px;}
._32{width:143.064000px;}
._33{width:144.648000px;}
._4a{width:169.752000px;}
._4b{width:170.808000px;}
._34{width:187.272000px;}
._35{width:188.285520px;}
._49{width:210.456000px;}
._48{width:212.184000px;}
._29{width:226.872000px;}
._2a{width:228.091680px;}
._2b{width:307.512000px;}
._3e{width:327.667680px;}
._45{width:559.524000px;}
._46{width:561.168000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(31,73,125);}
.fs1{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.979850px;}
.y3{bottom:3.600000px;}
.ybe{bottom:7.380000px;}
.ycd{bottom:7.560000px;}
.y2{bottom:9.000000px;}
.yc4{bottom:31.140000px;}
.yc6{bottom:31.320000px;}
.y12b{bottom:37.620000px;}
.y7b{bottom:37.800000px;}
.y2f{bottom:47.520000px;}
.y14b{bottom:49.140000px;}
.ybb{bottom:49.500000px;}
.y103{bottom:50.760000px;}
.yc3{bottom:55.080000px;}
.y158{bottom:61.200000px;}
.y7a{bottom:61.380000px;}
.y4a{bottom:61.740000px;}
.y10e{bottom:65.850000px;}
.y54{bottom:69.372000px;}
.y2e{bottom:71.316000px;}
.y14a{bottom:72.936000px;}
.y169{bottom:73.296000px;}
.y12a{bottom:73.476000px;}
.y102{bottom:74.376000px;}
.y4b{bottom:78.120000px;}
.yc2{bottom:78.840000px;}
.yc9{bottom:78.885000px;}
.y10d{bottom:80.610000px;}
.y10b{bottom:80.715000px;}
.y157{bottom:84.996000px;}
.y79{bottom:85.176000px;}
.yba{bottom:85.356000px;}
.ya0{bottom:85.536000px;}
.y53{bottom:87.555000px;}
.y49{bottom:93.096000px;}
.y2d{bottom:95.076000px;}
.y10c{bottom:95.550000px;}
.y168{bottom:97.056000px;}
.y101{bottom:98.316000px;}
.yc1{bottom:102.600000px;}
.yc8{bottom:102.645000px;}
.ycc{bottom:102.780000px;}
.y156{bottom:108.756000px;}
.y149{bottom:108.936000px;}
.y129{bottom:109.296000px;}
.y9f{bottom:109.476000px;}
.y2c{bottom:119.016000px;}
.y78{bottom:121.176000px;}
.y100{bottom:122.076000px;}
.yc0{bottom:126.390000px;}
.ycb{bottom:126.540000px;}
.yde{bottom:131.076000px;}
.y148{bottom:132.696000px;}
.y167{bottom:133.056000px;}
.y9e{bottom:133.236000px;}
.y2b{bottom:142.776000px;}
.y77{bottom:144.756000px;}
.y128{bottom:145.476000px;}
.yff{bottom:145.836000px;}
.ydd{bottom:154.830000px;}
.y147{bottom:156.450000px;}
.y166{bottom:156.630000px;}
.y9d{bottom:156.990000px;}
.y2a{bottom:166.530000px;}
.y171{bottom:168.510000px;}
.y76{bottom:168.690000px;}
.y127{bottom:169.050000px;}
.yfe{bottom:169.590000px;}
.ydc{bottom:178.590000px;}
.y165{bottom:180.390000px;}
.y9c{bottom:180.750000px;}
.y155{bottom:192.270000px;}
.y75{bottom:192.450000px;}
.yb9{bottom:192.810000px;}
.yfd{bottom:193.530000px;}
.y106{bottom:198.930000px;}
.ydb{bottom:202.350000px;}
.y29{bottom:202.530000px;}
.y164{bottom:204.150000px;}
.y9b{bottom:204.690000px;}
.y146{bottom:216.030000px;}
.y4d{bottom:216.150000px;}
.y74{bottom:216.210000px;}
.y126{bottom:216.570000px;}
.yfc{bottom:217.290000px;}
.y57{bottom:223.230000px;}
.y105{bottom:223.590000px;}
.y28{bottom:226.110000px;}
.y163{bottom:228.090000px;}
.y170{bottom:228.270000px;}
.y9a{bottom:228.450000px;}
.yb8{bottom:228.630000px;}
.y52{bottom:232.350000px;}
.y145{bottom:239.790000px;}
.y125{bottom:240.510000px;}
.yfb{bottom:241.050000px;}
.y56{bottom:241.410000px;}
.y27{bottom:249.870000px;}
.yda{bottom:250.050000px;}
.y51{bottom:250.530000px;}
.y73{bottom:251.850000px;}
.y99{bottom:252.210000px;}
.y4c{bottom:255.750000px;}
.y10a{bottom:257.190000px;}
.y55{bottom:259.590000px;}
.y124{bottom:264.270000px;}
.yb7{bottom:264.450000px;}
.y10f{bottom:264.705000px;}
.y109{bottom:272.130000px;}
.y26{bottom:273.810000px;}
.y162{bottom:275.610000px;}
.y144{bottom:275.790000px;}
.y98{bottom:275.970000px;}
.yfa{bottom:276.690000px;}
.y72{bottom:288.030000px;}
.y25{bottom:297.570000px;}
.y143{bottom:299.370000px;}
.yb6{bottom:300.270000px;}
.y71{bottom:311.610000px;}
.y123{bottom:311.790000px;}
.y97{bottom:311.970000px;}
.yf9{bottom:312.870000px;}
.y24{bottom:321.330000px;}
.y154{bottom:323.310000px;}
.yb5{bottom:323.850000px;}
.yd9{bottom:333.210000px;}
.y161{bottom:335.190000px;}
.y70{bottom:335.370000px;}
.y96{bottom:335.550000px;}
.yf8{bottom:336.495000px;}
.y153{bottom:347.115000px;}
.yb4{bottom:347.655000px;}
.y23{bottom:357.375000px;}
.y142{bottom:359.175000px;}
.y6f{bottom:359.355000px;}
.y95{bottom:359.535000px;}
.yf7{bottom:360.255000px;}
.yd8{bottom:369.435000px;}
.y108{bottom:370.905000px;}
.yb3{bottom:371.415000px;}
.y22{bottom:380.955000px;}
.y141{bottom:382.935000px;}
.y6e{bottom:383.115000px;}
.y94{bottom:383.295000px;}
.yf6{bottom:384.195000px;}
.y107{bottom:385.845000px;}
.y50{bottom:386.205000px;}
.yd7{bottom:393.015000px;}
.yb2{bottom:395.355000px;}
.y4f{bottom:404.385000px;}
.y21{bottom:404.895000px;}
.y152{bottom:406.695000px;}
.y6d{bottom:406.875000px;}
.y93{bottom:407.055000px;}
.yf5{bottom:407.955000px;}
.yd6{bottom:416.775000px;}
.y140{bottom:418.935000px;}
.yb1{bottom:419.115000px;}
.y4e{bottom:422.565000px;}
.y20{bottom:428.655000px;}
.y151{bottom:430.455000px;}
.y92{bottom:430.815000px;}
.yf4{bottom:431.715000px;}
.yd5{bottom:440.715000px;}
.y13f{bottom:442.515000px;}
.y15e{bottom:442.695000px;}
.y6c{bottom:442.875000px;}
.y122{bottom:443.055000px;}
.y1f{bottom:452.415000px;}
.y91{bottom:454.755000px;}
.ye6{bottom:454.935000px;}
.yf3{bottom:455.475000px;}
.yd4{bottom:464.475000px;}
.y13e{bottom:466.275000px;}
.y6b{bottom:466.455000px;}
.yb0{bottom:466.635000px;}
.y90{bottom:478.515000px;}
.yf2{bottom:479.415000px;}
.y1e{bottom:488.055000px;}
.yd3{bottom:488.235000px;}
.y13d{bottom:490.035000px;}
.y6a{bottom:490.215000px;}
.yaf{bottom:490.575000px;}
.y8f{bottom:502.275000px;}
.yf1{bottom:503.175000px;}
.yd2{bottom:511.995000px;}
.y150{bottom:513.975000px;}
.y69{bottom:514.155000px;}
.yae{bottom:514.335000px;}
.y1d{bottom:524.235000px;}
.y16f{bottom:525.855000px;}
.y8e{bottom:526.035000px;}
.yd1{bottom:535.935000px;}
.y160{bottom:537.735000px;}
.y68{bottom:537.915000px;}
.y121{bottom:538.095000px;}
.yf0{bottom:539.175000px;}
.y13c{bottom:549.795000px;}
.ye5{bottom:549.975000px;}
.yad{bottom:550.335000px;}
.y1c{bottom:559.695000px;}
.y67{bottom:561.675000px;}
.y120{bottom:561.855000px;}
.y8d{bottom:562.035000px;}
.yef{bottom:562.755000px;}
.yd0{bottom:571.395000px;}
.y13b{bottom:573.555000px;}
.ye4{bottom:573.735000px;}
.y48{bottom:573.915000px;}
.y66{bottom:585.435000px;}
.y8c{bottom:585.795000px;}
.yee{bottom:586.515000px;}
.y1b{bottom:595.875000px;}
.y14f{bottom:597.315000px;}
.y47{bottom:597.495000px;}
.yac{bottom:597.675000px;}
.ycf{bottom:607.605000px;}
.y16e{bottom:609.405000px;}
.y8b{bottom:609.585000px;}
.yed{bottom:610.305000px;}
.y1a{bottom:619.485000px;}
.y65{bottom:621.105000px;}
.y46{bottom:621.285000px;}
.yab{bottom:621.465000px;}
.y13a{bottom:633.165000px;}
.y8a{bottom:633.345000px;}
.y11f{bottom:633.705000px;}
.yec{bottom:634.245000px;}
.y19{bottom:643.245000px;}
.yce{bottom:643.425000px;}
.y45{bottom:645.225000px;}
.yaa{bottom:645.405000px;}
.y139{bottom:656.925000px;}
.y89{bottom:657.105000px;}
.y64{bottom:657.285000px;}
.yeb{bottom:658.005000px;}
.yca{bottom:660.345000px;}
.y18{bottom:667.005000px;}
.y44{bottom:668.985000px;}
.ya9{bottom:669.165000px;}
.y11e{bottom:669.525000px;}
.ye3{bottom:680.685000px;}
.y63{bottom:680.865000px;}
.yea{bottom:681.765000px;}
.y17{bottom:690.945000px;}
.y16d{bottom:692.745000px;}
.ya8{bottom:692.925000px;}
.y11d{bottom:693.105000px;}
.y14e{bottom:704.625000px;}
.y62{bottom:704.805000px;}
.y43{bottom:704.985000px;}
.y16{bottom:714.705000px;}
.y16c{bottom:716.505000px;}
.ya7{bottom:716.685000px;}
.ye2{bottom:716.865000px;}
.ye9{bottom:717.765000px;}
.y176{bottom:728.025000px;}
.y42{bottom:728.565000px;}
.y15{bottom:738.465000px;}
.y138{bottom:740.445000px;}
.ya6{bottom:740.625000px;}
.y88{bottom:740.805000px;}
.y41{bottom:752.325000px;}
.y16b{bottom:752.505000px;}
.ye8{bottom:753.585000px;}
.y14{bottom:762.225000px;}
.y175{bottom:763.845000px;}
.y137{bottom:764.205000px;}
.y87{bottom:764.385000px;}
.y11c{bottom:764.565000px;}
.y104{bottom:769.860000px;}
.y40{bottom:776.085000px;}
.ye7{bottom:785.085000px;}
.y13{bottom:786.165000px;}
.y136{bottom:787.965000px;}
.y86{bottom:788.145000px;}
.y11b{bottom:788.325000px;}
.y174{bottom:799.665000px;}
.y3f{bottom:800.025000px;}
.y15d{bottom:800.205000px;}
.yc7{bottom:803.265000px;}
.y12{bottom:809.925000px;}
.y85{bottom:811.905000px;}
.y11a{bottom:812.085000px;}
.y3e{bottom:823.785000px;}
.y135{bottom:823.965000px;}
.ya5{bottom:824.145000px;}
.y11{bottom:833.685000px;}
.y173{bottom:835.305000px;}
.y84{bottom:835.845000px;}
.y119{bottom:836.025000px;}
.y61{bottom:847.545000px;}
.ya4{bottom:847.725000px;}
.y10{bottom:857.445000px;}
.y3d{bottom:859.425000px;}
.y83{bottom:859.605000px;}
.y118{bottom:859.785000px;}
.y172{bottom:871.170000px;}
.y134{bottom:871.350000px;}
.ya3{bottom:871.530000px;}
.yf{bottom:881.430000px;}
.y60{bottom:883.230000px;}
.y82{bottom:883.410000px;}
.y117{bottom:883.590000px;}
.y133{bottom:895.290000px;}
.ya2{bottom:895.470000px;}
.y3c{bottom:895.650000px;}
.ye{bottom:905.190000px;}
.y81{bottom:907.170000px;}
.y116{bottom:907.350000px;}
.y3b{bottom:919.230000px;}
.y5f{bottom:919.410000px;}
.yc5{bottom:922.290000px;}
.yd{bottom:928.950000px;}
.y15c{bottom:931.110000px;}
.y115{bottom:931.290000px;}
.y80{bottom:942.810000px;}
.y3a{bottom:942.990000px;}
.y132{bottom:954.870000px;}
.y114{bottom:955.050000px;}
.yc{bottom:964.590000px;}
.y39{bottom:966.750000px;}
.y15b{bottom:966.930000px;}
.y131{bottom:978.630000px;}
.y113{bottom:978.810000px;}
.y7f{bottom:978.990000px;}
.y38{bottom:990.690000px;}
.y15f{bottom:990.870000px;}
.yb{bottom:1000.410000px;}
.y130{bottom:1002.390000px;}
.y7e{bottom:1002.570000px;}
.y37{bottom:1014.450000px;}
.y14d{bottom:1014.630000px;}
.ybf{bottom:1017.510000px;}
.y7d{bottom:1026.510000px;}
.ya{bottom:1036.590000px;}
.ye1{bottom:1038.210000px;}
.y12f{bottom:1038.390000px;}
.y112{bottom:1038.570000px;}
.y36{bottom:1050.090000px;}
.y7c{bottom:1050.270000px;}
.y5e{bottom:1050.450000px;}
.y9{bottom:1060.170000px;}
.y12e{bottom:1061.970000px;}
.y111{bottom:1062.150000px;}
.ye0{bottom:1073.850000px;}
.y5d{bottom:1074.030000px;}
.y15a{bottom:1074.210000px;}
.y8{bottom:1080.690000px;}
.y12d{bottom:1085.910000px;}
.y110{bottom:1086.090000px;}
.y35{bottom:1086.270000px;}
.y5c{bottom:1097.790000px;}
.y14c{bottom:1097.970000px;}
.y7{bottom:1105.170000px;}
.y34{bottom:1109.850000px;}
.ydf{bottom:1110.030000px;}
.y5b{bottom:1121.730000px;}
.y12c{bottom:1121.910000px;}
.y33{bottom:1133.610000px;}
.y16a{bottom:1133.790000px;}
.y5a{bottom:1145.520000px;}
.y6{bottom:1146.600000px;}
.y32{bottom:1157.400000px;}
.y159{bottom:1157.580000px;}
.ybd{bottom:1161.180000px;}
.y59{bottom:1169.280000px;}
.y31{bottom:1181.340000px;}
.ya1{bottom:1181.520000px;}
.y5{bottom:1188.000000px;}
.y58{bottom:1204.920000px;}
.y30{bottom:1205.100000px;}
.ybc{bottom:1205.280000px;}
.y1{bottom:1238.400000px;}
.h3{height:17.280000px;}
.h11{height:23.760000px;}
.h5{height:30.077578px;}
.hc{height:52.066406px;}
.h18{height:53.709961px;}
.h19{height:59.343750px;}
.h2{height:61.189805px;}
.h9{height:62.244492px;}
.h4{height:62.327813px;}
.h10{height:65.884219px;}
.hb{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:74.704922px;}
.hd{height:75.093750px;}
.h17{height:89.516602px;}
.h13{height:95.220000px;}
.h6{height:101.601562px;}
.h14{height:119.016000px;}
.h12{height:142.776000px;}
.h15{height:142.920000px;}
.hf{height:143.226562px;}
.h7{height:145.125000px;}
.h16{height:451.620000px;}
.he{height:476.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.640000px;}
.w3{width:121.176000px;}
.w6{width:127.656000px;}
.w9{width:138.636000px;}
.w8{width:201.090000px;}
.w7{width:247.710000px;}
.w4{width:606.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.920000px;}
.x3{left:9.000000px;}
.x2{left:57.420000px;}
.x6{left:74.339987px;}
.xc{left:101.375987px;}
.x8{left:110.915987px;}
.x9{left:126.035987px;}
.x29{left:128.375987px;}
.x7{left:148.895987px;}
.x4{left:179.310000px;}
.x1a{left:194.909987px;}
.x1c{left:201.990000px;}
.x18{left:203.189987px;}
.x28{left:208.769987px;}
.x1e{left:219.089987px;}
.x1{left:220.889987px;}
.x19{left:222.629987px;}
.x25{left:259.919987px;}
.x27{left:270.179987px;}
.x26{left:283.319987px;}
.xe{left:303.734987px;}
.x10{left:313.814987px;}
.xf{left:337.214987px;}
.x20{left:357.119987px;}
.x17{left:363.314987px;}
.x11{left:365.294987px;}
.x21{left:367.094987px;}
.x12{left:369.794987px;}
.x13{left:373.394987px;}
.x1f{left:377.099987px;}
.x16{left:384.914987px;}
.xb{left:403.994987px;}
.xa{left:448.994987px;}
.x24{left:460.259987px;}
.x23{left:514.829987px;}
.x15{left:527.009987px;}
.x22{left:542.729987px;}
.x14{left:546.449987px;}
.x1d{left:650.805000px;}
.xd{left:722.489987px;}
.x5{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-7.306667pt;}
.ls12{letter-spacing:-4.672000pt;}
.ls10{letter-spacing:-4.480000pt;}
.lse{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls2{letter-spacing:30.208000pt;}
.wsc{word-spacing:-16.768000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.672427pt;}
.ws5{word-spacing:-13.306880pt;}
.wse{word-spacing:-11.520000pt;}
.wsb{word-spacing:-10.848000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-8.699733pt;}
._21{margin-left:-7.505493pt;}
._4{margin-left:-6.467840pt;}
._1d{margin-left:-5.440000pt;}
._6{margin-left:-4.480853pt;}
._1{margin-left:-3.574400pt;}
._3{margin-left:-2.410667pt;}
._2{margin-left:-0.956160pt;}
._0{width:1.221760pt;}
._f{width:2.368000pt;}
._d{width:3.836160pt;}
._e{width:4.864000pt;}
._c{width:5.888000pt;}
._10{width:6.820053pt;}
._a{width:7.744853pt;}
._9{width:8.643840pt;}
._7{width:9.852160pt;}
._8{width:11.149440pt;}
._b{width:12.754560pt;}
._13{width:13.775360pt;}
._5{width:14.976000pt;}
._11{width:16.906667pt;}
._1e{width:17.799680pt;}
._12{width:19.135147pt;}
._14{width:20.160853pt;}
._15{width:21.274240pt;}
._1a{width:22.272000pt;}
._1b{width:23.872000pt;}
._1c{width:24.768000pt;}
._16{width:26.112000pt;}
._17{width:27.200000pt;}
._18{width:28.992213pt;}
._19{width:29.951147pt;}
._2f{width:30.901120pt;}
._3f{width:32.630400pt;}
._38{width:33.532160pt;}
._2c{width:34.597120pt;}
._23{width:36.032000pt;}
._39{width:37.702613pt;}
._24{width:38.656000pt;}
._22{width:39.798400pt;}
._30{width:43.264000pt;}
._31{width:44.288000pt;}
._47{width:45.385600pt;}
._1f{width:53.052160pt;}
._3d{width:56.563200pt;}
._25{width:59.328000pt;}
._26{width:60.864000pt;}
._3c{width:62.151893pt;}
._40{width:63.744000pt;}
._41{width:65.600000pt;}
._3b{width:68.746453pt;}
._3a{width:69.860907pt;}
._28{width:71.484160pt;}
._27{width:76.544000pt;}
._36{width:90.176000pt;}
._37{width:91.466667pt;}
._2d{width:105.408000pt;}
._2e{width:106.477653pt;}
._42{width:117.180160pt;}
._43{width:118.139093pt;}
._44{width:119.744000pt;}
._32{width:127.168000pt;}
._33{width:128.576000pt;}
._4a{width:150.890667pt;}
._4b{width:151.829333pt;}
._34{width:166.464000pt;}
._35{width:167.364907pt;}
._49{width:187.072000pt;}
._48{width:188.608000pt;}
._29{width:201.664000pt;}
._2a{width:202.748160pt;}
._2b{width:273.344000pt;}
._3e{width:291.260160pt;}
._45{width:497.354667pt;}
._46{width:498.816000pt;}
.fs1{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.759867pt;}
.y3{bottom:3.200000pt;}
.ybe{bottom:6.560000pt;}
.ycd{bottom:6.720000pt;}
.y2{bottom:8.000000pt;}
.yc4{bottom:27.680000pt;}
.yc6{bottom:27.840000pt;}
.y12b{bottom:33.440000pt;}
.y7b{bottom:33.600000pt;}
.y2f{bottom:42.240000pt;}
.y14b{bottom:43.680000pt;}
.ybb{bottom:44.000000pt;}
.y103{bottom:45.120000pt;}
.yc3{bottom:48.960000pt;}
.y158{bottom:54.400000pt;}
.y7a{bottom:54.560000pt;}
.y4a{bottom:54.880000pt;}
.y10e{bottom:58.533333pt;}
.y54{bottom:61.664000pt;}
.y2e{bottom:63.392000pt;}
.y14a{bottom:64.832000pt;}
.y169{bottom:65.152000pt;}
.y12a{bottom:65.312000pt;}
.y102{bottom:66.112000pt;}
.y4b{bottom:69.440000pt;}
.yc2{bottom:70.080000pt;}
.yc9{bottom:70.120000pt;}
.y10d{bottom:71.653333pt;}
.y10b{bottom:71.746667pt;}
.y157{bottom:75.552000pt;}
.y79{bottom:75.712000pt;}
.yba{bottom:75.872000pt;}
.ya0{bottom:76.032000pt;}
.y53{bottom:77.826667pt;}
.y49{bottom:82.752000pt;}
.y2d{bottom:84.512000pt;}
.y10c{bottom:84.933333pt;}
.y168{bottom:86.272000pt;}
.y101{bottom:87.392000pt;}
.yc1{bottom:91.200000pt;}
.yc8{bottom:91.240000pt;}
.ycc{bottom:91.360000pt;}
.y156{bottom:96.672000pt;}
.y149{bottom:96.832000pt;}
.y129{bottom:97.152000pt;}
.y9f{bottom:97.312000pt;}
.y2c{bottom:105.792000pt;}
.y78{bottom:107.712000pt;}
.y100{bottom:108.512000pt;}
.yc0{bottom:112.346667pt;}
.ycb{bottom:112.480000pt;}
.yde{bottom:116.512000pt;}
.y148{bottom:117.952000pt;}
.y167{bottom:118.272000pt;}
.y9e{bottom:118.432000pt;}
.y2b{bottom:126.912000pt;}
.y77{bottom:128.672000pt;}
.y128{bottom:129.312000pt;}
.yff{bottom:129.632000pt;}
.ydd{bottom:137.626667pt;}
.y147{bottom:139.066667pt;}
.y166{bottom:139.226667pt;}
.y9d{bottom:139.546667pt;}
.y2a{bottom:148.026667pt;}
.y171{bottom:149.786667pt;}
.y76{bottom:149.946667pt;}
.y127{bottom:150.266667pt;}
.yfe{bottom:150.746667pt;}
.ydc{bottom:158.746667pt;}
.y165{bottom:160.346667pt;}
.y9c{bottom:160.666667pt;}
.y155{bottom:170.906667pt;}
.y75{bottom:171.066667pt;}
.yb9{bottom:171.386667pt;}
.yfd{bottom:172.026667pt;}
.y106{bottom:176.826667pt;}
.ydb{bottom:179.866667pt;}
.y29{bottom:180.026667pt;}
.y164{bottom:181.466667pt;}
.y9b{bottom:181.946667pt;}
.y146{bottom:192.026667pt;}
.y4d{bottom:192.133333pt;}
.y74{bottom:192.186667pt;}
.y126{bottom:192.506667pt;}
.yfc{bottom:193.146667pt;}
.y57{bottom:198.426667pt;}
.y105{bottom:198.746667pt;}
.y28{bottom:200.986667pt;}
.y163{bottom:202.746667pt;}
.y170{bottom:202.906667pt;}
.y9a{bottom:203.066667pt;}
.yb8{bottom:203.226667pt;}
.y52{bottom:206.533333pt;}
.y145{bottom:213.146667pt;}
.y125{bottom:213.786667pt;}
.yfb{bottom:214.266667pt;}
.y56{bottom:214.586667pt;}
.y27{bottom:222.106667pt;}
.yda{bottom:222.266667pt;}
.y51{bottom:222.693333pt;}
.y73{bottom:223.866667pt;}
.y99{bottom:224.186667pt;}
.y4c{bottom:227.333333pt;}
.y10a{bottom:228.613333pt;}
.y55{bottom:230.746667pt;}
.y124{bottom:234.906667pt;}
.yb7{bottom:235.066667pt;}
.y10f{bottom:235.293333pt;}
.y109{bottom:241.893333pt;}
.y26{bottom:243.386667pt;}
.y162{bottom:244.986667pt;}
.y144{bottom:245.146667pt;}
.y98{bottom:245.306667pt;}
.yfa{bottom:245.946667pt;}
.y72{bottom:256.026667pt;}
.y25{bottom:264.506667pt;}
.y143{bottom:266.106667pt;}
.yb6{bottom:266.906667pt;}
.y71{bottom:276.986667pt;}
.y123{bottom:277.146667pt;}
.y97{bottom:277.306667pt;}
.yf9{bottom:278.106667pt;}
.y24{bottom:285.626667pt;}
.y154{bottom:287.386667pt;}
.yb5{bottom:287.866667pt;}
.yd9{bottom:296.186667pt;}
.y161{bottom:297.946667pt;}
.y70{bottom:298.106667pt;}
.y96{bottom:298.266667pt;}
.yf8{bottom:299.106667pt;}
.y153{bottom:308.546667pt;}
.yb4{bottom:309.026667pt;}
.y23{bottom:317.666667pt;}
.y142{bottom:319.266667pt;}
.y6f{bottom:319.426667pt;}
.y95{bottom:319.586667pt;}
.yf7{bottom:320.226667pt;}
.yd8{bottom:328.386667pt;}
.y108{bottom:329.693333pt;}
.yb3{bottom:330.146667pt;}
.y22{bottom:338.626667pt;}
.y141{bottom:340.386667pt;}
.y6e{bottom:340.546667pt;}
.y94{bottom:340.706667pt;}
.yf6{bottom:341.506667pt;}
.y107{bottom:342.973333pt;}
.y50{bottom:343.293333pt;}
.yd7{bottom:349.346667pt;}
.yb2{bottom:351.426667pt;}
.y4f{bottom:359.453333pt;}
.y21{bottom:359.906667pt;}
.y152{bottom:361.506667pt;}
.y6d{bottom:361.666667pt;}
.y93{bottom:361.826667pt;}
.yf5{bottom:362.626667pt;}
.yd6{bottom:370.466667pt;}
.y140{bottom:372.386667pt;}
.yb1{bottom:372.546667pt;}
.y4e{bottom:375.613333pt;}
.y20{bottom:381.026667pt;}
.y151{bottom:382.626667pt;}
.y92{bottom:382.946667pt;}
.yf4{bottom:383.746667pt;}
.yd5{bottom:391.746667pt;}
.y13f{bottom:393.346667pt;}
.y15e{bottom:393.506667pt;}
.y6c{bottom:393.666667pt;}
.y122{bottom:393.826667pt;}
.y1f{bottom:402.146667pt;}
.y91{bottom:404.226667pt;}
.ye6{bottom:404.386667pt;}
.yf3{bottom:404.866667pt;}
.yd4{bottom:412.866667pt;}
.y13e{bottom:414.466667pt;}
.y6b{bottom:414.626667pt;}
.yb0{bottom:414.786667pt;}
.y90{bottom:425.346667pt;}
.yf2{bottom:426.146667pt;}
.y1e{bottom:433.826667pt;}
.yd3{bottom:433.986667pt;}
.y13d{bottom:435.586667pt;}
.y6a{bottom:435.746667pt;}
.yaf{bottom:436.066667pt;}
.y8f{bottom:446.466667pt;}
.yf1{bottom:447.266667pt;}
.yd2{bottom:455.106667pt;}
.y150{bottom:456.866667pt;}
.y69{bottom:457.026667pt;}
.yae{bottom:457.186667pt;}
.y1d{bottom:465.986667pt;}
.y16f{bottom:467.426667pt;}
.y8e{bottom:467.586667pt;}
.yd1{bottom:476.386667pt;}
.y160{bottom:477.986667pt;}
.y68{bottom:478.146667pt;}
.y121{bottom:478.306667pt;}
.yf0{bottom:479.266667pt;}
.y13c{bottom:488.706667pt;}
.ye5{bottom:488.866667pt;}
.yad{bottom:489.186667pt;}
.y1c{bottom:497.506667pt;}
.y67{bottom:499.266667pt;}
.y120{bottom:499.426667pt;}
.y8d{bottom:499.586667pt;}
.yef{bottom:500.226667pt;}
.yd0{bottom:507.906667pt;}
.y13b{bottom:509.826667pt;}
.ye4{bottom:509.986667pt;}
.y48{bottom:510.146667pt;}
.y66{bottom:520.386667pt;}
.y8c{bottom:520.706667pt;}
.yee{bottom:521.346667pt;}
.y1b{bottom:529.666667pt;}
.y14f{bottom:530.946667pt;}
.y47{bottom:531.106667pt;}
.yac{bottom:531.266667pt;}
.ycf{bottom:540.093333pt;}
.y16e{bottom:541.693333pt;}
.y8b{bottom:541.853333pt;}
.yed{bottom:542.493333pt;}
.y1a{bottom:550.653333pt;}
.y65{bottom:552.093333pt;}
.y46{bottom:552.253333pt;}
.yab{bottom:552.413333pt;}
.y13a{bottom:562.813333pt;}
.y8a{bottom:562.973333pt;}
.y11f{bottom:563.293333pt;}
.yec{bottom:563.773333pt;}
.y19{bottom:571.773333pt;}
.yce{bottom:571.933333pt;}
.y45{bottom:573.533333pt;}
.yaa{bottom:573.693333pt;}
.y139{bottom:583.933333pt;}
.y89{bottom:584.093333pt;}
.y64{bottom:584.253333pt;}
.yeb{bottom:584.893333pt;}
.yca{bottom:586.973333pt;}
.y18{bottom:592.893333pt;}
.y44{bottom:594.653333pt;}
.ya9{bottom:594.813333pt;}
.y11e{bottom:595.133333pt;}
.ye3{bottom:605.053333pt;}
.y63{bottom:605.213333pt;}
.yea{bottom:606.013333pt;}
.y17{bottom:614.173333pt;}
.y16d{bottom:615.773333pt;}
.ya8{bottom:615.933333pt;}
.y11d{bottom:616.093333pt;}
.y14e{bottom:626.333333pt;}
.y62{bottom:626.493333pt;}
.y43{bottom:626.653333pt;}
.y16{bottom:635.293333pt;}
.y16c{bottom:636.893333pt;}
.ya7{bottom:637.053333pt;}
.ye2{bottom:637.213333pt;}
.ye9{bottom:638.013333pt;}
.y176{bottom:647.133333pt;}
.y42{bottom:647.613333pt;}
.y15{bottom:656.413333pt;}
.y138{bottom:658.173333pt;}
.ya6{bottom:658.333333pt;}
.y88{bottom:658.493333pt;}
.y41{bottom:668.733333pt;}
.y16b{bottom:668.893333pt;}
.ye8{bottom:669.853333pt;}
.y14{bottom:677.533333pt;}
.y175{bottom:678.973333pt;}
.y137{bottom:679.293333pt;}
.y87{bottom:679.453333pt;}
.y11c{bottom:679.613333pt;}
.y104{bottom:684.320000pt;}
.y40{bottom:689.853333pt;}
.ye7{bottom:697.853333pt;}
.y13{bottom:698.813333pt;}
.y136{bottom:700.413333pt;}
.y86{bottom:700.573333pt;}
.y11b{bottom:700.733333pt;}
.y174{bottom:710.813333pt;}
.y3f{bottom:711.133333pt;}
.y15d{bottom:711.293333pt;}
.yc7{bottom:714.013333pt;}
.y12{bottom:719.933333pt;}
.y85{bottom:721.693333pt;}
.y11a{bottom:721.853333pt;}
.y3e{bottom:732.253333pt;}
.y135{bottom:732.413333pt;}
.ya5{bottom:732.573333pt;}
.y11{bottom:741.053333pt;}
.y173{bottom:742.493333pt;}
.y84{bottom:742.973333pt;}
.y119{bottom:743.133333pt;}
.y61{bottom:753.373333pt;}
.ya4{bottom:753.533333pt;}
.y10{bottom:762.173333pt;}
.y3d{bottom:763.933333pt;}
.y83{bottom:764.093333pt;}
.y118{bottom:764.253333pt;}
.y172{bottom:774.373333pt;}
.y134{bottom:774.533333pt;}
.ya3{bottom:774.693333pt;}
.yf{bottom:783.493333pt;}
.y60{bottom:785.093333pt;}
.y82{bottom:785.253333pt;}
.y117{bottom:785.413333pt;}
.y133{bottom:795.813333pt;}
.ya2{bottom:795.973333pt;}
.y3c{bottom:796.133333pt;}
.ye{bottom:804.613333pt;}
.y81{bottom:806.373333pt;}
.y116{bottom:806.533333pt;}
.y3b{bottom:817.093333pt;}
.y5f{bottom:817.253333pt;}
.yc5{bottom:819.813333pt;}
.yd{bottom:825.733333pt;}
.y15c{bottom:827.653333pt;}
.y115{bottom:827.813333pt;}
.y80{bottom:838.053333pt;}
.y3a{bottom:838.213333pt;}
.y132{bottom:848.773333pt;}
.y114{bottom:848.933333pt;}
.yc{bottom:857.413333pt;}
.y39{bottom:859.333333pt;}
.y15b{bottom:859.493333pt;}
.y131{bottom:869.893333pt;}
.y113{bottom:870.053333pt;}
.y7f{bottom:870.213333pt;}
.y38{bottom:880.613333pt;}
.y15f{bottom:880.773333pt;}
.yb{bottom:889.253333pt;}
.y130{bottom:891.013333pt;}
.y7e{bottom:891.173333pt;}
.y37{bottom:901.733333pt;}
.y14d{bottom:901.893333pt;}
.ybf{bottom:904.453333pt;}
.y7d{bottom:912.453333pt;}
.ya{bottom:921.413333pt;}
.ye1{bottom:922.853333pt;}
.y12f{bottom:923.013333pt;}
.y112{bottom:923.173333pt;}
.y36{bottom:933.413333pt;}
.y7c{bottom:933.573333pt;}
.y5e{bottom:933.733333pt;}
.y9{bottom:942.373333pt;}
.y12e{bottom:943.973333pt;}
.y111{bottom:944.133333pt;}
.ye0{bottom:954.533333pt;}
.y5d{bottom:954.693333pt;}
.y15a{bottom:954.853333pt;}
.y8{bottom:960.613333pt;}
.y12d{bottom:965.253333pt;}
.y110{bottom:965.413333pt;}
.y35{bottom:965.573333pt;}
.y5c{bottom:975.813333pt;}
.y14c{bottom:975.973333pt;}
.y7{bottom:982.373333pt;}
.y34{bottom:986.533333pt;}
.ydf{bottom:986.693333pt;}
.y5b{bottom:997.093333pt;}
.y12c{bottom:997.253333pt;}
.y33{bottom:1007.653333pt;}
.y16a{bottom:1007.813333pt;}
.y5a{bottom:1018.240000pt;}
.y6{bottom:1019.200000pt;}
.y32{bottom:1028.800000pt;}
.y159{bottom:1028.960000pt;}
.ybd{bottom:1032.160000pt;}
.y59{bottom:1039.360000pt;}
.y31{bottom:1050.080000pt;}
.ya1{bottom:1050.240000pt;}
.y5{bottom:1056.000000pt;}
.y58{bottom:1071.040000pt;}
.y30{bottom:1071.200000pt;}
.ybc{bottom:1071.360000pt;}
.y1{bottom:1100.800000pt;}
.h3{height:15.360000pt;}
.h11{height:21.120000pt;}
.h5{height:26.735625pt;}
.hc{height:46.281250pt;}
.h18{height:47.742188pt;}
.h19{height:52.750000pt;}
.h2{height:54.390938pt;}
.h9{height:55.328437pt;}
.h4{height:55.402500pt;}
.h10{height:58.563750pt;}
.hb{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:66.404375pt;}
.hd{height:66.750000pt;}
.h17{height:79.570312pt;}
.h13{height:84.640000pt;}
.h6{height:90.312500pt;}
.h14{height:105.792000pt;}
.h12{height:126.912000pt;}
.h15{height:127.040000pt;}
.hf{height:127.312500pt;}
.h7{height:129.000000pt;}
.h16{height:401.440000pt;}
.he{height:423.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.680000pt;}
.w3{width:107.712000pt;}
.w6{width:113.472000pt;}
.w9{width:123.232000pt;}
.w8{width:178.746667pt;}
.w7{width:220.186667pt;}
.w4{width:539.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.040000pt;}
.x3{left:8.000000pt;}
.x2{left:51.040000pt;}
.x6{left:66.079988pt;}
.xc{left:90.111988pt;}
.x8{left:98.591988pt;}
.x9{left:112.031988pt;}
.x29{left:114.111988pt;}
.x7{left:132.351988pt;}
.x4{left:159.386667pt;}
.x1a{left:173.253322pt;}
.x1c{left:179.546667pt;}
.x18{left:180.613322pt;}
.x28{left:185.573322pt;}
.x1e{left:194.746655pt;}
.x1{left:196.346655pt;}
.x19{left:197.893322pt;}
.x25{left:231.039988pt;}
.x27{left:240.159988pt;}
.x26{left:251.839988pt;}
.xe{left:269.986655pt;}
.x10{left:278.946655pt;}
.xf{left:299.746655pt;}
.x20{left:317.439988pt;}
.x17{left:322.946655pt;}
.x11{left:324.706655pt;}
.x21{left:326.306655pt;}
.x12{left:328.706655pt;}
.x13{left:331.906655pt;}
.x1f{left:335.199988pt;}
.x16{left:342.146655pt;}
.xb{left:359.106655pt;}
.xa{left:399.106655pt;}
.x24{left:409.119988pt;}
.x23{left:457.626655pt;}
.x15{left:468.453322pt;}
.x22{left:482.426655pt;}
.x14{left:485.733322pt;}
.x1d{left:578.493333pt;}
.xd{left:642.213322pt;}
.x5{left:699.493333pt;}
}




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