
    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_7a01b4c24b73a0f82a60628e.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_b73e590006d3f2e1d836e1cf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_28374e1ea4913989569dac19.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49db75aa4f72f087a666438b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_369267cefb3d3d0eff020638.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_92d50c2db0f0bb5f5c6bf709.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.584400px;}
.ls4{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.828000px;}
.lsb{letter-spacing:1.080000px;}
.ls14{letter-spacing:16.506720px;}
.ls2{letter-spacing:31.140000px;}
.ls12{letter-spacing:46.026720px;}
.ls5{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.274000px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.080000px;}
._0{width:1.195200px;}
._2{width:3.018000px;}
._7{width:4.123440px;}
._8{width:5.322960px;}
._d{width:6.697440px;}
._c{width:7.704720px;}
._3{width:9.023760px;}
._6{width:10.396800px;}
._4{width:11.414160px;}
._5{width:12.669120px;}
._a{width:13.685040px;}
._11{width:15.950640px;}
._e{width:16.976160px;}
._f{width:18.529920px;}
._12{width:20.475360px;}
._10{width:21.513600px;}
._13{width:22.888080px;}
._14{width:24.740640px;}
._1d{width:26.055360px;}
._b{width:31.140000px;}
._1c{width:143.920560px;}
._19{width:158.674080px;}
._9{width:201.204000px;}
._1b{width:321.777840px;}
._18{width:457.642560px;}
._15{width:528.124800px;}
._16{width:764.551200px;}
._1e{width:809.659920px;}
._17{width:1046.586720px;}
._1a{width:1074.071280px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y194{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.240000px;}
.yc7{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.yc9{bottom:3.780000px;}
.ye9{bottom:3.810000px;}
.y10a{bottom:3.825000px;}
.y4{bottom:21.240000px;}
.ycb{bottom:58.140000px;}
.y1b7{bottom:61.200000px;}
.yb5{bottom:61.560000px;}
.y45{bottom:63.180000px;}
.y133{bottom:70.200000px;}
.y105{bottom:70.920000px;}
.y85{bottom:74.520000px;}
.y159{bottom:76.680000px;}
.y1b6{bottom:78.480000px;}
.yb4{bottom:78.840000px;}
.yca{bottom:79.920000px;}
.y44{bottom:80.820000px;}
.y1b0{bottom:82.080000px;}
.y191{bottom:87.120000px;}
.y132{bottom:87.480000px;}
.ybf{bottom:90.720000px;}
.y84{bottom:91.800000px;}
.y104{bottom:92.700000px;}
.y158{bottom:93.780000px;}
.yb3{bottom:96.120000px;}
.y43{bottom:98.136000px;}
.y1af{bottom:99.036000px;}
.yc8{bottom:101.736000px;}
.y190{bottom:104.436000px;}
.y131{bottom:105.156000px;}
.ybe{bottom:108.036000px;}
.y83{bottom:109.116000px;}
.y157{bottom:111.096000px;}
.yb2{bottom:113.436000px;}
.y103{bottom:114.516000px;}
.y42{bottom:115.416000px;}
.y1ae{bottom:120.816000px;}
.y18f{bottom:121.536000px;}
.y130{bottom:122.436000px;}
.yc6{bottom:123.516000px;}
.ybd{bottom:125.316000px;}
.y82{bottom:126.396000px;}
.y156{bottom:128.376000px;}
.yb1{bottom:130.716000px;}
.y41{bottom:132.516000px;}
.y102{bottom:136.296000px;}
.y18e{bottom:138.816000px;}
.y12f{bottom:139.536000px;}
.ybc{bottom:142.236000px;}
.y1ad{bottom:142.596000px;}
.y81{bottom:143.496000px;}
.y155{bottom:145.296000px;}
.yb0{bottom:147.456000px;}
.yc5{bottom:147.816000px;}
.y40{bottom:149.796000px;}
.ybb{bottom:156.090000px;}
.y12e{bottom:156.810000px;}
.y101{bottom:158.070000px;}
.y80{bottom:160.770000px;}
.y154{bottom:162.930000px;}
.y1ac{bottom:164.370000px;}
.yaf{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.y18d{bottom:173.370000px;}
.y12d{bottom:174.090000px;}
.y7f{bottom:178.050000px;}
.y100{bottom:179.670000px;}
.y153{bottom:180.030000px;}
.yae{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.y1ab{bottom:185.970000px;}
.y18c{bottom:190.650000px;}
.y12c{bottom:191.370000px;}
.y7e{bottom:195.330000px;}
.y152{bottom:197.310000px;}
.yad{bottom:199.650000px;}
.yff{bottom:201.450000px;}
.y3d{bottom:201.630000px;}
.y1aa{bottom:207.750000px;}
.y18b{bottom:207.930000px;}
.y12b{bottom:208.650000px;}
.y7d{bottom:212.610000px;}
.y151{bottom:214.590000px;}
.yac{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.yfe{bottom:223.230000px;}
.y18a{bottom:225.030000px;}
.y12a{bottom:225.930000px;}
.y7c{bottom:229.890000px;}
.y150{bottom:231.870000px;}
.yab{bottom:234.030000px;}
.y3b{bottom:236.010000px;}
.y189{bottom:241.950000px;}
.y129{bottom:242.670000px;}
.yfd{bottom:245.010000px;}
.y7b{bottom:246.990000px;}
.y14f{bottom:249.150000px;}
.y1a9{bottom:249.330000px;}
.yaa{bottom:251.310000px;}
.y3a{bottom:253.290000px;}
.y188{bottom:263.730000px;}
.y7a{bottom:264.270000px;}
.y128{bottom:264.450000px;}
.y14e{bottom:266.430000px;}
.y1a8{bottom:266.610000px;}
.yfb{bottom:266.790000px;}
.yc4{bottom:268.230000px;}
.ya9{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.y79{bottom:281.550000px;}
.y14d{bottom:283.530000px;}
.y1a7{bottom:283.890000px;}
.y187{bottom:285.510000px;}
.ya8{bottom:285.870000px;}
.y127{bottom:286.230000px;}
.y38{bottom:287.850000px;}
.yfa{bottom:291.090000px;}
.y78{bottom:298.830000px;}
.y14c{bottom:300.810000px;}
.ya7{bottom:303.150000px;}
.y37{bottom:305.130000px;}
.y186{bottom:307.290000px;}
.y126{bottom:308.010000px;}
.yf9{bottom:308.370000px;}
.y1a6{bottom:314.670000px;}
.y77{bottom:316.110000px;}
.y14b{bottom:318.090000px;}
.y1b5{bottom:320.070000px;}
.ya6{bottom:320.430000px;}
.y36{bottom:322.230000px;}
.y185{bottom:328.890000px;}
.y125{bottom:329.790000px;}
.y76{bottom:333.210000px;}
.y14a{bottom:335.370000px;}
.ya5{bottom:337.530000px;}
.y35{bottom:339.510000px;}
.yf8{bottom:342.930000px;}
.y75{bottom:350.490000px;}
.y184{bottom:350.670000px;}
.y124{bottom:351.390000px;}
.y149{bottom:352.650000px;}
.ya4{bottom:354.810000px;}
.y34{bottom:356.790000px;}
.yf7{bottom:360.075000px;}
.y74{bottom:367.815000px;}
.y148{bottom:369.975000px;}
.yc3{bottom:371.775000px;}
.ya3{bottom:372.135000px;}
.y123{bottom:373.215000px;}
.y33{bottom:374.115000px;}
.y183{bottom:375.195000px;}
.yf6{bottom:377.355000px;}
.y73{bottom:385.095000px;}
.y147{bottom:387.075000px;}
.ya2{bottom:389.055000px;}
.yc2{bottom:389.415000px;}
.y32{bottom:391.395000px;}
.yf5{bottom:394.275000px;}
.y122{bottom:394.995000px;}
.y72{bottom:402.015000px;}
.y146{bottom:403.995000px;}
.ya1{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.y182{bottom:409.575000px;}
.yf4{bottom:411.915000px;}
.y121{bottom:416.775000px;}
.y71{bottom:419.655000px;}
.ya0{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.y181{bottom:426.855000px;}
.yf3{bottom:429.195000px;}
.y70{bottom:436.755000px;}
.y120{bottom:438.555000px;}
.y9f{bottom:441.075000px;}
.y2f{bottom:443.055000px;}
.y180{bottom:444.135000px;}
.yf2{bottom:446.295000px;}
.y145{bottom:447.555000px;}
.y6f{bottom:454.035000px;}
.yc1{bottom:457.995000px;}
.y9e{bottom:458.355000px;}
.y2e{bottom:459.975000px;}
.y17f{bottom:461.415000px;}
.y11f{bottom:462.855000px;}
.yf1{bottom:463.575000px;}
.y144{bottom:469.335000px;}
.y6e{bottom:471.315000px;}
.y1b9{bottom:475.275000px;}
.y9d{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.y17e{bottom:478.695000px;}
.yf0{bottom:480.855000px;}
.y6d{bottom:488.595000px;}
.y143{bottom:490.935000px;}
.y9c{bottom:492.915000px;}
.y2c{bottom:494.895000px;}
.y17d{bottom:495.435000px;}
.y11e{bottom:497.415000px;}
.yef{bottom:498.135000px;}
.y6c{bottom:505.875000px;}
.y9b{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.y17c{bottom:513.075000px;}
.y11d{bottom:514.695000px;}
.yee{bottom:515.415000px;}
.y6b{bottom:523.155000px;}
.y9a{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.y17b{bottom:530.355000px;}
.y11c{bottom:531.795000px;}
.yed{bottom:532.695000px;}
.y6a{bottom:540.255000px;}
.yc0{bottom:544.215000px;}
.y99{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.y17a{bottom:547.635000px;}
.y11b{bottom:548.715000px;}
.yec{bottom:549.435000px;}
.y142{bottom:549.795000px;}
.y69{bottom:557.175000px;}
.y1b8{bottom:561.495000px;}
.y98{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.y179{bottom:564.915000px;}
.y11a{bottom:566.355000px;}
.y141{bottom:567.075000px;}
.yeb{bottom:571.215000px;}
.y68{bottom:574.815000px;}
.yba{bottom:578.775000px;}
.y97{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.y178{bottom:582.195000px;}
.y119{bottom:583.635000px;}
.y140{bottom:583.995000px;}
.y67{bottom:592.095000px;}
.yea{bottom:592.995000px;}
.y96{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y177{bottom:599.295000px;}
.y118{bottom:600.915000px;}
.y13f{bottom:601.635000px;}
.y66{bottom:609.375000px;}
.y95{bottom:613.695000px;}
.ye8{bottom:614.775000px;}
.y25{bottom:615.495000px;}
.y176{bottom:616.605000px;}
.y117{bottom:618.225000px;}
.y13e{bottom:618.945000px;}
.y65{bottom:626.685000px;}
.y94{bottom:630.825000px;}
.y24{bottom:632.805000px;}
.y175{bottom:633.885000px;}
.y116{bottom:635.325000px;}
.y13d{bottom:636.225000px;}
.ye7{bottom:636.585000px;}
.y64{bottom:643.785000px;}
.y93{bottom:648.105000px;}
.y23{bottom:649.725000px;}
.y174{bottom:651.165000px;}
.y115{bottom:652.605000px;}
.y13c{bottom:653.325000px;}
.ye6{bottom:658.185000px;}
.y63{bottom:661.065000px;}
.y92{bottom:665.025000px;}
.yb9{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.y173{bottom:668.445000px;}
.y114{bottom:669.885000px;}
.y13b{bottom:670.605000px;}
.y62{bottom:678.345000px;}
.ye5{bottom:679.965000px;}
.y91{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y172{bottom:685.725000px;}
.y113{bottom:687.165000px;}
.y13a{bottom:687.885000px;}
.y61{bottom:695.625000px;}
.y90{bottom:699.945000px;}
.ye4{bottom:701.745000px;}
.y20{bottom:701.925000px;}
.y171{bottom:702.825000px;}
.y112{bottom:704.445000px;}
.y139{bottom:705.165000px;}
.y60{bottom:712.905000px;}
.y8f{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.y170{bottom:720.105000px;}
.y111{bottom:721.185000px;}
.y138{bottom:722.445000px;}
.ye3{bottom:723.525000px;}
.y5f{bottom:729.645000px;}
.y8e{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y16f{bottom:737.385000px;}
.y137{bottom:739.725000px;}
.y110{bottom:742.965000px;}
.ye2{bottom:745.305000px;}
.y5e{bottom:747.285000px;}
.y8d{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.y16e{bottom:754.305000px;}
.y136{bottom:756.825000px;}
.y5d{bottom:764.565000px;}
.y10f{bottom:764.745000px;}
.y8c{bottom:768.525000px;}
.yb8{bottom:768.885000px;}
.ye1{bottom:769.605000px;}
.y1c{bottom:770.505000px;}
.y1a5{bottom:773.745000px;}
.y135{bottom:774.105000px;}
.y16d{bottom:776.085000px;}
.y5c{bottom:782.925000px;}
.y8b{bottom:786.165000px;}
.y10e{bottom:786.525000px;}
.ye0{bottom:786.885000px;}
.y1b{bottom:788.145000px;}
.y134{bottom:791.385000px;}
.y5b{bottom:801.285000px;}
.yb7{bottom:803.085000px;}
.y8a{bottom:803.445000px;}
.ydf{bottom:804.165000px;}
.y1a{bottom:805.425000px;}
.y10d{bottom:808.305000px;}
.y1a4{bottom:808.665000px;}
.y16c{bottom:817.665000px;}
.y5a{bottom:819.645000px;}
.y1b4{bottom:820.365000px;}
.y89{bottom:820.725000px;}
.yde{bottom:821.445000px;}
.y19{bottom:822.525000px;}
.y1a3{bottom:825.945000px;}
.y10c{bottom:830.085000px;}
.y16b{bottom:834.945000px;}
.y59{bottom:837.465000px;}
.y88{bottom:837.825000px;}
.ydd{bottom:838.545000px;}
.y18{bottom:839.805000px;}
.y1a2{bottom:843.045000px;}
.y10b{bottom:851.685000px;}
.y16a{bottom:852.045000px;}
.y58{bottom:855.105000px;}
.ydc{bottom:855.825000px;}
.y17{bottom:857.085000px;}
.y1a1{bottom:860.325000px;}
.y169{bottom:868.965000px;}
.y57{bottom:872.385000px;}
.ydb{bottom:872.745000px;}
.y109{bottom:873.465000px;}
.y16{bottom:874.365000px;}
.y1a0{bottom:877.650000px;}
.y168{bottom:886.650000px;}
.y56{bottom:889.710000px;}
.yda{bottom:890.430000px;}
.y15{bottom:891.690000px;}
.y19f{bottom:894.930000px;}
.y108{bottom:895.290000px;}
.y167{bottom:903.930000px;}
.y1b3{bottom:906.630000px;}
.y55{bottom:906.990000px;}
.yd9{bottom:907.710000px;}
.y14{bottom:908.430000px;}
.y19e{bottom:912.210000px;}
.y107{bottom:917.070000px;}
.y166{bottom:921.210000px;}
.y54{bottom:924.090000px;}
.yd8{bottom:924.990000px;}
.y13{bottom:926.430000px;}
.y19d{bottom:929.490000px;}
.y165{bottom:938.490000px;}
.y53{bottom:941.370000px;}
.yd7{bottom:942.090000px;}
.y12{bottom:944.070000px;}
.y19c{bottom:946.590000px;}
.y164{bottom:955.590000px;}
.y1b2{bottom:958.290000px;}
.y52{bottom:958.650000px;}
.yd6{bottom:959.370000px;}
.y11{bottom:961.350000px;}
.y19b{bottom:963.870000px;}
.y163{bottom:972.870000px;}
.y51{bottom:975.930000px;}
.yd5{bottom:976.650000px;}
.y10{bottom:978.630000px;}
.y19a{bottom:981.150000px;}
.y162{bottom:990.150000px;}
.y50{bottom:993.210000px;}
.yd4{bottom:993.930000px;}
.yf{bottom:995.910000px;}
.y199{bottom:998.430000px;}
.y161{bottom:1007.430000px;}
.y4f{bottom:1010.130000px;}
.y87{bottom:1010.490000px;}
.yd3{bottom:1011.210000px;}
.ye{bottom:1013.190000px;}
.y198{bottom:1015.350000px;}
.y160{bottom:1024.710000px;}
.y1b1{bottom:1027.230000px;}
.y4e{bottom:1027.590000px;}
.yd2{bottom:1027.950000px;}
.yd{bottom:1030.470000px;}
.y197{bottom:1036.950000px;}
.y15f{bottom:1041.990000px;}
.y106{bottom:1044.510000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.yd1{bottom:1049.730000px;}
.y196{bottom:1058.730000px;}
.y15e{bottom:1059.090000px;}
.yb6{bottom:1061.790000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.yd0{bottom:1071.510000px;}
.y15d{bottom:1076.010000px;}
.y4b{bottom:1079.430000px;}
.y195{bottom:1080.510000px;}
.ya{bottom:1082.850000px;}
.ycf{bottom:1093.290000px;}
.y4a{bottom:1096.710000px;}
.y15c{bottom:1097.790000px;}
.y9{bottom:1100.490000px;}
.y193{bottom:1102.290000px;}
.y49{bottom:1113.990000px;}
.yce{bottom:1115.070000px;}
.y15b{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y192{bottom:1124.070000px;}
.y48{bottom:1131.090000px;}
.ycd{bottom:1136.880000px;}
.y15a{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.ycc{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y46{bottom:1165.320000px;}
.y86{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.h7{height:41.726953px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h6{height:61.423863px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:53.280000px;}
.w2b{width:53.496000px;}
.w16{width:53.856000px;}
.w2e{width:57.276000px;}
.w2d{width:68.580000px;}
.w13{width:88.020000px;}
.w23{width:91.260000px;}
.wc{width:95.040000px;}
.w22{width:99.756000px;}
.wb{width:101.016000px;}
.w28{width:102.240000px;}
.w1e{width:109.116000px;}
.w10{width:114.336000px;}
.wf{width:119.376000px;}
.w17{width:125.460000px;}
.w1b{width:128.160000px;}
.wd{width:131.976000px;}
.w20{width:134.316000px;}
.w25{width:137.736000px;}
.w24{width:142.776000px;}
.w12{width:146.556000px;}
.w29{width:147.996000px;}
.w21{width:155.550000px;}
.w1a{width:156.990000px;}
.w27{width:176.070000px;}
.w2f{width:180.030000px;}
.we{width:195.690000px;}
.w30{width:201.990000px;}
.w8{width:211.350000px;}
.w1c{width:216.615000px;}
.w14{width:226.875000px;}
.w18{width:234.975000px;}
.w9{width:238.575000px;}
.w26{width:242.895000px;}
.w2c{width:270.615000px;}
.w19{width:279.075000px;}
.w1d{width:313.815000px;}
.w11{width:322.635000px;}
.wa{width:332.895000px;}
.w1f{width:359.895000px;}
.w15{width:366.195000px;}
.w6{width:366.735000px;}
.w2{width:380.775000px;}
.w4{width:389.955000px;}
.w5{width:395.205000px;}
.w3{width:404.565000px;}
.w7{width:418.425000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:1.080000px;}
.x68{left:3.240000px;}
.x63{left:7.560000px;}
.x3e{left:10.260000px;}
.x38{left:12.060000px;}
.x4e{left:13.860000px;}
.x44{left:15.300000px;}
.x4b{left:18.720000px;}
.x43{left:19.980000px;}
.x79{left:21.060000px;}
.x71{left:22.500000px;}
.x6f{left:24.120000px;}
.x6d{left:25.200000px;}
.x46{left:27.900000px;}
.x5c{left:29.160000px;}
.x45{left:30.816000px;}
.x47{left:32.076000px;}
.x72{left:34.200000px;}
.x61{left:36.216000px;}
.x54{left:37.800000px;}
.x3f{left:39.960000px;}
.x5e{left:41.400000px;}
.x58{left:42.660000px;}
.x4d{left:45.945000px;}
.x42{left:49.680000px;}
.x48{left:51.300000px;}
.x13{left:52.920000px;}
.x5{left:54.000000px;}
.x32{left:56.196000px;}
.x40{left:58.365000px;}
.x60{left:60.120000px;}
.x37{left:62.100000px;}
.x2d{left:63.405000px;}
.x30{left:65.376000px;}
.x2b{left:67.356000px;}
.x78{left:69.156000px;}
.x34{left:70.416000px;}
.x74{left:71.676000px;}
.x73{left:74.025000px;}
.x33{left:75.276000px;}
.x59{left:77.616000px;}
.xf{left:80.100000px;}
.x57{left:81.225000px;}
.x36{left:83.196000px;}
.x35{left:86.076000px;}
.x2f{left:88.200000px;}
.x41{left:90.570000px;}
.x5f{left:93.420000px;}
.xe{left:96.516000px;}
.x7a{left:99.930000px;}
.x76{left:103.170000px;}
.x51{left:104.790000px;}
.x10{left:107.136000px;}
.x31{left:111.825000px;}
.x5a{left:115.230000px;}
.x53{left:119.010000px;}
.x2a{left:133.950000px;}
.x18{left:140.970000px;}
.x28{left:143.130000px;}
.x22{left:145.470000px;}
.x20{left:147.270000px;}
.x16{left:149.430000px;}
.x14{left:151.950000px;}
.x27{left:153.930000px;}
.x1a{left:155.190000px;}
.x1e{left:156.630000px;}
.x19{left:159.870000px;}
.x23{left:164.550000px;}
.x1c{left:167.790000px;}
.xd{left:169.230000px;}
.x1b{left:170.670000px;}
.x1d{left:171.930000px;}
.x24{left:175.350000px;}
.x25{left:176.610000px;}
.x21{left:189.975000px;}
.x17{left:194.790000px;}
.x62{left:196.770000px;}
.x29{left:203.250000px;}
.x6{left:207.750000px;}
.x69{left:221.790000px;}
.xa{left:222.870000px;}
.x3{left:254.550000px;}
.xb{left:255.810000px;}
.x8{left:260.130000px;}
.x3a{left:262.830000px;}
.x2c{left:266.610000px;}
.x11{left:269.310000px;}
.x6a{left:297.975000px;}
.x2{left:300.675000px;}
.x7{left:326.235000px;}
.x52{left:334.515000px;}
.x1{left:352.695000px;}
.x64{left:354.675000px;}
.x5b{left:368.895000px;}
.x49{left:376.095000px;}
.x3b{left:396.975000px;}
.x26{left:421.995000px;}
.x15{left:435.855000px;}
.x1f{left:445.215000px;}
.x65{left:456.765000px;}
.x9{left:459.645000px;}
.xc{left:462.525000px;}
.x6b{left:476.385000px;}
.x4f{left:477.645000px;}
.x5d{left:480.345000px;}
.x55{left:493.485000px;}
.x2e{left:507.345000px;}
.x4a{left:524.805000px;}
.x66{left:550.365000px;}
.x6c{left:580.965000px;}
.x3c{left:595.005000px;}
.x50{left:605.265000px;}
.x4c{left:614.985000px;}
.x56{left:623.805000px;}
.x77{left:638.430000px;}
.x67{left:695.490000px;}
.x75{left:712.050000px;}
.x3d{left:716.730000px;}
.x6e{left:731.310000px;}
.x12{left:742.650000px;}
.x70{left:786.930000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.519467pt;}
.ls4{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls2{letter-spacing:27.680000pt;}
.ls12{letter-spacing:40.912640pt;}
.ls5{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.688000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._2{width:2.682667pt;}
._7{width:3.665280pt;}
._8{width:4.731520pt;}
._d{width:5.953280pt;}
._c{width:6.848640pt;}
._3{width:8.021120pt;}
._6{width:9.241600pt;}
._4{width:10.145920pt;}
._5{width:11.261440pt;}
._a{width:12.164480pt;}
._11{width:14.178347pt;}
._e{width:15.089920pt;}
._f{width:16.471040pt;}
._12{width:18.200320pt;}
._10{width:19.123200pt;}
._13{width:20.344960pt;}
._14{width:21.991680pt;}
._1d{width:23.160320pt;}
._b{width:27.680000pt;}
._1c{width:127.929387pt;}
._19{width:141.043627pt;}
._9{width:178.848000pt;}
._1b{width:286.024747pt;}
._18{width:406.793387pt;}
._15{width:469.444267pt;}
._16{width:679.601067pt;}
._1e{width:719.697707pt;}
._17{width:930.299307pt;}
._1a{width:954.730027pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y194{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:2.880000pt;}
.yc7{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.yc9{bottom:3.360000pt;}
.ye9{bottom:3.386667pt;}
.y10a{bottom:3.400000pt;}
.y4{bottom:18.880000pt;}
.ycb{bottom:51.680000pt;}
.y1b7{bottom:54.400000pt;}
.yb5{bottom:54.720000pt;}
.y45{bottom:56.160000pt;}
.y133{bottom:62.400000pt;}
.y105{bottom:63.040000pt;}
.y85{bottom:66.240000pt;}
.y159{bottom:68.160000pt;}
.y1b6{bottom:69.760000pt;}
.yb4{bottom:70.080000pt;}
.yca{bottom:71.040000pt;}
.y44{bottom:71.840000pt;}
.y1b0{bottom:72.960000pt;}
.y191{bottom:77.440000pt;}
.y132{bottom:77.760000pt;}
.ybf{bottom:80.640000pt;}
.y84{bottom:81.600000pt;}
.y104{bottom:82.400000pt;}
.y158{bottom:83.360000pt;}
.yb3{bottom:85.440000pt;}
.y43{bottom:87.232000pt;}
.y1af{bottom:88.032000pt;}
.yc8{bottom:90.432000pt;}
.y190{bottom:92.832000pt;}
.y131{bottom:93.472000pt;}
.ybe{bottom:96.032000pt;}
.y83{bottom:96.992000pt;}
.y157{bottom:98.752000pt;}
.yb2{bottom:100.832000pt;}
.y103{bottom:101.792000pt;}
.y42{bottom:102.592000pt;}
.y1ae{bottom:107.392000pt;}
.y18f{bottom:108.032000pt;}
.y130{bottom:108.832000pt;}
.yc6{bottom:109.792000pt;}
.ybd{bottom:111.392000pt;}
.y82{bottom:112.352000pt;}
.y156{bottom:114.112000pt;}
.yb1{bottom:116.192000pt;}
.y41{bottom:117.792000pt;}
.y102{bottom:121.152000pt;}
.y18e{bottom:123.392000pt;}
.y12f{bottom:124.032000pt;}
.ybc{bottom:126.432000pt;}
.y1ad{bottom:126.752000pt;}
.y81{bottom:127.552000pt;}
.y155{bottom:129.152000pt;}
.yb0{bottom:131.072000pt;}
.yc5{bottom:131.392000pt;}
.y40{bottom:133.152000pt;}
.ybb{bottom:138.746667pt;}
.y12e{bottom:139.386667pt;}
.y101{bottom:140.506667pt;}
.y80{bottom:142.906667pt;}
.y154{bottom:144.826667pt;}
.y1ac{bottom:146.106667pt;}
.yaf{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.y18d{bottom:154.106667pt;}
.y12d{bottom:154.746667pt;}
.y7f{bottom:158.266667pt;}
.y100{bottom:159.706667pt;}
.y153{bottom:160.026667pt;}
.yae{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.y1ab{bottom:165.306667pt;}
.y18c{bottom:169.466667pt;}
.y12c{bottom:170.106667pt;}
.y7e{bottom:173.626667pt;}
.y152{bottom:175.386667pt;}
.yad{bottom:177.466667pt;}
.yff{bottom:179.066667pt;}
.y3d{bottom:179.226667pt;}
.y1aa{bottom:184.666667pt;}
.y18b{bottom:184.826667pt;}
.y12b{bottom:185.466667pt;}
.y7d{bottom:188.986667pt;}
.y151{bottom:190.746667pt;}
.yac{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.yfe{bottom:198.426667pt;}
.y18a{bottom:200.026667pt;}
.y12a{bottom:200.826667pt;}
.y7c{bottom:204.346667pt;}
.y150{bottom:206.106667pt;}
.yab{bottom:208.026667pt;}
.y3b{bottom:209.786667pt;}
.y189{bottom:215.066667pt;}
.y129{bottom:215.706667pt;}
.yfd{bottom:217.786667pt;}
.y7b{bottom:219.546667pt;}
.y14f{bottom:221.466667pt;}
.y1a9{bottom:221.626667pt;}
.yaa{bottom:223.386667pt;}
.y3a{bottom:225.146667pt;}
.y188{bottom:234.426667pt;}
.y7a{bottom:234.906667pt;}
.y128{bottom:235.066667pt;}
.y14e{bottom:236.826667pt;}
.y1a8{bottom:236.986667pt;}
.yfb{bottom:237.146667pt;}
.yc4{bottom:238.426667pt;}
.ya9{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.y79{bottom:250.266667pt;}
.y14d{bottom:252.026667pt;}
.y1a7{bottom:252.346667pt;}
.y187{bottom:253.786667pt;}
.ya8{bottom:254.106667pt;}
.y127{bottom:254.426667pt;}
.y38{bottom:255.866667pt;}
.yfa{bottom:258.746667pt;}
.y78{bottom:265.626667pt;}
.y14c{bottom:267.386667pt;}
.ya7{bottom:269.466667pt;}
.y37{bottom:271.226667pt;}
.y186{bottom:273.146667pt;}
.y126{bottom:273.786667pt;}
.yf9{bottom:274.106667pt;}
.y1a6{bottom:279.706667pt;}
.y77{bottom:280.986667pt;}
.y14b{bottom:282.746667pt;}
.y1b5{bottom:284.506667pt;}
.ya6{bottom:284.826667pt;}
.y36{bottom:286.426667pt;}
.y185{bottom:292.346667pt;}
.y125{bottom:293.146667pt;}
.y76{bottom:296.186667pt;}
.y14a{bottom:298.106667pt;}
.ya5{bottom:300.026667pt;}
.y35{bottom:301.786667pt;}
.yf8{bottom:304.826667pt;}
.y75{bottom:311.546667pt;}
.y184{bottom:311.706667pt;}
.y124{bottom:312.346667pt;}
.y149{bottom:313.466667pt;}
.ya4{bottom:315.386667pt;}
.y34{bottom:317.146667pt;}
.yf7{bottom:320.066667pt;}
.y74{bottom:326.946667pt;}
.y148{bottom:328.866667pt;}
.yc3{bottom:330.466667pt;}
.ya3{bottom:330.786667pt;}
.y123{bottom:331.746667pt;}
.y33{bottom:332.546667pt;}
.y183{bottom:333.506667pt;}
.yf6{bottom:335.426667pt;}
.y73{bottom:342.306667pt;}
.y147{bottom:344.066667pt;}
.ya2{bottom:345.826667pt;}
.yc2{bottom:346.146667pt;}
.y32{bottom:347.906667pt;}
.yf5{bottom:350.466667pt;}
.y122{bottom:351.106667pt;}
.y72{bottom:357.346667pt;}
.y146{bottom:359.106667pt;}
.ya1{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.y182{bottom:364.066667pt;}
.yf4{bottom:366.146667pt;}
.y121{bottom:370.466667pt;}
.y71{bottom:373.026667pt;}
.ya0{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.y181{bottom:379.426667pt;}
.yf3{bottom:381.506667pt;}
.y70{bottom:388.226667pt;}
.y120{bottom:389.826667pt;}
.y9f{bottom:392.066667pt;}
.y2f{bottom:393.826667pt;}
.y180{bottom:394.786667pt;}
.yf2{bottom:396.706667pt;}
.y145{bottom:397.826667pt;}
.y6f{bottom:403.586667pt;}
.yc1{bottom:407.106667pt;}
.y9e{bottom:407.426667pt;}
.y2e{bottom:408.866667pt;}
.y17f{bottom:410.146667pt;}
.y11f{bottom:411.426667pt;}
.yf1{bottom:412.066667pt;}
.y144{bottom:417.186667pt;}
.y6e{bottom:418.946667pt;}
.y1b9{bottom:422.466667pt;}
.y9d{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.y17e{bottom:425.506667pt;}
.yf0{bottom:427.426667pt;}
.y6d{bottom:434.306667pt;}
.y143{bottom:436.386667pt;}
.y9c{bottom:438.146667pt;}
.y2c{bottom:439.906667pt;}
.y17d{bottom:440.386667pt;}
.y11e{bottom:442.146667pt;}
.yef{bottom:442.786667pt;}
.y6c{bottom:449.666667pt;}
.y9b{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.y17c{bottom:456.066667pt;}
.y11d{bottom:457.506667pt;}
.yee{bottom:458.146667pt;}
.y6b{bottom:465.026667pt;}
.y9a{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.y17b{bottom:471.426667pt;}
.y11c{bottom:472.706667pt;}
.yed{bottom:473.506667pt;}
.y6a{bottom:480.226667pt;}
.yc0{bottom:483.746667pt;}
.y99{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.y17a{bottom:486.786667pt;}
.y11b{bottom:487.746667pt;}
.yec{bottom:488.386667pt;}
.y142{bottom:488.706667pt;}
.y69{bottom:495.266667pt;}
.y1b8{bottom:499.106667pt;}
.y98{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.y179{bottom:502.146667pt;}
.y11a{bottom:503.426667pt;}
.y141{bottom:504.066667pt;}
.yeb{bottom:507.746667pt;}
.y68{bottom:510.946667pt;}
.yba{bottom:514.466667pt;}
.y97{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.y178{bottom:517.506667pt;}
.y119{bottom:518.786667pt;}
.y140{bottom:519.106667pt;}
.y67{bottom:526.306667pt;}
.yea{bottom:527.106667pt;}
.y96{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y177{bottom:532.706667pt;}
.y118{bottom:534.146667pt;}
.y13f{bottom:534.786667pt;}
.y66{bottom:541.666667pt;}
.y95{bottom:545.506667pt;}
.ye8{bottom:546.466667pt;}
.y25{bottom:547.106667pt;}
.y176{bottom:548.093333pt;}
.y117{bottom:549.533333pt;}
.y13e{bottom:550.173333pt;}
.y65{bottom:557.053333pt;}
.y94{bottom:560.733333pt;}
.y24{bottom:562.493333pt;}
.y175{bottom:563.453333pt;}
.y116{bottom:564.733333pt;}
.y13d{bottom:565.533333pt;}
.ye7{bottom:565.853333pt;}
.y64{bottom:572.253333pt;}
.y93{bottom:576.093333pt;}
.y23{bottom:577.533333pt;}
.y174{bottom:578.813333pt;}
.y115{bottom:580.093333pt;}
.y13c{bottom:580.733333pt;}
.ye6{bottom:585.053333pt;}
.y63{bottom:587.613333pt;}
.y92{bottom:591.133333pt;}
.yb9{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.y173{bottom:594.173333pt;}
.y114{bottom:595.453333pt;}
.y13b{bottom:596.093333pt;}
.y62{bottom:602.973333pt;}
.ye5{bottom:604.413333pt;}
.y91{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y172{bottom:609.533333pt;}
.y113{bottom:610.813333pt;}
.y13a{bottom:611.453333pt;}
.y61{bottom:618.333333pt;}
.y90{bottom:622.173333pt;}
.ye4{bottom:623.773333pt;}
.y20{bottom:623.933333pt;}
.y171{bottom:624.733333pt;}
.y112{bottom:626.173333pt;}
.y139{bottom:626.813333pt;}
.y60{bottom:633.693333pt;}
.y8f{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.y170{bottom:640.093333pt;}
.y111{bottom:641.053333pt;}
.y138{bottom:642.173333pt;}
.ye3{bottom:643.133333pt;}
.y5f{bottom:648.573333pt;}
.y8e{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y16f{bottom:655.453333pt;}
.y137{bottom:657.533333pt;}
.y110{bottom:660.413333pt;}
.ye2{bottom:662.493333pt;}
.y5e{bottom:664.253333pt;}
.y8d{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.y16e{bottom:670.493333pt;}
.y136{bottom:672.733333pt;}
.y5d{bottom:679.613333pt;}
.y10f{bottom:679.773333pt;}
.y8c{bottom:683.133333pt;}
.yb8{bottom:683.453333pt;}
.ye1{bottom:684.093333pt;}
.y1c{bottom:684.893333pt;}
.y1a5{bottom:687.773333pt;}
.y135{bottom:688.093333pt;}
.y16d{bottom:689.853333pt;}
.y5c{bottom:695.933333pt;}
.y8b{bottom:698.813333pt;}
.y10e{bottom:699.133333pt;}
.ye0{bottom:699.453333pt;}
.y1b{bottom:700.573333pt;}
.y134{bottom:703.453333pt;}
.y5b{bottom:712.253333pt;}
.yb7{bottom:713.853333pt;}
.y8a{bottom:714.173333pt;}
.ydf{bottom:714.813333pt;}
.y1a{bottom:715.933333pt;}
.y10d{bottom:718.493333pt;}
.y1a4{bottom:718.813333pt;}
.y16c{bottom:726.813333pt;}
.y5a{bottom:728.573333pt;}
.y1b4{bottom:729.213333pt;}
.y89{bottom:729.533333pt;}
.yde{bottom:730.173333pt;}
.y19{bottom:731.133333pt;}
.y1a3{bottom:734.173333pt;}
.y10c{bottom:737.853333pt;}
.y16b{bottom:742.173333pt;}
.y59{bottom:744.413333pt;}
.y88{bottom:744.733333pt;}
.ydd{bottom:745.373333pt;}
.y18{bottom:746.493333pt;}
.y1a2{bottom:749.373333pt;}
.y10b{bottom:757.053333pt;}
.y16a{bottom:757.373333pt;}
.y58{bottom:760.093333pt;}
.ydc{bottom:760.733333pt;}
.y17{bottom:761.853333pt;}
.y1a1{bottom:764.733333pt;}
.y169{bottom:772.413333pt;}
.y57{bottom:775.453333pt;}
.ydb{bottom:775.773333pt;}
.y109{bottom:776.413333pt;}
.y16{bottom:777.213333pt;}
.y1a0{bottom:780.133333pt;}
.y168{bottom:788.133333pt;}
.y56{bottom:790.853333pt;}
.yda{bottom:791.493333pt;}
.y15{bottom:792.613333pt;}
.y19f{bottom:795.493333pt;}
.y108{bottom:795.813333pt;}
.y167{bottom:803.493333pt;}
.y1b3{bottom:805.893333pt;}
.y55{bottom:806.213333pt;}
.yd9{bottom:806.853333pt;}
.y14{bottom:807.493333pt;}
.y19e{bottom:810.853333pt;}
.y107{bottom:815.173333pt;}
.y166{bottom:818.853333pt;}
.y54{bottom:821.413333pt;}
.yd8{bottom:822.213333pt;}
.y13{bottom:823.493333pt;}
.y19d{bottom:826.213333pt;}
.y165{bottom:834.213333pt;}
.y53{bottom:836.773333pt;}
.yd7{bottom:837.413333pt;}
.y12{bottom:839.173333pt;}
.y19c{bottom:841.413333pt;}
.y164{bottom:849.413333pt;}
.y1b2{bottom:851.813333pt;}
.y52{bottom:852.133333pt;}
.yd6{bottom:852.773333pt;}
.y11{bottom:854.533333pt;}
.y19b{bottom:856.773333pt;}
.y163{bottom:864.773333pt;}
.y51{bottom:867.493333pt;}
.yd5{bottom:868.133333pt;}
.y10{bottom:869.893333pt;}
.y19a{bottom:872.133333pt;}
.y162{bottom:880.133333pt;}
.y50{bottom:882.853333pt;}
.yd4{bottom:883.493333pt;}
.yf{bottom:885.253333pt;}
.y199{bottom:887.493333pt;}
.y161{bottom:895.493333pt;}
.y4f{bottom:897.893333pt;}
.y87{bottom:898.213333pt;}
.yd3{bottom:898.853333pt;}
.ye{bottom:900.613333pt;}
.y198{bottom:902.533333pt;}
.y160{bottom:910.853333pt;}
.y1b1{bottom:913.093333pt;}
.y4e{bottom:913.413333pt;}
.yd2{bottom:913.733333pt;}
.yd{bottom:915.973333pt;}
.y197{bottom:921.733333pt;}
.y15f{bottom:926.213333pt;}
.y106{bottom:928.453333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.yd1{bottom:933.093333pt;}
.y196{bottom:941.093333pt;}
.y15e{bottom:941.413333pt;}
.yb6{bottom:943.813333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.yd0{bottom:952.453333pt;}
.y15d{bottom:956.453333pt;}
.y4b{bottom:959.493333pt;}
.y195{bottom:960.453333pt;}
.ya{bottom:962.533333pt;}
.ycf{bottom:971.813333pt;}
.y4a{bottom:974.853333pt;}
.y15c{bottom:975.813333pt;}
.y9{bottom:978.213333pt;}
.y193{bottom:979.813333pt;}
.y49{bottom:990.213333pt;}
.yce{bottom:991.173333pt;}
.y15b{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y192{bottom:999.173333pt;}
.y48{bottom:1005.413333pt;}
.ycd{bottom:1010.560000pt;}
.y15a{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.ycc{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y46{bottom:1035.840000pt;}
.y86{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.h7{height:37.090625pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h6{height:54.598989pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:47.360000pt;}
.w2b{width:47.552000pt;}
.w16{width:47.872000pt;}
.w2e{width:50.912000pt;}
.w2d{width:60.960000pt;}
.w13{width:78.240000pt;}
.w23{width:81.120000pt;}
.wc{width:84.480000pt;}
.w22{width:88.672000pt;}
.wb{width:89.792000pt;}
.w28{width:90.880000pt;}
.w1e{width:96.992000pt;}
.w10{width:101.632000pt;}
.wf{width:106.112000pt;}
.w17{width:111.520000pt;}
.w1b{width:113.920000pt;}
.wd{width:117.312000pt;}
.w20{width:119.392000pt;}
.w25{width:122.432000pt;}
.w24{width:126.912000pt;}
.w12{width:130.272000pt;}
.w29{width:131.552000pt;}
.w21{width:138.266667pt;}
.w1a{width:139.546667pt;}
.w27{width:156.506667pt;}
.w2f{width:160.026667pt;}
.we{width:173.946667pt;}
.w30{width:179.546667pt;}
.w8{width:187.866667pt;}
.w1c{width:192.546667pt;}
.w14{width:201.666667pt;}
.w18{width:208.866667pt;}
.w9{width:212.066667pt;}
.w26{width:215.906667pt;}
.w2c{width:240.546667pt;}
.w19{width:248.066667pt;}
.w1d{width:278.946667pt;}
.w11{width:286.786667pt;}
.wa{width:295.906667pt;}
.w1f{width:319.906667pt;}
.w15{width:325.506667pt;}
.w6{width:325.986667pt;}
.w2{width:338.466667pt;}
.w4{width:346.626667pt;}
.w5{width:351.293333pt;}
.w3{width:359.613333pt;}
.w7{width:371.933333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:0.960000pt;}
.x68{left:2.880000pt;}
.x63{left:6.720000pt;}
.x3e{left:9.120000pt;}
.x38{left:10.720000pt;}
.x4e{left:12.320000pt;}
.x44{left:13.600000pt;}
.x4b{left:16.640000pt;}
.x43{left:17.760000pt;}
.x79{left:18.720000pt;}
.x71{left:20.000000pt;}
.x6f{left:21.440000pt;}
.x6d{left:22.400000pt;}
.x46{left:24.800000pt;}
.x5c{left:25.920000pt;}
.x45{left:27.392000pt;}
.x47{left:28.512000pt;}
.x72{left:30.400000pt;}
.x61{left:32.192000pt;}
.x54{left:33.600000pt;}
.x3f{left:35.520000pt;}
.x5e{left:36.800000pt;}
.x58{left:37.920000pt;}
.x4d{left:40.840000pt;}
.x42{left:44.160000pt;}
.x48{left:45.600000pt;}
.x13{left:47.040000pt;}
.x5{left:48.000000pt;}
.x32{left:49.952000pt;}
.x40{left:51.880000pt;}
.x60{left:53.440000pt;}
.x37{left:55.200000pt;}
.x2d{left:56.360000pt;}
.x30{left:58.112000pt;}
.x2b{left:59.872000pt;}
.x78{left:61.472000pt;}
.x34{left:62.592000pt;}
.x74{left:63.712000pt;}
.x73{left:65.800000pt;}
.x33{left:66.912000pt;}
.x59{left:68.992000pt;}
.xf{left:71.200000pt;}
.x57{left:72.200000pt;}
.x36{left:73.952000pt;}
.x35{left:76.512000pt;}
.x2f{left:78.400000pt;}
.x41{left:80.506667pt;}
.x5f{left:83.040000pt;}
.xe{left:85.792000pt;}
.x7a{left:88.826667pt;}
.x76{left:91.706667pt;}
.x51{left:93.146667pt;}
.x10{left:95.232000pt;}
.x31{left:99.400000pt;}
.x5a{left:102.426667pt;}
.x53{left:105.786667pt;}
.x2a{left:119.066667pt;}
.x18{left:125.306667pt;}
.x28{left:127.226667pt;}
.x22{left:129.306667pt;}
.x20{left:130.906667pt;}
.x16{left:132.826667pt;}
.x14{left:135.066667pt;}
.x27{left:136.826667pt;}
.x1a{left:137.946667pt;}
.x1e{left:139.226667pt;}
.x19{left:142.106667pt;}
.x23{left:146.266667pt;}
.x1c{left:149.146667pt;}
.xd{left:150.426667pt;}
.x1b{left:151.706667pt;}
.x1d{left:152.826667pt;}
.x24{left:155.866667pt;}
.x25{left:156.986667pt;}
.x21{left:168.866667pt;}
.x17{left:173.146667pt;}
.x62{left:174.906667pt;}
.x29{left:180.666667pt;}
.x6{left:184.666667pt;}
.x69{left:197.146667pt;}
.xa{left:198.106667pt;}
.x3{left:226.266667pt;}
.xb{left:227.386667pt;}
.x8{left:231.226667pt;}
.x3a{left:233.626667pt;}
.x2c{left:236.986667pt;}
.x11{left:239.386667pt;}
.x6a{left:264.866667pt;}
.x2{left:267.266667pt;}
.x7{left:289.986667pt;}
.x52{left:297.346667pt;}
.x1{left:313.506667pt;}
.x64{left:315.266667pt;}
.x5b{left:327.906667pt;}
.x49{left:334.306667pt;}
.x3b{left:352.866667pt;}
.x26{left:375.106667pt;}
.x15{left:387.426667pt;}
.x1f{left:395.746667pt;}
.x65{left:406.013333pt;}
.x9{left:408.573333pt;}
.xc{left:411.133333pt;}
.x6b{left:423.453333pt;}
.x4f{left:424.573333pt;}
.x5d{left:426.973333pt;}
.x55{left:438.653333pt;}
.x2e{left:450.973333pt;}
.x4a{left:466.493333pt;}
.x66{left:489.213333pt;}
.x6c{left:516.413333pt;}
.x3c{left:528.893333pt;}
.x50{left:538.013333pt;}
.x4c{left:546.653333pt;}
.x56{left:554.493333pt;}
.x77{left:567.493333pt;}
.x67{left:618.213333pt;}
.x75{left:632.933333pt;}
.x3d{left:637.093333pt;}
.x6e{left:650.053333pt;}
.x12{left:660.133333pt;}
.x70{left:699.493333pt;}
.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; }
  