
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_00eb132c2c1021d23a84f5d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_24e60ecdbbfa760db2e0b99f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_403942fc593082cd81d80a7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_7f786be4226521d9bc6b3b5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_665a969ea2a133551d0a4934.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_6e2b57d0a5cf3c770043d89f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_1a86d62c66681c502daba86e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.444600px;}
.ls11{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.070800px;}
.ls19{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.014760px;}
.lsa{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.019440px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.098400px;}
.ls18{letter-spacing:0.115800px;}
.ls17{letter-spacing:0.116400px;}
.ls1e{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1c{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.342200px;}
.wse{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.155600px;}
.wsd{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-3.596641px;}
._7{margin-left:-2.550120px;}
._0{margin-left:-1.110000px;}
._2{width:1.174152px;}
._5{width:2.274606px;}
._3{width:3.360012px;}
._4{width:4.874616px;}
._6{width:6.107517px;}
._c{width:7.455000px;}
._d{width:8.504399px;}
._13{width:9.732364px;}
._10{width:11.030762px;}
._9{width:12.144000px;}
._b{width:15.240720px;}
._16{width:16.290357px;}
._14{width:17.310481px;}
._8{width:18.997800px;}
._24{width:20.380680px;}
._25{width:21.703320px;}
._49{width:23.073241px;}
._1{width:24.073728px;}
._15{width:25.391283px;}
._e{width:26.572800px;}
._f{width:27.594843px;}
._11{width:28.677240px;}
._12{width:29.908599px;}
._30{width:31.714401px;}
._1f{width:33.514680px;}
._37{width:35.470800px;}
._40{width:36.853560px;}
._29{width:38.837520px;}
._20{width:40.400640px;}
._1d{width:43.406640px;}
._22{width:45.811440px;}
._32{width:46.893600px;}
._4a{width:50.320440px;}
._4b{width:53.266320px;}
._23{width:54.528840px;}
._27{width:56.091960px;}
._4c{width:60.420600px;}
._2a{width:64.568880px;}
._36{width:66.432600px;}
._1e{width:69.919560px;}
._31{width:75.811320px;}
._2f{width:77.194080px;}
._17{width:78.576840px;}
._1b{width:80.741160px;}
._46{width:83.747160px;}
._33{width:86.693040px;}
._45{width:88.677000px;}
._3e{width:96.483720px;}
._38{width:99.919440px;}
._2e{width:101.662920px;}
._1a{width:112.123800px;}
._3b{width:114.228000px;}
._26{width:116.813160px;}
._2b{width:122.885280px;}
._2c{width:128.596680px;}
._19{width:131.722920px;}
._47{width:135.630720px;}
._44{width:138.756960px;}
._1c{width:158.235840px;}
._48{width:163.646640px;}
._3a{width:171.161640px;}
._34{width:182.283840px;}
._42{width:196.472160px;}
._28{width:204.708600px;}
._3d{width:213.305760px;}
._21{width:218.115360px;}
._2d{width:228.756600px;}
._35{width:235.069200px;}
._43{width:268.195320px;}
._39{width:277.273440px;}
._3c{width:296.571960px;}
._3f{width:307.393560px;}
._41{width:339.136920px;}
._18{width:355.309200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yab{bottom:3.330000px;}
.y90{bottom:7.830000px;}
.y8b{bottom:7.920000px;}
.yaa{bottom:20.880000px;}
.yec{bottom:20.970000px;}
.y94{bottom:25.380000px;}
.y8f{bottom:25.410000px;}
.y8a{bottom:25.470000px;}
.yb1{bottom:25.500000px;}
.ya9{bottom:38.520000px;}
.y93{bottom:43.020000px;}
.y8e{bottom:43.050000px;}
.y98{bottom:43.110000px;}
.yeb{bottom:56.070000px;}
.y92{bottom:60.570000px;}
.y8d{bottom:60.600000px;}
.y9a{bottom:60.660000px;}
.yb0{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.yea{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.yc7{bottom:78.120000px;}
.ya7{bottom:78.210000px;}
.yaf{bottom:78.240000px;}
.yc6{bottom:95.760000px;}
.yf0{bottom:95.790000px;}
.ya6{bottom:95.850000px;}
.yae{bottom:95.880000px;}
.yf4{bottom:96.930000px;}
.y1{bottom:101.640000px;}
.yc2{bottom:111.810000px;}
.yc5{bottom:113.310000px;}
.yc9{bottom:113.400000px;}
.yef{bottom:113.430000px;}
.ye9{bottom:113.700000px;}
.y5b{bottom:114.690000px;}
.ya8{bottom:117.300000px;}
.y14b{bottom:130.530000px;}
.yc4{bottom:130.950000px;}
.ydc{bottom:130.980000px;}
.y19e{bottom:133.680000px;}
.y174{bottom:145.020000px;}
.y14a{bottom:148.170000px;}
.yc3{bottom:148.500000px;}
.ydf{bottom:148.590000px;}
.yee{bottom:148.620000px;}
.y5a{bottom:150.330000px;}
.y19d{bottom:151.320000px;}
.y11e{bottom:159.240000px;}
.y88{bottom:159.960000px;}
.yda{bottom:161.940000px;}
.y173{bottom:162.660000px;}
.y149{bottom:165.720000px;}
.y29{bottom:166.260000px;}
.y59{bottom:167.880000px;}
.ya5{bottom:175.260000px;}
.y11d{bottom:176.880000px;}
.y87{bottom:177.510000px;}
.y19c{bottom:177.870000px;}
.y148{bottom:183.270000px;}
.y28{bottom:183.900000px;}
.y58{bottom:186.330000px;}
.y172{bottom:189.210000px;}
.y11c{bottom:194.430000px;}
.y86{bottom:195.150000px;}
.y19b{bottom:195.510000px;}
.y147{bottom:200.910000px;}
.y27{bottom:201.450000px;}
.y57{bottom:203.880000px;}
.y171{bottom:206.760000px;}
.ye8{bottom:206.850000px;}
.y11b{bottom:211.980000px;}
.y146{bottom:218.460000px;}
.y26{bottom:219.090000px;}
.y85{bottom:222.060000px;}
.y56{bottom:222.330000px;}
.y11a{bottom:229.620000px;}
.y170{bottom:233.400000px;}
.y145{bottom:236.100000px;}
.y25{bottom:236.640000px;}
.y19a{bottom:239.610000px;}
.y55{bottom:239.880000px;}
.y119{bottom:247.170000px;}
.y16f{bottom:250.950000px;}
.y144{bottom:253.650000px;}
.y24{bottom:254.190000px;}
.y199{bottom:257.250000px;}
.y118{bottom:264.810000px;}
.y54{bottom:267.600000px;}
.y16e{bottom:268.590000px;}
.y84{bottom:270.300000px;}
.y23{bottom:271.830000px;}
.ye7{bottom:273.180000px;}
.yc1{bottom:279.750000px;}
.y143{bottom:280.560000px;}
.y198{bottom:283.800000px;}
.y102{bottom:285.510000px;}
.y83{bottom:287.940000px;}
.y22{bottom:289.380000px;}
.ya4{bottom:290.550000px;}
.y16d{bottom:295.140000px;}
.y117{bottom:300.360000px;}
.y197{bottom:301.440000px;}
.y101{bottom:303.060000px;}
.y53{bottom:304.680000px;}
.y21{bottom:307.020000px;}
.ye6{bottom:308.730000px;}
.yd9{bottom:312.330000px;}
.y16c{bottom:312.690000px;}
.y116{bottom:317.910000px;}
.y100{bottom:320.610000px;}
.y52{bottom:322.230000px;}
.y82{bottom:323.490000px;}
.y20{bottom:324.570000px;}
.ye5{bottom:326.280000px;}
.y196{bottom:327.990000px;}
.y142{bottom:328.800000px;}
.y115{bottom:335.550000px;}
.yff{bottom:338.250000px;}
.y16b{bottom:339.330000px;}
.y51{bottom:339.780000px;}
.y1f{bottom:342.120000px;}
.ye4{bottom:343.920000px;}
.y195{bottom:345.540000px;}
.y141{bottom:346.440000px;}
.y114{bottom:353.100000px;}
.y81{bottom:355.710000px;}
.ya3{bottom:356.790000px;}
.y16a{bottom:356.880000px;}
.y50{bottom:357.420000px;}
.y1e{bottom:359.760000px;}
.ye3{bottom:361.470000px;}
.yc0{bottom:363.630000px;}
.y140{bottom:363.990000px;}
.y113{bottom:370.740000px;}
.y194{bottom:372.180000px;}
.yfe{bottom:373.800000px;}
.y4f{bottom:374.970000px;}
.y1d{bottom:377.310000px;}
.yd8{bottom:378.660000px;}
.ye2{bottom:379.110000px;}
.y13f{bottom:381.540000px;}
.y169{bottom:383.520000px;}
.y112{bottom:388.290000px;}
.y193{bottom:389.730000px;}
.yfd{bottom:391.440000px;}
.ya2{bottom:392.430000px;}
.y4e{bottom:392.610000px;}
.y1c{bottom:394.950000px;}
.ye1{bottom:396.660000px;}
.y13e{bottom:399.180000px;}
.ybf{bottom:399.270000px;}
.y168{bottom:401.070000px;}
.y111{bottom:405.840000px;}
.yfc{bottom:408.990000px;}
.ya1{bottom:409.980000px;}
.y4d{bottom:410.160000px;}
.y1b{bottom:412.500000px;}
.y80{bottom:413.130000px;}
.yd7{bottom:414.210000px;}
.y192{bottom:416.370000px;}
.ybe{bottom:416.820000px;}
.y110{bottom:423.480000px;}
.yfb{bottom:426.540000px;}
.ya0{bottom:427.620000px;}
.yd6{bottom:431.850000px;}
.y191{bottom:433.920000px;}
.ybd{bottom:434.370000px;}
.y13d{bottom:434.730000px;}
.y10f{bottom:441.030000px;}
.yfa{bottom:444.180000px;}
.y9f{bottom:445.170000px;}
.y167{bottom:445.260000px;}
.y4c{bottom:445.710000px;}
.y1a{bottom:448.050000px;}
.y7f{bottom:448.770000px;}
.yd5{bottom:449.400000px;}
.ybc{bottom:452.010000px;}
.y13c{bottom:452.370000px;}
.y190{bottom:460.470000px;}
.yf9{bottom:461.730000px;}
.y9e{bottom:462.720000px;}
.y4b{bottom:463.350000px;}
.y19{bottom:465.690000px;}
.y7e{bottom:466.320000px;}
.yd4{bottom:467.040000px;}
.y10e{bottom:467.940000px;}
.ybb{bottom:469.560000px;}
.y13b{bottom:469.950000px;}
.y166{bottom:471.840000px;}
.y18f{bottom:478.140000px;}
.yf8{bottom:479.400000px;}
.y9d{bottom:480.390000px;}
.y4a{bottom:480.930000px;}
.y18{bottom:483.270000px;}
.y7d{bottom:483.900000px;}
.yd3{bottom:484.620000px;}
.yba{bottom:487.230000px;}
.y13a{bottom:487.500000px;}
.y165{bottom:489.480000px;}
.y18e{bottom:495.690000px;}
.yf7{bottom:496.950000px;}
.y9c{bottom:497.940000px;}
.y49{bottom:498.480000px;}
.y17{bottom:500.910000px;}
.y7c{bottom:501.540000px;}
.yd2{bottom:502.170000px;}
.yb9{bottom:504.780000px;}
.y139{bottom:505.140000px;}
.yf6{bottom:514.500000px;}
.y164{bottom:516.030000px;}
.y48{bottom:516.120000px;}
.y10d{bottom:516.210000px;}
.y16{bottom:518.460000px;}
.y7b{bottom:519.090000px;}
.yd1{bottom:519.810000px;}
.yb8{bottom:522.330000px;}
.y9b{bottom:530.970000px;}
.yf5{bottom:532.140000px;}
.y163{bottom:533.580000px;}
.y10c{bottom:533.850000px;}
.y15{bottom:536.010000px;}
.y7a{bottom:536.730000px;}
.yd0{bottom:537.360000px;}
.ye0{bottom:537.810000px;}
.y18d{bottom:539.880000px;}
.yb7{bottom:539.970000px;}
.y138{bottom:540.690000px;}
.y10b{bottom:551.400000px;}
.y47{bottom:551.670000px;}
.yde{bottom:552.750000px;}
.y14{bottom:553.650000px;}
.y79{bottom:554.280000px;}
.ycf{bottom:555.000000px;}
.yb6{bottom:557.520000px;}
.y137{bottom:558.330000px;}
.y162{bottom:560.220000px;}
.yf3{bottom:565.080000px;}
.y18c{bottom:566.430000px;}
.y46{bottom:569.310000px;}
.y13{bottom:571.200000px;}
.y78{bottom:571.830000px;}
.yce{bottom:572.550000px;}
.y136{bottom:575.880000px;}
.y161{bottom:577.770000px;}
.y18b{bottom:584.070000px;}
.y45{bottom:586.860000px;}
.y10a{bottom:587.040000px;}
.y77{bottom:589.470000px;}
.ycd{bottom:590.100000px;}
.yb5{bottom:590.550000px;}
.y135{bottom:593.430000px;}
.y44{bottom:604.410000px;}
.y109{bottom:604.590000px;}
.y12{bottom:606.840000px;}
.y76{bottom:607.020000px;}
.y18a{bottom:610.620000px;}
.y99{bottom:610.980000px;}
.y134{bottom:611.070000px;}
.y160{bottom:621.960000px;}
.y43{bottom:622.050000px;}
.y108{bottom:622.140000px;}
.ycc{bottom:623.130000px;}
.y11{bottom:624.390000px;}
.y189{bottom:628.260000px;}
.y133{bottom:628.620000px;}
.y107{bottom:639.780000px;}
.y10{bottom:641.940000px;}
.y75{bottom:642.660000px;}
.y1ad{bottom:645.810000px;}
.y132{bottom:646.260000px;}
.y15f{bottom:648.510000px;}
.y188{bottom:654.810000px;}
.y106{bottom:657.330000px;}
.y42{bottom:657.600000px;}
.yf{bottom:659.580000px;}
.y74{bottom:660.210000px;}
.yf2{bottom:662.730000px;}
.y1ac{bottom:663.360000px;}
.y15e{bottom:666.150000px;}
.y187{bottom:672.360000px;}
.y105{bottom:674.970000px;}
.y41{bottom:675.240000px;}
.ye{bottom:677.130000px;}
.y73{bottom:677.760000px;}
.y131{bottom:681.810000px;}
.yb4{bottom:688.200000px;}
.y1ab{bottom:690.000000px;}
.y97{bottom:691.080000px;}
.y15d{bottom:692.700000px;}
.y40{bottom:692.790000px;}
.y72{bottom:695.400000px;}
.y186{bottom:699.000000px;}
.y130{bottom:699.360000px;}
.yd{bottom:704.040000px;}
.y1aa{bottom:707.550000px;}
.y3f{bottom:710.340000px;}
.y104{bottom:710.520000px;}
.y71{bottom:712.950000px;}
.y185{bottom:716.550000px;}
.y12f{bottom:717.000000px;}
.ydd{bottom:720.780000px;}
.y3e{bottom:727.980000px;}
.y70{bottom:730.590000px;}
.y1a9{bottom:734.190000px;}
.y12e{bottom:734.550000px;}
.y15c{bottom:736.890000px;}
.y103{bottom:742.740000px;}
.y184{bottom:743.190000px;}
.y6f{bottom:748.140000px;}
.y1a8{bottom:751.740000px;}
.y12d{bottom:752.190000px;}
.yc{bottom:752.280000px;}
.y96{bottom:753.630000px;}
.y15b{bottom:754.440000px;}
.y183{bottom:760.740000px;}
.y3d{bottom:763.530000px;}
.y1a7{bottom:769.290000px;}
.y12c{bottom:769.740000px;}
.ycb{bottom:773.520000px;}
.y182{bottom:778.290000px;}
.y15a{bottom:781.080000px;}
.y3c{bottom:781.170000px;}
.y6e{bottom:783.690000px;}
.yb3{bottom:785.850000px;}
.y12b{bottom:787.290000px;}
.yb{bottom:788.100000px;}
.yf1{bottom:795.660000px;}
.y1a6{bottom:795.930000px;}
.y159{bottom:798.630000px;}
.y3b{bottom:798.720000px;}
.y6d{bottom:801.330000px;}
.y181{bottom:804.930000px;}
.y1a5{bottom:813.480000px;}
.y3a{bottom:816.270000px;}
.y6c{bottom:818.880000px;}
.y180{bottom:822.480000px;}
.y12a{bottom:822.930000px;}
.ya{bottom:824.100000px;}
.y158{bottom:825.540000px;}
.y95{bottom:833.730000px;}
.y39{bottom:833.910000px;}
.y6b{bottom:836.520000px;}
.y1a4{bottom:840.030000px;}
.y129{bottom:840.480000px;}
.y17f{bottom:849.030000px;}
.y38{bottom:851.460000px;}
.y6a{bottom:854.070000px;}
.y1a3{bottom:857.670000px;}
.y128{bottom:858.030000px;}
.y9{bottom:863.880000px;}
.y17e{bottom:866.670000px;}
.y69{bottom:871.620000px;}
.y157{bottom:873.780000px;}
.y127{bottom:875.670000px;}
.y8{bottom:881.880000px;}
.yb2{bottom:883.500000px;}
.y1a2{bottom:884.220000px;}
.y37{bottom:887.100000px;}
.yca{bottom:888.810000px;}
.y68{bottom:889.260000px;}
.y126{bottom:893.220000px;}
.y7{bottom:899.880000px;}
.y156{bottom:900.690000px;}
.y1a1{bottom:901.860000px;}
.y36{bottom:904.650000px;}
.y67{bottom:906.810000px;}
.y17d{bottom:910.860000px;}
.y91{bottom:913.830000px;}
.y35{bottom:922.200000px;}
.y66{bottom:924.450000px;}
.y17c{bottom:928.410000px;}
.y125{bottom:928.860000px;}
.y6{bottom:932.190000px;}
.y155{bottom:938.040000px;}
.y34{bottom:939.840000px;}
.y65{bottom:942.000000px;}
.y1a0{bottom:945.960000px;}
.yed{bottom:946.050000px;}
.y124{bottom:946.410000px;}
.y5{bottom:951.540000px;}
.y17b{bottom:954.960000px;}
.y33{bottom:957.390000px;}
.y123{bottom:963.960000px;}
.y17a{bottom:972.600000px;}
.y64{bottom:977.550000px;}
.y122{bottom:981.600000px;}
.y32{bottom:984.300000px;}
.y154{bottom:986.370000px;}
.y4{bottom:989.880000px;}
.y179{bottom:990.150000px;}
.y8c{bottom:993.930000px;}
.y63{bottom:995.190000px;}
.yad{bottom:998.790000px;}
.y121{bottom:999.150000px;}
.y153{bottom:1003.920000px;}
.y62{bottom:1012.770000px;}
.y3{bottom:1014.570000px;}
.y120{bottom:1016.820000px;}
.y152{bottom:1021.500000px;}
.yc8{bottom:1021.680000px;}
.y61{bottom:1030.320000px;}
.y31{bottom:1032.930000px;}
.y178{bottom:1034.370000px;}
.ydb{bottom:1039.230000px;}
.y151{bottom:1039.950000px;}
.y60{bottom:1047.960000px;}
.y177{bottom:1051.920000px;}
.y11f{bottom:1052.370000px;}
.y150{bottom:1057.500000px;}
.y19f{bottom:1060.920000px;}
.y5f{bottom:1065.510000px;}
.y30{bottom:1069.920000px;}
.y89{bottom:1073.970000px;}
.y14f{bottom:1075.050000px;}
.y176{bottom:1078.560000px;}
.y5e{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y14e{bottom:1093.500000px;}
.y175{bottom:1096.110000px;}
.y5d{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y14d{bottom:1111.050000px;}
.yac{bottom:1114.110000px;}
.y2d{bottom:1122.750000px;}
.y5c{bottom:1127.610000px;}
.y14c{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:39.690000px;}
.hb{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h12{height:57.240000px;}
.h5{height:57.323320px;}
.ha{height:61.793886px;}
.hf{height:61.830000px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:79.290000px;}
.hd{height:79.320000px;}
.h10{height:79.380000px;}
.h1d{height:92.430000px;}
.h15{height:96.930000px;}
.h19{height:114.480000px;}
.h11{height:114.570000px;}
.h14{height:114.600000px;}
.h17{height:132.120000px;}
.h18{height:132.150000px;}
.h1a{height:149.670000px;}
.h1b{height:149.700000px;}
.h16{height:167.220000px;}
.h1c{height:167.310000px;}
.h1e{height:167.340000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:63.180000px;}
.w18{width:79.500000px;}
.w17{width:111.060000px;}
.wc{width:116.400000px;}
.w10{width:123.030000px;}
.w1a{width:125.460000px;}
.w15{width:126.390000px;}
.w11{width:137.460000px;}
.wb{width:137.520000px;}
.w19{width:144.090000px;}
.w3{width:155.280000px;}
.wd{width:163.170000px;}
.w4{width:163.260000px;}
.w16{width:165.420000px;}
.w14{width:167.760000px;}
.we{width:172.920000px;}
.w6{width:176.850000px;}
.wf{width:177.210000px;}
.w9{width:180.180000px;}
.w5{width:194.070000px;}
.w12{width:194.220000px;}
.w8{width:205.050000px;}
.wa{width:230.610000px;}
.w13{width:254.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x1e{left:111.239987px;}
.x5{left:122.039987px;}
.x10{left:185.880000px;}
.x17{left:195.870000px;}
.x14{left:206.940000px;}
.x1d{left:211.619987px;}
.x9{left:224.850000px;}
.x2{left:251.759987px;}
.xd{left:274.530000px;}
.x7{left:282.359987px;}
.x11{left:349.770000px;}
.x18{left:362.100000px;}
.xa{left:388.830000px;}
.x15{left:401.880000px;}
.xe{left:455.520000px;}
.x19{left:473.880000px;}
.x12{left:523.410000px;}
.x1a{left:554.190000px;}
.xb{left:583.620000px;}
.x16{left:656.700000px;}
.xf{left:686.940000px;}
.x1b{left:699.000000px;}
.x13{left:701.430000px;}
.x6{left:743.639987px;}
.xc{left:761.280000px;}
.x3{left:800.339987px;}
.x1c{left:802.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.062933pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.013120pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.017280pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.087467pt;}
.ls18{letter-spacing:0.102933pt;}
.ls17{letter-spacing:0.103467pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1c{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.693867pt;}
.wsd{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-3.197014pt;}
._7{margin-left:-2.266773pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043691pt;}
._5{width:2.021872pt;}
._3{width:2.986677pt;}
._4{width:4.332992pt;}
._6{width:5.428904pt;}
._c{width:6.626667pt;}
._d{width:7.559466pt;}
._13{width:8.650991pt;}
._10{width:9.805122pt;}
._9{width:10.794666pt;}
._b{width:13.547307pt;}
._16{width:14.480317pt;}
._14{width:15.387094pt;}
._8{width:16.886933pt;}
._24{width:18.116160pt;}
._25{width:19.291840pt;}
._49{width:20.509548pt;}
._1{width:21.398869pt;}
._15{width:22.570030pt;}
._e{width:23.620266pt;}
._f{width:24.528749pt;}
._11{width:25.490880pt;}
._12{width:26.585421pt;}
._30{width:28.190579pt;}
._1f{width:29.790827pt;}
._37{width:31.529600pt;}
._40{width:32.758720pt;}
._29{width:34.522240pt;}
._20{width:35.911680pt;}
._1d{width:38.583680pt;}
._22{width:40.721280pt;}
._32{width:41.683200pt;}
._4a{width:44.729280pt;}
._4b{width:47.347840pt;}
._23{width:48.470080pt;}
._27{width:49.859520pt;}
._4c{width:53.707200pt;}
._2a{width:57.394560pt;}
._36{width:59.051200pt;}
._1e{width:62.150720pt;}
._31{width:67.387840pt;}
._2f{width:68.616960pt;}
._17{width:69.846080pt;}
._1b{width:71.769920pt;}
._46{width:74.441920pt;}
._33{width:77.060480pt;}
._45{width:78.824000pt;}
._3e{width:85.763307pt;}
._38{width:88.817280pt;}
._2e{width:90.367040pt;}
._1a{width:99.665600pt;}
._3b{width:101.536000pt;}
._26{width:103.833920pt;}
._2b{width:109.231360pt;}
._2c{width:114.308160pt;}
._19{width:117.087040pt;}
._47{width:120.560640pt;}
._44{width:123.339520pt;}
._1c{width:140.654080pt;}
._48{width:145.463680pt;}
._3a{width:152.143680pt;}
._34{width:162.030080pt;}
._42{width:174.641920pt;}
._28{width:181.963200pt;}
._3d{width:189.605120pt;}
._21{width:193.880320pt;}
._2d{width:203.339200pt;}
._35{width:208.950400pt;}
._43{width:238.395840pt;}
._39{width:246.465280pt;}
._3c{width:263.619520pt;}
._3f{width:273.238720pt;}
._41{width:301.455040pt;}
._18{width:315.830400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:2.960000pt;}
.y90{bottom:6.960000pt;}
.y8b{bottom:7.040000pt;}
.yaa{bottom:18.560000pt;}
.yec{bottom:18.640000pt;}
.y94{bottom:22.560000pt;}
.y8f{bottom:22.586667pt;}
.y8a{bottom:22.640000pt;}
.yb1{bottom:22.666667pt;}
.ya9{bottom:34.240000pt;}
.y93{bottom:38.240000pt;}
.y8e{bottom:38.266667pt;}
.y98{bottom:38.320000pt;}
.yeb{bottom:49.840000pt;}
.y92{bottom:53.840000pt;}
.y8d{bottom:53.866667pt;}
.y9a{bottom:53.920000pt;}
.yb0{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.yea{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.yc7{bottom:69.440000pt;}
.ya7{bottom:69.520000pt;}
.yaf{bottom:69.546667pt;}
.yc6{bottom:85.120000pt;}
.yf0{bottom:85.146667pt;}
.ya6{bottom:85.200000pt;}
.yae{bottom:85.226667pt;}
.yf4{bottom:86.160000pt;}
.y1{bottom:90.346667pt;}
.yc2{bottom:99.386667pt;}
.yc5{bottom:100.720000pt;}
.yc9{bottom:100.800000pt;}
.yef{bottom:100.826667pt;}
.ye9{bottom:101.066667pt;}
.y5b{bottom:101.946667pt;}
.ya8{bottom:104.266667pt;}
.y14b{bottom:116.026667pt;}
.yc4{bottom:116.400000pt;}
.ydc{bottom:116.426667pt;}
.y19e{bottom:118.826667pt;}
.y174{bottom:128.906667pt;}
.y14a{bottom:131.706667pt;}
.yc3{bottom:132.000000pt;}
.ydf{bottom:132.080000pt;}
.yee{bottom:132.106667pt;}
.y5a{bottom:133.626667pt;}
.y19d{bottom:134.506667pt;}
.y11e{bottom:141.546667pt;}
.y88{bottom:142.186667pt;}
.yda{bottom:143.946667pt;}
.y173{bottom:144.586667pt;}
.y149{bottom:147.306667pt;}
.y29{bottom:147.786667pt;}
.y59{bottom:149.226667pt;}
.ya5{bottom:155.786667pt;}
.y11d{bottom:157.226667pt;}
.y87{bottom:157.786667pt;}
.y19c{bottom:158.106667pt;}
.y148{bottom:162.906667pt;}
.y28{bottom:163.466667pt;}
.y58{bottom:165.626667pt;}
.y172{bottom:168.186667pt;}
.y11c{bottom:172.826667pt;}
.y86{bottom:173.466667pt;}
.y19b{bottom:173.786667pt;}
.y147{bottom:178.586667pt;}
.y27{bottom:179.066667pt;}
.y57{bottom:181.226667pt;}
.y171{bottom:183.786667pt;}
.ye8{bottom:183.866667pt;}
.y11b{bottom:188.426667pt;}
.y146{bottom:194.186667pt;}
.y26{bottom:194.746667pt;}
.y85{bottom:197.386667pt;}
.y56{bottom:197.626667pt;}
.y11a{bottom:204.106667pt;}
.y170{bottom:207.466667pt;}
.y145{bottom:209.866667pt;}
.y25{bottom:210.346667pt;}
.y19a{bottom:212.986667pt;}
.y55{bottom:213.226667pt;}
.y119{bottom:219.706667pt;}
.y16f{bottom:223.066667pt;}
.y144{bottom:225.466667pt;}
.y24{bottom:225.946667pt;}
.y199{bottom:228.666667pt;}
.y118{bottom:235.386667pt;}
.y54{bottom:237.866667pt;}
.y16e{bottom:238.746667pt;}
.y84{bottom:240.266667pt;}
.y23{bottom:241.626667pt;}
.ye7{bottom:242.826667pt;}
.yc1{bottom:248.666667pt;}
.y143{bottom:249.386667pt;}
.y198{bottom:252.266667pt;}
.y102{bottom:253.786667pt;}
.y83{bottom:255.946667pt;}
.y22{bottom:257.226667pt;}
.ya4{bottom:258.266667pt;}
.y16d{bottom:262.346667pt;}
.y117{bottom:266.986667pt;}
.y197{bottom:267.946667pt;}
.y101{bottom:269.386667pt;}
.y53{bottom:270.826667pt;}
.y21{bottom:272.906667pt;}
.ye6{bottom:274.426667pt;}
.yd9{bottom:277.626667pt;}
.y16c{bottom:277.946667pt;}
.y116{bottom:282.586667pt;}
.y100{bottom:284.986667pt;}
.y52{bottom:286.426667pt;}
.y82{bottom:287.546667pt;}
.y20{bottom:288.506667pt;}
.ye5{bottom:290.026667pt;}
.y196{bottom:291.546667pt;}
.y142{bottom:292.266667pt;}
.y115{bottom:298.266667pt;}
.yff{bottom:300.666667pt;}
.y16b{bottom:301.626667pt;}
.y51{bottom:302.026667pt;}
.y1f{bottom:304.106667pt;}
.ye4{bottom:305.706667pt;}
.y195{bottom:307.146667pt;}
.y141{bottom:307.946667pt;}
.y114{bottom:313.866667pt;}
.y81{bottom:316.186667pt;}
.ya3{bottom:317.146667pt;}
.y16a{bottom:317.226667pt;}
.y50{bottom:317.706667pt;}
.y1e{bottom:319.786667pt;}
.ye3{bottom:321.306667pt;}
.yc0{bottom:323.226667pt;}
.y140{bottom:323.546667pt;}
.y113{bottom:329.546667pt;}
.y194{bottom:330.826667pt;}
.yfe{bottom:332.266667pt;}
.y4f{bottom:333.306667pt;}
.y1d{bottom:335.386667pt;}
.yd8{bottom:336.586667pt;}
.ye2{bottom:336.986667pt;}
.y13f{bottom:339.146667pt;}
.y169{bottom:340.906667pt;}
.y112{bottom:345.146667pt;}
.y193{bottom:346.426667pt;}
.yfd{bottom:347.946667pt;}
.ya2{bottom:348.826667pt;}
.y4e{bottom:348.986667pt;}
.y1c{bottom:351.066667pt;}
.ye1{bottom:352.586667pt;}
.y13e{bottom:354.826667pt;}
.ybf{bottom:354.906667pt;}
.y168{bottom:356.506667pt;}
.y111{bottom:360.746667pt;}
.yfc{bottom:363.546667pt;}
.ya1{bottom:364.426667pt;}
.y4d{bottom:364.586667pt;}
.y1b{bottom:366.666667pt;}
.y80{bottom:367.226667pt;}
.yd7{bottom:368.186667pt;}
.y192{bottom:370.106667pt;}
.ybe{bottom:370.506667pt;}
.y110{bottom:376.426667pt;}
.yfb{bottom:379.146667pt;}
.ya0{bottom:380.106667pt;}
.yd6{bottom:383.866667pt;}
.y191{bottom:385.706667pt;}
.ybd{bottom:386.106667pt;}
.y13d{bottom:386.426667pt;}
.y10f{bottom:392.026667pt;}
.yfa{bottom:394.826667pt;}
.y9f{bottom:395.706667pt;}
.y167{bottom:395.786667pt;}
.y4c{bottom:396.186667pt;}
.y1a{bottom:398.266667pt;}
.y7f{bottom:398.906667pt;}
.yd5{bottom:399.466667pt;}
.ybc{bottom:401.786667pt;}
.y13c{bottom:402.106667pt;}
.y190{bottom:409.306667pt;}
.yf9{bottom:410.426667pt;}
.y9e{bottom:411.306667pt;}
.y4b{bottom:411.866667pt;}
.y19{bottom:413.946667pt;}
.y7e{bottom:414.506667pt;}
.yd4{bottom:415.146667pt;}
.y10e{bottom:415.946667pt;}
.ybb{bottom:417.386667pt;}
.y13b{bottom:417.733333pt;}
.y166{bottom:419.413333pt;}
.y18f{bottom:425.013333pt;}
.yf8{bottom:426.133333pt;}
.y9d{bottom:427.013333pt;}
.y4a{bottom:427.493333pt;}
.y18{bottom:429.573333pt;}
.y7d{bottom:430.133333pt;}
.yd3{bottom:430.773333pt;}
.yba{bottom:433.093333pt;}
.y13a{bottom:433.333333pt;}
.y165{bottom:435.093333pt;}
.y18e{bottom:440.613333pt;}
.yf7{bottom:441.733333pt;}
.y9c{bottom:442.613333pt;}
.y49{bottom:443.093333pt;}
.y17{bottom:445.253333pt;}
.y7c{bottom:445.813333pt;}
.yd2{bottom:446.373333pt;}
.yb9{bottom:448.693333pt;}
.y139{bottom:449.013333pt;}
.yf6{bottom:457.333333pt;}
.y164{bottom:458.693333pt;}
.y48{bottom:458.773333pt;}
.y10d{bottom:458.853333pt;}
.y16{bottom:460.853333pt;}
.y7b{bottom:461.413333pt;}
.yd1{bottom:462.053333pt;}
.yb8{bottom:464.293333pt;}
.y9b{bottom:471.973333pt;}
.yf5{bottom:473.013333pt;}
.y163{bottom:474.293333pt;}
.y10c{bottom:474.533333pt;}
.y15{bottom:476.453333pt;}
.y7a{bottom:477.093333pt;}
.yd0{bottom:477.653333pt;}
.ye0{bottom:478.053333pt;}
.y18d{bottom:479.893333pt;}
.yb7{bottom:479.973333pt;}
.y138{bottom:480.613333pt;}
.y10b{bottom:490.133333pt;}
.y47{bottom:490.373333pt;}
.yde{bottom:491.333333pt;}
.y14{bottom:492.133333pt;}
.y79{bottom:492.693333pt;}
.ycf{bottom:493.333333pt;}
.yb6{bottom:495.573333pt;}
.y137{bottom:496.293333pt;}
.y162{bottom:497.973333pt;}
.yf3{bottom:502.293333pt;}
.y18c{bottom:503.493333pt;}
.y46{bottom:506.053333pt;}
.y13{bottom:507.733333pt;}
.y78{bottom:508.293333pt;}
.yce{bottom:508.933333pt;}
.y136{bottom:511.893333pt;}
.y161{bottom:513.573333pt;}
.y18b{bottom:519.173333pt;}
.y45{bottom:521.653333pt;}
.y10a{bottom:521.813333pt;}
.y77{bottom:523.973333pt;}
.ycd{bottom:524.533333pt;}
.yb5{bottom:524.933333pt;}
.y135{bottom:527.493333pt;}
.y44{bottom:537.253333pt;}
.y109{bottom:537.413333pt;}
.y12{bottom:539.413333pt;}
.y76{bottom:539.573333pt;}
.y18a{bottom:542.773333pt;}
.y99{bottom:543.093333pt;}
.y134{bottom:543.173333pt;}
.y160{bottom:552.853333pt;}
.y43{bottom:552.933333pt;}
.y108{bottom:553.013333pt;}
.ycc{bottom:553.893333pt;}
.y11{bottom:555.013333pt;}
.y189{bottom:558.453333pt;}
.y133{bottom:558.773333pt;}
.y107{bottom:568.693333pt;}
.y10{bottom:570.613333pt;}
.y75{bottom:571.253333pt;}
.y1ad{bottom:574.053333pt;}
.y132{bottom:574.453333pt;}
.y15f{bottom:576.453333pt;}
.y188{bottom:582.053333pt;}
.y106{bottom:584.293333pt;}
.y42{bottom:584.533333pt;}
.yf{bottom:586.293333pt;}
.y74{bottom:586.853333pt;}
.yf2{bottom:589.093333pt;}
.y1ac{bottom:589.653333pt;}
.y15e{bottom:592.133333pt;}
.y187{bottom:597.653333pt;}
.y105{bottom:599.973333pt;}
.y41{bottom:600.213333pt;}
.ye{bottom:601.893333pt;}
.y73{bottom:602.453333pt;}
.y131{bottom:606.053333pt;}
.yb4{bottom:611.733333pt;}
.y1ab{bottom:613.333333pt;}
.y97{bottom:614.293333pt;}
.y15d{bottom:615.733333pt;}
.y40{bottom:615.813333pt;}
.y72{bottom:618.133333pt;}
.y186{bottom:621.333333pt;}
.y130{bottom:621.653333pt;}
.yd{bottom:625.813333pt;}
.y1aa{bottom:628.933333pt;}
.y3f{bottom:631.413333pt;}
.y104{bottom:631.573333pt;}
.y71{bottom:633.733333pt;}
.y185{bottom:636.933333pt;}
.y12f{bottom:637.333333pt;}
.ydd{bottom:640.693333pt;}
.y3e{bottom:647.093333pt;}
.y70{bottom:649.413333pt;}
.y1a9{bottom:652.613333pt;}
.y12e{bottom:652.933333pt;}
.y15c{bottom:655.013333pt;}
.y103{bottom:660.213333pt;}
.y184{bottom:660.613333pt;}
.y6f{bottom:665.013333pt;}
.y1a8{bottom:668.213333pt;}
.y12d{bottom:668.613333pt;}
.yc{bottom:668.693333pt;}
.y96{bottom:669.893333pt;}
.y15b{bottom:670.613333pt;}
.y183{bottom:676.213333pt;}
.y3d{bottom:678.693333pt;}
.y1a7{bottom:683.813333pt;}
.y12c{bottom:684.213333pt;}
.ycb{bottom:687.573333pt;}
.y182{bottom:691.813333pt;}
.y15a{bottom:694.293333pt;}
.y3c{bottom:694.373333pt;}
.y6e{bottom:696.613333pt;}
.yb3{bottom:698.533333pt;}
.y12b{bottom:699.813333pt;}
.yb{bottom:700.533333pt;}
.yf1{bottom:707.253333pt;}
.y1a6{bottom:707.493333pt;}
.y159{bottom:709.893333pt;}
.y3b{bottom:709.973333pt;}
.y6d{bottom:712.293333pt;}
.y181{bottom:715.493333pt;}
.y1a5{bottom:723.093333pt;}
.y3a{bottom:725.573333pt;}
.y6c{bottom:727.893333pt;}
.y180{bottom:731.093333pt;}
.y12a{bottom:731.493333pt;}
.ya{bottom:732.533333pt;}
.y158{bottom:733.813333pt;}
.y95{bottom:741.093333pt;}
.y39{bottom:741.253333pt;}
.y6b{bottom:743.573333pt;}
.y1a4{bottom:746.693333pt;}
.y129{bottom:747.093333pt;}
.y17f{bottom:754.693333pt;}
.y38{bottom:756.853333pt;}
.y6a{bottom:759.173333pt;}
.y1a3{bottom:762.373333pt;}
.y128{bottom:762.693333pt;}
.y9{bottom:767.893333pt;}
.y17e{bottom:770.373333pt;}
.y69{bottom:774.773333pt;}
.y157{bottom:776.693333pt;}
.y127{bottom:778.373333pt;}
.y8{bottom:783.893333pt;}
.yb2{bottom:785.333333pt;}
.y1a2{bottom:785.973333pt;}
.y37{bottom:788.533333pt;}
.yca{bottom:790.053333pt;}
.y68{bottom:790.453333pt;}
.y126{bottom:793.973333pt;}
.y7{bottom:799.893333pt;}
.y156{bottom:800.613333pt;}
.y1a1{bottom:801.653333pt;}
.y36{bottom:804.133333pt;}
.y67{bottom:806.053333pt;}
.y17d{bottom:809.653333pt;}
.y91{bottom:812.293333pt;}
.y35{bottom:819.733333pt;}
.y66{bottom:821.733333pt;}
.y17c{bottom:825.253333pt;}
.y125{bottom:825.653333pt;}
.y6{bottom:828.613333pt;}
.y155{bottom:833.813333pt;}
.y34{bottom:835.413333pt;}
.y65{bottom:837.333333pt;}
.y1a0{bottom:840.853333pt;}
.yed{bottom:840.933333pt;}
.y124{bottom:841.253333pt;}
.y5{bottom:845.813333pt;}
.y17b{bottom:848.853333pt;}
.y33{bottom:851.013333pt;}
.y123{bottom:856.853333pt;}
.y17a{bottom:864.533333pt;}
.y64{bottom:868.933333pt;}
.y122{bottom:872.533333pt;}
.y32{bottom:874.933333pt;}
.y154{bottom:876.773333pt;}
.y4{bottom:879.893333pt;}
.y179{bottom:880.133333pt;}
.y8c{bottom:883.493333pt;}
.y63{bottom:884.613333pt;}
.yad{bottom:887.813333pt;}
.y121{bottom:888.133333pt;}
.y153{bottom:892.373333pt;}
.y62{bottom:900.240000pt;}
.y3{bottom:901.840000pt;}
.y120{bottom:903.840000pt;}
.y152{bottom:908.000000pt;}
.yc8{bottom:908.160000pt;}
.y61{bottom:915.840000pt;}
.y31{bottom:918.160000pt;}
.y178{bottom:919.440000pt;}
.ydb{bottom:923.760000pt;}
.y151{bottom:924.400000pt;}
.y60{bottom:931.520000pt;}
.y177{bottom:935.040000pt;}
.y11f{bottom:935.440000pt;}
.y150{bottom:940.000000pt;}
.y19f{bottom:943.040000pt;}
.y5f{bottom:947.120000pt;}
.y30{bottom:951.040000pt;}
.y89{bottom:954.640000pt;}
.y14f{bottom:955.600000pt;}
.y176{bottom:958.720000pt;}
.y5e{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y14e{bottom:972.000000pt;}
.y175{bottom:974.320000pt;}
.y5d{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y14d{bottom:987.600000pt;}
.yac{bottom:990.320000pt;}
.y2d{bottom:998.000000pt;}
.y5c{bottom:1002.320000pt;}
.y14c{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:35.280000pt;}
.hb{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h12{height:50.880000pt;}
.h5{height:50.954062pt;}
.ha{height:54.927899pt;}
.hf{height:54.960000pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:70.480000pt;}
.hd{height:70.506667pt;}
.h10{height:70.560000pt;}
.h1d{height:82.160000pt;}
.h15{height:86.160000pt;}
.h19{height:101.760000pt;}
.h11{height:101.840000pt;}
.h14{height:101.866667pt;}
.h17{height:117.440000pt;}
.h18{height:117.466667pt;}
.h1a{height:133.040000pt;}
.h1b{height:133.066667pt;}
.h16{height:148.640000pt;}
.h1c{height:148.720000pt;}
.h1e{height:148.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:56.160000pt;}
.w18{width:70.666667pt;}
.w17{width:98.720000pt;}
.wc{width:103.466667pt;}
.w10{width:109.360000pt;}
.w1a{width:111.520000pt;}
.w15{width:112.346667pt;}
.w11{width:122.186667pt;}
.wb{width:122.240000pt;}
.w19{width:128.080000pt;}
.w3{width:138.026667pt;}
.wd{width:145.040000pt;}
.w4{width:145.120000pt;}
.w16{width:147.040000pt;}
.w14{width:149.120000pt;}
.we{width:153.706667pt;}
.w6{width:157.200000pt;}
.wf{width:157.520000pt;}
.w9{width:160.160000pt;}
.w5{width:172.506667pt;}
.w12{width:172.640000pt;}
.w8{width:182.266667pt;}
.wa{width:204.986667pt;}
.w13{width:225.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x1e{left:98.879988pt;}
.x5{left:108.479988pt;}
.x10{left:165.226667pt;}
.x17{left:174.106667pt;}
.x14{left:183.946667pt;}
.x1d{left:188.106655pt;}
.x9{left:199.866667pt;}
.x2{left:223.786655pt;}
.xd{left:244.026667pt;}
.x7{left:250.986655pt;}
.x11{left:310.906667pt;}
.x18{left:321.866667pt;}
.xa{left:345.626667pt;}
.x15{left:357.226667pt;}
.xe{left:404.906667pt;}
.x19{left:421.226667pt;}
.x12{left:465.253333pt;}
.x1a{left:492.613333pt;}
.xb{left:518.773333pt;}
.x16{left:583.733333pt;}
.xf{left:610.613333pt;}
.x1b{left:621.333333pt;}
.x13{left:623.493333pt;}
.x6{left:661.013322pt;}
.xc{left:676.693333pt;}
.x3{left:711.413322pt;}
.x1c{left:713.013322pt;}
}




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