
    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_f58ecea5245e3e74a8f1ca34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_74aeba13f6ecae96d7e0ba5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c956b47ffa981d3d71faac3.woff2')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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_90380125d5e76cf534ed0f79.woff2')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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_d36e0fa1692392da0b706e7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a400d223e80fed705b0887aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905762;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.223200px;}
.ls13{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.466800px;}
.lsd{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.666000px;}
.ls14{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.170720px;}
.ls2{letter-spacing:201.204000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.606000px;}
.ws3{word-spacing:-15.406800px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.526600px;}
.ws9{word-spacing:-14.479800px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-2.009760px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.538240px;}
._e{width:3.645360px;}
._c{width:4.683840px;}
._d{width:6.155280px;}
._b{width:7.366800px;}
._7{width:8.831520px;}
._6{width:10.039680px;}
._13{width:11.294640px;}
._5{width:12.669120px;}
._4{width:13.685040px;}
._a{width:15.955920px;}
._8{width:16.966320px;}
._f{width:18.183600px;}
._12{width:19.563360px;}
._10{width:20.600640px;}
._3{width:21.991680px;}
._19{width:23.127120px;}
._1a{width:24.262560px;}
._18{width:25.637040px;}
._17{width:26.772480px;}
._15{width:68.963040px;}
._16{width:71.185920px;}
._11{width:201.204000px;}
._1b{width:298.184880px;}
._14{width:344.285040px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.240000px;}
.ya0{bottom:3.420000px;}
.y89{bottom:3.600000px;}
.yea{bottom:3.774000px;}
.y82{bottom:3.780000px;}
.yba{bottom:3.816000px;}
.y5{bottom:4.500000px;}
.y7e{bottom:11.880000px;}
.y9e{bottom:12.060000px;}
.ya4{bottom:12.240000px;}
.ye8{bottom:12.414000px;}
.y85{bottom:12.420000px;}
.y7f{bottom:20.520000px;}
.y9f{bottom:20.700000px;}
.ya3{bottom:20.880000px;}
.ye9{bottom:21.054000px;}
.y84{bottom:21.060000px;}
.y192{bottom:21.105000px;}
.y4{bottom:24.120000px;}
.ybb{bottom:57.600000px;}
.y150{bottom:58.320000px;}
.y161{bottom:61.560000px;}
.y1bc{bottom:66.780000px;}
.yec{bottom:71.100000px;}
.y18d{bottom:71.280000px;}
.y115{bottom:73.440000px;}
.y14f{bottom:75.600000px;}
.y44{bottom:77.760000px;}
.y160{bottom:78.840000px;}
.y1bb{bottom:84.060000px;}
.y18c{bottom:88.560000px;}
.y114{bottom:90.720000px;}
.y14e{bottom:92.880000px;}
.y43{bottom:95.040000px;}
.y15f{bottom:96.120000px;}
.yb9{bottom:96.480000px;}
.y1ba{bottom:101.016000px;}
.y18b{bottom:105.876000px;}
.y113{bottom:108.036000px;}
.yeb{bottom:110.016000px;}
.y14d{bottom:110.196000px;}
.y42{bottom:112.356000px;}
.y15e{bottom:113.076000px;}
.y1bf{bottom:113.436000px;}
.yb8{bottom:118.296000px;}
.y1b9{bottom:118.656000px;}
.y18a{bottom:123.156000px;}
.y112{bottom:125.316000px;}
.y14c{bottom:127.476000px;}
.y41{bottom:129.636000px;}
.y15d{bottom:130.716000px;}
.y1b8{bottom:135.936000px;}
.y189{bottom:140.436000px;}
.y111{bottom:142.416000px;}
.y14b{bottom:144.576000px;}
.y7c{bottom:146.736000px;}
.y40{bottom:146.916000px;}
.y15c{bottom:147.816000px;}
.ye7{bottom:149.076000px;}
.y1b7{bottom:153.030000px;}
.yb7{bottom:157.350000px;}
.y188{bottom:157.530000px;}
.y110{bottom:159.690000px;}
.y14a{bottom:161.850000px;}
.y3f{bottom:164.010000px;}
.y15b{bottom:165.090000px;}
.y1b6{bottom:170.310000px;}
.y187{bottom:174.810000px;}
.y10f{bottom:176.970000px;}
.y149{bottom:179.130000px;}
.y3e{bottom:181.290000px;}
.y1be{bottom:182.010000px;}
.y15a{bottom:182.370000px;}
.y1b5{bottom:187.590000px;}
.ye6{bottom:188.130000px;}
.y186{bottom:192.090000px;}
.y10e{bottom:194.250000px;}
.y148{bottom:196.410000px;}
.y3d{bottom:198.570000px;}
.yb6{bottom:198.930000px;}
.y159{bottom:199.650000px;}
.y1b4{bottom:204.870000px;}
.y185{bottom:209.370000px;}
.ye5{bottom:209.910000px;}
.y10d{bottom:211.530000px;}
.y147{bottom:213.690000px;}
.y3c{bottom:215.850000px;}
.yb5{bottom:216.210000px;}
.y158{bottom:216.930000px;}
.y1b3{bottom:222.150000px;}
.y184{bottom:226.650000px;}
.y10c{bottom:228.450000px;}
.y146{bottom:230.970000px;}
.y7b{bottom:232.590000px;}
.y3b{bottom:233.130000px;}
.yb4{bottom:233.490000px;}
.y157{bottom:234.030000px;}
.y1b2{bottom:239.430000px;}
.y183{bottom:243.930000px;}
.y10b{bottom:246.990000px;}
.y145{bottom:248.070000px;}
.ye4{bottom:248.790000px;}
.y3a{bottom:250.230000px;}
.yb3{bottom:250.770000px;}
.y7a{bottom:250.950000px;}
.y156{bottom:251.310000px;}
.y1b1{bottom:256.530000px;}
.y182{bottom:261.030000px;}
.y10a{bottom:264.270000px;}
.y144{bottom:265.350000px;}
.y39{bottom:267.510000px;}
.yb2{bottom:267.870000px;}
.y79{bottom:268.590000px;}
.y1b0{bottom:273.810000px;}
.y181{bottom:278.310000px;}
.y109{bottom:281.550000px;}
.y143{bottom:282.630000px;}
.y38{bottom:284.790000px;}
.yb1{bottom:285.150000px;}
.y78{bottom:285.870000px;}
.ye3{bottom:290.370000px;}
.y1af{bottom:291.090000px;}
.y180{bottom:295.590000px;}
.y108{bottom:298.830000px;}
.y142{bottom:299.910000px;}
.y37{bottom:302.070000px;}
.yb0{bottom:302.430000px;}
.y77{bottom:303.150000px;}
.ye2{bottom:307.650000px;}
.y1ae{bottom:308.370000px;}
.y17f{bottom:312.870000px;}
.y107{bottom:316.110000px;}
.y141{bottom:317.190000px;}
.y36{bottom:319.350000px;}
.yaf{bottom:319.710000px;}
.y76{bottom:320.430000px;}
.ye1{bottom:324.930000px;}
.y1ad{bottom:325.650000px;}
.y17e{bottom:330.150000px;}
.y106{bottom:333.210000px;}
.y140{bottom:334.290000px;}
.y35{bottom:336.630000px;}
.y75{bottom:337.530000px;}
.ye0{bottom:342.210000px;}
.y1ac{bottom:342.930000px;}
.y17d{bottom:347.430000px;}
.y105{bottom:350.490000px;}
.y13f{bottom:351.570000px;}
.y34{bottom:353.730000px;}
.y74{bottom:354.810000px;}
.yae{bottom:355.350000px;}
.ydf{bottom:359.535000px;}
.y1ab{bottom:360.075000px;}
.y17c{bottom:364.575000px;}
.y104{bottom:367.815000px;}
.y13e{bottom:368.535000px;}
.y33{bottom:371.055000px;}
.y73{bottom:372.135000px;}
.yad{bottom:372.495000px;}
.yde{bottom:376.815000px;}
.y1aa{bottom:377.355000px;}
.y17b{bottom:381.855000px;}
.y103{bottom:385.095000px;}
.y13d{bottom:386.175000px;}
.y32{bottom:388.335000px;}
.y72{bottom:389.415000px;}
.yac{bottom:389.775000px;}
.ydd{bottom:393.915000px;}
.y1a9{bottom:394.635000px;}
.y17a{bottom:399.135000px;}
.y102{bottom:402.375000px;}
.y13c{bottom:403.455000px;}
.y31{bottom:405.615000px;}
.y71{bottom:406.695000px;}
.yab{bottom:407.055000px;}
.ydc{bottom:411.195000px;}
.y1a8{bottom:411.915000px;}
.y179{bottom:416.415000px;}
.y101{bottom:419.655000px;}
.y13b{bottom:420.735000px;}
.y30{bottom:422.895000px;}
.y70{bottom:423.975000px;}
.yaa{bottom:424.335000px;}
.ydb{bottom:428.115000px;}
.y1a7{bottom:429.195000px;}
.y178{bottom:433.695000px;}
.y100{bottom:436.395000px;}
.y13a{bottom:437.835000px;}
.y2f{bottom:440.175000px;}
.y6f{bottom:441.075000px;}
.ya9{bottom:441.615000px;}
.y1a6{bottom:446.475000px;}
.yda{bottom:446.835000px;}
.y177{bottom:450.975000px;}
.yff{bottom:455.115000px;}
.y2e{bottom:457.275000px;}
.y6e{bottom:458.355000px;}
.ya8{bottom:458.895000px;}
.y1a5{bottom:463.575000px;}
.yd9{bottom:464.115000px;}
.y176{bottom:468.075000px;}
.yfe{bottom:472.395000px;}
.y2d{bottom:474.555000px;}
.y155{bottom:475.275000px;}
.y6d{bottom:475.635000px;}
.y1a4{bottom:480.855000px;}
.yd8{bottom:481.395000px;}
.y175{bottom:485.355000px;}
.yfd{bottom:489.675000px;}
.y2c{bottom:491.835000px;}
.y6c{bottom:492.915000px;}
.ya7{bottom:497.415000px;}
.y1a3{bottom:498.135000px;}
.yd7{bottom:498.495000px;}
.y174{bottom:502.635000px;}
.yfc{bottom:506.955000px;}
.y2b{bottom:509.115000px;}
.y6b{bottom:509.835000px;}
.y154{bottom:510.195000px;}
.y1a2{bottom:515.415000px;}
.yd6{bottom:515.775000px;}
.ya6{bottom:519.195000px;}
.y173{bottom:519.915000px;}
.yfb{bottom:524.235000px;}
.y2a{bottom:526.395000px;}
.y1bd{bottom:526.935000px;}
.y6a{bottom:527.295000px;}
.y1a1{bottom:532.695000px;}
.yd5{bottom:533.055000px;}
.y172{bottom:537.195000px;}
.ya5{bottom:540.975000px;}
.yfa{bottom:541.335000px;}
.y29{bottom:543.495000px;}
.y69{bottom:544.575000px;}
.y1a0{bottom:549.795000px;}
.yd4{bottom:550.335000px;}
.y171{bottom:554.295000px;}
.yf9{bottom:558.255000px;}
.y139{bottom:558.615000px;}
.y28{bottom:560.775000px;}
.y68{bottom:561.855000px;}
.ya2{bottom:562.755000px;}
.y19f{bottom:567.075000px;}
.yd3{bottom:567.255000px;}
.y170{bottom:571.575000px;}
.y138{bottom:575.895000px;}
.yf8{bottom:576.975000px;}
.y27{bottom:578.055000px;}
.y67{bottom:579.135000px;}
.y19e{bottom:584.355000px;}
.yd2{bottom:588.855000px;}
.y137{bottom:593.175000px;}
.yf7{bottom:594.255000px;}
.y26{bottom:595.335000px;}
.y66{bottom:596.415000px;}
.ya1{bottom:601.635000px;}
.y16f{bottom:606.135000px;}
.y136{bottom:610.455000px;}
.yf6{bottom:611.535000px;}
.y25{bottom:612.615000px;}
.y65{bottom:613.335000px;}
.y153{bottom:613.695000px;}
.y19d{bottom:618.945000px;}
.y9d{bottom:623.445000px;}
.y135{bottom:627.585000px;}
.yd1{bottom:627.945000px;}
.yf5{bottom:628.665000px;}
.y24{bottom:629.925000px;}
.y64{bottom:630.825000px;}
.y19c{bottom:636.225000px;}
.y16e{bottom:640.725000px;}
.y134{bottom:644.865000px;}
.yf4{bottom:645.945000px;}
.y23{bottom:647.025000px;}
.y63{bottom:648.105000px;}
.y19b{bottom:653.325000px;}
.y16d{bottom:657.825000px;}
.y133{bottom:662.145000px;}
.yf3{bottom:663.225000px;}
.y22{bottom:664.305000px;}
.y9c{bottom:665.025000px;}
.y62{bottom:665.385000px;}
.yd0{bottom:667.005000px;}
.y19a{bottom:670.605000px;}
.y16c{bottom:675.105000px;}
.y132{bottom:679.425000px;}
.yf2{bottom:680.505000px;}
.y21{bottom:681.225000px;}
.y9b{bottom:682.305000px;}
.y61{bottom:682.665000px;}
.y199{bottom:687.885000px;}
.y16b{bottom:692.385000px;}
.y131{bottom:696.705000px;}
.yf1{bottom:697.425000px;}
.y20{bottom:698.865000px;}
.y9a{bottom:699.585000px;}
.y60{bottom:699.945000px;}
.y198{bottom:705.165000px;}
.ycf{bottom:705.885000px;}
.y16a{bottom:709.665000px;}
.y130{bottom:713.985000px;}
.y1f{bottom:716.145000px;}
.y5f{bottom:717.225000px;}
.y197{bottom:722.445000px;}
.y169{bottom:726.945000px;}
.y12f{bottom:731.085000px;}
.yf0{bottom:733.245000px;}
.y1e{bottom:733.425000px;}
.y99{bottom:734.145000px;}
.y5e{bottom:734.325000px;}
.y196{bottom:739.725000px;}
.y168{bottom:744.225000px;}
.yce{bottom:744.945000px;}
.y12e{bottom:748.365000px;}
.y1d{bottom:750.525000px;}
.y98{bottom:751.245000px;}
.y5d{bottom:751.605000px;}
.y195{bottom:756.825000px;}
.y167{bottom:760.965000px;}
.y12d{bottom:765.645000px;}
.y1c{bottom:767.805000px;}
.y97{bottom:768.525000px;}
.y5c{bottom:768.885000px;}
.y194{bottom:773.745000px;}
.y12c{bottom:782.565000px;}
.y166{bottom:782.745000px;}
.ycd{bottom:784.005000px;}
.y1b{bottom:785.085000px;}
.y96{bottom:785.445000px;}
.y5b{bottom:786.165000px;}
.y12b{bottom:800.205000px;}
.y1a{bottom:802.365000px;}
.y152{bottom:803.085000px;}
.y5a{bottom:803.445000px;}
.y95{bottom:804.165000px;}
.y165{bottom:804.525000px;}
.y193{bottom:812.805000px;}
.y12a{bottom:817.485000px;}
.yef{bottom:819.285000px;}
.y19{bottom:819.645000px;}
.y59{bottom:820.725000px;}
.y94{bottom:821.445000px;}
.ycc{bottom:825.585000px;}
.y164{bottom:826.305000px;}
.y129{bottom:834.585000px;}
.y18{bottom:836.925000px;}
.y58{bottom:837.825000px;}
.y93{bottom:838.545000px;}
.ycb{bottom:842.865000px;}
.y163{bottom:848.085000px;}
.y128{bottom:851.865000px;}
.y17{bottom:854.025000px;}
.y57{bottom:855.105000px;}
.y92{bottom:855.825000px;}
.y191{bottom:856.185000px;}
.yca{bottom:860.145000px;}
.y127{bottom:869.145000px;}
.y16{bottom:871.305000px;}
.y56{bottom:872.385000px;}
.y91{bottom:873.105000px;}
.yc9{bottom:877.290000px;}
.y126{bottom:886.110000px;}
.y15{bottom:888.630000px;}
.y55{bottom:889.710000px;}
.y90{bottom:890.430000px;}
.yc8{bottom:894.570000px;}
.y190{bottom:895.290000px;}
.y125{bottom:903.750000px;}
.y14{bottom:905.550000px;}
.y54{bottom:906.990000px;}
.y8f{bottom:907.710000px;}
.yc7{bottom:911.850000px;}
.y124{bottom:921.030000px;}
.y53{bottom:924.090000px;}
.y13{bottom:924.810000px;}
.y8e{bottom:924.990000px;}
.yc6{bottom:929.130000px;}
.y18f{bottom:934.350000px;}
.y123{bottom:938.130000px;}
.yee{bottom:941.010000px;}
.y52{bottom:941.370000px;}
.y8d{bottom:942.090000px;}
.y12{bottom:942.630000px;}
.yc5{bottom:946.410000px;}
.y122{bottom:955.410000px;}
.y51{bottom:958.650000px;}
.y8c{bottom:959.370000px;}
.y11{bottom:959.910000px;}
.yc4{bottom:963.150000px;}
.y121{bottom:972.330000px;}
.y50{bottom:975.930000px;}
.y8b{bottom:976.650000px;}
.y10{bottom:977.190000px;}
.yc3{bottom:981.870000px;}
.y120{bottom:991.050000px;}
.y4f{bottom:993.210000px;}
.y8a{bottom:993.570000px;}
.yf{bottom:994.290000px;}
.yc2{bottom:999.150000px;}
.y11f{bottom:1008.330000px;}
.y4e{bottom:1010.490000px;}
.ye{bottom:1011.570000px;}
.y88{bottom:1015.350000px;}
.yc1{bottom:1016.430000px;}
.y11e{bottom:1025.430000px;}
.y162{bottom:1027.230000px;}
.y4d{bottom:1027.590000px;}
.yd{bottom:1028.850000px;}
.yc0{bottom:1033.710000px;}
.y87{bottom:1036.950000px;}
.y11d{bottom:1042.710000px;}
.y4c{bottom:1044.870000px;}
.yc{bottom:1045.950000px;}
.ybf{bottom:1050.990000px;}
.y86{bottom:1058.730000px;}
.y11c{bottom:1059.630000px;}
.yed{bottom:1061.790000px;}
.y4b{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.ybe{bottom:1068.090000px;}
.y11b{bottom:1078.350000px;}
.y4a{bottom:1079.430000px;}
.y83{bottom:1080.510000px;}
.ya{bottom:1082.850000px;}
.ybd{bottom:1085.370000px;}
.y11a{bottom:1095.630000px;}
.y49{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.ybc{bottom:1102.650000px;}
.y119{bottom:1112.910000px;}
.y18e{bottom:1113.630000px;}
.y48{bottom:1113.990000px;}
.y81{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y118{bottom:1130.010000px;}
.y151{bottom:1130.730000px;}
.y47{bottom:1131.090000px;}
.y7d{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y117{bottom:1147.320000px;}
.y46{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y116{bottom:1164.240000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hc{height:17.100000px;}
.hb{height:17.280000px;}
.h9{height:17.316000px;}
.h8{height:34.380000px;}
.he{height:34.416000px;}
.ha{height:34.560000px;}
.hd{height:34.596000px;}
.hf{height:41.726953px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h6{height:60.226875px;}
.h7{height:61.423863px;}
.h5{height:65.884219px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:83.916000px;}
.w10{width:85.176000px;}
.w7{width:94.716000px;}
.w6{width:99.216000px;}
.wf{width:100.296000px;}
.w1d{width:104.220000px;}
.w1e{width:110.376000px;}
.w17{width:119.016000px;}
.w1b{width:131.076000px;}
.w1c{width:132.516000px;}
.wb{width:138.276000px;}
.w9{width:138.456000px;}
.w1a{width:143.316000px;}
.w16{width:149.976000px;}
.w14{width:151.950000px;}
.we{width:152.130000px;}
.w1f{width:155.010000px;}
.w13{width:156.270000px;}
.w11{width:162.930000px;}
.wd{width:172.110000px;}
.w5{width:179.490000px;}
.w4{width:183.990000px;}
.wc{width:215.490000px;}
.w3{width:231.870000px;}
.wa{width:263.775000px;}
.w8{width:283.350000px;}
.w15{width:359.715000px;}
.w12{width:376.275000px;}
.w19{width:389.805000px;}
.w18{width:395.355000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:1.260000px;}
.x14{left:2.340000px;}
.x2b{left:3.780000px;}
.x52{left:5.040000px;}
.x28{left:6.480000px;}
.x30{left:8.820000px;}
.x46{left:10.260000px;}
.x1b{left:11.700000px;}
.x20{left:13.500000px;}
.xf{left:14.760000px;}
.x3e{left:16.554000px;}
.x21{left:19.260000px;}
.x11{left:21.054000px;}
.x17{left:22.860000px;}
.x2f{left:24.840000px;}
.x22{left:25.920000px;}
.x2e{left:27.000000px;}
.x4e{left:29.340000px;}
.x18{left:30.780000px;}
.x1a{left:32.400000px;}
.x36{left:34.560000px;}
.x12{left:35.634000px;}
.x5d{left:36.720000px;}
.x3f{left:38.694000px;}
.x42{left:40.140000px;}
.x24{left:42.120000px;}
.x5b{left:43.596000px;}
.x1f{left:45.720000px;}
.x53{left:47.196000px;}
.x15{left:49.320000px;}
.xe{left:52.920000px;}
.x5{left:54.000000px;}
.x29{left:56.730000px;}
.x2d{left:59.790000px;}
.x4c{left:61.020000px;}
.x62{left:64.260000px;}
.x51{left:67.365000px;}
.x3b{left:68.625000px;}
.x48{left:70.560000px;}
.x39{left:72.225000px;}
.x43{left:73.974000px;}
.x3a{left:78.510000px;}
.xd{left:81.000000px;}
.x38{left:82.110000px;}
.x4a{left:84.825000px;}
.x1e{left:85.905000px;}
.x1d{left:88.230000px;}
.x45{left:90.180000px;}
.x26{left:95.934000px;}
.x47{left:97.020000px;}
.x44{left:98.280000px;}
.x37{left:103.905000px;}
.x23{left:108.354000px;}
.x1c{left:111.954000px;}
.x59{left:114.330000px;}
.x57{left:120.090000px;}
.x31{left:124.425000px;}
.x2c{left:128.559000px;}
.x5a{left:137.010000px;}
.x10{left:138.996000px;}
.x3d{left:140.256000px;}
.x54{left:141.345000px;}
.x25{left:149.976000px;}
.x49{left:158.070000px;}
.x50{left:161.505000px;}
.x55{left:169.770000px;}
.xc{left:180.570000px;}
.x58{left:181.650000px;}
.x33{left:193.530000px;}
.xb{left:194.790000px;}
.x5c{left:198.390000px;}
.x9{left:200.730000px;}
.x7{left:206.850000px;}
.x32{left:221.070000px;}
.x3c{left:223.230000px;}
.x6{left:224.310000px;}
.xa{left:247.710000px;}
.x3{left:256.710000px;}
.x2{left:268.770000px;}
.x40{left:305.535000px;}
.x5e{left:331.635000px;}
.x1{left:355.575000px;}
.x13{left:373.035000px;}
.x34{left:411.195000px;}
.x8{left:420.555000px;}
.x27{left:435.675000px;}
.x56{left:450.615000px;}
.x5f{left:466.305000px;}
.x16{left:559.365000px;}
.x4b{left:569.265000px;}
.x60{left:572.685000px;}
.x2a{left:576.465000px;}
.x35{left:585.645000px;}
.x41{left:683.970000px;}
.x61{left:685.410000px;}
.x4d{left:721.410000px;}
.x19{left:741.030000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.198400pt;}
.ls13{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.414933pt;}
.lsd{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.592000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls8{letter-spacing:57.040640pt;}
.ls2{letter-spacing:178.848000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.872000pt;}
.ws3{word-spacing:-13.694933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.912533pt;}
.ws9{word-spacing:-12.870933pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-1.786453pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.256213pt;}
._e{width:3.240320pt;}
._c{width:4.163413pt;}
._d{width:5.471360pt;}
._b{width:6.548267pt;}
._7{width:7.850240pt;}
._6{width:8.924160pt;}
._13{width:10.039680pt;}
._5{width:11.261440pt;}
._4{width:12.164480pt;}
._a{width:14.183040pt;}
._8{width:15.081173pt;}
._f{width:16.163200pt;}
._12{width:17.389653pt;}
._10{width:18.311680pt;}
._3{width:19.548160pt;}
._19{width:20.557440pt;}
._1a{width:21.566720pt;}
._18{width:22.788480pt;}
._17{width:23.797760pt;}
._15{width:61.300480pt;}
._16{width:63.276373pt;}
._11{width:178.848000pt;}
._1b{width:265.053227pt;}
._14{width:306.031147pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.880000pt;}
.ya0{bottom:3.040000pt;}
.y89{bottom:3.200000pt;}
.yea{bottom:3.354667pt;}
.y82{bottom:3.360000pt;}
.yba{bottom:3.392000pt;}
.y5{bottom:4.000000pt;}
.y7e{bottom:10.560000pt;}
.y9e{bottom:10.720000pt;}
.ya4{bottom:10.880000pt;}
.ye8{bottom:11.034667pt;}
.y85{bottom:11.040000pt;}
.y7f{bottom:18.240000pt;}
.y9f{bottom:18.400000pt;}
.ya3{bottom:18.560000pt;}
.ye9{bottom:18.714667pt;}
.y84{bottom:18.720000pt;}
.y192{bottom:18.760000pt;}
.y4{bottom:21.440000pt;}
.ybb{bottom:51.200000pt;}
.y150{bottom:51.840000pt;}
.y161{bottom:54.720000pt;}
.y1bc{bottom:59.360000pt;}
.yec{bottom:63.200000pt;}
.y18d{bottom:63.360000pt;}
.y115{bottom:65.280000pt;}
.y14f{bottom:67.200000pt;}
.y44{bottom:69.120000pt;}
.y160{bottom:70.080000pt;}
.y1bb{bottom:74.720000pt;}
.y18c{bottom:78.720000pt;}
.y114{bottom:80.640000pt;}
.y14e{bottom:82.560000pt;}
.y43{bottom:84.480000pt;}
.y15f{bottom:85.440000pt;}
.yb9{bottom:85.760000pt;}
.y1ba{bottom:89.792000pt;}
.y18b{bottom:94.112000pt;}
.y113{bottom:96.032000pt;}
.yeb{bottom:97.792000pt;}
.y14d{bottom:97.952000pt;}
.y42{bottom:99.872000pt;}
.y15e{bottom:100.512000pt;}
.y1bf{bottom:100.832000pt;}
.yb8{bottom:105.152000pt;}
.y1b9{bottom:105.472000pt;}
.y18a{bottom:109.472000pt;}
.y112{bottom:111.392000pt;}
.y14c{bottom:113.312000pt;}
.y41{bottom:115.232000pt;}
.y15d{bottom:116.192000pt;}
.y1b8{bottom:120.832000pt;}
.y189{bottom:124.832000pt;}
.y111{bottom:126.592000pt;}
.y14b{bottom:128.512000pt;}
.y7c{bottom:130.432000pt;}
.y40{bottom:130.592000pt;}
.y15c{bottom:131.392000pt;}
.ye7{bottom:132.512000pt;}
.y1b7{bottom:136.026667pt;}
.yb7{bottom:139.866667pt;}
.y188{bottom:140.026667pt;}
.y110{bottom:141.946667pt;}
.y14a{bottom:143.866667pt;}
.y3f{bottom:145.786667pt;}
.y15b{bottom:146.746667pt;}
.y1b6{bottom:151.386667pt;}
.y187{bottom:155.386667pt;}
.y10f{bottom:157.306667pt;}
.y149{bottom:159.226667pt;}
.y3e{bottom:161.146667pt;}
.y1be{bottom:161.786667pt;}
.y15a{bottom:162.106667pt;}
.y1b5{bottom:166.746667pt;}
.ye6{bottom:167.226667pt;}
.y186{bottom:170.746667pt;}
.y10e{bottom:172.666667pt;}
.y148{bottom:174.586667pt;}
.y3d{bottom:176.506667pt;}
.yb6{bottom:176.826667pt;}
.y159{bottom:177.466667pt;}
.y1b4{bottom:182.106667pt;}
.y185{bottom:186.106667pt;}
.ye5{bottom:186.586667pt;}
.y10d{bottom:188.026667pt;}
.y147{bottom:189.946667pt;}
.y3c{bottom:191.866667pt;}
.yb5{bottom:192.186667pt;}
.y158{bottom:192.826667pt;}
.y1b3{bottom:197.466667pt;}
.y184{bottom:201.466667pt;}
.y10c{bottom:203.066667pt;}
.y146{bottom:205.306667pt;}
.y7b{bottom:206.746667pt;}
.y3b{bottom:207.226667pt;}
.yb4{bottom:207.546667pt;}
.y157{bottom:208.026667pt;}
.y1b2{bottom:212.826667pt;}
.y183{bottom:216.826667pt;}
.y10b{bottom:219.546667pt;}
.y145{bottom:220.506667pt;}
.ye4{bottom:221.146667pt;}
.y3a{bottom:222.426667pt;}
.yb3{bottom:222.906667pt;}
.y7a{bottom:223.066667pt;}
.y156{bottom:223.386667pt;}
.y1b1{bottom:228.026667pt;}
.y182{bottom:232.026667pt;}
.y10a{bottom:234.906667pt;}
.y144{bottom:235.866667pt;}
.y39{bottom:237.786667pt;}
.yb2{bottom:238.106667pt;}
.y79{bottom:238.746667pt;}
.y1b0{bottom:243.386667pt;}
.y181{bottom:247.386667pt;}
.y109{bottom:250.266667pt;}
.y143{bottom:251.226667pt;}
.y38{bottom:253.146667pt;}
.yb1{bottom:253.466667pt;}
.y78{bottom:254.106667pt;}
.ye3{bottom:258.106667pt;}
.y1af{bottom:258.746667pt;}
.y180{bottom:262.746667pt;}
.y108{bottom:265.626667pt;}
.y142{bottom:266.586667pt;}
.y37{bottom:268.506667pt;}
.yb0{bottom:268.826667pt;}
.y77{bottom:269.466667pt;}
.ye2{bottom:273.466667pt;}
.y1ae{bottom:274.106667pt;}
.y17f{bottom:278.106667pt;}
.y107{bottom:280.986667pt;}
.y141{bottom:281.946667pt;}
.y36{bottom:283.866667pt;}
.yaf{bottom:284.186667pt;}
.y76{bottom:284.826667pt;}
.ye1{bottom:288.826667pt;}
.y1ad{bottom:289.466667pt;}
.y17e{bottom:293.466667pt;}
.y106{bottom:296.186667pt;}
.y140{bottom:297.146667pt;}
.y35{bottom:299.226667pt;}
.y75{bottom:300.026667pt;}
.ye0{bottom:304.186667pt;}
.y1ac{bottom:304.826667pt;}
.y17d{bottom:308.826667pt;}
.y105{bottom:311.546667pt;}
.y13f{bottom:312.506667pt;}
.y34{bottom:314.426667pt;}
.y74{bottom:315.386667pt;}
.yae{bottom:315.866667pt;}
.ydf{bottom:319.586667pt;}
.y1ab{bottom:320.066667pt;}
.y17c{bottom:324.066667pt;}
.y104{bottom:326.946667pt;}
.y13e{bottom:327.586667pt;}
.y33{bottom:329.826667pt;}
.y73{bottom:330.786667pt;}
.yad{bottom:331.106667pt;}
.yde{bottom:334.946667pt;}
.y1aa{bottom:335.426667pt;}
.y17b{bottom:339.426667pt;}
.y103{bottom:342.306667pt;}
.y13d{bottom:343.266667pt;}
.y32{bottom:345.186667pt;}
.y72{bottom:346.146667pt;}
.yac{bottom:346.466667pt;}
.ydd{bottom:350.146667pt;}
.y1a9{bottom:350.786667pt;}
.y17a{bottom:354.786667pt;}
.y102{bottom:357.666667pt;}
.y13c{bottom:358.626667pt;}
.y31{bottom:360.546667pt;}
.y71{bottom:361.506667pt;}
.yab{bottom:361.826667pt;}
.ydc{bottom:365.506667pt;}
.y1a8{bottom:366.146667pt;}
.y179{bottom:370.146667pt;}
.y101{bottom:373.026667pt;}
.y13b{bottom:373.986667pt;}
.y30{bottom:375.906667pt;}
.y70{bottom:376.866667pt;}
.yaa{bottom:377.186667pt;}
.ydb{bottom:380.546667pt;}
.y1a7{bottom:381.506667pt;}
.y178{bottom:385.506667pt;}
.y100{bottom:387.906667pt;}
.y13a{bottom:389.186667pt;}
.y2f{bottom:391.266667pt;}
.y6f{bottom:392.066667pt;}
.ya9{bottom:392.546667pt;}
.y1a6{bottom:396.866667pt;}
.yda{bottom:397.186667pt;}
.y177{bottom:400.866667pt;}
.yff{bottom:404.546667pt;}
.y2e{bottom:406.466667pt;}
.y6e{bottom:407.426667pt;}
.ya8{bottom:407.906667pt;}
.y1a5{bottom:412.066667pt;}
.yd9{bottom:412.546667pt;}
.y176{bottom:416.066667pt;}
.yfe{bottom:419.906667pt;}
.y2d{bottom:421.826667pt;}
.y155{bottom:422.466667pt;}
.y6d{bottom:422.786667pt;}
.y1a4{bottom:427.426667pt;}
.yd8{bottom:427.906667pt;}
.y175{bottom:431.426667pt;}
.yfd{bottom:435.266667pt;}
.y2c{bottom:437.186667pt;}
.y6c{bottom:438.146667pt;}
.ya7{bottom:442.146667pt;}
.y1a3{bottom:442.786667pt;}
.yd7{bottom:443.106667pt;}
.y174{bottom:446.786667pt;}
.yfc{bottom:450.626667pt;}
.y2b{bottom:452.546667pt;}
.y6b{bottom:453.186667pt;}
.y154{bottom:453.506667pt;}
.y1a2{bottom:458.146667pt;}
.yd6{bottom:458.466667pt;}
.ya6{bottom:461.506667pt;}
.y173{bottom:462.146667pt;}
.yfb{bottom:465.986667pt;}
.y2a{bottom:467.906667pt;}
.y1bd{bottom:468.386667pt;}
.y6a{bottom:468.706667pt;}
.y1a1{bottom:473.506667pt;}
.yd5{bottom:473.826667pt;}
.y172{bottom:477.506667pt;}
.ya5{bottom:480.866667pt;}
.yfa{bottom:481.186667pt;}
.y29{bottom:483.106667pt;}
.y69{bottom:484.066667pt;}
.y1a0{bottom:488.706667pt;}
.yd4{bottom:489.186667pt;}
.y171{bottom:492.706667pt;}
.yf9{bottom:496.226667pt;}
.y139{bottom:496.546667pt;}
.y28{bottom:498.466667pt;}
.y68{bottom:499.426667pt;}
.ya2{bottom:500.226667pt;}
.y19f{bottom:504.066667pt;}
.yd3{bottom:504.226667pt;}
.y170{bottom:508.066667pt;}
.y138{bottom:511.906667pt;}
.yf8{bottom:512.866667pt;}
.y27{bottom:513.826667pt;}
.y67{bottom:514.786667pt;}
.y19e{bottom:519.426667pt;}
.yd2{bottom:523.426667pt;}
.y137{bottom:527.266667pt;}
.yf7{bottom:528.226667pt;}
.y26{bottom:529.186667pt;}
.y66{bottom:530.146667pt;}
.ya1{bottom:534.786667pt;}
.y16f{bottom:538.786667pt;}
.y136{bottom:542.626667pt;}
.yf6{bottom:543.586667pt;}
.y25{bottom:544.546667pt;}
.y65{bottom:545.186667pt;}
.y153{bottom:545.506667pt;}
.y19d{bottom:550.173333pt;}
.y9d{bottom:554.173333pt;}
.y135{bottom:557.853333pt;}
.yd1{bottom:558.173333pt;}
.yf5{bottom:558.813333pt;}
.y24{bottom:559.933333pt;}
.y64{bottom:560.733333pt;}
.y19c{bottom:565.533333pt;}
.y16e{bottom:569.533333pt;}
.y134{bottom:573.213333pt;}
.yf4{bottom:574.173333pt;}
.y23{bottom:575.133333pt;}
.y63{bottom:576.093333pt;}
.y19b{bottom:580.733333pt;}
.y16d{bottom:584.733333pt;}
.y133{bottom:588.573333pt;}
.yf3{bottom:589.533333pt;}
.y22{bottom:590.493333pt;}
.y9c{bottom:591.133333pt;}
.y62{bottom:591.453333pt;}
.yd0{bottom:592.893333pt;}
.y19a{bottom:596.093333pt;}
.y16c{bottom:600.093333pt;}
.y132{bottom:603.933333pt;}
.yf2{bottom:604.893333pt;}
.y21{bottom:605.533333pt;}
.y9b{bottom:606.493333pt;}
.y61{bottom:606.813333pt;}
.y199{bottom:611.453333pt;}
.y16b{bottom:615.453333pt;}
.y131{bottom:619.293333pt;}
.yf1{bottom:619.933333pt;}
.y20{bottom:621.213333pt;}
.y9a{bottom:621.853333pt;}
.y60{bottom:622.173333pt;}
.y198{bottom:626.813333pt;}
.ycf{bottom:627.453333pt;}
.y16a{bottom:630.813333pt;}
.y130{bottom:634.653333pt;}
.y1f{bottom:636.573333pt;}
.y5f{bottom:637.533333pt;}
.y197{bottom:642.173333pt;}
.y169{bottom:646.173333pt;}
.y12f{bottom:649.853333pt;}
.yf0{bottom:651.773333pt;}
.y1e{bottom:651.933333pt;}
.y99{bottom:652.573333pt;}
.y5e{bottom:652.733333pt;}
.y196{bottom:657.533333pt;}
.y168{bottom:661.533333pt;}
.yce{bottom:662.173333pt;}
.y12e{bottom:665.213333pt;}
.y1d{bottom:667.133333pt;}
.y98{bottom:667.773333pt;}
.y5d{bottom:668.093333pt;}
.y195{bottom:672.733333pt;}
.y167{bottom:676.413333pt;}
.y12d{bottom:680.573333pt;}
.y1c{bottom:682.493333pt;}
.y97{bottom:683.133333pt;}
.y5c{bottom:683.453333pt;}
.y194{bottom:687.773333pt;}
.y12c{bottom:695.613333pt;}
.y166{bottom:695.773333pt;}
.ycd{bottom:696.893333pt;}
.y1b{bottom:697.853333pt;}
.y96{bottom:698.173333pt;}
.y5b{bottom:698.813333pt;}
.y12b{bottom:711.293333pt;}
.y1a{bottom:713.213333pt;}
.y152{bottom:713.853333pt;}
.y5a{bottom:714.173333pt;}
.y95{bottom:714.813333pt;}
.y165{bottom:715.133333pt;}
.y193{bottom:722.493333pt;}
.y12a{bottom:726.653333pt;}
.yef{bottom:728.253333pt;}
.y19{bottom:728.573333pt;}
.y59{bottom:729.533333pt;}
.y94{bottom:730.173333pt;}
.ycc{bottom:733.853333pt;}
.y164{bottom:734.493333pt;}
.y129{bottom:741.853333pt;}
.y18{bottom:743.933333pt;}
.y58{bottom:744.733333pt;}
.y93{bottom:745.373333pt;}
.ycb{bottom:749.213333pt;}
.y163{bottom:753.853333pt;}
.y128{bottom:757.213333pt;}
.y17{bottom:759.133333pt;}
.y57{bottom:760.093333pt;}
.y92{bottom:760.733333pt;}
.y191{bottom:761.053333pt;}
.yca{bottom:764.573333pt;}
.y127{bottom:772.573333pt;}
.y16{bottom:774.493333pt;}
.y56{bottom:775.453333pt;}
.y91{bottom:776.093333pt;}
.yc9{bottom:779.813333pt;}
.y126{bottom:787.653333pt;}
.y15{bottom:789.893333pt;}
.y55{bottom:790.853333pt;}
.y90{bottom:791.493333pt;}
.yc8{bottom:795.173333pt;}
.y190{bottom:795.813333pt;}
.y125{bottom:803.333333pt;}
.y14{bottom:804.933333pt;}
.y54{bottom:806.213333pt;}
.y8f{bottom:806.853333pt;}
.yc7{bottom:810.533333pt;}
.y124{bottom:818.693333pt;}
.y53{bottom:821.413333pt;}
.y13{bottom:822.053333pt;}
.y8e{bottom:822.213333pt;}
.yc6{bottom:825.893333pt;}
.y18f{bottom:830.533333pt;}
.y123{bottom:833.893333pt;}
.yee{bottom:836.453333pt;}
.y52{bottom:836.773333pt;}
.y8d{bottom:837.413333pt;}
.y12{bottom:837.893333pt;}
.yc5{bottom:841.253333pt;}
.y122{bottom:849.253333pt;}
.y51{bottom:852.133333pt;}
.y8c{bottom:852.773333pt;}
.y11{bottom:853.253333pt;}
.yc4{bottom:856.133333pt;}
.y121{bottom:864.293333pt;}
.y50{bottom:867.493333pt;}
.y8b{bottom:868.133333pt;}
.y10{bottom:868.613333pt;}
.yc3{bottom:872.773333pt;}
.y120{bottom:880.933333pt;}
.y4f{bottom:882.853333pt;}
.y8a{bottom:883.173333pt;}
.yf{bottom:883.813333pt;}
.yc2{bottom:888.133333pt;}
.y11f{bottom:896.293333pt;}
.y4e{bottom:898.213333pt;}
.ye{bottom:899.173333pt;}
.y88{bottom:902.533333pt;}
.yc1{bottom:903.493333pt;}
.y11e{bottom:911.493333pt;}
.y162{bottom:913.093333pt;}
.y4d{bottom:913.413333pt;}
.yd{bottom:914.533333pt;}
.yc0{bottom:918.853333pt;}
.y87{bottom:921.733333pt;}
.y11d{bottom:926.853333pt;}
.y4c{bottom:928.773333pt;}
.yc{bottom:929.733333pt;}
.ybf{bottom:934.213333pt;}
.y86{bottom:941.093333pt;}
.y11c{bottom:941.893333pt;}
.yed{bottom:943.813333pt;}
.y4b{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.ybe{bottom:949.413333pt;}
.y11b{bottom:958.533333pt;}
.y4a{bottom:959.493333pt;}
.y83{bottom:960.453333pt;}
.ya{bottom:962.533333pt;}
.ybd{bottom:964.773333pt;}
.y11a{bottom:973.893333pt;}
.y49{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.ybc{bottom:980.133333pt;}
.y119{bottom:989.253333pt;}
.y18e{bottom:989.893333pt;}
.y48{bottom:990.213333pt;}
.y81{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y118{bottom:1004.453333pt;}
.y151{bottom:1005.093333pt;}
.y47{bottom:1005.413333pt;}
.y7d{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y117{bottom:1019.840000pt;}
.y46{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y116{bottom:1034.880000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hc{height:15.200000pt;}
.hb{height:15.360000pt;}
.h9{height:15.392000pt;}
.h8{height:30.560000pt;}
.he{height:30.592000pt;}
.ha{height:30.720000pt;}
.hd{height:30.752000pt;}
.hf{height:37.090625pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h6{height:53.535000pt;}
.h7{height:54.598989pt;}
.h5{height:58.563750pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:74.592000pt;}
.w10{width:75.712000pt;}
.w7{width:84.192000pt;}
.w6{width:88.192000pt;}
.wf{width:89.152000pt;}
.w1d{width:92.640000pt;}
.w1e{width:98.112000pt;}
.w17{width:105.792000pt;}
.w1b{width:116.512000pt;}
.w1c{width:117.792000pt;}
.wb{width:122.912000pt;}
.w9{width:123.072000pt;}
.w1a{width:127.392000pt;}
.w16{width:133.312000pt;}
.w14{width:135.066667pt;}
.we{width:135.226667pt;}
.w1f{width:137.786667pt;}
.w13{width:138.906667pt;}
.w11{width:144.826667pt;}
.wd{width:152.986667pt;}
.w5{width:159.546667pt;}
.w4{width:163.546667pt;}
.wc{width:191.546667pt;}
.w3{width:206.106667pt;}
.wa{width:234.466667pt;}
.w8{width:251.866667pt;}
.w15{width:319.746667pt;}
.w12{width:334.466667pt;}
.w19{width:346.493333pt;}
.w18{width:351.426667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.120000pt;}
.x14{left:2.080000pt;}
.x2b{left:3.360000pt;}
.x52{left:4.480000pt;}
.x28{left:5.760000pt;}
.x30{left:7.840000pt;}
.x46{left:9.120000pt;}
.x1b{left:10.400000pt;}
.x20{left:12.000000pt;}
.xf{left:13.120000pt;}
.x3e{left:14.714667pt;}
.x21{left:17.120000pt;}
.x11{left:18.714667pt;}
.x17{left:20.320000pt;}
.x2f{left:22.080000pt;}
.x22{left:23.040000pt;}
.x2e{left:24.000000pt;}
.x4e{left:26.080000pt;}
.x18{left:27.360000pt;}
.x1a{left:28.800000pt;}
.x36{left:30.720000pt;}
.x12{left:31.674667pt;}
.x5d{left:32.640000pt;}
.x3f{left:34.394667pt;}
.x42{left:35.680000pt;}
.x24{left:37.440000pt;}
.x5b{left:38.752000pt;}
.x1f{left:40.640000pt;}
.x53{left:41.952000pt;}
.x15{left:43.840000pt;}
.xe{left:47.040000pt;}
.x5{left:48.000000pt;}
.x29{left:50.426667pt;}
.x2d{left:53.146667pt;}
.x4c{left:54.240000pt;}
.x62{left:57.120000pt;}
.x51{left:59.880000pt;}
.x3b{left:61.000000pt;}
.x48{left:62.720000pt;}
.x39{left:64.200000pt;}
.x43{left:65.754667pt;}
.x3a{left:69.786667pt;}
.xd{left:72.000000pt;}
.x38{left:72.986667pt;}
.x4a{left:75.400000pt;}
.x1e{left:76.360000pt;}
.x1d{left:78.426667pt;}
.x45{left:80.160000pt;}
.x26{left:85.274667pt;}
.x47{left:86.240000pt;}
.x44{left:87.360000pt;}
.x37{left:92.360000pt;}
.x23{left:96.314667pt;}
.x1c{left:99.514667pt;}
.x59{left:101.626667pt;}
.x57{left:106.746667pt;}
.x31{left:110.600000pt;}
.x2c{left:114.274667pt;}
.x5a{left:121.786667pt;}
.x10{left:123.552000pt;}
.x3d{left:124.672000pt;}
.x54{left:125.640000pt;}
.x25{left:133.312000pt;}
.x49{left:140.506667pt;}
.x50{left:143.560000pt;}
.x55{left:150.906667pt;}
.xc{left:160.506667pt;}
.x58{left:161.466667pt;}
.x33{left:172.026667pt;}
.xb{left:173.146667pt;}
.x5c{left:176.346667pt;}
.x9{left:178.426667pt;}
.x7{left:183.866667pt;}
.x32{left:196.506667pt;}
.x3c{left:198.426667pt;}
.x6{left:199.386667pt;}
.xa{left:220.186667pt;}
.x3{left:228.186667pt;}
.x2{left:238.906667pt;}
.x40{left:271.586667pt;}
.x5e{left:294.786667pt;}
.x1{left:316.066667pt;}
.x13{left:331.586667pt;}
.x34{left:365.506667pt;}
.x8{left:373.826667pt;}
.x27{left:387.266667pt;}
.x56{left:400.546667pt;}
.x5f{left:414.493333pt;}
.x16{left:497.213333pt;}
.x4b{left:506.013333pt;}
.x60{left:509.053333pt;}
.x2a{left:512.413333pt;}
.x35{left:520.573333pt;}
.x41{left:607.973333pt;}
.x61{left:609.253333pt;}
.x4d{left:641.253333pt;}
.x19{left:658.693333pt;}
.x4{left:721.893333pt;}
}




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