
    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_f526005a859c57a3b61dab5a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_98b550ced68963a12768d7d9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_efa16f0b0cd1af9aee03ed47.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83da381bdb30f2340fb7ca27.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c22dba50bed1be4b0da0fe19.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ac8dffefbdf44cb2862d75f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_ec7506dfa9d1c22b9ccd528e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-78.480000px;}
.v2{vertical-align:-69.120000px;}
.v3{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.940000px;}
.ls15{letter-spacing:-0.924000px;}
.ls18{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:5.220000px;}
.ls13{letter-spacing:14.580000px;}
.ls17{letter-spacing:16.668000px;}
.ls16{letter-spacing:44.028000px;}
.lsa{letter-spacing:46.026720px;}
.lsb{letter-spacing:93.204000px;}
.ls1{letter-spacing:1495.740000px;}
.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;}
}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.328000px;}
.ws12{word-spacing:-14.166000px;}
.ws14{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.392000px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:132.714000px;}
.wsf{word-spacing:146.226000px;}
.wse{word-spacing:415.152000px;}
._17{margin-left:-5.760000px;}
._16{margin-left:-2.113200px;}
._0{margin-left:-1.093920px;}
._1{width:1.026000px;}
._8{width:2.172000px;}
._6{width:3.370320px;}
._4{width:4.500000px;}
._d{width:5.646480px;}
._7{width:6.865440px;}
._10{width:8.036640px;}
._c{width:9.333600px;}
._a{width:10.626240px;}
._9{width:11.797200px;}
._f{width:13.565520px;}
._b{width:16.364160px;}
._13{width:17.834880px;}
._11{width:18.857760px;}
._e{width:20.175600px;}
._12{width:24.740640px;}
._18{width:47.502000px;}
._3{width:85.536000px;}
._2{width:686.424000px;}
._15{width:1229.527200px;}
._14{width:1243.207200px;}
._5{width:1711.860000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y74{bottom:3.240000px;}
.yaf{bottom:13.245000px;}
.yc4{bottom:20.340000px;}
.y139{bottom:20.514000px;}
.yc1{bottom:20.520000px;}
.ya6{bottom:30.780000px;}
.y41{bottom:36.720000px;}
.y12c{bottom:37.800000px;}
.y133{bottom:37.845000px;}
.y140{bottom:54.900000px;}
.y40{bottom:55.260000px;}
.yab{bottom:55.470000px;}
.y9{bottom:58.356000px;}
.ya7{bottom:61.635000px;}
.y3f{bottom:70.776000px;}
.y8{bottom:76.896000px;}
.yac{bottom:80.130000px;}
.yb6{bottom:80.250000px;}
.ya8{bottom:92.445000px;}
.ya5{bottom:93.135000px;}
.yb7{bottom:102.705000px;}
.yad{bottom:104.790000px;}
.y15e{bottom:113.796000px;}
.y77{bottom:114.336000px;}
.y13a{bottom:115.056000px;}
.ya2{bottom:115.956000px;}
.yb2{bottom:116.970000px;}
.ya9{bottom:123.300000px;}
.y117{bottom:124.956000px;}
.yb8{bottom:125.205000px;}
.ye8{bottom:125.496000px;}
.yb5{bottom:125.970000px;}
.y37{bottom:128.196000px;}
.yae{bottom:129.450000px;}
.y15d{bottom:131.076000px;}
.y76{bottom:132.336000px;}
.y138{bottom:133.056000px;}
.ya1{bottom:133.236000px;}
.y71{bottom:137.736000px;}
.y116{bottom:139.716000px;}
.ye7{bottom:143.496000px;}
.y36{bottom:145.296000px;}
.yb3{bottom:146.190000px;}
.yb9{bottom:147.675000px;}
.y15c{bottom:148.356000px;}
.y75{bottom:150.330000px;}
.ya0{bottom:150.510000px;}
.ya3{bottom:151.560000px;}
.yaa{bottom:154.110000px;}
.y70{bottom:155.010000px;}
.y185{bottom:156.450000px;}
.ya4{bottom:157.290000px;}
.y115{bottom:157.710000px;}
.ye6{bottom:161.490000px;}
.y35{bottom:162.570000px;}
.y15b{bottom:165.450000px;}
.y9f{bottom:167.790000px;}
.y73{bottom:168.330000px;}
.yba{bottom:170.175000px;}
.y184{bottom:171.930000px;}
.y6f{bottom:172.290000px;}
.y114{bottom:175.710000px;}
.yb4{bottom:177.660000px;}
.ye5{bottom:179.490000px;}
.y34{bottom:179.850000px;}
.y15a{bottom:182.730000px;}
.y9e{bottom:185.070000px;}
.y137{bottom:186.330000px;}
.y183{bottom:187.410000px;}
.y6e{bottom:189.570000px;}
.yb0{bottom:191.340000px;}
.ybb{bottom:192.630000px;}
.y113{bottom:193.710000px;}
.y33{bottom:197.130000px;}
.ye4{bottom:197.490000px;}
.y159{bottom:200.010000px;}
.y9d{bottom:202.350000px;}
.y182{bottom:203.070000px;}
.y6d{bottom:206.850000px;}
.y136{bottom:207.570000px;}
.y112{bottom:211.710000px;}
.y32{bottom:214.410000px;}
.ye3{bottom:215.490000px;}
.y158{bottom:217.290000px;}
.y181{bottom:218.550000px;}
.y9c{bottom:219.450000px;}
.y6c{bottom:223.950000px;}
.y135{bottom:224.850000px;}
.ybc{bottom:229.065000px;}
.y111{bottom:229.710000px;}
.y31{bottom:231.690000px;}
.ye2{bottom:233.490000px;}
.y180{bottom:234.030000px;}
.y157{bottom:234.570000px;}
.y9b{bottom:236.730000px;}
.y134{bottom:239.610000px;}
.y6b{bottom:241.230000px;}
.y110{bottom:247.710000px;}
.y30{bottom:248.790000px;}
.y17f{bottom:249.510000px;}
.y156{bottom:251.850000px;}
.y9a{bottom:254.010000px;}
.ye1{bottom:254.730000px;}
.y6a{bottom:258.510000px;}
.y17e{bottom:265.170000px;}
.y2f{bottom:266.070000px;}
.y10f{bottom:268.950000px;}
.y99{bottom:271.290000px;}
.ye0{bottom:272.010000px;}
.y132{bottom:274.710000px;}
.y69{bottom:275.790000px;}
.y17d{bottom:280.650000px;}
.y2e{bottom:283.350000px;}
.y10e{bottom:286.230000px;}
.ydf{bottom:286.770000px;}
.y98{bottom:288.570000px;}
.y68{bottom:293.070000px;}
.y17c{bottom:296.130000px;}
.y2d{bottom:300.630000px;}
.y10d{bottom:303.510000px;}
.yde{bottom:304.770000px;}
.y97{bottom:305.850000px;}
.y67{bottom:310.395000px;}
.y17b{bottom:311.655000px;}
.y2c{bottom:317.955000px;}
.y10c{bottom:320.835000px;}
.ydd{bottom:322.815000px;}
.y96{bottom:322.995000px;}
.y131{bottom:327.315000px;}
.y66{bottom:327.495000px;}
.y2b{bottom:335.055000px;}
.y10b{bottom:338.115000px;}
.y95{bottom:340.275000px;}
.ydc{bottom:340.815000px;}
.y17a{bottom:342.795000px;}
.y65{bottom:344.775000px;}
.y2a{bottom:352.335000px;}
.y10a{bottom:352.875000px;}
.y155{bottom:355.395000px;}
.y179{bottom:358.275000px;}
.ydb{bottom:358.815000px;}
.y64{bottom:362.055000px;}
.y130{bottom:362.595000px;}
.y29{bottom:369.615000px;}
.y109{bottom:370.875000px;}
.y154{bottom:372.495000px;}
.y178{bottom:373.755000px;}
.y94{bottom:374.835000px;}
.yda{bottom:376.815000px;}
.y63{bottom:379.335000px;}
.y12f{bottom:383.835000px;}
.y28{bottom:386.895000px;}
.y108{bottom:388.875000px;}
.y177{bottom:389.415000px;}
.y153{bottom:389.775000px;}
.y93{bottom:392.115000px;}
.yd9{bottom:394.815000px;}
.y62{bottom:396.615000px;}
.y12e{bottom:401.115000px;}
.y27{bottom:404.175000px;}
.y176{bottom:404.895000px;}
.y107{bottom:406.875000px;}
.y152{bottom:407.055000px;}
.y92{bottom:409.395000px;}
.y61{bottom:413.895000px;}
.y12d{bottom:415.875000px;}
.yd8{bottom:416.055000px;}
.y175{bottom:420.375000px;}
.y26{bottom:421.455000px;}
.y151{bottom:424.335000px;}
.y106{bottom:424.875000px;}
.y91{bottom:426.495000px;}
.y60{bottom:430.995000px;}
.yd7{bottom:433.335000px;}
.y174{bottom:435.855000px;}
.y25{bottom:438.555000px;}
.y150{bottom:441.615000px;}
.y105{bottom:442.875000px;}
.y90{bottom:443.775000px;}
.yb1{bottom:447.660000px;}
.y5f{bottom:448.275000px;}
.yd6{bottom:450.615000px;}
.y12b{bottom:450.975000px;}
.y173{bottom:451.515000px;}
.y24{bottom:455.835000px;}
.y14f{bottom:458.715000px;}
.y104{bottom:460.875000px;}
.y8f{bottom:461.055000px;}
.y5e{bottom:465.555000px;}
.y172{bottom:466.995000px;}
.yd5{bottom:467.715000px;}
.y23{bottom:473.115000px;}
.y14e{bottom:475.995000px;}
.y8e{bottom:478.335000px;}
.y103{bottom:482.115000px;}
.y171{bottom:482.475000px;}
.y5d{bottom:482.835000px;}
.yd4{bottom:484.995000px;}
.y22{bottom:490.395000px;}
.y14d{bottom:493.275000px;}
.y8d{bottom:495.615000px;}
.y170{bottom:497.955000px;}
.y102{bottom:499.215000px;}
.y5c{bottom:500.115000px;}
.yd3{bottom:502.275000px;}
.y12a{bottom:503.535000px;}
.y14c{bottom:510.555000px;}
.y8c{bottom:512.715000px;}
.y16f{bottom:513.615000px;}
.y101{bottom:513.975000px;}
.yd2{bottom:517.035000px;}
.y5b{bottom:517.215000px;}
.y21{bottom:527.295000px;}
.y14b{bottom:527.835000px;}
.y16e{bottom:529.095000px;}
.y8b{bottom:529.995000px;}
.y100{bottom:531.975000px;}
.y5a{bottom:534.495000px;}
.yd1{bottom:535.035000px;}
.y129{bottom:538.815000px;}
.y16d{bottom:544.575000px;}
.y14a{bottom:545.115000px;}
.y20{bottom:546.015000px;}
.y8a{bottom:547.275000px;}
.yff{bottom:549.975000px;}
.y59{bottom:551.775000px;}
.yd0{bottom:553.035000px;}
.y128{bottom:560.055000px;}
.y149{bottom:562.245000px;}
.y1f{bottom:563.325000px;}
.y89{bottom:564.585000px;}
.yfe{bottom:568.005000px;}
.y58{bottom:569.085000px;}
.ycf{bottom:571.065000px;}
.y16c{bottom:575.745000px;}
.y127{bottom:577.365000px;}
.y148{bottom:579.525000px;}
.y1e{bottom:581.145000px;}
.y88{bottom:581.865000px;}
.yfd{bottom:586.005000px;}
.y57{bottom:586.365000px;}
.yce{bottom:589.065000px;}
.y16b{bottom:591.225000px;}
.y126{bottom:594.645000px;}
.y147{bottom:596.805000px;}
.y87{bottom:599.145000px;}
.y1d{bottom:599.685000px;}
.y56{bottom:603.645000px;}
.yfc{bottom:604.005000px;}
.y16a{bottom:606.705000px;}
.ycd{bottom:607.065000px;}
.y125{bottom:609.405000px;}
.y146{bottom:614.085000px;}
.y86{bottom:616.245000px;}
.y1c{bottom:616.785000px;}
.y55{bottom:620.745000px;}
.yfb{bottom:622.005000px;}
.y169{bottom:622.185000px;}
.ycc{bottom:625.065000px;}
.y145{bottom:631.365000px;}
.y85{bottom:633.525000px;}
.y1b{bottom:634.065000px;}
.y168{bottom:637.665000px;}
.y54{bottom:638.025000px;}
.ycb{bottom:643.065000px;}
.yfa{bottom:643.245000px;}
.y124{bottom:644.505000px;}
.y144{bottom:648.645000px;}
.y84{bottom:650.805000px;}
.y1a{bottom:651.345000px;}
.y167{bottom:653.325000px;}
.y53{bottom:655.305000px;}
.yf9{bottom:660.525000px;}
.yca{bottom:661.065000px;}
.y143{bottom:665.745000px;}
.y83{bottom:668.085000px;}
.y19{bottom:668.625000px;}
.y166{bottom:668.805000px;}
.y52{bottom:672.585000px;}
.yf8{bottom:675.285000px;}
.y123{bottom:679.785000px;}
.yc9{bottom:682.305000px;}
.y142{bottom:683.025000px;}
.y165{bottom:684.285000px;}
.y18{bottom:685.905000px;}
.y51{bottom:689.865000px;}
.yf7{bottom:693.285000px;}
.y141{bottom:697.785000px;}
.yc8{bottom:699.585000px;}
.y164{bottom:699.765000px;}
.y82{bottom:702.645000px;}
.y17{bottom:703.005000px;}
.y50{bottom:707.145000px;}
.yf6{bottom:711.285000px;}
.yc7{bottom:714.345000px;}
.y122{bottom:715.065000px;}
.y163{bottom:715.425000px;}
.y81{bottom:719.745000px;}
.y16{bottom:720.825000px;}
.y4f{bottom:724.245000px;}
.yf5{bottom:729.285000px;}
.y162{bottom:730.905000px;}
.yc6{bottom:732.345000px;}
.y80{bottom:737.025000px;}
.y4e{bottom:741.525000px;}
.y15{bottom:743.145000px;}
.y161{bottom:746.385000px;}
.yf4{bottom:747.285000px;}
.yc5{bottom:750.345000px;}
.y7f{bottom:754.305000px;}
.y4d{bottom:758.805000px;}
.y160{bottom:761.865000px;}
.y14{bottom:764.025000px;}
.yf3{bottom:765.285000px;}
.y7e{bottom:771.585000px;}
.y72{bottom:776.085000px;}
.y15f{bottom:777.525000px;}
.y13{bottom:782.925000px;}
.yf2{bottom:783.285000px;}
.yc3{bottom:785.625000px;}
.y7d{bottom:788.865000px;}
.y4c{bottom:793.365000px;}
.y12{bottom:801.825000px;}
.y7c{bottom:803.625000px;}
.yf1{bottom:804.525000px;}
.y121{bottom:806.865000px;}
.y4b{bottom:810.465000px;}
.y13f{bottom:820.050000px;}
.yc2{bottom:820.770000px;}
.y11{bottom:820.950000px;}
.y7b{bottom:821.670000px;}
.yf0{bottom:821.850000px;}
.y120{bottom:824.010000px;}
.y4a{bottom:827.790000px;}
.yef{bottom:836.610000px;}
.yc0{bottom:838.770000px;}
.y7a{bottom:839.670000px;}
.y10{bottom:839.850000px;}
.y11f{bottom:841.290000px;}
.y49{bottom:845.070000px;}
.yee{bottom:854.610000px;}
.y13e{bottom:855.330000px;}
.y79{bottom:857.670000px;}
.y11e{bottom:858.570000px;}
.yf{bottom:858.930000px;}
.y48{bottom:862.350000px;}
.yed{bottom:872.610000px;}
.ybf{bottom:874.050000px;}
.y78{bottom:875.670000px;}
.y11d{bottom:875.850000px;}
.ye{bottom:877.830000px;}
.y47{bottom:879.630000px;}
.yec{bottom:890.610000px;}
.ybe{bottom:892.050000px;}
.y11c{bottom:893.130000px;}
.yd{bottom:896.910000px;}
.y11b{bottom:907.890000px;}
.yeb{bottom:908.610000px;}
.ybd{bottom:910.050000px;}
.y46{bottom:914.010000px;}
.yc{bottom:917.070000px;}
.y11a{bottom:925.890000px;}
.yea{bottom:926.610000px;}
.y45{bottom:931.290000px;}
.yb{bottom:938.130000px;}
.y119{bottom:943.890000px;}
.ye9{bottom:944.610000px;}
.y13d{bottom:947.130000px;}
.y44{bottom:948.570000px;}
.ya{bottom:958.830000px;}
.y118{bottom:961.890000px;}
.y13c{bottom:964.410000px;}
.y43{bottom:965.850000px;}
.y13b{bottom:979.170000px;}
.y7{bottom:980.070000px;}
.y42{bottom:983.130000px;}
.y6{bottom:1000.230000px;}
.y3e{bottom:1001.670000px;}
.y5{bottom:1019.850000px;}
.y3d{bottom:1021.830000px;}
.y3c{bottom:1041.450000px;}
.y4{bottom:1060.530000px;}
.y3{bottom:1079.640000px;}
.y3b{bottom:1082.160000px;}
.y2{bottom:1099.440000px;}
.y3a{bottom:1101.240000px;}
.y1{bottom:1118.700000px;}
.y39{bottom:1121.040000px;}
.y38{bottom:1140.300000px;}
.hc{height:17.100000px;}
.hd{height:17.136000px;}
.hb{height:17.280000px;}
.h16{height:17.316000px;}
.h17{height:34.380000px;}
.h15{height:34.416000px;}
.h14{height:34.560000px;}
.h18{height:51.840000px;}
.h19{height:51.876000px;}
.h4{height:52.998047px;}
.hf{height:53.709961px;}
.h1b{height:55.503491px;}
.h9{height:58.651172px;}
.h8{height:60.226875px;}
.ha{height:61.423863px;}
.h1{height:65.010937px;}
.h2{height:65.884219px;}
.h7{height:66.757500px;}
.h1a{height:68.976000px;}
.h6{height:71.613281px;}
.h5{height:72.562500px;}
.h13{height:73.722656px;}
.h12{height:80.649961px;}
.h10{height:83.787539px;}
.h3{height:84.898125px;}
.he{height:213.840000px;}
.h11{height:248.580000px;}
.h0{height:1188.000000px;}
.wb{width:35.496000px;}
.w19{width:40.500000px;}
.w1a{width:47.160000px;}
.w1b{width:47.340000px;}
.w2{width:47.736000px;}
.w6{width:48.636000px;}
.wd{width:50.400000px;}
.wf{width:54.000000px;}
.w10{width:54.900000px;}
.we{width:57.600000px;}
.w15{width:60.696000px;}
.w16{width:81.000000px;}
.w8{width:84.816000px;}
.w17{width:87.840000px;}
.w4{width:87.876000px;}
.w5{width:94.500000px;}
.w12{width:101.196000px;}
.w13{width:108.000000px;}
.w3{width:135.900000px;}
.w7{width:138.060000px;}
.w11{width:149.976000px;}
.w14{width:181.980000px;}
.w18{width:195.510000px;}
.wc{width:215.670000px;}
.w9{width:356.580000px;}
.wa{width:360.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x34{left:8.100000px;}
.x2c{left:9.864000px;}
.x23{left:11.340000px;}
.x3d{left:13.005000px;}
.x12{left:14.220000px;}
.x2b{left:16.704000px;}
.x33{left:18.216000px;}
.x18{left:19.980000px;}
.x37{left:21.240000px;}
.x3f{left:22.725000px;}
.x1e{left:23.760000px;}
.x20{left:25.200000px;}
.x15{left:26.640000px;}
.x1b{left:27.720000px;}
.x21{left:31.134000px;}
.x1d{left:32.580000px;}
.x22{left:34.965000px;}
.x1a{left:36.405000px;}
.x24{left:38.565000px;}
.x17{left:39.600000px;}
.x40{left:41.040000px;}
.x13{left:43.734000px;}
.x1c{left:45.894000px;}
.x1f{left:50.754000px;}
.x19{left:52.554000px;}
.x38{left:58.356000px;}
.x2f{left:62.532000px;}
.x2e{left:64.620000px;}
.x3a{left:71.136000px;}
.x11{left:72.900000px;}
.x3b{left:74.334000px;}
.x41{left:79.194000px;}
.x6{left:80.999986px;}
.x27{left:82.620000px;}
.x7{left:90.359986px;}
.x3{left:93.059986px;}
.x2d{left:96.450000px;}
.x28{left:98.850000px;}
.xf{left:108.035986px;}
.x2{left:114.335986px;}
.x5{left:121.535986px;}
.x10{left:135.035986px;}
.x30{left:162.285000px;}
.x31{left:212.145000px;}
.x39{left:222.870000px;}
.x29{left:224.460000px;}
.x14{left:256.530000px;}
.xa{left:259.769986px;}
.xc{left:277.229986px;}
.x3c{left:290.370000px;}
.x42{left:303.915000px;}
.x2a{left:306.645000px;}
.x32{left:311.910000px;}
.x35{left:324.075000px;}
.x16{left:344.415000px;}
.x3e{left:351.075000px;}
.x9{left:358.094986px;}
.x8{left:367.094986px;}
.x36{left:374.475000px;}
.xb{left:377.174986px;}
.xe{left:391.574986px;}
.xd{left:395.354986px;}
.x26{left:452.954986px;}
.x25{left:456.374986px;}
.x1{left:459.074986px;}
.x4{left:531.104986px;}
@media print{
.v1{vertical-align:-69.760000pt;}
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.946667pt;}
.ls15{letter-spacing:-0.821333pt;}
.ls18{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:4.640000pt;}
.ls13{letter-spacing:12.960000pt;}
.ls17{letter-spacing:14.816000pt;}
.ls16{letter-spacing:39.136000pt;}
.lsa{letter-spacing:40.912640pt;}
.lsb{letter-spacing:82.848000pt;}
.ls1{letter-spacing:1329.546667pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.736000pt;}
.ws12{word-spacing:-12.592000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:117.968000pt;}
.wsf{word-spacing:129.978667pt;}
.wse{word-spacing:369.024000pt;}
._17{margin-left:-5.120000pt;}
._16{margin-left:-1.878400pt;}
._0{margin-left:-0.972373pt;}
._1{width:0.912000pt;}
._8{width:1.930667pt;}
._6{width:2.995840pt;}
._4{width:4.000000pt;}
._d{width:5.019093pt;}
._7{width:6.102613pt;}
._10{width:7.143680pt;}
._c{width:8.296533pt;}
._a{width:9.445547pt;}
._9{width:10.486400pt;}
._f{width:12.058240pt;}
._b{width:14.545920pt;}
._13{width:15.853227pt;}
._11{width:16.762453pt;}
._e{width:17.933867pt;}
._12{width:21.991680pt;}
._18{width:42.224000pt;}
._3{width:76.032000pt;}
._2{width:610.154667pt;}
._15{width:1092.913067pt;}
._14{width:1105.073067pt;}
._5{width:1521.653333pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:2.880000pt;}
.yaf{bottom:11.773333pt;}
.yc4{bottom:18.080000pt;}
.y139{bottom:18.234667pt;}
.yc1{bottom:18.240000pt;}
.ya6{bottom:27.360000pt;}
.y41{bottom:32.640000pt;}
.y12c{bottom:33.600000pt;}
.y133{bottom:33.640000pt;}
.y140{bottom:48.800000pt;}
.y40{bottom:49.120000pt;}
.yab{bottom:49.306667pt;}
.y9{bottom:51.872000pt;}
.ya7{bottom:54.786667pt;}
.y3f{bottom:62.912000pt;}
.y8{bottom:68.352000pt;}
.yac{bottom:71.226667pt;}
.yb6{bottom:71.333333pt;}
.ya8{bottom:82.173333pt;}
.ya5{bottom:82.786667pt;}
.yb7{bottom:91.293333pt;}
.yad{bottom:93.146667pt;}
.y15e{bottom:101.152000pt;}
.y77{bottom:101.632000pt;}
.y13a{bottom:102.272000pt;}
.ya2{bottom:103.072000pt;}
.yb2{bottom:103.973333pt;}
.ya9{bottom:109.600000pt;}
.y117{bottom:111.072000pt;}
.yb8{bottom:111.293333pt;}
.ye8{bottom:111.552000pt;}
.yb5{bottom:111.973333pt;}
.y37{bottom:113.952000pt;}
.yae{bottom:115.066667pt;}
.y15d{bottom:116.512000pt;}
.y76{bottom:117.632000pt;}
.y138{bottom:118.272000pt;}
.ya1{bottom:118.432000pt;}
.y71{bottom:122.432000pt;}
.y116{bottom:124.192000pt;}
.ye7{bottom:127.552000pt;}
.y36{bottom:129.152000pt;}
.yb3{bottom:129.946667pt;}
.yb9{bottom:131.266667pt;}
.y15c{bottom:131.872000pt;}
.y75{bottom:133.626667pt;}
.ya0{bottom:133.786667pt;}
.ya3{bottom:134.720000pt;}
.yaa{bottom:136.986667pt;}
.y70{bottom:137.786667pt;}
.y185{bottom:139.066667pt;}
.ya4{bottom:139.813333pt;}
.y115{bottom:140.186667pt;}
.ye6{bottom:143.546667pt;}
.y35{bottom:144.506667pt;}
.y15b{bottom:147.066667pt;}
.y9f{bottom:149.146667pt;}
.y73{bottom:149.626667pt;}
.yba{bottom:151.266667pt;}
.y184{bottom:152.826667pt;}
.y6f{bottom:153.146667pt;}
.y114{bottom:156.186667pt;}
.yb4{bottom:157.920000pt;}
.ye5{bottom:159.546667pt;}
.y34{bottom:159.866667pt;}
.y15a{bottom:162.426667pt;}
.y9e{bottom:164.506667pt;}
.y137{bottom:165.626667pt;}
.y183{bottom:166.586667pt;}
.y6e{bottom:168.506667pt;}
.yb0{bottom:170.080000pt;}
.ybb{bottom:171.226667pt;}
.y113{bottom:172.186667pt;}
.y33{bottom:175.226667pt;}
.ye4{bottom:175.546667pt;}
.y159{bottom:177.786667pt;}
.y9d{bottom:179.866667pt;}
.y182{bottom:180.506667pt;}
.y6d{bottom:183.866667pt;}
.y136{bottom:184.506667pt;}
.y112{bottom:188.186667pt;}
.y32{bottom:190.586667pt;}
.ye3{bottom:191.546667pt;}
.y158{bottom:193.146667pt;}
.y181{bottom:194.266667pt;}
.y9c{bottom:195.066667pt;}
.y6c{bottom:199.066667pt;}
.y135{bottom:199.866667pt;}
.ybc{bottom:203.613333pt;}
.y111{bottom:204.186667pt;}
.y31{bottom:205.946667pt;}
.ye2{bottom:207.546667pt;}
.y180{bottom:208.026667pt;}
.y157{bottom:208.506667pt;}
.y9b{bottom:210.426667pt;}
.y134{bottom:212.986667pt;}
.y6b{bottom:214.426667pt;}
.y110{bottom:220.186667pt;}
.y30{bottom:221.146667pt;}
.y17f{bottom:221.786667pt;}
.y156{bottom:223.866667pt;}
.y9a{bottom:225.786667pt;}
.ye1{bottom:226.426667pt;}
.y6a{bottom:229.786667pt;}
.y17e{bottom:235.706667pt;}
.y2f{bottom:236.506667pt;}
.y10f{bottom:239.066667pt;}
.y99{bottom:241.146667pt;}
.ye0{bottom:241.786667pt;}
.y132{bottom:244.186667pt;}
.y69{bottom:245.146667pt;}
.y17d{bottom:249.466667pt;}
.y2e{bottom:251.866667pt;}
.y10e{bottom:254.426667pt;}
.ydf{bottom:254.906667pt;}
.y98{bottom:256.506667pt;}
.y68{bottom:260.506667pt;}
.y17c{bottom:263.226667pt;}
.y2d{bottom:267.226667pt;}
.y10d{bottom:269.786667pt;}
.yde{bottom:270.906667pt;}
.y97{bottom:271.866667pt;}
.y67{bottom:275.906667pt;}
.y17b{bottom:277.026667pt;}
.y2c{bottom:282.626667pt;}
.y10c{bottom:285.186667pt;}
.ydd{bottom:286.946667pt;}
.y96{bottom:287.106667pt;}
.y131{bottom:290.946667pt;}
.y66{bottom:291.106667pt;}
.y2b{bottom:297.826667pt;}
.y10b{bottom:300.546667pt;}
.y95{bottom:302.466667pt;}
.ydc{bottom:302.946667pt;}
.y17a{bottom:304.706667pt;}
.y65{bottom:306.466667pt;}
.y2a{bottom:313.186667pt;}
.y10a{bottom:313.666667pt;}
.y155{bottom:315.906667pt;}
.y179{bottom:318.466667pt;}
.ydb{bottom:318.946667pt;}
.y64{bottom:321.826667pt;}
.y130{bottom:322.306667pt;}
.y29{bottom:328.546667pt;}
.y109{bottom:329.666667pt;}
.y154{bottom:331.106667pt;}
.y178{bottom:332.226667pt;}
.y94{bottom:333.186667pt;}
.yda{bottom:334.946667pt;}
.y63{bottom:337.186667pt;}
.y12f{bottom:341.186667pt;}
.y28{bottom:343.906667pt;}
.y108{bottom:345.666667pt;}
.y177{bottom:346.146667pt;}
.y153{bottom:346.466667pt;}
.y93{bottom:348.546667pt;}
.yd9{bottom:350.946667pt;}
.y62{bottom:352.546667pt;}
.y12e{bottom:356.546667pt;}
.y27{bottom:359.266667pt;}
.y176{bottom:359.906667pt;}
.y107{bottom:361.666667pt;}
.y152{bottom:361.826667pt;}
.y92{bottom:363.906667pt;}
.y61{bottom:367.906667pt;}
.y12d{bottom:369.666667pt;}
.yd8{bottom:369.826667pt;}
.y175{bottom:373.666667pt;}
.y26{bottom:374.626667pt;}
.y151{bottom:377.186667pt;}
.y106{bottom:377.666667pt;}
.y91{bottom:379.106667pt;}
.y60{bottom:383.106667pt;}
.yd7{bottom:385.186667pt;}
.y174{bottom:387.426667pt;}
.y25{bottom:389.826667pt;}
.y150{bottom:392.546667pt;}
.y105{bottom:393.666667pt;}
.y90{bottom:394.466667pt;}
.yb1{bottom:397.920000pt;}
.y5f{bottom:398.466667pt;}
.yd6{bottom:400.546667pt;}
.y12b{bottom:400.866667pt;}
.y173{bottom:401.346667pt;}
.y24{bottom:405.186667pt;}
.y14f{bottom:407.746667pt;}
.y104{bottom:409.666667pt;}
.y8f{bottom:409.826667pt;}
.y5e{bottom:413.826667pt;}
.y172{bottom:415.106667pt;}
.yd5{bottom:415.746667pt;}
.y23{bottom:420.546667pt;}
.y14e{bottom:423.106667pt;}
.y8e{bottom:425.186667pt;}
.y103{bottom:428.546667pt;}
.y171{bottom:428.866667pt;}
.y5d{bottom:429.186667pt;}
.yd4{bottom:431.106667pt;}
.y22{bottom:435.906667pt;}
.y14d{bottom:438.466667pt;}
.y8d{bottom:440.546667pt;}
.y170{bottom:442.626667pt;}
.y102{bottom:443.746667pt;}
.y5c{bottom:444.546667pt;}
.yd3{bottom:446.466667pt;}
.y12a{bottom:447.586667pt;}
.y14c{bottom:453.826667pt;}
.y8c{bottom:455.746667pt;}
.y16f{bottom:456.546667pt;}
.y101{bottom:456.866667pt;}
.yd2{bottom:459.586667pt;}
.y5b{bottom:459.746667pt;}
.y21{bottom:468.706667pt;}
.y14b{bottom:469.186667pt;}
.y16e{bottom:470.306667pt;}
.y8b{bottom:471.106667pt;}
.y100{bottom:472.866667pt;}
.y5a{bottom:475.106667pt;}
.yd1{bottom:475.586667pt;}
.y129{bottom:478.946667pt;}
.y16d{bottom:484.066667pt;}
.y14a{bottom:484.546667pt;}
.y20{bottom:485.346667pt;}
.y8a{bottom:486.466667pt;}
.yff{bottom:488.866667pt;}
.y59{bottom:490.466667pt;}
.yd0{bottom:491.586667pt;}
.y128{bottom:497.826667pt;}
.y149{bottom:499.773333pt;}
.y1f{bottom:500.733333pt;}
.y89{bottom:501.853333pt;}
.yfe{bottom:504.893333pt;}
.y58{bottom:505.853333pt;}
.ycf{bottom:507.613333pt;}
.y16c{bottom:511.773333pt;}
.y127{bottom:513.213333pt;}
.y148{bottom:515.133333pt;}
.y1e{bottom:516.573333pt;}
.y88{bottom:517.213333pt;}
.yfd{bottom:520.893333pt;}
.y57{bottom:521.213333pt;}
.yce{bottom:523.613333pt;}
.y16b{bottom:525.533333pt;}
.y126{bottom:528.573333pt;}
.y147{bottom:530.493333pt;}
.y87{bottom:532.573333pt;}
.y1d{bottom:533.053333pt;}
.y56{bottom:536.573333pt;}
.yfc{bottom:536.893333pt;}
.y16a{bottom:539.293333pt;}
.ycd{bottom:539.613333pt;}
.y125{bottom:541.693333pt;}
.y146{bottom:545.853333pt;}
.y86{bottom:547.773333pt;}
.y1c{bottom:548.253333pt;}
.y55{bottom:551.773333pt;}
.yfb{bottom:552.893333pt;}
.y169{bottom:553.053333pt;}
.ycc{bottom:555.613333pt;}
.y145{bottom:561.213333pt;}
.y85{bottom:563.133333pt;}
.y1b{bottom:563.613333pt;}
.y168{bottom:566.813333pt;}
.y54{bottom:567.133333pt;}
.ycb{bottom:571.613333pt;}
.yfa{bottom:571.773333pt;}
.y124{bottom:572.893333pt;}
.y144{bottom:576.573333pt;}
.y84{bottom:578.493333pt;}
.y1a{bottom:578.973333pt;}
.y167{bottom:580.733333pt;}
.y53{bottom:582.493333pt;}
.yf9{bottom:587.133333pt;}
.yca{bottom:587.613333pt;}
.y143{bottom:591.773333pt;}
.y83{bottom:593.853333pt;}
.y19{bottom:594.333333pt;}
.y166{bottom:594.493333pt;}
.y52{bottom:597.853333pt;}
.yf8{bottom:600.253333pt;}
.y123{bottom:604.253333pt;}
.yc9{bottom:606.493333pt;}
.y142{bottom:607.133333pt;}
.y165{bottom:608.253333pt;}
.y18{bottom:609.693333pt;}
.y51{bottom:613.213333pt;}
.yf7{bottom:616.253333pt;}
.y141{bottom:620.253333pt;}
.yc8{bottom:621.853333pt;}
.y164{bottom:622.013333pt;}
.y82{bottom:624.573333pt;}
.y17{bottom:624.893333pt;}
.y50{bottom:628.573333pt;}
.yf6{bottom:632.253333pt;}
.yc7{bottom:634.973333pt;}
.y122{bottom:635.613333pt;}
.y163{bottom:635.933333pt;}
.y81{bottom:639.773333pt;}
.y16{bottom:640.733333pt;}
.y4f{bottom:643.773333pt;}
.yf5{bottom:648.253333pt;}
.y162{bottom:649.693333pt;}
.yc6{bottom:650.973333pt;}
.y80{bottom:655.133333pt;}
.y4e{bottom:659.133333pt;}
.y15{bottom:660.573333pt;}
.y161{bottom:663.453333pt;}
.yf4{bottom:664.253333pt;}
.yc5{bottom:666.973333pt;}
.y7f{bottom:670.493333pt;}
.y4d{bottom:674.493333pt;}
.y160{bottom:677.213333pt;}
.y14{bottom:679.133333pt;}
.yf3{bottom:680.253333pt;}
.y7e{bottom:685.853333pt;}
.y72{bottom:689.853333pt;}
.y15f{bottom:691.133333pt;}
.y13{bottom:695.933333pt;}
.yf2{bottom:696.253333pt;}
.yc3{bottom:698.333333pt;}
.y7d{bottom:701.213333pt;}
.y4c{bottom:705.213333pt;}
.y12{bottom:712.733333pt;}
.y7c{bottom:714.333333pt;}
.yf1{bottom:715.133333pt;}
.y121{bottom:717.213333pt;}
.y4b{bottom:720.413333pt;}
.y13f{bottom:728.933333pt;}
.yc2{bottom:729.573333pt;}
.y11{bottom:729.733333pt;}
.y7b{bottom:730.373333pt;}
.yf0{bottom:730.533333pt;}
.y120{bottom:732.453333pt;}
.y4a{bottom:735.813333pt;}
.yef{bottom:743.653333pt;}
.yc0{bottom:745.573333pt;}
.y7a{bottom:746.373333pt;}
.y10{bottom:746.533333pt;}
.y11f{bottom:747.813333pt;}
.y49{bottom:751.173333pt;}
.yee{bottom:759.653333pt;}
.y13e{bottom:760.293333pt;}
.y79{bottom:762.373333pt;}
.y11e{bottom:763.173333pt;}
.yf{bottom:763.493333pt;}
.y48{bottom:766.533333pt;}
.yed{bottom:775.653333pt;}
.ybf{bottom:776.933333pt;}
.y78{bottom:778.373333pt;}
.y11d{bottom:778.533333pt;}
.ye{bottom:780.293333pt;}
.y47{bottom:781.893333pt;}
.yec{bottom:791.653333pt;}
.ybe{bottom:792.933333pt;}
.y11c{bottom:793.893333pt;}
.yd{bottom:797.253333pt;}
.y11b{bottom:807.013333pt;}
.yeb{bottom:807.653333pt;}
.ybd{bottom:808.933333pt;}
.y46{bottom:812.453333pt;}
.yc{bottom:815.173333pt;}
.y11a{bottom:823.013333pt;}
.yea{bottom:823.653333pt;}
.y45{bottom:827.813333pt;}
.yb{bottom:833.893333pt;}
.y119{bottom:839.013333pt;}
.ye9{bottom:839.653333pt;}
.y13d{bottom:841.893333pt;}
.y44{bottom:843.173333pt;}
.ya{bottom:852.293333pt;}
.y118{bottom:855.013333pt;}
.y13c{bottom:857.253333pt;}
.y43{bottom:858.533333pt;}
.y13b{bottom:870.373333pt;}
.y7{bottom:871.173333pt;}
.y42{bottom:873.893333pt;}
.y6{bottom:889.093333pt;}
.y3e{bottom:890.373333pt;}
.y5{bottom:906.533333pt;}
.y3d{bottom:908.293333pt;}
.y3c{bottom:925.733333pt;}
.y4{bottom:942.693333pt;}
.y3{bottom:959.680000pt;}
.y3b{bottom:961.920000pt;}
.y2{bottom:977.280000pt;}
.y3a{bottom:978.880000pt;}
.y1{bottom:994.400000pt;}
.y39{bottom:996.480000pt;}
.y38{bottom:1013.600000pt;}
.hc{height:15.200000pt;}
.hd{height:15.232000pt;}
.hb{height:15.360000pt;}
.h16{height:15.392000pt;}
.h17{height:30.560000pt;}
.h15{height:30.592000pt;}
.h14{height:30.720000pt;}
.h18{height:46.080000pt;}
.h19{height:46.112000pt;}
.h4{height:47.109375pt;}
.hf{height:47.742188pt;}
.h1b{height:49.336436pt;}
.h9{height:52.134375pt;}
.h8{height:53.535000pt;}
.ha{height:54.598989pt;}
.h1{height:57.787500pt;}
.h2{height:58.563750pt;}
.h7{height:59.340000pt;}
.h1a{height:61.312000pt;}
.h6{height:63.656250pt;}
.h5{height:64.500000pt;}
.h13{height:65.531250pt;}
.h12{height:71.688854pt;}
.h10{height:74.477812pt;}
.h3{height:75.465000pt;}
.he{height:190.080000pt;}
.h11{height:220.960000pt;}
.h0{height:1056.000000pt;}
.wb{width:31.552000pt;}
.w19{width:36.000000pt;}
.w1a{width:41.920000pt;}
.w1b{width:42.080000pt;}
.w2{width:42.432000pt;}
.w6{width:43.232000pt;}
.wd{width:44.800000pt;}
.wf{width:48.000000pt;}
.w10{width:48.800000pt;}
.we{width:51.200000pt;}
.w15{width:53.952000pt;}
.w16{width:72.000000pt;}
.w8{width:75.392000pt;}
.w17{width:78.080000pt;}
.w4{width:78.112000pt;}
.w5{width:84.000000pt;}
.w12{width:89.952000pt;}
.w13{width:96.000000pt;}
.w3{width:120.800000pt;}
.w7{width:122.720000pt;}
.w11{width:133.312000pt;}
.w14{width:161.760000pt;}
.w18{width:173.786667pt;}
.wc{width:191.706667pt;}
.w9{width:316.960000pt;}
.wa{width:320.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x34{left:7.200000pt;}
.x2c{left:8.768000pt;}
.x23{left:10.080000pt;}
.x3d{left:11.560000pt;}
.x12{left:12.640000pt;}
.x2b{left:14.848000pt;}
.x33{left:16.192000pt;}
.x18{left:17.760000pt;}
.x37{left:18.880000pt;}
.x3f{left:20.200000pt;}
.x1e{left:21.120000pt;}
.x20{left:22.400000pt;}
.x15{left:23.680000pt;}
.x1b{left:24.640000pt;}
.x21{left:27.674667pt;}
.x1d{left:28.960000pt;}
.x22{left:31.080000pt;}
.x1a{left:32.360000pt;}
.x24{left:34.280000pt;}
.x17{left:35.200000pt;}
.x40{left:36.480000pt;}
.x13{left:38.874667pt;}
.x1c{left:40.794667pt;}
.x1f{left:45.114667pt;}
.x19{left:46.714667pt;}
.x38{left:51.872000pt;}
.x2f{left:55.584000pt;}
.x2e{left:57.440000pt;}
.x3a{left:63.232000pt;}
.x11{left:64.800000pt;}
.x3b{left:66.074667pt;}
.x41{left:70.394667pt;}
.x6{left:71.999988pt;}
.x27{left:73.440000pt;}
.x7{left:80.319988pt;}
.x3{left:82.719988pt;}
.x2d{left:85.733333pt;}
.x28{left:87.866667pt;}
.xf{left:96.031988pt;}
.x2{left:101.631988pt;}
.x5{left:108.031988pt;}
.x10{left:120.031988pt;}
.x30{left:144.253333pt;}
.x31{left:188.573333pt;}
.x39{left:198.106667pt;}
.x29{left:199.520000pt;}
.x14{left:228.026667pt;}
.xa{left:230.906655pt;}
.xc{left:246.426655pt;}
.x3c{left:258.106667pt;}
.x42{left:270.146667pt;}
.x2a{left:272.573333pt;}
.x32{left:277.253333pt;}
.x35{left:288.066667pt;}
.x16{left:306.146667pt;}
.x3e{left:312.066667pt;}
.x9{left:318.306655pt;}
.x8{left:326.306655pt;}
.x36{left:332.866667pt;}
.xb{left:335.266655pt;}
.xe{left:348.066655pt;}
.xd{left:351.426655pt;}
.x26{left:402.626655pt;}
.x25{left:405.666655pt;}
.x1{left:408.066655pt;}
.x4{left:472.093321pt;}
}




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