
    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_e2e511cd20824e7806644548.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_9e3ef6d5f9140f55f24e7194.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_c5e145aaf64c382c920c9226.woff')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_4af826cac3debfee4d4316cf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1a556b677e000a43dd4340b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.102051;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_bc2ddc5c4f39e701827cb7b7.woff')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_6cbf593c20529aa28bf65cdb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_b247e2b5406c0fff52033766.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_96f0d8eb8011f532a311ae18.woff')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.160000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.624000px;}
.ls10{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.310800px;}
.ls13{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.162000px;}
.ls2{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.073440px;}
.ls3{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.311040px;}
.lsa{letter-spacing:1.980000px;}
.ls14{letter-spacing:2.880000px;}
.lsb{letter-spacing:12.780000px;}
.ls18{letter-spacing:44.201280px;}
.ls16{letter-spacing:102.936000px;}
.ls15{letter-spacing:195.816000px;}
.ls17{letter-spacing:838.980000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.666800px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.453200px;}
.ws4{word-spacing:-16.297800px;}
.ws13{word-spacing:-16.257600px;}
.ws5{word-spacing:-16.249200px;}
.ws6{word-spacing:-15.936000px;}
.ws14{word-spacing:-15.792000px;}
.ws9{word-spacing:-12.131280px;}
.wsb{word-spacing:-10.998000px;}
.wsf{word-spacing:-10.962000px;}
.ws7{word-spacing:-8.477280px;}
.ws11{word-spacing:-0.324000px;}
.ws12{word-spacing:-0.306000px;}
.wsd{word-spacing:-0.288000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.054000px;}
.ws10{word-spacing:0.306000px;}
.wsc{word-spacing:0.378000px;}
.wse{word-spacing:1.098000px;}
._10{margin-left:-5.365440px;}
._1{margin-left:-4.239360px;}
._0{margin-left:-3.113280px;}
._2{margin-left:-1.987200px;}
._3{width:1.126080px;}
._6{width:2.980800px;}
._7{width:4.504320px;}
._c{width:5.564160px;}
._11{width:6.624000px;}
._b{width:7.750080px;}
._f{width:9.135840px;}
._8{width:10.465920px;}
._4{width:11.592000px;}
._5{width:13.049280px;}
._9{width:14.175360px;}
._a{width:15.326400px;}
._17{width:17.686080px;}
._18{width:18.871680px;}
._15{width:19.938240px;}
._d{width:21.196800px;}
._e{width:22.322880px;}
._14{width:23.978880px;}
._16{width:25.701120px;}
._12{width:30.801600px;}
._13{width:31.927680px;}
._20{width:43.188480px;}
._21{width:44.202720px;}
._1e{width:48.951360px;}
._1f{width:50.408640px;}
._19{width:55.641600px;}
._1a{width:56.714400px;}
._1b{width:122.875200px;}
._1d{width:123.936720px;}
._1c{width:125.082720px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:4.320000px;}
.y6e{bottom:4.500000px;}
.yaf{bottom:8.280000px;}
.yd1{bottom:8.310000px;}
.yb3{bottom:8.325000px;}
.yb1{bottom:22.500000px;}
.yd2{bottom:22.530000px;}
.y60{bottom:22.680000px;}
.y5b{bottom:22.860000px;}
.y72{bottom:22.890000px;}
.y6d{bottom:23.040000px;}
.y56{bottom:30.780000px;}
.y66{bottom:37.080000px;}
.y5f{bottom:41.220000px;}
.y6a{bottom:41.400000px;}
.y71{bottom:41.430000px;}
.y77{bottom:41.445000px;}
.y5a{bottom:41.580000px;}
.ycf{bottom:59.655000px;}
.y5e{bottom:59.760000px;}
.y69{bottom:59.940000px;}
.y62{bottom:59.970000px;}
.y59{bottom:60.120000px;}
.ycc{bottom:60.450000px;}
.y6{bottom:71.316000px;}
.yce{bottom:76.935000px;}
.y68{bottom:78.480000px;}
.y65{bottom:78.660000px;}
.y7a{bottom:78.690000px;}
.y58{bottom:78.705000px;}
.ycd{bottom:91.695000px;}
.y64{bottom:97.200000px;}
.y5{bottom:104.976000px;}
.y4{bottom:125.136000px;}
.yc8{bottom:130.890000px;}
.ycb{bottom:136.980000px;}
.yc7{bottom:142.410000px;}
.y3{bottom:144.936000px;}
.yca{bottom:151.920000px;}
.y2{bottom:163.830000px;}
.yc9{bottom:166.680000px;}
.y5d{bottom:189.750000px;}
.y34{bottom:192.990000px;}
.yb8{bottom:195.150000px;}
.yc6{bottom:195.225000px;}
.yf3{bottom:203.250000px;}
.y18c{bottom:207.210000px;}
.yc5{bottom:210.165000px;}
.y9d{bottom:210.990000px;}
.y33{bottom:211.530000px;}
.y11d{bottom:214.230000px;}
.yb7{bottom:217.650000px;}
.y149{bottom:218.010000px;}
.yc0{bottom:222.090000px;}
.y18b{bottom:225.750000px;}
.yc4{bottom:227.445000px;}
.y9c{bottom:229.530000px;}
.y32{bottom:230.070000px;}
.y11c{bottom:232.770000px;}
.yf2{bottom:233.850000px;}
.y148{bottom:236.730000px;}
.yb6{bottom:240.150000px;}
.y18a{bottom:244.290000px;}
.yc3{bottom:244.725000px;}
.y78{bottom:246.990000px;}
.y9b{bottom:248.070000px;}
.y31{bottom:248.610000px;}
.y11b{bottom:251.310000px;}
.yf1{bottom:252.390000px;}
.y147{bottom:255.270000px;}
.y164{bottom:256.890000px;}
.yc2{bottom:262.005000px;}
.yb5{bottom:262.650000px;}
.y57{bottom:263.730000px;}
.y9a{bottom:266.610000px;}
.y30{bottom:267.150000px;}
.y11a{bottom:269.850000px;}
.y146{bottom:273.810000px;}
.y163{bottom:275.430000px;}
.y189{bottom:277.770000px;}
.yc1{bottom:279.285000px;}
.y99{bottom:285.150000px;}
.y145{bottom:292.350000px;}
.y188{bottom:296.490000px;}
.y2f{bottom:297.750000px;}
.y119{bottom:300.450000px;}
.y76{bottom:302.790000px;}
.y98{bottom:303.690000px;}
.yb4{bottom:307.650000px;}
.y144{bottom:310.890000px;}
.ybf{bottom:312.450000px;}
.y162{bottom:312.510000px;}
.y187{bottom:315.030000px;}
.y2e{bottom:316.290000px;}
.y97{bottom:322.230000px;}
.ybe{bottom:329.010000px;}
.y143{bottom:329.430000px;}
.yba{bottom:329.940000px;}
.yb2{bottom:330.150000px;}
.y118{bottom:331.050000px;}
.y2d{bottom:334.830000px;}
.y109{bottom:343.515000px;}
.ybd{bottom:345.390000px;}
.y142{bottom:348.015000px;}
.y186{bottom:348.555000px;}
.y130{bottom:349.455000px;}
.y117{bottom:349.635000px;}
.y96{bottom:349.815000px;}
.yb0{bottom:352.695000px;}
.y2c{bottom:353.415000px;}
.y55{bottom:357.375000px;}
.y75{bottom:358.455000px;}
.ybc{bottom:361.950000px;}
.y108{bottom:362.055000px;}
.y185{bottom:367.095000px;}
.y12f{bottom:367.995000px;}
.y161{bottom:368.355000px;}
.y95{bottom:368.535000px;}
.y2b{bottom:371.955000px;}
.y116{bottom:375.735000px;}
.yae{bottom:375.915000px;}
.ybb{bottom:378.330000px;}
.y141{bottom:378.615000px;}
.y184{bottom:385.635000px;}
.y160{bottom:386.895000px;}
.y94{bottom:387.075000px;}
.y2a{bottom:390.675000px;}
.y107{bottom:392.655000px;}
.y140{bottom:397.155000px;}
.y12e{bottom:398.595000px;}
.y15f{bottom:405.435000px;}
.y93{bottom:405.615000px;}
.y29{bottom:409.215000px;}
.y106{bottom:411.195000px;}
.yad{bottom:414.795000px;}
.y13f{bottom:415.695000px;}
.y12d{bottom:417.135000px;}
.y54{bottom:418.755000px;}
.y183{bottom:419.295000px;}
.y15e{bottom:423.975000px;}
.y92{bottom:424.155000px;}
.y28{bottom:427.755000px;}
.y105{bottom:429.735000px;}
.y13e{bottom:429.915000px;}
.yac{bottom:433.335000px;}
.y12c{bottom:435.675000px;}
.y182{bottom:437.835000px;}
.y15d{bottom:442.515000px;}
.y27{bottom:446.295000px;}
.y104{bottom:448.275000px;}
.y53{bottom:449.355000px;}
.y74{bottom:451.335000px;}
.y91{bottom:451.695000px;}
.yab{bottom:451.875000px;}
.y12b{bottom:454.215000px;}
.y181{bottom:456.375000px;}
.y15c{bottom:461.055000px;}
.yaa{bottom:470.415000px;}
.y12a{bottom:472.755000px;}
.y26{bottom:476.895000px;}
.y103{bottom:478.875000px;}
.y15b{bottom:479.595000px;}
.y52{bottom:479.775000px;}
.yf0{bottom:482.475000px;}
.y90{bottom:488.235000px;}
.ya9{bottom:488.955000px;}
.y180{bottom:490.035000px;}
.y129{bottom:491.475000px;}
.y25{bottom:495.435000px;}
.y102{bottom:497.415000px;}
.y15a{bottom:498.135000px;}
.y51{bottom:498.315000px;}
.y8f{bottom:506.775000px;}
.ya8{bottom:507.675000px;}
.y17f{bottom:508.575000px;}
.yef{bottom:513.075000px;}
.y24{bottom:513.975000px;}
.y101{bottom:515.955000px;}
.y159{bottom:516.855000px;}
.y128{bottom:521.895000px;}
.y8e{bottom:525.315000px;}
.y73{bottom:525.495000px;}
.ya7{bottom:526.215000px;}
.y50{bottom:528.915000px;}
.yee{bottom:531.615000px;}
.y23{bottom:532.515000px;}
.y100{bottom:534.675000px;}
.y158{bottom:535.395000px;}
.y127{bottom:540.435000px;}
.y17e{bottom:542.055000px;}
.y8d{bottom:544.035000px;}
.ya6{bottom:544.755000px;}
.y4f{bottom:547.455000px;}
.yed{bottom:550.155000px;}
.y22{bottom:551.055000px;}
.y157{bottom:553.935000px;}
.y126{bottom:559.155000px;}
.y17d{bottom:560.595000px;}
.y8c{bottom:562.575000px;}
.ya5{bottom:563.295000px;}
.yff{bottom:565.095000px;}
.y4e{bottom:566.175000px;}
.yec{bottom:568.695000px;}
.y21{bottom:569.595000px;}
.y125{bottom:577.695000px;}
.y8b{bottom:581.115000px;}
.y70{bottom:581.295000px;}
.ya4{bottom:581.835000px;}
.yfe{bottom:583.635000px;}
.y4d{bottom:584.715000px;}
.yeb{bottom:587.235000px;}
.y156{bottom:591.015000px;}
.y17c{bottom:594.255000px;}
.y124{bottom:596.235000px;}
.y8a{bottom:599.655000px;}
.y20{bottom:600.195000px;}
.yfd{bottom:602.355000px;}
.y4c{bottom:603.255000px;}
.yea{bottom:605.805000px;}
.y155{bottom:609.585000px;}
.ya3{bottom:612.465000px;}
.y17b{bottom:612.825000px;}
.y123{bottom:614.805000px;}
.y1f{bottom:618.765000px;}
.y89{bottom:627.225000px;}
.yfc{bottom:628.485000px;}
.ya2{bottom:631.005000px;}
.y17a{bottom:631.365000px;}
.y4b{bottom:633.885000px;}
.ye9{bottom:636.405000px;}
.y1e{bottom:637.305000px;}
.y154{bottom:640.185000px;}
.y115{bottom:644.145000px;}
.y122{bottom:645.405000px;}
.y88{bottom:645.765000px;}
.ya1{bottom:649.545000px;}
.y4a{bottom:652.425000px;}
.ye8{bottom:654.945000px;}
.y6f{bottom:655.485000px;}
.y1d{bottom:655.845000px;}
.y153{bottom:658.725000px;}
.y179{bottom:658.905000px;}
.y114{bottom:662.865000px;}
.y121{bottom:663.945000px;}
.y87{bottom:664.305000px;}
.y49{bottom:670.965000px;}
.ye7{bottom:673.485000px;}
.y1c{bottom:674.565000px;}
.y152{bottom:677.265000px;}
.ya0{bottom:680.145000px;}
.y113{bottom:681.405000px;}
.y120{bottom:682.485000px;}
.y86{bottom:682.845000px;}
.y13d{bottom:686.265000px;}
.y48{bottom:689.505000px;}
.ye6{bottom:692.205000px;}
.y1b{bottom:693.105000px;}
.y178{bottom:695.445000px;}
.y151{bottom:695.805000px;}
.y11f{bottom:696.705000px;}
.y9f{bottom:698.685000px;}
.y112{bottom:699.945000px;}
.y85{bottom:701.565000px;}
.y47{bottom:708.045000px;}
.ye5{bottom:710.745000px;}
.y6c{bottom:711.105000px;}
.y1a{bottom:711.645000px;}
.yb9{bottom:712.980000px;}
.y150{bottom:714.345000px;}
.y13c{bottom:716.865000px;}
.y111{bottom:718.485000px;}
.y9e{bottom:724.965000px;}
.y177{bottom:726.045000px;}
.y46{bottom:726.585000px;}
.y84{bottom:731.985000px;}
.y14f{bottom:733.065000px;}
.y13b{bottom:735.405000px;}
.y110{bottom:737.025000px;}
.y19{bottom:739.185000px;}
.ye4{bottom:741.165000px;}
.y176{bottom:744.585000px;}
.y45{bottom:745.125000px;}
.y83{bottom:750.705000px;}
.y14e{bottom:751.605000px;}
.y13a{bottom:753.945000px;}
.y10f{bottom:755.565000px;}
.ye3{bottom:759.885000px;}
.y175{bottom:763.125000px;}
.y82{bottom:769.245000px;}
.y14d{bottom:770.145000px;}
.y139{bottom:772.665000px;}
.ye2{bottom:774.105000px;}
.y44{bottom:775.725000px;}
.y18{bottom:778.785000px;}
.y174{bottom:781.665000px;}
.y81{bottom:787.785000px;}
.y138{bottom:791.205000px;}
.y10e{bottom:792.645000px;}
.y43{bottom:794.265000px;}
.ye1{bottom:796.605000px;}
.y17{bottom:797.325000px;}
.y173{bottom:800.385000px;}
.y14c{bottom:800.745000px;}
.y80{bottom:806.325000px;}
.y137{bottom:809.745000px;}
.y42{bottom:812.805000px;}
.y172{bottom:818.925000px;}
.ye0{bottom:819.105000px;}
.y6b{bottom:822.525000px;}
.y7f{bottom:824.865000px;}
.y136{bottom:828.285000px;}
.y10d{bottom:829.905000px;}
.y14b{bottom:831.165000px;}
.y16{bottom:836.925000px;}
.y41{bottom:840.525000px;}
.ydf{bottom:841.605000px;}
.y7e{bottom:843.405000px;}
.y135{bottom:846.825000px;}
.y10c{bottom:848.445000px;}
.y171{bottom:849.345000px;}
.y14a{bottom:849.885000px;}
.y15{bottom:855.465000px;}
.yde{bottom:864.105000px;}
.y10b{bottom:866.985000px;}
.y170{bottom:868.065000px;}
.y14{bottom:874.050000px;}
.y40{bottom:877.110000px;}
.y134{bottom:877.470000px;}
.y67{bottom:878.370000px;}
.y10a{bottom:881.250000px;}
.ydd{bottom:886.650000px;}
.y13{bottom:892.590000px;}
.y3f{bottom:895.650000px;}
.y133{bottom:896.010000px;}
.y16f{bottom:905.190000px;}
.ydc{bottom:909.150000px;}
.y12{bottom:911.130000px;}
.y3e{bottom:914.190000px;}
.y132{bottom:914.550000px;}
.y193{bottom:921.210000px;}
.y16e{bottom:923.730000px;}
.yfb{bottom:926.250000px;}
.y131{bottom:928.950000px;}
.y11{bottom:929.670000px;}
.ydb{bottom:931.650000px;}
.y3d{bottom:932.730000px;}
.yfa{bottom:944.790000px;}
.y10{bottom:948.210000px;}
.y192{bottom:948.930000px;}
.y3c{bottom:951.270000px;}
.yda{bottom:954.150000px;}
.y16d{bottom:954.330000px;}
.yf9{bottom:963.330000px;}
.yf{bottom:966.930000px;}
.y3b{bottom:969.810000px;}
.y63{bottom:971.070000px;}
.y16c{bottom:972.870000px;}
.yd9{bottom:976.650000px;}
.yf8{bottom:981.870000px;}
.y191{bottom:982.410000px;}
.ye{bottom:985.470000px;}
.y3a{bottom:988.350000px;}
.y16b{bottom:991.410000px;}
.y7d{bottom:994.470000px;}
.yd8{bottom:999.150000px;}
.yf7{bottom:1000.410000px;}
.y190{bottom:1000.950000px;}
.y39{bottom:1006.890000px;}
.y16a{bottom:1009.950000px;}
.yf6{bottom:1018.950000px;}
.yd7{bottom:1021.650000px;}
.yd{bottom:1024.890000px;}
.y169{bottom:1028.490000px;}
.y7c{bottom:1031.010000px;}
.y18f{bottom:1034.610000px;}
.y38{bottom:1037.490000px;}
.yc{bottom:1043.610000px;}
.yd6{bottom:1044.150000px;}
.y7b{bottom:1049.550000px;}
.y18e{bottom:1053.150000px;}
.y37{bottom:1056.030000px;}
.y168{bottom:1059.090000px;}
.yb{bottom:1062.150000px;}
.y79{bottom:1063.770000px;}
.yd5{bottom:1066.650000px;}
.yf5{bottom:1068.090000px;}
.y18d{bottom:1071.690000px;}
.y36{bottom:1074.750000px;}
.y167{bottom:1077.630000px;}
.ya{bottom:1080.690000px;}
.y61{bottom:1082.490000px;}
.yf4{bottom:1086.630000px;}
.yd4{bottom:1089.150000px;}
.y11e{bottom:1093.290000px;}
.y166{bottom:1096.170000px;}
.y9{bottom:1099.230000px;}
.y35{bottom:1105.170000px;}
.yd3{bottom:1111.650000px;}
.y165{bottom:1114.710000px;}
.y8{bottom:1123.710000px;}
.yd0{bottom:1134.150000px;}
.y7{bottom:1142.460000px;}
.y1{bottom:1194.300000px;}
.h12{height:22.500000px;}
.h13{height:22.536000px;}
.h15{height:36.193359px;}
.h6{height:45.000000px;}
.h19{height:46.801758px;}
.h18{height:46.880859px;}
.h16{height:51.793945px;}
.h17{height:51.881484px;}
.h4{height:55.501875px;}
.hd{height:55.620000px;}
.h11{height:55.656000px;}
.he{height:55.800000px;}
.hc{height:55.836000px;}
.h5{height:56.019375px;}
.h3{height:56.957344px;}
.h2{height:57.410156px;}
.h1a{height:69.086250px;}
.h8{height:73.980000px;}
.hf{height:74.160000px;}
.h9{height:74.196000px;}
.hb{height:92.700000px;}
.h10{height:92.880000px;}
.h7{height:92.916000px;}
.ha{height:111.420000px;}
.h14{height:394.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:96.156000px;}
.w5{width:236.550000px;}
.w3{width:236.910000px;}
.w8{width:329.655000px;}
.w6{width:330.015000px;}
.w4{width:337.215000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x3{left:127.655987px;}
.x15{left:134.099987px;}
.x1f{left:139.319987px;}
.x19{left:141.479987px;}
.x23{left:144.179987px;}
.x37{left:157.529987px;}
.xb{left:159.510000px;}
.x4{left:179.489987px;}
.x8{left:180.749987px;}
.x20{left:212.759987px;}
.x1a{left:214.094987px;}
.x24{left:215.459987px;}
.x16{left:226.769987px;}
.x25{left:232.379987px;}
.x13{left:233.490000px;}
.x21{left:235.439987px;}
.x17{left:247.829987px;}
.x33{left:271.469987px;}
.x5{left:272.549987px;}
.x1c{left:277.994987px;}
.x2f{left:286.994987px;}
.x35{left:289.694987px;}
.x2d{left:292.934987px;}
.x18{left:296.969987px;}
.x2b{left:322.814987px;}
.xa{left:329.654987px;}
.x10{left:334.874987px;}
.x29{left:340.274987px;}
.x31{left:347.114987px;}
.x12{left:352.154987px;}
.x6{left:354.314987px;}
.x11{left:356.654987px;}
.x27{left:358.814987px;}
.xe{left:377.894987px;}
.x1b{left:379.904987px;}
.x7{left:384.914987px;}
.x1d{left:392.144987px;}
.xd{left:396.435000px;}
.x2{left:430.454987px;}
.x26{left:442.469987px;}
.x9{left:445.394987px;}
.x1{left:446.474987px;}
.x1e{left:448.304987px;}
.x22{left:452.909987px;}
.x14{left:563.505000px;}
.x36{left:641.084987px;}
.x28{left:658.049987px;}
.x32{left:674.429987px;}
.x30{left:696.749987px;}
.x34{left:698.549987px;}
.x2e{left:710.969987px;}
.x2c{left:722.129987px;}
.xf{left:730.769987px;}
.x2a{left:733.469987px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.554667pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls13{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.065280pt;}
.ls3{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.276480pt;}
.lsa{letter-spacing:1.760000pt;}
.ls14{letter-spacing:2.560000pt;}
.lsb{letter-spacing:11.360000pt;}
.ls18{letter-spacing:39.290027pt;}
.ls16{letter-spacing:91.498667pt;}
.ls15{letter-spacing:174.058667pt;}
.ls17{letter-spacing:745.760000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.814933pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.625067pt;}
.ws4{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.451200pt;}
.ws5{word-spacing:-14.443733pt;}
.ws6{word-spacing:-14.165333pt;}
.ws14{word-spacing:-14.037333pt;}
.ws9{word-spacing:-10.783360pt;}
.wsb{word-spacing:-9.776000pt;}
.wsf{word-spacing:-9.744000pt;}
.ws7{word-spacing:-7.535360pt;}
.ws11{word-spacing:-0.288000pt;}
.ws12{word-spacing:-0.272000pt;}
.wsd{word-spacing:-0.256000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.048000pt;}
.ws10{word-spacing:0.272000pt;}
.wsc{word-spacing:0.336000pt;}
.wse{word-spacing:0.976000pt;}
._10{margin-left:-4.769280pt;}
._1{margin-left:-3.768320pt;}
._0{margin-left:-2.767360pt;}
._2{margin-left:-1.766400pt;}
._3{width:1.000960pt;}
._6{width:2.649600pt;}
._7{width:4.003840pt;}
._c{width:4.945920pt;}
._11{width:5.888000pt;}
._b{width:6.888960pt;}
._f{width:8.120747pt;}
._8{width:9.303040pt;}
._4{width:10.304000pt;}
._5{width:11.599360pt;}
._9{width:12.600320pt;}
._a{width:13.623467pt;}
._17{width:15.720960pt;}
._18{width:16.774827pt;}
._15{width:17.722880pt;}
._d{width:18.841600pt;}
._e{width:19.842560pt;}
._14{width:21.314560pt;}
._16{width:22.845440pt;}
._12{width:27.379200pt;}
._13{width:28.380160pt;}
._20{width:38.389760pt;}
._21{width:39.291307pt;}
._1e{width:43.512320pt;}
._1f{width:44.807680pt;}
._19{width:49.459200pt;}
._1a{width:50.412800pt;}
._1b{width:109.222400pt;}
._1d{width:110.165973pt;}
._1c{width:111.184640pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:3.840000pt;}
.y6e{bottom:4.000000pt;}
.yaf{bottom:7.360000pt;}
.yd1{bottom:7.386667pt;}
.yb3{bottom:7.400000pt;}
.yb1{bottom:20.000000pt;}
.yd2{bottom:20.026667pt;}
.y60{bottom:20.160000pt;}
.y5b{bottom:20.320000pt;}
.y72{bottom:20.346667pt;}
.y6d{bottom:20.480000pt;}
.y56{bottom:27.360000pt;}
.y66{bottom:32.960000pt;}
.y5f{bottom:36.640000pt;}
.y6a{bottom:36.800000pt;}
.y71{bottom:36.826667pt;}
.y77{bottom:36.840000pt;}
.y5a{bottom:36.960000pt;}
.ycf{bottom:53.026667pt;}
.y5e{bottom:53.120000pt;}
.y69{bottom:53.280000pt;}
.y62{bottom:53.306667pt;}
.y59{bottom:53.440000pt;}
.ycc{bottom:53.733333pt;}
.y6{bottom:63.392000pt;}
.yce{bottom:68.386667pt;}
.y68{bottom:69.760000pt;}
.y65{bottom:69.920000pt;}
.y7a{bottom:69.946667pt;}
.y58{bottom:69.960000pt;}
.ycd{bottom:81.506667pt;}
.y64{bottom:86.400000pt;}
.y5{bottom:93.312000pt;}
.y4{bottom:111.232000pt;}
.yc8{bottom:116.346667pt;}
.ycb{bottom:121.760000pt;}
.yc7{bottom:126.586667pt;}
.y3{bottom:128.832000pt;}
.yca{bottom:135.040000pt;}
.y2{bottom:145.626667pt;}
.yc9{bottom:148.160000pt;}
.y5d{bottom:168.666667pt;}
.y34{bottom:171.546667pt;}
.yb8{bottom:173.466667pt;}
.yc6{bottom:173.533333pt;}
.yf3{bottom:180.666667pt;}
.y18c{bottom:184.186667pt;}
.yc5{bottom:186.813333pt;}
.y9d{bottom:187.546667pt;}
.y33{bottom:188.026667pt;}
.y11d{bottom:190.426667pt;}
.yb7{bottom:193.466667pt;}
.y149{bottom:193.786667pt;}
.yc0{bottom:197.413333pt;}
.y18b{bottom:200.666667pt;}
.yc4{bottom:202.173333pt;}
.y9c{bottom:204.026667pt;}
.y32{bottom:204.506667pt;}
.y11c{bottom:206.906667pt;}
.yf2{bottom:207.866667pt;}
.y148{bottom:210.426667pt;}
.yb6{bottom:213.466667pt;}
.y18a{bottom:217.146667pt;}
.yc3{bottom:217.533333pt;}
.y78{bottom:219.546667pt;}
.y9b{bottom:220.506667pt;}
.y31{bottom:220.986667pt;}
.y11b{bottom:223.386667pt;}
.yf1{bottom:224.346667pt;}
.y147{bottom:226.906667pt;}
.y164{bottom:228.346667pt;}
.yc2{bottom:232.893333pt;}
.yb5{bottom:233.466667pt;}
.y57{bottom:234.426667pt;}
.y9a{bottom:236.986667pt;}
.y30{bottom:237.466667pt;}
.y11a{bottom:239.866667pt;}
.y146{bottom:243.386667pt;}
.y163{bottom:244.826667pt;}
.y189{bottom:246.906667pt;}
.yc1{bottom:248.253333pt;}
.y99{bottom:253.466667pt;}
.y145{bottom:259.866667pt;}
.y188{bottom:263.546667pt;}
.y2f{bottom:264.666667pt;}
.y119{bottom:267.066667pt;}
.y76{bottom:269.146667pt;}
.y98{bottom:269.946667pt;}
.yb4{bottom:273.466667pt;}
.y144{bottom:276.346667pt;}
.ybf{bottom:277.733333pt;}
.y162{bottom:277.786667pt;}
.y187{bottom:280.026667pt;}
.y2e{bottom:281.146667pt;}
.y97{bottom:286.426667pt;}
.ybe{bottom:292.453333pt;}
.y143{bottom:292.826667pt;}
.yba{bottom:293.280000pt;}
.yb2{bottom:293.466667pt;}
.y118{bottom:294.266667pt;}
.y2d{bottom:297.626667pt;}
.y109{bottom:305.346667pt;}
.ybd{bottom:307.013333pt;}
.y142{bottom:309.346667pt;}
.y186{bottom:309.826667pt;}
.y130{bottom:310.626667pt;}
.y117{bottom:310.786667pt;}
.y96{bottom:310.946667pt;}
.yb0{bottom:313.506667pt;}
.y2c{bottom:314.146667pt;}
.y55{bottom:317.666667pt;}
.y75{bottom:318.626667pt;}
.ybc{bottom:321.733333pt;}
.y108{bottom:321.826667pt;}
.y185{bottom:326.306667pt;}
.y12f{bottom:327.106667pt;}
.y161{bottom:327.426667pt;}
.y95{bottom:327.586667pt;}
.y2b{bottom:330.626667pt;}
.y116{bottom:333.986667pt;}
.yae{bottom:334.146667pt;}
.ybb{bottom:336.293333pt;}
.y141{bottom:336.546667pt;}
.y184{bottom:342.786667pt;}
.y160{bottom:343.906667pt;}
.y94{bottom:344.066667pt;}
.y2a{bottom:347.266667pt;}
.y107{bottom:349.026667pt;}
.y140{bottom:353.026667pt;}
.y12e{bottom:354.306667pt;}
.y15f{bottom:360.386667pt;}
.y93{bottom:360.546667pt;}
.y29{bottom:363.746667pt;}
.y106{bottom:365.506667pt;}
.yad{bottom:368.706667pt;}
.y13f{bottom:369.506667pt;}
.y12d{bottom:370.786667pt;}
.y54{bottom:372.226667pt;}
.y183{bottom:372.706667pt;}
.y15e{bottom:376.866667pt;}
.y92{bottom:377.026667pt;}
.y28{bottom:380.226667pt;}
.y105{bottom:381.986667pt;}
.y13e{bottom:382.146667pt;}
.yac{bottom:385.186667pt;}
.y12c{bottom:387.266667pt;}
.y182{bottom:389.186667pt;}
.y15d{bottom:393.346667pt;}
.y27{bottom:396.706667pt;}
.y104{bottom:398.466667pt;}
.y53{bottom:399.426667pt;}
.y74{bottom:401.186667pt;}
.y91{bottom:401.506667pt;}
.yab{bottom:401.666667pt;}
.y12b{bottom:403.746667pt;}
.y181{bottom:405.666667pt;}
.y15c{bottom:409.826667pt;}
.yaa{bottom:418.146667pt;}
.y12a{bottom:420.226667pt;}
.y26{bottom:423.906667pt;}
.y103{bottom:425.666667pt;}
.y15b{bottom:426.306667pt;}
.y52{bottom:426.466667pt;}
.yf0{bottom:428.866667pt;}
.y90{bottom:433.986667pt;}
.ya9{bottom:434.626667pt;}
.y180{bottom:435.586667pt;}
.y129{bottom:436.866667pt;}
.y25{bottom:440.386667pt;}
.y102{bottom:442.146667pt;}
.y15a{bottom:442.786667pt;}
.y51{bottom:442.946667pt;}
.y8f{bottom:450.466667pt;}
.ya8{bottom:451.266667pt;}
.y17f{bottom:452.066667pt;}
.yef{bottom:456.066667pt;}
.y24{bottom:456.866667pt;}
.y101{bottom:458.626667pt;}
.y159{bottom:459.426667pt;}
.y128{bottom:463.906667pt;}
.y8e{bottom:466.946667pt;}
.y73{bottom:467.106667pt;}
.ya7{bottom:467.746667pt;}
.y50{bottom:470.146667pt;}
.yee{bottom:472.546667pt;}
.y23{bottom:473.346667pt;}
.y100{bottom:475.266667pt;}
.y158{bottom:475.906667pt;}
.y127{bottom:480.386667pt;}
.y17e{bottom:481.826667pt;}
.y8d{bottom:483.586667pt;}
.ya6{bottom:484.226667pt;}
.y4f{bottom:486.626667pt;}
.yed{bottom:489.026667pt;}
.y22{bottom:489.826667pt;}
.y157{bottom:492.386667pt;}
.y126{bottom:497.026667pt;}
.y17d{bottom:498.306667pt;}
.y8c{bottom:500.066667pt;}
.ya5{bottom:500.706667pt;}
.yff{bottom:502.306667pt;}
.y4e{bottom:503.266667pt;}
.yec{bottom:505.506667pt;}
.y21{bottom:506.306667pt;}
.y125{bottom:513.506667pt;}
.y8b{bottom:516.546667pt;}
.y70{bottom:516.706667pt;}
.ya4{bottom:517.186667pt;}
.yfe{bottom:518.786667pt;}
.y4d{bottom:519.746667pt;}
.yeb{bottom:521.986667pt;}
.y156{bottom:525.346667pt;}
.y17c{bottom:528.226667pt;}
.y124{bottom:529.986667pt;}
.y8a{bottom:533.026667pt;}
.y20{bottom:533.506667pt;}
.yfd{bottom:535.426667pt;}
.y4c{bottom:536.226667pt;}
.yea{bottom:538.493333pt;}
.y155{bottom:541.853333pt;}
.ya3{bottom:544.413333pt;}
.y17b{bottom:544.733333pt;}
.y123{bottom:546.493333pt;}
.y1f{bottom:550.013333pt;}
.y89{bottom:557.533333pt;}
.yfc{bottom:558.653333pt;}
.ya2{bottom:560.893333pt;}
.y17a{bottom:561.213333pt;}
.y4b{bottom:563.453333pt;}
.ye9{bottom:565.693333pt;}
.y1e{bottom:566.493333pt;}
.y154{bottom:569.053333pt;}
.y115{bottom:572.573333pt;}
.y122{bottom:573.693333pt;}
.y88{bottom:574.013333pt;}
.ya1{bottom:577.373333pt;}
.y4a{bottom:579.933333pt;}
.ye8{bottom:582.173333pt;}
.y6f{bottom:582.653333pt;}
.y1d{bottom:582.973333pt;}
.y153{bottom:585.533333pt;}
.y179{bottom:585.693333pt;}
.y114{bottom:589.213333pt;}
.y121{bottom:590.173333pt;}
.y87{bottom:590.493333pt;}
.y49{bottom:596.413333pt;}
.ye7{bottom:598.653333pt;}
.y1c{bottom:599.613333pt;}
.y152{bottom:602.013333pt;}
.ya0{bottom:604.573333pt;}
.y113{bottom:605.693333pt;}
.y120{bottom:606.653333pt;}
.y86{bottom:606.973333pt;}
.y13d{bottom:610.013333pt;}
.y48{bottom:612.893333pt;}
.ye6{bottom:615.293333pt;}
.y1b{bottom:616.093333pt;}
.y178{bottom:618.173333pt;}
.y151{bottom:618.493333pt;}
.y11f{bottom:619.293333pt;}
.y9f{bottom:621.053333pt;}
.y112{bottom:622.173333pt;}
.y85{bottom:623.613333pt;}
.y47{bottom:629.373333pt;}
.ye5{bottom:631.773333pt;}
.y6c{bottom:632.093333pt;}
.y1a{bottom:632.573333pt;}
.yb9{bottom:633.760000pt;}
.y150{bottom:634.973333pt;}
.y13c{bottom:637.213333pt;}
.y111{bottom:638.653333pt;}
.y9e{bottom:644.413333pt;}
.y177{bottom:645.373333pt;}
.y46{bottom:645.853333pt;}
.y84{bottom:650.653333pt;}
.y14f{bottom:651.613333pt;}
.y13b{bottom:653.693333pt;}
.y110{bottom:655.133333pt;}
.y19{bottom:657.053333pt;}
.ye4{bottom:658.813333pt;}
.y176{bottom:661.853333pt;}
.y45{bottom:662.333333pt;}
.y83{bottom:667.293333pt;}
.y14e{bottom:668.093333pt;}
.y13a{bottom:670.173333pt;}
.y10f{bottom:671.613333pt;}
.ye3{bottom:675.453333pt;}
.y175{bottom:678.333333pt;}
.y82{bottom:683.773333pt;}
.y14d{bottom:684.573333pt;}
.y139{bottom:686.813333pt;}
.ye2{bottom:688.093333pt;}
.y44{bottom:689.533333pt;}
.y18{bottom:692.253333pt;}
.y174{bottom:694.813333pt;}
.y81{bottom:700.253333pt;}
.y138{bottom:703.293333pt;}
.y10e{bottom:704.573333pt;}
.y43{bottom:706.013333pt;}
.ye1{bottom:708.093333pt;}
.y17{bottom:708.733333pt;}
.y173{bottom:711.453333pt;}
.y14c{bottom:711.773333pt;}
.y80{bottom:716.733333pt;}
.y137{bottom:719.773333pt;}
.y42{bottom:722.493333pt;}
.y172{bottom:727.933333pt;}
.ye0{bottom:728.093333pt;}
.y6b{bottom:731.133333pt;}
.y7f{bottom:733.213333pt;}
.y136{bottom:736.253333pt;}
.y10d{bottom:737.693333pt;}
.y14b{bottom:738.813333pt;}
.y16{bottom:743.933333pt;}
.y41{bottom:747.133333pt;}
.ydf{bottom:748.093333pt;}
.y7e{bottom:749.693333pt;}
.y135{bottom:752.733333pt;}
.y10c{bottom:754.173333pt;}
.y171{bottom:754.973333pt;}
.y14a{bottom:755.453333pt;}
.y15{bottom:760.413333pt;}
.yde{bottom:768.093333pt;}
.y10b{bottom:770.653333pt;}
.y170{bottom:771.613333pt;}
.y14{bottom:776.933333pt;}
.y40{bottom:779.653333pt;}
.y134{bottom:779.973333pt;}
.y67{bottom:780.773333pt;}
.y10a{bottom:783.333333pt;}
.ydd{bottom:788.133333pt;}
.y13{bottom:793.413333pt;}
.y3f{bottom:796.133333pt;}
.y133{bottom:796.453333pt;}
.y16f{bottom:804.613333pt;}
.ydc{bottom:808.133333pt;}
.y12{bottom:809.893333pt;}
.y3e{bottom:812.613333pt;}
.y132{bottom:812.933333pt;}
.y193{bottom:818.853333pt;}
.y16e{bottom:821.093333pt;}
.yfb{bottom:823.333333pt;}
.y131{bottom:825.733333pt;}
.y11{bottom:826.373333pt;}
.ydb{bottom:828.133333pt;}
.y3d{bottom:829.093333pt;}
.yfa{bottom:839.813333pt;}
.y10{bottom:842.853333pt;}
.y192{bottom:843.493333pt;}
.y3c{bottom:845.573333pt;}
.yda{bottom:848.133333pt;}
.y16d{bottom:848.293333pt;}
.yf9{bottom:856.293333pt;}
.yf{bottom:859.493333pt;}
.y3b{bottom:862.053333pt;}
.y63{bottom:863.173333pt;}
.y16c{bottom:864.773333pt;}
.yd9{bottom:868.133333pt;}
.yf8{bottom:872.773333pt;}
.y191{bottom:873.253333pt;}
.ye{bottom:875.973333pt;}
.y3a{bottom:878.533333pt;}
.y16b{bottom:881.253333pt;}
.y7d{bottom:883.973333pt;}
.yd8{bottom:888.133333pt;}
.yf7{bottom:889.253333pt;}
.y190{bottom:889.733333pt;}
.y39{bottom:895.013333pt;}
.y16a{bottom:897.733333pt;}
.yf6{bottom:905.733333pt;}
.yd7{bottom:908.133333pt;}
.yd{bottom:911.013333pt;}
.y169{bottom:914.213333pt;}
.y7c{bottom:916.453333pt;}
.y18f{bottom:919.653333pt;}
.y38{bottom:922.213333pt;}
.yc{bottom:927.653333pt;}
.yd6{bottom:928.133333pt;}
.y7b{bottom:932.933333pt;}
.y18e{bottom:936.133333pt;}
.y37{bottom:938.693333pt;}
.y168{bottom:941.413333pt;}
.yb{bottom:944.133333pt;}
.y79{bottom:945.573333pt;}
.yd5{bottom:948.133333pt;}
.yf5{bottom:949.413333pt;}
.y18d{bottom:952.613333pt;}
.y36{bottom:955.333333pt;}
.y167{bottom:957.893333pt;}
.ya{bottom:960.613333pt;}
.y61{bottom:962.213333pt;}
.yf4{bottom:965.893333pt;}
.yd4{bottom:968.133333pt;}
.y11e{bottom:971.813333pt;}
.y166{bottom:974.373333pt;}
.y9{bottom:977.093333pt;}
.y35{bottom:982.373333pt;}
.yd3{bottom:988.133333pt;}
.y165{bottom:990.853333pt;}
.y8{bottom:998.853333pt;}
.yd0{bottom:1008.133333pt;}
.y7{bottom:1015.520000pt;}
.y1{bottom:1061.600000pt;}
.h12{height:20.000000pt;}
.h13{height:20.032000pt;}
.h15{height:32.171875pt;}
.h6{height:40.000000pt;}
.h19{height:41.601562pt;}
.h18{height:41.671875pt;}
.h16{height:46.039063pt;}
.h17{height:46.116875pt;}
.h4{height:49.335000pt;}
.hd{height:49.440000pt;}
.h11{height:49.472000pt;}
.he{height:49.600000pt;}
.hc{height:49.632000pt;}
.h5{height:49.795000pt;}
.h3{height:50.628750pt;}
.h2{height:51.031250pt;}
.h1a{height:61.410000pt;}
.h8{height:65.760000pt;}
.hf{height:65.920000pt;}
.h9{height:65.952000pt;}
.hb{height:82.400000pt;}
.h10{height:82.560000pt;}
.h7{height:82.592000pt;}
.ha{height:99.040000pt;}
.h14{height:350.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:85.472000pt;}
.w5{width:210.266667pt;}
.w3{width:210.586667pt;}
.w8{width:293.026667pt;}
.w6{width:293.346667pt;}
.w4{width:299.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x3{left:113.471988pt;}
.x15{left:119.199988pt;}
.x1f{left:123.839988pt;}
.x19{left:125.759988pt;}
.x23{left:128.159988pt;}
.x37{left:140.026655pt;}
.xb{left:141.786667pt;}
.x4{left:159.546655pt;}
.x8{left:160.666655pt;}
.x20{left:189.119988pt;}
.x1a{left:190.306655pt;}
.x24{left:191.519988pt;}
.x16{left:201.573322pt;}
.x25{left:206.559988pt;}
.x13{left:207.546667pt;}
.x21{left:209.279988pt;}
.x17{left:220.293322pt;}
.x33{left:241.306655pt;}
.x5{left:242.266655pt;}
.x1c{left:247.106655pt;}
.x2f{left:255.106655pt;}
.x35{left:257.506655pt;}
.x2d{left:260.386655pt;}
.x18{left:263.973322pt;}
.x2b{left:286.946655pt;}
.xa{left:293.026655pt;}
.x10{left:297.666655pt;}
.x29{left:302.466655pt;}
.x31{left:308.546655pt;}
.x12{left:313.026655pt;}
.x6{left:314.946655pt;}
.x11{left:317.026655pt;}
.x27{left:318.946655pt;}
.xe{left:335.906655pt;}
.x1b{left:337.693322pt;}
.x7{left:342.146655pt;}
.x1d{left:348.573322pt;}
.xd{left:352.386667pt;}
.x2{left:382.626655pt;}
.x26{left:393.306655pt;}
.x9{left:395.906655pt;}
.x1{left:396.866655pt;}
.x1e{left:398.493322pt;}
.x22{left:402.586655pt;}
.x14{left:500.893333pt;}
.x36{left:569.853322pt;}
.x28{left:584.933322pt;}
.x32{left:599.493322pt;}
.x30{left:619.333322pt;}
.x34{left:620.933322pt;}
.x2e{left:631.973322pt;}
.x2c{left:641.893322pt;}
.xf{left:649.573322pt;}
.x2a{left:651.973322pt;}
}




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