
    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_04a73e71aea667137ac96593.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0939099d71a61d473eebdbeb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aef7ad0f60f2410ee6e991f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.823730;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_b4fb00ea78ea3d0c7ec413ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_82cc93ecacdee51a27eb0c57.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_ed2b238a1897811d57fa6ab2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8cc8498c1a5b673e51bec75.woff2')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_517f2bfd80af186750a11926.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_dd459e4df22af22e8c572fff.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ebc5b24a8f61360933229874.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lse{letter-spacing:-2.736000px;}
.ls11{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.296000px;}
.ls21{letter-spacing:-1.254000px;}
.ls2e{letter-spacing:-1.206000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.449400px;}
.ls12{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.250800px;}
.ls5{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.023040px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.234600px;}
.ls2c{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.495600px;}
.lsc{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.972000px;}
.ls17{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.188000px;}
.ls19{letter-spacing:1.296000px;}
.ls1d{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.560000px;}
.ls8{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.lsd{letter-spacing:2.160000px;}
.ls1c{letter-spacing:3.600000px;}
.ls2{letter-spacing:6.480000px;}
.ls29{letter-spacing:9.360000px;}
.ls15{letter-spacing:9.540000px;}
.ls28{letter-spacing:18.000000px;}
.ls25{letter-spacing:26.640000px;}
.lsf{letter-spacing:33.264000px;}
.ls2b{letter-spacing:46.800000px;}
.ls9{letter-spacing:113.904000px;}
.lsb{letter-spacing:122.664000px;}
.ls7{letter-spacing:134.064000px;}
.ls1{letter-spacing:154.224000px;}
.ls22{letter-spacing:193.692000px;}
.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;}
}
.ws1b{word-spacing:-69.120000px;}
.ws17{word-spacing:-54.720000px;}
.ws5{word-spacing:-19.584000px;}
.ws12{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.296000px;}
.wse{word-spacing:-19.152000px;}
.ws13{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.504000px;}
.ws1f{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.775600px;}
.wsa{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.496000px;}
.ws11{word-spacing:-17.352000px;}
.ws14{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.256960px;}
.wsc{word-spacing:-17.208000px;}
.ws10{word-spacing:-17.064000px;}
.ws1d{word-spacing:-16.830600px;}
.ws6{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.264000px;}
.ws18{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.068000px;}
.ws19{word-spacing:-12.426000px;}
.ws22{word-spacing:-12.114600px;}
.wsd{word-spacing:-11.880000px;}
.ws20{word-spacing:-11.629200px;}
.ws21{word-spacing:-10.674000px;}
.ws1c{word-spacing:-0.069120px;}
.ws0{word-spacing:0.000000px;}
._22{margin-left:-16.440000px;}
._21{margin-left:-14.782080px;}
._26{margin-left:-13.343520px;}
._1b{margin-left:-12.171360px;}
._25{margin-left:-10.868640px;}
._1d{margin-left:-8.666880px;}
._23{margin-left:-6.757440px;}
._1e{margin-left:-4.720320px;}
._14{margin-left:-3.605760px;}
._3{margin-left:-2.422080px;}
._2{margin-left:-1.085760px;}
._0{width:1.085760px;}
._1{width:2.192160px;}
._4{width:3.198240px;}
._e{width:4.244640px;}
._12{width:5.728320px;}
._f{width:6.912000px;}
._10{width:8.509440px;}
._13{width:10.162560px;}
._27{width:11.186400px;}
._8{width:12.245760px;}
._9{width:13.608000px;}
._a{width:14.615040px;}
._11{width:16.565760px;}
._38{width:18.083040px;}
._6{width:19.332480px;}
._5{width:20.885760px;}
._7{width:22.317120px;}
._15{width:23.380320px;}
._28{width:24.773760px;}
._29{width:25.922400px;}
._30{width:26.972160px;}
._d{width:28.116480px;}
._b{width:29.523840px;}
._c{width:31.394400px;}
._18{width:32.492160px;}
._17{width:34.227360px;}
._16{width:35.297760px;}
._2e{width:36.359520px;}
._1f{width:37.471680px;}
._36{width:38.544480px;}
._2f{width:40.189920px;}
._2c{width:41.556960px;}
._2a{width:42.946560px;}
._2b{width:43.960320px;}
._2d{width:45.415200px;}
._34{width:46.661760px;}
._35{width:48.429600px;}
._32{width:49.963680px;}
._31{width:51.136320px;}
._1c{width:53.476320px;}
._20{width:56.172000px;}
._43{width:64.978080px;}
._42{width:66.097920px;}
._44{width:67.180320px;}
._1a{width:73.383360px;}
._37{width:80.938560px;}
._40{width:82.048320px;}
._39{width:83.498880px;}
._3a{width:84.504960px;}
._24{width:89.280000px;}
._19{width:103.658880px;}
._3c{width:124.127520px;}
._3b{width:125.216160px;}
._3f{width:150.335520px;}
._3e{width:151.671840px;}
._33{width:193.692000px;}
._41{width:824.445600px;}
._3d{width:876.816000px;}
.fc5{color:rgb(31,73,125);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yba{bottom:6.825000px;}
.yb9{bottom:7.185000px;}
.y117{bottom:7.195500px;}
.ycf{bottom:7.200000px;}
.yc0{bottom:7.230000px;}
.yc4{bottom:7.545000px;}
.yc8{bottom:7.555500px;}
.yce{bottom:7.560000px;}
.yda{bottom:7.590000px;}
.ydf{bottom:7.905000px;}
.y119{bottom:14.760000px;}
.yff{bottom:14.790000px;}
.y101{bottom:17.280000px;}
.yb7{bottom:18.345000px;}
.ycc{bottom:18.405000px;}
.yc2{bottom:18.705000px;}
.y115{bottom:18.709500px;}
.yd1{bottom:18.720000px;}
.yc6{bottom:19.069500px;}
.ydc{bottom:19.110000px;}
.y127{bottom:20.145000px;}
.y12b{bottom:28.425000px;}
.y109{bottom:28.800000px;}
.yb5{bottom:29.505000px;}
.yd7{bottom:29.865000px;}
.yd2{bottom:29.880000px;}
.yca{bottom:29.925000px;}
.yc3{bottom:30.225000px;}
.yc7{bottom:30.229500px;}
.y102{bottom:30.240000px;}
.yd4{bottom:30.255000px;}
.ybe{bottom:30.270000px;}
.y107{bottom:30.285000px;}
.y121{bottom:31.665000px;}
.y12a{bottom:38.505000px;}
.y114{bottom:38.509500px;}
.y10a{bottom:38.520000px;}
.y10d{bottom:39.945000px;}
.y12d{bottom:39.960000px;}
.y112{bottom:39.990000px;}
.y11b{bottom:40.320000px;}
.y104{bottom:40.365000px;}
.yb6{bottom:41.055000px;}
.ybc{bottom:41.430000px;}
.ycb{bottom:41.445000px;}
.ydb{bottom:41.790000px;}
.y11c{bottom:50.040000px;}
.y111{bottom:50.070000px;}
.y11f{bottom:51.465000px;}
.y12f{bottom:51.480000px;}
.yb8{bottom:52.575000px;}
.y10f{bottom:52.905000px;}
.y116{bottom:52.909500px;}
.y10b{bottom:52.920000px;}
.ybd{bottom:52.950000px;}
.ycd{bottom:52.965000px;}
.y124{bottom:53.265000px;}
.yd5{bottom:53.295000px;}
.yd9{bottom:53.310000px;}
.y106{bottom:53.325000px;}
.y1d{bottom:57.600000px;}
.y126{bottom:59.790000px;}
.y120{bottom:71.625000px;}
.y10e{bottom:75.615000px;}
.y128{bottom:75.630000px;}
.y132{bottom:75.645000px;}
.y11d{bottom:75.960000px;}
.y123{bottom:75.975000px;}
.ybf{bottom:75.990000px;}
.y105{bottom:76.005000px;}
.y1c{bottom:77.400000px;}
.y122{bottom:98.655000px;}
.y130{bottom:98.670000px;}
.y65{bottom:132.516000px;}
.y85{bottom:133.956000px;}
.y113{bottom:135.040500px;}
.yc5{bottom:135.760500px;}
.y13b{bottom:142.236000px;}
.yb0{bottom:152.310000px;}
.y3a{bottom:153.030000px;}
.y98{bottom:154.110000px;}
.y153{bottom:154.470000px;}
.y50{bottom:155.910000px;}
.y99{bottom:156.270000px;}
.y1b{bottom:161.670000px;}
.yfc{bottom:163.470000px;}
.y64{bottom:163.830000px;}
.y84{bottom:164.910000px;}
.y13a{bottom:173.550000px;}
.yc1{bottom:182.205000px;}
.yaf{bottom:183.270000px;}
.yec{bottom:183.630000px;}
.y39{bottom:183.990000px;}
.y97{bottom:185.430000px;}
.y4f{bottom:186.870000px;}
.y8f{bottom:187.230000px;}
.yfb{bottom:194.430000px;}
.y63{bottom:194.790000px;}
.y83{bottom:196.230000px;}
.y1a{bottom:197.670000px;}
.y110{bottom:204.165000px;}
.y139{bottom:204.510000px;}
.yae{bottom:214.230000px;}
.y38{bottom:214.950000px;}
.y96{bottom:216.390000px;}
.y14e{bottom:217.830000px;}
.y4e{bottom:218.190000px;}
.y8e{bottom:218.550000px;}
.y62{bottom:225.750000px;}
.y82{bottom:227.190000px;}
.ybb{bottom:228.645000px;}
.y19{bottom:234.030000px;}
.y138{bottom:235.515000px;}
.yad{bottom:245.595000px;}
.y37{bottom:245.955000px;}
.y95{bottom:247.395000px;}
.y14d{bottom:248.835000px;}
.y4d{bottom:249.195000px;}
.y8d{bottom:249.555000px;}
.y61{bottom:256.755000px;}
.y81{bottom:258.195000px;}
.y137{bottom:266.475000px;}
.y18{bottom:270.435000px;}
.yac{bottom:276.555000px;}
.yeb{bottom:276.915000px;}
.y36{bottom:277.275000px;}
.y94{bottom:278.355000px;}
.y149{bottom:279.435000px;}
.y4c{bottom:280.155000px;}
.y8c{bottom:280.515000px;}
.yfa{bottom:287.715000px;}
.y60{bottom:288.075000px;}
.y80{bottom:289.155000px;}
.y10c{bottom:296.370000px;}
.y136{bottom:297.795000px;}
.y17{bottom:306.435000px;}
.yab{bottom:307.515000px;}
.yea{bottom:307.875000px;}
.y35{bottom:308.235000px;}
.y93{bottom:309.675000px;}
.y4b{bottom:311.115000px;}
.y8b{bottom:311.475000px;}
.yf9{bottom:318.675000px;}
.y5f{bottom:319.035000px;}
.y7f{bottom:320.475000px;}
.yb4{bottom:320.850000px;}
.y135{bottom:328.755000px;}
.yaa{bottom:338.475000px;}
.y34{bottom:339.195000px;}
.y92{bottom:340.635000px;}
.y14c{bottom:342.075000px;}
.y4a{bottom:342.435000px;}
.y16{bottom:342.795000px;}
.y5e{bottom:349.995000px;}
.y7e{bottom:351.435000px;}
.y134{bottom:359.745000px;}
.ya9{bottom:369.825000px;}
.y33{bottom:370.185000px;}
.y148{bottom:371.625000px;}
.y91{bottom:372.705000px;}
.y14b{bottom:373.065000px;}
.y49{bottom:373.425000px;}
.y8a{bottom:373.785000px;}
.y15{bottom:378.825000px;}
.y5d{bottom:380.985000px;}
.y7d{bottom:382.425000px;}
.y133{bottom:387.105000px;}
.y108{bottom:388.185000px;}
.ya8{bottom:400.785000px;}
.ye9{bottom:401.145000px;}
.y32{bottom:401.505000px;}
.y147{bottom:402.585000px;}
.y48{bottom:404.385000px;}
.y89{bottom:404.745000px;}
.yf8{bottom:411.945000px;}
.y5c{bottom:412.305000px;}
.y7c{bottom:413.385000px;}
.y14{bottom:415.185000px;}
.y131{bottom:425.985000px;}
.ya7{bottom:431.745000px;}
.ye8{bottom:432.105000px;}
.y31{bottom:432.465000px;}
.y146{bottom:433.905000px;}
.y47{bottom:435.345000px;}
.y88{bottom:435.705000px;}
.yf7{bottom:442.905000px;}
.y5b{bottom:443.265000px;}
.y13{bottom:451.545000px;}
.y103{bottom:457.305000px;}
.ya6{bottom:462.705000px;}
.y30{bottom:463.425000px;}
.y145{bottom:464.865000px;}
.y14a{bottom:466.305000px;}
.y46{bottom:466.665000px;}
.y87{bottom:467.025000px;}
.y7b{bottom:473.505000px;}
.y5a{bottom:474.225000px;}
.y12{bottom:487.590000px;}
.y2f{bottom:494.430000px;}
.ya5{bottom:494.790000px;}
.y144{bottom:495.870000px;}
.yb1{bottom:497.670000px;}
.y45{bottom:498.030000px;}
.y7a{bottom:504.510000px;}
.y59{bottom:505.230000px;}
.y12e{bottom:517.830000px;}
.y11{bottom:523.950000px;}
.ye7{bottom:525.390000px;}
.y2e{bottom:525.750000px;}
.ya4{bottom:526.830000px;}
.y143{bottom:527.910000px;}
.y44{bottom:528.990000px;}
.y79{bottom:535.470000px;}
.yf6{bottom:536.190000px;}
.y58{bottom:536.550000px;}
.y100{bottom:549.510000px;}
.ye6{bottom:556.350000px;}
.y2d{bottom:556.710000px;}
.ya3{bottom:558.150000px;}
.y43{bottom:559.950000px;}
.y10{bottom:560.310000px;}
.y78{bottom:566.430000px;}
.yf5{bottom:567.150000px;}
.y57{bottom:567.510000px;}
.ye5{bottom:583.710000px;}
.y2c{bottom:587.670000px;}
.ya2{bottom:589.110000px;}
.y42{bottom:590.910000px;}
.yfe{bottom:595.950000px;}
.yf{bottom:596.310000px;}
.y77{bottom:597.780000px;}
.y56{bottom:598.500000px;}
.ye4{bottom:608.220000px;}
.y2b{bottom:618.660000px;}
.ya1{bottom:620.100000px;}
.y41{bottom:622.260000px;}
.ye3{bottom:622.620000px;}
.y76{bottom:628.740000px;}
.y55{bottom:629.460000px;}
.ye{bottom:632.340000px;}
.y12c{bottom:632.700000px;}
.ye2{bottom:647.100000px;}
.y2a{bottom:649.980000px;}
.ya0{bottom:651.060000px;}
.y40{bottom:653.220000px;}
.y75{bottom:659.700000px;}
.yf4{bottom:660.420000px;}
.y54{bottom:660.780000px;}
.y67{bottom:661.140000px;}
.yd{bottom:668.340000px;}
.y29{bottom:680.940000px;}
.y9f{bottom:682.380000px;}
.y3f{bottom:684.180000px;}
.y74{bottom:690.660000px;}
.yf3{bottom:691.380000px;}
.y53{bottom:692.100000px;}
.ye1{bottom:693.180000px;}
.yc{bottom:704.700000px;}
.y28{bottom:711.900000px;}
.y9e{bottom:713.340000px;}
.y3e{bottom:715.140000px;}
.y66{bottom:719.490000px;}
.y73{bottom:722.010000px;}
.yf2{bottom:722.730000px;}
.y52{bottom:723.090000px;}
.y129{bottom:724.905000px;}
.ye0{bottom:739.665000px;}
.yb{bottom:741.090000px;}
.y27{bottom:742.890000px;}
.y9d{bottom:744.330000px;}
.yfd{bottom:746.130000px;}
.y3d{bottom:746.490000px;}
.y51{bottom:750.810000px;}
.y72{bottom:752.970000px;}
.yf1{bottom:753.690000px;}
.y9c{bottom:775.290000px;}
.y26{bottom:776.010000px;}
.ya{bottom:777.090000px;}
.y3c{bottom:777.450000px;}
.y71{bottom:783.930000px;}
.yf0{bottom:784.650000px;}
.yde{bottom:786.105000px;}
.y125{bottom:794.025000px;}
.y9b{bottom:806.610000px;}
.y25{bottom:806.970000px;}
.y3b{bottom:808.410000px;}
.ydd{bottom:810.585000px;}
.y9{bottom:813.450000px;}
.y70{bottom:814.890000px;}
.yef{bottom:815.610000px;}
.yd8{bottom:834.705000px;}
.y152{bottom:837.570000px;}
.y9a{bottom:838.290000px;}
.y24{bottom:839.370000px;}
.y6f{bottom:846.255000px;}
.yee{bottom:846.975000px;}
.y8{bottom:855.255000px;}
.y151{bottom:868.575000px;}
.y23{bottom:870.735000px;}
.y6e{bottom:877.215000px;}
.y142{bottom:877.935000px;}
.y11e{bottom:885.870000px;}
.y7{bottom:893.775000px;}
.y150{bottom:899.535000px;}
.yed{bottom:901.335000px;}
.y22{bottom:901.695000px;}
.yd6{bottom:904.230000px;}
.y6d{bottom:908.175000px;}
.y141{bottom:908.895000px;}
.y14f{bottom:931.575000px;}
.y6{bottom:932.655000px;}
.y6c{bottom:939.135000px;}
.y140{bottom:939.855000px;}
.yd3{bottom:950.310000px;}
.y21{bottom:963.645000px;}
.y6b{bottom:970.485000px;}
.y13f{bottom:971.205000px;}
.y5{bottom:971.565000px;}
.y20{bottom:994.965000px;}
.y11a{bottom:1000.725000px;}
.y6a{bottom:1001.445000px;}
.y13e{bottom:1002.165000px;}
.y4{bottom:1010.445000px;}
.yd0{bottom:1019.805000px;}
.yb3{bottom:1025.565000px;}
.y1f{bottom:1025.925000px;}
.y69{bottom:1032.405000px;}
.y13d{bottom:1033.125000px;}
.y3{bottom:1049.325000px;}
.y68{bottom:1055.805000px;}
.yb2{bottom:1056.525000px;}
.y1e{bottom:1056.885000px;}
.y13c{bottom:1064.085000px;}
.yc9{bottom:1065.885000px;}
.y86{bottom:1087.530000px;}
.y2{bottom:1087.890000px;}
.y118{bottom:1092.930000px;}
.y1{bottom:1118.850000px;}
.y90{bottom:1119.210000px;}
.h16{height:23.385000px;}
.h17{height:23.745000px;}
.h1a{height:23.760000px;}
.h27{height:41.745000px;}
.h1f{height:41.790000px;}
.h6{height:45.184219px;}
.h13{height:45.345000px;}
.h19{height:45.360000px;}
.h10{height:45.705000px;}
.h11{height:45.715500px;}
.h18{height:45.756000px;}
.h22{height:47.992500px;}
.h1d{height:49.992188px;}
.h9{height:53.704687px;}
.h1c{height:55.147500px;}
.h2d{height:59.357813px;}
.h1b{height:60.952500px;}
.hb{height:64.546875px;}
.ha{height:65.010937px;}
.h23{height:67.803750px;}
.hf{height:67.837500px;}
.h24{height:68.385000px;}
.h26{height:68.395500px;}
.hc{height:68.400000px;}
.h14{height:68.760000px;}
.h15{height:68.781000px;}
.h12{height:68.790000px;}
.hd{height:69.660000px;}
.h1e{height:70.628906px;}
.h5{height:70.664062px;}
.h20{height:71.044468px;}
.h2{height:72.562500px;}
.h7{height:74.953125px;}
.h8{height:79.758281px;}
.h4{height:81.970312px;}
.h3{height:84.172500px;}
.h25{height:91.080000px;}
.h29{height:91.101000px;}
.h2c{height:91.110000px;}
.he{height:91.461000px;}
.h21{height:91.470000px;}
.h2a{height:91.476000px;}
.h28{height:114.120000px;}
.h2b{height:114.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:32.025000px;}
.w4{width:64.110000px;}
.w5{width:64.470000px;}
.w9{width:86.430000px;}
.w7{width:90.381000px;}
.w6{width:90.396000px;}
.w8{width:96.840000px;}
.w2{width:108.000000px;}
.wa{width:133.560000px;}
.wb{width:146.952000px;}
.wc{width:366.615000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:1.440000px;}
.x1e{left:3.225000px;}
.x14{left:4.300500px;}
.x21{left:5.745000px;}
.x22{left:6.825000px;}
.x3b{left:8.640000px;}
.x19{left:10.440000px;}
.x2c{left:11.880000px;}
.x27{left:12.945000px;}
.x24{left:14.400000px;}
.x1f{left:16.185000px;}
.x2f{left:17.265000px;}
.x1b{left:18.360000px;}
.x30{left:19.785000px;}
.x1c{left:21.240000px;}
.x28{left:23.025000px;}
.x29{left:24.480000px;}
.x2b{left:25.545000px;}
.x25{left:27.360000px;}
.x2e{left:28.785000px;}
.x39{left:33.100500px;}
.x2a{left:34.200000px;}
.x3a{left:36.000000px;}
.x2d{left:38.145000px;}
.x3c{left:39.220500px;}
.x26{left:40.680000px;}
.x43{left:43.920000px;}
.x40{left:45.340500px;}
.x3e{left:47.565000px;}
.x33{left:55.125000px;}
.x35{left:58.680000px;}
.x44{left:64.440000px;}
.x3d{left:84.630000px;}
.x38{left:94.350000px;}
.x3f{left:116.670000px;}
.x36{left:122.430000px;}
.x31{left:144.094500px;}
.x1{left:149.112000px;}
.x42{left:151.590000px;}
.x3{left:152.715000px;}
.x37{left:155.550000px;}
.x41{left:157.350000px;}
.xf{left:165.675000px;}
.x2{left:167.835000px;}
.xd{left:176.115000px;}
.x10{left:182.235000px;}
.xa{left:202.035000px;}
.x11{left:203.115000px;}
.x13{left:207.075000px;}
.x45{left:212.835000px;}
.xb{left:230.145000px;}
.x6{left:238.065000px;}
.x15{left:257.505000px;}
.x32{left:278.025000px;}
.x17{left:290.265000px;}
.x7{left:300.345000px;}
.x5{left:323.070000px;}
.x18{left:355.110000px;}
.x1a{left:420.300000px;}
.x34{left:425.340000px;}
.x8{left:446.940000px;}
.x12{left:458.820000px;}
.xe{left:460.260000px;}
.xc{left:462.780000px;}
.x9{left:465.300000px;}
.x4{left:467.820000px;}
.x1d{left:511.425000px;}
.x20{left:602.550000px;}
.x23{left:700.125000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lse{letter-spacing:-2.432000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.152000pt;}
.ls21{letter-spacing:-1.114667pt;}
.ls2e{letter-spacing:-1.072000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.399467pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.222933pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.020480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.208533pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.440533pt;}
.lsc{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.864000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.056000pt;}
.ls19{letter-spacing:1.152000pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.386667pt;}
.ls8{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls29{letter-spacing:8.320000pt;}
.ls15{letter-spacing:8.480000pt;}
.ls28{letter-spacing:16.000000pt;}
.ls25{letter-spacing:23.680000pt;}
.lsf{letter-spacing:29.568000pt;}
.ls2b{letter-spacing:41.600000pt;}
.ls9{letter-spacing:101.248000pt;}
.lsb{letter-spacing:109.034667pt;}
.ls7{letter-spacing:119.168000pt;}
.ls1{letter-spacing:137.088000pt;}
.ls22{letter-spacing:172.170667pt;}
.ws1b{word-spacing:-61.440000pt;}
.ws17{word-spacing:-48.640000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws12{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.152000pt;}
.wse{word-spacing:-17.024000pt;}
.ws13{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws1f{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.800533pt;}
.wsa{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.552000pt;}
.ws11{word-spacing:-15.424000pt;}
.ws14{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.339520pt;}
.wsc{word-spacing:-15.296000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws1d{word-spacing:-14.960533pt;}
.ws6{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.568000pt;}
.ws18{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.616000pt;}
.ws19{word-spacing:-11.045333pt;}
.ws22{word-spacing:-10.768533pt;}
.wsd{word-spacing:-10.560000pt;}
.ws20{word-spacing:-10.337067pt;}
.ws21{word-spacing:-9.488000pt;}
.ws1c{word-spacing:-0.061440pt;}
.ws0{word-spacing:0.000000pt;}
._22{margin-left:-14.613333pt;}
._21{margin-left:-13.139627pt;}
._26{margin-left:-11.860907pt;}
._1b{margin-left:-10.818987pt;}
._25{margin-left:-9.661013pt;}
._1d{margin-left:-7.703893pt;}
._23{margin-left:-6.006613pt;}
._1e{margin-left:-4.195840pt;}
._14{margin-left:-3.205120pt;}
._3{margin-left:-2.152960pt;}
._2{margin-left:-0.965120pt;}
._0{width:0.965120pt;}
._1{width:1.948587pt;}
._4{width:2.842880pt;}
._e{width:3.773013pt;}
._12{width:5.091840pt;}
._f{width:6.144000pt;}
._10{width:7.563947pt;}
._13{width:9.033387pt;}
._27{width:9.943467pt;}
._8{width:10.885120pt;}
._9{width:12.096000pt;}
._a{width:12.991147pt;}
._11{width:14.725120pt;}
._38{width:16.073813pt;}
._6{width:17.184427pt;}
._5{width:18.565120pt;}
._7{width:19.837440pt;}
._15{width:20.782507pt;}
._28{width:22.021120pt;}
._29{width:23.042133pt;}
._30{width:23.975253pt;}
._d{width:24.992427pt;}
._b{width:26.243413pt;}
._c{width:27.906133pt;}
._18{width:28.881920pt;}
._17{width:30.424320pt;}
._16{width:31.375787pt;}
._2e{width:32.319573pt;}
._1f{width:33.308160pt;}
._36{width:34.261760pt;}
._2f{width:35.724373pt;}
._2c{width:36.939520pt;}
._2a{width:38.174720pt;}
._2b{width:39.075840pt;}
._2d{width:40.369067pt;}
._34{width:41.477120pt;}
._35{width:43.048533pt;}
._32{width:44.412160pt;}
._31{width:45.454507pt;}
._1c{width:47.534507pt;}
._20{width:49.930667pt;}
._43{width:57.758293pt;}
._42{width:58.753707pt;}
._44{width:59.715840pt;}
._1a{width:65.229653pt;}
._37{width:71.945387pt;}
._40{width:72.931840pt;}
._39{width:74.221227pt;}
._3a{width:75.115520pt;}
._24{width:79.360000pt;}
._19{width:92.141227pt;}
._3c{width:110.335573pt;}
._3b{width:111.303253pt;}
._3f{width:133.631573pt;}
._3e{width:134.819413pt;}
._33{width:172.170667pt;}
._41{width:732.840533pt;}
._3d{width:779.392000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:6.066667pt;}
.yb9{bottom:6.386667pt;}
.y117{bottom:6.396000pt;}
.ycf{bottom:6.400000pt;}
.yc0{bottom:6.426667pt;}
.yc4{bottom:6.706667pt;}
.yc8{bottom:6.716000pt;}
.yce{bottom:6.720000pt;}
.yda{bottom:6.746667pt;}
.ydf{bottom:7.026667pt;}
.y119{bottom:13.120000pt;}
.yff{bottom:13.146667pt;}
.y101{bottom:15.360000pt;}
.yb7{bottom:16.306667pt;}
.ycc{bottom:16.360000pt;}
.yc2{bottom:16.626667pt;}
.y115{bottom:16.630667pt;}
.yd1{bottom:16.640000pt;}
.yc6{bottom:16.950667pt;}
.ydc{bottom:16.986667pt;}
.y127{bottom:17.906667pt;}
.y12b{bottom:25.266667pt;}
.y109{bottom:25.600000pt;}
.yb5{bottom:26.226667pt;}
.yd7{bottom:26.546667pt;}
.yd2{bottom:26.560000pt;}
.yca{bottom:26.600000pt;}
.yc3{bottom:26.866667pt;}
.yc7{bottom:26.870667pt;}
.y102{bottom:26.880000pt;}
.yd4{bottom:26.893333pt;}
.ybe{bottom:26.906667pt;}
.y107{bottom:26.920000pt;}
.y121{bottom:28.146667pt;}
.y12a{bottom:34.226667pt;}
.y114{bottom:34.230667pt;}
.y10a{bottom:34.240000pt;}
.y10d{bottom:35.506667pt;}
.y12d{bottom:35.520000pt;}
.y112{bottom:35.546667pt;}
.y11b{bottom:35.840000pt;}
.y104{bottom:35.880000pt;}
.yb6{bottom:36.493333pt;}
.ybc{bottom:36.826667pt;}
.ycb{bottom:36.840000pt;}
.ydb{bottom:37.146667pt;}
.y11c{bottom:44.480000pt;}
.y111{bottom:44.506667pt;}
.y11f{bottom:45.746667pt;}
.y12f{bottom:45.760000pt;}
.yb8{bottom:46.733333pt;}
.y10f{bottom:47.026667pt;}
.y116{bottom:47.030667pt;}
.y10b{bottom:47.040000pt;}
.ybd{bottom:47.066667pt;}
.ycd{bottom:47.080000pt;}
.y124{bottom:47.346667pt;}
.yd5{bottom:47.373333pt;}
.yd9{bottom:47.386667pt;}
.y106{bottom:47.400000pt;}
.y1d{bottom:51.200000pt;}
.y126{bottom:53.146667pt;}
.y120{bottom:63.666667pt;}
.y10e{bottom:67.213333pt;}
.y128{bottom:67.226667pt;}
.y132{bottom:67.240000pt;}
.y11d{bottom:67.520000pt;}
.y123{bottom:67.533333pt;}
.ybf{bottom:67.546667pt;}
.y105{bottom:67.560000pt;}
.y1c{bottom:68.800000pt;}
.y122{bottom:87.693333pt;}
.y130{bottom:87.706667pt;}
.y65{bottom:117.792000pt;}
.y85{bottom:119.072000pt;}
.y113{bottom:120.036000pt;}
.yc5{bottom:120.676000pt;}
.y13b{bottom:126.432000pt;}
.yb0{bottom:135.386667pt;}
.y3a{bottom:136.026667pt;}
.y98{bottom:136.986667pt;}
.y153{bottom:137.306667pt;}
.y50{bottom:138.586667pt;}
.y99{bottom:138.906667pt;}
.y1b{bottom:143.706667pt;}
.yfc{bottom:145.306667pt;}
.y64{bottom:145.626667pt;}
.y84{bottom:146.586667pt;}
.y13a{bottom:154.266667pt;}
.yc1{bottom:161.960000pt;}
.yaf{bottom:162.906667pt;}
.yec{bottom:163.226667pt;}
.y39{bottom:163.546667pt;}
.y97{bottom:164.826667pt;}
.y4f{bottom:166.106667pt;}
.y8f{bottom:166.426667pt;}
.yfb{bottom:172.826667pt;}
.y63{bottom:173.146667pt;}
.y83{bottom:174.426667pt;}
.y1a{bottom:175.706667pt;}
.y110{bottom:181.480000pt;}
.y139{bottom:181.786667pt;}
.yae{bottom:190.426667pt;}
.y38{bottom:191.066667pt;}
.y96{bottom:192.346667pt;}
.y14e{bottom:193.626667pt;}
.y4e{bottom:193.946667pt;}
.y8e{bottom:194.266667pt;}
.y62{bottom:200.666667pt;}
.y82{bottom:201.946667pt;}
.ybb{bottom:203.240000pt;}
.y19{bottom:208.026667pt;}
.y138{bottom:209.346667pt;}
.yad{bottom:218.306667pt;}
.y37{bottom:218.626667pt;}
.y95{bottom:219.906667pt;}
.y14d{bottom:221.186667pt;}
.y4d{bottom:221.506667pt;}
.y8d{bottom:221.826667pt;}
.y61{bottom:228.226667pt;}
.y81{bottom:229.506667pt;}
.y137{bottom:236.866667pt;}
.y18{bottom:240.386667pt;}
.yac{bottom:245.826667pt;}
.yeb{bottom:246.146667pt;}
.y36{bottom:246.466667pt;}
.y94{bottom:247.426667pt;}
.y149{bottom:248.386667pt;}
.y4c{bottom:249.026667pt;}
.y8c{bottom:249.346667pt;}
.yfa{bottom:255.746667pt;}
.y60{bottom:256.066667pt;}
.y80{bottom:257.026667pt;}
.y10c{bottom:263.440000pt;}
.y136{bottom:264.706667pt;}
.y17{bottom:272.386667pt;}
.yab{bottom:273.346667pt;}
.yea{bottom:273.666667pt;}
.y35{bottom:273.986667pt;}
.y93{bottom:275.266667pt;}
.y4b{bottom:276.546667pt;}
.y8b{bottom:276.866667pt;}
.yf9{bottom:283.266667pt;}
.y5f{bottom:283.586667pt;}
.y7f{bottom:284.866667pt;}
.yb4{bottom:285.200000pt;}
.y135{bottom:292.226667pt;}
.yaa{bottom:300.866667pt;}
.y34{bottom:301.506667pt;}
.y92{bottom:302.786667pt;}
.y14c{bottom:304.066667pt;}
.y4a{bottom:304.386667pt;}
.y16{bottom:304.706667pt;}
.y5e{bottom:311.106667pt;}
.y7e{bottom:312.386667pt;}
.y134{bottom:319.773333pt;}
.ya9{bottom:328.733333pt;}
.y33{bottom:329.053333pt;}
.y148{bottom:330.333333pt;}
.y91{bottom:331.293333pt;}
.y14b{bottom:331.613333pt;}
.y49{bottom:331.933333pt;}
.y8a{bottom:332.253333pt;}
.y15{bottom:336.733333pt;}
.y5d{bottom:338.653333pt;}
.y7d{bottom:339.933333pt;}
.y133{bottom:344.093333pt;}
.y108{bottom:345.053333pt;}
.ya8{bottom:356.253333pt;}
.ye9{bottom:356.573333pt;}
.y32{bottom:356.893333pt;}
.y147{bottom:357.853333pt;}
.y48{bottom:359.453333pt;}
.y89{bottom:359.773333pt;}
.yf8{bottom:366.173333pt;}
.y5c{bottom:366.493333pt;}
.y7c{bottom:367.453333pt;}
.y14{bottom:369.053333pt;}
.y131{bottom:378.653333pt;}
.ya7{bottom:383.773333pt;}
.ye8{bottom:384.093333pt;}
.y31{bottom:384.413333pt;}
.y146{bottom:385.693333pt;}
.y47{bottom:386.973333pt;}
.y88{bottom:387.293333pt;}
.yf7{bottom:393.693333pt;}
.y5b{bottom:394.013333pt;}
.y13{bottom:401.373333pt;}
.y103{bottom:406.493333pt;}
.ya6{bottom:411.293333pt;}
.y30{bottom:411.933333pt;}
.y145{bottom:413.213333pt;}
.y14a{bottom:414.493333pt;}
.y46{bottom:414.813333pt;}
.y87{bottom:415.133333pt;}
.y7b{bottom:420.893333pt;}
.y5a{bottom:421.533333pt;}
.y12{bottom:433.413333pt;}
.y2f{bottom:439.493333pt;}
.ya5{bottom:439.813333pt;}
.y144{bottom:440.773333pt;}
.yb1{bottom:442.373333pt;}
.y45{bottom:442.693333pt;}
.y7a{bottom:448.453333pt;}
.y59{bottom:449.093333pt;}
.y12e{bottom:460.293333pt;}
.y11{bottom:465.733333pt;}
.ye7{bottom:467.013333pt;}
.y2e{bottom:467.333333pt;}
.ya4{bottom:468.293333pt;}
.y143{bottom:469.253333pt;}
.y44{bottom:470.213333pt;}
.y79{bottom:475.973333pt;}
.yf6{bottom:476.613333pt;}
.y58{bottom:476.933333pt;}
.y100{bottom:488.453333pt;}
.ye6{bottom:494.533333pt;}
.y2d{bottom:494.853333pt;}
.ya3{bottom:496.133333pt;}
.y43{bottom:497.733333pt;}
.y10{bottom:498.053333pt;}
.y78{bottom:503.493333pt;}
.yf5{bottom:504.133333pt;}
.y57{bottom:504.453333pt;}
.ye5{bottom:518.853333pt;}
.y2c{bottom:522.373333pt;}
.ya2{bottom:523.653333pt;}
.y42{bottom:525.253333pt;}
.yfe{bottom:529.733333pt;}
.yf{bottom:530.053333pt;}
.y77{bottom:531.360000pt;}
.y56{bottom:532.000000pt;}
.ye4{bottom:540.640000pt;}
.y2b{bottom:549.920000pt;}
.ya1{bottom:551.200000pt;}
.y41{bottom:553.120000pt;}
.ye3{bottom:553.440000pt;}
.y76{bottom:558.880000pt;}
.y55{bottom:559.520000pt;}
.ye{bottom:562.080000pt;}
.y12c{bottom:562.400000pt;}
.ye2{bottom:575.200000pt;}
.y2a{bottom:577.760000pt;}
.ya0{bottom:578.720000pt;}
.y40{bottom:580.640000pt;}
.y75{bottom:586.400000pt;}
.yf4{bottom:587.040000pt;}
.y54{bottom:587.360000pt;}
.y67{bottom:587.680000pt;}
.yd{bottom:594.080000pt;}
.y29{bottom:605.280000pt;}
.y9f{bottom:606.560000pt;}
.y3f{bottom:608.160000pt;}
.y74{bottom:613.920000pt;}
.yf3{bottom:614.560000pt;}
.y53{bottom:615.200000pt;}
.ye1{bottom:616.160000pt;}
.yc{bottom:626.400000pt;}
.y28{bottom:632.800000pt;}
.y9e{bottom:634.080000pt;}
.y3e{bottom:635.680000pt;}
.y66{bottom:639.546667pt;}
.y73{bottom:641.786667pt;}
.yf2{bottom:642.426667pt;}
.y52{bottom:642.746667pt;}
.y129{bottom:644.360000pt;}
.ye0{bottom:657.480000pt;}
.yb{bottom:658.746667pt;}
.y27{bottom:660.346667pt;}
.y9d{bottom:661.626667pt;}
.yfd{bottom:663.226667pt;}
.y3d{bottom:663.546667pt;}
.y51{bottom:667.386667pt;}
.y72{bottom:669.306667pt;}
.yf1{bottom:669.946667pt;}
.y9c{bottom:689.146667pt;}
.y26{bottom:689.786667pt;}
.ya{bottom:690.746667pt;}
.y3c{bottom:691.066667pt;}
.y71{bottom:696.826667pt;}
.yf0{bottom:697.466667pt;}
.yde{bottom:698.760000pt;}
.y125{bottom:705.800000pt;}
.y9b{bottom:716.986667pt;}
.y25{bottom:717.306667pt;}
.y3b{bottom:718.586667pt;}
.ydd{bottom:720.520000pt;}
.y9{bottom:723.066667pt;}
.y70{bottom:724.346667pt;}
.yef{bottom:724.986667pt;}
.yd8{bottom:741.960000pt;}
.y152{bottom:744.506667pt;}
.y9a{bottom:745.146667pt;}
.y24{bottom:746.106667pt;}
.y6f{bottom:752.226667pt;}
.yee{bottom:752.866667pt;}
.y8{bottom:760.226667pt;}
.y151{bottom:772.066667pt;}
.y23{bottom:773.986667pt;}
.y6e{bottom:779.746667pt;}
.y142{bottom:780.386667pt;}
.y11e{bottom:787.440000pt;}
.y7{bottom:794.466667pt;}
.y150{bottom:799.586667pt;}
.yed{bottom:801.186667pt;}
.y22{bottom:801.506667pt;}
.yd6{bottom:803.760000pt;}
.y6d{bottom:807.266667pt;}
.y141{bottom:807.906667pt;}
.y14f{bottom:828.066667pt;}
.y6{bottom:829.026667pt;}
.y6c{bottom:834.786667pt;}
.y140{bottom:835.426667pt;}
.yd3{bottom:844.720000pt;}
.y21{bottom:856.573333pt;}
.y6b{bottom:862.653333pt;}
.y13f{bottom:863.293333pt;}
.y5{bottom:863.613333pt;}
.y20{bottom:884.413333pt;}
.y11a{bottom:889.533333pt;}
.y6a{bottom:890.173333pt;}
.y13e{bottom:890.813333pt;}
.y4{bottom:898.173333pt;}
.yd0{bottom:906.493333pt;}
.yb3{bottom:911.613333pt;}
.y1f{bottom:911.933333pt;}
.y69{bottom:917.693333pt;}
.y13d{bottom:918.333333pt;}
.y3{bottom:932.733333pt;}
.y68{bottom:938.493333pt;}
.yb2{bottom:939.133333pt;}
.y1e{bottom:939.453333pt;}
.y13c{bottom:945.853333pt;}
.yc9{bottom:947.453333pt;}
.y86{bottom:966.693333pt;}
.y2{bottom:967.013333pt;}
.y118{bottom:971.493333pt;}
.y1{bottom:994.533333pt;}
.y90{bottom:994.853333pt;}
.h16{height:20.786667pt;}
.h17{height:21.106667pt;}
.h1a{height:21.120000pt;}
.h27{height:37.106667pt;}
.h1f{height:37.146667pt;}
.h6{height:40.163750pt;}
.h13{height:40.306667pt;}
.h19{height:40.320000pt;}
.h10{height:40.626667pt;}
.h11{height:40.636000pt;}
.h18{height:40.672000pt;}
.h22{height:42.660000pt;}
.h1d{height:44.437500pt;}
.h9{height:47.737500pt;}
.h1c{height:49.020000pt;}
.h2d{height:52.762500pt;}
.h1b{height:54.180000pt;}
.hb{height:57.375000pt;}
.ha{height:57.787500pt;}
.h23{height:60.270000pt;}
.hf{height:60.300000pt;}
.h24{height:60.786667pt;}
.h26{height:60.796000pt;}
.hc{height:60.800000pt;}
.h14{height:61.120000pt;}
.h15{height:61.138667pt;}
.h12{height:61.146667pt;}
.hd{height:61.920000pt;}
.h1e{height:62.781250pt;}
.h5{height:62.812500pt;}
.h20{height:63.150638pt;}
.h2{height:64.500000pt;}
.h7{height:66.625000pt;}
.h8{height:70.896250pt;}
.h4{height:72.862500pt;}
.h3{height:74.820000pt;}
.h25{height:80.960000pt;}
.h29{height:80.978667pt;}
.h2c{height:80.986667pt;}
.he{height:81.298667pt;}
.h21{height:81.306667pt;}
.h2a{height:81.312000pt;}
.h28{height:101.440000pt;}
.h2b{height:101.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:28.466667pt;}
.w4{width:56.986667pt;}
.w5{width:57.306667pt;}
.w9{width:76.826667pt;}
.w7{width:80.338667pt;}
.w6{width:80.352000pt;}
.w8{width:86.080000pt;}
.w2{width:96.000000pt;}
.wa{width:118.720000pt;}
.wb{width:130.624000pt;}
.wc{width:325.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:1.280000pt;}
.x1e{left:2.866667pt;}
.x14{left:3.822667pt;}
.x21{left:5.106667pt;}
.x22{left:6.066667pt;}
.x3b{left:7.680000pt;}
.x19{left:9.280000pt;}
.x2c{left:10.560000pt;}
.x27{left:11.506667pt;}
.x24{left:12.800000pt;}
.x1f{left:14.386667pt;}
.x2f{left:15.346667pt;}
.x1b{left:16.320000pt;}
.x30{left:17.586667pt;}
.x1c{left:18.880000pt;}
.x28{left:20.466667pt;}
.x29{left:21.760000pt;}
.x2b{left:22.706667pt;}
.x25{left:24.320000pt;}
.x2e{left:25.586667pt;}
.x39{left:29.422667pt;}
.x2a{left:30.400000pt;}
.x3a{left:32.000000pt;}
.x2d{left:33.906667pt;}
.x3c{left:34.862667pt;}
.x26{left:36.160000pt;}
.x43{left:39.040000pt;}
.x40{left:40.302667pt;}
.x3e{left:42.280000pt;}
.x33{left:49.000000pt;}
.x35{left:52.160000pt;}
.x44{left:57.280000pt;}
.x3d{left:75.226667pt;}
.x38{left:83.866667pt;}
.x3f{left:103.706667pt;}
.x36{left:108.826667pt;}
.x31{left:128.084000pt;}
.x1{left:132.544000pt;}
.x42{left:134.746667pt;}
.x3{left:135.746667pt;}
.x37{left:138.266667pt;}
.x41{left:139.866667pt;}
.xf{left:147.266667pt;}
.x2{left:149.186667pt;}
.xd{left:156.546667pt;}
.x10{left:161.986667pt;}
.xa{left:179.586667pt;}
.x11{left:180.546667pt;}
.x13{left:184.066667pt;}
.x45{left:189.186667pt;}
.xb{left:204.573333pt;}
.x6{left:211.613333pt;}
.x15{left:228.893333pt;}
.x32{left:247.133333pt;}
.x17{left:258.013333pt;}
.x7{left:266.973333pt;}
.x5{left:287.173333pt;}
.x18{left:315.653333pt;}
.x1a{left:373.600000pt;}
.x34{left:378.080000pt;}
.x8{left:397.280000pt;}
.x12{left:407.840000pt;}
.xe{left:409.120000pt;}
.xc{left:411.360000pt;}
.x9{left:413.600000pt;}
.x4{left:415.840000pt;}
.x1d{left:454.600000pt;}
.x20{left:535.600000pt;}
.x23{left:622.333333pt;}
}




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