
    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_699312b14f00d72297c3a813.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_acf9a7971511f34af454d156.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a658f9922ec0933f7dd35171.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d220559b18f550b767f61901.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_8b6f555a433de829ae40abca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_531535b8d2c3a374c7165c36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_0adf3ea82737eced96fa7f12.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_9e6039a3ced96523cf5e088d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_83500b1992460a54b64de3f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_5d061c18a92cf0207334924a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:44.654400px;}
.ls3{letter-spacing:-3.187440px;}
.ls2{letter-spacing:-3.019680px;}
.ls5{letter-spacing:-2.684160px;}
.ls4{letter-spacing:-2.516400px;}
.ls24{letter-spacing:-1.059840px;}
.ls2e{letter-spacing:-0.993600px;}
.ls1c{letter-spacing:-0.861120px;}
.ls8{letter-spacing:-0.758160px;}
.ls9{letter-spacing:-0.673920px;}
.ls16{letter-spacing:-0.463680px;}
.ls18{letter-spacing:-0.397440px;}
.ls7{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.264960px;}
.ls20{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.132480px;}
.ls6{letter-spacing:-0.084240px;}
.ls14{letter-spacing:-0.077760px;}
.ls21{letter-spacing:-0.066240px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.264840px;}
.ls10{letter-spacing:0.264960px;}
.lsf{letter-spacing:0.284832px;}
.ls27{letter-spacing:0.291456px;}
.ls11{letter-spacing:0.304704px;}
.ls1d{letter-spacing:0.305280px;}
.ls28{letter-spacing:0.311328px;}
.lsa{letter-spacing:0.331200px;}
.ls2c{letter-spacing:0.404064px;}
.ls1a{letter-spacing:0.417312px;}
.ls1b{letter-spacing:0.563040px;}
.ls29{letter-spacing:0.602784px;}
.ls2d{letter-spacing:0.609408px;}
.ls2b{letter-spacing:0.748512px;}
.lsb{letter-spacing:21.648384px;}
.ls22{letter-spacing:50.011200px;}
.ls2a{letter-spacing:50.673600px;}
.lsd{letter-spacing:59.345280px;}
.lse{letter-spacing:59.351040px;}
.ls23{letter-spacing:62.928000px;}
.ls25{letter-spacing:357.431040px;}
.ls26{letter-spacing:849.029760px;}
.ls19{letter-spacing:1139.328000px;}
.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;}
}
.ws24{word-spacing:-66.372480px;}
.ws11{word-spacing:-66.240000px;}
.ws25{word-spacing:-66.173760px;}
.ws20{word-spacing:-66.041280px;}
.ws21{word-spacing:-65.908800px;}
.ws0{word-spacing:-46.637280px;}
.ws1{word-spacing:-43.953120px;}
.ws3{word-spacing:-23.334480px;}
.wsf{word-spacing:-21.539520px;}
.ws10{word-spacing:-18.745920px;}
.ws15{word-spacing:-18.679680px;}
.ws1f{word-spacing:-18.414720px;}
.wse{word-spacing:-18.282240px;}
.ws14{word-spacing:-18.149760px;}
.ws12{word-spacing:-18.083520px;}
.ws13{word-spacing:-17.951040px;}
.ws1e{word-spacing:-17.553600px;}
.ws2e{word-spacing:-17.421120px;}
.ws2{word-spacing:-15.012000px;}
.ws22{word-spacing:-14.904000px;}
.ws23{word-spacing:-14.506560px;}
.ws2f{word-spacing:-0.728640px;}
.wsc{word-spacing:-0.336960px;}
.ws30{word-spacing:-0.331200px;}
.ws1b{word-spacing:-0.264960px;}
.wsd{word-spacing:-0.252720px;}
.ws19{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.167760px;}
.ws1a{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.132480px;}
.ws2a{word-spacing:0.198720px;}
.ws29{word-spacing:0.331200px;}
.wsb{word-spacing:0.336960px;}
.ws26{word-spacing:0.397440px;}
.ws9{word-spacing:0.421200px;}
.ws18{word-spacing:0.463680px;}
.ws6{word-spacing:0.503280px;}
.ws1d{word-spacing:0.596160px;}
.ws17{word-spacing:0.662400px;}
.ws2c{word-spacing:0.699840px;}
.ws1c{word-spacing:0.728640px;}
.ws27{word-spacing:0.861120px;}
.wsa{word-spacing:1.095120px;}
.ws28{word-spacing:1.192320px;}
.ws2d{word-spacing:1.391040px;}
.ws5{word-spacing:3.019680px;}
.ws8{word-spacing:3.187440px;}
._1{margin-left:-4.026240px;}
._0{margin-left:-1.845360px;}
._2{width:1.694376px;}
._6{width:3.301608px;}
._7{width:347.561280px;}
._8{width:862.036848px;}
._9{width:889.262640px;}
._3{width:1129.458240px;}
._4{width:1644.728688px;}
._5{width:1671.888240px;}
.fc5{color:rgb(106,192,178);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(29,152,167);}
.fc6{color:rgb(24,124,138);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.420000px;}
.y19{bottom:3.600000px;}
.y82{bottom:3.780000px;}
.yf{bottom:4.500000px;}
.y90{bottom:4.680000px;}
.y91{bottom:22.320000px;}
.y28{bottom:22.500000px;}
.y8f{bottom:23.580000px;}
.yc1{bottom:41.400000px;}
.y94{bottom:41.580000px;}
.y21{bottom:43.560000px;}
.y1f{bottom:44.640000px;}
.yac{bottom:56.696400px;}
.y11{bottom:56.697120px;}
.y59{bottom:60.300000px;}
.ya6{bottom:63.720000px;}
.ya4{bottom:64.980000px;}
.ydb{bottom:70.209360px;}
.y3e{bottom:70.210080px;}
.yd4{bottom:79.380000px;}
.yc4{bottom:98.280000px;}
.yce{bottom:98.460000px;}
.y6d{bottom:100.620000px;}
.y6c{bottom:101.700000px;}
.yd3{bottom:103.680000px;}
.y84{bottom:115.020000px;}
.y62{bottom:118.440000px;}
.y61{bottom:119.700000px;}
.y9{bottom:125.280000px;}
.yd6{bottom:126.180000px;}
.yab{bottom:130.680000px;}
.y8{bottom:135.360000px;}
.y60{bottom:137.160000px;}
.y8a{bottom:138.436560px;}
.yd5{bottom:145.080000px;}
.ye{bottom:147.420000px;}
.yaa{bottom:151.020000px;}
.y128{bottom:152.758080px;}
.ye1{bottom:155.340000px;}
.y7a{bottom:157.140000px;}
.y89{bottom:157.331520px;}
.y67{bottom:159.660000px;}
.y85{bottom:161.820000px;}
.y29{bottom:164.160000px;}
.ya9{bottom:171.360000px;}
.yd{bottom:171.720000px;}
.y88{bottom:177.485040px;}
.y66{bottom:178.740000px;}
.y2c{bottom:179.820000px;}
.y2a{bottom:180.900000px;}
.ya3{bottom:187.740000px;}
.y39{bottom:187.743600px;}
.y127{bottom:190.564560px;}
.yc{bottom:195.840000px;}
.y87{bottom:197.638560px;}
.y65{bottom:197.640000px;}
.ycd{bottom:199.260000px;}
.y6a{bottom:199.800000px;}
.y38{bottom:207.731520px;}
.ya8{bottom:211.326480px;}
.yb{bottom:212.400000px;}
.y97{bottom:216.540000px;}
.y86{bottom:217.626480px;}
.y64{bottom:217.800000px;}
.y69{bottom:218.880000px;}
.yd2{bottom:221.772960px;}
.y32{bottom:225.735120px;}
.y37{bottom:227.885040px;}
.y126{bottom:228.536640px;}
.ya7{bottom:231.480000px;}
.ya5{bottom:233.640000px;}
.ya{bottom:236.520000px;}
.y63{bottom:236.700000px;}
.y68{bottom:237.780000px;}
.yd1{bottom:240.667920px;}
.y31{bottom:244.630080px;}
.y36{bottom:247.872960px;}
.y42{bottom:256.860000px;}
.y40{bottom:257.940000px;}
.yd0{bottom:259.745040px;}
.y30{bottom:264.783600px;}
.y125{bottom:266.508720px;}
.y35{bottom:268.026480px;}
.ya2{bottom:268.920000px;}
.y5d{bottom:273.060000px;}
.ycf{bottom:278.640000px;}
.y2f{bottom:283.678560px;}
.y34{bottom:288.180000px;}
.y96{bottom:289.800000px;}
.y79{bottom:293.040000px;}
.y5f{bottom:295.560000px;}
.y2e{bottom:303.666480px;}
.y124{bottom:304.315200px;}
.y33{bottom:307.082880px;}
.ya1{bottom:312.310080px;}
.ycb{bottom:313.920000px;}
.y5e{bottom:314.460000px;}
.y81{bottom:317.332050px;}
.y2d{bottom:323.820000px;}
.y2b{bottom:326.160000px;}
.y83{bottom:326.700000px;}
.ya0{bottom:331.205040px;}
.y80{bottom:334.256400px;}
.ycc{bottom:336.420000px;}
.y123{bottom:342.287280px;}
.y58{bottom:349.740000px;}
.y9f{bottom:350.100000px;}
.y7f{bottom:353.880000px;}
.y5c{bottom:359.100000px;}
.yf9{bottom:360.000000px;}
.y27{bottom:361.260000px;}
.y9e{bottom:370.288080px;}
.y7e{bottom:371.160000px;}
.yc9{bottom:371.520000px;}
.y5b{bottom:372.060000px;}
.yf8{bottom:379.080000px;}
.y122{bottom:380.259360px;}
.y7d{bottom:390.060000px;}
.y9d{bottom:390.441600px;}
.y5a{bottom:391.140000px;}
.yca{bottom:394.020000px;}
.y26{bottom:399.960000px;}
.y7c{bottom:409.136400px;}
.y9c{bottom:409.336560px;}
.yf6{bottom:417.780000px;}
.y121{bottom:418.231440px;}
.y25{bottom:419.760000px;}
.y57{bottom:426.240000px;}
.yc3{bottom:429.300000px;}
.y9b{bottom:429.490080px;}
.y7b{bottom:432.900000px;}
.y24{bottom:439.560000px;}
.yf7{bottom:440.280000px;}
.y9a{bottom:448.385040px;}
.yc8{bottom:451.620000px;}
.y120{bottom:456.203520px;}
.y23{bottom:459.180000px;}
.y3f{bottom:464.940000px;}
.y78{bottom:466.380000px;}
.y99{bottom:467.280000px;}
.y98{bottom:468.545040px;}
.yc7{bottom:470.700000px;}
.yf4{bottom:475.380000px;}
.y1e{bottom:478.980000px;}
.y4e{bottom:487.440000px;}
.yc6{bottom:489.600000px;}
.y11f{bottom:494.175600px;}
.yf5{bottom:497.880000px;}
.y22{bottom:502.380000px;}
.y20{bottom:504.720000px;}
.y77{bottom:505.080000px;}
.y4d{bottom:506.520000px;}
.yc5{bottom:508.680000px;}
.y93{bottom:522.540000px;}
.y4c{bottom:525.420000px;}
.y11e{bottom:531.982080px;}
.yf2{bottom:533.160000px;}
.y1d{bottom:540.000000px;}
.y76{bottom:543.780000px;}
.y95{bottom:545.040000px;}
.y56{bottom:545.400000px;}
.y4b{bottom:545.580000px;}
.yf3{bottom:555.660000px;}
.y1c{bottom:559.620000px;}
.y4a{bottom:564.480000px;}
.y55{bottom:565.560000px;}
.yc2{bottom:566.280000px;}
.y11d{bottom:569.954160px;}
.y1a{bottom:579.420000px;}
.y92{bottom:580.320000px;}
.y75{bottom:582.480000px;}
.y49{bottom:584.640000px;}
.y54{bottom:585.540000px;}
.yf0{bottom:590.760000px;}
.y10f{bottom:597.071520px;}
.y18{bottom:599.040000px;}
.yc0{bottom:601.560000px;}
.y48{bottom:603.540000px;}
.y53{bottom:605.700000px;}
.y11c{bottom:607.926240px;}
.yf1{bottom:613.260000px;}
.y8e{bottom:620.100000px;}
.y6b{bottom:621.180000px;}
.y47{bottom:623.700000px;}
.y52{bottom:625.860000px;}
.y74{bottom:628.020000px;}
.y10e{bottom:632.344320px;}
.y17{bottom:636.480000px;}
.ybf{bottom:640.080000px;}
.y46{bottom:642.600000px;}
.y71{bottom:644.765040px;}
.y51{bottom:645.840000px;}
.y11b{bottom:645.898320px;}
.y73{bottom:647.100000px;}
.yee{bottom:648.540000px;}
.y10d{bottom:652.680000px;}
.y8d{bottom:659.880000px;}
.y45{bottom:662.760000px;}
.y70{bottom:663.660000px;}
.y50{bottom:666.000000px;}
.y16{bottom:666.368640px;}
.yef{bottom:670.860000px;}
.ybe{bottom:676.792080px;}
.y8c{bottom:679.680000px;}
.y44{bottom:681.660000px;}
.y6f{bottom:683.822880px;}
.y11a{bottom:683.870400px;}
.y4f{bottom:685.080000px;}
.y72{bottom:685.085040px;}
.y10c{bottom:685.268640px;}
.y15{bottom:686.704320px;}
.ybd{bottom:697.127760px;}
.y43{bottom:701.640000px;}
.y6e{bottom:702.900000px;}
.y41{bottom:703.980000px;}
.y10b{bottom:705.604320px;}
.yec{bottom:706.140000px;}
.y14{bottom:707.040000px;}
.y8b{bottom:718.380000px;}
.y119{bottom:721.676880px;}
.ybc{bottom:723.772800px;}
.y10a{bottom:726.122160px;}
.yed{bottom:728.640000px;}
.y13{bottom:734.580000px;}
.y3d{bottom:743.771520px;}
.y109{bottom:746.640000px;}
.ybb{bottom:754.740000px;}
.y118{bottom:759.648960px;}
.yeb{bottom:763.740000px;}
.y3c{bottom:763.759440px;}
.y12{bottom:771.120000px;}
.y108{bottom:779.232960px;}
.ye9{bottom:783.540000px;}
.y3b{bottom:783.912960px;}
.yba{bottom:787.313520px;}
.y117{bottom:797.621040px;}
.y107{bottom:799.568640px;}
.y3a{bottom:804.066480px;}
.yea{bottom:806.040000px;}
.yb9{bottom:807.649200px;}
.y106{bottom:819.904320px;}
.y10{bottom:824.220000px;}
.y116{bottom:835.593120px;}
.yb8{bottom:839.874960px;}
.y105{bottom:840.422160px;}
.ye0{bottom:841.140000px;}
.yb7{bottom:858.769920px;}
.y104{bottom:860.940000px;}
.y7{bottom:862.385760px;}
.ye8{bottom:863.640000px;}
.y115{bottom:873.565200px;}
.ye7{bottom:882.720000px;}
.yb6{bottom:889.737120px;}
.y103{bottom:893.520000px;}
.ye6{bottom:901.620000px;}
.y114{bottom:911.371680px;}
.y102{bottom:913.862160px;}
.y6{bottom:917.830440px;}
.ye5{bottom:920.520000px;}
.yb5{bottom:920.704320px;}
.y101{bottom:934.380000px;}
.ye4{bottom:939.600000px;}
.y113{bottom:949.343760px;}
.yb4{bottom:951.837120px;}
.y100{bottom:954.900000px;}
.ye3{bottom:958.500000px;}
.y5{bottom:973.442880px;}
.yff{bottom:975.240000px;}
.ye2{bottom:977.580000px;}
.yb3{bottom:983.880720px;}
.y112{bottom:987.315840px;}
.yfe{bottom:995.759280px;}
.ydf{bottom:1012.680000px;}
.yb2{bottom:1015.924320px;}
.yfd{bottom:1016.277120px;}
.y111{bottom:1025.287920px;}
.y4{bottom:1029.055320px;}
.ydc{bottom:1032.480000px;}
.yfc{bottom:1036.794960px;}
.yb1{bottom:1049.590800px;}
.yde{bottom:1054.980000px;}
.y110{bottom:1063.260000px;}
.yfb{bottom:1063.440000px;}
.yb0{bottom:1069.744320px;}
.ydd{bottom:1073.880000px;}
.y3{bottom:1084.500000px;}
.yaf{bottom:1090.262160px;}
.yfa{bottom:1090.800000px;}
.yae{bottom:1110.780000px;}
.yda{bottom:1113.671520px;}
.yd9{bottom:1133.659440px;}
.yad{bottom:1138.320000px;}
.y2{bottom:1141.194240px;}
.yd8{bottom:1153.812960px;}
.yd7{bottom:1173.966480px;}
.y1{bottom:1194.120000px;}
.he{height:18.900000px;}
.h11{height:19.080000px;}
.hd{height:19.081500px;}
.h21{height:19.980000px;}
.h26{height:20.160000px;}
.h17{height:30.422812px;}
.h29{height:37.800000px;}
.h12{height:37.980000px;}
.h15{height:37.981500px;}
.h23{height:39.060000px;}
.h22{height:39.061500px;}
.hc{height:39.313477px;}
.h8{height:39.339844px;}
.h2{height:44.149219px;}
.h1e{height:46.283906px;}
.h1c{height:46.445625px;}
.h1f{height:46.445745px;}
.hf{height:48.224531px;}
.h3{height:48.256875px;}
.h31{height:48.259755px;}
.h28{height:48.288555px;}
.h1a{height:48.612656px;}
.h32{height:56.565326px;}
.hb{height:56.611406px;}
.h2a{height:56.880000px;}
.h2c{height:56.881500px;}
.h24{height:57.058500px;}
.h30{height:57.060000px;}
.h10{height:60.120000px;}
.h7{height:61.370156px;}
.h6{height:69.579844px;}
.h16{height:75.780000px;}
.h27{height:80.460000px;}
.h1d{height:92.911275px;}
.h2e{height:94.860000px;}
.h2b{height:113.760000px;}
.h2d{height:113.940000px;}
.h19{height:117.180000px;}
.h4{height:122.133867px;}
.h18{height:135.180000px;}
.h5{height:144.900000px;}
.h2f{height:170.820000px;}
.h1b{height:172.618500px;}
.h20{height:177.300000px;}
.h13{height:196.380000px;}
.h25{height:232.018500px;}
.h14{height:273.420000px;}
.h9{height:892.980000px;}
.ha{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:142.020000px;}
.wf{width:142.741500px;}
.wc{width:143.100000px;}
.w10{width:216.721500px;}
.wd{width:217.620000px;}
.w9{width:292.320000px;}
.w5{width:292.680000px;}
.wa{width:301.138500px;}
.w6{width:301.860000px;}
.w11{width:350.100000px;}
.we{width:350.460000px;}
.wb{width:477.718500px;}
.w7{width:478.080000px;}
.w2{width:701.820000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w8{width:1072.620000px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x11{left:34.740000px;}
.x6{left:46.620000px;}
.xb{left:56.520000px;}
.x15{left:61.740000px;}
.x1e{left:69.660000px;}
.x18{left:78.300000px;}
.xc{left:84.960000px;}
.x10{left:93.600000px;}
.x5{left:95.040000px;}
.x8{left:103.680000px;}
.x1{left:106.200000px;}
.x20{left:133.209360px;}
.xa{left:144.000000px;}
.x9{left:145.080000px;}
.x23{left:160.268400px;}
.x21{left:187.211520px;}
.x4{left:196.977420px;}
.x22{left:214.254000px;}
.x2{left:217.276380px;}
.x24{left:250.200000px;}
.x26{left:258.300000px;}
.x7{left:317.700000px;}
.xe{left:378.540000px;}
.x16{left:386.640000px;}
.x12{left:413.640000px;}
.x1a{left:425.859120px;}
.x1d{left:427.474800px;}
.x1b{left:436.500000px;}
.x13{left:440.665920px;}
.x3{left:446.436540px;}
.x17{left:451.440000px;}
.x19{left:455.220000px;}
.x25{left:467.820000px;}
.x27{left:475.920000px;}
.x1c{left:488.862720px;}
.x1f{left:631.620000px;}
.xf{left:680.400000px;}
.x14{left:688.500000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:39.692800pt;}
.ls3{letter-spacing:-2.833280pt;}
.ls2{letter-spacing:-2.684160pt;}
.ls5{letter-spacing:-2.385920pt;}
.ls4{letter-spacing:-2.236800pt;}
.ls24{letter-spacing:-0.942080pt;}
.ls2e{letter-spacing:-0.883200pt;}
.ls1c{letter-spacing:-0.765440pt;}
.ls8{letter-spacing:-0.673920pt;}
.ls9{letter-spacing:-0.599040pt;}
.ls16{letter-spacing:-0.412160pt;}
.ls18{letter-spacing:-0.353280pt;}
.ls7{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.235520pt;}
.ls20{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls6{letter-spacing:-0.074880pt;}
.ls14{letter-spacing:-0.069120pt;}
.ls21{letter-spacing:-0.058880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.235413pt;}
.ls10{letter-spacing:0.235520pt;}
.lsf{letter-spacing:0.253184pt;}
.ls27{letter-spacing:0.259072pt;}
.ls11{letter-spacing:0.270848pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls28{letter-spacing:0.276736pt;}
.lsa{letter-spacing:0.294400pt;}
.ls2c{letter-spacing:0.359168pt;}
.ls1a{letter-spacing:0.370944pt;}
.ls1b{letter-spacing:0.500480pt;}
.ls29{letter-spacing:0.535808pt;}
.ls2d{letter-spacing:0.541696pt;}
.ls2b{letter-spacing:0.665344pt;}
.lsb{letter-spacing:19.243008pt;}
.ls22{letter-spacing:44.454400pt;}
.ls2a{letter-spacing:45.043200pt;}
.lsd{letter-spacing:52.751360pt;}
.lse{letter-spacing:52.756480pt;}
.ls23{letter-spacing:55.936000pt;}
.ls25{letter-spacing:317.716480pt;}
.ls26{letter-spacing:754.693120pt;}
.ls19{letter-spacing:1012.736000pt;}
.ws24{word-spacing:-58.997760pt;}
.ws11{word-spacing:-58.880000pt;}
.ws25{word-spacing:-58.821120pt;}
.ws20{word-spacing:-58.703360pt;}
.ws21{word-spacing:-58.585600pt;}
.ws0{word-spacing:-41.455360pt;}
.ws1{word-spacing:-39.069440pt;}
.ws3{word-spacing:-20.741760pt;}
.wsf{word-spacing:-19.146240pt;}
.ws10{word-spacing:-16.663040pt;}
.ws15{word-spacing:-16.604160pt;}
.ws1f{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.250880pt;}
.ws14{word-spacing:-16.133120pt;}
.ws12{word-spacing:-16.074240pt;}
.ws13{word-spacing:-15.956480pt;}
.ws1e{word-spacing:-15.603200pt;}
.ws2e{word-spacing:-15.485440pt;}
.ws2{word-spacing:-13.344000pt;}
.ws22{word-spacing:-13.248000pt;}
.ws23{word-spacing:-12.894720pt;}
.ws2f{word-spacing:-0.647680pt;}
.wsc{word-spacing:-0.299520pt;}
.ws30{word-spacing:-0.294400pt;}
.ws1b{word-spacing:-0.235520pt;}
.wsd{word-spacing:-0.224640pt;}
.ws19{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.149120pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.117760pt;}
.ws2a{word-spacing:0.176640pt;}
.ws29{word-spacing:0.294400pt;}
.wsb{word-spacing:0.299520pt;}
.ws26{word-spacing:0.353280pt;}
.ws9{word-spacing:0.374400pt;}
.ws18{word-spacing:0.412160pt;}
.ws6{word-spacing:0.447360pt;}
.ws1d{word-spacing:0.529920pt;}
.ws17{word-spacing:0.588800pt;}
.ws2c{word-spacing:0.622080pt;}
.ws1c{word-spacing:0.647680pt;}
.ws27{word-spacing:0.765440pt;}
.wsa{word-spacing:0.973440pt;}
.ws28{word-spacing:1.059840pt;}
.ws2d{word-spacing:1.236480pt;}
.ws5{word-spacing:2.684160pt;}
.ws8{word-spacing:2.833280pt;}
._1{margin-left:-3.578880pt;}
._0{margin-left:-1.640320pt;}
._2{width:1.506112pt;}
._6{width:2.934763pt;}
._7{width:308.943360pt;}
._8{width:766.254976pt;}
._9{width:790.455680pt;}
._3{width:1003.962880pt;}
._4{width:1461.981056pt;}
._5{width:1486.122880pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.040000pt;}
.y19{bottom:3.200000pt;}
.y82{bottom:3.360000pt;}
.yf{bottom:4.000000pt;}
.y90{bottom:4.160000pt;}
.y91{bottom:19.840000pt;}
.y28{bottom:20.000000pt;}
.y8f{bottom:20.960000pt;}
.yc1{bottom:36.800000pt;}
.y94{bottom:36.960000pt;}
.y21{bottom:38.720000pt;}
.y1f{bottom:39.680000pt;}
.yac{bottom:50.396800pt;}
.y11{bottom:50.397440pt;}
.y59{bottom:53.600000pt;}
.ya6{bottom:56.640000pt;}
.ya4{bottom:57.760000pt;}
.ydb{bottom:62.408320pt;}
.y3e{bottom:62.408960pt;}
.yd4{bottom:70.560000pt;}
.yc4{bottom:87.360000pt;}
.yce{bottom:87.520000pt;}
.y6d{bottom:89.440000pt;}
.y6c{bottom:90.400000pt;}
.yd3{bottom:92.160000pt;}
.y84{bottom:102.240000pt;}
.y62{bottom:105.280000pt;}
.y61{bottom:106.400000pt;}
.y9{bottom:111.360000pt;}
.yd6{bottom:112.160000pt;}
.yab{bottom:116.160000pt;}
.y8{bottom:120.320000pt;}
.y60{bottom:121.920000pt;}
.y8a{bottom:123.054720pt;}
.yd5{bottom:128.960000pt;}
.ye{bottom:131.040000pt;}
.yaa{bottom:134.240000pt;}
.y128{bottom:135.784960pt;}
.ye1{bottom:138.080000pt;}
.y7a{bottom:139.680000pt;}
.y89{bottom:139.850240pt;}
.y67{bottom:141.920000pt;}
.y85{bottom:143.840000pt;}
.y29{bottom:145.920000pt;}
.ya9{bottom:152.320000pt;}
.yd{bottom:152.640000pt;}
.y88{bottom:157.764480pt;}
.y66{bottom:158.880000pt;}
.y2c{bottom:159.840000pt;}
.y2a{bottom:160.800000pt;}
.ya3{bottom:166.880000pt;}
.y39{bottom:166.883200pt;}
.y127{bottom:169.390720pt;}
.yc{bottom:174.080000pt;}
.y87{bottom:175.678720pt;}
.y65{bottom:175.680000pt;}
.ycd{bottom:177.120000pt;}
.y6a{bottom:177.600000pt;}
.y38{bottom:184.650240pt;}
.ya8{bottom:187.845760pt;}
.yb{bottom:188.800000pt;}
.y97{bottom:192.480000pt;}
.y86{bottom:193.445760pt;}
.y64{bottom:193.600000pt;}
.y69{bottom:194.560000pt;}
.yd2{bottom:197.131520pt;}
.y32{bottom:200.653440pt;}
.y37{bottom:202.564480pt;}
.y126{bottom:203.143680pt;}
.ya7{bottom:205.760000pt;}
.ya5{bottom:207.680000pt;}
.ya{bottom:210.240000pt;}
.y63{bottom:210.400000pt;}
.y68{bottom:211.360000pt;}
.yd1{bottom:213.927040pt;}
.y31{bottom:217.448960pt;}
.y36{bottom:220.331520pt;}
.y42{bottom:228.320000pt;}
.y40{bottom:229.280000pt;}
.yd0{bottom:230.884480pt;}
.y30{bottom:235.363200pt;}
.y125{bottom:236.896640pt;}
.y35{bottom:238.245760pt;}
.ya2{bottom:239.040000pt;}
.y5d{bottom:242.720000pt;}
.ycf{bottom:247.680000pt;}
.y2f{bottom:252.158720pt;}
.y34{bottom:256.160000pt;}
.y96{bottom:257.600000pt;}
.y79{bottom:260.480000pt;}
.y5f{bottom:262.720000pt;}
.y2e{bottom:269.925760pt;}
.y124{bottom:270.502400pt;}
.y33{bottom:272.962560pt;}
.ya1{bottom:277.608960pt;}
.ycb{bottom:279.040000pt;}
.y5e{bottom:279.520000pt;}
.y81{bottom:282.072933pt;}
.y2d{bottom:287.840000pt;}
.y2b{bottom:289.920000pt;}
.y83{bottom:290.400000pt;}
.ya0{bottom:294.404480pt;}
.y80{bottom:297.116800pt;}
.ycc{bottom:299.040000pt;}
.y123{bottom:304.255360pt;}
.y58{bottom:310.880000pt;}
.y9f{bottom:311.200000pt;}
.y7f{bottom:314.560000pt;}
.y5c{bottom:319.200000pt;}
.yf9{bottom:320.000000pt;}
.y27{bottom:321.120000pt;}
.y9e{bottom:329.144960pt;}
.y7e{bottom:329.920000pt;}
.yc9{bottom:330.240000pt;}
.y5b{bottom:330.720000pt;}
.yf8{bottom:336.960000pt;}
.y122{bottom:338.008320pt;}
.y7d{bottom:346.720000pt;}
.y9d{bottom:347.059200pt;}
.y5a{bottom:347.680000pt;}
.yca{bottom:350.240000pt;}
.y26{bottom:355.520000pt;}
.y7c{bottom:363.676800pt;}
.y9c{bottom:363.854720pt;}
.yf6{bottom:371.360000pt;}
.y121{bottom:371.761280pt;}
.y25{bottom:373.120000pt;}
.y57{bottom:378.880000pt;}
.yc3{bottom:381.600000pt;}
.y9b{bottom:381.768960pt;}
.y7b{bottom:384.800000pt;}
.y24{bottom:390.720000pt;}
.yf7{bottom:391.360000pt;}
.y9a{bottom:398.564480pt;}
.yc8{bottom:401.440000pt;}
.y120{bottom:405.514240pt;}
.y23{bottom:408.160000pt;}
.y3f{bottom:413.280000pt;}
.y78{bottom:414.560000pt;}
.y99{bottom:415.360000pt;}
.y98{bottom:416.484480pt;}
.yc7{bottom:418.400000pt;}
.yf4{bottom:422.560000pt;}
.y1e{bottom:425.760000pt;}
.y4e{bottom:433.280000pt;}
.yc6{bottom:435.200000pt;}
.y11f{bottom:439.267200pt;}
.yf5{bottom:442.560000pt;}
.y22{bottom:446.560000pt;}
.y20{bottom:448.640000pt;}
.y77{bottom:448.960000pt;}
.y4d{bottom:450.240000pt;}
.yc5{bottom:452.160000pt;}
.y93{bottom:464.480000pt;}
.y4c{bottom:467.040000pt;}
.y11e{bottom:472.872960pt;}
.yf2{bottom:473.920000pt;}
.y1d{bottom:480.000000pt;}
.y76{bottom:483.360000pt;}
.y95{bottom:484.480000pt;}
.y56{bottom:484.800000pt;}
.y4b{bottom:484.960000pt;}
.yf3{bottom:493.920000pt;}
.y1c{bottom:497.440000pt;}
.y4a{bottom:501.760000pt;}
.y55{bottom:502.720000pt;}
.yc2{bottom:503.360000pt;}
.y11d{bottom:506.625920pt;}
.y1a{bottom:515.040000pt;}
.y92{bottom:515.840000pt;}
.y75{bottom:517.760000pt;}
.y49{bottom:519.680000pt;}
.y54{bottom:520.480000pt;}
.yf0{bottom:525.120000pt;}
.y10f{bottom:530.730240pt;}
.y18{bottom:532.480000pt;}
.yc0{bottom:534.720000pt;}
.y48{bottom:536.480000pt;}
.y53{bottom:538.400000pt;}
.y11c{bottom:540.378880pt;}
.yf1{bottom:545.120000pt;}
.y8e{bottom:551.200000pt;}
.y6b{bottom:552.160000pt;}
.y47{bottom:554.400000pt;}
.y52{bottom:556.320000pt;}
.y74{bottom:558.240000pt;}
.y10e{bottom:562.083840pt;}
.y17{bottom:565.760000pt;}
.ybf{bottom:568.960000pt;}
.y46{bottom:571.200000pt;}
.y71{bottom:573.124480pt;}
.y51{bottom:574.080000pt;}
.y11b{bottom:574.131840pt;}
.y73{bottom:575.200000pt;}
.yee{bottom:576.480000pt;}
.y10d{bottom:580.160000pt;}
.y8d{bottom:586.560000pt;}
.y45{bottom:589.120000pt;}
.y70{bottom:589.920000pt;}
.y50{bottom:592.000000pt;}
.y16{bottom:592.327680pt;}
.yef{bottom:596.320000pt;}
.ybe{bottom:601.592960pt;}
.y8c{bottom:604.160000pt;}
.y44{bottom:605.920000pt;}
.y6f{bottom:607.842560pt;}
.y11a{bottom:607.884800pt;}
.y4f{bottom:608.960000pt;}
.y72{bottom:608.964480pt;}
.y10c{bottom:609.127680pt;}
.y15{bottom:610.403840pt;}
.ybd{bottom:619.669120pt;}
.y43{bottom:623.680000pt;}
.y6e{bottom:624.800000pt;}
.y41{bottom:625.760000pt;}
.y10b{bottom:627.203840pt;}
.yec{bottom:627.680000pt;}
.y14{bottom:628.480000pt;}
.y8b{bottom:638.560000pt;}
.y119{bottom:641.490560pt;}
.ybc{bottom:643.353600pt;}
.y10a{bottom:645.441920pt;}
.yed{bottom:647.680000pt;}
.y13{bottom:652.960000pt;}
.y3d{bottom:661.130240pt;}
.y109{bottom:663.680000pt;}
.ybb{bottom:670.880000pt;}
.y118{bottom:675.243520pt;}
.yeb{bottom:678.880000pt;}
.y3c{bottom:678.897280pt;}
.y12{bottom:685.440000pt;}
.y108{bottom:692.651520pt;}
.ye9{bottom:696.480000pt;}
.y3b{bottom:696.811520pt;}
.yba{bottom:699.834240pt;}
.y117{bottom:708.996480pt;}
.y107{bottom:710.727680pt;}
.y3a{bottom:714.725760pt;}
.yea{bottom:716.480000pt;}
.yb9{bottom:717.910400pt;}
.y106{bottom:728.803840pt;}
.y10{bottom:732.640000pt;}
.y116{bottom:742.749440pt;}
.yb8{bottom:746.555520pt;}
.y105{bottom:747.041920pt;}
.ye0{bottom:747.680000pt;}
.yb7{bottom:763.351040pt;}
.y104{bottom:765.280000pt;}
.y7{bottom:766.565120pt;}
.ye8{bottom:767.680000pt;}
.y115{bottom:776.502400pt;}
.ye7{bottom:784.640000pt;}
.yb6{bottom:790.877440pt;}
.y103{bottom:794.240000pt;}
.ye6{bottom:801.440000pt;}
.y114{bottom:810.108160pt;}
.y102{bottom:812.321920pt;}
.y6{bottom:815.849280pt;}
.ye5{bottom:818.240000pt;}
.yb5{bottom:818.403840pt;}
.y101{bottom:830.560000pt;}
.ye4{bottom:835.200000pt;}
.y113{bottom:843.861120pt;}
.yb4{bottom:846.077440pt;}
.y100{bottom:848.800000pt;}
.ye3{bottom:852.000000pt;}
.y5{bottom:865.282560pt;}
.yff{bottom:866.880000pt;}
.ye2{bottom:868.960000pt;}
.yb3{bottom:874.560640pt;}
.y112{bottom:877.614080pt;}
.yfe{bottom:885.119360pt;}
.ydf{bottom:900.160000pt;}
.yb2{bottom:903.043840pt;}
.yfd{bottom:903.357440pt;}
.y111{bottom:911.367040pt;}
.y4{bottom:914.715840pt;}
.ydc{bottom:917.760000pt;}
.yfc{bottom:921.595520pt;}
.yb1{bottom:932.969600pt;}
.yde{bottom:937.760000pt;}
.y110{bottom:945.120000pt;}
.yfb{bottom:945.280000pt;}
.yb0{bottom:950.883840pt;}
.ydd{bottom:954.560000pt;}
.y3{bottom:964.000000pt;}
.yaf{bottom:969.121920pt;}
.yfa{bottom:969.600000pt;}
.yae{bottom:987.360000pt;}
.yda{bottom:989.930240pt;}
.yd9{bottom:1007.697280pt;}
.yad{bottom:1011.840000pt;}
.y2{bottom:1014.394880pt;}
.yd8{bottom:1025.611520pt;}
.yd7{bottom:1043.525760pt;}
.y1{bottom:1061.440000pt;}
.he{height:16.800000pt;}
.h11{height:16.960000pt;}
.hd{height:16.961333pt;}
.h21{height:17.760000pt;}
.h26{height:17.920000pt;}
.h17{height:27.042500pt;}
.h29{height:33.600000pt;}
.h12{height:33.760000pt;}
.h15{height:33.761333pt;}
.h23{height:34.720000pt;}
.h22{height:34.721333pt;}
.hc{height:34.945312pt;}
.h8{height:34.968750pt;}
.h2{height:39.243750pt;}
.h1e{height:41.141250pt;}
.h1c{height:41.285000pt;}
.h1f{height:41.285107pt;}
.hf{height:42.866250pt;}
.h3{height:42.895000pt;}
.h31{height:42.897560pt;}
.h28{height:42.923160pt;}
.h1a{height:43.211250pt;}
.h32{height:50.280290pt;}
.hb{height:50.321250pt;}
.h2a{height:50.560000pt;}
.h2c{height:50.561333pt;}
.h24{height:50.718667pt;}
.h30{height:50.720000pt;}
.h10{height:53.440000pt;}
.h7{height:54.551250pt;}
.h6{height:61.848750pt;}
.h16{height:67.360000pt;}
.h27{height:71.520000pt;}
.h1d{height:82.587800pt;}
.h2e{height:84.320000pt;}
.h2b{height:101.120000pt;}
.h2d{height:101.280000pt;}
.h19{height:104.160000pt;}
.h4{height:108.563437pt;}
.h18{height:120.160000pt;}
.h5{height:128.800000pt;}
.h2f{height:151.840000pt;}
.h1b{height:153.438667pt;}
.h20{height:157.600000pt;}
.h13{height:174.560000pt;}
.h25{height:206.238667pt;}
.h14{height:243.040000pt;}
.h9{height:793.760000pt;}
.ha{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:126.240000pt;}
.wf{width:126.881333pt;}
.wc{width:127.200000pt;}
.w10{width:192.641333pt;}
.wd{width:193.440000pt;}
.w9{width:259.840000pt;}
.w5{width:260.160000pt;}
.wa{width:267.678667pt;}
.w6{width:268.320000pt;}
.w11{width:311.200000pt;}
.we{width:311.520000pt;}
.wb{width:424.638667pt;}
.w7{width:424.960000pt;}
.w2{width:623.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w8{width:953.440000pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x11{left:30.880000pt;}
.x6{left:41.440000pt;}
.xb{left:50.240000pt;}
.x15{left:54.880000pt;}
.x1e{left:61.920000pt;}
.x18{left:69.600000pt;}
.xc{left:75.520000pt;}
.x10{left:83.200000pt;}
.x5{left:84.480000pt;}
.x8{left:92.160000pt;}
.x1{left:94.400000pt;}
.x20{left:118.408320pt;}
.xa{left:128.000000pt;}
.x9{left:128.960000pt;}
.x23{left:142.460800pt;}
.x21{left:166.410240pt;}
.x4{left:175.091040pt;}
.x22{left:190.448000pt;}
.x2{left:193.134560pt;}
.x24{left:222.400000pt;}
.x26{left:229.600000pt;}
.x7{left:282.400000pt;}
.xe{left:336.480000pt;}
.x16{left:343.680000pt;}
.x12{left:367.680000pt;}
.x1a{left:378.541440pt;}
.x1d{left:379.977600pt;}
.x1b{left:388.000000pt;}
.x13{left:391.703040pt;}
.x3{left:396.832480pt;}
.x17{left:401.280000pt;}
.x19{left:404.640000pt;}
.x25{left:415.840000pt;}
.x27{left:423.040000pt;}
.x1c{left:434.544640pt;}
.x1f{left:561.440000pt;}
.xf{left:604.800000pt;}
.x14{left:612.000000pt;}
}




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