
    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_ba25656d5d20d27fc644f689.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc0e057c07e7422ac10d3f2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_cc330bdec4bdeac4a8e899d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_88b05ad356257db11cde08fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af400de6cf3c43df25c9e619.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_a0250ed0bc93fc22b1a35ae1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3b0e0dd7b8a0ffed48dd8263.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142578;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_ee16b918864d1fb3ff13d33f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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;}
.ls15{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.618000px;}
.ls10{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.310200px;}
.ls16{letter-spacing:-0.230400px;}
.ls18{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.193200px;}
.ls9{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.115200px;}
.lsb{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.048960px;}
.ls11{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.036000px;}
.lse{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.141000px;}
.ls14{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.175800px;}
.ls6{letter-spacing:0.256200px;}
.ls13{letter-spacing:0.279360px;}
.ls12{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.660000px;}
.ls5{letter-spacing:9.378720px;}
.ls3{letter-spacing:66.389760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-95.760000px;}
.ws8{word-spacing:-66.240000px;}
.ws14{word-spacing:-54.000000px;}
.ws15{word-spacing:-21.817560px;}
.wsa{word-spacing:-21.331560px;}
.ws5{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.111240px;}
.ws4{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.861040px;}
.ws12{word-spacing:-14.855040px;}
.ws7{word-spacing:-14.837640px;}
.ws13{word-spacing:-14.754240px;}
.ws11{word-spacing:-14.739840px;}
.wsd{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.352240px;}
.ws6{word-spacing:-14.310240px;}
.ws0{word-spacing:-14.165760px;}
.ws2{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.447440px;}
.ws10{word-spacing:-12.204000px;}
.wse{word-spacing:-12.186000px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-12.192480px;}
._7{margin-left:-10.948560px;}
._c{margin-left:-8.710560px;}
._9{margin-left:-7.680480px;}
._6{margin-left:-6.221760px;}
._5{margin-left:-4.320000px;}
._4{margin-left:-2.592000px;}
._1{margin-left:-1.086960px;}
._0{width:1.374480px;}
._14{width:11.047680px;}
._e{width:27.607920px;}
._16{width:54.170160px;}
._a{width:66.001200px;}
._18{width:116.342160px;}
._10{width:119.656224px;}
._12{width:125.017680px;}
._15{width:126.106800px;}
._13{width:132.173520px;}
._19{width:134.254080px;}
._11{width:141.447120px;}
._17{width:166.419600px;}
._f{width:201.209760px;}
._2{width:588.529680px;}
._8{width:849.185760px;}
._d{width:1010.514240px;}
._3{width:1040.754240px;}
.fc5{color:transparent;}
.fc3{color:rgb(46,116,181);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:216.000000px;}
.y4c{bottom:-94.500000px;}
.y95{bottom:-92.730000px;}
.y4b{bottom:-64.260000px;}
.y94{bottom:-58.530000px;}
.y91{bottom:-52.920000px;}
.y4a{bottom:-34.020000px;}
.ydf{bottom:-29.730000px;}
.y126{bottom:-27.180000px;}
.y64{bottom:-27.030000px;}
.ybd{bottom:-26.850000px;}
.y90{bottom:-18.900000px;}
.y144{bottom:-18.354000px;}
.y60{bottom:-16.410000px;}
.y83{bottom:-12.780000px;}
.yf1{bottom:-12.234000px;}
.y9a{bottom:-8.640000px;}
.y87{bottom:-6.840000px;}
.y135{bottom:-4.860000px;}
.y76{bottom:-4.680000px;}
.y49{bottom:-3.960000px;}
.y12e{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:0.180000px;}
.y93{bottom:0.900000px;}
.y50{bottom:1.470000px;}
.y58{bottom:1.515000px;}
.y52{bottom:1.650000px;}
.y56{bottom:1.695000px;}
.yc1{bottom:2.340000px;}
.yde{bottom:4.500000px;}
.y125{bottom:7.020000px;}
.y63{bottom:7.200000px;}
.ybc{bottom:7.380000px;}
.y9e{bottom:8.100000px;}
.yd5{bottom:8.280000px;}
.y12b{bottom:11.700000px;}
.y8f{bottom:12.600000px;}
.y1e{bottom:14.400000px;}
.y10b{bottom:14.430000px;}
.y1a{bottom:14.580000px;}
.y143{bottom:15.840000px;}
.y5f{bottom:17.820000px;}
.y54{bottom:18.390000px;}
.y82{bottom:21.420000px;}
.yf0{bottom:21.960000px;}
.y99{bottom:25.590000px;}
.y86{bottom:27.360000px;}
.ydd{bottom:27.540000px;}
.ydb{bottom:28.620000px;}
.y134{bottom:29.340000px;}
.y75{bottom:29.520000px;}
.y124{bottom:29.880000px;}
.y62{bottom:30.240000px;}
.ybb{bottom:30.600000px;}
.yd4{bottom:31.320000px;}
.yb3{bottom:34.380000px;}
.y12a{bottom:34.560000px;}
.yc0{bottom:36.540000px;}
.y142{bottom:38.700000px;}
.y8e{bottom:40.500000px;}
.y5e{bottom:40.860000px;}
.y10d{bottom:40.965000px;}
.y9d{bottom:42.300000px;}
.y81{bottom:44.460000px;}
.yef{bottom:45.180000px;}
.y79{bottom:48.600000px;}
.y98{bottom:48.630000px;}
.y7c{bottom:48.780000px;}
.y85{bottom:50.220000px;}
.yda{bottom:51.480000px;}
.y133{bottom:52.380000px;}
.y74{bottom:52.560000px;}
.y12d{bottom:54.360000px;}
.y6{bottom:56.880000px;}
.yb2{bottom:57.420000px;}
.ybf{bottom:59.580000px;}
.y9c{bottom:65.340000px;}
.y78{bottom:71.640000px;}
.y7b{bottom:71.820000px;}
.y5{bottom:75.240000px;}
.y4{bottom:93.600000px;}
.y3{bottom:111.780000px;}
.y2{bottom:130.140000px;}
.y122{bottom:149.256000px;}
.y61{bottom:151.950000px;}
.yba{bottom:152.490000px;}
.y59{bottom:152.640000px;}
.ydc{bottom:152.850000px;}
.y129{bottom:153.030000px;}
.y92{bottom:153.210000px;}
.y141{bottom:153.390000px;}
.yfa{bottom:153.720000px;}
.y7a{bottom:156.090000px;}
.y9b{bottom:157.530000px;}
.yd2{bottom:159.510000px;}
.y4d{bottom:160.020000px;}
.yb0{bottom:162.030000px;}
.y7f{bottom:163.110000px;}
.y32{bottom:164.010000px;}
.y121{bottom:179.310000px;}
.yd1{bottom:189.750000px;}
.y80{bottom:192.270000px;}
.y31{bottom:195.690000px;}
.y10a{bottom:198.390000px;}
.y4f{bottom:205.020000px;}
.y120{bottom:209.550000px;}
.yd0{bottom:219.990000px;}
.yaf{bottom:222.510000px;}
.y109{bottom:228.450000px;}
.y30{bottom:233.850000px;}
.y11f{bottom:239.790000px;}
.y72{bottom:248.970000px;}
.y51{bottom:249.840000px;}
.ycf{bottom:250.230000px;}
.yae{bottom:252.750000px;}
.y108{bottom:258.690000px;}
.y11e{bottom:270.030000px;}
.y71{bottom:279.210000px;}
.yce{bottom:280.470000px;}
.yad{bottom:282.990000px;}
.y107{bottom:288.930000px;}
.y2f{bottom:289.110000px;}
.y11d{bottom:300.270000px;}
.y70{bottom:309.270000px;}
.ycd{bottom:310.530000px;}
.y3f{bottom:311.085000px;}
.yac{bottom:313.230000px;}
.y106{bottom:319.170000px;}
.y2e{bottom:326.010000px;}
.y11c{bottom:330.510000px;}
.y6f{bottom:339.510000px;}
.ycc{bottom:340.770000px;}
.yab{bottom:343.470000px;}
.y11b{bottom:360.570000px;}
.y53{bottom:362.160000px;}
.y6e{bottom:369.750000px;}
.ycb{bottom:371.010000px;}
.yaa{bottom:373.530000px;}
.y105{bottom:379.650000px;}
.y2d{bottom:381.270000px;}
.y11a{bottom:390.855000px;}
.y6d{bottom:400.035000px;}
.yca{bottom:401.295000px;}
.ya9{bottom:403.815000px;}
.y104{bottom:409.935000px;}
.y2c{bottom:411.555000px;}
.y4e{bottom:420.375000px;}
.y119{bottom:421.095000px;}
.y6c{bottom:430.275000px;}
.yc9{bottom:431.535000px;}
.ya8{bottom:434.055000px;}
.y103{bottom:439.995000px;}
.y2b{bottom:449.355000px;}
.y118{bottom:451.335000px;}
.y6b{bottom:460.515000px;}
.yc8{bottom:461.775000px;}
.y102{bottom:470.235000px;}
.ya7{bottom:470.775000px;}
.y117{bottom:481.575000px;}
.y2a{bottom:486.975000px;}
.y3d{bottom:489.675000px;}
.y6a{bottom:490.575000px;}
.yc7{bottom:491.835000px;}
.y101{bottom:500.475000px;}
.y116{bottom:511.815000px;}
.y3c{bottom:519.735000px;}
.y69{bottom:520.815000px;}
.yc6{bottom:522.075000px;}
.y29{bottom:524.775000px;}
.ya6{bottom:526.215000px;}
.yfb{bottom:528.045000px;}
.y100{bottom:530.715000px;}
.y57{bottom:534.960000px;}
.y12c{bottom:540.795000px;}
.y115{bottom:542.055000px;}
.yb9{bottom:542.595000px;}
.y3b{bottom:549.975000px;}
.y68{bottom:551.055000px;}
.yc5{bottom:552.315000px;}
.y17{bottom:555.915000px;}
.ya5{bottom:556.455000px;}
.y55{bottom:557.820000px;}
.yff{bottom:560.955000px;}
.y28{bottom:562.395000px;}
.y8d{bottom:564.195000px;}
.y114{bottom:572.115000px;}
.yb8{bottom:572.835000px;}
.y3a{bottom:580.215000px;}
.y67{bottom:581.295000px;}
.y16{bottom:586.155000px;}
.ya4{bottom:586.695000px;}
.yc4{bottom:589.035000px;}
.yfe{bottom:591.195000px;}
.yee{bottom:593.715000px;}
.y8c{bottom:594.435000px;}
.y27{bottom:600.195000px;}
.y96{bottom:602.175000px;}
.y113{bottom:602.355000px;}
.yb7{bottom:603.075000px;}
.y39{bottom:610.455000px;}
.y66{bottom:611.535000px;}
.y15{bottom:616.395000px;}
.ya3{bottom:616.935000px;}
.y151{bottom:618.735000px;}
.yfd{bottom:621.255000px;}
.yed{bottom:623.955000px;}
.y8b{bottom:624.495000px;}
.y97{bottom:631.155000px;}
.y112{bottom:632.595000px;}
.yb6{bottom:633.315000px;}
.y26{bottom:637.815000px;}
.y7e{bottom:639.825000px;}
.y77{bottom:640.545000px;}
.y38{bottom:640.725000px;}
.y65{bottom:641.805000px;}
.y5d{bottom:643.965000px;}
.yc3{bottom:644.505000px;}
.y131{bottom:645.765000px;}
.y14{bottom:646.665000px;}
.ya2{bottom:647.025000px;}
.y150{bottom:649.005000px;}
.yfc{bottom:651.525000px;}
.yec{bottom:654.225000px;}
.yd8{bottom:654.585000px;}
.y8a{bottom:654.765000px;}
.y111{bottom:662.865000px;}
.yb5{bottom:663.405000px;}
.y13{bottom:670.425000px;}
.y37{bottom:670.965000px;}
.y73{bottom:671.685000px;}
.yc2{bottom:674.745000px;}
.y25{bottom:675.645000px;}
.y130{bottom:676.005000px;}
.y7d{bottom:676.545000px;}
.ya1{bottom:677.265000px;}
.y14f{bottom:679.245000px;}
.yeb{bottom:684.465000px;}
.yd7{bottom:684.825000px;}
.y89{bottom:685.005000px;}
.y140{bottom:685.905000px;}
.ybe{bottom:692.745000px;}
.y110{bottom:693.105000px;}
.y36{bottom:701.025000px;}
.y10c{bottom:703.080000px;}
.yd3{bottom:703.545000px;}
.y12f{bottom:706.245000px;}
.y12{bottom:706.965000px;}
.ya0{bottom:707.505000px;}
.y24{bottom:713.265000px;}
.yea{bottom:714.705000px;}
.yd6{bottom:715.065000px;}
.y88{bottom:715.245000px;}
.y14e{bottom:715.965000px;}
.y13f{bottom:716.145000px;}
.y10f{bottom:723.345000px;}
.y35{bottom:731.265000px;}
.y84{bottom:731.805000px;}
.y132{bottom:736.305000px;}
.y9f{bottom:737.745000px;}
.y11{bottom:743.685000px;}
.yd9{bottom:744.045000px;}
.ye9{bottom:744.945000px;}
.y13e{bottom:746.385000px;}
.y23{bottom:751.065000px;}
.y10e{bottom:753.405000px;}
.y34{bottom:761.505000px;}
.yb1{bottom:767.445000px;}
.y14d{bottom:771.405000px;}
.ye8{bottom:775.005000px;}
.y13d{bottom:776.625000px;}
.y10{bottom:780.225000px;}
.y123{bottom:783.645000px;}
.y22{bottom:788.685000px;}
.y33{bottom:791.745000px;}
.yf9{bottom:793.005000px;}
.y14c{bottom:801.465000px;}
.ye7{bottom:805.245000px;}
.y13c{bottom:806.865000px;}
.yf{bottom:816.945000px;}
.y3e{bottom:820.725000px;}
.yf8{bottom:823.245000px;}
.y21{bottom:826.485000px;}
.y14b{bottom:831.705000px;}
.y48{bottom:833.325000px;}
.ye6{bottom:835.485000px;}
.y13b{bottom:837.105000px;}
.ye{bottom:853.485000px;}
.y14a{bottom:861.945000px;}
.y20{bottom:864.105000px;}
.y47{bottom:864.285000px;}
.ye5{bottom:865.725000px;}
.y13a{bottom:867.165000px;}
.yf7{bottom:883.725000px;}
.yd{bottom:890.205000px;}
.y149{bottom:892.230000px;}
.y46{bottom:895.290000px;}
.ye4{bottom:896.010000px;}
.y139{bottom:897.450000px;}
.y1f{bottom:901.050000px;}
.y148{bottom:908.610000px;}
.yf6{bottom:914.010000px;}
.y45{bottom:926.250000px;}
.yc{bottom:926.790000px;}
.y138{bottom:927.690000px;}
.y147{bottom:939.570000px;}
.y1d{bottom:941.910000px;}
.yf5{bottom:944.250000px;}
.ye3{bottom:956.310000px;}
.y44{bottom:957.210000px;}
.y137{bottom:957.930000px;}
.yb{bottom:963.510000px;}
.y146{bottom:970.530000px;}
.y1c{bottom:971.970000px;}
.yf4{bottom:974.310000px;}
.ye2{bottom:986.550000px;}
.y43{bottom:988.170000px;}
.ya{bottom:1000.050000px;}
.y145{bottom:1001.490000px;}
.y1b{bottom:1002.210000px;}
.yf3{bottom:1004.550000px;}
.ye1{bottom:1016.790000px;}
.y136{bottom:1018.410000px;}
.y42{bottom:1019.130000px;}
.y19{bottom:1032.450000px;}
.yf2{bottom:1034.790000px;}
.y9{bottom:1042.890000px;}
.ye0{bottom:1047.030000px;}
.y128{bottom:1048.470000px;}
.y41{bottom:1050.090000px;}
.y5c{bottom:1065.030000px;}
.y127{bottom:1078.710000px;}
.y40{bottom:1081.050000px;}
.y18{bottom:1083.750000px;}
.y5b{bottom:1095.270000px;}
.y8{bottom:1108.950000px;}
.y5a{bottom:1131.990000px;}
.y7{bottom:1139.190000px;}
.y1{bottom:1194.120000px;}
.he{height:17.460000px;}
.h8{height:30.060000px;}
.hc{height:30.096000px;}
.h7{height:30.240000px;}
.h10{height:31.680000px;}
.hf{height:34.380000px;}
.h11{height:41.238281px;}
.h28{height:54.000000px;}
.hb{height:54.984375px;}
.h1c{height:55.291992px;}
.h3{height:59.439023px;}
.h2{height:65.884219px;}
.h27{height:66.027445px;}
.h1e{height:67.824844px;}
.h9{height:71.613281px;}
.h6{height:91.177734px;}
.h5{height:114.486328px;}
.h4{height:205.664062px;}
.ha{height:328.215000px;}
.h2a{height:351.930000px;}
.h29{height:365.295000px;}
.h20{height:373.530000px;}
.h1f{height:381.495000px;}
.h1a{height:383.610000px;}
.h12{height:396.930000px;}
.h25{height:397.650000px;}
.h18{height:399.090000px;}
.h1d{height:402.870000px;}
.h17{height:404.490000px;}
.h23{height:404.895000px;}
.h19{height:405.255000px;}
.h2c{height:412.635000px;}
.h14{height:435.270000px;}
.hd{height:436.140000px;}
.h22{height:445.395000px;}
.h1b{height:452.055000px;}
.h15{height:454.350000px;}
.h16{height:454.530000px;}
.h21{height:456.195000px;}
.h13{height:457.770000px;}
.h2b{height:466.275000px;}
.h24{height:468.570000px;}
.h2d{height:493.635000px;}
.h26{height:543.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:32.220000px;}
.w3{width:72.180000px;}
.wd{width:89.460000px;}
.w9{width:114.300000px;}
.w8{width:114.336000px;}
.w4{width:129.816000px;}
.w13{width:135.576000px;}
.w14{width:135.720000px;}
.w12{width:135.756000px;}
.wa{width:162.210000px;}
.w7{width:257.250000px;}
.w11{width:266.430000px;}
.w5{width:457.095000px;}
.wb{width:673.200000px;}
.wf{width:673.350000px;}
.w10{width:673.380000px;}
.w6{width:673.485000px;}
.we{width:674.280000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xa{left:10.800000px;}
.x3a{left:39.420000px;}
.x37{left:47.514000px;}
.x32{left:49.854000px;}
.x34{left:52.374000px;}
.x3c{left:63.360000px;}
.x3d{left:67.890000px;}
.x35{left:83.154000px;}
.x19{left:100.974000px;}
.x1{left:108.035987px;}
.x13{left:109.614000px;}
.x17{left:112.314000px;}
.x6{left:120.096000px;}
.x15{left:123.516000px;}
.x2d{left:124.734000px;}
.x1c{left:129.636000px;}
.x11{left:131.934000px;}
.x18{left:138.054000px;}
.x1e{left:144.219000px;}
.x2a{left:147.054000px;}
.x28{left:149.034000px;}
.x24{left:152.454000px;}
.x5{left:153.939000px;}
.xd{left:156.060000px;}
.x3{left:180.210000px;}
.x22{left:182.739000px;}
.x20{left:185.619000px;}
.x1b{left:197.319000px;}
.x30{left:213.519000px;}
.xf{left:226.155000px;}
.x2e{left:281.414987px;}
.x4{left:310.035000px;}
.x21{left:335.049000px;}
.x14{left:336.669000px;}
.x38{left:375.915000px;}
.x7{left:378.075000px;}
.xe{left:439.200000px;}
.xb{left:462.960000px;}
.x8{left:493.305000px;}
.x39{left:512.385000px;}
.x31{left:548.214000px;}
.x26{left:552.714000px;}
.x2f{left:559.914000px;}
.x25{left:561.714000px;}
.x27{left:565.314000px;}
.x1d{left:569.634000px;}
.x2b{left:571.974000px;}
.x1a{left:576.474000px;}
.x1f{left:579.714000px;}
.x16{left:592.134000px;}
.x29{left:601.134000px;}
.x23{left:605.634000px;}
.x9{left:608.325000px;}
.x33{left:611.214000px;}
.x10{left:612.474000px;}
.xc{left:619.920000px;}
.x12{left:621.474000px;}
.x2c{left:630.654000px;}
.x36{left:640.554000px;}
.x3b{left:648.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.549333pt;}
.ls10{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.275733pt;}
.ls16{letter-spacing:-0.204800pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.171733pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.102400pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.125333pt;}
.ls14{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.156267pt;}
.ls6{letter-spacing:0.227733pt;}
.ls13{letter-spacing:0.248320pt;}
.ls12{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.586667pt;}
.ls5{letter-spacing:8.336640pt;}
.ls3{letter-spacing:59.013120pt;}
.wsf{word-spacing:-85.120000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws14{word-spacing:-48.000000pt;}
.ws15{word-spacing:-19.393387pt;}
.wsa{word-spacing:-18.961387pt;}
.ws5{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.432213pt;}
.ws4{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.209813pt;}
.ws12{word-spacing:-13.204480pt;}
.ws7{word-spacing:-13.189013pt;}
.ws13{word-spacing:-13.114880pt;}
.ws11{word-spacing:-13.102080pt;}
.wsd{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.757547pt;}
.ws6{word-spacing:-12.720213pt;}
.ws0{word-spacing:-12.591787pt;}
.ws2{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.953280pt;}
.ws10{word-spacing:-10.848000pt;}
.wse{word-spacing:-10.832000pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-10.837760pt;}
._7{margin-left:-9.732053pt;}
._c{margin-left:-7.742720pt;}
._9{margin-left:-6.827093pt;}
._6{margin-left:-5.530453pt;}
._5{margin-left:-3.840000pt;}
._4{margin-left:-2.304000pt;}
._1{margin-left:-0.966187pt;}
._0{width:1.221760pt;}
._14{width:9.820160pt;}
._e{width:24.540373pt;}
._16{width:48.151253pt;}
._a{width:58.667733pt;}
._18{width:103.415253pt;}
._10{width:106.361088pt;}
._12{width:111.126827pt;}
._15{width:112.094933pt;}
._13{width:117.487573pt;}
._19{width:119.336960pt;}
._11{width:125.730773pt;}
._17{width:147.928533pt;}
._f{width:178.853120pt;}
._2{width:523.137493pt;}
._8{width:754.831787pt;}
._d{width:898.234880pt;}
._3{width:925.114880pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:192.000000pt;}
.y4c{bottom:-84.000000pt;}
.y95{bottom:-82.426667pt;}
.y4b{bottom:-57.120000pt;}
.y94{bottom:-52.026667pt;}
.y91{bottom:-47.040000pt;}
.y4a{bottom:-30.240000pt;}
.ydf{bottom:-26.426667pt;}
.y126{bottom:-24.160000pt;}
.y64{bottom:-24.026667pt;}
.ybd{bottom:-23.866667pt;}
.y90{bottom:-16.800000pt;}
.y144{bottom:-16.314667pt;}
.y60{bottom:-14.586667pt;}
.y83{bottom:-11.360000pt;}
.yf1{bottom:-10.874667pt;}
.y9a{bottom:-7.680000pt;}
.y87{bottom:-6.080000pt;}
.y135{bottom:-4.320000pt;}
.y76{bottom:-4.160000pt;}
.y49{bottom:-3.520000pt;}
.y12e{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:0.160000pt;}
.y93{bottom:0.800000pt;}
.y50{bottom:1.306667pt;}
.y58{bottom:1.346667pt;}
.y52{bottom:1.466667pt;}
.y56{bottom:1.506667pt;}
.yc1{bottom:2.080000pt;}
.yde{bottom:4.000000pt;}
.y125{bottom:6.240000pt;}
.y63{bottom:6.400000pt;}
.ybc{bottom:6.560000pt;}
.y9e{bottom:7.200000pt;}
.yd5{bottom:7.360000pt;}
.y12b{bottom:10.400000pt;}
.y8f{bottom:11.200000pt;}
.y1e{bottom:12.800000pt;}
.y10b{bottom:12.826667pt;}
.y1a{bottom:12.960000pt;}
.y143{bottom:14.080000pt;}
.y5f{bottom:15.840000pt;}
.y54{bottom:16.346667pt;}
.y82{bottom:19.040000pt;}
.yf0{bottom:19.520000pt;}
.y99{bottom:22.746667pt;}
.y86{bottom:24.320000pt;}
.ydd{bottom:24.480000pt;}
.ydb{bottom:25.440000pt;}
.y134{bottom:26.080000pt;}
.y75{bottom:26.240000pt;}
.y124{bottom:26.560000pt;}
.y62{bottom:26.880000pt;}
.ybb{bottom:27.200000pt;}
.yd4{bottom:27.840000pt;}
.yb3{bottom:30.560000pt;}
.y12a{bottom:30.720000pt;}
.yc0{bottom:32.480000pt;}
.y142{bottom:34.400000pt;}
.y8e{bottom:36.000000pt;}
.y5e{bottom:36.320000pt;}
.y10d{bottom:36.413333pt;}
.y9d{bottom:37.600000pt;}
.y81{bottom:39.520000pt;}
.yef{bottom:40.160000pt;}
.y79{bottom:43.200000pt;}
.y98{bottom:43.226667pt;}
.y7c{bottom:43.360000pt;}
.y85{bottom:44.640000pt;}
.yda{bottom:45.760000pt;}
.y133{bottom:46.560000pt;}
.y74{bottom:46.720000pt;}
.y12d{bottom:48.320000pt;}
.y6{bottom:50.560000pt;}
.yb2{bottom:51.040000pt;}
.ybf{bottom:52.960000pt;}
.y9c{bottom:58.080000pt;}
.y78{bottom:63.680000pt;}
.y7b{bottom:63.840000pt;}
.y5{bottom:66.880000pt;}
.y4{bottom:83.200000pt;}
.y3{bottom:99.360000pt;}
.y2{bottom:115.680000pt;}
.y122{bottom:132.672000pt;}
.y61{bottom:135.066667pt;}
.yba{bottom:135.546667pt;}
.y59{bottom:135.680000pt;}
.ydc{bottom:135.866667pt;}
.y129{bottom:136.026667pt;}
.y92{bottom:136.186667pt;}
.y141{bottom:136.346667pt;}
.yfa{bottom:136.640000pt;}
.y7a{bottom:138.746667pt;}
.y9b{bottom:140.026667pt;}
.yd2{bottom:141.786667pt;}
.y4d{bottom:142.240000pt;}
.yb0{bottom:144.026667pt;}
.y7f{bottom:144.986667pt;}
.y32{bottom:145.786667pt;}
.y121{bottom:159.386667pt;}
.yd1{bottom:168.666667pt;}
.y80{bottom:170.906667pt;}
.y31{bottom:173.946667pt;}
.y10a{bottom:176.346667pt;}
.y4f{bottom:182.240000pt;}
.y120{bottom:186.266667pt;}
.yd0{bottom:195.546667pt;}
.yaf{bottom:197.786667pt;}
.y109{bottom:203.066667pt;}
.y30{bottom:207.866667pt;}
.y11f{bottom:213.146667pt;}
.y72{bottom:221.306667pt;}
.y51{bottom:222.080000pt;}
.ycf{bottom:222.426667pt;}
.yae{bottom:224.666667pt;}
.y108{bottom:229.946667pt;}
.y11e{bottom:240.026667pt;}
.y71{bottom:248.186667pt;}
.yce{bottom:249.306667pt;}
.yad{bottom:251.546667pt;}
.y107{bottom:256.826667pt;}
.y2f{bottom:256.986667pt;}
.y11d{bottom:266.906667pt;}
.y70{bottom:274.906667pt;}
.ycd{bottom:276.026667pt;}
.y3f{bottom:276.520000pt;}
.yac{bottom:278.426667pt;}
.y106{bottom:283.706667pt;}
.y2e{bottom:289.786667pt;}
.y11c{bottom:293.786667pt;}
.y6f{bottom:301.786667pt;}
.ycc{bottom:302.906667pt;}
.yab{bottom:305.306667pt;}
.y11b{bottom:320.506667pt;}
.y53{bottom:321.920000pt;}
.y6e{bottom:328.666667pt;}
.ycb{bottom:329.786667pt;}
.yaa{bottom:332.026667pt;}
.y105{bottom:337.466667pt;}
.y2d{bottom:338.906667pt;}
.y11a{bottom:347.426667pt;}
.y6d{bottom:355.586667pt;}
.yca{bottom:356.706667pt;}
.ya9{bottom:358.946667pt;}
.y104{bottom:364.386667pt;}
.y2c{bottom:365.826667pt;}
.y4e{bottom:373.666667pt;}
.y119{bottom:374.306667pt;}
.y6c{bottom:382.466667pt;}
.yc9{bottom:383.586667pt;}
.ya8{bottom:385.826667pt;}
.y103{bottom:391.106667pt;}
.y2b{bottom:399.426667pt;}
.y118{bottom:401.186667pt;}
.y6b{bottom:409.346667pt;}
.yc8{bottom:410.466667pt;}
.y102{bottom:417.986667pt;}
.ya7{bottom:418.466667pt;}
.y117{bottom:428.066667pt;}
.y2a{bottom:432.866667pt;}
.y3d{bottom:435.266667pt;}
.y6a{bottom:436.066667pt;}
.yc7{bottom:437.186667pt;}
.y101{bottom:444.866667pt;}
.y116{bottom:454.946667pt;}
.y3c{bottom:461.986667pt;}
.y69{bottom:462.946667pt;}
.yc6{bottom:464.066667pt;}
.y29{bottom:466.466667pt;}
.ya6{bottom:467.746667pt;}
.yfb{bottom:469.373333pt;}
.y100{bottom:471.746667pt;}
.y57{bottom:475.520000pt;}
.y12c{bottom:480.706667pt;}
.y115{bottom:481.826667pt;}
.yb9{bottom:482.306667pt;}
.y3b{bottom:488.866667pt;}
.y68{bottom:489.826667pt;}
.yc5{bottom:490.946667pt;}
.y17{bottom:494.146667pt;}
.ya5{bottom:494.626667pt;}
.y55{bottom:495.840000pt;}
.yff{bottom:498.626667pt;}
.y28{bottom:499.906667pt;}
.y8d{bottom:501.506667pt;}
.y114{bottom:508.546667pt;}
.yb8{bottom:509.186667pt;}
.y3a{bottom:515.746667pt;}
.y67{bottom:516.706667pt;}
.y16{bottom:521.026667pt;}
.ya4{bottom:521.506667pt;}
.yc4{bottom:523.586667pt;}
.yfe{bottom:525.506667pt;}
.yee{bottom:527.746667pt;}
.y8c{bottom:528.386667pt;}
.y27{bottom:533.506667pt;}
.y96{bottom:535.266667pt;}
.y113{bottom:535.426667pt;}
.yb7{bottom:536.066667pt;}
.y39{bottom:542.626667pt;}
.y66{bottom:543.586667pt;}
.y15{bottom:547.906667pt;}
.ya3{bottom:548.386667pt;}
.y151{bottom:549.986667pt;}
.yfd{bottom:552.226667pt;}
.yed{bottom:554.626667pt;}
.y8b{bottom:555.106667pt;}
.y97{bottom:561.026667pt;}
.y112{bottom:562.306667pt;}
.yb6{bottom:562.946667pt;}
.y26{bottom:566.946667pt;}
.y7e{bottom:568.733333pt;}
.y77{bottom:569.373333pt;}
.y38{bottom:569.533333pt;}
.y65{bottom:570.493333pt;}
.y5d{bottom:572.413333pt;}
.yc3{bottom:572.893333pt;}
.y131{bottom:574.013333pt;}
.y14{bottom:574.813333pt;}
.ya2{bottom:575.133333pt;}
.y150{bottom:576.893333pt;}
.yfc{bottom:579.133333pt;}
.yec{bottom:581.533333pt;}
.yd8{bottom:581.853333pt;}
.y8a{bottom:582.013333pt;}
.y111{bottom:589.213333pt;}
.yb5{bottom:589.693333pt;}
.y13{bottom:595.933333pt;}
.y37{bottom:596.413333pt;}
.y73{bottom:597.053333pt;}
.yc2{bottom:599.773333pt;}
.y25{bottom:600.573333pt;}
.y130{bottom:600.893333pt;}
.y7d{bottom:601.373333pt;}
.ya1{bottom:602.013333pt;}
.y14f{bottom:603.773333pt;}
.yeb{bottom:608.413333pt;}
.yd7{bottom:608.733333pt;}
.y89{bottom:608.893333pt;}
.y140{bottom:609.693333pt;}
.ybe{bottom:615.773333pt;}
.y110{bottom:616.093333pt;}
.y36{bottom:623.133333pt;}
.y10c{bottom:624.960000pt;}
.yd3{bottom:625.373333pt;}
.y12f{bottom:627.773333pt;}
.y12{bottom:628.413333pt;}
.ya0{bottom:628.893333pt;}
.y24{bottom:634.013333pt;}
.yea{bottom:635.293333pt;}
.yd6{bottom:635.613333pt;}
.y88{bottom:635.773333pt;}
.y14e{bottom:636.413333pt;}
.y13f{bottom:636.573333pt;}
.y10f{bottom:642.973333pt;}
.y35{bottom:650.013333pt;}
.y84{bottom:650.493333pt;}
.y132{bottom:654.493333pt;}
.y9f{bottom:655.773333pt;}
.y11{bottom:661.053333pt;}
.yd9{bottom:661.373333pt;}
.ye9{bottom:662.173333pt;}
.y13e{bottom:663.453333pt;}
.y23{bottom:667.613333pt;}
.y10e{bottom:669.693333pt;}
.y34{bottom:676.893333pt;}
.yb1{bottom:682.173333pt;}
.y14d{bottom:685.693333pt;}
.ye8{bottom:688.893333pt;}
.y13d{bottom:690.333333pt;}
.y10{bottom:693.533333pt;}
.y123{bottom:696.573333pt;}
.y22{bottom:701.053333pt;}
.y33{bottom:703.773333pt;}
.yf9{bottom:704.893333pt;}
.y14c{bottom:712.413333pt;}
.ye7{bottom:715.773333pt;}
.y13c{bottom:717.213333pt;}
.yf{bottom:726.173333pt;}
.y3e{bottom:729.533333pt;}
.yf8{bottom:731.773333pt;}
.y21{bottom:734.653333pt;}
.y14b{bottom:739.293333pt;}
.y48{bottom:740.733333pt;}
.ye6{bottom:742.653333pt;}
.y13b{bottom:744.093333pt;}
.ye{bottom:758.653333pt;}
.y14a{bottom:766.173333pt;}
.y20{bottom:768.093333pt;}
.y47{bottom:768.253333pt;}
.ye5{bottom:769.533333pt;}
.y13a{bottom:770.813333pt;}
.yf7{bottom:785.533333pt;}
.yd{bottom:791.293333pt;}
.y149{bottom:793.093333pt;}
.y46{bottom:795.813333pt;}
.ye4{bottom:796.453333pt;}
.y139{bottom:797.733333pt;}
.y1f{bottom:800.933333pt;}
.y148{bottom:807.653333pt;}
.yf6{bottom:812.453333pt;}
.y45{bottom:823.333333pt;}
.yc{bottom:823.813333pt;}
.y138{bottom:824.613333pt;}
.y147{bottom:835.173333pt;}
.y1d{bottom:837.253333pt;}
.yf5{bottom:839.333333pt;}
.ye3{bottom:850.053333pt;}
.y44{bottom:850.853333pt;}
.y137{bottom:851.493333pt;}
.yb{bottom:856.453333pt;}
.y146{bottom:862.693333pt;}
.y1c{bottom:863.973333pt;}
.yf4{bottom:866.053333pt;}
.ye2{bottom:876.933333pt;}
.y43{bottom:878.373333pt;}
.ya{bottom:888.933333pt;}
.y145{bottom:890.213333pt;}
.y1b{bottom:890.853333pt;}
.yf3{bottom:892.933333pt;}
.ye1{bottom:903.813333pt;}
.y136{bottom:905.253333pt;}
.y42{bottom:905.893333pt;}
.y19{bottom:917.733333pt;}
.yf2{bottom:919.813333pt;}
.y9{bottom:927.013333pt;}
.ye0{bottom:930.693333pt;}
.y128{bottom:931.973333pt;}
.y41{bottom:933.413333pt;}
.y5c{bottom:946.693333pt;}
.y127{bottom:958.853333pt;}
.y40{bottom:960.933333pt;}
.y18{bottom:963.333333pt;}
.y5b{bottom:973.573333pt;}
.y8{bottom:985.733333pt;}
.y5a{bottom:1006.213333pt;}
.y7{bottom:1012.613333pt;}
.y1{bottom:1061.440000pt;}
.he{height:15.520000pt;}
.h8{height:26.720000pt;}
.hc{height:26.752000pt;}
.h7{height:26.880000pt;}
.h10{height:28.160000pt;}
.hf{height:30.560000pt;}
.h11{height:36.656250pt;}
.h28{height:48.000000pt;}
.hb{height:48.875000pt;}
.h1c{height:49.148438pt;}
.h3{height:52.834688pt;}
.h2{height:58.563750pt;}
.h27{height:58.691063pt;}
.h1e{height:60.288750pt;}
.h9{height:63.656250pt;}
.h6{height:81.046875pt;}
.h5{height:101.765625pt;}
.h4{height:182.812500pt;}
.ha{height:291.746667pt;}
.h2a{height:312.826667pt;}
.h29{height:324.706667pt;}
.h20{height:332.026667pt;}
.h1f{height:339.106667pt;}
.h1a{height:340.986667pt;}
.h12{height:352.826667pt;}
.h25{height:353.466667pt;}
.h18{height:354.746667pt;}
.h1d{height:358.106667pt;}
.h17{height:359.546667pt;}
.h23{height:359.906667pt;}
.h19{height:360.226667pt;}
.h2c{height:366.786667pt;}
.h14{height:386.906667pt;}
.hd{height:387.680000pt;}
.h22{height:395.906667pt;}
.h1b{height:401.826667pt;}
.h15{height:403.866667pt;}
.h16{height:404.026667pt;}
.h21{height:405.506667pt;}
.h13{height:406.906667pt;}
.h2b{height:414.466667pt;}
.h24{height:416.506667pt;}
.h2d{height:438.786667pt;}
.h26{height:483.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:28.640000pt;}
.w3{width:64.160000pt;}
.wd{width:79.520000pt;}
.w9{width:101.600000pt;}
.w8{width:101.632000pt;}
.w4{width:115.392000pt;}
.w13{width:120.512000pt;}
.w14{width:120.640000pt;}
.w12{width:120.672000pt;}
.wa{width:144.186667pt;}
.w7{width:228.666667pt;}
.w11{width:236.826667pt;}
.w5{width:406.306667pt;}
.wb{width:598.400000pt;}
.wf{width:598.533333pt;}
.w10{width:598.560000pt;}
.w6{width:598.653333pt;}
.we{width:599.360000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xa{left:9.600000pt;}
.x3a{left:35.040000pt;}
.x37{left:42.234667pt;}
.x32{left:44.314667pt;}
.x34{left:46.554667pt;}
.x3c{left:56.320000pt;}
.x3d{left:60.346667pt;}
.x35{left:73.914667pt;}
.x19{left:89.754667pt;}
.x1{left:96.031988pt;}
.x13{left:97.434667pt;}
.x17{left:99.834667pt;}
.x6{left:106.752000pt;}
.x15{left:109.792000pt;}
.x2d{left:110.874667pt;}
.x1c{left:115.232000pt;}
.x11{left:117.274667pt;}
.x18{left:122.714667pt;}
.x1e{left:128.194667pt;}
.x2a{left:130.714667pt;}
.x28{left:132.474667pt;}
.x24{left:135.514667pt;}
.x5{left:136.834667pt;}
.xd{left:138.720000pt;}
.x3{left:160.186667pt;}
.x22{left:162.434667pt;}
.x20{left:164.994667pt;}
.x1b{left:175.394667pt;}
.x30{left:189.794667pt;}
.xf{left:201.026667pt;}
.x2e{left:250.146655pt;}
.x4{left:275.586667pt;}
.x21{left:297.821333pt;}
.x14{left:299.261333pt;}
.x38{left:334.146667pt;}
.x7{left:336.066667pt;}
.xe{left:390.400000pt;}
.xb{left:411.520000pt;}
.x8{left:438.493333pt;}
.x39{left:455.453333pt;}
.x31{left:487.301333pt;}
.x26{left:491.301333pt;}
.x2f{left:497.701333pt;}
.x25{left:499.301333pt;}
.x27{left:502.501333pt;}
.x1d{left:506.341333pt;}
.x2b{left:508.421333pt;}
.x1a{left:512.421333pt;}
.x1f{left:515.301333pt;}
.x16{left:526.341333pt;}
.x29{left:534.341333pt;}
.x23{left:538.341333pt;}
.x9{left:540.733333pt;}
.x33{left:543.301333pt;}
.x10{left:544.421333pt;}
.xc{left:551.040000pt;}
.x12{left:552.421333pt;}
.x2c{left:560.581333pt;}
.x36{left:569.381333pt;}
.x3b{left:576.613333pt;}
}




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