
    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_0dc8126ae32f4c29a2d64ecf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b23c2766a4345142b53eaa8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_113cd1647cf0ba41ffbd3511.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_0146650b63f7b1d63f04ecc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_11abb3860f4be6ce50d6fca2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_959c7776b53deccb3d5f76fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88a0dce22265a31cb8627d68.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_837dca77b45bc31205ffb181.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.702000px;}
.ls17{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.252000px;}
.ls13{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.620000px;}
.ls10{letter-spacing:12.420000px;}
.ls14{letter-spacing:25.308000px;}
.lsf{letter-spacing:25.380000px;}
.ls4{letter-spacing:52.668000px;}
.ls5{letter-spacing:64.026720px;}
.lsd{letter-spacing:64.170720px;}
.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;}
.wsd{word-spacing:-54.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.824000px;}
.wse{word-spacing:-13.626000px;}
.ws3{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.374000px;}
.wsc{word-spacing:-13.284000px;}
.ws4{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.798000px;}
.ws5{word-spacing:-12.420000px;}
.ws1{word-spacing:-11.790600px;}
.ws2{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-7.632000px;}
._5{margin-left:-5.831520px;}
._6{margin-left:-4.500480px;}
._4{margin-left:-2.902320px;}
._0{margin-left:-1.258560px;}
._1{width:1.019520px;}
._b{width:2.253360px;}
._8{width:3.262560px;}
._a{width:4.266000px;}
._1a{width:5.271360px;}
._19{width:7.176000px;}
._e{width:8.856000px;}
._9{width:10.422000px;}
._12{width:12.420000px;}
._13{width:14.802480px;}
._21{width:15.810960px;}
._14{width:17.118000px;}
._17{width:18.144000px;}
._18{width:19.224000px;}
._c{width:20.520000px;}
._d{width:21.685440px;}
._f{width:23.214000px;}
._1b{width:24.408000px;}
._22{width:25.968960px;}
._1e{width:27.383760px;}
._1d{width:28.490400px;}
._24{width:29.808000px;}
._25{width:31.050000px;}
._1f{width:32.216400px;}
._23{width:33.404400px;}
._11{width:34.878000px;}
._10{width:35.910000px;}
._16{width:37.746000px;}
._15{width:38.880000px;}
._20{width:40.176000px;}
._27{width:41.418000px;}
._2a{width:42.564960px;}
._28{width:44.476560px;}
._29{width:46.062000px;}
._1c{width:47.790000px;}
._30{width:49.282560px;}
._26{width:56.538000px;}
._2f{width:57.564000px;}
._2b{width:71.172000px;}
._2c{width:72.198000px;}
._2d{width:73.386000px;}
._2e{width:74.472480px;}
._2{width:1625.460000px;}
._3{width:1960.972800px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(79,128,187);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(31,70,122);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19{bottom:10.980000px;}
.y1c{bottom:12.600000px;}
.y1b{bottom:30.420000px;}
.y18{bottom:37.800000px;}
.y17{bottom:55.620000px;}
.y4b{bottom:58.500000px;}
.y16{bottom:73.620000px;}
.y7{bottom:76.860000px;}
.y81{bottom:83.340000px;}
.yaf{bottom:86.400000px;}
.y15{bottom:91.440000px;}
.ycf{bottom:94.860000px;}
.y80{bottom:101.340000px;}
.y131{bottom:103.140000px;}
.yae{bottom:104.220000px;}
.y14{bottom:109.260000px;}
.y49{bottom:111.960000px;}
.yfe{bottom:114.660000px;}
.y7f{bottom:119.160000px;}
.y130{bottom:120.960000px;}
.yad{bottom:122.040000px;}
.y36{bottom:122.220000px;}
.y13{bottom:127.080000px;}
.y48{bottom:129.780000px;}
.yfd{bottom:132.480000px;}
.y161{bottom:136.080000px;}
.y7e{bottom:136.980000px;}
.y12f{bottom:138.780000px;}
.yac{bottom:139.860000px;}
.y35{bottom:140.040000px;}
.y12{bottom:144.900000px;}
.y47{bottom:147.780000px;}
.yfc{bottom:150.480000px;}
.y160{bottom:153.900000px;}
.y7d{bottom:154.800000px;}
.y12e{bottom:156.780000px;}
.y34{bottom:157.860000px;}
.y15f{bottom:171.900000px;}
.y7c{bottom:172.620000px;}
.yce{bottom:175.680000px;}
.y46{bottom:177.120000px;}
.yfb{bottom:179.640000px;}
.y33{bottom:184.320000px;}
.y12d{bottom:185.760000px;}
.y7b{bottom:190.440000px;}
.ycd{bottom:193.500000px;}
.y45{bottom:194.940000px;}
.yfa{bottom:197.460000px;}
.y15e{bottom:200.160000px;}
.y7a{bottom:208.470000px;}
.ycc{bottom:211.350000px;}
.yab{bottom:211.530000px;}
.y32{bottom:211.710000px;}
.y12c{bottom:212.970000px;}
.yf9{bottom:215.490000px;}
.y44{bottom:224.310000px;}
.y79{bottom:226.290000px;}
.ycb{bottom:229.170000px;}
.yaa{bottom:229.350000px;}
.y31{bottom:229.530000px;}
.y12b{bottom:230.790000px;}
.y15d{bottom:231.510000px;}
.y43{bottom:242.310000px;}
.yf8{bottom:244.650000px;}
.yca{bottom:246.990000px;}
.ya9{bottom:247.170000px;}
.y30{bottom:247.350000px;}
.y12a{bottom:248.610000px;}
.y15c{bottom:249.330000px;}
.y78{bottom:252.750000px;}
.yf7{bottom:262.470000px;}
.ya8{bottom:264.990000px;}
.y2f{bottom:265.170000px;}
.y129{bottom:266.430000px;}
.y15b{bottom:267.150000px;}
.y42{bottom:271.470000px;}
.yc9{bottom:273.630000px;}
.y77{bottom:279.930000px;}
.yf6{bottom:280.470000px;}
.ya7{bottom:282.990000px;}
.y128{bottom:284.250000px;}
.y15a{bottom:284.970000px;}
.y41{bottom:289.290000px;}
.y2e{bottom:291.630000px;}
.y76{bottom:297.750000px;}
.ya6{bottom:300.810000px;}
.y127{bottom:302.250000px;}
.y159{bottom:302.970000px;}
.y40{bottom:307.290000px;}
.yf5{bottom:309.630000px;}
.y75{bottom:315.570000px;}
.ya5{bottom:318.630000px;}
.y2d{bottom:318.990000px;}
.y158{bottom:320.790000px;}
.yf4{bottom:327.630000px;}
.y126{bottom:331.230000px;}
.y74{bottom:333.570000px;}
.y3f{bottom:336.450000px;}
.y2c{bottom:336.810000px;}
.y157{bottom:338.610000px;}
.ya4{bottom:345.090000px;}
.y73{bottom:351.390000px;}
.yf3{bottom:354.090000px;}
.y3e{bottom:354.270000px;}
.y2b{bottom:354.630000px;}
.y156{bottom:356.430000px;}
.y125{bottom:358.410000px;}
.y72{bottom:369.210000px;}
.yc8{bottom:372.090000px;}
.ya3{bottom:372.270000px;}
.y2a{bottom:372.450000px;}
.y155{bottom:374.250000px;}
.y124{bottom:376.230000px;}
.y3d{bottom:380.730000px;}
.yf2{bottom:381.270000px;}
.y71{bottom:387.030000px;}
.ya2{bottom:390.090000px;}
.y29{bottom:390.270000px;}
.y154{bottom:392.250000px;}
.y123{bottom:394.050000px;}
.yf1{bottom:399.090000px;}
.yc7{bottom:407.910000px;}
.y28{bottom:408.090000px;}
.y153{bottom:410.070000px;}
.y122{bottom:411.870000px;}
.y70{bottom:413.490000px;}
.yf0{bottom:416.910000px;}
.y3c{bottom:425.910000px;}
.y27{bottom:426.090000px;}
.y152{bottom:427.890000px;}
.yc6{bottom:434.370000px;}
.yef{bottom:434.910000px;}
.y121{bottom:438.510000px;}
.y6f{bottom:440.895000px;}
.ya1{bottom:443.775000px;}
.y26{bottom:443.955000px;}
.y151{bottom:445.755000px;}
.y3b{bottom:452.775000px;}
.y6e{bottom:458.715000px;}
.ya0{bottom:461.595000px;}
.y25{bottom:461.775000px;}
.y150{bottom:463.575000px;}
.y120{bottom:465.735000px;}
.y3a{bottom:470.595000px;}
.y6d{bottom:476.535000px;}
.y9f{bottom:479.415000px;}
.y24{bottom:479.595000px;}
.y14f{bottom:481.395000px;}
.y11f{bottom:483.555000px;}
.y39{bottom:488.415000px;}
.y6c{bottom:494.355000px;}
.y23{bottom:497.415000px;}
.y14e{bottom:499.395000px;}
.y11e{bottom:501.375000px;}
.y9e{bottom:506.055000px;}
.y6b{bottom:512.175000px;}
.yee{bottom:514.875000px;}
.yc5{bottom:515.235000px;}
.y22{bottom:515.415000px;}
.y14d{bottom:517.215000px;}
.y11d{bottom:519.195000px;}
.y6a{bottom:529.995000px;}
.yc4{bottom:533.055000px;}
.y21{bottom:533.235000px;}
.y14c{bottom:535.035000px;}
.yed{bottom:542.055000px;}
.y11c{bottom:546.015000px;}
.y69{bottom:547.995000px;}
.yc3{bottom:550.875000px;}
.y20{bottom:551.055000px;}
.y175{bottom:559.875000px;}
.yec{bottom:560.055000px;}
.y14b{bottom:563.295000px;}
.y11b{bottom:564.015000px;}
.y68{bottom:565.815000px;}
.y1f{bottom:568.875000px;}
.yc2{bottom:577.335000px;}
.y174{bottom:577.695000px;}
.y38{bottom:577.875000px;}
.y11a{bottom:581.835000px;}
.y67{bottom:583.635000px;}
.y1e{bottom:586.695000px;}
.y14a{bottom:594.615000px;}
.yc1{bottom:595.155000px;}
.y173{bottom:595.515000px;}
.y37{bottom:595.695000px;}
.yeb{bottom:595.875000px;}
.y119{bottom:599.655000px;}
.y66{bottom:601.455000px;}
.y9d{bottom:604.515000px;}
.y149{bottom:612.615000px;}
.y1d{bottom:615.135000px;}
.y118{bottom:617.475000px;}
.y65{bottom:619.275000px;}
.y9c{bottom:622.515000px;}
.yea{bottom:625.035000px;}
.y148{bottom:630.435000px;}
.yc0{bottom:640.335000px;}
.y1a{bottom:641.595000px;}
.ye9{bottom:642.855000px;}
.y117{bottom:644.295000px;}
.y64{bottom:645.915000px;}
.y147{bottom:648.255000px;}
.y9b{bottom:648.975000px;}
.ybf{bottom:658.155000px;}
.ye8{bottom:660.675000px;}
.y116{bottom:662.115000px;}
.y146{bottom:666.075000px;}
.y187{bottom:667.155000px;}
.y63{bottom:672.735000px;}
.ybe{bottom:676.005000px;}
.y9a{bottom:676.185000px;}
.ye7{bottom:678.525000px;}
.y115{bottom:680.145000px;}
.y145{bottom:684.105000px;}
.y186{bottom:685.005000px;}
.ybd{bottom:693.825000px;}
.y11{bottom:694.005000px;}
.ye6{bottom:696.525000px;}
.y114{bottom:697.965000px;}
.y62{bottom:699.945000px;}
.y172{bottom:702.825000px;}
.y99{bottom:711.825000px;}
.y144{bottom:712.905000px;}
.y113{bottom:715.785000px;}
.y61{bottom:717.765000px;}
.y171{bottom:720.825000px;}
.ye5{bottom:725.865000px;}
.ybc{bottom:729.645000px;}
.y185{bottom:729.825000px;}
.y143{bottom:730.725000px;}
.y60{bottom:735.585000px;}
.y98{bottom:738.465000px;}
.y170{bottom:738.645000px;}
.y112{bottom:742.605000px;}
.ye4{bottom:743.685000px;}
.ybb{bottom:747.465000px;}
.y184{bottom:747.645000px;}
.y5f{bottom:753.405000px;}
.y16f{bottom:756.465000px;}
.y142{bottom:758.085000px;}
.y111{bottom:760.425000px;}
.ye3{bottom:761.505000px;}
.y183{bottom:765.465000px;}
.y97{bottom:765.645000px;}
.y5e{bottom:771.405000px;}
.yba{bottom:773.925000px;}
.y141{bottom:775.905000px;}
.y110{bottom:778.425000px;}
.ye2{bottom:779.505000px;}
.y16e{bottom:783.285000px;}
.y96{bottom:783.465000px;}
.y182{bottom:792.285000px;}
.y140{bottom:793.725000px;}
.y10f{bottom:796.245000px;}
.y5d{bottom:800.745000px;}
.yb9{bottom:801.105000px;}
.y95{bottom:801.285000px;}
.ye1{bottom:808.305000px;}
.y181{bottom:810.105000px;}
.y13f{bottom:811.545000px;}
.y10e{bottom:814.065000px;}
.y5c{bottom:818.565000px;}
.yb8{bottom:818.925000px;}
.y94{bottom:819.105000px;}
.y180{bottom:827.925000px;}
.y13e{bottom:829.545000px;}
.ye0{bottom:835.485000px;}
.y5b{bottom:836.565000px;}
.y93{bottom:836.925000px;}
.y10d{bottom:840.885000px;}
.y17f{bottom:845.925000px;}
.ydf{bottom:853.305000px;}
.yb7{bottom:854.745000px;}
.y92{bottom:854.925000px;}
.y13d{bottom:858.345000px;}
.y10c{bottom:858.705000px;}
.y16d{bottom:863.745000px;}
.y5a{bottom:865.725000px;}
.y10{bottom:866.625000px;}
.yde{bottom:871.305000px;}
.y17e{bottom:872.385000px;}
.yb6{bottom:872.565000px;}
.y91{bottom:872.745000px;}
.y10b{bottom:876.525000px;}
.y16c{bottom:881.565000px;}
.y59{bottom:883.545000px;}
.y13c{bottom:885.525000px;}
.ydd{bottom:889.125000px;}
.yb5{bottom:890.385000px;}
.y90{bottom:890.565000px;}
.yf{bottom:893.445000px;}
.y10a{bottom:894.525000px;}
.y16b{bottom:899.385000px;}
.y17d{bottom:899.565000px;}
.y58{bottom:901.545000px;}
.y13b{bottom:903.525000px;}
.ydc{bottom:907.125000px;}
.y8f{bottom:908.385000px;}
.ye{bottom:911.310000px;}
.y109{bottom:912.390000px;}
.yb4{bottom:916.890000px;}
.y16a{bottom:917.250000px;}
.y17c{bottom:917.430000px;}
.y13a{bottom:921.390000px;}
.y108{bottom:929.850000px;}
.y57{bottom:930.750000px;}
.y8e{bottom:934.890000px;}
.y17b{bottom:935.250000px;}
.ydb{bottom:936.330000px;}
.y139{bottom:939.210000px;}
.yd{bottom:944.070000px;}
.yb3{bottom:944.250000px;}
.y56{bottom:948.570000px;}
.y17a{bottom:953.250000px;}
.yda{bottom:954.150000px;}
.y107{bottom:957.030000px;}
.yb2{bottom:962.070000px;}
.y8d{bottom:962.250000px;}
.y55{bottom:966.570000px;}
.yc{bottom:970.890000px;}
.yd9{bottom:971.970000px;}
.y138{bottom:975.030000px;}
.y169{bottom:979.890000px;}
.y8c{bottom:980.070000px;}
.y106{bottom:983.490000px;}
.yb1{bottom:988.530000px;}
.yd8{bottom:989.970000px;}
.yb{bottom:991.410000px;}
.y54{bottom:995.730000px;}
.y8b{bottom:997.890000px;}
.y137{bottom:1003.830000px;}
.y168{bottom:1006.710000px;}
.y105{bottom:1010.850000px;}
.y53{bottom:1013.730000px;}
.y8a{bottom:1015.710000px;}
.yd7{bottom:1019.130000px;}
.ya{bottom:1021.470000px;}
.y167{bottom:1024.530000px;}
.y104{bottom:1028.670000px;}
.y136{bottom:1031.010000px;}
.y89{bottom:1033.530000px;}
.yd6{bottom:1037.130000px;}
.y166{bottom:1042.350000px;}
.y52{bottom:1044.510000px;}
.y103{bottom:1046.490000px;}
.y135{bottom:1049.010000px;}
.y88{bottom:1051.350000px;}
.yd5{bottom:1054.950000px;}
.y9{bottom:1056.930000px;}
.y179{bottom:1060.350000px;}
.y134{bottom:1066.830000px;}
.y87{bottom:1069.350000px;}
.yd4{bottom:1072.770000px;}
.y102{bottom:1073.310000px;}
.y51{bottom:1075.830000px;}
.y178{bottom:1078.350000px;}
.y133{bottom:1084.650000px;}
.y86{bottom:1087.170000px;}
.y8{bottom:1087.350000px;}
.yd3{bottom:1090.770000px;}
.y101{bottom:1091.130000px;}
.y50{bottom:1093.650000px;}
.y177{bottom:1096.170000px;}
.y132{bottom:1102.650000px;}
.y165{bottom:1104.990000px;}
.y100{bottom:1109.130000px;}
.y4f{bottom:1111.470000px;}
.y6{bottom:1113.270000px;}
.y85{bottom:1113.630000px;}
.yd2{bottom:1119.570000px;}
.y164{bottom:1122.810000px;}
.y176{bottom:1122.990000px;}
.y4e{bottom:1129.290000px;}
.y84{bottom:1131.450000px;}
.y5{bottom:1132.530000px;}
.yff{bottom:1138.290000px;}
.yb0{bottom:1140.810000px;}
.yd1{bottom:1148.220000px;}
.y163{bottom:1149.660000px;}
.y4{bottom:1150.920000px;}
.y4d{bottom:1156.320000px;}
.y83{bottom:1158.660000px;}
.y3{bottom:1166.220000px;}
.y162{bottom:1167.660000px;}
.yd0{bottom:1172.160000px;}
.y4c{bottom:1174.320000px;}
.y82{bottom:1176.660000px;}
.y2{bottom:1181.520000px;}
.y4a{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.ha{height:35.332031px;}
.h12{height:37.705078px;}
.h11{height:40.843828px;}
.h5{height:47.344922px;}
.hd{height:51.690000px;}
.h13{height:52.971680px;}
.h6{height:52.998047px;}
.hb{height:54.421875px;}
.hf{height:55.503491px;}
.h9{height:60.041250px;}
.h10{height:61.423863px;}
.h2{height:65.010937px;}
.h4{height:65.884219px;}
.h7{height:69.660000px;}
.h3{height:70.664062px;}
.he{height:72.562500px;}
.h8{height:84.898125px;}
.hc{height:166.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x5{left:54.000000px;}
.x8{left:72.901500px;}
.xb{left:81.000000px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.xc{left:108.036000px;}
.x10{left:219.810000px;}
.x1{left:262.650000px;}
.x2{left:306.795000px;}
.x4{left:332.715000px;}
.x3{left:353.055000px;}
.xf{left:473.505000px;}
.xe{left:500.505000px;}
.x11{left:514.725000px;}
.xd{left:527.505000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.224000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls1{letter-spacing:1.440000pt;}
.ls10{letter-spacing:11.040000pt;}
.ls14{letter-spacing:22.496000pt;}
.lsf{letter-spacing:22.560000pt;}
.ls4{letter-spacing:46.816000pt;}
.ls5{letter-spacing:56.912640pt;}
.lsd{letter-spacing:57.040640pt;}
.ws8{word-spacing:-53.120000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.288000pt;}
.wse{word-spacing:-12.112000pt;}
.ws3{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.888000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.376000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws2{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-6.784000pt;}
._5{margin-left:-5.183573pt;}
._6{margin-left:-4.000427pt;}
._4{margin-left:-2.579840pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.906240pt;}
._b{width:2.002987pt;}
._8{width:2.900053pt;}
._a{width:3.792000pt;}
._1a{width:4.685653pt;}
._19{width:6.378667pt;}
._e{width:7.872000pt;}
._9{width:9.264000pt;}
._12{width:11.040000pt;}
._13{width:13.157760pt;}
._21{width:14.054187pt;}
._14{width:15.216000pt;}
._17{width:16.128000pt;}
._18{width:17.088000pt;}
._c{width:18.240000pt;}
._d{width:19.275947pt;}
._f{width:20.634667pt;}
._1b{width:21.696000pt;}
._22{width:23.083520pt;}
._1e{width:24.341120pt;}
._1d{width:25.324800pt;}
._24{width:26.496000pt;}
._25{width:27.600000pt;}
._1f{width:28.636800pt;}
._23{width:29.692800pt;}
._11{width:31.002667pt;}
._10{width:31.920000pt;}
._16{width:33.552000pt;}
._15{width:34.560000pt;}
._20{width:35.712000pt;}
._27{width:36.816000pt;}
._2a{width:37.835520pt;}
._28{width:39.534720pt;}
._29{width:40.944000pt;}
._1c{width:42.480000pt;}
._30{width:43.806720pt;}
._26{width:50.256000pt;}
._2f{width:51.168000pt;}
._2b{width:63.264000pt;}
._2c{width:64.176000pt;}
._2d{width:65.232000pt;}
._2e{width:66.197760pt;}
._2{width:1444.853333pt;}
._3{width:1743.086933pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:9.760000pt;}
.y1c{bottom:11.200000pt;}
.y1b{bottom:27.040000pt;}
.y18{bottom:33.600000pt;}
.y17{bottom:49.440000pt;}
.y4b{bottom:52.000000pt;}
.y16{bottom:65.440000pt;}
.y7{bottom:68.320000pt;}
.y81{bottom:74.080000pt;}
.yaf{bottom:76.800000pt;}
.y15{bottom:81.280000pt;}
.ycf{bottom:84.320000pt;}
.y80{bottom:90.080000pt;}
.y131{bottom:91.680000pt;}
.yae{bottom:92.640000pt;}
.y14{bottom:97.120000pt;}
.y49{bottom:99.520000pt;}
.yfe{bottom:101.920000pt;}
.y7f{bottom:105.920000pt;}
.y130{bottom:107.520000pt;}
.yad{bottom:108.480000pt;}
.y36{bottom:108.640000pt;}
.y13{bottom:112.960000pt;}
.y48{bottom:115.360000pt;}
.yfd{bottom:117.760000pt;}
.y161{bottom:120.960000pt;}
.y7e{bottom:121.760000pt;}
.y12f{bottom:123.360000pt;}
.yac{bottom:124.320000pt;}
.y35{bottom:124.480000pt;}
.y12{bottom:128.800000pt;}
.y47{bottom:131.360000pt;}
.yfc{bottom:133.760000pt;}
.y160{bottom:136.800000pt;}
.y7d{bottom:137.600000pt;}
.y12e{bottom:139.360000pt;}
.y34{bottom:140.320000pt;}
.y15f{bottom:152.800000pt;}
.y7c{bottom:153.440000pt;}
.yce{bottom:156.160000pt;}
.y46{bottom:157.440000pt;}
.yfb{bottom:159.680000pt;}
.y33{bottom:163.840000pt;}
.y12d{bottom:165.120000pt;}
.y7b{bottom:169.280000pt;}
.ycd{bottom:172.000000pt;}
.y45{bottom:173.280000pt;}
.yfa{bottom:175.520000pt;}
.y15e{bottom:177.920000pt;}
.y7a{bottom:185.306667pt;}
.ycc{bottom:187.866667pt;}
.yab{bottom:188.026667pt;}
.y32{bottom:188.186667pt;}
.y12c{bottom:189.306667pt;}
.yf9{bottom:191.546667pt;}
.y44{bottom:199.386667pt;}
.y79{bottom:201.146667pt;}
.ycb{bottom:203.706667pt;}
.yaa{bottom:203.866667pt;}
.y31{bottom:204.026667pt;}
.y12b{bottom:205.146667pt;}
.y15d{bottom:205.786667pt;}
.y43{bottom:215.386667pt;}
.yf8{bottom:217.466667pt;}
.yca{bottom:219.546667pt;}
.ya9{bottom:219.706667pt;}
.y30{bottom:219.866667pt;}
.y12a{bottom:220.986667pt;}
.y15c{bottom:221.626667pt;}
.y78{bottom:224.666667pt;}
.yf7{bottom:233.306667pt;}
.ya8{bottom:235.546667pt;}
.y2f{bottom:235.706667pt;}
.y129{bottom:236.826667pt;}
.y15b{bottom:237.466667pt;}
.y42{bottom:241.306667pt;}
.yc9{bottom:243.226667pt;}
.y77{bottom:248.826667pt;}
.yf6{bottom:249.306667pt;}
.ya7{bottom:251.546667pt;}
.y128{bottom:252.666667pt;}
.y15a{bottom:253.306667pt;}
.y41{bottom:257.146667pt;}
.y2e{bottom:259.226667pt;}
.y76{bottom:264.666667pt;}
.ya6{bottom:267.386667pt;}
.y127{bottom:268.666667pt;}
.y159{bottom:269.306667pt;}
.y40{bottom:273.146667pt;}
.yf5{bottom:275.226667pt;}
.y75{bottom:280.506667pt;}
.ya5{bottom:283.226667pt;}
.y2d{bottom:283.546667pt;}
.y158{bottom:285.146667pt;}
.yf4{bottom:291.226667pt;}
.y126{bottom:294.426667pt;}
.y74{bottom:296.506667pt;}
.y3f{bottom:299.066667pt;}
.y2c{bottom:299.386667pt;}
.y157{bottom:300.986667pt;}
.ya4{bottom:306.746667pt;}
.y73{bottom:312.346667pt;}
.yf3{bottom:314.746667pt;}
.y3e{bottom:314.906667pt;}
.y2b{bottom:315.226667pt;}
.y156{bottom:316.826667pt;}
.y125{bottom:318.586667pt;}
.y72{bottom:328.186667pt;}
.yc8{bottom:330.746667pt;}
.ya3{bottom:330.906667pt;}
.y2a{bottom:331.066667pt;}
.y155{bottom:332.666667pt;}
.y124{bottom:334.426667pt;}
.y3d{bottom:338.426667pt;}
.yf2{bottom:338.906667pt;}
.y71{bottom:344.026667pt;}
.ya2{bottom:346.746667pt;}
.y29{bottom:346.906667pt;}
.y154{bottom:348.666667pt;}
.y123{bottom:350.266667pt;}
.yf1{bottom:354.746667pt;}
.yc7{bottom:362.586667pt;}
.y28{bottom:362.746667pt;}
.y153{bottom:364.506667pt;}
.y122{bottom:366.106667pt;}
.y70{bottom:367.546667pt;}
.yf0{bottom:370.586667pt;}
.y3c{bottom:378.586667pt;}
.y27{bottom:378.746667pt;}
.y152{bottom:380.346667pt;}
.yc6{bottom:386.106667pt;}
.yef{bottom:386.586667pt;}
.y121{bottom:389.786667pt;}
.y6f{bottom:391.906667pt;}
.ya1{bottom:394.466667pt;}
.y26{bottom:394.626667pt;}
.y151{bottom:396.226667pt;}
.y3b{bottom:402.466667pt;}
.y6e{bottom:407.746667pt;}
.ya0{bottom:410.306667pt;}
.y25{bottom:410.466667pt;}
.y150{bottom:412.066667pt;}
.y120{bottom:413.986667pt;}
.y3a{bottom:418.306667pt;}
.y6d{bottom:423.586667pt;}
.y9f{bottom:426.146667pt;}
.y24{bottom:426.306667pt;}
.y14f{bottom:427.906667pt;}
.y11f{bottom:429.826667pt;}
.y39{bottom:434.146667pt;}
.y6c{bottom:439.426667pt;}
.y23{bottom:442.146667pt;}
.y14e{bottom:443.906667pt;}
.y11e{bottom:445.666667pt;}
.y9e{bottom:449.826667pt;}
.y6b{bottom:455.266667pt;}
.yee{bottom:457.666667pt;}
.yc5{bottom:457.986667pt;}
.y22{bottom:458.146667pt;}
.y14d{bottom:459.746667pt;}
.y11d{bottom:461.506667pt;}
.y6a{bottom:471.106667pt;}
.yc4{bottom:473.826667pt;}
.y21{bottom:473.986667pt;}
.y14c{bottom:475.586667pt;}
.yed{bottom:481.826667pt;}
.y11c{bottom:485.346667pt;}
.y69{bottom:487.106667pt;}
.yc3{bottom:489.666667pt;}
.y20{bottom:489.826667pt;}
.y175{bottom:497.666667pt;}
.yec{bottom:497.826667pt;}
.y14b{bottom:500.706667pt;}
.y11b{bottom:501.346667pt;}
.y68{bottom:502.946667pt;}
.y1f{bottom:505.666667pt;}
.yc2{bottom:513.186667pt;}
.y174{bottom:513.506667pt;}
.y38{bottom:513.666667pt;}
.y11a{bottom:517.186667pt;}
.y67{bottom:518.786667pt;}
.y1e{bottom:521.506667pt;}
.y14a{bottom:528.546667pt;}
.yc1{bottom:529.026667pt;}
.y173{bottom:529.346667pt;}
.y37{bottom:529.506667pt;}
.yeb{bottom:529.666667pt;}
.y119{bottom:533.026667pt;}
.y66{bottom:534.626667pt;}
.y9d{bottom:537.346667pt;}
.y149{bottom:544.546667pt;}
.y1d{bottom:546.786667pt;}
.y118{bottom:548.866667pt;}
.y65{bottom:550.466667pt;}
.y9c{bottom:553.346667pt;}
.yea{bottom:555.586667pt;}
.y148{bottom:560.386667pt;}
.yc0{bottom:569.186667pt;}
.y1a{bottom:570.306667pt;}
.ye9{bottom:571.426667pt;}
.y117{bottom:572.706667pt;}
.y64{bottom:574.146667pt;}
.y147{bottom:576.226667pt;}
.y9b{bottom:576.866667pt;}
.ybf{bottom:585.026667pt;}
.ye8{bottom:587.266667pt;}
.y116{bottom:588.546667pt;}
.y146{bottom:592.066667pt;}
.y187{bottom:593.026667pt;}
.y63{bottom:597.986667pt;}
.ybe{bottom:600.893333pt;}
.y9a{bottom:601.053333pt;}
.ye7{bottom:603.133333pt;}
.y115{bottom:604.573333pt;}
.y145{bottom:608.093333pt;}
.y186{bottom:608.893333pt;}
.ybd{bottom:616.733333pt;}
.y11{bottom:616.893333pt;}
.ye6{bottom:619.133333pt;}
.y114{bottom:620.413333pt;}
.y62{bottom:622.173333pt;}
.y172{bottom:624.733333pt;}
.y99{bottom:632.733333pt;}
.y144{bottom:633.693333pt;}
.y113{bottom:636.253333pt;}
.y61{bottom:638.013333pt;}
.y171{bottom:640.733333pt;}
.ye5{bottom:645.213333pt;}
.ybc{bottom:648.573333pt;}
.y185{bottom:648.733333pt;}
.y143{bottom:649.533333pt;}
.y60{bottom:653.853333pt;}
.y98{bottom:656.413333pt;}
.y170{bottom:656.573333pt;}
.y112{bottom:660.093333pt;}
.ye4{bottom:661.053333pt;}
.ybb{bottom:664.413333pt;}
.y184{bottom:664.573333pt;}
.y5f{bottom:669.693333pt;}
.y16f{bottom:672.413333pt;}
.y142{bottom:673.853333pt;}
.y111{bottom:675.933333pt;}
.ye3{bottom:676.893333pt;}
.y183{bottom:680.413333pt;}
.y97{bottom:680.573333pt;}
.y5e{bottom:685.693333pt;}
.yba{bottom:687.933333pt;}
.y141{bottom:689.693333pt;}
.y110{bottom:691.933333pt;}
.ye2{bottom:692.893333pt;}
.y16e{bottom:696.253333pt;}
.y96{bottom:696.413333pt;}
.y182{bottom:704.253333pt;}
.y140{bottom:705.533333pt;}
.y10f{bottom:707.773333pt;}
.y5d{bottom:711.773333pt;}
.yb9{bottom:712.093333pt;}
.y95{bottom:712.253333pt;}
.ye1{bottom:718.493333pt;}
.y181{bottom:720.093333pt;}
.y13f{bottom:721.373333pt;}
.y10e{bottom:723.613333pt;}
.y5c{bottom:727.613333pt;}
.yb8{bottom:727.933333pt;}
.y94{bottom:728.093333pt;}
.y180{bottom:735.933333pt;}
.y13e{bottom:737.373333pt;}
.ye0{bottom:742.653333pt;}
.y5b{bottom:743.613333pt;}
.y93{bottom:743.933333pt;}
.y10d{bottom:747.453333pt;}
.y17f{bottom:751.933333pt;}
.ydf{bottom:758.493333pt;}
.yb7{bottom:759.773333pt;}
.y92{bottom:759.933333pt;}
.y13d{bottom:762.973333pt;}
.y10c{bottom:763.293333pt;}
.y16d{bottom:767.773333pt;}
.y5a{bottom:769.533333pt;}
.y10{bottom:770.333333pt;}
.yde{bottom:774.493333pt;}
.y17e{bottom:775.453333pt;}
.yb6{bottom:775.613333pt;}
.y91{bottom:775.773333pt;}
.y10b{bottom:779.133333pt;}
.y16c{bottom:783.613333pt;}
.y59{bottom:785.373333pt;}
.y13c{bottom:787.133333pt;}
.ydd{bottom:790.333333pt;}
.yb5{bottom:791.453333pt;}
.y90{bottom:791.613333pt;}
.yf{bottom:794.173333pt;}
.y10a{bottom:795.133333pt;}
.y16b{bottom:799.453333pt;}
.y17d{bottom:799.613333pt;}
.y58{bottom:801.373333pt;}
.y13b{bottom:803.133333pt;}
.ydc{bottom:806.333333pt;}
.y8f{bottom:807.453333pt;}
.ye{bottom:810.053333pt;}
.y109{bottom:811.013333pt;}
.yb4{bottom:815.013333pt;}
.y16a{bottom:815.333333pt;}
.y17c{bottom:815.493333pt;}
.y13a{bottom:819.013333pt;}
.y108{bottom:826.533333pt;}
.y57{bottom:827.333333pt;}
.y8e{bottom:831.013333pt;}
.y17b{bottom:831.333333pt;}
.ydb{bottom:832.293333pt;}
.y139{bottom:834.853333pt;}
.yd{bottom:839.173333pt;}
.yb3{bottom:839.333333pt;}
.y56{bottom:843.173333pt;}
.y17a{bottom:847.333333pt;}
.yda{bottom:848.133333pt;}
.y107{bottom:850.693333pt;}
.yb2{bottom:855.173333pt;}
.y8d{bottom:855.333333pt;}
.y55{bottom:859.173333pt;}
.yc{bottom:863.013333pt;}
.yd9{bottom:863.973333pt;}
.y138{bottom:866.693333pt;}
.y169{bottom:871.013333pt;}
.y8c{bottom:871.173333pt;}
.y106{bottom:874.213333pt;}
.yb1{bottom:878.693333pt;}
.yd8{bottom:879.973333pt;}
.yb{bottom:881.253333pt;}
.y54{bottom:885.093333pt;}
.y8b{bottom:887.013333pt;}
.y137{bottom:892.293333pt;}
.y168{bottom:894.853333pt;}
.y105{bottom:898.533333pt;}
.y53{bottom:901.093333pt;}
.y8a{bottom:902.853333pt;}
.yd7{bottom:905.893333pt;}
.ya{bottom:907.973333pt;}
.y167{bottom:910.693333pt;}
.y104{bottom:914.373333pt;}
.y136{bottom:916.453333pt;}
.y89{bottom:918.693333pt;}
.yd6{bottom:921.893333pt;}
.y166{bottom:926.533333pt;}
.y52{bottom:928.453333pt;}
.y103{bottom:930.213333pt;}
.y135{bottom:932.453333pt;}
.y88{bottom:934.533333pt;}
.yd5{bottom:937.733333pt;}
.y9{bottom:939.493333pt;}
.y179{bottom:942.533333pt;}
.y134{bottom:948.293333pt;}
.y87{bottom:950.533333pt;}
.yd4{bottom:953.573333pt;}
.y102{bottom:954.053333pt;}
.y51{bottom:956.293333pt;}
.y178{bottom:958.533333pt;}
.y133{bottom:964.133333pt;}
.y86{bottom:966.373333pt;}
.y8{bottom:966.533333pt;}
.yd3{bottom:969.573333pt;}
.y101{bottom:969.893333pt;}
.y50{bottom:972.133333pt;}
.y177{bottom:974.373333pt;}
.y132{bottom:980.133333pt;}
.y165{bottom:982.213333pt;}
.y100{bottom:985.893333pt;}
.y4f{bottom:987.973333pt;}
.y6{bottom:989.573333pt;}
.y85{bottom:989.893333pt;}
.yd2{bottom:995.173333pt;}
.y164{bottom:998.053333pt;}
.y176{bottom:998.213333pt;}
.y4e{bottom:1003.813333pt;}
.y84{bottom:1005.733333pt;}
.y5{bottom:1006.693333pt;}
.yff{bottom:1011.813333pt;}
.yb0{bottom:1014.053333pt;}
.yd1{bottom:1020.640000pt;}
.y163{bottom:1021.920000pt;}
.y4{bottom:1023.040000pt;}
.y4d{bottom:1027.840000pt;}
.y83{bottom:1029.920000pt;}
.y3{bottom:1036.640000pt;}
.y162{bottom:1037.920000pt;}
.yd0{bottom:1041.920000pt;}
.y4c{bottom:1043.840000pt;}
.y82{bottom:1045.920000pt;}
.y2{bottom:1050.240000pt;}
.y4a{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.ha{height:31.406250pt;}
.h12{height:33.515625pt;}
.h11{height:36.305625pt;}
.h5{height:42.084375pt;}
.hd{height:45.946667pt;}
.h13{height:47.085938pt;}
.h6{height:47.109375pt;}
.hb{height:48.375000pt;}
.hf{height:49.336436pt;}
.h9{height:53.370000pt;}
.h10{height:54.598989pt;}
.h2{height:57.787500pt;}
.h4{height:58.563750pt;}
.h7{height:61.920000pt;}
.h3{height:62.812500pt;}
.he{height:64.500000pt;}
.h8{height:75.465000pt;}
.hc{height:147.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x5{left:48.000000pt;}
.x8{left:64.801333pt;}
.xb{left:72.000000pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.xc{left:96.032000pt;}
.x10{left:195.386667pt;}
.x1{left:233.466667pt;}
.x2{left:272.706667pt;}
.x4{left:295.746667pt;}
.x3{left:313.826667pt;}
.xf{left:420.893333pt;}
.xe{left:444.893333pt;}
.x11{left:457.533333pt;}
.xd{left:468.893333pt;}
.x7{left:739.200000pt;}
}




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