
    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_f907833ee65a5b7ac4d1e860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_b3ea750746ae54fcd3e694b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103027;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_b99fe435bc13cb1db583beb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_f2bf076e88f3dad232ee9fcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.103027;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_6ba6a6abb19328000f9eb113.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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab9fd275bd217f77220a6c3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_14c4bdf68c373a1969ea787f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_175de0e53857b572b8ecc155.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_d080e0decb67d30766e6b179.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5e918b5b54eb46df6b3e95d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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;}
.ls14{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.984000px;}
.ls16{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.496200px;}
.ls2{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.452400px;}
.lsd{letter-spacing:-0.423600px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.774720px;}
.ls12{letter-spacing:2.160000px;}
.ls9{letter-spacing:27.516000px;}
.lsc{letter-spacing:87.860160px;}
.ls10{letter-spacing:93.744000px;}
.lsa{letter-spacing:122.544000px;}
.ls5{letter-spacing:139.513440px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.wsb{word-spacing:-54.720000px;}
.ws4{word-spacing:-21.510000px;}
.ws5{word-spacing:-20.880000px;}
.wse{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.352000px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.244880px;}
.wsa{word-spacing:-13.050000px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-5.644800px;}
._17{margin-left:-4.550400px;}
._16{margin-left:-3.098880px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._4{width:2.670720px;}
._3{width:4.076160px;}
._5{width:5.450400px;}
._6{width:7.056000px;}
._7{width:8.841600px;}
._8{width:10.584000px;}
._e{width:11.603520px;}
._11{width:12.931200px;}
._c{width:14.535360px;}
._b{width:15.880320px;}
._1c{width:17.415360px;}
._10{width:19.512000px;}
._f{width:20.520000px;}
._9{width:21.620160px;}
._a{width:23.074560px;}
._22{width:24.098880px;}
._d{width:25.108800px;}
._1a{width:26.120160px;}
._12{width:27.360000px;}
._13{width:28.998720px;}
._1f{width:30.668784px;}
._14{width:31.680000px;}
._15{width:33.206400px;}
._20{width:34.315200px;}
._32{width:35.459040px;}
._1d{width:36.688320px;}
._1e{width:38.076480px;}
._18{width:39.096000px;}
._19{width:40.198080px;}
._2e{width:46.128960px;}
._29{width:47.692800px;}
._27{width:49.608000px;}
._2d{width:54.915840px;}
._30{width:56.393280px;}
._37{width:66.600000px;}
._38{width:67.691520px;}
._23{width:70.490880px;}
._33{width:72.630720px;}
._25{width:76.311360px;}
._2b{width:82.408320px;}
._26{width:84.925440px;}
._2f{width:87.880320px;}
._2c{width:96.560640px;}
._24{width:112.176000px;}
._28{width:114.998400px;}
._2a{width:119.782080px;}
._35{width:130.950720px;}
._36{width:132.488160px;}
._21{width:148.334400px;}
._31{width:152.340480px;}
._34{width:398.658720px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs6{font-size:60.624000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:108.000000px;}
.y86{bottom:-0.510000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:0.465000px;}
.y98{bottom:1.950000px;}
.y8c{bottom:3.420000px;}
.y88{bottom:6.660000px;}
.y71{bottom:10.440000px;}
.yc0{bottom:10.485000px;}
.y63{bottom:10.800000px;}
.yc6{bottom:10.830000px;}
.yef{bottom:11.880000px;}
.ye6{bottom:12.240000px;}
.y109{bottom:12.270000px;}
.y113{bottom:12.276000px;}
.ye9{bottom:12.285000px;}
.yee{bottom:14.040000px;}
.ye5{bottom:14.400000px;}
.y108{bottom:14.430000px;}
.y112{bottom:14.436000px;}
.ye8{bottom:14.445000px;}
.y8e{bottom:18.465000px;}
.y97{bottom:19.230000px;}
.y8b{bottom:20.700000px;}
.y9a{bottom:24.735000px;}
.y11e{bottom:30.600000px;}
.y6c{bottom:33.840000px;}
.yf6{bottom:33.885000px;}
.y6a{bottom:34.200000px;}
.y67{bottom:34.230000px;}
.y84{bottom:34.770000px;}
.y8a{bottom:38.730000px;}
.y11d{bottom:50.760000px;}
.y94{bottom:53.790000px;}
.ye1{bottom:56.916000px;}
.y6{bottom:57.240000px;}
.y66{bottom:57.270000px;}
.yf5{bottom:57.285000px;}
.y11c{bottom:70.920000px;}
.ye0{bottom:77.076000px;}
.y2a{bottom:77.436000px;}
.y70{bottom:80.310000px;}
.y69{bottom:80.640000px;}
.y65{bottom:80.670000px;}
.y91{bottom:87.990000px;}
.y6f{bottom:103.710000px;}
.yda{bottom:114.516000px;}
.yb6{bottom:117.756000px;}
.yfc{bottom:125.676000px;}
.y52{bottom:131.796000px;}
.y111{bottom:132.876000px;}
.y82{bottom:134.316000px;}
.y61{bottom:135.756000px;}
.yd9{bottom:145.476000px;}
.y15d{bottom:147.636000px;}
.yb5{bottom:148.716000px;}
.yfb{bottom:153.435000px;}
.y49{bottom:154.830000px;}
.y29{bottom:160.590000px;}
.y110{bottom:160.635000px;}
.y51{bottom:162.750000px;}
.y81{bottom:165.270000px;}
.y60{bottom:166.710000px;}
.y17b{bottom:169.950000px;}
.yd8{bottom:176.430000px;}
.y15c{bottom:178.950000px;}
.yb4{bottom:179.670000px;}
.yfa{bottom:181.155000px;}
.y48{bottom:185.790000px;}
.y18d{bottom:186.150000px;}
.y13a{bottom:186.870000px;}
.y10f{bottom:188.355000px;}
.y28{bottom:191.550000px;}
.y50{bottom:193.710000px;}
.y80{bottom:196.230000px;}
.y5f{bottom:197.715000px;}
.y17a{bottom:200.955000px;}
.yd7{bottom:207.795000px;}
.yf9{bottom:208.875000px;}
.y15b{bottom:209.955000px;}
.yb3{bottom:211.035000px;}
.y1b3{bottom:214.275000px;}
.y10e{bottom:216.075000px;}
.y47{bottom:217.155000px;}
.y11b{bottom:217.875000px;}
.y27{bottom:222.555000px;}
.y4f{bottom:224.715000px;}
.y7f{bottom:227.235000px;}
.y5e{bottom:229.035000px;}
.y1a2{bottom:230.115000px;}
.y179{bottom:231.915000px;}
.y11a{bottom:235.545000px;}
.yf8{bottom:236.625000px;}
.yd6{bottom:238.755000px;}
.y15a{bottom:240.915000px;}
.yb2{bottom:241.995000px;}
.y10d{bottom:243.465000px;}
.y1b2{bottom:245.235000px;}
.y46{bottom:248.115000px;}
.y139{bottom:249.195000px;}
.y26{bottom:253.875000px;}
.y4e{bottom:256.035000px;}
.y7e{bottom:258.555000px;}
.y5d{bottom:259.995000px;}
.y1a1{bottom:261.075000px;}
.y178{bottom:262.875000px;}
.y119{bottom:263.265000px;}
.yf7{bottom:264.345000px;}
.yd5{bottom:269.715000px;}
.y10c{bottom:271.185000px;}
.y159{bottom:271.875000px;}
.yb1{bottom:272.955000px;}
.y1b1{bottom:276.195000px;}
.y45{bottom:279.075000px;}
.y138{bottom:280.155000px;}
.y25{bottom:284.835000px;}
.y4d{bottom:286.995000px;}
.y7d{bottom:289.515000px;}
.y5c{bottom:290.955000px;}
.y118{bottom:290.985000px;}
.yf4{bottom:292.065000px;}
.y1a0{bottom:292.395000px;}
.y177{bottom:294.195000px;}
.y10b{bottom:298.905000px;}
.y158{bottom:303.195000px;}
.yb0{bottom:303.915000px;}
.y1b4{bottom:307.155000px;}
.yd4{bottom:309.675000px;}
.y137{bottom:311.115000px;}
.y44{bottom:313.275000px;}
.y24{bottom:315.795000px;}
.y4c{bottom:317.955000px;}
.y117{bottom:318.705000px;}
.y7c{bottom:320.475000px;}
.y5b{bottom:321.915000px;}
.y1b0{bottom:322.275000px;}
.y176{bottom:325.185000px;}
.y10a{bottom:326.670000px;}
.y157{bottom:334.185000px;}
.yaf{bottom:335.265000px;}
.yd3{bottom:336.345000px;}
.y19f{bottom:338.505000px;}
.y43{bottom:339.585000px;}
.y136{bottom:342.105000px;}
.y23{bottom:346.785000px;}
.y4b{bottom:348.945000px;}
.y7b{bottom:351.465000px;}
.y5a{bottom:353.265000px;}
.y175{bottom:356.145000px;}
.y18c{bottom:356.505000px;}
.yd2{bottom:360.465000px;}
.yf3{bottom:362.670000px;}
.y156{bottom:365.145000px;}
.y116{bottom:365.910000px;}
.yae{bottom:366.225000px;}
.y135{bottom:373.425000px;}
.y22{bottom:378.105000px;}
.y4a{bottom:380.265000px;}
.y7a{bottom:382.785000px;}
.y42{bottom:383.145000px;}
.y59{bottom:384.225000px;}
.yd1{bottom:384.585000px;}
.y174{bottom:387.105000px;}
.y18b{bottom:387.465000px;}
.yf2{bottom:390.390000px;}
.y115{bottom:393.630000px;}
.y155{bottom:396.105000px;}
.y8d{bottom:396.360000px;}
.yad{bottom:397.185000px;}
.y107{bottom:397.230000px;}
.y134{bottom:404.385000px;}
.yd0{bottom:408.705000px;}
.y21{bottom:409.065000px;}
.y41{bottom:411.225000px;}
.y79{bottom:413.745000px;}
.y58{bottom:415.185000px;}
.y19e{bottom:415.545000px;}
.yf1{bottom:418.140000px;}
.y173{bottom:418.425000px;}
.y114{bottom:421.380000px;}
.y106{bottom:424.980000px;}
.y154{bottom:427.425000px;}
.yac{bottom:428.145000px;}
.y1af{bottom:430.305000px;}
.ycf{bottom:432.825000px;}
.y18a{bottom:433.545000px;}
.y133{bottom:435.345000px;}
.y20{bottom:440.025000px;}
.y40{bottom:442.185000px;}
.y78{bottom:444.705000px;}
.yf0{bottom:445.860000px;}
.y57{bottom:446.145000px;}
.y105{bottom:449.100000px;}
.y172{bottom:449.430000px;}
.y90{bottom:451.080000px;}
.yce{bottom:456.630000px;}
.y153{bottom:458.430000px;}
.yab{bottom:459.510000px;}
.y19d{bottom:461.670000px;}
.y189{bottom:464.550000px;}
.y132{bottom:466.350000px;}
.y96{bottom:470.310000px;}
.y1f{bottom:471.030000px;}
.y3f{bottom:473.190000px;}
.yed{bottom:473.580000px;}
.y77{bottom:475.710000px;}
.y104{bottom:476.820000px;}
.y56{bottom:477.510000px;}
.y171{bottom:480.390000px;}
.ycd{bottom:480.750000px;}
.y95{bottom:487.590000px;}
.y152{bottom:489.390000px;}
.yaa{bottom:490.470000px;}
.y1ae{bottom:492.630000px;}
.y131{bottom:497.670000px;}
.yec{bottom:500.970000px;}
.y1e{bottom:501.990000px;}
.y3e{bottom:504.510000px;}
.y103{bottom:504.570000px;}
.y93{bottom:504.870000px;}
.y76{bottom:507.030000px;}
.y19c{bottom:507.750000px;}
.y55{bottom:508.470000px;}
.y188{bottom:510.630000px;}
.y170{bottom:511.350000px;}
.y151{bottom:520.350000px;}
.ya9{bottom:521.430000px;}
.y92{bottom:522.150000px;}
.y1ad{bottom:523.590000px;}
.y130{bottom:528.630000px;}
.yeb{bottom:528.690000px;}
.ycc{bottom:528.990000px;}
.y102{bottom:532.290000px;}
.y1d{bottom:533.310000px;}
.y3d{bottom:535.470000px;}
.y75{bottom:537.990000px;}
.y19b{bottom:538.710000px;}
.y54{bottom:539.430000px;}
.y187{bottom:541.590000px;}
.y16f{bottom:542.670000px;}
.y150{bottom:551.670000px;}
.ya8{bottom:552.390000px;}
.ycb{bottom:552.750000px;}
.yea{bottom:556.410000px;}
.y12f{bottom:559.590000px;}
.y101{bottom:560.010000px;}
.y1c{bottom:564.270000px;}
.y3c{bottom:566.430000px;}
.y74{bottom:568.950000px;}
.y19a{bottom:569.670000px;}
.y16e{bottom:573.630000px;}
.yca{bottom:576.900000px;}
.y53{bottom:579.420000px;}
.y14f{bottom:582.660000px;}
.ya7{bottom:583.740000px;}
.ye7{bottom:584.130000px;}
.y87{bottom:585.000000px;}
.y100{bottom:587.415000px;}
.y186{bottom:587.700000px;}
.y12e{bottom:590.580000px;}
.y1b{bottom:595.260000px;}
.y3b{bottom:597.420000px;}
.y73{bottom:599.940000px;}
.y1ac{bottom:600.660000px;}
.yc9{bottom:601.020000px;}
.y16d{bottom:604.620000px;}
.ye4{bottom:611.895000px;}
.y14e{bottom:613.620000px;}
.ya6{bottom:614.700000px;}
.yff{bottom:615.135000px;}
.y199{bottom:615.780000px;}
.y185{bottom:618.660000px;}
.y12d{bottom:621.900000px;}
.yc8{bottom:625.140000px;}
.y1a{bottom:626.220000px;}
.y3a{bottom:628.740000px;}
.y72{bottom:631.260000px;}
.y1ab{bottom:631.620000px;}
.y16c{bottom:635.580000px;}
.ye3{bottom:639.615000px;}
.yfe{bottom:642.855000px;}
.y14d{bottom:644.580000px;}
.ya5{bottom:645.660000px;}
.y198{bottom:646.740000px;}
.y6e{bottom:648.900000px;}
.y184{bottom:649.620000px;}
.y19{bottom:651.060000px;}
.y12c{bottom:652.860000px;}
.y39{bottom:659.700000px;}
.y89{bottom:663.480000px;}
.y16b{bottom:666.900000px;}
.y18{bottom:668.700000px;}
.yc7{bottom:673.020000px;}
.y14c{bottom:675.900000px;}
.ya4{bottom:676.620000px;}
.y1aa{bottom:677.700000px;}
.y183{bottom:680.940000px;}
.y12b{bottom:683.820000px;}
.y38{bottom:690.660000px;}
.y197{bottom:692.820000px;}
.y17{bottom:695.700000px;}
.yc5{bottom:697.140000px;}
.y16a{bottom:697.860000px;}
.y14b{bottom:706.890000px;}
.ya3{bottom:707.970000px;}
.y1a9{bottom:709.050000px;}
.yfd{bottom:713.445000px;}
.y12a{bottom:714.810000px;}
.yc4{bottom:721.290000px;}
.y37{bottom:721.650000px;}
.y196{bottom:723.810000px;}
.ye2{bottom:724.245000px;}
.y16{bottom:726.690000px;}
.y182{bottom:727.050000px;}
.y169{bottom:728.850000px;}
.y14a{bottom:737.850000px;}
.ya2{bottom:738.930000px;}
.yc3{bottom:745.050000px;}
.ydf{bottom:745.485000px;}
.y129{bottom:746.130000px;}
.y36{bottom:752.970000px;}
.y195{bottom:755.130000px;}
.y83{bottom:757.440000px;}
.y15{bottom:758.010000px;}
.y168{bottom:759.810000px;}
.y6d{bottom:765.930000px;}
.yde{bottom:767.130000px;}
.y149{bottom:768.810000px;}
.yc2{bottom:769.170000px;}
.y85{bottom:774.210000px;}
.y128{bottom:777.090000px;}
.ya1{bottom:778.890000px;}
.y14{bottom:779.610000px;}
.y35{bottom:783.930000px;}
.y194{bottom:786.090000px;}
.ydd{bottom:786.210000px;}
.y181{bottom:788.970000px;}
.y6b{bottom:790.050000px;}
.y167{bottom:791.130000px;}
.yc1{bottom:793.290000px;}
.y13{bottom:797.610000px;}
.y148{bottom:800.130000px;}
.ydc{bottom:804.930000px;}
.y127{bottom:808.050000px;}
.y99{bottom:812.880000px;}
.y34{bottom:814.890000px;}
.y12{bottom:815.250000px;}
.y1a8{bottom:817.050000px;}
.ybf{bottom:817.410000px;}
.ya0{bottom:818.850000px;}
.y180{bottom:819.930000px;}
.y166{bottom:822.090000px;}
.ydb{bottom:822.930000px;}
.y147{bottom:831.135000px;}
.y193{bottom:832.215000px;}
.y11{bottom:833.295000px;}
.y68{bottom:837.255000px;}
.y126{bottom:839.055000px;}
.ybe{bottom:841.575000px;}
.y33{bottom:845.895000px;}
.y1a7{bottom:848.055000px;}
.y9f{bottom:850.215000px;}
.y10{bottom:851.295000px;}
.y165{bottom:853.095000px;}
.y146{bottom:862.095000px;}
.y192{bottom:863.175000px;}
.ybd{bottom:865.335000px;}
.yf{bottom:870.375000px;}
.y32{bottom:877.215000px;}
.y9e{bottom:881.175000px;}
.y17f{bottom:882.255000px;}
.y164{bottom:884.055000px;}
.ybc{bottom:889.455000px;}
.y145{bottom:893.055000px;}
.y1a6{bottom:894.135000px;}
.ye{bottom:898.815000px;}
.y125{bottom:901.335000px;}
.y31{bottom:908.175000px;}
.y191{bottom:909.255000px;}
.y9d{bottom:912.135000px;}
.ybb{bottom:913.575000px;}
.y163{bottom:915.375000px;}
.y144{bottom:924.375000px;}
.y1a5{bottom:925.095000px;}
.yd{bottom:927.255000px;}
.y17e{bottom:928.335000px;}
.y64{bottom:931.215000px;}
.y124{bottom:932.295000px;}
.yba{bottom:937.695000px;}
.y30{bottom:939.135000px;}
.y190{bottom:940.215000px;}
.y9c{bottom:943.095000px;}
.y162{bottom:946.335000px;}
.yc{bottom:949.215000px;}
.y143{bottom:955.365000px;}
.y1a4{bottom:956.445000px;}
.y17d{bottom:959.325000px;}
.yb9{bottom:961.485000px;}
.y123{bottom:963.285000px;}
.y2f{bottom:970.125000px;}
.y18f{bottom:971.205000px;}
.yb{bottom:977.325000px;}
.y9b{bottom:983.445000px;}
.y142{bottom:986.325000px;}
.y122{bottom:994.245000px;}
.y17c{bottom:999.285000px;}
.y2e{bottom:1001.445000px;}
.y18e{bottom:1002.525000px;}
.y161{bottom:1008.285000px;}
.yb8{bottom:1009.005000px;}
.ya{bottom:1011.165000px;}
.y141{bottom:1017.285000px;}
.y62{bottom:1025.205000px;}
.y121{bottom:1025.565000px;}
.y2d{bottom:1032.405000px;}
.y1a3{bottom:1033.485000px;}
.y160{bottom:1039.245000px;}
.y9{bottom:1047.525000px;}
.y140{bottom:1048.245000px;}
.yb7{bottom:1056.165000px;}
.y120{bottom:1056.525000px;}
.y2c{bottom:1063.365000px;}
.y15f{bottom:1070.565000px;}
.y8{bottom:1073.805000px;}
.y13f{bottom:1079.610000px;}
.y2b{bottom:1094.370000px;}
.y7{bottom:1094.730000px;}
.y11f{bottom:1096.530000px;}
.y15e{bottom:1101.570000px;}
.y13e{bottom:1110.570000px;}
.y5{bottom:1115.610000px;}
.y4{bottom:1137.210000px;}
.y13d{bottom:1141.530000px;}
.y3{bottom:1156.290000px;}
.y13c{bottom:1172.850000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y13b{bottom:1195.170000px;}
.h14{height:23.040000px;}
.h21{height:23.076000px;}
.hc{height:23.400000px;}
.h1e{height:23.436000px;}
.h28{height:26.640000px;}
.h27{height:26.676000px;}
.h25{height:27.000000px;}
.h26{height:27.036000px;}
.h17{height:33.480000px;}
.h1b{height:41.760000px;}
.h1f{height:46.440000px;}
.h10{height:46.476000px;}
.h20{height:46.800000px;}
.hd{height:48.013594px;}
.h8{height:48.601406px;}
.h12{height:49.320000px;}
.h1d{height:51.996094px;}
.ha{height:53.067656px;}
.h1a{height:53.194008px;}
.h15{height:53.640000px;}
.h19{height:53.717344px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.h13{height:60.155156px;}
.h16{height:60.298383px;}
.h2a{height:61.927031px;}
.h9{height:63.175781px;}
.hb{height:63.351562px;}
.h1c{height:63.478266px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h29{height:69.840000px;}
.h24{height:69.876000px;}
.h7{height:74.181094px;}
.hf{height:93.240000px;}
.he{height:93.276000px;}
.h6{height:95.923828px;}
.h18{height:102.240000px;}
.h11{height:116.316000px;}
.h23{height:892.500000px;}
.h22{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:52.596000px;}
.w1b{width:62.640000px;}
.w1c{width:71.676000px;}
.w17{width:73.476000px;}
.w13{width:73.836000px;}
.w18{width:77.040000px;}
.w19{width:80.316000px;}
.w14{width:83.916000px;}
.w1a{width:84.276000px;}
.w12{width:87.480000px;}
.w15{width:88.920000px;}
.w16{width:96.876000px;}
.wc{width:105.516000px;}
.w7{width:151.200000px;}
.w3{width:203.475000px;}
.w8{width:206.280000px;}
.w6{width:207.000000px;}
.w4{width:220.425000px;}
.w11{width:258.945000px;}
.w5{width:301.065000px;}
.w9{width:354.240000px;}
.wb{width:637.455000px;}
.wa{width:641.880000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w10{width:1262.879981px;}
.we{width:1262.880000px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:7.920000px;}
.x19{left:11.370000px;}
.x13{left:13.032000px;}
.x1b{left:16.632000px;}
.x17{left:31.035000px;}
.x23{left:53.676000px;}
.x2a{left:57.600000px;}
.x15{left:63.795000px;}
.x20{left:64.980000px;}
.x1c{left:71.355000px;}
.xe{left:83.196000px;}
.x1{left:106.235987px;}
.x8{left:116.675987px;}
.x1e{left:122.970000px;}
.x22{left:124.560000px;}
.x1a{left:125.640000px;}
.x12{left:127.080000px;}
.xd{left:133.271987px;}
.x14{left:150.194987px;}
.x16{left:154.800000px;}
.xc{left:160.274987px;}
.x2{left:241.664987px;}
.x9{left:278.744987px;}
.x10{left:287.385000px;}
.xb{left:305.384987px;}
.x2b{left:317.265000px;}
.xa{left:336.389987px;}
.x2c{left:405.465000px;}
.x1d{left:411.840000px;}
.x4{left:433.259987px;}
.x7{left:446.579987px;}
.x1f{left:449.819987px;}
.x21{left:476.819987px;}
.x2d{left:480.030000px;}
.x18{left:505.080000px;}
.x11{left:508.890000px;}
.x6{left:527.249987px;}
.x2e{left:564.660000px;}
.x26{left:611.459981px;}
.x29{left:618.659981px;}
.x2f{left:654.300000px;}
.x24{left:691.845000px;}
.x3{left:696.524987px;}
.x30{left:751.890000px;}
.x5{left:761.729987px;}
.x25{left:798.090000px;}
.x28{left:803.009981px;}
.x31{left:826.455000px;}
.x32{left:904.215000px;}
.x33{left:985.245000px;}
.x27{left:1066.289981px;}
.x34{left:1070.250000px;}
.x35{left:1133.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.874667pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.441067pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.402133pt;}
.lsd{letter-spacing:-0.376533pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.688640pt;}
.ls12{letter-spacing:1.920000pt;}
.ls9{letter-spacing:24.458667pt;}
.lsc{letter-spacing:78.097920pt;}
.ls10{letter-spacing:83.328000pt;}
.lsa{letter-spacing:108.928000pt;}
.ls5{letter-spacing:124.011947pt;}
.wsf{word-spacing:-64.000000pt;}
.wsb{word-spacing:-48.640000pt;}
.ws4{word-spacing:-19.120000pt;}
.ws5{word-spacing:-18.560000pt;}
.wse{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.424000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.894613pt;}
.wsd{word-spacing:-11.773227pt;}
.wsa{word-spacing:-11.600000pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-5.017600pt;}
._17{margin-left:-4.044800pt;}
._16{margin-left:-2.754560pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._4{width:2.373973pt;}
._3{width:3.623253pt;}
._5{width:4.844800pt;}
._6{width:6.272000pt;}
._7{width:7.859200pt;}
._8{width:9.408000pt;}
._e{width:10.314240pt;}
._11{width:11.494400pt;}
._c{width:12.920320pt;}
._b{width:14.115840pt;}
._1c{width:15.480320pt;}
._10{width:17.344000pt;}
._f{width:18.240000pt;}
._9{width:19.217920pt;}
._a{width:20.510720pt;}
._22{width:21.421227pt;}
._d{width:22.318933pt;}
._1a{width:23.217920pt;}
._12{width:24.320000pt;}
._13{width:25.776640pt;}
._1f{width:27.261141pt;}
._14{width:28.160000pt;}
._15{width:29.516800pt;}
._20{width:30.502400pt;}
._32{width:31.519147pt;}
._1d{width:32.611840pt;}
._1e{width:33.845760pt;}
._18{width:34.752000pt;}
._19{width:35.731627pt;}
._2e{width:41.003520pt;}
._29{width:42.393600pt;}
._27{width:44.096000pt;}
._2d{width:48.814080pt;}
._30{width:50.127360pt;}
._37{width:59.200000pt;}
._38{width:60.170240pt;}
._23{width:62.658560pt;}
._33{width:64.560640pt;}
._25{width:67.832320pt;}
._2b{width:73.251840pt;}
._26{width:75.489280pt;}
._2f{width:78.115840pt;}
._2c{width:85.831680pt;}
._24{width:99.712000pt;}
._28{width:102.220800pt;}
._2a{width:106.472960pt;}
._35{width:116.400640pt;}
._36{width:117.767253pt;}
._21{width:131.852800pt;}
._31{width:135.413760pt;}
._34{width:354.363307pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs6{font-size:53.888000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:96.000000pt;}
.y86{bottom:-0.453333pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:0.413333pt;}
.y98{bottom:1.733333pt;}
.y8c{bottom:3.040000pt;}
.y88{bottom:5.920000pt;}
.y71{bottom:9.280000pt;}
.yc0{bottom:9.320000pt;}
.y63{bottom:9.600000pt;}
.yc6{bottom:9.626667pt;}
.yef{bottom:10.560000pt;}
.ye6{bottom:10.880000pt;}
.y109{bottom:10.906667pt;}
.y113{bottom:10.912000pt;}
.ye9{bottom:10.920000pt;}
.yee{bottom:12.480000pt;}
.ye5{bottom:12.800000pt;}
.y108{bottom:12.826667pt;}
.y112{bottom:12.832000pt;}
.ye8{bottom:12.840000pt;}
.y8e{bottom:16.413333pt;}
.y97{bottom:17.093333pt;}
.y8b{bottom:18.400000pt;}
.y9a{bottom:21.986667pt;}
.y11e{bottom:27.200000pt;}
.y6c{bottom:30.080000pt;}
.yf6{bottom:30.120000pt;}
.y6a{bottom:30.400000pt;}
.y67{bottom:30.426667pt;}
.y84{bottom:30.906667pt;}
.y8a{bottom:34.426667pt;}
.y11d{bottom:45.120000pt;}
.y94{bottom:47.813333pt;}
.ye1{bottom:50.592000pt;}
.y6{bottom:50.880000pt;}
.y66{bottom:50.906667pt;}
.yf5{bottom:50.920000pt;}
.y11c{bottom:63.040000pt;}
.ye0{bottom:68.512000pt;}
.y2a{bottom:68.832000pt;}
.y70{bottom:71.386667pt;}
.y69{bottom:71.680000pt;}
.y65{bottom:71.706667pt;}
.y91{bottom:78.213333pt;}
.y6f{bottom:92.186667pt;}
.yda{bottom:101.792000pt;}
.yb6{bottom:104.672000pt;}
.yfc{bottom:111.712000pt;}
.y52{bottom:117.152000pt;}
.y111{bottom:118.112000pt;}
.y82{bottom:119.392000pt;}
.y61{bottom:120.672000pt;}
.yd9{bottom:129.312000pt;}
.y15d{bottom:131.232000pt;}
.yb5{bottom:132.192000pt;}
.yfb{bottom:136.386667pt;}
.y49{bottom:137.626667pt;}
.y29{bottom:142.746667pt;}
.y110{bottom:142.786667pt;}
.y51{bottom:144.666667pt;}
.y81{bottom:146.906667pt;}
.y60{bottom:148.186667pt;}
.y17b{bottom:151.066667pt;}
.yd8{bottom:156.826667pt;}
.y15c{bottom:159.066667pt;}
.yb4{bottom:159.706667pt;}
.yfa{bottom:161.026667pt;}
.y48{bottom:165.146667pt;}
.y18d{bottom:165.466667pt;}
.y13a{bottom:166.106667pt;}
.y10f{bottom:167.426667pt;}
.y28{bottom:170.266667pt;}
.y50{bottom:172.186667pt;}
.y80{bottom:174.426667pt;}
.y5f{bottom:175.746667pt;}
.y17a{bottom:178.626667pt;}
.yd7{bottom:184.706667pt;}
.yf9{bottom:185.666667pt;}
.y15b{bottom:186.626667pt;}
.yb3{bottom:187.586667pt;}
.y1b3{bottom:190.466667pt;}
.y10e{bottom:192.066667pt;}
.y47{bottom:193.026667pt;}
.y11b{bottom:193.666667pt;}
.y27{bottom:197.826667pt;}
.y4f{bottom:199.746667pt;}
.y7f{bottom:201.986667pt;}
.y5e{bottom:203.586667pt;}
.y1a2{bottom:204.546667pt;}
.y179{bottom:206.146667pt;}
.y11a{bottom:209.373333pt;}
.yf8{bottom:210.333333pt;}
.yd6{bottom:212.226667pt;}
.y15a{bottom:214.146667pt;}
.yb2{bottom:215.106667pt;}
.y10d{bottom:216.413333pt;}
.y1b2{bottom:217.986667pt;}
.y46{bottom:220.546667pt;}
.y139{bottom:221.506667pt;}
.y26{bottom:225.666667pt;}
.y4e{bottom:227.586667pt;}
.y7e{bottom:229.826667pt;}
.y5d{bottom:231.106667pt;}
.y1a1{bottom:232.066667pt;}
.y178{bottom:233.666667pt;}
.y119{bottom:234.013333pt;}
.yf7{bottom:234.973333pt;}
.yd5{bottom:239.746667pt;}
.y10c{bottom:241.053333pt;}
.y159{bottom:241.666667pt;}
.yb1{bottom:242.626667pt;}
.y1b1{bottom:245.506667pt;}
.y45{bottom:248.066667pt;}
.y138{bottom:249.026667pt;}
.y25{bottom:253.186667pt;}
.y4d{bottom:255.106667pt;}
.y7d{bottom:257.346667pt;}
.y5c{bottom:258.626667pt;}
.y118{bottom:258.653333pt;}
.yf4{bottom:259.613333pt;}
.y1a0{bottom:259.906667pt;}
.y177{bottom:261.506667pt;}
.y10b{bottom:265.693333pt;}
.y158{bottom:269.506667pt;}
.yb0{bottom:270.146667pt;}
.y1b4{bottom:273.026667pt;}
.yd4{bottom:275.266667pt;}
.y137{bottom:276.546667pt;}
.y44{bottom:278.466667pt;}
.y24{bottom:280.706667pt;}
.y4c{bottom:282.626667pt;}
.y117{bottom:283.293333pt;}
.y7c{bottom:284.866667pt;}
.y5b{bottom:286.146667pt;}
.y1b0{bottom:286.466667pt;}
.y176{bottom:289.053333pt;}
.y10a{bottom:290.373333pt;}
.y157{bottom:297.053333pt;}
.yaf{bottom:298.013333pt;}
.yd3{bottom:298.973333pt;}
.y19f{bottom:300.893333pt;}
.y43{bottom:301.853333pt;}
.y136{bottom:304.093333pt;}
.y23{bottom:308.253333pt;}
.y4b{bottom:310.173333pt;}
.y7b{bottom:312.413333pt;}
.y5a{bottom:314.013333pt;}
.y175{bottom:316.573333pt;}
.y18c{bottom:316.893333pt;}
.yd2{bottom:320.413333pt;}
.yf3{bottom:322.373333pt;}
.y156{bottom:324.573333pt;}
.y116{bottom:325.253333pt;}
.yae{bottom:325.533333pt;}
.y135{bottom:331.933333pt;}
.y22{bottom:336.093333pt;}
.y4a{bottom:338.013333pt;}
.y7a{bottom:340.253333pt;}
.y42{bottom:340.573333pt;}
.y59{bottom:341.533333pt;}
.yd1{bottom:341.853333pt;}
.y174{bottom:344.093333pt;}
.y18b{bottom:344.413333pt;}
.yf2{bottom:347.013333pt;}
.y115{bottom:349.893333pt;}
.y155{bottom:352.093333pt;}
.y8d{bottom:352.320000pt;}
.yad{bottom:353.053333pt;}
.y107{bottom:353.093333pt;}
.y134{bottom:359.453333pt;}
.yd0{bottom:363.293333pt;}
.y21{bottom:363.613333pt;}
.y41{bottom:365.533333pt;}
.y79{bottom:367.773333pt;}
.y58{bottom:369.053333pt;}
.y19e{bottom:369.373333pt;}
.yf1{bottom:371.680000pt;}
.y173{bottom:371.933333pt;}
.y114{bottom:374.560000pt;}
.y106{bottom:377.760000pt;}
.y154{bottom:379.933333pt;}
.yac{bottom:380.573333pt;}
.y1af{bottom:382.493333pt;}
.ycf{bottom:384.733333pt;}
.y18a{bottom:385.373333pt;}
.y133{bottom:386.973333pt;}
.y20{bottom:391.133333pt;}
.y40{bottom:393.053333pt;}
.y78{bottom:395.293333pt;}
.yf0{bottom:396.320000pt;}
.y57{bottom:396.573333pt;}
.y105{bottom:399.200000pt;}
.y172{bottom:399.493333pt;}
.y90{bottom:400.960000pt;}
.yce{bottom:405.893333pt;}
.y153{bottom:407.493333pt;}
.yab{bottom:408.453333pt;}
.y19d{bottom:410.373333pt;}
.y189{bottom:412.933333pt;}
.y132{bottom:414.533333pt;}
.y96{bottom:418.053333pt;}
.y1f{bottom:418.693333pt;}
.y3f{bottom:420.613333pt;}
.yed{bottom:420.960000pt;}
.y77{bottom:422.853333pt;}
.y104{bottom:423.840000pt;}
.y56{bottom:424.453333pt;}
.y171{bottom:427.013333pt;}
.ycd{bottom:427.333333pt;}
.y95{bottom:433.413333pt;}
.y152{bottom:435.013333pt;}
.yaa{bottom:435.973333pt;}
.y1ae{bottom:437.893333pt;}
.y131{bottom:442.373333pt;}
.yec{bottom:445.306667pt;}
.y1e{bottom:446.213333pt;}
.y3e{bottom:448.453333pt;}
.y103{bottom:448.506667pt;}
.y93{bottom:448.773333pt;}
.y76{bottom:450.693333pt;}
.y19c{bottom:451.333333pt;}
.y55{bottom:451.973333pt;}
.y188{bottom:453.893333pt;}
.y170{bottom:454.533333pt;}
.y151{bottom:462.533333pt;}
.ya9{bottom:463.493333pt;}
.y92{bottom:464.133333pt;}
.y1ad{bottom:465.413333pt;}
.y130{bottom:469.893333pt;}
.yeb{bottom:469.946667pt;}
.ycc{bottom:470.213333pt;}
.y102{bottom:473.146667pt;}
.y1d{bottom:474.053333pt;}
.y3d{bottom:475.973333pt;}
.y75{bottom:478.213333pt;}
.y19b{bottom:478.853333pt;}
.y54{bottom:479.493333pt;}
.y187{bottom:481.413333pt;}
.y16f{bottom:482.373333pt;}
.y150{bottom:490.373333pt;}
.ya8{bottom:491.013333pt;}
.ycb{bottom:491.333333pt;}
.yea{bottom:494.586667pt;}
.y12f{bottom:497.413333pt;}
.y101{bottom:497.786667pt;}
.y1c{bottom:501.573333pt;}
.y3c{bottom:503.493333pt;}
.y74{bottom:505.733333pt;}
.y19a{bottom:506.373333pt;}
.y16e{bottom:509.893333pt;}
.yca{bottom:512.800000pt;}
.y53{bottom:515.040000pt;}
.y14f{bottom:517.920000pt;}
.ya7{bottom:518.880000pt;}
.ye7{bottom:519.226667pt;}
.y87{bottom:520.000000pt;}
.y100{bottom:522.146667pt;}
.y186{bottom:522.400000pt;}
.y12e{bottom:524.960000pt;}
.y1b{bottom:529.120000pt;}
.y3b{bottom:531.040000pt;}
.y73{bottom:533.280000pt;}
.y1ac{bottom:533.920000pt;}
.yc9{bottom:534.240000pt;}
.y16d{bottom:537.440000pt;}
.ye4{bottom:543.906667pt;}
.y14e{bottom:545.440000pt;}
.ya6{bottom:546.400000pt;}
.yff{bottom:546.786667pt;}
.y199{bottom:547.360000pt;}
.y185{bottom:549.920000pt;}
.y12d{bottom:552.800000pt;}
.yc8{bottom:555.680000pt;}
.y1a{bottom:556.640000pt;}
.y3a{bottom:558.880000pt;}
.y72{bottom:561.120000pt;}
.y1ab{bottom:561.440000pt;}
.y16c{bottom:564.960000pt;}
.ye3{bottom:568.546667pt;}
.yfe{bottom:571.426667pt;}
.y14d{bottom:572.960000pt;}
.ya5{bottom:573.920000pt;}
.y198{bottom:574.880000pt;}
.y6e{bottom:576.800000pt;}
.y184{bottom:577.440000pt;}
.y19{bottom:578.720000pt;}
.y12c{bottom:580.320000pt;}
.y39{bottom:586.400000pt;}
.y89{bottom:589.760000pt;}
.y16b{bottom:592.800000pt;}
.y18{bottom:594.400000pt;}
.yc7{bottom:598.240000pt;}
.y14c{bottom:600.800000pt;}
.ya4{bottom:601.440000pt;}
.y1aa{bottom:602.400000pt;}
.y183{bottom:605.280000pt;}
.y12b{bottom:607.840000pt;}
.y38{bottom:613.920000pt;}
.y197{bottom:615.840000pt;}
.y17{bottom:618.400000pt;}
.yc5{bottom:619.680000pt;}
.y16a{bottom:620.320000pt;}
.y14b{bottom:628.346667pt;}
.ya3{bottom:629.306667pt;}
.y1a9{bottom:630.266667pt;}
.yfd{bottom:634.173333pt;}
.y12a{bottom:635.386667pt;}
.yc4{bottom:641.146667pt;}
.y37{bottom:641.466667pt;}
.y196{bottom:643.386667pt;}
.ye2{bottom:643.773333pt;}
.y16{bottom:645.946667pt;}
.y182{bottom:646.266667pt;}
.y169{bottom:647.866667pt;}
.y14a{bottom:655.866667pt;}
.ya2{bottom:656.826667pt;}
.yc3{bottom:662.266667pt;}
.ydf{bottom:662.653333pt;}
.y129{bottom:663.226667pt;}
.y36{bottom:669.306667pt;}
.y195{bottom:671.226667pt;}
.y83{bottom:673.280000pt;}
.y15{bottom:673.786667pt;}
.y168{bottom:675.386667pt;}
.y6d{bottom:680.826667pt;}
.yde{bottom:681.893333pt;}
.y149{bottom:683.386667pt;}
.yc2{bottom:683.706667pt;}
.y85{bottom:688.186667pt;}
.y128{bottom:690.746667pt;}
.ya1{bottom:692.346667pt;}
.y14{bottom:692.986667pt;}
.y35{bottom:696.826667pt;}
.y194{bottom:698.746667pt;}
.ydd{bottom:698.853333pt;}
.y181{bottom:701.306667pt;}
.y6b{bottom:702.266667pt;}
.y167{bottom:703.226667pt;}
.yc1{bottom:705.146667pt;}
.y13{bottom:708.986667pt;}
.y148{bottom:711.226667pt;}
.ydc{bottom:715.493333pt;}
.y127{bottom:718.266667pt;}
.y99{bottom:722.560000pt;}
.y34{bottom:724.346667pt;}
.y12{bottom:724.666667pt;}
.y1a8{bottom:726.266667pt;}
.ybf{bottom:726.586667pt;}
.ya0{bottom:727.866667pt;}
.y180{bottom:728.826667pt;}
.y166{bottom:730.746667pt;}
.ydb{bottom:731.493333pt;}
.y147{bottom:738.786667pt;}
.y193{bottom:739.746667pt;}
.y11{bottom:740.706667pt;}
.y68{bottom:744.226667pt;}
.y126{bottom:745.826667pt;}
.ybe{bottom:748.066667pt;}
.y33{bottom:751.906667pt;}
.y1a7{bottom:753.826667pt;}
.y9f{bottom:755.746667pt;}
.y10{bottom:756.706667pt;}
.y165{bottom:758.306667pt;}
.y146{bottom:766.306667pt;}
.y192{bottom:767.266667pt;}
.ybd{bottom:769.186667pt;}
.yf{bottom:773.666667pt;}
.y32{bottom:779.746667pt;}
.y9e{bottom:783.266667pt;}
.y17f{bottom:784.226667pt;}
.y164{bottom:785.826667pt;}
.ybc{bottom:790.626667pt;}
.y145{bottom:793.826667pt;}
.y1a6{bottom:794.786667pt;}
.ye{bottom:798.946667pt;}
.y125{bottom:801.186667pt;}
.y31{bottom:807.266667pt;}
.y191{bottom:808.226667pt;}
.y9d{bottom:810.786667pt;}
.ybb{bottom:812.066667pt;}
.y163{bottom:813.666667pt;}
.y144{bottom:821.666667pt;}
.y1a5{bottom:822.306667pt;}
.yd{bottom:824.226667pt;}
.y17e{bottom:825.186667pt;}
.y64{bottom:827.746667pt;}
.y124{bottom:828.706667pt;}
.yba{bottom:833.506667pt;}
.y30{bottom:834.786667pt;}
.y190{bottom:835.746667pt;}
.y9c{bottom:838.306667pt;}
.y162{bottom:841.186667pt;}
.yc{bottom:843.746667pt;}
.y143{bottom:849.213333pt;}
.y1a4{bottom:850.173333pt;}
.y17d{bottom:852.733333pt;}
.yb9{bottom:854.653333pt;}
.y123{bottom:856.253333pt;}
.y2f{bottom:862.333333pt;}
.y18f{bottom:863.293333pt;}
.yb{bottom:868.733333pt;}
.y9b{bottom:874.173333pt;}
.y142{bottom:876.733333pt;}
.y122{bottom:883.773333pt;}
.y17c{bottom:888.253333pt;}
.y2e{bottom:890.173333pt;}
.y18e{bottom:891.133333pt;}
.y161{bottom:896.253333pt;}
.yb8{bottom:896.893333pt;}
.ya{bottom:898.813333pt;}
.y141{bottom:904.253333pt;}
.y62{bottom:911.293333pt;}
.y121{bottom:911.613333pt;}
.y2d{bottom:917.693333pt;}
.y1a3{bottom:918.653333pt;}
.y160{bottom:923.773333pt;}
.y9{bottom:931.133333pt;}
.y140{bottom:931.773333pt;}
.yb7{bottom:938.813333pt;}
.y120{bottom:939.133333pt;}
.y2c{bottom:945.213333pt;}
.y15f{bottom:951.613333pt;}
.y8{bottom:954.493333pt;}
.y13f{bottom:959.653333pt;}
.y2b{bottom:972.773333pt;}
.y7{bottom:973.093333pt;}
.y11f{bottom:974.693333pt;}
.y15e{bottom:979.173333pt;}
.y13e{bottom:987.173333pt;}
.y5{bottom:991.653333pt;}
.y4{bottom:1010.853333pt;}
.y13d{bottom:1014.693333pt;}
.y3{bottom:1027.813333pt;}
.y13c{bottom:1042.533333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y13b{bottom:1062.373333pt;}
.h14{height:20.480000pt;}
.h21{height:20.512000pt;}
.hc{height:20.800000pt;}
.h1e{height:20.832000pt;}
.h28{height:23.680000pt;}
.h27{height:23.712000pt;}
.h25{height:24.000000pt;}
.h26{height:24.032000pt;}
.h17{height:29.760000pt;}
.h1b{height:37.120000pt;}
.h1f{height:41.280000pt;}
.h10{height:41.312000pt;}
.h20{height:41.600000pt;}
.hd{height:42.678750pt;}
.h8{height:43.201250pt;}
.h12{height:43.840000pt;}
.h1d{height:46.218750pt;}
.ha{height:47.171250pt;}
.h1a{height:47.283562pt;}
.h15{height:47.680000pt;}
.h19{height:47.748750pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.h13{height:53.471250pt;}
.h16{height:53.598562pt;}
.h2a{height:55.046250pt;}
.h9{height:56.156250pt;}
.hb{height:56.312500pt;}
.h1c{height:56.425125pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h29{height:62.080000pt;}
.h24{height:62.112000pt;}
.h7{height:65.938750pt;}
.hf{height:82.880000pt;}
.he{height:82.912000pt;}
.h6{height:85.265625pt;}
.h18{height:90.880000pt;}
.h11{height:103.392000pt;}
.h23{height:793.333333pt;}
.h22{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:46.752000pt;}
.w1b{width:55.680000pt;}
.w1c{width:63.712000pt;}
.w17{width:65.312000pt;}
.w13{width:65.632000pt;}
.w18{width:68.480000pt;}
.w19{width:71.392000pt;}
.w14{width:74.592000pt;}
.w1a{width:74.912000pt;}
.w12{width:77.760000pt;}
.w15{width:79.040000pt;}
.w16{width:86.112000pt;}
.wc{width:93.792000pt;}
.w7{width:134.400000pt;}
.w3{width:180.866667pt;}
.w8{width:183.360000pt;}
.w6{width:184.000000pt;}
.w4{width:195.933333pt;}
.w11{width:230.173333pt;}
.w5{width:267.613333pt;}
.w9{width:314.880000pt;}
.wb{width:566.626667pt;}
.wa{width:570.560000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w10{width:1122.559983pt;}
.we{width:1122.560000pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:7.040000pt;}
.x19{left:10.106667pt;}
.x13{left:11.584000pt;}
.x1b{left:14.784000pt;}
.x17{left:27.586667pt;}
.x23{left:47.712000pt;}
.x2a{left:51.200000pt;}
.x15{left:56.706667pt;}
.x20{left:57.760000pt;}
.x1c{left:63.426667pt;}
.xe{left:73.952000pt;}
.x1{left:94.431988pt;}
.x8{left:103.711988pt;}
.x1e{left:109.306667pt;}
.x22{left:110.720000pt;}
.x1a{left:111.680000pt;}
.x12{left:112.960000pt;}
.xd{left:118.463988pt;}
.x14{left:133.506655pt;}
.x16{left:137.600000pt;}
.xc{left:142.466655pt;}
.x2{left:214.813322pt;}
.x9{left:247.773322pt;}
.x10{left:255.453333pt;}
.xb{left:271.453322pt;}
.x2b{left:282.013333pt;}
.xa{left:299.013322pt;}
.x2c{left:360.413333pt;}
.x1d{left:366.080000pt;}
.x4{left:385.119988pt;}
.x7{left:396.959988pt;}
.x1f{left:399.839988pt;}
.x21{left:423.839988pt;}
.x2d{left:426.693333pt;}
.x18{left:448.960000pt;}
.x11{left:452.346667pt;}
.x6{left:468.666655pt;}
.x2e{left:501.920000pt;}
.x26{left:543.519983pt;}
.x29{left:549.919983pt;}
.x2f{left:581.600000pt;}
.x24{left:614.973333pt;}
.x3{left:619.133322pt;}
.x30{left:668.346667pt;}
.x5{left:677.093322pt;}
.x25{left:709.413333pt;}
.x28{left:713.786650pt;}
.x31{left:734.626667pt;}
.x32{left:803.746667pt;}
.x33{left:875.773333pt;}
.x27{left:947.813317pt;}
.x34{left:951.333333pt;}
.x35{left:1007.973333pt;}
}




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