
    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_48226a34cd0f0798c2fc3d22.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_a9482b789f62759bcd69cd4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1a8bdd783548d26f1b495e32.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21f9341601009ddb1375e0c0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5e0c622b09857d405dd49282.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_625947e4ec20d89e7c39f750.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e2ea74945826ea110cf8ba74.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7f9c1bc281fbdf9e68b97714.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3d5c3c9a9bcce16ef43d5e4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls16{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.423600px;}
.ls2{letter-spacing:-0.382800px;}
.ls1f{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.ls7{letter-spacing:5.040000px;}
.ls1c{letter-spacing:7.920000px;}
.ls4{letter-spacing:10.800000px;}
.lsf{letter-spacing:12.240000px;}
.ls10{letter-spacing:15.120000px;}
.ls1b{letter-spacing:19.440000px;}
.lsb{letter-spacing:33.276000px;}
.ls1e{letter-spacing:56.376000px;}
.lse{letter-spacing:63.516000px;}
.ls1a{letter-spacing:63.838560px;}
.ls1d{letter-spacing:69.264000px;}
.ls19{letter-spacing:79.021440px;}
.lsc{letter-spacing:93.744000px;}
.ls11{letter-spacing:98.064000px;}
.ls13{letter-spacing:113.040000px;}
.lsa{letter-spacing:122.544000px;}
.ls17{letter-spacing:125.424000px;}
.ls3{letter-spacing:149.916000px;}
.ls14{letter-spacing:232.560000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.wsc{word-spacing:-26.784000px;}
.wsa{word-spacing:-20.880000px;}
.ws7{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.352000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-13.244880px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-4.815360px;}
._1a{margin-left:-3.744000px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._9{width:4.398720px;}
._1b{width:5.488320px;}
._15{width:6.581280px;}
._c{width:7.744320px;}
._d{width:8.841600px;}
._8{width:10.031040px;}
._7{width:11.448000px;}
._20{width:12.542400px;}
._18{width:13.608000px;}
._1f{width:14.860800px;}
._1e{width:15.880320px;}
._1c{width:16.934880px;}
._5{width:19.080000px;}
._6{width:20.111040px;}
._19{width:21.528000px;}
._23{width:23.238720px;}
._1d{width:24.696000px;}
._12{width:26.064000px;}
._13{width:27.432000px;}
._14{width:28.759680px;}
._21{width:29.874240px;}
._57{width:31.052160px;}
._a{width:32.126400px;}
._b{width:33.266880px;}
._e{width:34.272000px;}
._f{width:35.838720px;}
._41{width:37.120320px;}
._16{width:39.438720px;}
._17{width:40.492800px;}
._11{width:41.616000px;}
._24{width:42.929280px;}
._10{width:44.046720px;}
._3b{width:45.912000px;}
._30{width:47.160000px;}
._45{width:48.792000px;}
._4d{width:50.832000px;}
._32{width:52.416000px;}
._56{width:53.452800px;}
._29{width:54.792000px;}
._4f{width:56.088000px;}
._39{width:57.816000px;}
._2d{width:58.968000px;}
._2c{width:60.048000px;}
._38{width:61.128000px;}
._3d{width:63.400320px;}
._4a{width:72.590400px;}
._48{width:73.872000px;}
._3f{width:77.112000px;}
._4e{width:79.096320px;}
._42{width:84.792000px;}
._37{width:87.912000px;}
._36{width:89.464320px;}
._3a{width:96.624000px;}
._46{width:98.536320px;}
._47{width:101.592000px;}
._40{width:110.920320px;}
._2e{width:113.592000px;}
._3e{width:114.984000px;}
._2a{width:122.472000px;}
._2b{width:123.664320px;}
._44{width:129.240000px;}
._4c{width:151.200000px;}
._4b{width:152.352000px;}
._49{width:173.952000px;}
._31{width:182.016000px;}
._3c{width:230.832000px;}
._34{width:233.112000px;}
._33{width:241.776000px;}
._52{width:244.728000px;}
._53{width:246.024000px;}
._35{width:248.976000px;}
._43{width:250.704000px;}
._28{width:259.528320px;}
._27{width:281.128320px;}
._2f{width:290.992320px;}
._51{width:347.184000px;}
._50{width:348.192000px;}
._54{width:1014.336000px;}
._25{width:1140.264000px;}
._26{width:1141.776000px;}
._55{width:2335.824000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2c{bottom:3.600000px;}
.ycb{bottom:14.034000px;}
.y9e{bottom:14.040000px;}
.y9c{bottom:14.070000px;}
.y101{bottom:14.085000px;}
.ya2{bottom:14.400000px;}
.y121{bottom:14.430000px;}
.yc4{bottom:14.445000px;}
.y105{bottom:15.480000px;}
.y10a{bottom:15.510000px;}
.y111{bottom:15.840000px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.yc9{bottom:29.514000px;}
.ya8{bottom:29.520000px;}
.ycf{bottom:29.550000px;}
.yae{bottom:29.880000px;}
.yba{bottom:29.910000px;}
.yb{bottom:30.600000px;}
.y7{bottom:32.436000px;}
.yac{bottom:45.000000px;}
.ybe{bottom:45.030000px;}
.yca{bottom:45.354000px;}
.ya7{bottom:45.360000px;}
.ybc{bottom:45.390000px;}
.yc2{bottom:45.405000px;}
.y6{bottom:57.240000px;}
.yaa{bottom:60.480000px;}
.yce{bottom:60.510000px;}
.yb6{bottom:60.525000px;}
.yb1{bottom:60.840000px;}
.yb9{bottom:60.870000px;}
.yc0{bottom:60.885000px;}
.yab{bottom:75.960000px;}
.yd0{bottom:75.990000px;}
.yb7{bottom:76.005000px;}
.yb4{bottom:76.320000px;}
.ybb{bottom:76.350000px;}
.yc1{bottom:76.365000px;}
.y2b{bottom:91.476000px;}
.yb2{bottom:91.830000px;}
.yc7{bottom:107.280000px;}
.yb3{bottom:107.310000px;}
.yc3{bottom:107.325000px;}
.y5{bottom:118.836000px;}
.yc8{bottom:145.476000px;}
.y102{bottom:150.510000px;}
.y174{bottom:152.670000px;}
.y11f{bottom:157.350000px;}
.y29{bottom:164.550000px;}
.y16a{bottom:167.070000px;}
.ye4{bottom:168.150000px;}
.yfa{bottom:174.630000px;}
.y171{bottom:176.430000px;}
.y83{bottom:177.150000px;}
.ye9{bottom:181.470000px;}
.y14e{bottom:183.990000px;}
.y5d{bottom:186.510000px;}
.y100{bottom:187.590000px;}
.y48{bottom:191.190000px;}
.y98{bottom:193.710000px;}
.y11e{bottom:194.430000px;}
.y28{bottom:195.510000px;}
.y76{bottom:195.870000px;}
.y6f{bottom:196.590000px;}
.y169{bottom:198.435000px;}
.ye3{bottom:199.155000px;}
.y130{bottom:199.515000px;}
.yf9{bottom:205.635000px;}
.y170{bottom:206.715000px;}
.y82{bottom:208.515000px;}
.ye8{bottom:212.475000px;}
.yc6{bottom:213.555000px;}
.y14d{bottom:214.995000px;}
.y5c{bottom:217.515000px;}
.y47{bottom:222.195000px;}
.y97{bottom:225.075000px;}
.y27{bottom:226.515000px;}
.y75{bottom:226.875000px;}
.y6e{bottom:227.595000px;}
.ya9{bottom:228.315000px;}
.y168{bottom:229.395000px;}
.ye2{bottom:230.115000px;}
.y11d{bottom:231.555000px;}
.y173{bottom:235.875000px;}
.y16f{bottom:236.955000px;}
.ye7{bottom:243.435000px;}
.y150{bottom:245.955000px;}
.y5b{bottom:248.835000px;}
.y12f{bottom:251.355000px;}
.y46{bottom:253.515000px;}
.y26{bottom:257.475000px;}
.y74{bottom:257.835000px;}
.y157{bottom:258.555000px;}
.y6d{bottom:258.915000px;}
.y81{bottom:259.275000px;}
.ye1{bottom:261.435000px;}
.y14c{bottom:266.835000px;}
.y11c{bottom:268.635000px;}
.y96{bottom:276.915000px;}
.y5a{bottom:279.795000px;}
.y167{bottom:281.235000px;}
.y45{bottom:284.475000px;}
.y16e{bottom:288.075000px;}
.y25{bottom:288.795000px;}
.y6c{bottom:289.875000px;}
.ye0{bottom:292.395000px;}
.ye6{bottom:298.155000px;}
.y12e{bottom:303.555000px;}
.y11b{bottom:305.715000px;}
.y73{bottom:310.035000px;}
.y59{bottom:310.755000px;}
.y166{bottom:312.555000px;}
.y44{bottom:315.435000px;}
.y14b{bottom:319.035000px;}
.y24{bottom:319.755000px;}
.y6b{bottom:320.835000px;}
.ydf{bottom:323.385000px;}
.ya6{bottom:327.345000px;}
.y95{bottom:329.145000px;}
.yf8{bottom:341.025000px;}
.y58{bottom:341.745000px;}
.y11a{bottom:342.825000px;}
.y165{bottom:343.545000px;}
.yc5{bottom:343.905000px;}
.y43{bottom:346.785000px;}
.y16d{bottom:350.025000px;}
.y23{bottom:350.745000px;}
.y6a{bottom:351.825000px;}
.ye5{bottom:352.905000px;}
.yde{bottom:354.345000px;}
.y12d{bottom:355.785000px;}
.y94{bottom:360.105000px;}
.y72{bottom:361.905000px;}
.y14a{bottom:371.265000px;}
.yf7{bottom:371.985000px;}
.y57{bottom:373.065000px;}
.y164{bottom:374.505000px;}
.y141{bottom:379.545000px;}
.y119{bottom:379.905000px;}
.y22{bottom:382.065000px;}
.y156{bottom:382.785000px;}
.y12c{bottom:386.745000px;}
.y71{bottom:392.865000px;}
.yff{bottom:393.225000px;}
.y42{bottom:398.625000px;}
.y149{bottom:402.225000px;}
.yf6{bottom:402.945000px;}
.y56{bottom:404.025000px;}
.y163{bottom:405.465000px;}
.ydd{bottom:406.545000px;}
.y93{bottom:412.305000px;}
.y80{bottom:414.105000px;}
.y5f{bottom:424.905000px;}
.ya5{bottom:429.585000px;}
.y148{bottom:433.185000px;}
.y21{bottom:433.905000px;}
.yf5{bottom:434.265000px;}
.y69{bottom:434.985000px;}
.y162{bottom:436.785000px;}
.y17a{bottom:437.145000px;}
.ydc{bottom:437.505000px;}
.y12b{bottom:438.945000px;}
.ybf{bottom:442.905000px;}
.y92{bottom:443.265000px;}
.yfe{bottom:443.985000px;}
.y70{bottom:445.065000px;}
.y41{bottom:447.945000px;}
.y118{bottom:450.870000px;}
.y55{bottom:455.910000px;}
.y14f{bottom:464.190000px;}
.y20{bottom:464.910000px;}
.yf4{bottom:465.270000px;}
.y68{bottom:465.990000px;}
.y161{bottom:467.790000px;}
.ydb{bottom:468.510000px;}
.y179{bottom:468.870000px;}
.ya4{bottom:472.110000px;}
.y7f{bottom:476.070000px;}
.y12a{bottom:481.470000px;}
.y140{bottom:481.830000px;}
.y147{bottom:485.430000px;}
.y54{bottom:487.230000px;}
.y91{bottom:495.510000px;}
.y1f{bottom:495.870000px;}
.yf3{bottom:496.230000px;}
.y155{bottom:496.950000px;}
.y40{bottom:497.310000px;}
.y178{bottom:499.110000px;}
.yda{bottom:499.830000px;}
.y117{bottom:503.070000px;}
.y7e{bottom:507.030000px;}
.ya3{bottom:509.190000px;}
.y146{bottom:516.390000px;}
.y53{bottom:518.190000px;}
.y129{bottom:518.550000px;}
.y160{bottom:519.630000px;}
.y1e{bottom:527.190000px;}
.y3f{bottom:528.270000px;}
.y177{bottom:529.350000px;}
.yd9{bottom:530.790000px;}
.y13f{bottom:534.030000px;}
.y16c{bottom:537.270000px;}
.y7d{bottom:538.350000px;}
.ya1{bottom:546.270000px;}
.y90{bottom:547.350000px;}
.yf2{bottom:548.430000px;}
.y52{bottom:549.150000px;}
.y15f{bottom:550.950000px;}
.y116{bottom:554.910000px;}
.y128{bottom:555.630000px;}
.y1d{bottom:558.150000px;}
.yfd{bottom:558.510000px;}
.y67{bottom:559.230000px;}
.y176{bottom:559.590000px;}
.yd8{bottom:561.750000px;}
.y145{bottom:568.230000px;}
.y7c{bottom:569.310000px;}
.ybd{bottom:573.270000px;}
.y115{bottom:576.180000px;}
.y8f{bottom:578.340000px;}
.yf1{bottom:579.420000px;}
.y3e{bottom:580.140000px;}
.y15e{bottom:581.940000px;}
.ya0{bottom:583.380000px;}
.y13e{bottom:585.900000px;}
.y1c{bottom:589.140000px;}
.yfc{bottom:589.500000px;}
.y66{bottom:590.220000px;}
.yd7{bottom:592.740000px;}
.y172{bottom:599.580000px;}
.y7b{bottom:600.300000px;}
.yf0{bottom:610.380000px;}
.y3d{bottom:611.460000px;}
.y15d{bottom:612.900000px;}
.y114{bottom:613.260000px;}
.y13d{bottom:617.220000px;}
.y1b{bottom:620.100000px;}
.y9f{bottom:620.460000px;}
.y154{bottom:621.180000px;}
.y65{bottom:621.540000px;}
.yd6{bottom:624.060000px;}
.y127{bottom:629.820000px;}
.y8e{bottom:630.540000px;}
.y7a{bottom:631.260000px;}
.yef{bottom:641.340000px;}
.y3c{bottom:642.420000px;}
.y15c{bottom:643.860000px;}
.y113{bottom:650.340000px;}
.y1a{bottom:651.420000px;}
.y64{bottom:652.500000px;}
.yd5{bottom:655.020000px;}
.y9d{bottom:657.540000px;}
.y13c{bottom:659.700000px;}
.y8d{bottom:661.500000px;}
.y79{bottom:662.580000px;}
.yb8{bottom:672.300000px;}
.y3b{bottom:673.380000px;}
.y15b{bottom:675.180000px;}
.y19{bottom:682.380000px;}
.y153{bottom:683.460000px;}
.yd4{bottom:685.980000px;}
.y112{bottom:687.420000px;}
.y78{bottom:693.540000px;}
.y5e{bottom:694.260000px;}
.y9b{bottom:694.620000px;}
.y13b{bottom:696.780000px;}
.y126{bottom:700.770000px;}
.y144{bottom:703.650000px;}
.y3a{bottom:704.370000px;}
.y15a{bottom:706.170000px;}
.y18{bottom:713.370000px;}
.y8c{bottom:713.730000px;}
.y152{bottom:714.450000px;}
.y110{bottom:724.170000px;}
.y175{bottom:724.530000px;}
.y51{bottom:725.610000px;}
.y13a{bottom:733.890000px;}
.y16b{bottom:734.610000px;}
.y39{bottom:735.690000px;}
.y159{bottom:737.130000px;}
.yd3{bottom:738.210000px;}
.y77{bottom:745.410000px;}
.y17{bottom:747.210000px;}
.y125{bottom:752.970000px;}
.y143{bottom:755.490000px;}
.y50{bottom:756.570000px;}
.y10f{bottom:761.250000px;}
.y8b{bottom:765.570000px;}
.y38{bottom:766.650000px;}
.y139{bottom:770.970000px;}
.yb5{bottom:771.690000px;}
.yee{bottom:776.730000px;}
.y16{bottom:778.170000px;}
.y142{bottom:786.810000px;}
.y4f{bottom:787.530000px;}
.y158{bottom:789.330000px;}
.yd2{bottom:790.410000px;}
.y124{bottom:795.810000px;}
.y8a{bottom:796.890000px;}
.y63{bottom:797.610000px;}
.y10e{bottom:798.330000px;}
.yed{bottom:807.690000px;}
.y15{bottom:809.130000px;}
.y9a{bottom:817.770000px;}
.y37{bottom:818.490000px;}
.y151{bottom:818.850000px;}
.y62{bottom:828.615000px;}
.yd1{bottom:832.935000px;}
.y10d{bottom:835.455000px;}
.yec{bottom:838.695000px;}
.y138{bottom:841.935000px;}
.y14{bottom:845.895000px;}
.y89{bottom:848.775000px;}
.y36{bottom:849.855000px;}
.y61{bottom:859.935000px;}
.yeb{bottom:869.655000px;}
.y123{bottom:870.015000px;}
.yb0{bottom:870.735000px;}
.y10c{bottom:872.535000px;}
.y13{bottom:877.935000px;}
.y88{bottom:879.735000px;}
.y35{bottom:880.815000px;}
.y60{bottom:890.895000px;}
.y137{bottom:894.135000px;}
.y99{bottom:900.975000px;}
.y12{bottom:906.375000px;}
.y122{bottom:907.095000px;}
.y10b{bottom:909.615000px;}
.y34{bottom:911.775000px;}
.yfb{bottom:921.855000px;}
.y87{bottom:931.935000px;}
.ycd{bottom:932.295000px;}
.y4e{bottom:932.655000px;}
.y11{bottom:939.135000px;}
.y33{bottom:942.735000px;}
.y120{bottom:943.815000px;}
.y136{bottom:946.335000px;}
.y109{bottom:946.695000px;}
.yea{bottom:952.845000px;}
.y4d{bottom:964.005000px;}
.y32{bottom:974.085000px;}
.y10{bottom:974.805000px;}
.y135{bottom:977.325000px;}
.y108{bottom:983.805000px;}
.y86{bottom:984.165000px;}
.y4c{bottom:994.965000px;}
.yaf{bottom:1001.085000px;}
.y31{bottom:1005.045000px;}
.yf{bottom:1013.325000px;}
.y85{bottom:1015.125000px;}
.y134{bottom:1020.165000px;}
.y107{bottom:1020.885000px;}
.y4b{bottom:1025.925000px;}
.ycc{bottom:1031.325000px;}
.y30{bottom:1036.005000px;}
.ye{bottom:1051.845000px;}
.y4a{bottom:1056.885000px;}
.y133{bottom:1057.245000px;}
.y106{bottom:1057.965000px;}
.y2f{bottom:1066.965000px;}
.yd{bottom:1086.090000px;}
.y49{bottom:1088.250000px;}
.y132{bottom:1094.010000px;}
.y104{bottom:1095.090000px;}
.y84{bottom:1098.330000px;}
.yad{bottom:1100.130000px;}
.yc{bottom:1115.970000px;}
.y2e{bottom:1119.210000px;}
.y131{bottom:1131.090000px;}
.y103{bottom:1131.810000px;}
.y4{bottom:1137.210000px;}
.y2d{bottom:1150.170000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2a{bottom:1195.170000px;}
.h10{height:16.596000px;}
.h14{height:30.960000px;}
.h13{height:30.996000px;}
.h16{height:31.320000px;}
.h15{height:31.356000px;}
.h6{height:43.956000px;}
.h7{height:47.264766px;}
.hd{height:48.601406px;}
.h11{height:53.067656px;}
.h8{height:54.426094px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.hf{height:61.927031px;}
.h1e{height:61.956000px;}
.h17{height:62.280000px;}
.h1d{height:62.316000px;}
.he{height:63.175781px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h20{height:67.824844px;}
.hc{height:71.613281px;}
.hb{height:73.722656px;}
.h1f{height:74.181094px;}
.ha{height:85.518281px;}
.h18{height:92.880000px;}
.h19{height:92.916000px;}
.h1c{height:93.240000px;}
.h1b{height:93.276000px;}
.h9{height:95.923828px;}
.h12{height:117.666562px;}
.h1a{height:124.236000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:33.480000px;}
.w10{width:35.316000px;}
.w4{width:39.636000px;}
.w1e{width:39.960000px;}
.w23{width:42.516000px;}
.w1f{width:42.876000px;}
.w26{width:59.076000px;}
.w1a{width:60.156000px;}
.w1d{width:61.956000px;}
.w1b{width:80.316000px;}
.wf{width:83.556000px;}
.w19{width:88.596000px;}
.w1c{width:106.236000px;}
.w27{width:114.876000px;}
.w21{width:115.596000px;}
.w17{width:121.392000px;}
.w11{width:124.632000px;}
.w12{width:126.756000px;}
.w20{width:127.872000px;}
.w14{width:128.952000px;}
.w18{width:130.356000px;}
.w9{width:137.232000px;}
.w13{width:153.435000px;}
.wa{width:165.990000px;}
.we{width:166.755000px;}
.w7{width:167.835000px;}
.wd{width:168.915000px;}
.w25{width:179.715000px;}
.wb{width:208.155000px;}
.w16{width:214.275000px;}
.wc{width:214.995000px;}
.w24{width:229.065000px;}
.w15{width:269.385000px;}
.w6{width:332.790000px;}
.w8{width:336.750000px;}
.w5{width:347.910000px;}
.w3{width:641.055000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x3b{left:2.520000px;}
.x20{left:6.840000px;}
.xf{left:8.640000px;}
.x7{left:10.485000px;}
.x31{left:13.320000px;}
.x33{left:16.560000px;}
.x1b{left:21.600000px;}
.x27{left:23.796000px;}
.x2e{left:28.836000px;}
.x1e{left:30.240000px;}
.x1c{left:43.956000px;}
.x24{left:45.765000px;}
.x2f{left:47.160000px;}
.x22{left:50.799000px;}
.x16{left:68.799000px;}
.xe{left:83.915987px;}
.x1a{left:88.236000px;}
.x1{left:106.235987px;}
.x15{left:109.836000px;}
.xa{left:115.595987px;}
.x18{left:127.875000px;}
.x12{left:133.271987px;}
.x9{left:142.631987px;}
.x5{left:144.429000px;}
.x13{left:160.274987px;}
.x14{left:187.274987px;}
.x1d{left:229.425000px;}
.x2b{left:234.825000px;}
.x28{left:238.425000px;}
.x2{left:241.664987px;}
.xd{left:254.624987px;}
.x17{left:281.265000px;}
.x23{left:282.345000px;}
.x11{left:303.630000px;}
.xc{left:337.469987px;}
.x38{left:342.870000px;}
.x30{left:348.630000px;}
.x35{left:360.510000px;}
.x29{left:368.790000px;}
.xb{left:386.789987px;}
.x1f{left:399.420000px;}
.x32{left:414.180000px;}
.x36{left:426.420000px;}
.x4{left:433.259987px;}
.x25{left:452.700000px;}
.x10{left:454.140000px;}
.x34{left:457.740000px;}
.x2c{left:460.980000px;}
.x37{left:463.860000px;}
.x2a{left:515.370000px;}
.x2d{left:525.090000px;}
.x39{left:526.530000px;}
.x26{left:539.850000px;}
.x8{left:553.529987px;}
.x3a{left:589.575000px;}
.x21{left:611.535000px;}
.x3{left:696.524987px;}
.x6{left:747.285000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.376533pt;}
.ls2{letter-spacing:-0.340267pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.ls7{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls4{letter-spacing:9.600000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls1b{letter-spacing:17.280000pt;}
.lsb{letter-spacing:29.578667pt;}
.ls1e{letter-spacing:50.112000pt;}
.lse{letter-spacing:56.458667pt;}
.ls1a{letter-spacing:56.745387pt;}
.ls1d{letter-spacing:61.568000pt;}
.ls19{letter-spacing:70.241280pt;}
.lsc{letter-spacing:83.328000pt;}
.ls11{letter-spacing:87.168000pt;}
.ls13{letter-spacing:100.480000pt;}
.lsa{letter-spacing:108.928000pt;}
.ls17{letter-spacing:111.488000pt;}
.ls3{letter-spacing:133.258667pt;}
.ls14{letter-spacing:206.720000pt;}
.wsb{word-spacing:-53.760000pt;}
.wsc{word-spacing:-23.808000pt;}
.wsa{word-spacing:-18.560000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.424000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-11.773227pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-4.280320pt;}
._1a{margin-left:-3.328000pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._9{width:3.909973pt;}
._1b{width:4.878507pt;}
._15{width:5.850027pt;}
._c{width:6.883840pt;}
._d{width:7.859200pt;}
._8{width:8.916480pt;}
._7{width:10.176000pt;}
._20{width:11.148800pt;}
._18{width:12.096000pt;}
._1f{width:13.209600pt;}
._1e{width:14.115840pt;}
._1c{width:15.053227pt;}
._5{width:16.960000pt;}
._6{width:17.876480pt;}
._19{width:19.136000pt;}
._23{width:20.656640pt;}
._1d{width:21.952000pt;}
._12{width:23.168000pt;}
._13{width:24.384000pt;}
._14{width:25.564160pt;}
._21{width:26.554880pt;}
._57{width:27.601920pt;}
._a{width:28.556800pt;}
._b{width:29.570560pt;}
._e{width:30.464000pt;}
._f{width:31.856640pt;}
._41{width:32.995840pt;}
._16{width:35.056640pt;}
._17{width:35.993600pt;}
._11{width:36.992000pt;}
._24{width:38.159360pt;}
._10{width:39.152640pt;}
._3b{width:40.810667pt;}
._30{width:41.920000pt;}
._45{width:43.370667pt;}
._4d{width:45.184000pt;}
._32{width:46.592000pt;}
._56{width:47.513600pt;}
._29{width:48.704000pt;}
._4f{width:49.856000pt;}
._39{width:51.392000pt;}
._2d{width:52.416000pt;}
._2c{width:53.376000pt;}
._38{width:54.336000pt;}
._3d{width:56.355840pt;}
._4a{width:64.524800pt;}
._48{width:65.664000pt;}
._3f{width:68.544000pt;}
._4e{width:70.307840pt;}
._42{width:75.370667pt;}
._37{width:78.144000pt;}
._36{width:79.523840pt;}
._3a{width:85.888000pt;}
._46{width:87.587840pt;}
._47{width:90.304000pt;}
._40{width:98.595840pt;}
._2e{width:100.970667pt;}
._3e{width:102.208000pt;}
._2a{width:108.864000pt;}
._2b{width:109.923840pt;}
._44{width:114.880000pt;}
._4c{width:134.400000pt;}
._4b{width:135.424000pt;}
._49{width:154.624000pt;}
._31{width:161.792000pt;}
._3c{width:205.184000pt;}
._34{width:207.210667pt;}
._33{width:214.912000pt;}
._52{width:217.536000pt;}
._53{width:218.688000pt;}
._35{width:221.312000pt;}
._43{width:222.848000pt;}
._28{width:230.691840pt;}
._27{width:249.891840pt;}
._2f{width:258.659840pt;}
._51{width:308.608000pt;}
._50{width:309.504000pt;}
._54{width:901.632000pt;}
._25{width:1013.568000pt;}
._26{width:1014.912000pt;}
._55{width:2076.288000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2c{bottom:3.200000pt;}
.ycb{bottom:12.474667pt;}
.y9e{bottom:12.480000pt;}
.y9c{bottom:12.506667pt;}
.y101{bottom:12.520000pt;}
.ya2{bottom:12.800000pt;}
.y121{bottom:12.826667pt;}
.yc4{bottom:12.840000pt;}
.y105{bottom:13.760000pt;}
.y10a{bottom:13.786667pt;}
.y111{bottom:14.080000pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.yc9{bottom:26.234667pt;}
.ya8{bottom:26.240000pt;}
.ycf{bottom:26.266667pt;}
.yae{bottom:26.560000pt;}
.yba{bottom:26.586667pt;}
.yb{bottom:27.200000pt;}
.y7{bottom:28.832000pt;}
.yac{bottom:40.000000pt;}
.ybe{bottom:40.026667pt;}
.yca{bottom:40.314667pt;}
.ya7{bottom:40.320000pt;}
.ybc{bottom:40.346667pt;}
.yc2{bottom:40.360000pt;}
.y6{bottom:50.880000pt;}
.yaa{bottom:53.760000pt;}
.yce{bottom:53.786667pt;}
.yb6{bottom:53.800000pt;}
.yb1{bottom:54.080000pt;}
.yb9{bottom:54.106667pt;}
.yc0{bottom:54.120000pt;}
.yab{bottom:67.520000pt;}
.yd0{bottom:67.546667pt;}
.yb7{bottom:67.560000pt;}
.yb4{bottom:67.840000pt;}
.ybb{bottom:67.866667pt;}
.yc1{bottom:67.880000pt;}
.y2b{bottom:81.312000pt;}
.yb2{bottom:81.626667pt;}
.yc7{bottom:95.360000pt;}
.yb3{bottom:95.386667pt;}
.yc3{bottom:95.400000pt;}
.y5{bottom:105.632000pt;}
.yc8{bottom:129.312000pt;}
.y102{bottom:133.786667pt;}
.y174{bottom:135.706667pt;}
.y11f{bottom:139.866667pt;}
.y29{bottom:146.266667pt;}
.y16a{bottom:148.506667pt;}
.ye4{bottom:149.466667pt;}
.yfa{bottom:155.226667pt;}
.y171{bottom:156.826667pt;}
.y83{bottom:157.466667pt;}
.ye9{bottom:161.306667pt;}
.y14e{bottom:163.546667pt;}
.y5d{bottom:165.786667pt;}
.y100{bottom:166.746667pt;}
.y48{bottom:169.946667pt;}
.y98{bottom:172.186667pt;}
.y11e{bottom:172.826667pt;}
.y28{bottom:173.786667pt;}
.y76{bottom:174.106667pt;}
.y6f{bottom:174.746667pt;}
.y169{bottom:176.386667pt;}
.ye3{bottom:177.026667pt;}
.y130{bottom:177.346667pt;}
.yf9{bottom:182.786667pt;}
.y170{bottom:183.746667pt;}
.y82{bottom:185.346667pt;}
.ye8{bottom:188.866667pt;}
.yc6{bottom:189.826667pt;}
.y14d{bottom:191.106667pt;}
.y5c{bottom:193.346667pt;}
.y47{bottom:197.506667pt;}
.y97{bottom:200.066667pt;}
.y27{bottom:201.346667pt;}
.y75{bottom:201.666667pt;}
.y6e{bottom:202.306667pt;}
.ya9{bottom:202.946667pt;}
.y168{bottom:203.906667pt;}
.ye2{bottom:204.546667pt;}
.y11d{bottom:205.826667pt;}
.y173{bottom:209.666667pt;}
.y16f{bottom:210.626667pt;}
.ye7{bottom:216.386667pt;}
.y150{bottom:218.626667pt;}
.y5b{bottom:221.186667pt;}
.y12f{bottom:223.426667pt;}
.y46{bottom:225.346667pt;}
.y26{bottom:228.866667pt;}
.y74{bottom:229.186667pt;}
.y157{bottom:229.826667pt;}
.y6d{bottom:230.146667pt;}
.y81{bottom:230.466667pt;}
.ye1{bottom:232.386667pt;}
.y14c{bottom:237.186667pt;}
.y11c{bottom:238.786667pt;}
.y96{bottom:246.146667pt;}
.y5a{bottom:248.706667pt;}
.y167{bottom:249.986667pt;}
.y45{bottom:252.866667pt;}
.y16e{bottom:256.066667pt;}
.y25{bottom:256.706667pt;}
.y6c{bottom:257.666667pt;}
.ye0{bottom:259.906667pt;}
.ye6{bottom:265.026667pt;}
.y12e{bottom:269.826667pt;}
.y11b{bottom:271.746667pt;}
.y73{bottom:275.586667pt;}
.y59{bottom:276.226667pt;}
.y166{bottom:277.826667pt;}
.y44{bottom:280.386667pt;}
.y14b{bottom:283.586667pt;}
.y24{bottom:284.226667pt;}
.y6b{bottom:285.186667pt;}
.ydf{bottom:287.453333pt;}
.ya6{bottom:290.973333pt;}
.y95{bottom:292.573333pt;}
.yf8{bottom:303.133333pt;}
.y58{bottom:303.773333pt;}
.y11a{bottom:304.733333pt;}
.y165{bottom:305.373333pt;}
.yc5{bottom:305.693333pt;}
.y43{bottom:308.253333pt;}
.y16d{bottom:311.133333pt;}
.y23{bottom:311.773333pt;}
.y6a{bottom:312.733333pt;}
.ye5{bottom:313.693333pt;}
.yde{bottom:314.973333pt;}
.y12d{bottom:316.253333pt;}
.y94{bottom:320.093333pt;}
.y72{bottom:321.693333pt;}
.y14a{bottom:330.013333pt;}
.yf7{bottom:330.653333pt;}
.y57{bottom:331.613333pt;}
.y164{bottom:332.893333pt;}
.y141{bottom:337.373333pt;}
.y119{bottom:337.693333pt;}
.y22{bottom:339.613333pt;}
.y156{bottom:340.253333pt;}
.y12c{bottom:343.773333pt;}
.y71{bottom:349.213333pt;}
.yff{bottom:349.533333pt;}
.y42{bottom:354.333333pt;}
.y149{bottom:357.533333pt;}
.yf6{bottom:358.173333pt;}
.y56{bottom:359.133333pt;}
.y163{bottom:360.413333pt;}
.ydd{bottom:361.373333pt;}
.y93{bottom:366.493333pt;}
.y80{bottom:368.093333pt;}
.y5f{bottom:377.693333pt;}
.ya5{bottom:381.853333pt;}
.y148{bottom:385.053333pt;}
.y21{bottom:385.693333pt;}
.yf5{bottom:386.013333pt;}
.y69{bottom:386.653333pt;}
.y162{bottom:388.253333pt;}
.y17a{bottom:388.573333pt;}
.ydc{bottom:388.893333pt;}
.y12b{bottom:390.173333pt;}
.ybf{bottom:393.693333pt;}
.y92{bottom:394.013333pt;}
.yfe{bottom:394.653333pt;}
.y70{bottom:395.613333pt;}
.y41{bottom:398.173333pt;}
.y118{bottom:400.773333pt;}
.y55{bottom:405.253333pt;}
.y14f{bottom:412.613333pt;}
.y20{bottom:413.253333pt;}
.yf4{bottom:413.573333pt;}
.y68{bottom:414.213333pt;}
.y161{bottom:415.813333pt;}
.ydb{bottom:416.453333pt;}
.y179{bottom:416.773333pt;}
.ya4{bottom:419.653333pt;}
.y7f{bottom:423.173333pt;}
.y12a{bottom:427.973333pt;}
.y140{bottom:428.293333pt;}
.y147{bottom:431.493333pt;}
.y54{bottom:433.093333pt;}
.y91{bottom:440.453333pt;}
.y1f{bottom:440.773333pt;}
.yf3{bottom:441.093333pt;}
.y155{bottom:441.733333pt;}
.y40{bottom:442.053333pt;}
.y178{bottom:443.653333pt;}
.yda{bottom:444.293333pt;}
.y117{bottom:447.173333pt;}
.y7e{bottom:450.693333pt;}
.ya3{bottom:452.613333pt;}
.y146{bottom:459.013333pt;}
.y53{bottom:460.613333pt;}
.y129{bottom:460.933333pt;}
.y160{bottom:461.893333pt;}
.y1e{bottom:468.613333pt;}
.y3f{bottom:469.573333pt;}
.y177{bottom:470.533333pt;}
.yd9{bottom:471.813333pt;}
.y13f{bottom:474.693333pt;}
.y16c{bottom:477.573333pt;}
.y7d{bottom:478.533333pt;}
.ya1{bottom:485.573333pt;}
.y90{bottom:486.533333pt;}
.yf2{bottom:487.493333pt;}
.y52{bottom:488.133333pt;}
.y15f{bottom:489.733333pt;}
.y116{bottom:493.253333pt;}
.y128{bottom:493.893333pt;}
.y1d{bottom:496.133333pt;}
.yfd{bottom:496.453333pt;}
.y67{bottom:497.093333pt;}
.y176{bottom:497.413333pt;}
.yd8{bottom:499.333333pt;}
.y145{bottom:505.093333pt;}
.y7c{bottom:506.053333pt;}
.ybd{bottom:509.573333pt;}
.y115{bottom:512.160000pt;}
.y8f{bottom:514.080000pt;}
.yf1{bottom:515.040000pt;}
.y3e{bottom:515.680000pt;}
.y15e{bottom:517.280000pt;}
.ya0{bottom:518.560000pt;}
.y13e{bottom:520.800000pt;}
.y1c{bottom:523.680000pt;}
.yfc{bottom:524.000000pt;}
.y66{bottom:524.640000pt;}
.yd7{bottom:526.880000pt;}
.y172{bottom:532.960000pt;}
.y7b{bottom:533.600000pt;}
.yf0{bottom:542.560000pt;}
.y3d{bottom:543.520000pt;}
.y15d{bottom:544.800000pt;}
.y114{bottom:545.120000pt;}
.y13d{bottom:548.640000pt;}
.y1b{bottom:551.200000pt;}
.y9f{bottom:551.520000pt;}
.y154{bottom:552.160000pt;}
.y65{bottom:552.480000pt;}
.yd6{bottom:554.720000pt;}
.y127{bottom:559.840000pt;}
.y8e{bottom:560.480000pt;}
.y7a{bottom:561.120000pt;}
.yef{bottom:570.080000pt;}
.y3c{bottom:571.040000pt;}
.y15c{bottom:572.320000pt;}
.y113{bottom:578.080000pt;}
.y1a{bottom:579.040000pt;}
.y64{bottom:580.000000pt;}
.yd5{bottom:582.240000pt;}
.y9d{bottom:584.480000pt;}
.y13c{bottom:586.400000pt;}
.y8d{bottom:588.000000pt;}
.y79{bottom:588.960000pt;}
.yb8{bottom:597.600000pt;}
.y3b{bottom:598.560000pt;}
.y15b{bottom:600.160000pt;}
.y19{bottom:606.560000pt;}
.y153{bottom:607.520000pt;}
.yd4{bottom:609.760000pt;}
.y112{bottom:611.040000pt;}
.y78{bottom:616.480000pt;}
.y5e{bottom:617.120000pt;}
.y9b{bottom:617.440000pt;}
.y13b{bottom:619.360000pt;}
.y126{bottom:622.906667pt;}
.y144{bottom:625.466667pt;}
.y3a{bottom:626.106667pt;}
.y15a{bottom:627.706667pt;}
.y18{bottom:634.106667pt;}
.y8c{bottom:634.426667pt;}
.y152{bottom:635.066667pt;}
.y110{bottom:643.706667pt;}
.y175{bottom:644.026667pt;}
.y51{bottom:644.986667pt;}
.y13a{bottom:652.346667pt;}
.y16b{bottom:652.986667pt;}
.y39{bottom:653.946667pt;}
.y159{bottom:655.226667pt;}
.yd3{bottom:656.186667pt;}
.y77{bottom:662.586667pt;}
.y17{bottom:664.186667pt;}
.y125{bottom:669.306667pt;}
.y143{bottom:671.546667pt;}
.y50{bottom:672.506667pt;}
.y10f{bottom:676.666667pt;}
.y8b{bottom:680.506667pt;}
.y38{bottom:681.466667pt;}
.y139{bottom:685.306667pt;}
.yb5{bottom:685.946667pt;}
.yee{bottom:690.426667pt;}
.y16{bottom:691.706667pt;}
.y142{bottom:699.386667pt;}
.y4f{bottom:700.026667pt;}
.y158{bottom:701.626667pt;}
.yd2{bottom:702.586667pt;}
.y124{bottom:707.386667pt;}
.y8a{bottom:708.346667pt;}
.y63{bottom:708.986667pt;}
.y10e{bottom:709.626667pt;}
.yed{bottom:717.946667pt;}
.y15{bottom:719.226667pt;}
.y9a{bottom:726.906667pt;}
.y37{bottom:727.546667pt;}
.y151{bottom:727.866667pt;}
.y62{bottom:736.546667pt;}
.yd1{bottom:740.386667pt;}
.y10d{bottom:742.626667pt;}
.yec{bottom:745.506667pt;}
.y138{bottom:748.386667pt;}
.y14{bottom:751.906667pt;}
.y89{bottom:754.466667pt;}
.y36{bottom:755.426667pt;}
.y61{bottom:764.386667pt;}
.yeb{bottom:773.026667pt;}
.y123{bottom:773.346667pt;}
.yb0{bottom:773.986667pt;}
.y10c{bottom:775.586667pt;}
.y13{bottom:780.386667pt;}
.y88{bottom:781.986667pt;}
.y35{bottom:782.946667pt;}
.y60{bottom:791.906667pt;}
.y137{bottom:794.786667pt;}
.y99{bottom:800.866667pt;}
.y12{bottom:805.666667pt;}
.y122{bottom:806.306667pt;}
.y10b{bottom:808.546667pt;}
.y34{bottom:810.466667pt;}
.yfb{bottom:819.426667pt;}
.y87{bottom:828.386667pt;}
.ycd{bottom:828.706667pt;}
.y4e{bottom:829.026667pt;}
.y11{bottom:834.786667pt;}
.y33{bottom:837.986667pt;}
.y120{bottom:838.946667pt;}
.y136{bottom:841.186667pt;}
.y109{bottom:841.506667pt;}
.yea{bottom:846.973333pt;}
.y4d{bottom:856.893333pt;}
.y32{bottom:865.853333pt;}
.y10{bottom:866.493333pt;}
.y135{bottom:868.733333pt;}
.y108{bottom:874.493333pt;}
.y86{bottom:874.813333pt;}
.y4c{bottom:884.413333pt;}
.yaf{bottom:889.853333pt;}
.y31{bottom:893.373333pt;}
.yf{bottom:900.733333pt;}
.y85{bottom:902.333333pt;}
.y134{bottom:906.813333pt;}
.y107{bottom:907.453333pt;}
.y4b{bottom:911.933333pt;}
.ycc{bottom:916.733333pt;}
.y30{bottom:920.893333pt;}
.ye{bottom:934.973333pt;}
.y4a{bottom:939.453333pt;}
.y133{bottom:939.773333pt;}
.y106{bottom:940.413333pt;}
.y2f{bottom:948.413333pt;}
.yd{bottom:965.413333pt;}
.y49{bottom:967.333333pt;}
.y132{bottom:972.453333pt;}
.y104{bottom:973.413333pt;}
.y84{bottom:976.293333pt;}
.yad{bottom:977.893333pt;}
.yc{bottom:991.973333pt;}
.y2e{bottom:994.853333pt;}
.y131{bottom:1005.413333pt;}
.y103{bottom:1006.053333pt;}
.y4{bottom:1010.853333pt;}
.y2d{bottom:1022.373333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2a{bottom:1062.373333pt;}
.h10{height:14.752000pt;}
.h14{height:27.520000pt;}
.h13{height:27.552000pt;}
.h16{height:27.840000pt;}
.h15{height:27.872000pt;}
.h6{height:39.072000pt;}
.h7{height:42.013125pt;}
.hd{height:43.201250pt;}
.h11{height:47.171250pt;}
.h8{height:48.378750pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.hf{height:55.046250pt;}
.h1e{height:55.072000pt;}
.h17{height:55.360000pt;}
.h1d{height:55.392000pt;}
.he{height:56.156250pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h20{height:60.288750pt;}
.hc{height:63.656250pt;}
.hb{height:65.531250pt;}
.h1f{height:65.938750pt;}
.ha{height:76.016250pt;}
.h18{height:82.560000pt;}
.h19{height:82.592000pt;}
.h1c{height:82.880000pt;}
.h1b{height:82.912000pt;}
.h9{height:85.265625pt;}
.h12{height:104.592500pt;}
.h1a{height:110.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:29.760000pt;}
.w10{width:31.392000pt;}
.w4{width:35.232000pt;}
.w1e{width:35.520000pt;}
.w23{width:37.792000pt;}
.w1f{width:38.112000pt;}
.w26{width:52.512000pt;}
.w1a{width:53.472000pt;}
.w1d{width:55.072000pt;}
.w1b{width:71.392000pt;}
.wf{width:74.272000pt;}
.w19{width:78.752000pt;}
.w1c{width:94.432000pt;}
.w27{width:102.112000pt;}
.w21{width:102.752000pt;}
.w17{width:107.904000pt;}
.w11{width:110.784000pt;}
.w12{width:112.672000pt;}
.w20{width:113.664000pt;}
.w14{width:114.624000pt;}
.w18{width:115.872000pt;}
.w9{width:121.984000pt;}
.w13{width:136.386667pt;}
.wa{width:147.546667pt;}
.we{width:148.226667pt;}
.w7{width:149.186667pt;}
.wd{width:150.146667pt;}
.w25{width:159.746667pt;}
.wb{width:185.026667pt;}
.w16{width:190.466667pt;}
.wc{width:191.106667pt;}
.w24{width:203.613333pt;}
.w15{width:239.453333pt;}
.w6{width:295.813333pt;}
.w8{width:299.333333pt;}
.w5{width:309.253333pt;}
.w3{width:569.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x3b{left:2.240000pt;}
.x20{left:6.080000pt;}
.xf{left:7.680000pt;}
.x7{left:9.320000pt;}
.x31{left:11.840000pt;}
.x33{left:14.720000pt;}
.x1b{left:19.200000pt;}
.x27{left:21.152000pt;}
.x2e{left:25.632000pt;}
.x1e{left:26.880000pt;}
.x1c{left:39.072000pt;}
.x24{left:40.680000pt;}
.x2f{left:41.920000pt;}
.x22{left:45.154667pt;}
.x16{left:61.154667pt;}
.xe{left:74.591988pt;}
.x1a{left:78.432000pt;}
.x1{left:94.431988pt;}
.x15{left:97.632000pt;}
.xa{left:102.751988pt;}
.x18{left:113.666667pt;}
.x12{left:118.463988pt;}
.x9{left:126.783988pt;}
.x5{left:128.381333pt;}
.x13{left:142.466655pt;}
.x14{left:166.466655pt;}
.x1d{left:203.933333pt;}
.x2b{left:208.733333pt;}
.x28{left:211.933333pt;}
.x2{left:214.813322pt;}
.xd{left:226.333322pt;}
.x17{left:250.013333pt;}
.x23{left:250.973333pt;}
.x11{left:269.893333pt;}
.xc{left:299.973322pt;}
.x38{left:304.773333pt;}
.x30{left:309.893333pt;}
.x35{left:320.453333pt;}
.x29{left:327.813333pt;}
.xb{left:343.813322pt;}
.x1f{left:355.040000pt;}
.x32{left:368.160000pt;}
.x36{left:379.040000pt;}
.x4{left:385.119988pt;}
.x25{left:402.400000pt;}
.x10{left:403.680000pt;}
.x34{left:406.880000pt;}
.x2c{left:409.760000pt;}
.x37{left:412.320000pt;}
.x2a{left:458.106667pt;}
.x2d{left:466.746667pt;}
.x39{left:468.026667pt;}
.x26{left:479.866667pt;}
.x8{left:492.026655pt;}
.x3a{left:524.066667pt;}
.x21{left:543.586667pt;}
.x3{left:619.133322pt;}
.x6{left:664.253333pt;}
}




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