
    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_982e97e41f3e3b6ab5466556.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_809a473883b62152e15e905a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_ffddb33904e358d3839efb45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_e00ef93339135ec3a9380121.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.886719;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_5def1f2ce69ca6cb27e62bca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_e0c62c6356a6d7b1aa4701bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_463250164b5e7fb1a9364398.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.976000px;}
.lsc{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.189600px;}
.ls13{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018720px;}
.ls5{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.208200px;}
.ls0{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.305280px;}
.ls19{letter-spacing:0.305400px;}
.ls20{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.414600px;}
.ls12{letter-spacing:0.530400px;}
.ls1a{letter-spacing:0.612000px;}
.ls1d{letter-spacing:0.613440px;}
.ls1c{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.702000px;}
.lse{letter-spacing:0.979920px;}
.lsd{letter-spacing:1.421280px;}
.ls1e{letter-spacing:2.871360px;}
.ls4{letter-spacing:845.741280px;}
.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;}
}
.wsb{word-spacing:-95.760000px;}
.wsd{word-spacing:-27.323280px;}
.wsf{word-spacing:-27.151680px;}
.ws4{word-spacing:-27.000000px;}
.ws12{word-spacing:-26.829480px;}
.wse{word-spacing:-26.640000px;}
.ws0{word-spacing:-26.621280px;}
.ws1{word-spacing:-26.602560px;}
.wsc{word-spacing:-26.431680px;}
.ws8{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.026720px;}
.ws11{word-spacing:-18.829320px;}
.ws17{word-spacing:-18.720120px;}
.ws15{word-spacing:-18.676920px;}
.ws14{word-spacing:-18.414720px;}
.ws10{word-spacing:-18.305520px;}
.ws13{word-spacing:-18.152520px;}
.ws16{word-spacing:-18.109320px;}
.ws19{word-spacing:-17.956920px;}
.ws2{word-spacing:-16.613280px;}
.ws1a{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.506480px;}
.ws6{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.508000px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-4.876320px;}
._9{margin-left:-3.777360px;}
._8{margin-left:-2.749680px;}
._1{margin-left:-1.138320px;}
._0{width:1.792800px;}
._2{width:2.850000px;}
._3{width:4.536000px;}
._15{width:5.634000px;}
._4{width:7.398000px;}
._5{width:8.887200px;}
._10{width:10.613520px;}
._f{width:11.784240px;}
._e{width:12.826080px;}
._b{width:13.954320px;}
._a{width:15.120000px;}
._11{width:16.554960px;}
._7{width:17.820000px;}
._6{width:19.116000px;}
._16{width:21.744000px;}
._14{width:23.732640px;}
._13{width:24.840000px;}
._17{width:25.932720px;}
._1b{width:26.963520px;}
._20{width:29.016000px;}
._19{width:30.672000px;}
._18{width:31.896000px;}
._12{width:33.032640px;}
._d{width:34.068000px;}
._c{width:35.424000px;}
._1e{width:36.948000px;}
._3b{width:38.205360px;}
._1d{width:39.888000px;}
._4f{width:41.684880px;}
._4e{width:42.827040px;}
._52{width:46.074960px;}
._3e{width:48.577680px;}
._21{width:51.120000px;}
._1c{width:52.848000px;}
._49{width:56.712240px;}
._4a{width:58.026960px;}
._32{width:59.528160px;}
._23{width:62.181360px;}
._56{width:63.564240px;}
._1f{width:67.824000px;}
._2b{width:71.105760px;}
._50{width:73.283040px;}
._41{width:75.254400px;}
._36{width:77.212800px;}
._55{width:78.814560px;}
._54{width:80.436960px;}
._28{width:83.744640px;}
._3f{width:85.722480px;}
._44{width:87.274800px;}
._40{width:91.077120px;}
._43{width:92.408400px;}
._33{width:104.150160px;}
._29{width:106.687440px;}
._2a{width:114.328800px;}
._25{width:117.589680px;}
._24{width:125.520480px;}
._3a{width:129.669120px;}
._42{width:131.579280px;}
._39{width:141.227280px;}
._26{width:144.459360px;}
._31{width:146.003040px;}
._2c{width:155.622240px;}
._47{width:157.109040px;}
._51{width:166.371840px;}
._2d{width:169.447680px;}
._2f{width:198.584640px;}
._37{width:202.077360px;}
._4d{width:203.826960px;}
._34{width:205.743600px;}
._2e{width:209.168640px;}
._35{width:229.188240px;}
._38{width:231.870240px;}
._3d{width:243.467280px;}
._27{width:255.720240px;}
._3c{width:266.445360px;}
._4b{width:420.466800px;}
._53{width:473.419200px;}
._4c{width:488.121600px;}
._45{width:491.077200px;}
._46{width:492.601680px;}
._48{width:509.701440px;}
._22{width:837.534720px;}
._30{width:844.217520px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:2.520000px;}
.yca{bottom:9.360000px;}
.ya6{bottom:9.540000px;}
.ya4{bottom:16.380000px;}
.yb0{bottom:30.060000px;}
.yd3{bottom:43.920000px;}
.yaf{bottom:43.965000px;}
.y9{bottom:56.556000px;}
.yd2{bottom:57.780000px;}
.yae{bottom:57.825000px;}
.yd1{bottom:71.460000px;}
.yad{bottom:71.505000px;}
.y8{bottom:77.796000px;}
.yd0{bottom:85.320000px;}
.yac{bottom:85.365000px;}
.yab{bottom:99.225000px;}
.yaa{bottom:112.905000px;}
.ya9{bottom:126.765000px;}
.y2c{bottom:130.356000px;}
.ya8{bottom:140.625000px;}
.y2b{bottom:145.836000px;}
.yc8{bottom:148.536000px;}
.y2a{bottom:150.330000px;}
.ycf{bottom:154.305000px;}
.y70{bottom:155.910000px;}
.y8c{bottom:158.070000px;}
.yf2{bottom:160.770000px;}
.y29{bottom:162.030000px;}
.yce{bottom:168.165000px;}
.yc7{bottom:169.230000px;}
.y6f{bottom:176.610000px;}
.yf1{bottom:177.870000px;}
.y116{bottom:178.950000px;}
.ycd{bottom:182.025000px;}
.yc6{bottom:189.930000px;}
.ycc{bottom:195.705000px;}
.y115{bottom:196.230000px;}
.y6e{bottom:197.310000px;}
.y4e{bottom:198.030000px;}
.y8b{bottom:202.350000px;}
.yc5{bottom:210.630000px;}
.yf0{bottom:213.150000px;}
.y114{bottom:213.510000px;}
.y6d{bottom:218.010000px;}
.y4d{bottom:218.730000px;}
.y8a{bottom:223.050000px;}
.yef{bottom:230.430000px;}
.y113{bottom:230.790000px;}
.yc4{bottom:231.330000px;}
.yb1{bottom:231.870000px;}
.y6c{bottom:238.710000px;}
.y4c{bottom:239.430000px;}
.y89{bottom:243.750000px;}
.yee{bottom:247.710000px;}
.ya7{bottom:249.510000px;}
.y6b{bottom:259.410000px;}
.y4b{bottom:260.130000px;}
.y88{bottom:264.450000px;}
.yed{bottom:264.990000px;}
.y112{bottom:266.070000px;}
.yc3{bottom:270.030000px;}
.y6a{bottom:280.110000px;}
.y111{bottom:283.350000px;}
.y87{bottom:285.150000px;}
.yc2{bottom:290.730000px;}
.y4a{bottom:298.875000px;}
.yec{bottom:300.135000px;}
.y69{bottom:300.855000px;}
.y86{bottom:305.895000px;}
.yc1{bottom:311.475000px;}
.y28{bottom:313.995000px;}
.yeb{bottom:317.415000px;}
.y110{bottom:318.495000px;}
.y49{bottom:319.575000px;}
.y85{bottom:326.595000px;}
.yc0{bottom:332.175000px;}
.y27{bottom:334.695000px;}
.y10f{bottom:335.775000px;}
.y68{bottom:339.555000px;}
.y48{bottom:340.275000px;}
.y84{bottom:347.295000px;}
.yea{bottom:351.975000px;}
.ybf{bottom:352.875000px;}
.y10e{bottom:353.055000px;}
.y26{bottom:355.395000px;}
.y67{bottom:360.255000px;}
.y47{bottom:360.975000px;}
.y83{bottom:367.995000px;}
.y10d{bottom:370.335000px;}
.ybe{bottom:373.575000px;}
.y25{bottom:376.095000px;}
.y66{bottom:380.955000px;}
.y46{bottom:381.675000px;}
.ye9{bottom:387.255000px;}
.ybd{bottom:394.275000px;}
.y24{bottom:396.795000px;}
.y65{bottom:401.655000px;}
.ya3{bottom:402.015000px;}
.y45{bottom:402.375000px;}
.ye8{bottom:404.535000px;}
.y10c{bottom:405.615000px;}
.y82{bottom:406.695000px;}
.y23{bottom:417.495000px;}
.ye7{bottom:421.815000px;}
.y64{bottom:422.355000px;}
.y44{bottom:423.075000px;}
.y81{bottom:427.395000px;}
.ya2{bottom:434.235000px;}
.ybc{bottom:434.415000px;}
.ye6{bottom:438.915000px;}
.y10b{bottom:441.795000px;}
.y63{bottom:443.055000px;}
.y43{bottom:443.775000px;}
.y80{bottom:448.095000px;}
.y22{bottom:454.395000px;}
.ye5{bottom:456.195000px;}
.y62{bottom:463.755000px;}
.ya1{bottom:463.935000px;}
.y7f{bottom:468.795000px;}
.y21{bottom:470.055000px;}
.y10a{bottom:477.075000px;}
.ybb{bottom:478.695000px;}
.y42{bottom:482.475000px;}
.ya0{bottom:484.635000px;}
.y20{bottom:485.715000px;}
.y7e{bottom:489.495000px;}
.ye4{bottom:491.475000px;}
.y109{bottom:494.355000px;}
.yba{bottom:499.395000px;}
.y1f{bottom:501.195000px;}
.y61{bottom:502.455000px;}
.y41{bottom:503.175000px;}
.ye3{bottom:508.755000px;}
.y7d{bottom:510.195000px;}
.y108{bottom:511.455000px;}
.y9f{bottom:515.595000px;}
.y1e{bottom:516.675000px;}
.yb9{bottom:520.095000px;}
.y60{bottom:523.155000px;}
.y40{bottom:523.875000px;}
.ye2{bottom:526.035000px;}
.y107{bottom:528.735000px;}
.y7c{bottom:530.895000px;}
.y1d{bottom:532.155000px;}
.yb8{bottom:540.795000px;}
.ye1{bottom:543.315000px;}
.y5f{bottom:543.855000px;}
.y3f{bottom:544.575000px;}
.y106{bottom:546.015000px;}
.y1c{bottom:547.815000px;}
.y9e{bottom:550.905000px;}
.y7b{bottom:551.625000px;}
.yb7{bottom:561.525000px;}
.y1b{bottom:563.325000px;}
.y5e{bottom:564.585000px;}
.y3e{bottom:565.305000px;}
.y9d{bottom:571.605000px;}
.y7a{bottom:572.325000px;}
.ye0{bottom:578.445000px;}
.y1a{bottom:579.705000px;}
.yb6{bottom:582.225000px;}
.y5d{bottom:585.285000px;}
.y3d{bottom:586.005000px;}
.y9c{bottom:592.305000px;}
.ydf{bottom:595.725000px;}
.y105{bottom:598.605000px;}
.y19{bottom:599.505000px;}
.yb5{bottom:602.745000px;}
.y5c{bottom:605.985000px;}
.y3c{bottom:606.705000px;}
.y79{bottom:611.025000px;}
.y9b{bottom:613.005000px;}
.y18{bottom:614.985000px;}
.y104{bottom:615.885000px;}
.yb4{bottom:623.445000px;}
.y5b{bottom:626.685000px;}
.yde{bottom:630.285000px;}
.y17{bottom:630.645000px;}
.y78{bottom:631.725000px;}
.y103{bottom:632.985000px;}
.y9a{bottom:633.705000px;}
.y3b{bottom:645.405000px;}
.yb3{bottom:645.585000px;}
.y16{bottom:646.125000px;}
.y5a{bottom:647.385000px;}
.ydd{bottom:647.565000px;}
.y102{bottom:650.265000px;}
.y77{bottom:652.425000px;}
.y15{bottom:661.605000px;}
.y120{bottom:663.045000px;}
.y99{bottom:663.405000px;}
.y3a{bottom:666.105000px;}
.y59{bottom:668.085000px;}
.yb2{bottom:671.865000px;}
.y76{bottom:673.125000px;}
.y14{bottom:677.085000px;}
.ydc{bottom:682.665000px;}
.y98{bottom:684.105000px;}
.y101{bottom:685.545000px;}
.y39{bottom:686.805000px;}
.y13{bottom:692.565000px;}
.y75{bottom:693.825000px;}
.y11f{bottom:697.065000px;}
.ydb{bottom:699.945000px;}
.y100{bottom:702.825000px;}
.y97{bottom:704.805000px;}
.y38{bottom:707.505000px;}
.y12{bottom:708.225000px;}
.ycb{bottom:710.205000px;}
.y74{bottom:714.525000px;}
.yda{bottom:717.225000px;}
.yff{bottom:720.105000px;}
.y11{bottom:723.705000px;}
.y96{bottom:725.505000px;}
.y37{bottom:728.205000px;}
.y11e{bottom:733.965000px;}
.yd9{bottom:734.505000px;}
.y73{bottom:735.045000px;}
.yfe{bottom:737.205000px;}
.y10{bottom:739.545000px;}
.y95{bottom:746.205000px;}
.y36{bottom:748.905000px;}
.y58{bottom:750.165000px;}
.yfd{bottom:754.485000px;}
.y72{bottom:755.745000px;}
.yf{bottom:757.365000px;}
.y94{bottom:766.905000px;}
.y35{bottom:769.605000px;}
.y11d{bottom:770.865000px;}
.yd8{bottom:771.585000px;}
.ye{bottom:774.285000px;}
.y71{bottom:776.445000px;}
.y93{bottom:787.605000px;}
.y11c{bottom:788.145000px;}
.yfc{bottom:789.765000px;}
.y57{bottom:794.445000px;}
.y11b{bottom:805.245000px;}
.yfb{bottom:807.045000px;}
.y34{bottom:808.350000px;}
.y56{bottom:815.190000px;}
.yd7{bottom:818.430000px;}
.y11a{bottom:822.570000px;}
.yfa{bottom:824.370000px;}
.y33{bottom:829.050000px;}
.y55{bottom:835.890000px;}
.y92{bottom:838.050000px;}
.y119{bottom:839.850000px;}
.yd6{bottom:840.390000px;}
.yf9{bottom:841.650000px;}
.y32{bottom:849.750000px;}
.y54{bottom:856.590000px;}
.y91{bottom:858.750000px;}
.yd{bottom:864.870000px;}
.y31{bottom:870.450000px;}
.y118{bottom:875.310000px;}
.yf8{bottom:876.750000px;}
.y53{bottom:877.290000px;}
.y90{bottom:879.450000px;}
.yd5{bottom:883.050000px;}
.y30{bottom:891.150000px;}
.yc{bottom:892.410000px;}
.yf7{bottom:894.030000px;}
.y52{bottom:897.990000px;}
.y8f{bottom:900.150000px;}
.yf6{bottom:911.310000px;}
.y2f{bottom:911.850000px;}
.yc9{bottom:917.970000px;}
.y51{bottom:918.690000px;}
.y8e{bottom:920.850000px;}
.yf5{bottom:928.590000px;}
.yd4{bottom:929.850000px;}
.y2e{bottom:932.550000px;}
.yb{bottom:938.850000px;}
.y8d{bottom:941.550000px;}
.y117{bottom:946.590000px;}
.y50{bottom:957.390000px;}
.yf4{bottom:963.870000px;}
.ya{bottom:969.810000px;}
.y2d{bottom:972.510000px;}
.y4f{bottom:978.090000px;}
.yf3{bottom:981.150000px;}
.y7{bottom:1006.890000px;}
.y6{bottom:1024.170000px;}
.y5{bottom:1041.450000px;}
.y4{bottom:1058.730000px;}
.y3{bottom:1076.040000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1112.400000px;}
.h8{height:5.163750px;}
.h13{height:27.540000px;}
.hf{height:27.720000px;}
.hb{height:32.273438px;}
.h12{height:43.246406px;}
.h10{height:43.646836px;}
.ha{height:48.410156px;}
.h9{height:48.858398px;}
.hc{height:50.249437px;}
.h3{height:53.573906px;}
.h2{height:54.069961px;}
.h15{height:59.221406px;}
.h4{height:59.383125px;}
.h7{height:64.546875px;}
.he{height:65.144531px;}
.h1{height:69.715898px;}
.h5{height:74.355469px;}
.hd{height:76.219102px;}
.h6{height:86.642227px;}
.h11{height:151.770000px;}
.h14{height:207.030000px;}
.h0{height:1188.000000px;}
.w3{width:106.380000px;}
.w4{width:116.856000px;}
.w5{width:138.276000px;}
.w7{width:141.876000px;}
.w6{width:159.510000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x11{left:13.140000px;}
.xe{left:19.440000px;}
.x13{left:21.420000px;}
.xf{left:26.094000px;}
.x15{left:50.940000px;}
.x1{left:127.475986px;}
.xd{left:132.695986px;}
.x3{left:143.675986px;}
.x18{left:170.129986px;}
.x5{left:196.409986px;}
.x10{left:234.030000px;}
.x6{left:266.474986px;}
.x8{left:303.014986px;}
.xc{left:343.694986px;}
.x12{left:350.895000px;}
.x4{left:389.954986px;}
.xb{left:429.224986px;}
.x2{left:434.984986px;}
.x14{left:489.165000px;}
.x7{left:504.284986px;}
.x9{left:614.309973px;}
.x16{left:648.690000px;}
.xa{left:790.559986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.978667pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.168533pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016640pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.185067pt;}
.ls0{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.271360pt;}
.ls19{letter-spacing:0.271467pt;}
.ls20{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.368533pt;}
.ls12{letter-spacing:0.471467pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls1d{letter-spacing:0.545280pt;}
.ls1c{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.624000pt;}
.lse{letter-spacing:0.871040pt;}
.lsd{letter-spacing:1.263360pt;}
.ls1e{letter-spacing:2.552320pt;}
.ls4{letter-spacing:751.770027pt;}
.wsb{word-spacing:-85.120000pt;}
.wsd{word-spacing:-24.287360pt;}
.wsf{word-spacing:-24.134827pt;}
.ws4{word-spacing:-24.000000pt;}
.ws12{word-spacing:-23.848427pt;}
.wse{word-spacing:-23.680000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws1{word-spacing:-23.646720pt;}
.wsc{word-spacing:-23.494827pt;}
.ws8{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws18{word-spacing:-16.912640pt;}
.ws11{word-spacing:-16.737173pt;}
.ws17{word-spacing:-16.640107pt;}
.ws15{word-spacing:-16.601707pt;}
.ws14{word-spacing:-16.368640pt;}
.ws10{word-spacing:-16.271573pt;}
.ws13{word-spacing:-16.135573pt;}
.ws16{word-spacing:-16.097173pt;}
.ws19{word-spacing:-15.961707pt;}
.ws2{word-spacing:-14.767360pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.672427pt;}
.ws6{word-spacing:-13.344000pt;}
.ws5{word-spacing:-12.896000pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-4.334507pt;}
._9{margin-left:-3.357653pt;}
._8{margin-left:-2.444160pt;}
._1{margin-left:-1.011840pt;}
._0{width:1.593600pt;}
._2{width:2.533333pt;}
._3{width:4.032000pt;}
._15{width:5.008000pt;}
._4{width:6.576000pt;}
._5{width:7.899733pt;}
._10{width:9.434240pt;}
._f{width:10.474880pt;}
._e{width:11.400960pt;}
._b{width:12.403840pt;}
._a{width:13.440000pt;}
._11{width:14.715520pt;}
._7{width:15.840000pt;}
._6{width:16.992000pt;}
._16{width:19.328000pt;}
._14{width:21.095680pt;}
._13{width:22.080000pt;}
._17{width:23.051307pt;}
._1b{width:23.967573pt;}
._20{width:25.792000pt;}
._19{width:27.264000pt;}
._18{width:28.352000pt;}
._12{width:29.362347pt;}
._d{width:30.282667pt;}
._c{width:31.488000pt;}
._1e{width:32.842667pt;}
._3b{width:33.960320pt;}
._1d{width:35.456000pt;}
._4f{width:37.053227pt;}
._4e{width:38.068480pt;}
._52{width:40.955520pt;}
._3e{width:43.180160pt;}
._21{width:45.440000pt;}
._1c{width:46.976000pt;}
._49{width:50.410880pt;}
._4a{width:51.579520pt;}
._32{width:52.913920pt;}
._23{width:55.272320pt;}
._56{width:56.501547pt;}
._1f{width:60.288000pt;}
._2b{width:63.205120pt;}
._50{width:65.140480pt;}
._41{width:66.892800pt;}
._36{width:68.633600pt;}
._55{width:70.057387pt;}
._54{width:71.499520pt;}
._28{width:74.439680pt;}
._3f{width:76.197760pt;}
._44{width:77.577600pt;}
._40{width:80.957440pt;}
._43{width:82.140800pt;}
._33{width:92.577920pt;}
._29{width:94.833280pt;}
._2a{width:101.625600pt;}
._25{width:104.524160pt;}
._24{width:111.573760pt;}
._3a{width:115.261440pt;}
._42{width:116.959360pt;}
._39{width:125.535360pt;}
._26{width:128.408320pt;}
._31{width:129.780480pt;}
._2c{width:138.330880pt;}
._47{width:139.652480pt;}
._51{width:147.886080pt;}
._2d{width:150.620160pt;}
._2f{width:176.519680pt;}
._37{width:179.624320pt;}
._4d{width:181.179520pt;}
._34{width:182.883200pt;}
._2e{width:185.927680pt;}
._35{width:203.722880pt;}
._38{width:206.106880pt;}
._3d{width:216.415360pt;}
._27{width:227.306880pt;}
._3c{width:236.840320pt;}
._4b{width:373.748267pt;}
._53{width:420.817067pt;}
._4c{width:433.885867pt;}
._45{width:436.513067pt;}
._46{width:437.868160pt;}
._48{width:453.067947pt;}
._22{width:744.475307pt;}
._30{width:750.415573pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:2.240000pt;}
.yca{bottom:8.320000pt;}
.ya6{bottom:8.480000pt;}
.ya4{bottom:14.560000pt;}
.yb0{bottom:26.720000pt;}
.yd3{bottom:39.040000pt;}
.yaf{bottom:39.080000pt;}
.y9{bottom:50.272000pt;}
.yd2{bottom:51.360000pt;}
.yae{bottom:51.400000pt;}
.yd1{bottom:63.520000pt;}
.yad{bottom:63.560000pt;}
.y8{bottom:69.152000pt;}
.yd0{bottom:75.840000pt;}
.yac{bottom:75.880000pt;}
.yab{bottom:88.200000pt;}
.yaa{bottom:100.360000pt;}
.ya9{bottom:112.680000pt;}
.y2c{bottom:115.872000pt;}
.ya8{bottom:125.000000pt;}
.y2b{bottom:129.632000pt;}
.yc8{bottom:132.032000pt;}
.y2a{bottom:133.626667pt;}
.ycf{bottom:137.160000pt;}
.y70{bottom:138.586667pt;}
.y8c{bottom:140.506667pt;}
.yf2{bottom:142.906667pt;}
.y29{bottom:144.026667pt;}
.yce{bottom:149.480000pt;}
.yc7{bottom:150.426667pt;}
.y6f{bottom:156.986667pt;}
.yf1{bottom:158.106667pt;}
.y116{bottom:159.066667pt;}
.ycd{bottom:161.800000pt;}
.yc6{bottom:168.826667pt;}
.ycc{bottom:173.960000pt;}
.y115{bottom:174.426667pt;}
.y6e{bottom:175.386667pt;}
.y4e{bottom:176.026667pt;}
.y8b{bottom:179.866667pt;}
.yc5{bottom:187.226667pt;}
.yf0{bottom:189.466667pt;}
.y114{bottom:189.786667pt;}
.y6d{bottom:193.786667pt;}
.y4d{bottom:194.426667pt;}
.y8a{bottom:198.266667pt;}
.yef{bottom:204.826667pt;}
.y113{bottom:205.146667pt;}
.yc4{bottom:205.626667pt;}
.yb1{bottom:206.106667pt;}
.y6c{bottom:212.186667pt;}
.y4c{bottom:212.826667pt;}
.y89{bottom:216.666667pt;}
.yee{bottom:220.186667pt;}
.ya7{bottom:221.786667pt;}
.y6b{bottom:230.586667pt;}
.y4b{bottom:231.226667pt;}
.y88{bottom:235.066667pt;}
.yed{bottom:235.546667pt;}
.y112{bottom:236.506667pt;}
.yc3{bottom:240.026667pt;}
.y6a{bottom:248.986667pt;}
.y111{bottom:251.866667pt;}
.y87{bottom:253.466667pt;}
.yc2{bottom:258.426667pt;}
.y4a{bottom:265.666667pt;}
.yec{bottom:266.786667pt;}
.y69{bottom:267.426667pt;}
.y86{bottom:271.906667pt;}
.yc1{bottom:276.866667pt;}
.y28{bottom:279.106667pt;}
.yeb{bottom:282.146667pt;}
.y110{bottom:283.106667pt;}
.y49{bottom:284.066667pt;}
.y85{bottom:290.306667pt;}
.yc0{bottom:295.266667pt;}
.y27{bottom:297.506667pt;}
.y10f{bottom:298.466667pt;}
.y68{bottom:301.826667pt;}
.y48{bottom:302.466667pt;}
.y84{bottom:308.706667pt;}
.yea{bottom:312.866667pt;}
.ybf{bottom:313.666667pt;}
.y10e{bottom:313.826667pt;}
.y26{bottom:315.906667pt;}
.y67{bottom:320.226667pt;}
.y47{bottom:320.866667pt;}
.y83{bottom:327.106667pt;}
.y10d{bottom:329.186667pt;}
.ybe{bottom:332.066667pt;}
.y25{bottom:334.306667pt;}
.y66{bottom:338.626667pt;}
.y46{bottom:339.266667pt;}
.ye9{bottom:344.226667pt;}
.ybd{bottom:350.466667pt;}
.y24{bottom:352.706667pt;}
.y65{bottom:357.026667pt;}
.ya3{bottom:357.346667pt;}
.y45{bottom:357.666667pt;}
.ye8{bottom:359.586667pt;}
.y10c{bottom:360.546667pt;}
.y82{bottom:361.506667pt;}
.y23{bottom:371.106667pt;}
.ye7{bottom:374.946667pt;}
.y64{bottom:375.426667pt;}
.y44{bottom:376.066667pt;}
.y81{bottom:379.906667pt;}
.ya2{bottom:385.986667pt;}
.ybc{bottom:386.146667pt;}
.ye6{bottom:390.146667pt;}
.y10b{bottom:392.706667pt;}
.y63{bottom:393.826667pt;}
.y43{bottom:394.466667pt;}
.y80{bottom:398.306667pt;}
.y22{bottom:403.906667pt;}
.ye5{bottom:405.506667pt;}
.y62{bottom:412.226667pt;}
.ya1{bottom:412.386667pt;}
.y7f{bottom:416.706667pt;}
.y21{bottom:417.826667pt;}
.y10a{bottom:424.066667pt;}
.ybb{bottom:425.506667pt;}
.y42{bottom:428.866667pt;}
.ya0{bottom:430.786667pt;}
.y20{bottom:431.746667pt;}
.y7e{bottom:435.106667pt;}
.ye4{bottom:436.866667pt;}
.y109{bottom:439.426667pt;}
.yba{bottom:443.906667pt;}
.y1f{bottom:445.506667pt;}
.y61{bottom:446.626667pt;}
.y41{bottom:447.266667pt;}
.ye3{bottom:452.226667pt;}
.y7d{bottom:453.506667pt;}
.y108{bottom:454.626667pt;}
.y9f{bottom:458.306667pt;}
.y1e{bottom:459.266667pt;}
.yb9{bottom:462.306667pt;}
.y60{bottom:465.026667pt;}
.y40{bottom:465.666667pt;}
.ye2{bottom:467.586667pt;}
.y107{bottom:469.986667pt;}
.y7c{bottom:471.906667pt;}
.y1d{bottom:473.026667pt;}
.yb8{bottom:480.706667pt;}
.ye1{bottom:482.946667pt;}
.y5f{bottom:483.426667pt;}
.y3f{bottom:484.066667pt;}
.y106{bottom:485.346667pt;}
.y1c{bottom:486.946667pt;}
.y9e{bottom:489.693333pt;}
.y7b{bottom:490.333333pt;}
.yb7{bottom:499.133333pt;}
.y1b{bottom:500.733333pt;}
.y5e{bottom:501.853333pt;}
.y3e{bottom:502.493333pt;}
.y9d{bottom:508.093333pt;}
.y7a{bottom:508.733333pt;}
.ye0{bottom:514.173333pt;}
.y1a{bottom:515.293333pt;}
.yb6{bottom:517.533333pt;}
.y5d{bottom:520.253333pt;}
.y3d{bottom:520.893333pt;}
.y9c{bottom:526.493333pt;}
.ydf{bottom:529.533333pt;}
.y105{bottom:532.093333pt;}
.y19{bottom:532.893333pt;}
.yb5{bottom:535.773333pt;}
.y5c{bottom:538.653333pt;}
.y3c{bottom:539.293333pt;}
.y79{bottom:543.133333pt;}
.y9b{bottom:544.893333pt;}
.y18{bottom:546.653333pt;}
.y104{bottom:547.453333pt;}
.yb4{bottom:554.173333pt;}
.y5b{bottom:557.053333pt;}
.yde{bottom:560.253333pt;}
.y17{bottom:560.573333pt;}
.y78{bottom:561.533333pt;}
.y103{bottom:562.653333pt;}
.y9a{bottom:563.293333pt;}
.y3b{bottom:573.693333pt;}
.yb3{bottom:573.853333pt;}
.y16{bottom:574.333333pt;}
.y5a{bottom:575.453333pt;}
.ydd{bottom:575.613333pt;}
.y102{bottom:578.013333pt;}
.y77{bottom:579.933333pt;}
.y15{bottom:588.093333pt;}
.y120{bottom:589.373333pt;}
.y99{bottom:589.693333pt;}
.y3a{bottom:592.093333pt;}
.y59{bottom:593.853333pt;}
.yb2{bottom:597.213333pt;}
.y76{bottom:598.333333pt;}
.y14{bottom:601.853333pt;}
.ydc{bottom:606.813333pt;}
.y98{bottom:608.093333pt;}
.y101{bottom:609.373333pt;}
.y39{bottom:610.493333pt;}
.y13{bottom:615.613333pt;}
.y75{bottom:616.733333pt;}
.y11f{bottom:619.613333pt;}
.ydb{bottom:622.173333pt;}
.y100{bottom:624.733333pt;}
.y97{bottom:626.493333pt;}
.y38{bottom:628.893333pt;}
.y12{bottom:629.533333pt;}
.ycb{bottom:631.293333pt;}
.y74{bottom:635.133333pt;}
.yda{bottom:637.533333pt;}
.yff{bottom:640.093333pt;}
.y11{bottom:643.293333pt;}
.y96{bottom:644.893333pt;}
.y37{bottom:647.293333pt;}
.y11e{bottom:652.413333pt;}
.yd9{bottom:652.893333pt;}
.y73{bottom:653.373333pt;}
.yfe{bottom:655.293333pt;}
.y10{bottom:657.373333pt;}
.y95{bottom:663.293333pt;}
.y36{bottom:665.693333pt;}
.y58{bottom:666.813333pt;}
.yfd{bottom:670.653333pt;}
.y72{bottom:671.773333pt;}
.yf{bottom:673.213333pt;}
.y94{bottom:681.693333pt;}
.y35{bottom:684.093333pt;}
.y11d{bottom:685.213333pt;}
.yd8{bottom:685.853333pt;}
.ye{bottom:688.253333pt;}
.y71{bottom:690.173333pt;}
.y93{bottom:700.093333pt;}
.y11c{bottom:700.573333pt;}
.yfc{bottom:702.013333pt;}
.y57{bottom:706.173333pt;}
.y11b{bottom:715.773333pt;}
.yfb{bottom:717.373333pt;}
.y34{bottom:718.533333pt;}
.y56{bottom:724.613333pt;}
.yd7{bottom:727.493333pt;}
.y11a{bottom:731.173333pt;}
.yfa{bottom:732.773333pt;}
.y33{bottom:736.933333pt;}
.y55{bottom:743.013333pt;}
.y92{bottom:744.933333pt;}
.y119{bottom:746.533333pt;}
.yd6{bottom:747.013333pt;}
.yf9{bottom:748.133333pt;}
.y32{bottom:755.333333pt;}
.y54{bottom:761.413333pt;}
.y91{bottom:763.333333pt;}
.yd{bottom:768.773333pt;}
.y31{bottom:773.733333pt;}
.y118{bottom:778.053333pt;}
.yf8{bottom:779.333333pt;}
.y53{bottom:779.813333pt;}
.y90{bottom:781.733333pt;}
.yd5{bottom:784.933333pt;}
.y30{bottom:792.133333pt;}
.yc{bottom:793.253333pt;}
.yf7{bottom:794.693333pt;}
.y52{bottom:798.213333pt;}
.y8f{bottom:800.133333pt;}
.yf6{bottom:810.053333pt;}
.y2f{bottom:810.533333pt;}
.yc9{bottom:815.973333pt;}
.y51{bottom:816.613333pt;}
.y8e{bottom:818.533333pt;}
.yf5{bottom:825.413333pt;}
.yd4{bottom:826.533333pt;}
.y2e{bottom:828.933333pt;}
.yb{bottom:834.533333pt;}
.y8d{bottom:836.933333pt;}
.y117{bottom:841.413333pt;}
.y50{bottom:851.013333pt;}
.yf4{bottom:856.773333pt;}
.ya{bottom:862.053333pt;}
.y2d{bottom:864.453333pt;}
.y4f{bottom:869.413333pt;}
.yf3{bottom:872.133333pt;}
.y7{bottom:895.013333pt;}
.y6{bottom:910.373333pt;}
.y5{bottom:925.733333pt;}
.y4{bottom:941.093333pt;}
.y3{bottom:956.480000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:988.800000pt;}
.h8{height:4.590000pt;}
.h13{height:24.480000pt;}
.hf{height:24.640000pt;}
.hb{height:28.687500pt;}
.h12{height:38.441250pt;}
.h10{height:38.797187pt;}
.ha{height:43.031250pt;}
.h9{height:43.429688pt;}
.hc{height:44.666167pt;}
.h3{height:47.621250pt;}
.h2{height:48.062188pt;}
.h15{height:52.641250pt;}
.h4{height:52.785000pt;}
.h7{height:57.375000pt;}
.he{height:57.906250pt;}
.h1{height:61.969687pt;}
.h5{height:66.093750pt;}
.hd{height:67.750312pt;}
.h6{height:77.015312pt;}
.h11{height:134.906667pt;}
.h14{height:184.026667pt;}
.h0{height:1056.000000pt;}
.w3{width:94.560000pt;}
.w4{width:103.872000pt;}
.w5{width:122.912000pt;}
.w7{width:126.112000pt;}
.w6{width:141.786667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x11{left:11.680000pt;}
.xe{left:17.280000pt;}
.x13{left:19.040000pt;}
.xf{left:23.194667pt;}
.x15{left:45.280000pt;}
.x1{left:113.311988pt;}
.xd{left:117.951988pt;}
.x3{left:127.711988pt;}
.x18{left:151.226655pt;}
.x5{left:174.586655pt;}
.x10{left:208.026667pt;}
.x6{left:236.866655pt;}
.x8{left:269.346655pt;}
.xc{left:305.506655pt;}
.x12{left:311.906667pt;}
.x4{left:346.626655pt;}
.xb{left:381.533321pt;}
.x2{left:386.653321pt;}
.x14{left:434.813333pt;}
.x7{left:448.253321pt;}
.x9{left:546.053309pt;}
.x16{left:576.613333pt;}
.xa{left:702.719988pt;}
}




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