
    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_203f58e5ef5dd42237745762.woff')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_565fcda430477ee4ea2618bb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_fd37464b790c40dffd965e5e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_7e125d44c83e6f0029b9c75d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_a698716f1b8974b9a07e0d3c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d18c211c55e84c5800ee8f8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_15d211ab6bd57f47d566bebf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls13{letter-spacing:-2.400000px;}
.ls12{letter-spacing:-1.980000px;}
.lsf{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-0.816000px;}
.ls14{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.384000px;}
.ls3{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.lsb{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.600000px;}
.ls1{letter-spacing:1.200000px;}
.ls17{letter-spacing:15.720000px;}
.ls16{letter-spacing:45.720000px;}
.lsc{letter-spacing:54.384000px;}
.lsa{letter-spacing:63.720000px;}
.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:-60.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws1{word-spacing:-18.384000px;}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.616000px;}
.wsb{word-spacing:-17.184000px;}
.ws0{word-spacing:-15.204000px;}
.ws9{word-spacing:-15.000000px;}
.ws10{word-spacing:-14.400000px;}
.wsf{word-spacing:-14.220000px;}
.ws6{word-spacing:-14.100000px;}
.ws7{word-spacing:-13.800000px;}
.wsd{word-spacing:-13.020000px;}
.wse{word-spacing:-12.600000px;}
.wsa{word-spacing:-11.136000px;}
.ws4{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-3.516000px;}
._15{margin-left:-2.370000px;}
._1{margin-left:-1.278000px;}
._0{width:1.122000px;}
._5{width:2.700000px;}
._d{width:3.756000px;}
._2{width:5.082000px;}
._6{width:6.300000px;}
._7{width:7.338000px;}
._12{width:8.412000px;}
._c{width:9.756000px;}
._a{width:11.040000px;}
._9{width:12.156000px;}
._8{width:13.500000px;}
._b{width:16.680000px;}
._11{width:17.772000px;}
._10{width:18.780000px;}
._13{width:19.842000px;}
._f{width:21.276000px;}
._e{width:22.320000px;}
._14{width:23.460000px;}
._1b{width:24.600000px;}
._1f{width:25.818000px;}
._18{width:27.216000px;}
._17{width:28.638000px;}
._1a{width:30.174000px;}
._19{width:31.320000px;}
._1c{width:33.420000px;}
._1d{width:34.614000px;}
._1e{width:36.432000px;}
._20{width:37.560000px;}
._21{width:40.044000px;}
._3{width:336.180000px;}
._4{width:1200.420000px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs9{font-size:9.600000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y40{bottom:-9.300000px;}
.y0{bottom:0.000000px;}
.y120{bottom:3.300000px;}
.yf1{bottom:3.315000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y14c{bottom:7.185000px;}
.ycb{bottom:7.200000px;}
.y3f{bottom:7.800000px;}
.y130{bottom:8.100000px;}
.y153{bottom:9.000000px;}
.y139{bottom:9.300000px;}
.y183{bottom:10.500000px;}
.y179{bottom:10.815000px;}
.y10e{bottom:11.400000px;}
.y162{bottom:11.685000px;}
.y16f{bottom:11.715000px;}
.yfd{bottom:12.045000px;}
.y168{bottom:12.300000px;}
.y5{bottom:12.337500px;}
.yd9{bottom:12.885000px;}
.y158{bottom:16.800000px;}
.y17e{bottom:19.200000px;}
.y174{bottom:19.500000px;}
.y107{bottom:20.100000px;}
.y11f{bottom:20.715000px;}
.yf0{bottom:20.745000px;}
.y119{bottom:24.300000px;}
.y12f{bottom:25.200000px;}
.y15b{bottom:25.500000px;}
.y3e{bottom:25.545000px;}
.y151{bottom:26.100000px;}
.y138{bottom:26.385000px;}
.y141{bottom:26.700000px;}
.y182{bottom:27.600000px;}
.y178{bottom:28.200000px;}
.y10d{bottom:28.500000px;}
.y160{bottom:28.785000px;}
.y16d{bottom:28.845000px;}
.y166{bottom:29.400000px;}
.yfc{bottom:29.445000px;}
.yd8{bottom:30.000000px;}
.y157{bottom:34.200000px;}
.y17d{bottom:36.300000px;}
.y173{bottom:36.915000px;}
.y106{bottom:37.200000px;}
.y11e{bottom:37.800000px;}
.yef{bottom:37.845000px;}
.ye3{bottom:38.700000px;}
.y118{bottom:41.700000px;}
.y12e{bottom:42.600000px;}
.y150{bottom:43.500000px;}
.y137{bottom:43.800000px;}
.y181{bottom:45.000000px;}
.y177{bottom:45.315000px;}
.y10c{bottom:45.900000px;}
.y3d{bottom:45.945000px;}
.y15f{bottom:46.200000px;}
.y16c{bottom:46.245000px;}
.yfb{bottom:46.545000px;}
.y4{bottom:46.800000px;}
.yd7{bottom:47.385000px;}
.y156{bottom:51.300000px;}
.y13d{bottom:52.500000px;}
.y17c{bottom:53.700000px;}
.y172{bottom:54.000000px;}
.y105{bottom:54.645000px;}
.y11d{bottom:55.200000px;}
.yee{bottom:55.245000px;}
.ye2{bottom:55.800000px;}
.y1{bottom:57.037500px;}
.y117{bottom:58.800000px;}
.y12d{bottom:59.700000px;}
.y15a{bottom:60.000000px;}
.y14f{bottom:60.645000px;}
.y133{bottom:60.885000px;}
.y140{bottom:61.200000px;}
.y180{bottom:62.130000px;}
.y176{bottom:62.700000px;}
.y10b{bottom:63.030000px;}
.y3c{bottom:63.045000px;}
.y15e{bottom:63.300000px;}
.y16b{bottom:63.345000px;}
.y165{bottom:63.900000px;}
.yfa{bottom:63.945000px;}
.yd6{bottom:64.500000px;}
.y125{bottom:68.400000px;}
.y155{bottom:68.700000px;}
.y13c{bottom:69.600000px;}
.y17b{bottom:70.830000px;}
.y171{bottom:71.415000px;}
.y104{bottom:71.745000px;}
.y11c{bottom:72.300000px;}
.yed{bottom:72.345000px;}
.ye1{bottom:73.200000px;}
.y78{bottom:74.137500px;}
.y113{bottom:76.215000px;}
.y12c{bottom:77.100000px;}
.y14e{bottom:78.045000px;}
.y132{bottom:78.300000px;}
.y17f{bottom:79.545000px;}
.y175{bottom:79.815000px;}
.y3b{bottom:80.445000px;}
.y15d{bottom:80.700000px;}
.y16a{bottom:80.745000px;}
.yf9{bottom:81.045000px;}
.y164{bottom:81.330000px;}
.y3{bottom:81.337500px;}
.yd5{bottom:81.885000px;}
.y124{bottom:85.500000px;}
.y154{bottom:85.800000px;}
.y13b{bottom:87.000000px;}
.y103{bottom:88.830000px;}
.y11b{bottom:89.715000px;}
.ye7{bottom:89.745000px;}
.ye0{bottom:90.300000px;}
.y112{bottom:93.300000px;}
.y12b{bottom:94.200000px;}
.y159{bottom:94.500000px;}
.y152{bottom:95.145000px;}
.y136{bottom:95.385000px;}
.y13f{bottom:95.700000px;}
.yfe{bottom:97.530000px;}
.y3a{bottom:97.545000px;}
.y161{bottom:97.785000px;}
.y16e{bottom:97.845000px;}
.y167{bottom:98.430000px;}
.yf8{bottom:98.445000px;}
.ycf{bottom:99.000000px;}
.y123{bottom:102.900000px;}
.y102{bottom:106.245000px;}
.ye6{bottom:106.845000px;}
.ydf{bottom:107.700000px;}
.y111{bottom:110.745000px;}
.y12a{bottom:111.600000px;}
.y135{bottom:112.800000px;}
.y13e{bottom:112.845000px;}
.yb1{bottom:114.337500px;}
.y39{bottom:114.930000px;}
.y10a{bottom:114.945000px;}
.yf7{bottom:115.545000px;}
.yce{bottom:116.400000px;}
.y1be{bottom:116.437500px;}
.y122{bottom:120.000000px;}
.y101{bottom:123.330000px;}
.y1df{bottom:123.337500px;}
.ye5{bottom:124.245000px;}
.yde{bottom:124.830000px;}
.y77{bottom:125.437500px;}
.y18c{bottom:127.837500px;}
.y110{bottom:127.845000px;}
.y129{bottom:128.700000px;}
.y148{bottom:128.737500px;}
.y134{bottom:129.930000px;}
.y142{bottom:130.245000px;}
.yb0{bottom:131.737500px;}
.y109{bottom:132.030000px;}
.y38{bottom:132.045000px;}
.yf6{bottom:132.945000px;}
.ycd{bottom:133.530000px;}
.y1bd{bottom:133.537500px;}
.y1de{bottom:140.437500px;}
.y100{bottom:140.745000px;}
.yec{bottom:141.345000px;}
.ydd{bottom:142.230000px;}
.y76{bottom:142.537500px;}
.y2a{bottom:143.437500px;}
.y18b{bottom:144.937500px;}
.y116{bottom:145.245000px;}
.y128{bottom:146.145000px;}
.yaf{bottom:148.837500px;}
.y37{bottom:149.430000px;}
.y147{bottom:149.437500px;}
.y108{bottom:149.445000px;}
.yf5{bottom:150.045000px;}
.yd4{bottom:150.930000px;}
.yff{bottom:157.830000px;}
.yeb{bottom:158.745000px;}
.ydc{bottom:159.330000px;}
.y75{bottom:159.930000px;}
.y29{bottom:160.830000px;}
.y18a{bottom:162.330000px;}
.y115{bottom:162.345000px;}
.y127{bottom:163.245000px;}
.yae{bottom:166.230000px;}
.ye4{bottom:166.530000px;}
.y36{bottom:166.545000px;}
.yf4{bottom:167.445000px;}
.yd3{bottom:168.030000px;}
.y1bc{bottom:168.045000px;}
.y146{bottom:170.145000px;}
.y1dd{bottom:174.930000px;}
.yea{bottom:175.845000px;}
.ydb{bottom:176.730000px;}
.y74{bottom:177.045000px;}
.y28{bottom:177.975000px;}
.y189{bottom:179.475000px;}
.y114{bottom:179.745000px;}
.y126{bottom:180.645000px;}
.y35{bottom:183.975000px;}
.yf3{bottom:184.575000px;}
.yd2{bottom:185.130000px;}
.y1bb{bottom:185.475000px;}
.y145{bottom:190.875000px;}
.y1dc{bottom:192.375000px;}
.y11a{bottom:192.945000px;}
.ye9{bottom:193.290000px;}
.yda{bottom:193.830000px;}
.y73{bottom:194.475000px;}
.y27{bottom:195.375000px;}
.y188{bottom:196.875000px;}
.y34{bottom:201.075000px;}
.yf2{bottom:201.990000px;}
.yd1{bottom:202.530000px;}
.y1ba{bottom:202.575000px;}
.yad{bottom:203.475000px;}
.y1db{bottom:209.475000px;}
.ye8{bottom:210.390000px;}
.y144{bottom:211.575000px;}
.y72{bottom:212.175000px;}
.y26{bottom:212.475000px;}
.y187{bottom:213.975000px;}
.yac{bottom:217.875000px;}
.y33{bottom:218.475000px;}
.yd0{bottom:219.630000px;}
.y1b9{bottom:219.975000px;}
.y1da{bottom:226.875000px;}
.y25{bottom:229.875000px;}
.y186{bottom:231.375000px;}
.y143{bottom:232.275000px;}
.y71{bottom:232.875000px;}
.yab{bottom:235.275000px;}
.y32{bottom:235.575000px;}
.y1b8{bottom:237.075000px;}
.y1d9{bottom:243.975000px;}
.y24{bottom:247.575000px;}
.y185{bottom:249.075000px;}
.y13a{bottom:249.675000px;}
.yaa{bottom:252.375000px;}
.y31{bottom:252.975000px;}
.y1b7{bottom:254.475000px;}
.y1d8{bottom:261.375000px;}
.y184{bottom:269.175000px;}
.ya9{bottom:269.775000px;}
.y30{bottom:270.075000px;}
.y70{bottom:270.375000px;}
.y1b6{bottom:271.575000px;}
.y1d7{bottom:278.475000px;}
.y17a{bottom:283.875000px;}
.ya8{bottom:286.875000px;}
.y2f{bottom:287.475000px;}
.y1b5{bottom:288.975000px;}
.y1d6{bottom:295.875000px;}
.ya7{bottom:304.275000px;}
.y2e{bottom:304.575000px;}
.y1b4{bottom:306.075000px;}
.y6f{bottom:308.775000px;}
.y1d5{bottom:312.975000px;}
.y2d{bottom:321.975000px;}
.y1b3{bottom:323.475000px;}
.y6e{bottom:325.875000px;}
.y1d4{bottom:330.375000px;}
.y2b{bottom:337.275000px;}
.y2c{bottom:339.675000px;}
.y1b2{bottom:340.575000px;}
.ya6{bottom:341.475000px;}
.y6d{bottom:344.475000px;}
.y1d3{bottom:347.505000px;}
.ya5{bottom:355.920000px;}
.y1b1{bottom:358.005000px;}
.y6c{bottom:361.605000px;}
.y1d2{bottom:364.905000px;}
.ya4{bottom:373.320000px;}
.y1b0{bottom:375.105000px;}
.y6b{bottom:380.205000px;}
.y1d1{bottom:382.020000px;}
.y170{bottom:385.005000px;}
.ya3{bottom:390.420000px;}
.ycc{bottom:391.620000px;}
.y1af{bottom:392.520000px;}
.y6a{bottom:397.320000px;}
.y1d0{bottom:399.420000px;}
.y131{bottom:400.320000px;}
.ya2{bottom:407.820000px;}
.y1ae{bottom:409.620000px;}
.y69{bottom:415.620000px;}
.y1cf{bottom:416.505000px;}
.ya1{bottom:424.920000px;}
.y1ad{bottom:427.005000px;}
.y68{bottom:432.705000px;}
.y1ce{bottom:433.920000px;}
.ya0{bottom:442.320000px;}
.y1ac{bottom:444.120000px;}
.y1cd{bottom:451.005000px;}
.y67{bottom:451.620000px;}
.y9f{bottom:460.005000px;}
.y1ab{bottom:461.505000px;}
.y1cc{bottom:468.420000px;}
.y66{bottom:471.120000px;}
.y1aa{bottom:478.620000px;}
.y9e{bottom:479.505000px;}
.y1cb{bottom:485.505000px;}
.y65{bottom:485.820000px;}
.y169{bottom:487.005000px;}
.y9d{bottom:493.920000px;}
.y1a9{bottom:496.005000px;}
.y64{bottom:502.920000px;}
.y9c{bottom:511.320000px;}
.y1a8{bottom:513.120000px;}
.y1ca{bottom:520.050000px;}
.y63{bottom:520.350000px;}
.y9b{bottom:528.450000px;}
.y1a7{bottom:530.550000px;}
.y62{bottom:537.450000px;}
.y9a{bottom:545.850000px;}
.y1a6{bottom:547.650000px;}
.y121{bottom:550.950000px;}
.y1c9{bottom:554.550000px;}
.y61{bottom:554.850000px;}
.y99{bottom:562.950000px;}
.y1a5{bottom:565.050000px;}
.y60{bottom:571.950000px;}
.y98{bottom:580.350000px;}
.y1a4{bottom:582.150000px;}
.y1c8{bottom:589.050000px;}
.y5f{bottom:589.350000px;}
.y1e4{bottom:594.150000px;}
.y97{bottom:597.450000px;}
.y1a3{bottom:599.550000px;}
.y5e{bottom:606.450000px;}
.y163{bottom:607.950000px;}
.y96{bottom:614.850000px;}
.y1a2{bottom:616.650000px;}
.y1e3{bottom:619.950000px;}
.y1c7{bottom:623.550000px;}
.y5d{bottom:624.150000px;}
.y95{bottom:632.550000px;}
.y1a1{bottom:634.350000px;}
.yca{bottom:635.250000px;}
.y1c6{bottom:640.950000px;}
.y5c{bottom:643.650000px;}
.y1e2{bottom:645.750000px;}
.y94{bottom:653.250000px;}
.y1a0{bottom:653.850000px;}
.y1c5{bottom:658.050000px;}
.y5b{bottom:658.350000px;}
.y19f{bottom:668.550000px;}
.y1e1{bottom:671.550000px;}
.yc9{bottom:672.450000px;}
.y93{bottom:672.750000px;}
.y5a{bottom:675.450000px;}
.y19e{bottom:686.280000px;}
.y92{bottom:687.195000px;}
.y1e0{bottom:689.595000px;}
.yc8{bottom:692.595000px;}
.y59{bottom:692.880000px;}
.y91{bottom:704.595000px;}
.y19d{bottom:705.780000px;}
.y58{bottom:709.980000px;}
.y19c{bottom:720.195000px;}
.y90{bottom:721.695000px;}
.y23{bottom:725.580000px;}
.yc7{bottom:727.080000px;}
.y57{bottom:727.395000px;}
.y15c{bottom:730.095000px;}
.y19b{bottom:737.595000px;}
.y8f{bottom:739.395000px;}
.y22{bottom:742.995000px;}
.y56{bottom:743.880000px;}
.yc6{bottom:744.495000px;}
.y10f{bottom:750.780000px;}
.y19a{bottom:754.695000px;}
.y55{bottom:758.280000px;}
.y8e{bottom:758.880000px;}
.y21{bottom:760.095000px;}
.yc5{bottom:761.595000px;}
.y199{bottom:772.080000px;}
.y8d{bottom:773.580000px;}
.y54{bottom:775.695000px;}
.y20{bottom:777.480000px;}
.yc4{bottom:778.980000px;}
.y198{bottom:789.195000px;}
.y8c{bottom:790.695000px;}
.y53{bottom:792.795000px;}
.y1f{bottom:794.580000px;}
.yc3{bottom:796.080000px;}
.y197{bottom:806.580000px;}
.y8b{bottom:808.080000px;}
.y52{bottom:810.195000px;}
.y1e{bottom:811.995000px;}
.yc2{bottom:813.495000px;}
.y196{bottom:823.695000px;}
.y8a{bottom:825.195000px;}
.y51{bottom:827.295000px;}
.y1d{bottom:829.080000px;}
.yc1{bottom:830.580000px;}
.y195{bottom:840.195000px;}
.y89{bottom:842.580000px;}
.y1c{bottom:843.795000px;}
.y1c4{bottom:847.995000px;}
.yc0{bottom:848.295000px;}
.y1b{bottom:851.025000px;}
.y194{bottom:854.925000px;}
.y1a{bottom:856.425000px;}
.y88{bottom:860.325000px;}
.y1c3{bottom:865.125000px;}
.ybf{bottom:867.825000px;}
.y193{bottom:872.025000px;}
.y19{bottom:873.525000px;}
.y50{bottom:873.825000px;}
.y87{bottom:879.825000px;}
.ybe{bottom:882.525000px;}
.y192{bottom:889.425000px;}
.y4f{bottom:891.225000px;}
.y86{bottom:894.225000px;}
.y18{bottom:896.325000px;}
.ybd{bottom:899.625000px;}
.y191{bottom:906.525000px;}
.y17{bottom:908.025000px;}
.y4e{bottom:908.325000px;}
.y85{bottom:911.625000px;}
.ybc{bottom:917.025000px;}
.y190{bottom:923.925000px;}
.y16{bottom:925.425000px;}
.y4d{bottom:925.725000px;}
.y84{bottom:928.725000px;}
.ybb{bottom:934.125000px;}
.y18f{bottom:941.025000px;}
.y4c{bottom:942.825000px;}
.y83{bottom:946.425000px;}
.y15{bottom:947.925000px;}
.yba{bottom:951.525000px;}
.y18e{bottom:957.525000px;}
.y14{bottom:959.925000px;}
.y14d{bottom:965.025000px;}
.y82{bottom:965.925000px;}
.y1c2{bottom:968.625000px;}
.yb9{bottom:969.225000px;}
.y4b{bottom:971.925000px;}
.y18d{bottom:972.225000px;}
.y13{bottom:977.025000px;}
.y81{bottom:980.625000px;}
.y1c1{bottom:986.025000px;}
.yb8{bottom:988.725000px;}
.y4a{bottom:989.325000px;}
.y12{bottom:994.725000px;}
.y80{bottom:997.725000px;}
.yb7{bottom:1003.125000px;}
.y49{bottom:1006.725000px;}
.y11{bottom:1015.425000px;}
.y7f{bottom:1016.025000px;}
.yb6{bottom:1020.570000px;}
.y48{bottom:1023.870000px;}
.y7e{bottom:1033.170000px;}
.y10{bottom:1033.755000px;}
.yb5{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1041.255000px;}
.y7d{bottom:1051.755000px;}
.yb4{bottom:1055.070000px;}
.y46{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y7c{bottom:1068.870000px;}
.yb3{bottom:1072.170000px;}
.y45{bottom:1075.755000px;}
.y14b{bottom:1080.570000px;}
.ya{bottom:1083.570000px;}
.y7b{bottom:1087.170000px;}
.y1c0{bottom:1089.570000px;}
.yb2{bottom:1089.870000px;}
.y44{bottom:1092.870000px;}
.y9{bottom:1097.955000px;}
.y7a{bottom:1104.255000px;}
.y1bf{bottom:1106.670000px;}
.y43{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.y14a{bottom:1117.455000px;}
.y79{bottom:1122.870000px;}
.y42{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y149{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.he{height:6.942188px;}
.hf{height:8.466797px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hb{height:21.694336px;}
.h1a{height:24.900000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h16{height:34.710938px;}
.h3{height:36.000000px;}
.h8{height:39.049805px;}
.h4{height:42.333984px;}
.h14{height:43.330078px;}
.hd{height:43.388672px;}
.h17{height:43.681641px;}
.h15{height:44.507812px;}
.h11{height:49.453125px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.h19{height:52.066406px;}
.h18{height:52.417969px;}
.h10{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h26{height:100.537500px;}
.h25{height:101.100000px;}
.h22{height:113.100000px;}
.h21{height:114.637500px;}
.h23{height:120.037500px;}
.h24{height:121.237500px;}
.h20{height:149.737500px;}
.h1d{height:188.145000px;}
.h1f{height:198.930000px;}
.h1e{height:214.230000px;}
.h1c{height:224.175000px;}
.h1b{height:243.030000px;}
.h12{height:356.505000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w8{width:140.437500px;}
.wb{width:158.430000px;}
.wd{width:213.075000px;}
.w6{width:253.875000px;}
.wa{width:290.520000px;}
.w9{width:299.175000px;}
.wc{width:327.120000px;}
.w5{width:483.450000px;}
.w7{width:724.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x10{left:16.200000px;}
.x18{left:19.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.xf{left:84.037500px;}
.x19{left:106.530000px;}
.x12{left:108.037487px;}
.xe{left:132.330000px;}
.x13{left:135.037487px;}
.x9{left:153.629987px;}
.x14{left:222.075000px;}
.x16{left:240.375000px;}
.xc{left:241.582500px;}
.x5{left:388.619987px;}
.x1a{left:446.549987px;}
.x7{left:457.349987px;}
.x15{left:521.850000px;}
.xd{left:561.495000px;}
.x17{left:568.395000px;}
.x11{left:590.594987px;}
.x8{left:607.094987px;}
.x6{left:696.524987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls12{letter-spacing:-1.760000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.725333pt;}
.ls14{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.341333pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls17{letter-spacing:13.973333pt;}
.ls16{letter-spacing:40.640000pt;}
.lsc{letter-spacing:48.341333pt;}
.lsa{letter-spacing:56.640000pt;}
.ws8{word-spacing:-53.333333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.658667pt;}
.wsb{word-spacing:-15.274667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws9{word-spacing:-13.333333pt;}
.ws10{word-spacing:-12.800000pt;}
.wsf{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.533333pt;}
.ws7{word-spacing:-12.266667pt;}
.wsd{word-spacing:-11.573333pt;}
.wse{word-spacing:-11.200000pt;}
.wsa{word-spacing:-9.898667pt;}
.ws4{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.125333pt;}
._15{margin-left:-2.106667pt;}
._1{margin-left:-1.136000pt;}
._0{width:0.997333pt;}
._5{width:2.400000pt;}
._d{width:3.338667pt;}
._2{width:4.517333pt;}
._6{width:5.600000pt;}
._7{width:6.522667pt;}
._12{width:7.477333pt;}
._c{width:8.672000pt;}
._a{width:9.813333pt;}
._9{width:10.805333pt;}
._8{width:12.000000pt;}
._b{width:14.826667pt;}
._11{width:15.797333pt;}
._10{width:16.693333pt;}
._13{width:17.637333pt;}
._f{width:18.912000pt;}
._e{width:19.840000pt;}
._14{width:20.853333pt;}
._1b{width:21.866667pt;}
._1f{width:22.949333pt;}
._18{width:24.192000pt;}
._17{width:25.456000pt;}
._1a{width:26.821333pt;}
._19{width:27.840000pt;}
._1c{width:29.706667pt;}
._1d{width:30.768000pt;}
._1e{width:32.384000pt;}
._20{width:33.386667pt;}
._21{width:35.594667pt;}
._3{width:298.826667pt;}
._4{width:1067.040000pt;}
.fs9{font-size:8.533333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y40{bottom:-8.266667pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:2.933333pt;}
.yf1{bottom:2.946667pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y14c{bottom:6.386667pt;}
.ycb{bottom:6.400000pt;}
.y3f{bottom:6.933333pt;}
.y130{bottom:7.200000pt;}
.y153{bottom:8.000000pt;}
.y139{bottom:8.266667pt;}
.y183{bottom:9.333333pt;}
.y179{bottom:9.613333pt;}
.y10e{bottom:10.133333pt;}
.y162{bottom:10.386667pt;}
.y16f{bottom:10.413333pt;}
.yfd{bottom:10.706667pt;}
.y168{bottom:10.933333pt;}
.y5{bottom:10.966667pt;}
.yd9{bottom:11.453333pt;}
.y158{bottom:14.933333pt;}
.y17e{bottom:17.066667pt;}
.y174{bottom:17.333333pt;}
.y107{bottom:17.866667pt;}
.y11f{bottom:18.413333pt;}
.yf0{bottom:18.440000pt;}
.y119{bottom:21.600000pt;}
.y12f{bottom:22.400000pt;}
.y15b{bottom:22.666667pt;}
.y3e{bottom:22.706667pt;}
.y151{bottom:23.200000pt;}
.y138{bottom:23.453333pt;}
.y141{bottom:23.733333pt;}
.y182{bottom:24.533333pt;}
.y178{bottom:25.066667pt;}
.y10d{bottom:25.333333pt;}
.y160{bottom:25.586667pt;}
.y16d{bottom:25.640000pt;}
.y166{bottom:26.133333pt;}
.yfc{bottom:26.173333pt;}
.yd8{bottom:26.666667pt;}
.y157{bottom:30.400000pt;}
.y17d{bottom:32.266667pt;}
.y173{bottom:32.813333pt;}
.y106{bottom:33.066667pt;}
.y11e{bottom:33.600000pt;}
.yef{bottom:33.640000pt;}
.ye3{bottom:34.400000pt;}
.y118{bottom:37.066667pt;}
.y12e{bottom:37.866667pt;}
.y150{bottom:38.666667pt;}
.y137{bottom:38.933333pt;}
.y181{bottom:40.000000pt;}
.y177{bottom:40.280000pt;}
.y10c{bottom:40.800000pt;}
.y3d{bottom:40.840000pt;}
.y15f{bottom:41.066667pt;}
.y16c{bottom:41.106667pt;}
.yfb{bottom:41.373333pt;}
.y4{bottom:41.600000pt;}
.yd7{bottom:42.120000pt;}
.y156{bottom:45.600000pt;}
.y13d{bottom:46.666667pt;}
.y17c{bottom:47.733333pt;}
.y172{bottom:48.000000pt;}
.y105{bottom:48.573333pt;}
.y11d{bottom:49.066667pt;}
.yee{bottom:49.106667pt;}
.ye2{bottom:49.600000pt;}
.y1{bottom:50.700000pt;}
.y117{bottom:52.266667pt;}
.y12d{bottom:53.066667pt;}
.y15a{bottom:53.333333pt;}
.y14f{bottom:53.906667pt;}
.y133{bottom:54.120000pt;}
.y140{bottom:54.400000pt;}
.y180{bottom:55.226667pt;}
.y176{bottom:55.733333pt;}
.y10b{bottom:56.026667pt;}
.y3c{bottom:56.040000pt;}
.y15e{bottom:56.266667pt;}
.y16b{bottom:56.306667pt;}
.y165{bottom:56.800000pt;}
.yfa{bottom:56.840000pt;}
.yd6{bottom:57.333333pt;}
.y125{bottom:60.800000pt;}
.y155{bottom:61.066667pt;}
.y13c{bottom:61.866667pt;}
.y17b{bottom:62.960000pt;}
.y171{bottom:63.480000pt;}
.y104{bottom:63.773333pt;}
.y11c{bottom:64.266667pt;}
.yed{bottom:64.306667pt;}
.ye1{bottom:65.066667pt;}
.y78{bottom:65.900000pt;}
.y113{bottom:67.746667pt;}
.y12c{bottom:68.533333pt;}
.y14e{bottom:69.373333pt;}
.y132{bottom:69.600000pt;}
.y17f{bottom:70.706667pt;}
.y175{bottom:70.946667pt;}
.y3b{bottom:71.506667pt;}
.y15d{bottom:71.733333pt;}
.y16a{bottom:71.773333pt;}
.yf9{bottom:72.040000pt;}
.y164{bottom:72.293333pt;}
.y3{bottom:72.300000pt;}
.yd5{bottom:72.786667pt;}
.y124{bottom:76.000000pt;}
.y154{bottom:76.266667pt;}
.y13b{bottom:77.333333pt;}
.y103{bottom:78.960000pt;}
.y11b{bottom:79.746667pt;}
.ye7{bottom:79.773333pt;}
.ye0{bottom:80.266667pt;}
.y112{bottom:82.933333pt;}
.y12b{bottom:83.733333pt;}
.y159{bottom:84.000000pt;}
.y152{bottom:84.573333pt;}
.y136{bottom:84.786667pt;}
.y13f{bottom:85.066667pt;}
.yfe{bottom:86.693333pt;}
.y3a{bottom:86.706667pt;}
.y161{bottom:86.920000pt;}
.y16e{bottom:86.973333pt;}
.y167{bottom:87.493333pt;}
.yf8{bottom:87.506667pt;}
.ycf{bottom:88.000000pt;}
.y123{bottom:91.466667pt;}
.y102{bottom:94.440000pt;}
.ye6{bottom:94.973333pt;}
.ydf{bottom:95.733333pt;}
.y111{bottom:98.440000pt;}
.y12a{bottom:99.200000pt;}
.y135{bottom:100.266667pt;}
.y13e{bottom:100.306667pt;}
.yb1{bottom:101.633333pt;}
.y39{bottom:102.160000pt;}
.y10a{bottom:102.173333pt;}
.yf7{bottom:102.706667pt;}
.yce{bottom:103.466667pt;}
.y1be{bottom:103.500000pt;}
.y122{bottom:106.666667pt;}
.y101{bottom:109.626667pt;}
.y1df{bottom:109.633333pt;}
.ye5{bottom:110.440000pt;}
.yde{bottom:110.960000pt;}
.y77{bottom:111.500000pt;}
.y18c{bottom:113.633333pt;}
.y110{bottom:113.640000pt;}
.y129{bottom:114.400000pt;}
.y148{bottom:114.433333pt;}
.y134{bottom:115.493333pt;}
.y142{bottom:115.773333pt;}
.yb0{bottom:117.100000pt;}
.y109{bottom:117.360000pt;}
.y38{bottom:117.373333pt;}
.yf6{bottom:118.173333pt;}
.ycd{bottom:118.693333pt;}
.y1bd{bottom:118.700000pt;}
.y1de{bottom:124.833333pt;}
.y100{bottom:125.106667pt;}
.yec{bottom:125.640000pt;}
.ydd{bottom:126.426667pt;}
.y76{bottom:126.700000pt;}
.y2a{bottom:127.500000pt;}
.y18b{bottom:128.833333pt;}
.y116{bottom:129.106667pt;}
.y128{bottom:129.906667pt;}
.yaf{bottom:132.300000pt;}
.y37{bottom:132.826667pt;}
.y147{bottom:132.833333pt;}
.y108{bottom:132.840000pt;}
.yf5{bottom:133.373333pt;}
.yd4{bottom:134.160000pt;}
.yff{bottom:140.293333pt;}
.yeb{bottom:141.106667pt;}
.ydc{bottom:141.626667pt;}
.y75{bottom:142.160000pt;}
.y29{bottom:142.960000pt;}
.y18a{bottom:144.293333pt;}
.y115{bottom:144.306667pt;}
.y127{bottom:145.106667pt;}
.yae{bottom:147.760000pt;}
.ye4{bottom:148.026667pt;}
.y36{bottom:148.040000pt;}
.yf4{bottom:148.840000pt;}
.yd3{bottom:149.360000pt;}
.y1bc{bottom:149.373333pt;}
.y146{bottom:151.240000pt;}
.y1dd{bottom:155.493333pt;}
.yea{bottom:156.306667pt;}
.ydb{bottom:157.093333pt;}
.y74{bottom:157.373333pt;}
.y28{bottom:158.200000pt;}
.y189{bottom:159.533333pt;}
.y114{bottom:159.773333pt;}
.y126{bottom:160.573333pt;}
.y35{bottom:163.533333pt;}
.yf3{bottom:164.066667pt;}
.yd2{bottom:164.560000pt;}
.y1bb{bottom:164.866667pt;}
.y145{bottom:169.666667pt;}
.y1dc{bottom:171.000000pt;}
.y11a{bottom:171.506667pt;}
.ye9{bottom:171.813333pt;}
.yda{bottom:172.293333pt;}
.y73{bottom:172.866667pt;}
.y27{bottom:173.666667pt;}
.y188{bottom:175.000000pt;}
.y34{bottom:178.733333pt;}
.yf2{bottom:179.546667pt;}
.yd1{bottom:180.026667pt;}
.y1ba{bottom:180.066667pt;}
.yad{bottom:180.866667pt;}
.y1db{bottom:186.200000pt;}
.ye8{bottom:187.013333pt;}
.y144{bottom:188.066667pt;}
.y72{bottom:188.600000pt;}
.y26{bottom:188.866667pt;}
.y187{bottom:190.200000pt;}
.yac{bottom:193.666667pt;}
.y33{bottom:194.200000pt;}
.yd0{bottom:195.226667pt;}
.y1b9{bottom:195.533333pt;}
.y1da{bottom:201.666667pt;}
.y25{bottom:204.333333pt;}
.y186{bottom:205.666667pt;}
.y143{bottom:206.466667pt;}
.y71{bottom:207.000000pt;}
.yab{bottom:209.133333pt;}
.y32{bottom:209.400000pt;}
.y1b8{bottom:210.733333pt;}
.y1d9{bottom:216.866667pt;}
.y24{bottom:220.066667pt;}
.y185{bottom:221.400000pt;}
.y13a{bottom:221.933333pt;}
.yaa{bottom:224.333333pt;}
.y31{bottom:224.866667pt;}
.y1b7{bottom:226.200000pt;}
.y1d8{bottom:232.333333pt;}
.y184{bottom:239.266667pt;}
.ya9{bottom:239.800000pt;}
.y30{bottom:240.066667pt;}
.y70{bottom:240.333333pt;}
.y1b6{bottom:241.400000pt;}
.y1d7{bottom:247.533333pt;}
.y17a{bottom:252.333333pt;}
.ya8{bottom:255.000000pt;}
.y2f{bottom:255.533333pt;}
.y1b5{bottom:256.866667pt;}
.y1d6{bottom:263.000000pt;}
.ya7{bottom:270.466667pt;}
.y2e{bottom:270.733333pt;}
.y1b4{bottom:272.066667pt;}
.y6f{bottom:274.466667pt;}
.y1d5{bottom:278.200000pt;}
.y2d{bottom:286.200000pt;}
.y1b3{bottom:287.533333pt;}
.y6e{bottom:289.666667pt;}
.y1d4{bottom:293.666667pt;}
.y2b{bottom:299.800000pt;}
.y2c{bottom:301.933333pt;}
.y1b2{bottom:302.733333pt;}
.ya6{bottom:303.533333pt;}
.y6d{bottom:306.200000pt;}
.y1d3{bottom:308.893333pt;}
.ya5{bottom:316.373333pt;}
.y1b1{bottom:318.226667pt;}
.y6c{bottom:321.426667pt;}
.y1d2{bottom:324.360000pt;}
.ya4{bottom:331.840000pt;}
.y1b0{bottom:333.426667pt;}
.y6b{bottom:337.960000pt;}
.y1d1{bottom:339.573333pt;}
.y170{bottom:342.226667pt;}
.ya3{bottom:347.040000pt;}
.ycc{bottom:348.106667pt;}
.y1af{bottom:348.906667pt;}
.y6a{bottom:353.173333pt;}
.y1d0{bottom:355.040000pt;}
.y131{bottom:355.840000pt;}
.ya2{bottom:362.506667pt;}
.y1ae{bottom:364.106667pt;}
.y69{bottom:369.440000pt;}
.y1cf{bottom:370.226667pt;}
.ya1{bottom:377.706667pt;}
.y1ad{bottom:379.560000pt;}
.y68{bottom:384.626667pt;}
.y1ce{bottom:385.706667pt;}
.ya0{bottom:393.173333pt;}
.y1ac{bottom:394.773333pt;}
.y1cd{bottom:400.893333pt;}
.y67{bottom:401.440000pt;}
.y9f{bottom:408.893333pt;}
.y1ab{bottom:410.226667pt;}
.y1cc{bottom:416.373333pt;}
.y66{bottom:418.773333pt;}
.y1aa{bottom:425.440000pt;}
.y9e{bottom:426.226667pt;}
.y1cb{bottom:431.560000pt;}
.y65{bottom:431.840000pt;}
.y169{bottom:432.893333pt;}
.y9d{bottom:439.040000pt;}
.y1a9{bottom:440.893333pt;}
.y64{bottom:447.040000pt;}
.y9c{bottom:454.506667pt;}
.y1a8{bottom:456.106667pt;}
.y1ca{bottom:462.266667pt;}
.y63{bottom:462.533333pt;}
.y9b{bottom:469.733333pt;}
.y1a7{bottom:471.600000pt;}
.y62{bottom:477.733333pt;}
.y9a{bottom:485.200000pt;}
.y1a6{bottom:486.800000pt;}
.y121{bottom:489.733333pt;}
.y1c9{bottom:492.933333pt;}
.y61{bottom:493.200000pt;}
.y99{bottom:500.400000pt;}
.y1a5{bottom:502.266667pt;}
.y60{bottom:508.400000pt;}
.y98{bottom:515.866667pt;}
.y1a4{bottom:517.466667pt;}
.y1c8{bottom:523.600000pt;}
.y5f{bottom:523.866667pt;}
.y1e4{bottom:528.133333pt;}
.y97{bottom:531.066667pt;}
.y1a3{bottom:532.933333pt;}
.y5e{bottom:539.066667pt;}
.y163{bottom:540.400000pt;}
.y96{bottom:546.533333pt;}
.y1a2{bottom:548.133333pt;}
.y1e3{bottom:551.066667pt;}
.y1c7{bottom:554.266667pt;}
.y5d{bottom:554.800000pt;}
.y95{bottom:562.266667pt;}
.y1a1{bottom:563.866667pt;}
.yca{bottom:564.666667pt;}
.y1c6{bottom:569.733333pt;}
.y5c{bottom:572.133333pt;}
.y1e2{bottom:574.000000pt;}
.y94{bottom:580.666667pt;}
.y1a0{bottom:581.200000pt;}
.y1c5{bottom:584.933333pt;}
.y5b{bottom:585.200000pt;}
.y19f{bottom:594.266667pt;}
.y1e1{bottom:596.933333pt;}
.yc9{bottom:597.733333pt;}
.y93{bottom:598.000000pt;}
.y5a{bottom:600.400000pt;}
.y19e{bottom:610.026667pt;}
.y92{bottom:610.840000pt;}
.y1e0{bottom:612.973333pt;}
.yc8{bottom:615.640000pt;}
.y59{bottom:615.893333pt;}
.y91{bottom:626.306667pt;}
.y19d{bottom:627.360000pt;}
.y58{bottom:631.093333pt;}
.y19c{bottom:640.173333pt;}
.y90{bottom:641.506667pt;}
.y23{bottom:644.960000pt;}
.yc7{bottom:646.293333pt;}
.y57{bottom:646.573333pt;}
.y15c{bottom:648.973333pt;}
.y19b{bottom:655.640000pt;}
.y8f{bottom:657.240000pt;}
.y22{bottom:660.440000pt;}
.y56{bottom:661.226667pt;}
.yc6{bottom:661.773333pt;}
.y10f{bottom:667.360000pt;}
.y19a{bottom:670.840000pt;}
.y55{bottom:674.026667pt;}
.y8e{bottom:674.560000pt;}
.y21{bottom:675.640000pt;}
.yc5{bottom:676.973333pt;}
.y199{bottom:686.293333pt;}
.y8d{bottom:687.626667pt;}
.y54{bottom:689.506667pt;}
.y20{bottom:691.093333pt;}
.yc4{bottom:692.426667pt;}
.y198{bottom:701.506667pt;}
.y8c{bottom:702.840000pt;}
.y53{bottom:704.706667pt;}
.y1f{bottom:706.293333pt;}
.yc3{bottom:707.626667pt;}
.y197{bottom:716.960000pt;}
.y8b{bottom:718.293333pt;}
.y52{bottom:720.173333pt;}
.y1e{bottom:721.773333pt;}
.yc2{bottom:723.106667pt;}
.y196{bottom:732.173333pt;}
.y8a{bottom:733.506667pt;}
.y51{bottom:735.373333pt;}
.y1d{bottom:736.960000pt;}
.yc1{bottom:738.293333pt;}
.y195{bottom:746.840000pt;}
.y89{bottom:748.960000pt;}
.y1c{bottom:750.040000pt;}
.y1c4{bottom:753.773333pt;}
.yc0{bottom:754.040000pt;}
.y1b{bottom:756.466667pt;}
.y194{bottom:759.933333pt;}
.y1a{bottom:761.266667pt;}
.y88{bottom:764.733333pt;}
.y1c3{bottom:769.000000pt;}
.ybf{bottom:771.400000pt;}
.y193{bottom:775.133333pt;}
.y19{bottom:776.466667pt;}
.y50{bottom:776.733333pt;}
.y87{bottom:782.066667pt;}
.ybe{bottom:784.466667pt;}
.y192{bottom:790.600000pt;}
.y4f{bottom:792.200000pt;}
.y86{bottom:794.866667pt;}
.y18{bottom:796.733333pt;}
.ybd{bottom:799.666667pt;}
.y191{bottom:805.800000pt;}
.y17{bottom:807.133333pt;}
.y4e{bottom:807.400000pt;}
.y85{bottom:810.333333pt;}
.ybc{bottom:815.133333pt;}
.y190{bottom:821.266667pt;}
.y16{bottom:822.600000pt;}
.y4d{bottom:822.866667pt;}
.y84{bottom:825.533333pt;}
.ybb{bottom:830.333333pt;}
.y18f{bottom:836.466667pt;}
.y4c{bottom:838.066667pt;}
.y83{bottom:841.266667pt;}
.y15{bottom:842.600000pt;}
.yba{bottom:845.800000pt;}
.y18e{bottom:851.133333pt;}
.y14{bottom:853.266667pt;}
.y14d{bottom:857.800000pt;}
.y82{bottom:858.600000pt;}
.y1c2{bottom:861.000000pt;}
.yb9{bottom:861.533333pt;}
.y4b{bottom:863.933333pt;}
.y18d{bottom:864.200000pt;}
.y13{bottom:868.466667pt;}
.y81{bottom:871.666667pt;}
.y1c1{bottom:876.466667pt;}
.yb8{bottom:878.866667pt;}
.y4a{bottom:879.400000pt;}
.y12{bottom:884.200000pt;}
.y80{bottom:886.866667pt;}
.yb7{bottom:891.666667pt;}
.y49{bottom:894.866667pt;}
.y11{bottom:902.600000pt;}
.y7f{bottom:903.133333pt;}
.yb6{bottom:907.173333pt;}
.y48{bottom:910.106667pt;}
.y7e{bottom:918.373333pt;}
.y10{bottom:918.893333pt;}
.yb5{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:925.560000pt;}
.y7d{bottom:934.893333pt;}
.yb4{bottom:937.840000pt;}
.y46{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y7c{bottom:950.106667pt;}
.yb3{bottom:953.040000pt;}
.y45{bottom:956.226667pt;}
.y14b{bottom:960.506667pt;}
.ya{bottom:963.173333pt;}
.y7b{bottom:966.373333pt;}
.y1c0{bottom:968.506667pt;}
.yb2{bottom:968.773333pt;}
.y44{bottom:971.440000pt;}
.y9{bottom:975.960000pt;}
.y7a{bottom:981.560000pt;}
.y1bf{bottom:983.706667pt;}
.y43{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.y14a{bottom:993.293333pt;}
.y79{bottom:998.106667pt;}
.y42{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y149{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.he{height:6.170833pt;}
.hf{height:7.526042pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hb{height:19.283854pt;}
.h1a{height:22.133333pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h16{height:30.854167pt;}
.h3{height:32.000000pt;}
.h8{height:34.710938pt;}
.h4{height:37.630208pt;}
.h14{height:38.515625pt;}
.hd{height:38.567708pt;}
.h17{height:38.828125pt;}
.h15{height:39.562500pt;}
.h11{height:43.958333pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.h19{height:46.281250pt;}
.h18{height:46.593750pt;}
.h10{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h26{height:89.366667pt;}
.h25{height:89.866667pt;}
.h22{height:100.533333pt;}
.h21{height:101.900000pt;}
.h23{height:106.700000pt;}
.h24{height:107.766667pt;}
.h20{height:133.100000pt;}
.h1d{height:167.240000pt;}
.h1f{height:176.826667pt;}
.h1e{height:190.426667pt;}
.h1c{height:199.266667pt;}
.h1b{height:216.026667pt;}
.h12{height:316.893333pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w8{width:124.833333pt;}
.wb{width:140.826667pt;}
.wd{width:189.400000pt;}
.w6{width:225.666667pt;}
.wa{width:258.240000pt;}
.w9{width:265.933333pt;}
.wc{width:290.773333pt;}
.w5{width:429.733333pt;}
.w7{width:643.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x10{left:14.400000pt;}
.x18{left:17.066667pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.xf{left:74.700000pt;}
.x19{left:94.693333pt;}
.x12{left:96.033322pt;}
.xe{left:117.626667pt;}
.x13{left:120.033322pt;}
.x9{left:136.559988pt;}
.x14{left:197.400000pt;}
.x16{left:213.666667pt;}
.xc{left:214.740000pt;}
.x5{left:345.439988pt;}
.x1a{left:396.933322pt;}
.x7{left:406.533322pt;}
.x15{left:463.866667pt;}
.xd{left:499.106667pt;}
.x17{left:505.240000pt;}
.x11{left:524.973322pt;}
.x8{left:539.639988pt;}
.x6{left:619.133322pt;}
.xa{left:722.106655pt;}
}




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