
    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_ad1464575420a5bf638e02cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_36bc45bbc291ce35da9a846c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17b0d9a3503a48554a7a8fac.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_3d2c1fb6f1182589eeb0b7bf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_00e895d28e88d69815b21222.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_bd8a10b25c24a52f5e267cb1.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_a3aa42a2e618639907bba223.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_14146d033b06004cc6c924d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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);}
.v5{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-60.480000px;}
.v6{vertical-align:-53.976000px;}
.v4{vertical-align:-23.760000px;}
.v8{vertical-align:-9.540000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.va{vertical-align:66.300000px;}
.lsc{letter-spacing:-0.738000px;}
.ls14{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.612000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.220800px;}
.ls9{letter-spacing:-0.027360px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.738000px;}
.ls10{letter-spacing:1.620000px;}
.ls1e{letter-spacing:2.988000px;}
.ls4{letter-spacing:3.060000px;}
.ls3{letter-spacing:6.660000px;}
.ls1d{letter-spacing:30.348000px;}
.ls5{letter-spacing:52.560000px;}
.lse{letter-spacing:55.620000px;}
.ls6{letter-spacing:71.640000px;}
.ls0{letter-spacing:154.980000px;}
.ls15{letter-spacing:1081.500000px;}
.ls18{letter-spacing:1130.700000px;}
.ls1b{letter-spacing:1410.900000px;}
.ls1c{letter-spacing:1412.700000px;}
.ls19{letter-spacing:1579.260000px;}
.ls11{letter-spacing:1593.900000px;}
.ls1a{letter-spacing:1628.700000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.560000px;}
.ws6{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.ws3{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.716000px;}
.wse{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.762000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._12{margin-left:-85.458000px;}
._19{margin-left:-4.764000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._4{width:3.083760px;}
._5{width:4.145760px;}
._a{width:5.460240px;}
._6{width:6.533760px;}
._9{width:7.620000px;}
._8{width:9.342000px;}
._7{width:11.232000px;}
._b{width:12.485520px;}
._e{width:20.334000px;}
._d{width:21.564000px;}
._c{width:22.572000px;}
._3{width:39.060000px;}
._14{width:542.303760px;}
._10{width:795.918000px;}
._18{width:916.800000px;}
._16{width:930.000000px;}
._17{width:937.188000px;}
._15{width:949.980000px;}
._11{width:1361.364000px;}
._13{width:1535.538000px;}
._f{width:2720.280000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc7{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:60.000000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.270000px;}
.yf8{bottom:5.385000px;}
.yf0{bottom:7.050000px;}
.yc8{bottom:7.200000px;}
.yc2{bottom:7.350000px;}
.yf4{bottom:7.365000px;}
.y10a{bottom:7.500000px;}
.yf6{bottom:7.905000px;}
.y12d{bottom:15.150000px;}
.yc6{bottom:16.200000px;}
.ye8{bottom:18.900000px;}
.yd0{bottom:19.050000px;}
.yd2{bottom:19.200000px;}
.yca{bottom:19.350000px;}
.yfc{bottom:20.709000px;}
.y118{bottom:21.450000px;}
.y12b{bottom:22.800000px;}
.ye9{bottom:24.750000px;}
.y158{bottom:26.325000px;}
.yb9{bottom:29.700000px;}
.y7e{bottom:29.730000px;}
.y129{bottom:30.600000px;}
.yfb{bottom:30.840000px;}
.y7f{bottom:30.855750px;}
.yc5{bottom:32.100000px;}
.y12a{bottom:38.250000px;}
.ybd{bottom:42.450000px;}
.y107{bottom:42.600000px;}
.y12c{bottom:46.050000px;}
.yc4{bottom:47.700000px;}
.ye6{bottom:48.750000px;}
.yce{bottom:51.750000px;}
.y1{bottom:53.250000px;}
.y37{bottom:54.150000px;}
.y3{bottom:57.954000px;}
.yb8{bottom:62.205000px;}
.y7d{bottom:64.470000px;}
.y131{bottom:64.980000px;}
.y157{bottom:67.125000px;}
.ycd{bottom:67.200000px;}
.yd6{bottom:67.800000px;}
.yf9{bottom:70.020000px;}
.yb7{bottom:77.715000px;}
.y132{bottom:79.303500px;}
.y7c{bottom:79.980000px;}
.y130{bottom:80.670000px;}
.y156{bottom:82.635000px;}
.ycc{bottom:82.650000px;}
.yd5{bottom:83.250000px;}
.yf7{bottom:86.265000px;}
.y15a{bottom:87.000000px;}
.y170{bottom:88.290000px;}
.y172{bottom:90.240000px;}
.yb6{bottom:93.375000px;}
.y7b{bottom:95.640000px;}
.y35{bottom:97.596000px;}
.y155{bottom:98.295000px;}
.yf5{bottom:106.785000px;}
.y7a{bottom:111.120000px;}
.y34{bottom:111.636000px;}
.y154{bottom:113.775000px;}
.yb5{bottom:124.155000px;}
.y2{bottom:125.295000px;}
.y33{bottom:125.856000px;}
.y79{bottom:126.600000px;}
.y153{bottom:129.255000px;}
.y159{bottom:130.500000px;}
.yf3{bottom:132.165000px;}
.yb4{bottom:139.815000px;}
.y12f{bottom:140.220000px;}
.y78{bottom:142.260000px;}
.y152{bottom:144.735000px;}
.y32{bottom:153.390000px;}
.yb3{bottom:155.655000px;}
.yf2{bottom:156.600000px;}
.y77{bottom:157.380000px;}
.y151{bottom:160.395000px;}
.y12e{bottom:164.550000px;}
.yc0{bottom:168.000000px;}
.yb2{bottom:168.075000px;}
.y76{bottom:173.400000px;}
.y150{bottom:175.875000px;}
.yf1{bottom:180.900000px;}
.y31{bottom:182.550000px;}
.ybf{bottom:183.450000px;}
.y75{bottom:188.880000px;}
.y128{bottom:189.000000px;}
.y14f{bottom:191.355000px;}
.y30{bottom:200.730000px;}
.y74{bottom:204.540000px;}
.yef{bottom:205.500000px;}
.y14e{bottom:206.835000px;}
.y2f{bottom:216.210000px;}
.y73{bottom:219.660000px;}
.y14d{bottom:222.675000px;}
.yee{bottom:229.800000px;}
.y2e{bottom:231.690000px;}
.y72{bottom:235.500000px;}
.y2d{bottom:247.350000px;}
.y71{bottom:251.160000px;}
.y14c{bottom:253.815000px;}
.yed{bottom:254.250000px;}
.y2c{bottom:262.830000px;}
.y70{bottom:266.640000px;}
.y14b{bottom:269.475000px;}
.y2b{bottom:278.310000px;}
.yec{bottom:278.550000px;}
.y127{bottom:279.555000px;}
.y6f{bottom:282.120000px;}
.y14a{bottom:284.955000px;}
.y2a{bottom:293.790000px;}
.y126{bottom:295.035000px;}
.y6e{bottom:297.780000px;}
.y149{bottom:300.435000px;}
.yeb{bottom:302.850000px;}
.y29{bottom:309.270000px;}
.y125{bottom:310.695000px;}
.y6d{bottom:312.900000px;}
.y148{bottom:315.915000px;}
.y28{bottom:324.930000px;}
.y124{bottom:326.175000px;}
.yea{bottom:327.300000px;}
.y6c{bottom:328.920000px;}
.y147{bottom:331.575000px;}
.y27{bottom:340.455000px;}
.y123{bottom:341.655000px;}
.y6b{bottom:344.445000px;}
.y146{bottom:347.100000px;}
.ye5{bottom:351.600000px;}
.y26{bottom:355.935000px;}
.y122{bottom:357.315000px;}
.y6a{bottom:359.925000px;}
.y145{bottom:362.580000px;}
.y25{bottom:371.415000px;}
.y121{bottom:372.795000px;}
.y69{bottom:375.585000px;}
.y144{bottom:378.240000px;}
.y24{bottom:387.075000px;}
.y120{bottom:388.500000px;}
.yb1{bottom:390.825000px;}
.y68{bottom:390.885000px;}
.y143{bottom:393.360000px;}
.y23{bottom:402.555000px;}
.y11f{bottom:404.160000px;}
.yb0{bottom:406.485000px;}
.y67{bottom:406.725000px;}
.ye7{bottom:411.450000px;}
.y11e{bottom:416.580000px;}
.y22{bottom:418.035000px;}
.yaf{bottom:421.965000px;}
.y66{bottom:422.205000px;}
.y142{bottom:425.040000px;}
.y21{bottom:433.695000px;}
.yae{bottom:437.445000px;}
.y65{bottom:437.685000px;}
.y141{bottom:440.520000px;}
.yad{bottom:452.925000px;}
.y64{bottom:453.165000px;}
.y20{bottom:455.835000px;}
.y140{bottom:456.180000px;}
.ye4{bottom:462.870000px;}
.yac{bottom:468.405000px;}
.y63{bottom:468.825000px;}
.y13f{bottom:471.660000px;}
.y1f{bottom:482.475000px;}
.yab{bottom:484.065000px;}
.y62{bottom:484.305000px;}
.y13e{bottom:487.140000px;}
.ye3{bottom:494.010000px;}
.y1e{bottom:498.135000px;}
.yaa{bottom:499.545000px;}
.y61{bottom:499.605000px;}
.y13d{bottom:502.620000px;}
.ye2{bottom:509.490000px;}
.y1d{bottom:513.615000px;}
.ya9{bottom:515.025000px;}
.y60{bottom:515.445000px;}
.y13c{bottom:518.280000px;}
.ye1{bottom:524.970000px;}
.ya8{bottom:530.505000px;}
.y5f{bottom:531.105000px;}
.y13b{bottom:533.760000px;}
.ye0{bottom:540.450000px;}
.ya7{bottom:546.165000px;}
.y5e{bottom:546.585000px;}
.y1c{bottom:548.175000px;}
.y13a{bottom:549.060000px;}
.ydf{bottom:555.930000px;}
.ya6{bottom:561.645000px;}
.y5d{bottom:561.885000px;}
.y139{bottom:564.900000px;}
.y1b{bottom:569.775000px;}
.yde{bottom:571.590000px;}
.ya5{bottom:577.305000px;}
.y5c{bottom:577.905000px;}
.y138{bottom:580.560000px;}
.ydd{bottom:587.070000px;}
.ya4{bottom:592.785000px;}
.y5b{bottom:593.025000px;}
.y137{bottom:596.220000px;}
.y1a{bottom:598.395000px;}
.ydc{bottom:602.730000px;}
.ya3{bottom:608.115000px;}
.y136{bottom:608.490000px;}
.y19{bottom:613.905000px;}
.y171{bottom:617.340000px;}
.ydb{bottom:617.880000px;}
.ya2{bottom:623.775000px;}
.y5a{bottom:624.735000px;}
.yda{bottom:633.900000px;}
.ya1{bottom:639.255000px;}
.y59{bottom:640.215000px;}
.ybe{bottom:646.800000px;}
.y18{bottom:648.645000px;}
.y58{bottom:655.695000px;}
.y11d{bottom:660.180000px;}
.yd9{bottom:666.000000px;}
.ya0{bottom:670.755000px;}
.y57{bottom:671.175000px;}
.y11c{bottom:676.200000px;}
.y17{bottom:683.205000px;}
.y9f{bottom:686.235000px;}
.y56{bottom:686.655000px;}
.y11a{bottom:689.100000px;}
.yd8{bottom:694.950000px;}
.y9e{bottom:701.895000px;}
.y55{bottom:702.315000px;}
.y11b{bottom:708.150000px;}
.yd7{bottom:714.000000px;}
.y9d{bottom:717.375000px;}
.y54{bottom:717.795000px;}
.y16{bottom:717.945000px;}
.y9c{bottom:732.855000px;}
.y53{bottom:733.275000px;}
.y117{bottom:737.100000px;}
.yd4{bottom:742.800000px;}
.y9b{bottom:748.515000px;}
.y52{bottom:748.755000px;}
.y15{bottom:752.505000px;}
.y119{bottom:758.550000px;}
.yd3{bottom:762.000000px;}
.y9a{bottom:763.995000px;}
.y51{bottom:764.415000px;}
.y99{bottom:779.475000px;}
.y50{bottom:779.895000px;}
.y14{bottom:787.245000px;}
.y115{bottom:789.600000px;}
.ycb{bottom:790.800000px;}
.y98{bottom:795.135000px;}
.y4f{bottom:795.555000px;}
.y116{bottom:796.950000px;}
.yd1{bottom:810.000000px;}
.y97{bottom:810.615000px;}
.y4e{bottom:811.035000px;}
.y113{bottom:814.050000px;}
.y114{bottom:821.400000px;}
.y13{bottom:821.805000px;}
.y96{bottom:826.095000px;}
.y4d{bottom:826.515000px;}
.y111{bottom:838.350000px;}
.ycf{bottom:838.950000px;}
.y95{bottom:841.755000px;}
.y4c{bottom:841.995000px;}
.y112{bottom:845.700000px;}
.y12{bottom:856.545000px;}
.y94{bottom:857.235000px;}
.y4b{bottom:857.655000px;}
.y10f{bottom:862.800000px;}
.y110{bottom:870.000000px;}
.y93{bottom:872.940000px;}
.y16e{bottom:873.150000px;}
.y4a{bottom:873.180000px;}
.yc9{bottom:886.800000px;}
.y10d{bottom:887.100000px;}
.y92{bottom:888.420000px;}
.y16d{bottom:888.630000px;}
.y49{bottom:888.660000px;}
.y11{bottom:891.510000px;}
.y10e{bottom:894.450000px;}
.y91{bottom:903.900000px;}
.y16c{bottom:904.110000px;}
.y48{bottom:904.140000px;}
.y10{bottom:910.590000px;}
.y10c{bottom:911.400000px;}
.y90{bottom:919.380000px;}
.y16b{bottom:919.770000px;}
.y47{bottom:919.800000px;}
.yc3{bottom:934.950000px;}
.y8f{bottom:935.040000px;}
.y16a{bottom:935.250000px;}
.y46{bottom:935.280000px;}
.y109{bottom:935.850000px;}
.y10b{bottom:943.350000px;}
.yf{bottom:949.650000px;}
.y8e{bottom:950.520000px;}
.y169{bottom:950.730000px;}
.y45{bottom:950.760000px;}
.yc7{bottom:959.400000px;}
.y106{bottom:960.150000px;}
.y8d{bottom:966.000000px;}
.y168{bottom:966.210000px;}
.y44{bottom:966.420000px;}
.ye{bottom:973.950000px;}
.y8c{bottom:981.660000px;}
.y167{bottom:981.870000px;}
.y43{bottom:981.900000px;}
.yc1{bottom:983.700000px;}
.y8b{bottom:997.140000px;}
.y166{bottom:997.350000px;}
.y42{bottom:997.380000px;}
.y108{bottom:1002.750000px;}
.ybc{bottom:1008.000000px;}
.y8a{bottom:1012.620000px;}
.y165{bottom:1012.830000px;}
.y41{bottom:1012.860000px;}
.y16f{bottom:1014.090000px;}
.yd{bottom:1016.070000px;}
.y89{bottom:1028.280000px;}
.y164{bottom:1028.310000px;}
.y40{bottom:1028.520000px;}
.ya{bottom:1034.070000px;}
.yc{bottom:1039.290000px;}
.y135{bottom:1043.640000px;}
.y88{bottom:1043.760000px;}
.y163{bottom:1043.970000px;}
.y3f{bottom:1044.000000px;}
.y9{bottom:1057.290000px;}
.y105{bottom:1058.895000px;}
.y87{bottom:1059.240000px;}
.y162{bottom:1059.450000px;}
.y3e{bottom:1059.480000px;}
.yb{bottom:1071.330000px;}
.y104{bottom:1074.195000px;}
.y86{bottom:1074.900000px;}
.y161{bottom:1074.930000px;}
.y3d{bottom:1074.960000px;}
.y8{bottom:1086.630000px;}
.y103{bottom:1090.035000px;}
.y85{bottom:1090.380000px;}
.y160{bottom:1090.410000px;}
.y3c{bottom:1090.620000px;}
.y102{bottom:1105.515000px;}
.y7{bottom:1105.710000px;}
.y84{bottom:1105.860000px;}
.y15f{bottom:1106.070000px;}
.y3b{bottom:1106.100000px;}
.y101{bottom:1121.175000px;}
.y83{bottom:1121.520000px;}
.y15e{bottom:1121.550000px;}
.y134{bottom:1121.580000px;}
.y6{bottom:1122.990000px;}
.y100{bottom:1136.655000px;}
.y82{bottom:1136.820000px;}
.y3a{bottom:1136.880000px;}
.y15d{bottom:1137.030000px;}
.ybb{bottom:1137.180000px;}
.y133{bottom:1137.240000px;}
.y5{bottom:1140.300000px;}
.yff{bottom:1152.135000px;}
.y81{bottom:1152.330000px;}
.y39{bottom:1152.390000px;}
.y15c{bottom:1152.540000px;}
.yba{bottom:1152.690000px;}
.y4{bottom:1158.300000px;}
.yfe{bottom:1167.435000px;}
.y38{bottom:1168.050000px;}
.y15b{bottom:1168.200000px;}
.y80{bottom:1168.350000px;}
.yfd{bottom:1183.095000px;}
.y36{bottom:1193.700000px;}
.h26{height:15.510000px;}
.h25{height:19.785000px;}
.h22{height:23.430000px;}
.h2b{height:23.565000px;}
.h17{height:23.580000px;}
.h20{height:23.610000px;}
.h23{height:23.745000px;}
.h21{height:23.760000px;}
.h27{height:23.775000px;}
.h24{height:24.645000px;}
.hd{height:35.314453px;}
.h10{height:38.158594px;}
.h1d{height:47.160000px;}
.h1b{height:47.190000px;}
.h19{height:47.340000px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.h28{height:51.660000px;}
.hc{height:52.971680px;}
.h13{height:52.998047px;}
.he{height:54.421875px;}
.h2d{height:55.503491px;}
.h7{height:55.796836px;}
.h12{height:55.824609px;}
.h8{height:58.621992px;}
.h1f{height:59.040000px;}
.hb{height:59.074453px;}
.h14{height:59.092031px;}
.h29{height:59.332031px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h2e{height:62.578125px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2a{height:70.920000px;}
.ha{height:72.326250px;}
.h18{height:72.360000px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h15{height:94.500000px;}
.h1e{height:107.100000px;}
.h2c{height:131.310937px;}
.h1c{height:143.280000px;}
.h1a{height:143.310000px;}
.h16{height:360.450000px;}
.h0{height:1263.000000px;}
.wd{width:69.480000px;}
.w11{width:69.870000px;}
.w10{width:70.560000px;}
.we{width:71.100000px;}
.wf{width:76.890000px;}
.w3{width:119.520000px;}
.w1{width:123.690000px;}
.w9{width:132.825000px;}
.w2{width:151.200000px;}
.w5{width:162.735000px;}
.w4{width:163.050000px;}
.w6{width:170.550000px;}
.wa{width:245.850000px;}
.wb{width:289.800000px;}
.w7{width:371.700000px;}
.wc{width:379.035000px;}
.w8{width:542.700000px;}
.w0{width:894.000000px;}
.x5c{left:-577.185000px;}
.x0{left:0.000000px;}
.x1c{left:7.650000px;}
.x4d{left:10.650000px;}
.x4a{left:11.700000px;}
.x48{left:14.700000px;}
.x51{left:16.950000px;}
.x53{left:18.900000px;}
.x4b{left:19.950000px;}
.x50{left:22.500000px;}
.x4e{left:25.800000px;}
.x55{left:26.850000px;}
.x4{left:30.000000px;}
.x54{left:31.350000px;}
.x27{left:34.950000px;}
.x34{left:38.865000px;}
.xd{left:40.830000px;}
.x38{left:42.240000px;}
.x31{left:44.805000px;}
.xc{left:46.890000px;}
.x14{left:47.895000px;}
.x10{left:50.406000px;}
.xe{left:51.420000px;}
.x40{left:56.190000px;}
.x24{left:57.600000px;}
.x22{left:59.925000px;}
.x2f{left:62.625000px;}
.x2d{left:65.925000px;}
.x29{left:70.050000px;}
.x2a{left:73.500000px;}
.x2b{left:75.150000px;}
.x30{left:76.950000px;}
.xa{left:78.420000px;}
.x5d{left:81.465000px;}
.x21{left:100.125000px;}
.x59{left:101.745000px;}
.x3c{left:111.300000px;}
.x43{left:115.290000px;}
.x28{left:120.450000px;}
.x3e{left:124.650000px;}
.x26{left:158.100000px;}
.x2e{left:170.700000px;}
.x1b{left:173.700000px;}
.x2c{left:175.800000px;}
.x58{left:187.770000px;}
.xb{left:218.640000px;}
.x7{left:244.170000px;}
.x3b{left:252.900000px;}
.x33{left:256.200000px;}
.x32{left:259.650000px;}
.x23{left:263.400000px;}
.x5{left:270.300000px;}
.x47{left:274.650000px;}
.x20{left:281.850000px;}
.x6{left:290.610000px;}
.x1d{left:297.750000px;}
.x1f{left:305.850000px;}
.x46{left:312.300000px;}
.x39{left:319.500000px;}
.x37{left:324.255900px;}
.x5a{left:328.395000px;}
.x49{left:344.550000px;}
.x13{left:356.250000px;}
.x17{left:359.100000px;}
.x42{left:360.750000px;}
.x19{left:362.925000px;}
.x3f{left:364.200000px;}
.x41{left:365.850000px;}
.x3a{left:369.150000px;}
.x12{left:395.115000px;}
.x1{left:396.750000px;}
.x1a{left:397.800000px;}
.x15{left:403.230000px;}
.x16{left:404.453550px;}
.xf{left:412.311000px;}
.x4c{left:415.950000px;}
.x3{left:421.650000px;}
.x25{left:434.400000px;}
.x56{left:437.355000px;}
.x35{left:440.595000px;}
.x36{left:441.975900px;}
.x11{left:449.145000px;}
.x8{left:478.965000px;}
.x4f{left:493.200000px;}
.x3d{left:499.050000px;}
.x9{left:506.580000px;}
.x5b{left:528.000000px;}
.x52{left:564.150000px;}
.x1e{left:569.400000px;}
.x44{left:625.650000px;}
.x45{left:685.200000px;}
.x18{left:696.375000px;}
.x57{left:744.120000px;}
.x2{left:1066.500000px;}
@media print{
.v5{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-53.760000pt;}
.v6{vertical-align:-47.978667pt;}
.v4{vertical-align:-21.120000pt;}
.v8{vertical-align:-8.480000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.va{vertical-align:58.933333pt;}
.lsc{letter-spacing:-0.656000pt;}
.ls14{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.196267pt;}
.ls9{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.656000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:2.656000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls3{letter-spacing:5.920000pt;}
.ls1d{letter-spacing:26.976000pt;}
.ls5{letter-spacing:46.720000pt;}
.lse{letter-spacing:49.440000pt;}
.ls6{letter-spacing:63.680000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls15{letter-spacing:961.333333pt;}
.ls18{letter-spacing:1005.066667pt;}
.ls1b{letter-spacing:1254.133333pt;}
.ls1c{letter-spacing:1255.733333pt;}
.ls19{letter-spacing:1403.786667pt;}
.ls11{letter-spacing:1416.800000pt;}
.ls1a{letter-spacing:1447.733333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.720000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.ws3{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.096000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.344000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._12{margin-left:-75.962667pt;}
._19{margin-left:-4.234667pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._4{width:2.741120pt;}
._5{width:3.685120pt;}
._a{width:4.853547pt;}
._6{width:5.807787pt;}
._9{width:6.773333pt;}
._8{width:8.304000pt;}
._7{width:9.984000pt;}
._b{width:11.098240pt;}
._e{width:18.074667pt;}
._d{width:19.168000pt;}
._c{width:20.064000pt;}
._3{width:34.720000pt;}
._14{width:482.047787pt;}
._10{width:707.482667pt;}
._18{width:814.933333pt;}
._16{width:826.666667pt;}
._17{width:833.056000pt;}
._15{width:844.426667pt;}
._11{width:1210.101333pt;}
._13{width:1364.922667pt;}
._f{width:2418.026667pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:53.333333pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:2.906667pt;}
.yf8{bottom:4.786667pt;}
.yf0{bottom:6.266667pt;}
.yc8{bottom:6.400000pt;}
.yc2{bottom:6.533333pt;}
.yf4{bottom:6.546667pt;}
.y10a{bottom:6.666667pt;}
.yf6{bottom:7.026667pt;}
.y12d{bottom:13.466667pt;}
.yc6{bottom:14.400000pt;}
.ye8{bottom:16.800000pt;}
.yd0{bottom:16.933333pt;}
.yd2{bottom:17.066667pt;}
.yca{bottom:17.200000pt;}
.yfc{bottom:18.408000pt;}
.y118{bottom:19.066667pt;}
.y12b{bottom:20.266667pt;}
.ye9{bottom:22.000000pt;}
.y158{bottom:23.400000pt;}
.yb9{bottom:26.400000pt;}
.y7e{bottom:26.426667pt;}
.y129{bottom:27.200000pt;}
.yfb{bottom:27.413333pt;}
.y7f{bottom:27.427333pt;}
.yc5{bottom:28.533333pt;}
.y12a{bottom:34.000000pt;}
.ybd{bottom:37.733333pt;}
.y107{bottom:37.866667pt;}
.y12c{bottom:40.933333pt;}
.yc4{bottom:42.400000pt;}
.ye6{bottom:43.333333pt;}
.yce{bottom:46.000000pt;}
.y1{bottom:47.333333pt;}
.y37{bottom:48.133333pt;}
.y3{bottom:51.514667pt;}
.yb8{bottom:55.293333pt;}
.y7d{bottom:57.306667pt;}
.y131{bottom:57.760000pt;}
.y157{bottom:59.666667pt;}
.ycd{bottom:59.733333pt;}
.yd6{bottom:60.266667pt;}
.yf9{bottom:62.240000pt;}
.yb7{bottom:69.080000pt;}
.y132{bottom:70.492000pt;}
.y7c{bottom:71.093333pt;}
.y130{bottom:71.706667pt;}
.y156{bottom:73.453333pt;}
.ycc{bottom:73.466667pt;}
.yd5{bottom:74.000000pt;}
.yf7{bottom:76.680000pt;}
.y15a{bottom:77.333333pt;}
.y170{bottom:78.480000pt;}
.y172{bottom:80.213333pt;}
.yb6{bottom:83.000000pt;}
.y7b{bottom:85.013333pt;}
.y35{bottom:86.752000pt;}
.y155{bottom:87.373333pt;}
.yf5{bottom:94.920000pt;}
.y7a{bottom:98.773333pt;}
.y34{bottom:99.232000pt;}
.y154{bottom:101.133333pt;}
.yb5{bottom:110.360000pt;}
.y2{bottom:111.373333pt;}
.y33{bottom:111.872000pt;}
.y79{bottom:112.533333pt;}
.y153{bottom:114.893333pt;}
.y159{bottom:116.000000pt;}
.yf3{bottom:117.480000pt;}
.yb4{bottom:124.280000pt;}
.y12f{bottom:124.640000pt;}
.y78{bottom:126.453333pt;}
.y152{bottom:128.653333pt;}
.y32{bottom:136.346667pt;}
.yb3{bottom:138.360000pt;}
.yf2{bottom:139.200000pt;}
.y77{bottom:139.893333pt;}
.y151{bottom:142.573333pt;}
.y12e{bottom:146.266667pt;}
.yc0{bottom:149.333333pt;}
.yb2{bottom:149.400000pt;}
.y76{bottom:154.133333pt;}
.y150{bottom:156.333333pt;}
.yf1{bottom:160.800000pt;}
.y31{bottom:162.266667pt;}
.ybf{bottom:163.066667pt;}
.y75{bottom:167.893333pt;}
.y128{bottom:168.000000pt;}
.y14f{bottom:170.093333pt;}
.y30{bottom:178.426667pt;}
.y74{bottom:181.813333pt;}
.yef{bottom:182.666667pt;}
.y14e{bottom:183.853333pt;}
.y2f{bottom:192.186667pt;}
.y73{bottom:195.253333pt;}
.y14d{bottom:197.933333pt;}
.yee{bottom:204.266667pt;}
.y2e{bottom:205.946667pt;}
.y72{bottom:209.333333pt;}
.y2d{bottom:219.866667pt;}
.y71{bottom:223.253333pt;}
.y14c{bottom:225.613333pt;}
.yed{bottom:226.000000pt;}
.y2c{bottom:233.626667pt;}
.y70{bottom:237.013333pt;}
.y14b{bottom:239.533333pt;}
.y2b{bottom:247.386667pt;}
.yec{bottom:247.600000pt;}
.y127{bottom:248.493333pt;}
.y6f{bottom:250.773333pt;}
.y14a{bottom:253.293333pt;}
.y2a{bottom:261.146667pt;}
.y126{bottom:262.253333pt;}
.y6e{bottom:264.693333pt;}
.y149{bottom:267.053333pt;}
.yeb{bottom:269.200000pt;}
.y29{bottom:274.906667pt;}
.y125{bottom:276.173333pt;}
.y6d{bottom:278.133333pt;}
.y148{bottom:280.813333pt;}
.y28{bottom:288.826667pt;}
.y124{bottom:289.933333pt;}
.yea{bottom:290.933333pt;}
.y6c{bottom:292.373333pt;}
.y147{bottom:294.733333pt;}
.y27{bottom:302.626667pt;}
.y123{bottom:303.693333pt;}
.y6b{bottom:306.173333pt;}
.y146{bottom:308.533333pt;}
.ye5{bottom:312.533333pt;}
.y26{bottom:316.386667pt;}
.y122{bottom:317.613333pt;}
.y6a{bottom:319.933333pt;}
.y145{bottom:322.293333pt;}
.y25{bottom:330.146667pt;}
.y121{bottom:331.373333pt;}
.y69{bottom:333.853333pt;}
.y144{bottom:336.213333pt;}
.y24{bottom:344.066667pt;}
.y120{bottom:345.333333pt;}
.yb1{bottom:347.400000pt;}
.y68{bottom:347.453333pt;}
.y143{bottom:349.653333pt;}
.y23{bottom:357.826667pt;}
.y11f{bottom:359.253333pt;}
.yb0{bottom:361.320000pt;}
.y67{bottom:361.533333pt;}
.ye7{bottom:365.733333pt;}
.y11e{bottom:370.293333pt;}
.y22{bottom:371.586667pt;}
.yaf{bottom:375.080000pt;}
.y66{bottom:375.293333pt;}
.y142{bottom:377.813333pt;}
.y21{bottom:385.506667pt;}
.yae{bottom:388.840000pt;}
.y65{bottom:389.053333pt;}
.y141{bottom:391.573333pt;}
.yad{bottom:402.600000pt;}
.y64{bottom:402.813333pt;}
.y20{bottom:405.186667pt;}
.y140{bottom:405.493333pt;}
.ye4{bottom:411.440000pt;}
.yac{bottom:416.360000pt;}
.y63{bottom:416.733333pt;}
.y13f{bottom:419.253333pt;}
.y1f{bottom:428.866667pt;}
.yab{bottom:430.280000pt;}
.y62{bottom:430.493333pt;}
.y13e{bottom:433.013333pt;}
.ye3{bottom:439.120000pt;}
.y1e{bottom:442.786667pt;}
.yaa{bottom:444.040000pt;}
.y61{bottom:444.093333pt;}
.y13d{bottom:446.773333pt;}
.ye2{bottom:452.880000pt;}
.y1d{bottom:456.546667pt;}
.ya9{bottom:457.800000pt;}
.y60{bottom:458.173333pt;}
.y13c{bottom:460.693333pt;}
.ye1{bottom:466.640000pt;}
.ya8{bottom:471.560000pt;}
.y5f{bottom:472.093333pt;}
.y13b{bottom:474.453333pt;}
.ye0{bottom:480.400000pt;}
.ya7{bottom:485.480000pt;}
.y5e{bottom:485.853333pt;}
.y1c{bottom:487.266667pt;}
.y13a{bottom:488.053333pt;}
.ydf{bottom:494.160000pt;}
.ya6{bottom:499.240000pt;}
.y5d{bottom:499.453333pt;}
.y139{bottom:502.133333pt;}
.y1b{bottom:506.466667pt;}
.yde{bottom:508.080000pt;}
.ya5{bottom:513.160000pt;}
.y5c{bottom:513.693333pt;}
.y138{bottom:516.053333pt;}
.ydd{bottom:521.840000pt;}
.ya4{bottom:526.920000pt;}
.y5b{bottom:527.133333pt;}
.y137{bottom:529.973333pt;}
.y1a{bottom:531.906667pt;}
.ydc{bottom:535.760000pt;}
.ya3{bottom:540.546667pt;}
.y136{bottom:540.880000pt;}
.y19{bottom:545.693333pt;}
.y171{bottom:548.746667pt;}
.ydb{bottom:549.226667pt;}
.ya2{bottom:554.466667pt;}
.y5a{bottom:555.320000pt;}
.yda{bottom:563.466667pt;}
.ya1{bottom:568.226667pt;}
.y59{bottom:569.080000pt;}
.ybe{bottom:574.933333pt;}
.y18{bottom:576.573333pt;}
.y58{bottom:582.840000pt;}
.y11d{bottom:586.826667pt;}
.yd9{bottom:592.000000pt;}
.ya0{bottom:596.226667pt;}
.y57{bottom:596.600000pt;}
.y11c{bottom:601.066667pt;}
.y17{bottom:607.293333pt;}
.y9f{bottom:609.986667pt;}
.y56{bottom:610.360000pt;}
.y11a{bottom:612.533333pt;}
.yd8{bottom:617.733333pt;}
.y9e{bottom:623.906667pt;}
.y55{bottom:624.280000pt;}
.y11b{bottom:629.466667pt;}
.yd7{bottom:634.666667pt;}
.y9d{bottom:637.666667pt;}
.y54{bottom:638.040000pt;}
.y16{bottom:638.173333pt;}
.y9c{bottom:651.426667pt;}
.y53{bottom:651.800000pt;}
.y117{bottom:655.200000pt;}
.yd4{bottom:660.266667pt;}
.y9b{bottom:665.346667pt;}
.y52{bottom:665.560000pt;}
.y15{bottom:668.893333pt;}
.y119{bottom:674.266667pt;}
.yd3{bottom:677.333333pt;}
.y9a{bottom:679.106667pt;}
.y51{bottom:679.480000pt;}
.y99{bottom:692.866667pt;}
.y50{bottom:693.240000pt;}
.y14{bottom:699.773333pt;}
.y115{bottom:701.866667pt;}
.ycb{bottom:702.933333pt;}
.y98{bottom:706.786667pt;}
.y4f{bottom:707.160000pt;}
.y116{bottom:708.400000pt;}
.yd1{bottom:720.000000pt;}
.y97{bottom:720.546667pt;}
.y4e{bottom:720.920000pt;}
.y113{bottom:723.600000pt;}
.y114{bottom:730.133333pt;}
.y13{bottom:730.493333pt;}
.y96{bottom:734.306667pt;}
.y4d{bottom:734.680000pt;}
.y111{bottom:745.200000pt;}
.ycf{bottom:745.733333pt;}
.y95{bottom:748.226667pt;}
.y4c{bottom:748.440000pt;}
.y112{bottom:751.733333pt;}
.y12{bottom:761.373333pt;}
.y94{bottom:761.986667pt;}
.y4b{bottom:762.360000pt;}
.y10f{bottom:766.933333pt;}
.y110{bottom:773.333333pt;}
.y93{bottom:775.946667pt;}
.y16e{bottom:776.133333pt;}
.y4a{bottom:776.160000pt;}
.yc9{bottom:788.266667pt;}
.y10d{bottom:788.533333pt;}
.y92{bottom:789.706667pt;}
.y16d{bottom:789.893333pt;}
.y49{bottom:789.920000pt;}
.y11{bottom:792.453333pt;}
.y10e{bottom:795.066667pt;}
.y91{bottom:803.466667pt;}
.y16c{bottom:803.653333pt;}
.y48{bottom:803.680000pt;}
.y10{bottom:809.413333pt;}
.y10c{bottom:810.133333pt;}
.y90{bottom:817.226667pt;}
.y16b{bottom:817.573333pt;}
.y47{bottom:817.600000pt;}
.yc3{bottom:831.066667pt;}
.y8f{bottom:831.146667pt;}
.y16a{bottom:831.333333pt;}
.y46{bottom:831.360000pt;}
.y109{bottom:831.866667pt;}
.y10b{bottom:838.533333pt;}
.yf{bottom:844.133333pt;}
.y8e{bottom:844.906667pt;}
.y169{bottom:845.093333pt;}
.y45{bottom:845.120000pt;}
.yc7{bottom:852.800000pt;}
.y106{bottom:853.466667pt;}
.y8d{bottom:858.666667pt;}
.y168{bottom:858.853333pt;}
.y44{bottom:859.040000pt;}
.ye{bottom:865.733333pt;}
.y8c{bottom:872.586667pt;}
.y167{bottom:872.773333pt;}
.y43{bottom:872.800000pt;}
.yc1{bottom:874.400000pt;}
.y8b{bottom:886.346667pt;}
.y166{bottom:886.533333pt;}
.y42{bottom:886.560000pt;}
.y108{bottom:891.333333pt;}
.ybc{bottom:896.000000pt;}
.y8a{bottom:900.106667pt;}
.y165{bottom:900.293333pt;}
.y41{bottom:900.320000pt;}
.y16f{bottom:901.413333pt;}
.yd{bottom:903.173333pt;}
.y89{bottom:914.026667pt;}
.y164{bottom:914.053333pt;}
.y40{bottom:914.240000pt;}
.ya{bottom:919.173333pt;}
.yc{bottom:923.813333pt;}
.y135{bottom:927.680000pt;}
.y88{bottom:927.786667pt;}
.y163{bottom:927.973333pt;}
.y3f{bottom:928.000000pt;}
.y9{bottom:939.813333pt;}
.y105{bottom:941.240000pt;}
.y87{bottom:941.546667pt;}
.y162{bottom:941.733333pt;}
.y3e{bottom:941.760000pt;}
.yb{bottom:952.293333pt;}
.y104{bottom:954.840000pt;}
.y86{bottom:955.466667pt;}
.y161{bottom:955.493333pt;}
.y3d{bottom:955.520000pt;}
.y8{bottom:965.893333pt;}
.y103{bottom:968.920000pt;}
.y85{bottom:969.226667pt;}
.y160{bottom:969.253333pt;}
.y3c{bottom:969.440000pt;}
.y102{bottom:982.680000pt;}
.y7{bottom:982.853333pt;}
.y84{bottom:982.986667pt;}
.y15f{bottom:983.173333pt;}
.y3b{bottom:983.200000pt;}
.y101{bottom:996.600000pt;}
.y83{bottom:996.906667pt;}
.y15e{bottom:996.933333pt;}
.y134{bottom:996.960000pt;}
.y6{bottom:998.213333pt;}
.y100{bottom:1010.360000pt;}
.y82{bottom:1010.506667pt;}
.y3a{bottom:1010.560000pt;}
.y15d{bottom:1010.693333pt;}
.ybb{bottom:1010.826667pt;}
.y133{bottom:1010.880000pt;}
.y5{bottom:1013.600000pt;}
.yff{bottom:1024.120000pt;}
.y81{bottom:1024.293333pt;}
.y39{bottom:1024.346667pt;}
.y15c{bottom:1024.480000pt;}
.yba{bottom:1024.613333pt;}
.y4{bottom:1029.600000pt;}
.yfe{bottom:1037.720000pt;}
.y38{bottom:1038.266667pt;}
.y15b{bottom:1038.400000pt;}
.y80{bottom:1038.533333pt;}
.yfd{bottom:1051.640000pt;}
.y36{bottom:1061.066667pt;}
.h26{height:13.786667pt;}
.h25{height:17.586667pt;}
.h22{height:20.826667pt;}
.h2b{height:20.946667pt;}
.h17{height:20.960000pt;}
.h20{height:20.986667pt;}
.h23{height:21.106667pt;}
.h21{height:21.120000pt;}
.h27{height:21.133333pt;}
.h24{height:21.906667pt;}
.hd{height:31.390625pt;}
.h10{height:33.918750pt;}
.h1d{height:41.920000pt;}
.h1b{height:41.946667pt;}
.h19{height:42.080000pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.h28{height:45.920000pt;}
.hc{height:47.085938pt;}
.h13{height:47.109375pt;}
.he{height:48.375000pt;}
.h2d{height:49.336436pt;}
.h7{height:49.597187pt;}
.h12{height:49.621875pt;}
.h8{height:52.108438pt;}
.h1f{height:52.480000pt;}
.hb{height:52.510625pt;}
.h14{height:52.526250pt;}
.h29{height:52.739583pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h2e{height:55.625000pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2a{height:63.040000pt;}
.ha{height:64.290000pt;}
.h18{height:64.320000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h15{height:84.000000pt;}
.h1e{height:95.200000pt;}
.h2c{height:116.720833pt;}
.h1c{height:127.360000pt;}
.h1a{height:127.386667pt;}
.h16{height:320.400000pt;}
.h0{height:1122.666667pt;}
.wd{width:61.760000pt;}
.w11{width:62.106667pt;}
.w10{width:62.720000pt;}
.we{width:63.200000pt;}
.wf{width:68.346667pt;}
.w3{width:106.240000pt;}
.w1{width:109.946667pt;}
.w9{width:118.066667pt;}
.w2{width:134.400000pt;}
.w5{width:144.653333pt;}
.w4{width:144.933333pt;}
.w6{width:151.600000pt;}
.wa{width:218.533333pt;}
.wb{width:257.600000pt;}
.w7{width:330.400000pt;}
.wc{width:336.920000pt;}
.w8{width:482.400000pt;}
.w0{width:794.666667pt;}
.x5c{left:-513.053333pt;}
.x0{left:0.000000pt;}
.x1c{left:6.800000pt;}
.x4d{left:9.466667pt;}
.x4a{left:10.400000pt;}
.x48{left:13.066667pt;}
.x51{left:15.066667pt;}
.x53{left:16.800000pt;}
.x4b{left:17.733333pt;}
.x50{left:20.000000pt;}
.x4e{left:22.933333pt;}
.x55{left:23.866667pt;}
.x4{left:26.666667pt;}
.x54{left:27.866667pt;}
.x27{left:31.066667pt;}
.x34{left:34.546667pt;}
.xd{left:36.293333pt;}
.x38{left:37.546667pt;}
.x31{left:39.826667pt;}
.xc{left:41.680000pt;}
.x14{left:42.573333pt;}
.x10{left:44.805333pt;}
.xe{left:45.706667pt;}
.x40{left:49.946667pt;}
.x24{left:51.200000pt;}
.x22{left:53.266667pt;}
.x2f{left:55.666667pt;}
.x2d{left:58.600000pt;}
.x29{left:62.266667pt;}
.x2a{left:65.333333pt;}
.x2b{left:66.800000pt;}
.x30{left:68.400000pt;}
.xa{left:69.706667pt;}
.x5d{left:72.413333pt;}
.x21{left:89.000000pt;}
.x59{left:90.440000pt;}
.x3c{left:98.933333pt;}
.x43{left:102.480000pt;}
.x28{left:107.066667pt;}
.x3e{left:110.800000pt;}
.x26{left:140.533333pt;}
.x2e{left:151.733333pt;}
.x1b{left:154.400000pt;}
.x2c{left:156.266667pt;}
.x58{left:166.906667pt;}
.xb{left:194.346667pt;}
.x7{left:217.040000pt;}
.x3b{left:224.800000pt;}
.x33{left:227.733333pt;}
.x32{left:230.800000pt;}
.x23{left:234.133333pt;}
.x5{left:240.266667pt;}
.x47{left:244.133333pt;}
.x20{left:250.533333pt;}
.x6{left:258.320000pt;}
.x1d{left:264.666667pt;}
.x1f{left:271.866667pt;}
.x46{left:277.600000pt;}
.x39{left:284.000000pt;}
.x37{left:288.227467pt;}
.x5a{left:291.906667pt;}
.x49{left:306.266667pt;}
.x13{left:316.666667pt;}
.x17{left:319.200000pt;}
.x42{left:320.666667pt;}
.x19{left:322.600000pt;}
.x3f{left:323.733333pt;}
.x41{left:325.200000pt;}
.x3a{left:328.133333pt;}
.x12{left:351.213333pt;}
.x1{left:352.666667pt;}
.x1a{left:353.600000pt;}
.x15{left:358.426667pt;}
.x16{left:359.514267pt;}
.xf{left:366.498667pt;}
.x4c{left:369.733333pt;}
.x3{left:374.800000pt;}
.x25{left:386.133333pt;}
.x56{left:388.760000pt;}
.x35{left:391.640000pt;}
.x36{left:392.867467pt;}
.x11{left:399.240000pt;}
.x8{left:425.746667pt;}
.x4f{left:438.400000pt;}
.x3d{left:443.600000pt;}
.x9{left:450.293333pt;}
.x5b{left:469.333333pt;}
.x52{left:501.466667pt;}
.x1e{left:506.133333pt;}
.x44{left:556.133333pt;}
.x45{left:609.066667pt;}
.x18{left:619.000000pt;}
.x57{left:661.440000pt;}
.x2{left:948.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  