
    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_f46c93518f6e006ba6eef87e.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_45ebce72a282f2493046e40b.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_328dce6eecd79f6b10c358e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128418;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_6cfc606f137b866b6e118455.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_315be88e02a197bc37b0468e.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:-68.400000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.135360px;}
.ls12{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.666000px;}
.ls19{letter-spacing:0.774000px;}
.ls15{letter-spacing:0.828000px;}
.ls13{letter-spacing:1.080000px;}
.ls17{letter-spacing:16.506720px;}
.lsd{letter-spacing:20.491200px;}
.ls16{letter-spacing:46.026720px;}
.ls4{letter-spacing:64.170720px;}
.ls7{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.020000px;}
.wsc{word-spacing:-15.714000px;}
.ws7{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-2.059920px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.260560px;}
._7{width:4.123440px;}
._8{width:5.250960px;}
._d{width:6.513840px;}
._b{width:7.768800px;}
._c{width:9.146640px;}
._6{width:10.277280px;}
._5{width:11.473920px;}
._11{width:12.669120px;}
._a{width:13.804560px;}
._10{width:15.948000px;}
._3{width:17.928000px;}
._4{width:18.943920px;}
._12{width:20.378160px;}
._13{width:21.812400px;}
._19{width:23.008320px;}
._e{width:24.262560px;}
._f{width:26.060160px;}
._18{width:28.326240px;}
._1b{width:29.596800px;}
._1a{width:30.737520px;}
._9{width:201.204000px;}
._17{width:309.789120px;}
._16{width:350.263440px;}
._15{width:398.694000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y195{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.240000px;}
.y100{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y1b5{bottom:3.774000px;}
.yd9{bottom:3.780000px;}
.y189{bottom:12.060000px;}
.yf8{bottom:12.240000px;}
.y117{bottom:12.420000px;}
.y18a{bottom:20.700000px;}
.yf7{bottom:20.880000px;}
.yf3{bottom:21.060000px;}
.y18c{bottom:21.105000px;}
.y4{bottom:21.240000px;}
.y12c{bottom:56.700000px;}
.yab{bottom:61.560000px;}
.y45{bottom:63.540000px;}
.y161{bottom:64.980000px;}
.y192{bottom:65.340000px;}
.y1b9{bottom:67.680000px;}
.yfd{bottom:72.180000px;}
.y85{bottom:74.520000px;}
.y12b{bottom:78.480000px;}
.ya7{bottom:78.840000px;}
.y44{bottom:80.820000px;}
.y160{bottom:82.260000px;}
.y191{bottom:82.620000px;}
.y1b8{bottom:84.420000px;}
.yfc{bottom:89.280000px;}
.yd1{bottom:91.620000px;}
.y84{bottom:91.800000px;}
.ya6{bottom:96.120000px;}
.y43{bottom:98.136000px;}
.y15f{bottom:99.936000px;}
.y12a{bottom:100.296000px;}
.y1b7{bottom:106.236000px;}
.yfb{bottom:106.596000px;}
.yd0{bottom:108.756000px;}
.y83{bottom:109.116000px;}
.ya5{bottom:113.436000px;}
.y42{bottom:115.416000px;}
.y190{bottom:116.676000px;}
.y15e{bottom:117.036000px;}
.yfa{bottom:123.876000px;}
.y129{bottom:124.596000px;}
.ycf{bottom:126.036000px;}
.y82{bottom:126.396000px;}
.y1b6{bottom:128.016000px;}
.yaa{bottom:130.356000px;}
.ya4{bottom:130.716000px;}
.y41{bottom:132.516000px;}
.y15d{bottom:134.316000px;}
.yf9{bottom:140.796000px;}
.y128{bottom:141.876000px;}
.yce{bottom:143.316000px;}
.y81{bottom:143.496000px;}
.ya3{bottom:147.816000px;}
.y40{bottom:149.796000px;}
.y15c{bottom:151.590000px;}
.y127{bottom:159.150000px;}
.ycd{bottom:160.590000px;}
.y80{bottom:160.770000px;}
.yf6{bottom:162.570000px;}
.ya2{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.y15b{bottom:168.870000px;}
.y1b4{bottom:171.570000px;}
.y126{bottom:176.070000px;}
.ycc{bottom:177.870000px;}
.y7f{bottom:178.050000px;}
.ya1{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.y15a{bottom:186.150000px;}
.y125{bottom:193.530000px;}
.y7e{bottom:194.970000px;}
.ycb{bottom:195.150000px;}
.y1b3{bottom:195.870000px;}
.ya0{bottom:199.650000px;}
.yf5{bottom:201.450000px;}
.y3d{bottom:201.630000px;}
.y159{bottom:203.430000px;}
.y124{bottom:210.810000px;}
.yca{bottom:212.250000px;}
.y7d{bottom:212.610000px;}
.y1b2{bottom:213.150000px;}
.y9f{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.y18f{bottom:220.170000px;}
.y158{bottom:220.530000px;}
.yf4{bottom:223.230000px;}
.y123{bottom:228.090000px;}
.yc9{bottom:229.530000px;}
.y7c{bottom:229.890000px;}
.y1b1{bottom:230.430000px;}
.y9e{bottom:234.030000px;}
.y3b{bottom:236.010000px;}
.y157{bottom:237.810000px;}
.yf2{bottom:245.010000px;}
.y122{bottom:245.370000px;}
.yc8{bottom:246.810000px;}
.y7b{bottom:246.990000px;}
.y1b0{bottom:247.710000px;}
.y9d{bottom:251.310000px;}
.y3a{bottom:253.290000px;}
.y156{bottom:254.730000px;}
.y18e{bottom:259.230000px;}
.y121{bottom:262.650000px;}
.yc7{bottom:264.090000px;}
.y7a{bottom:264.270000px;}
.y1af{bottom:264.450000px;}
.y9c{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.y155{bottom:276.510000px;}
.y1ae{bottom:278.490000px;}
.y120{bottom:279.930000px;}
.y18d{bottom:281.010000px;}
.yc6{bottom:281.370000px;}
.y79{bottom:281.550000px;}
.yf1{bottom:284.070000px;}
.y9b{bottom:285.870000px;}
.y38{bottom:287.850000px;}
.y11f{bottom:297.030000px;}
.y154{bottom:298.290000px;}
.y78{bottom:298.470000px;}
.yc5{bottom:298.650000px;}
.y9a{bottom:303.150000px;}
.y37{bottom:305.130000px;}
.yf0{bottom:308.370000px;}
.y11e{bottom:314.310000px;}
.yc4{bottom:315.750000px;}
.y77{bottom:316.110000px;}
.y153{bottom:319.890000px;}
.y99{bottom:320.430000px;}
.y36{bottom:321.870000px;}
.yef{bottom:325.650000px;}
.y11d{bottom:331.590000px;}
.yc3{bottom:333.030000px;}
.y76{bottom:333.210000px;}
.y98{bottom:337.170000px;}
.ya9{bottom:337.530000px;}
.y35{bottom:339.510000px;}
.y18b{bottom:341.670000px;}
.yee{bottom:342.930000px;}
.y152{bottom:344.370000px;}
.y11c{bottom:348.870000px;}
.yc2{bottom:350.310000px;}
.y75{bottom:350.490000px;}
.y97{bottom:354.810000px;}
.y34{bottom:356.790000px;}
.yed{bottom:360.075000px;}
.y151{bottom:361.695000px;}
.y11b{bottom:366.195000px;}
.yc1{bottom:367.635000px;}
.y74{bottom:367.815000px;}
.y96{bottom:372.135000px;}
.y33{bottom:374.115000px;}
.yec{bottom:376.995000px;}
.y150{bottom:378.615000px;}
.y188{bottom:380.775000px;}
.y11a{bottom:383.475000px;}
.yc0{bottom:384.915000px;}
.y73{bottom:385.095000px;}
.y95{bottom:389.415000px;}
.y32{bottom:391.395000px;}
.yeb{bottom:394.635000px;}
.y14f{bottom:396.075000px;}
.y119{bottom:400.215000px;}
.ybf{bottom:402.015000px;}
.y72{bottom:402.375000px;}
.y1be{bottom:406.335000px;}
.y94{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.yea{bottom:411.915000px;}
.y14e{bottom:413.355000px;}
.ybe{bottom:419.295000px;}
.y71{bottom:419.655000px;}
.y187{bottom:422.355000px;}
.y93{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.ye9{bottom:429.195000px;}
.y14d{bottom:430.635000px;}
.ybd{bottom:436.575000px;}
.y70{bottom:436.755000px;}
.y118{bottom:439.275000px;}
.y186{bottom:439.635000px;}
.y92{bottom:440.715000px;}
.y1bd{bottom:441.075000px;}
.y2f{bottom:443.055000px;}
.ye8{bottom:446.475000px;}
.y14c{bottom:447.915000px;}
.ybc{bottom:453.855000px;}
.y6f{bottom:454.035000px;}
.y184{bottom:456.915000px;}
.y91{bottom:458.355000px;}
.y185{bottom:459.156000px;}
.y2e{bottom:460.335000px;}
.y116{bottom:461.055000px;}
.ye7{bottom:463.575000px;}
.y14b{bottom:465.195000px;}
.ybb{bottom:471.135000px;}
.y6e{bottom:471.315000px;}
.y183{bottom:474.195000px;}
.y90{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.ye6{bottom:480.855000px;}
.y14a{bottom:482.295000px;}
.yba{bottom:488.415000px;}
.y6d{bottom:488.595000px;}
.y182{bottom:490.935000px;}
.y8f{bottom:492.915000px;}
.y2c{bottom:494.895000px;}
.ye5{bottom:498.135000px;}
.y149{bottom:499.575000px;}
.y115{bottom:499.935000px;}
.y6c{bottom:505.515000px;}
.y181{bottom:508.575000px;}
.y8e{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.ye4{bottom:515.415000px;}
.y148{bottom:516.855000px;}
.yb9{bottom:522.795000px;}
.y6b{bottom:523.155000px;}
.y114{bottom:524.415000px;}
.y180{bottom:525.855000px;}
.y8d{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.ye3{bottom:532.695000px;}
.y147{bottom:533.775000px;}
.yb8{bottom:540.075000px;}
.y6a{bottom:540.255000px;}
.y113{bottom:541.695000px;}
.y17f{bottom:543.135000px;}
.y8c{bottom:544.575000px;}
.y29{bottom:546.195000px;}
.ye2{bottom:549.795000px;}
.y146{bottom:555.555000px;}
.yb7{bottom:557.355000px;}
.y69{bottom:558.615000px;}
.y112{bottom:558.795000px;}
.y17e{bottom:560.415000px;}
.y8b{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.ye1{bottom:567.075000px;}
.yb6{bottom:574.635000px;}
.y111{bottom:576.075000px;}
.y68{bottom:576.975000px;}
.y145{bottom:577.335000px;}
.y8a{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.ye0{bottom:584.355000px;}
.yb5{bottom:591.915000px;}
.y110{bottom:593.355000px;}
.y17d{bottom:594.795000px;}
.y67{bottom:595.335000px;}
.y89{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y144{bottom:598.935000px;}
.ydf{bottom:601.635000px;}
.yb4{bottom:609.015000px;}
.y10f{bottom:610.275000px;}
.y17c{bottom:612.075000px;}
.y66{bottom:613.335000px;}
.y88{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.yde{bottom:618.945000px;}
.y143{bottom:620.745000px;}
.yb3{bottom:626.325000px;}
.y10e{bottom:627.945000px;}
.y17b{bottom:629.385000px;}
.y1bc{bottom:630.465000px;}
.y65{bottom:630.825000px;}
.y24{bottom:632.445000px;}
.ydd{bottom:635.865000px;}
.yb2{bottom:643.605000px;}
.y10d{bottom:645.225000px;}
.y17a{bottom:646.665000px;}
.y64{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.ydc{bottom:657.465000px;}
.yb1{bottom:660.885000px;}
.y10c{bottom:662.325000px;}
.y179{bottom:663.945000px;}
.y63{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.yb0{bottom:678.165000px;}
.ydb{bottom:679.245000px;}
.y10b{bottom:679.605000px;}
.y178{bottom:681.225000px;}
.y62{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y1ad{bottom:687.885000px;}
.yaf{bottom:695.445000px;}
.y142{bottom:696.525000px;}
.y10a{bottom:696.885000px;}
.y177{bottom:698.325000px;}
.y61{bottom:699.945000px;}
.yda{bottom:701.025000px;}
.y20{bottom:701.925000px;}
.y1ac{bottom:705.165000px;}
.yae{bottom:712.545000px;}
.y109{bottom:714.165000px;}
.y176{bottom:715.605000px;}
.y60{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.y1ab{bottom:722.445000px;}
.yd8{bottom:722.805000px;}
.yad{bottom:729.465000px;}
.y108{bottom:731.445000px;}
.y175{bottom:732.525000px;}
.y5f{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y1aa{bottom:739.725000px;}
.yac{bottom:743.325000px;}
.yd6{bottom:744.585000px;}
.y107{bottom:748.725000px;}
.y5e{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.y174{bottom:754.305000px;}
.y1a9{bottom:756.825000px;}
.y106{bottom:765.825000px;}
.y1c2{bottom:768.525000px;}
.y5d{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y1a8{bottom:774.105000px;}
.y141{bottom:782.745000px;}
.y105{bottom:783.105000px;}
.y5c{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.y1a7{bottom:791.025000px;}
.y173{bottom:795.885000px;}
.y104{bottom:800.385000px;}
.y5b{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.y1a6{bottom:808.665000px;}
.y172{bottom:813.165000px;}
.y103{bottom:817.305000px;}
.y140{bottom:817.665000px;}
.y5a{bottom:820.365000px;}
.y87{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.y1a5{bottom:825.945000px;}
.y171{bottom:830.085000px;}
.y13f{bottom:834.945000px;}
.y59{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y1a4{bottom:842.685000px;}
.y170{bottom:847.545000px;}
.y13e{bottom:852.045000px;}
.y1c1{bottom:854.745000px;}
.y58{bottom:855.105000px;}
.y102{bottom:856.185000px;}
.y17{bottom:857.085000px;}
.y1a3{bottom:860.325000px;}
.y16f{bottom:864.825000px;}
.y13d{bottom:869.325000px;}
.y1bb{bottom:872.025000px;}
.y57{bottom:872.385000px;}
.y16{bottom:874.005000px;}
.y1a2{bottom:877.650000px;}
.y101{bottom:878.010000px;}
.y16e{bottom:882.150000px;}
.y13c{bottom:886.650000px;}
.yd5{bottom:889.350000px;}
.y56{bottom:889.710000px;}
.y15{bottom:892.050000px;}
.y1a1{bottom:894.930000px;}
.y16d{bottom:899.430000px;}
.y13b{bottom:903.930000px;}
.y55{bottom:906.990000px;}
.y14{bottom:909.690000px;}
.y1a0{bottom:912.210000px;}
.y16c{bottom:916.710000px;}
.yff{bottom:917.070000px;}
.y13a{bottom:921.210000px;}
.y1c0{bottom:923.730000px;}
.y54{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.y19f{bottom:929.490000px;}
.y16b{bottom:933.990000px;}
.y139{bottom:938.490000px;}
.yd4{bottom:941.010000px;}
.y53{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.y19e{bottom:946.590000px;}
.y16a{bottom:951.090000px;}
.y138{bottom:955.590000px;}
.y52{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y19d{bottom:963.870000px;}
.y169{bottom:968.370000px;}
.y137{bottom:972.870000px;}
.y51{bottom:975.570000px;}
.y86{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y19c{bottom:981.150000px;}
.y168{bottom:985.650000px;}
.y136{bottom:990.150000px;}
.ya8{bottom:992.850000px;}
.y50{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y19b{bottom:998.430000px;}
.y167{bottom:1002.570000px;}
.y135{bottom:1007.430000px;}
.yd3{bottom:1010.130000px;}
.y4f{bottom:1010.490000px;}
.ye{bottom:1013.910000px;}
.y19a{bottom:1015.710000px;}
.y166{bottom:1024.350000px;}
.y134{bottom:1024.710000px;}
.yfe{bottom:1027.230000px;}
.y4e{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.y199{bottom:1032.450000px;}
.y133{bottom:1041.990000px;}
.y4d{bottom:1044.870000px;}
.y165{bottom:1045.950000px;}
.yc{bottom:1048.290000px;}
.y198{bottom:1054.230000px;}
.y132{bottom:1059.090000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y164{bottom:1067.730000px;}
.y197{bottom:1076.010000px;}
.y131{bottom:1076.370000px;}
.y1ba{bottom:1079.070000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y163{bottom:1089.510000px;}
.y130{bottom:1093.290000px;}
.yd2{bottom:1096.350000px;}
.y4a{bottom:1096.710000px;}
.y196{bottom:1097.790000px;}
.y9{bottom:1100.490000px;}
.y49{bottom:1113.990000px;}
.y12f{bottom:1115.070000px;}
.y194{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y1bf{bottom:1130.730000px;}
.y48{bottom:1131.090000px;}
.y12e{bottom:1136.880000px;}
.y193{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y12d{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y162{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h8{height:17.100000px;}
.h9{height:17.280000px;}
.hc{height:17.316000px;}
.hb{height:34.380000px;}
.ha{height:34.560000px;}
.hd{height:34.596000px;}
.h6{height:54.536836px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:41.040000px;}
.w2a{width:51.876000px;}
.w17{width:60.480000px;}
.w2d{width:62.280000px;}
.w2e{width:62.460000px;}
.wd{width:62.820000px;}
.w1c{width:72.396000px;}
.w15{width:83.916000px;}
.w22{width:94.140000px;}
.wf{width:96.876000px;}
.w27{width:99.360000px;}
.we{width:104.760000px;}
.w1b{width:107.640000px;}
.w14{width:113.220000px;}
.w23{width:116.136000px;}
.w21{width:120.996000px;}
.w24{width:126.576000px;}
.w12{width:129.456000px;}
.w2c{width:136.296000px;}
.w13{width:139.716000px;}
.w18{width:141.516000px;}
.w28{width:143.856000px;}
.w19{width:146.916000px;}
.w1f{width:155.010000px;}
.w1d{width:158.940000px;}
.w20{width:162.930000px;}
.w26{width:171.210000px;}
.w10{width:182.010000px;}
.w6{width:213.870000px;}
.w1e{width:214.815000px;}
.w1a{width:224.535000px;}
.w2f{width:244.335000px;}
.w3{width:246.495000px;}
.w25{width:268.815000px;}
.w2b{width:272.955000px;}
.w11{width:312.195000px;}
.wc{width:331.995000px;}
.wa{width:334.695000px;}
.w4{width:336.315000px;}
.w9{width:360.615000px;}
.wb{width:420.225000px;}
.w8{width:424.365000px;}
.w16{width:431.745000px;}
.w5{width:448.665000px;}
.w2{width:538.665000px;}
.w7{width:571.290000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:1.080000px;}
.x34{left:3.465000px;}
.x70{left:5.220000px;}
.x28{left:7.020000px;}
.x78{left:8.820000px;}
.x30{left:10.440000px;}
.x61{left:12.420000px;}
.x25{left:13.680000px;}
.x52{left:14.760000px;}
.x3b{left:16.740000px;}
.x5f{left:17.820000px;}
.x31{left:19.665000px;}
.x23{left:21.240000px;}
.x4b{left:23.040000px;}
.x1d{left:24.120000px;}
.x46{left:26.460000px;}
.x6e{left:30.060000px;}
.x2b{left:31.320000px;}
.x6a{left:32.580000px;}
.x33{left:34.380000px;}
.x64{left:36.180000px;}
.x26{left:39.456000px;}
.x6f{left:41.085000px;}
.x7a{left:42.336000px;}
.x6d{left:43.560000px;}
.x4c{left:44.820000px;}
.x67{left:46.656000px;}
.x54{left:47.880000px;}
.x2d{left:49.356000px;}
.x17{left:51.696000px;}
.x13{left:52.920000px;}
.x5{left:54.000000px;}
.x53{left:55.116000px;}
.x19{left:56.196000px;}
.x79{left:58.725000px;}
.x1b{left:60.516000px;}
.x7b{left:61.956000px;}
.x6c{left:64.485000px;}
.x3d{left:68.040000px;}
.x55{left:69.336000px;}
.x77{left:71.865000px;}
.x4a{left:73.800000px;}
.x82{left:77.076000px;}
.x83{left:78.696000px;}
.xe{left:81.000000px;}
.x2a{left:85.890000px;}
.x49{left:88.416000px;}
.x1a{left:89.676000px;}
.x5d{left:91.836000px;}
.x32{left:94.725000px;}
.x1f{left:96.516000px;}
.x72{left:101.010000px;}
.x27{left:103.350000px;}
.x16{left:104.445000px;}
.xf{left:108.036000px;}
.x18{left:109.305000px;}
.x65{left:111.193200px;}
.x1c{left:113.250000px;}
.x5c{left:115.410000px;}
.x2c{left:118.830000px;}
.x5a{left:126.390000px;}
.x5b{left:131.610000px;}
.x22{left:137.370000px;}
.x42{left:139.890000px;}
.x29{left:152.670000px;}
.x40{left:157.710000px;}
.x38{left:158.985000px;}
.x41{left:161.490000px;}
.x3a{left:172.845000px;}
.x21{left:174.630000px;}
.x12{left:176.070000px;}
.x39{left:178.770000px;}
.x36{left:184.170000px;}
.x56{left:185.430000px;}
.x24{left:189.210000px;}
.x3f{left:191.370000px;}
.x3c{left:210.990000px;}
.x6{left:216.210000px;}
.x2f{left:218.775000px;}
.x7c{left:221.250000px;}
.xa{left:222.690000px;}
.x14{left:239.295000px;}
.xd{left:250.230000px;}
.x3{left:254.550000px;}
.xb{left:255.630000px;}
.x35{left:258.375000px;}
.x8{left:259.950000px;}
.x1e{left:261.930000px;}
.x2e{left:269.130000px;}
.x5e{left:279.795000px;}
.x2{left:300.675000px;}
.x7e{left:304.995000px;}
.x10{left:310.575000px;}
.x66{left:324.075000px;}
.x7f{left:328.035000px;}
.x7{left:339.735000px;}
.x4d{left:350.175000px;}
.x1{left:352.695000px;}
.x71{left:358.815000px;}
.x4e{left:367.275000px;}
.x68{left:375.375000px;}
.x44{left:387.075000px;}
.x60{left:389.595000px;}
.x20{left:391.575000px;}
.x3e{left:404.895000px;}
.x9{left:434.775000px;}
.x45{left:452.265000px;}
.xc{left:462.525000px;}
.x62{left:464.325000px;}
.x80{left:466.665000px;}
.x37{left:479.625000px;}
.x57{left:487.005000px;}
.x73{left:497.265000px;}
.x4f{left:499.065000px;}
.x81{left:531.285000px;}
.x58{left:549.825000px;}
.x47{left:559.185000px;}
.x15{left:593.925000px;}
.x69{left:595.185000px;}
.x74{left:598.965000px;}
.x63{left:625.425000px;}
.x50{left:641.130000px;}
.x48{left:658.410000px;}
.x11{left:665.970000px;}
.x59{left:693.510000px;}
.x6b{left:713.670000px;}
.x75{left:745.170000px;}
.x51{left:756.510000px;}
.x7d{left:766.230000px;}
.x76{left:788.550000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.120320pt;}
.ls12{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.592000pt;}
.ls19{letter-spacing:0.688000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls17{letter-spacing:14.672640pt;}
.lsd{letter-spacing:18.214400pt;}
.ls16{letter-spacing:40.912640pt;}
.ls4{letter-spacing:57.040640pt;}
.ls7{letter-spacing:178.848000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.240000pt;}
.wsc{word-spacing:-13.968000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-1.831040pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.009387pt;}
._7{width:3.665280pt;}
._8{width:4.667520pt;}
._d{width:5.790080pt;}
._b{width:6.905600pt;}
._c{width:8.130347pt;}
._6{width:9.135360pt;}
._5{width:10.199040pt;}
._11{width:11.261440pt;}
._a{width:12.270720pt;}
._10{width:14.176000pt;}
._3{width:15.936000pt;}
._4{width:16.839040pt;}
._12{width:18.113920pt;}
._13{width:19.388800pt;}
._19{width:20.451840pt;}
._e{width:21.566720pt;}
._f{width:23.164587pt;}
._18{width:25.178880pt;}
._1b{width:26.308267pt;}
._1a{width:27.322240pt;}
._9{width:178.848000pt;}
._17{width:275.368107pt;}
._16{width:311.345280pt;}
._15{width:354.394667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y195{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.880000pt;}
.y100{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y1b5{bottom:3.354667pt;}
.yd9{bottom:3.360000pt;}
.y189{bottom:10.720000pt;}
.yf8{bottom:10.880000pt;}
.y117{bottom:11.040000pt;}
.y18a{bottom:18.400000pt;}
.yf7{bottom:18.560000pt;}
.yf3{bottom:18.720000pt;}
.y18c{bottom:18.760000pt;}
.y4{bottom:18.880000pt;}
.y12c{bottom:50.400000pt;}
.yab{bottom:54.720000pt;}
.y45{bottom:56.480000pt;}
.y161{bottom:57.760000pt;}
.y192{bottom:58.080000pt;}
.y1b9{bottom:60.160000pt;}
.yfd{bottom:64.160000pt;}
.y85{bottom:66.240000pt;}
.y12b{bottom:69.760000pt;}
.ya7{bottom:70.080000pt;}
.y44{bottom:71.840000pt;}
.y160{bottom:73.120000pt;}
.y191{bottom:73.440000pt;}
.y1b8{bottom:75.040000pt;}
.yfc{bottom:79.360000pt;}
.yd1{bottom:81.440000pt;}
.y84{bottom:81.600000pt;}
.ya6{bottom:85.440000pt;}
.y43{bottom:87.232000pt;}
.y15f{bottom:88.832000pt;}
.y12a{bottom:89.152000pt;}
.y1b7{bottom:94.432000pt;}
.yfb{bottom:94.752000pt;}
.yd0{bottom:96.672000pt;}
.y83{bottom:96.992000pt;}
.ya5{bottom:100.832000pt;}
.y42{bottom:102.592000pt;}
.y190{bottom:103.712000pt;}
.y15e{bottom:104.032000pt;}
.yfa{bottom:110.112000pt;}
.y129{bottom:110.752000pt;}
.ycf{bottom:112.032000pt;}
.y82{bottom:112.352000pt;}
.y1b6{bottom:113.792000pt;}
.yaa{bottom:115.872000pt;}
.ya4{bottom:116.192000pt;}
.y41{bottom:117.792000pt;}
.y15d{bottom:119.392000pt;}
.yf9{bottom:125.152000pt;}
.y128{bottom:126.112000pt;}
.yce{bottom:127.392000pt;}
.y81{bottom:127.552000pt;}
.ya3{bottom:131.392000pt;}
.y40{bottom:133.152000pt;}
.y15c{bottom:134.746667pt;}
.y127{bottom:141.466667pt;}
.ycd{bottom:142.746667pt;}
.y80{bottom:142.906667pt;}
.yf6{bottom:144.506667pt;}
.ya2{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.y15b{bottom:150.106667pt;}
.y1b4{bottom:152.506667pt;}
.y126{bottom:156.506667pt;}
.ycc{bottom:158.106667pt;}
.y7f{bottom:158.266667pt;}
.ya1{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.y15a{bottom:165.466667pt;}
.y125{bottom:172.026667pt;}
.y7e{bottom:173.306667pt;}
.ycb{bottom:173.466667pt;}
.y1b3{bottom:174.106667pt;}
.ya0{bottom:177.466667pt;}
.yf5{bottom:179.066667pt;}
.y3d{bottom:179.226667pt;}
.y159{bottom:180.826667pt;}
.y124{bottom:187.386667pt;}
.yca{bottom:188.666667pt;}
.y7d{bottom:188.986667pt;}
.y1b2{bottom:189.466667pt;}
.y9f{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.y18f{bottom:195.706667pt;}
.y158{bottom:196.026667pt;}
.yf4{bottom:198.426667pt;}
.y123{bottom:202.746667pt;}
.yc9{bottom:204.026667pt;}
.y7c{bottom:204.346667pt;}
.y1b1{bottom:204.826667pt;}
.y9e{bottom:208.026667pt;}
.y3b{bottom:209.786667pt;}
.y157{bottom:211.386667pt;}
.yf2{bottom:217.786667pt;}
.y122{bottom:218.106667pt;}
.yc8{bottom:219.386667pt;}
.y7b{bottom:219.546667pt;}
.y1b0{bottom:220.186667pt;}
.y9d{bottom:223.386667pt;}
.y3a{bottom:225.146667pt;}
.y156{bottom:226.426667pt;}
.y18e{bottom:230.426667pt;}
.y121{bottom:233.466667pt;}
.yc7{bottom:234.746667pt;}
.y7a{bottom:234.906667pt;}
.y1af{bottom:235.066667pt;}
.y9c{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.y155{bottom:245.786667pt;}
.y1ae{bottom:247.546667pt;}
.y120{bottom:248.826667pt;}
.y18d{bottom:249.786667pt;}
.yc6{bottom:250.106667pt;}
.y79{bottom:250.266667pt;}
.yf1{bottom:252.506667pt;}
.y9b{bottom:254.106667pt;}
.y38{bottom:255.866667pt;}
.y11f{bottom:264.026667pt;}
.y154{bottom:265.146667pt;}
.y78{bottom:265.306667pt;}
.yc5{bottom:265.466667pt;}
.y9a{bottom:269.466667pt;}
.y37{bottom:271.226667pt;}
.yf0{bottom:274.106667pt;}
.y11e{bottom:279.386667pt;}
.yc4{bottom:280.666667pt;}
.y77{bottom:280.986667pt;}
.y153{bottom:284.346667pt;}
.y99{bottom:284.826667pt;}
.y36{bottom:286.106667pt;}
.yef{bottom:289.466667pt;}
.y11d{bottom:294.746667pt;}
.yc3{bottom:296.026667pt;}
.y76{bottom:296.186667pt;}
.y98{bottom:299.706667pt;}
.ya9{bottom:300.026667pt;}
.y35{bottom:301.786667pt;}
.y18b{bottom:303.706667pt;}
.yee{bottom:304.826667pt;}
.y152{bottom:306.106667pt;}
.y11c{bottom:310.106667pt;}
.yc2{bottom:311.386667pt;}
.y75{bottom:311.546667pt;}
.y97{bottom:315.386667pt;}
.y34{bottom:317.146667pt;}
.yed{bottom:320.066667pt;}
.y151{bottom:321.506667pt;}
.y11b{bottom:325.506667pt;}
.yc1{bottom:326.786667pt;}
.y74{bottom:326.946667pt;}
.y96{bottom:330.786667pt;}
.y33{bottom:332.546667pt;}
.yec{bottom:335.106667pt;}
.y150{bottom:336.546667pt;}
.y188{bottom:338.466667pt;}
.y11a{bottom:340.866667pt;}
.yc0{bottom:342.146667pt;}
.y73{bottom:342.306667pt;}
.y95{bottom:346.146667pt;}
.y32{bottom:347.906667pt;}
.yeb{bottom:350.786667pt;}
.y14f{bottom:352.066667pt;}
.y119{bottom:355.746667pt;}
.ybf{bottom:357.346667pt;}
.y72{bottom:357.666667pt;}
.y1be{bottom:361.186667pt;}
.y94{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.yea{bottom:366.146667pt;}
.y14e{bottom:367.426667pt;}
.ybe{bottom:372.706667pt;}
.y71{bottom:373.026667pt;}
.y187{bottom:375.426667pt;}
.y93{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.ye9{bottom:381.506667pt;}
.y14d{bottom:382.786667pt;}
.ybd{bottom:388.066667pt;}
.y70{bottom:388.226667pt;}
.y118{bottom:390.466667pt;}
.y186{bottom:390.786667pt;}
.y92{bottom:391.746667pt;}
.y1bd{bottom:392.066667pt;}
.y2f{bottom:393.826667pt;}
.ye8{bottom:396.866667pt;}
.y14c{bottom:398.146667pt;}
.ybc{bottom:403.426667pt;}
.y6f{bottom:403.586667pt;}
.y184{bottom:406.146667pt;}
.y91{bottom:407.426667pt;}
.y185{bottom:408.138667pt;}
.y2e{bottom:409.186667pt;}
.y116{bottom:409.826667pt;}
.ye7{bottom:412.066667pt;}
.y14b{bottom:413.506667pt;}
.ybb{bottom:418.786667pt;}
.y6e{bottom:418.946667pt;}
.y183{bottom:421.506667pt;}
.y90{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.ye6{bottom:427.426667pt;}
.y14a{bottom:428.706667pt;}
.yba{bottom:434.146667pt;}
.y6d{bottom:434.306667pt;}
.y182{bottom:436.386667pt;}
.y8f{bottom:438.146667pt;}
.y2c{bottom:439.906667pt;}
.ye5{bottom:442.786667pt;}
.y149{bottom:444.066667pt;}
.y115{bottom:444.386667pt;}
.y6c{bottom:449.346667pt;}
.y181{bottom:452.066667pt;}
.y8e{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.ye4{bottom:458.146667pt;}
.y148{bottom:459.426667pt;}
.yb9{bottom:464.706667pt;}
.y6b{bottom:465.026667pt;}
.y114{bottom:466.146667pt;}
.y180{bottom:467.426667pt;}
.y8d{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.ye3{bottom:473.506667pt;}
.y147{bottom:474.466667pt;}
.yb8{bottom:480.066667pt;}
.y6a{bottom:480.226667pt;}
.y113{bottom:481.506667pt;}
.y17f{bottom:482.786667pt;}
.y8c{bottom:484.066667pt;}
.y29{bottom:485.506667pt;}
.ye2{bottom:488.706667pt;}
.y146{bottom:493.826667pt;}
.yb7{bottom:495.426667pt;}
.y69{bottom:496.546667pt;}
.y112{bottom:496.706667pt;}
.y17e{bottom:498.146667pt;}
.y8b{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.ye1{bottom:504.066667pt;}
.yb6{bottom:510.786667pt;}
.y111{bottom:512.066667pt;}
.y68{bottom:512.866667pt;}
.y145{bottom:513.186667pt;}
.y8a{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.ye0{bottom:519.426667pt;}
.yb5{bottom:526.146667pt;}
.y110{bottom:527.426667pt;}
.y17d{bottom:528.706667pt;}
.y67{bottom:529.186667pt;}
.y89{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y144{bottom:532.386667pt;}
.ydf{bottom:534.786667pt;}
.yb4{bottom:541.346667pt;}
.y10f{bottom:542.466667pt;}
.y17c{bottom:544.066667pt;}
.y66{bottom:545.186667pt;}
.y88{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.yde{bottom:550.173333pt;}
.y143{bottom:551.773333pt;}
.yb3{bottom:556.733333pt;}
.y10e{bottom:558.173333pt;}
.y17b{bottom:559.453333pt;}
.y1bc{bottom:560.413333pt;}
.y65{bottom:560.733333pt;}
.y24{bottom:562.173333pt;}
.ydd{bottom:565.213333pt;}
.yb2{bottom:572.093333pt;}
.y10d{bottom:573.533333pt;}
.y17a{bottom:574.813333pt;}
.y64{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.ydc{bottom:584.413333pt;}
.yb1{bottom:587.453333pt;}
.y10c{bottom:588.733333pt;}
.y179{bottom:590.173333pt;}
.y63{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.yb0{bottom:602.813333pt;}
.ydb{bottom:603.773333pt;}
.y10b{bottom:604.093333pt;}
.y178{bottom:605.533333pt;}
.y62{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y1ad{bottom:611.453333pt;}
.yaf{bottom:618.173333pt;}
.y142{bottom:619.133333pt;}
.y10a{bottom:619.453333pt;}
.y177{bottom:620.733333pt;}
.y61{bottom:622.173333pt;}
.yda{bottom:623.133333pt;}
.y20{bottom:623.933333pt;}
.y1ac{bottom:626.813333pt;}
.yae{bottom:633.373333pt;}
.y109{bottom:634.813333pt;}
.y176{bottom:636.093333pt;}
.y60{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.y1ab{bottom:642.173333pt;}
.yd8{bottom:642.493333pt;}
.yad{bottom:648.413333pt;}
.y108{bottom:650.173333pt;}
.y175{bottom:651.133333pt;}
.y5f{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y1aa{bottom:657.533333pt;}
.yac{bottom:660.733333pt;}
.yd6{bottom:661.853333pt;}
.y107{bottom:665.533333pt;}
.y5e{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.y174{bottom:670.493333pt;}
.y1a9{bottom:672.733333pt;}
.y106{bottom:680.733333pt;}
.y1c2{bottom:683.133333pt;}
.y5d{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y1a8{bottom:688.093333pt;}
.y141{bottom:695.773333pt;}
.y105{bottom:696.093333pt;}
.y5c{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.y1a7{bottom:703.133333pt;}
.y173{bottom:707.453333pt;}
.y104{bottom:711.453333pt;}
.y5b{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.y1a6{bottom:718.813333pt;}
.y172{bottom:722.813333pt;}
.y103{bottom:726.493333pt;}
.y140{bottom:726.813333pt;}
.y5a{bottom:729.213333pt;}
.y87{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.y1a5{bottom:734.173333pt;}
.y171{bottom:737.853333pt;}
.y13f{bottom:742.173333pt;}
.y59{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y1a4{bottom:749.053333pt;}
.y170{bottom:753.373333pt;}
.y13e{bottom:757.373333pt;}
.y1c1{bottom:759.773333pt;}
.y58{bottom:760.093333pt;}
.y102{bottom:761.053333pt;}
.y17{bottom:761.853333pt;}
.y1a3{bottom:764.733333pt;}
.y16f{bottom:768.733333pt;}
.y13d{bottom:772.733333pt;}
.y1bb{bottom:775.133333pt;}
.y57{bottom:775.453333pt;}
.y16{bottom:776.893333pt;}
.y1a2{bottom:780.133333pt;}
.y101{bottom:780.453333pt;}
.y16e{bottom:784.133333pt;}
.y13c{bottom:788.133333pt;}
.yd5{bottom:790.533333pt;}
.y56{bottom:790.853333pt;}
.y15{bottom:792.933333pt;}
.y1a1{bottom:795.493333pt;}
.y16d{bottom:799.493333pt;}
.y13b{bottom:803.493333pt;}
.y55{bottom:806.213333pt;}
.y14{bottom:808.613333pt;}
.y1a0{bottom:810.853333pt;}
.y16c{bottom:814.853333pt;}
.yff{bottom:815.173333pt;}
.y13a{bottom:818.853333pt;}
.y1c0{bottom:821.093333pt;}
.y54{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.y19f{bottom:826.213333pt;}
.y16b{bottom:830.213333pt;}
.y139{bottom:834.213333pt;}
.yd4{bottom:836.453333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.y19e{bottom:841.413333pt;}
.y16a{bottom:845.413333pt;}
.y138{bottom:849.413333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y19d{bottom:856.773333pt;}
.y169{bottom:860.773333pt;}
.y137{bottom:864.773333pt;}
.y51{bottom:867.173333pt;}
.y86{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y19c{bottom:872.133333pt;}
.y168{bottom:876.133333pt;}
.y136{bottom:880.133333pt;}
.ya8{bottom:882.533333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y19b{bottom:887.493333pt;}
.y167{bottom:891.173333pt;}
.y135{bottom:895.493333pt;}
.yd3{bottom:897.893333pt;}
.y4f{bottom:898.213333pt;}
.ye{bottom:901.253333pt;}
.y19a{bottom:902.853333pt;}
.y166{bottom:910.533333pt;}
.y134{bottom:910.853333pt;}
.yfe{bottom:913.093333pt;}
.y4e{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.y199{bottom:917.733333pt;}
.y133{bottom:926.213333pt;}
.y4d{bottom:928.773333pt;}
.y165{bottom:929.733333pt;}
.yc{bottom:931.813333pt;}
.y198{bottom:937.093333pt;}
.y132{bottom:941.413333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y164{bottom:949.093333pt;}
.y197{bottom:956.453333pt;}
.y131{bottom:956.773333pt;}
.y1ba{bottom:959.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y163{bottom:968.453333pt;}
.y130{bottom:971.813333pt;}
.yd2{bottom:974.533333pt;}
.y4a{bottom:974.853333pt;}
.y196{bottom:975.813333pt;}
.y9{bottom:978.213333pt;}
.y49{bottom:990.213333pt;}
.y12f{bottom:991.173333pt;}
.y194{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y1bf{bottom:1005.093333pt;}
.y48{bottom:1005.413333pt;}
.y12e{bottom:1010.560000pt;}
.y193{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y12d{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y162{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h8{height:15.200000pt;}
.h9{height:15.360000pt;}
.hc{height:15.392000pt;}
.hb{height:30.560000pt;}
.ha{height:30.720000pt;}
.hd{height:30.752000pt;}
.h6{height:48.477187pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:36.480000pt;}
.w2a{width:46.112000pt;}
.w17{width:53.760000pt;}
.w2d{width:55.360000pt;}
.w2e{width:55.520000pt;}
.wd{width:55.840000pt;}
.w1c{width:64.352000pt;}
.w15{width:74.592000pt;}
.w22{width:83.680000pt;}
.wf{width:86.112000pt;}
.w27{width:88.320000pt;}
.we{width:93.120000pt;}
.w1b{width:95.680000pt;}
.w14{width:100.640000pt;}
.w23{width:103.232000pt;}
.w21{width:107.552000pt;}
.w24{width:112.512000pt;}
.w12{width:115.072000pt;}
.w2c{width:121.152000pt;}
.w13{width:124.192000pt;}
.w18{width:125.792000pt;}
.w28{width:127.872000pt;}
.w19{width:130.592000pt;}
.w1f{width:137.786667pt;}
.w1d{width:141.280000pt;}
.w20{width:144.826667pt;}
.w26{width:152.186667pt;}
.w10{width:161.786667pt;}
.w6{width:190.106667pt;}
.w1e{width:190.946667pt;}
.w1a{width:199.586667pt;}
.w2f{width:217.186667pt;}
.w3{width:219.106667pt;}
.w25{width:238.946667pt;}
.w2b{width:242.626667pt;}
.w11{width:277.506667pt;}
.wc{width:295.106667pt;}
.wa{width:297.506667pt;}
.w4{width:298.946667pt;}
.w9{width:320.546667pt;}
.wb{width:373.533333pt;}
.w8{width:377.213333pt;}
.w16{width:383.773333pt;}
.w5{width:398.813333pt;}
.w2{width:478.813333pt;}
.w7{width:507.813333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:0.960000pt;}
.x34{left:3.080000pt;}
.x70{left:4.640000pt;}
.x28{left:6.240000pt;}
.x78{left:7.840000pt;}
.x30{left:9.280000pt;}
.x61{left:11.040000pt;}
.x25{left:12.160000pt;}
.x52{left:13.120000pt;}
.x3b{left:14.880000pt;}
.x5f{left:15.840000pt;}
.x31{left:17.480000pt;}
.x23{left:18.880000pt;}
.x4b{left:20.480000pt;}
.x1d{left:21.440000pt;}
.x46{left:23.520000pt;}
.x6e{left:26.720000pt;}
.x2b{left:27.840000pt;}
.x6a{left:28.960000pt;}
.x33{left:30.560000pt;}
.x64{left:32.160000pt;}
.x26{left:35.072000pt;}
.x6f{left:36.520000pt;}
.x7a{left:37.632000pt;}
.x6d{left:38.720000pt;}
.x4c{left:39.840000pt;}
.x67{left:41.472000pt;}
.x54{left:42.560000pt;}
.x2d{left:43.872000pt;}
.x17{left:45.952000pt;}
.x13{left:47.040000pt;}
.x5{left:48.000000pt;}
.x53{left:48.992000pt;}
.x19{left:49.952000pt;}
.x79{left:52.200000pt;}
.x1b{left:53.792000pt;}
.x7b{left:55.072000pt;}
.x6c{left:57.320000pt;}
.x3d{left:60.480000pt;}
.x55{left:61.632000pt;}
.x77{left:63.880000pt;}
.x4a{left:65.600000pt;}
.x82{left:68.512000pt;}
.x83{left:69.952000pt;}
.xe{left:72.000000pt;}
.x2a{left:76.346667pt;}
.x49{left:78.592000pt;}
.x1a{left:79.712000pt;}
.x5d{left:81.632000pt;}
.x32{left:84.200000pt;}
.x1f{left:85.792000pt;}
.x72{left:89.786667pt;}
.x27{left:91.866667pt;}
.x16{left:92.840000pt;}
.xf{left:96.032000pt;}
.x18{left:97.160000pt;}
.x65{left:98.838400pt;}
.x1c{left:100.666667pt;}
.x5c{left:102.586667pt;}
.x2c{left:105.626667pt;}
.x5a{left:112.346667pt;}
.x5b{left:116.986667pt;}
.x22{left:122.106667pt;}
.x42{left:124.346667pt;}
.x29{left:135.706667pt;}
.x40{left:140.186667pt;}
.x38{left:141.320000pt;}
.x41{left:143.546667pt;}
.x3a{left:153.640000pt;}
.x21{left:155.226667pt;}
.x12{left:156.506667pt;}
.x39{left:158.906667pt;}
.x36{left:163.706667pt;}
.x56{left:164.826667pt;}
.x24{left:168.186667pt;}
.x3f{left:170.106667pt;}
.x3c{left:187.546667pt;}
.x6{left:192.186667pt;}
.x2f{left:194.466667pt;}
.x7c{left:196.666667pt;}
.xa{left:197.946667pt;}
.x14{left:212.706667pt;}
.xd{left:222.426667pt;}
.x3{left:226.266667pt;}
.xb{left:227.226667pt;}
.x35{left:229.666667pt;}
.x8{left:231.066667pt;}
.x1e{left:232.826667pt;}
.x2e{left:239.226667pt;}
.x5e{left:248.706667pt;}
.x2{left:267.266667pt;}
.x7e{left:271.106667pt;}
.x10{left:276.066667pt;}
.x66{left:288.066667pt;}
.x7f{left:291.586667pt;}
.x7{left:301.986667pt;}
.x4d{left:311.266667pt;}
.x1{left:313.506667pt;}
.x71{left:318.946667pt;}
.x4e{left:326.466667pt;}
.x68{left:333.666667pt;}
.x44{left:344.066667pt;}
.x60{left:346.306667pt;}
.x20{left:348.066667pt;}
.x3e{left:359.906667pt;}
.x9{left:386.466667pt;}
.x45{left:402.013333pt;}
.xc{left:411.133333pt;}
.x62{left:412.733333pt;}
.x80{left:414.813333pt;}
.x37{left:426.333333pt;}
.x57{left:432.893333pt;}
.x73{left:442.013333pt;}
.x4f{left:443.613333pt;}
.x81{left:472.253333pt;}
.x58{left:488.733333pt;}
.x47{left:497.053333pt;}
.x15{left:527.933333pt;}
.x69{left:529.053333pt;}
.x74{left:532.413333pt;}
.x63{left:555.933333pt;}
.x50{left:569.893333pt;}
.x48{left:585.253333pt;}
.x11{left:591.973333pt;}
.x59{left:616.453333pt;}
.x6b{left:634.373333pt;}
.x75{left:662.373333pt;}
.x51{left:672.453333pt;}
.x7d{left:681.093333pt;}
.x76{left:700.933333pt;}
.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; }
  