
    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_03b34a3d3b808cc431141def.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_f80329a043922dff3f1ab489.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_4cace73f7b9018fdca393fee.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a184c95f8cddc0f7d3f6f1b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_85589afc9bdfbb06567d243e.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m4{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:-25.838984px;}
.v1{vertical-align:-18.708733px;}
.v4{vertical-align:-11.787810px;}
.v7{vertical-align:-5.537475px;}
.v3{vertical-align:-2.341862px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.389192px;}
.v2{vertical-align:14.031550px;}
.v6{vertical-align:42.323602px;}
.ls8{letter-spacing:-0.888000px;}
.lsb{letter-spacing:-0.794927px;}
.lsf{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.027360px;}
.ls0{letter-spacing:0.053280px;}
.lse{letter-spacing:0.113760px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.284400px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.540000px;}
.lsc{letter-spacing:120.430560px;}
.ls9{letter-spacing:282.673438px;}
.lsa{letter-spacing:361.511861px;}
.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;}
}
.wsb{word-spacing:-138.845280px;}
.wsf{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.247360px;}
.ws10{word-spacing:-14.220000px;}
.ws11{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.530000px;}
.ws6{word-spacing:-9.359273px;}
.ws8{word-spacing:-5.521075px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:65.514000px;}
.ws7{word-spacing:156.646965px;}
.wsa{word-spacing:185.779764px;}
.wsd{word-spacing:380.470080px;}
.wse{word-spacing:450.269760px;}
.ws9{word-spacing:454.267035px;}
._1d{margin-left:-489.996599px;}
._1e{margin-left:-18.420000px;}
._11{margin-left:-4.801920px;}
._f{margin-left:-3.759360px;}
._6{margin-left:-2.748960px;}
._0{margin-left:-1.324800px;}
._1{width:1.108800px;}
._9{width:2.712000px;}
._8{width:4.030560px;}
._d{width:5.531040px;}
._7{width:6.613200px;}
._5{width:7.914960px;}
._b{width:9.528480px;}
._e{width:10.645680px;}
._4{width:11.653200px;}
._c{width:13.353120px;}
._16{width:14.490720px;}
._a{width:16.124160px;}
._17{width:17.222400px;}
._10{width:18.282240px;}
._15{width:19.408320px;}
._12{width:32.722560px;}
._13{width:33.981120px;}
._14{width:35.124000px;}
._2{width:37.529280px;}
._3{width:38.538720px;}
._19{width:123.657009px;}
._18{width:131.232224px;}
._1b{width:138.810505px;}
._1a{width:235.696071px;}
._1c{width:267.919741px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs8{font-size:22.084299px;}
.fs7{font-size:37.437090px;}
.fs9{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.240000px;}
.y76{bottom:3.420000px;}
.y9f{bottom:3.450000px;}
.y99{bottom:12.420000px;}
.y10{bottom:14.400000px;}
.y14c{bottom:14.685000px;}
.ye3{bottom:19.342390px;}
.y17{bottom:21.240000px;}
.y139{bottom:21.420000px;}
.ye0{bottom:25.197851px;}
.y10a{bottom:28.700810px;}
.y2f{bottom:29.520000px;}
.ye2{bottom:30.487498px;}
.yfa{bottom:34.929505px;}
.yee{bottom:35.191709px;}
.y109{bottom:35.274874px;}
.ydf{bottom:36.362581px;}
.y14a{bottom:38.190000px;}
.y16{bottom:38.550000px;}
.yed{bottom:40.460887px;}
.yd3{bottom:42.823208px;}
.y110{bottom:46.351271px;}
.y2e{bottom:46.800000px;}
.yd2{bottom:48.678670px;}
.yd6{bottom:49.869227px;}
.y10f{bottom:52.914722px;}
.y15{bottom:55.830000px;}
.y144{bottom:57.855000px;}
.yd1{bottom:63.941630px;}
.y112{bottom:63.989672px;}
.y2d{bottom:64.080000px;}
.y10c{bottom:70.216920px;}
.y111{bottom:70.564218px;}
.y14{bottom:73.110000px;}
.ye4{bottom:75.106333px;}
.yd0{bottom:75.106363px;}
.y10b{bottom:76.791466px;}
.ye5{bottom:79.205428px;}
.ye6{bottom:80.395989px;}
.y2c{bottom:81.405000px;}
.y116{bottom:85.092855px;}
.yde{bottom:89.201664px;}
.y13{bottom:90.390000px;}
.ye7{bottom:92.709565px;}
.y115{bottom:93.051769px;}
.y18{bottom:95.430000px;}
.ye1{bottom:97.419462px;}
.yd5{bottom:98.588793px;}
.y2b{bottom:98.685000px;}
.ydd{bottom:100.346772px;}
.yd8{bottom:101.516108px;}
.yda{bottom:104.459786px;}
.y12{bottom:105.330000px;}
.y114{bottom:107.913233px;}
.y145{bottom:110.625000px;}
.yec{bottom:112.677525px;}
.y113{bottom:114.487779px;}
.y2a{bottom:115.785000px;}
.yce{bottom:116.774207px;}
.y117{bottom:116.918865px;}
.yd7{bottom:120.895355px;}
.yd9{bottom:122.064630px;}
.y119{bottom:122.441870px;}
.yf0{bottom:124.530482px;}
.y10e{bottom:125.910027px;}
.y118{bottom:129.016415px;}
.yf2{bottom:130.053486px;}
.ydb{bottom:130.871143px;}
.y10d{bottom:132.484573px;}
.yd4{bottom:132.629204px;}
.y29{bottom:133.065000px;}
.y11b{bottom:135.590961px;}
.y100{bottom:138.012401px;}
.y14b{bottom:142.665000px;}
.yff{bottom:144.586946px;}
.y107{bottom:144.929421px;}
.y28{bottom:150.345000px;}
.ydc{bottom:150.839097px;}
.yf1{bottom:151.156668px;}
.y11a{bottom:154.957653px;}
.yfe{bottom:159.115583px;}
.y38{bottom:159.345000px;}
.yf4{bottom:160.152654px;}
.yeb{bottom:163.153497px;}
.y146{bottom:163.440000px;}
.y104{bottom:163.615987px;}
.y42{bottom:163.830000px;}
.y142{bottom:164.190000px;}
.yea{bottom:164.927876px;}
.y96{bottom:166.350000px;}
.yf3{bottom:166.727199px;}
.y27{bottom:167.625000px;}
.y103{bottom:170.180886px;}
.yf5{bottom:170.870658px;}
.y134{bottom:171.390000px;}
.yfd{bottom:174.681290px;}
.y37{bottom:176.625000px;}
.y108{bottom:177.445204px;}
.y11d{bottom:179.181695px;}
.ycd{bottom:179.589105px;}
.y41{bottom:182.910000px;}
.ycf{bottom:183.121498px;}
.y95{bottom:184.530000px;}
.y26{bottom:184.905000px;}
.y106{bottom:185.399295px;}
.y11c{bottom:185.746593px;}
.yf7{bottom:187.483084px;}
.y133{bottom:189.570000px;}
.yf9{bottom:191.284068px;}
.y105{bottom:191.973841px;}
.y141{bottom:192.090000px;}
.y36{bottom:193.905000px;}
.yf6{bottom:194.047982px;}
.yf8{bottom:197.858614px;}
.y40{bottom:201.810000px;}
.ye9{bottom:201.895610px;}
.y25{bottom:202.005000px;}
.ye8{bottom:202.484365px;}
.y94{bottom:202.710000px;}
.y17d{bottom:203.070000px;}
.y102{bottom:203.743387px;}
.yfc{bottom:204.085861px;}
.y132{bottom:207.570000px;}
.y140{bottom:210.270000px;}
.y101{bottom:210.303462px;}
.yfb{bottom:210.660407px;}
.y35{bottom:211.185000px;}
.y147{bottom:216.210000px;}
.y24{bottom:219.285000px;}
.yb5{bottom:219.810000px;}
.y3f{bottom:220.710000px;}
.y17c{bottom:223.950000px;}
.y131{bottom:225.750000px;}
.y13f{bottom:228.270000px;}
.y34{bottom:228.465000px;}
.y73{bottom:228.990000px;}
.y23{bottom:236.565000px;}
.yb4{bottom:237.810000px;}
.y93{bottom:238.890000px;}
.y3e{bottom:239.790000px;}
.y17b{bottom:240.330000px;}
.y130{bottom:243.750000px;}
.y33{bottom:245.745000px;}
.y13e{bottom:246.450000px;}
.y72{bottom:247.170000px;}
.y22{bottom:253.845000px;}
.yb3{bottom:255.990000px;}
.y92{bottom:257.070000px;}
.y3d{bottom:258.690000px;}
.y17a{bottom:261.210000px;}
.y12f{bottom:261.930000px;}
.y32{bottom:262.845000px;}
.y13d{bottom:264.630000px;}
.y71{bottom:265.350000px;}
.y39{bottom:268.065000px;}
.y148{bottom:269.025000px;}
.y21{bottom:271.125000px;}
.yb2{bottom:273.990000px;}
.ycb{bottom:274.170000px;}
.y91{bottom:275.070000px;}
.y179{bottom:277.590000px;}
.y3c{bottom:277.770000px;}
.y31{bottom:277.785000px;}
.y12e{bottom:280.110000px;}
.y14f{bottom:282.525000px;}
.y13c{bottom:282.630000px;}
.y70{bottom:283.350000px;}
.y20{bottom:288.405000px;}
.yca{bottom:292.170000px;}
.y90{bottom:293.250000px;}
.y12d{bottom:298.110000px;}
.y178{bottom:298.650000px;}
.y13b{bottom:300.810000px;}
.yb1{bottom:301.170000px;}
.y6f{bottom:301.530000px;}
.y14e{bottom:304.380000px;}
.y3b{bottom:305.490000px;}
.y1f{bottom:305.505000px;}
.yc9{bottom:310.350000px;}
.y177{bottom:315.030000px;}
.y12c{bottom:316.290000px;}
.y8f{bottom:320.610000px;}
.y149{bottom:321.810000px;}
.y1e{bottom:322.815000px;}
.y3a{bottom:324.210000px;}
.y14d{bottom:326.235000px;}
.yb0{bottom:326.550000px;}
.y13a{bottom:327.990000px;}
.yc8{bottom:328.350000px;}
.y6e{bottom:328.890000px;}
.y12b{bottom:334.470000px;}
.y176{bottom:335.910000px;}
.y1d{bottom:340.095000px;}
.y19{bottom:340.410000px;}
.yaf{bottom:344.550000px;}
.yc7{bottom:346.530000px;}
.y8e{bottom:348.330000px;}
.y138{bottom:352.335000px;}
.y12a{bottom:352.470000px;}
.y6d{bottom:356.790000px;}
.y1c{bottom:357.375000px;}
.yae{bottom:362.730000px;}
.yc6{bottom:364.710000px;}
.y8d{bottom:366.510000px;}
.y129{bottom:370.650000px;}
.y1b{bottom:374.655000px;}
.y175{bottom:377.670000px;}
.yad{bottom:380.730000px;}
.yc5{bottom:382.710000px;}
.y8c{bottom:384.510000px;}
.y1a6{bottom:387.570000px;}
.y128{bottom:388.650000px;}
.y1a{bottom:389.595000px;}
.y6c{bottom:393.690000px;}
.y174{bottom:398.550000px;}
.yac{bottom:398.910000px;}
.yc4{bottom:400.890000px;}
.y8b{bottom:402.690000px;}
.y1a5{bottom:411.915000px;}
.y6b{bottom:412.815000px;}
.y173{bottom:414.975000px;}
.yab{bottom:417.135000px;}
.y8a{bottom:420.735000px;}
.y127{bottom:424.875000px;}
.yc3{bottom:427.935000px;}
.y1a4{bottom:428.295000px;}
.y172{bottom:431.355000px;}
.y6a{bottom:431.895000px;}
.yaa{bottom:435.135000px;}
.y89{bottom:438.915000px;}
.y126{bottom:443.055000px;}
.yc2{bottom:446.115000px;}
.y1a3{bottom:449.175000px;}
.y69{bottom:450.795000px;}
.y171{bottom:452.235000px;}
.ya9{bottom:453.315000px;}
.y88{bottom:457.095000px;}
.y125{bottom:461.055000px;}
.yc1{bottom:464.295000px;}
.y68{bottom:469.875000px;}
.y1a2{bottom:470.055000px;}
.ya8{bottom:471.495000px;}
.y170{bottom:473.115000px;}
.y87{bottom:475.095000px;}
.y124{bottom:479.235000px;}
.yc0{bottom:482.295000px;}
.y1a1{bottom:486.435000px;}
.y67{bottom:488.775000px;}
.ya7{bottom:489.495000px;}
.y86{bottom:493.275000px;}
.y123{bottom:497.235000px;}
.y1a0{bottom:502.815000px;}
.y16f{bottom:505.875000px;}
.y66{bottom:507.675000px;}
.ybf{bottom:509.475000px;}
.y85{bottom:511.275000px;}
.y122{bottom:515.415000px;}
.y19f{bottom:523.695000px;}
.ya6{bottom:525.675000px;}
.y65{bottom:526.755000px;}
.y84{bottom:529.455000px;}
.y121{bottom:533.595000px;}
.ybe{bottom:537.375000px;}
.y19e{bottom:540.075000px;}
.y16e{bottom:543.135000px;}
.ya5{bottom:543.855000px;}
.y64{bottom:545.655000px;}
.y120{bottom:551.595000px;}
.ybd{bottom:552.135000px;}
.yef{bottom:552.240000px;}
.y19d{bottom:556.455000px;}
.y83{bottom:556.635000px;}
.y16d{bottom:559.515000px;}
.ya4{bottom:562.035000px;}
.y63{bottom:564.735000px;}
.y11f{bottom:569.775000px;}
.y19c{bottom:577.335000px;}
.ya3{bottom:580.035000px;}
.y16c{bottom:580.395000px;}
.y62{bottom:583.635000px;}
.y82{bottom:584.535000px;}
.y19b{bottom:593.715000px;}
.y16b{bottom:596.775000px;}
.ya2{bottom:598.215000px;}
.y61{bottom:602.535000px;}
.y81{bottom:602.715000px;}
.y16a{bottom:613.155000px;}
.y19a{bottom:614.595000px;}
.ya1{bottom:616.395000px;}
.y11e{bottom:620.535000px;}
.y80{bottom:620.715000px;}
.y11{bottom:624.675000px;}
.y60{bottom:625.935000px;}
.y199{bottom:630.975000px;}
.y169{bottom:634.035000px;}
.ya0{bottom:634.395000px;}
.y7f{bottom:638.895000px;}
.y5f{bottom:645.015000px;}
.y198{bottom:647.535000px;}
.y168{bottom:650.415000px;}
.y9e{bottom:652.575000px;}
.y7e{bottom:657.105000px;}
.y167{bottom:666.825000px;}
.y5e{bottom:668.445000px;}
.y9d{bottom:670.605000px;}
.y7d{bottom:675.105000px;}
.y197{bottom:684.825000px;}
.y5d{bottom:687.525000px;}
.y166{bottom:687.705000px;}
.y9c{bottom:689.505000px;}
.y7c{bottom:693.285000px;}
.y196{bottom:701.205000px;}
.y165{bottom:704.085000px;}
.y5c{bottom:706.425000px;}
.y7b{bottom:711.285000px;}
.y9b{bottom:711.825000px;}
.y195{bottom:722.085000px;}
.y164{bottom:724.965000px;}
.y5b{bottom:725.505000px;}
.y7a{bottom:729.465000px;}
.yf{bottom:736.485000px;}
.y194{bottom:738.465000px;}
.y9a{bottom:738.825000px;}
.y163{bottom:741.345000px;}
.y5a{bottom:744.405000px;}
.y79{bottom:747.645000px;}
.y162{bottom:757.725000px;}
.y137{bottom:758.985000px;}
.y193{bottom:759.345000px;}
.y98{bottom:762.585000px;}
.y59{bottom:763.485000px;}
.y136{bottom:773.745000px;}
.y161{bottom:774.105000px;}
.y78{bottom:774.825000px;}
.y192{bottom:775.725000px;}
.ye{bottom:780.945000px;}
.y58{bottom:786.705000px;}
.y97{bottom:789.765000px;}
.y135{bottom:791.745000px;}
.y143{bottom:792.000000px;}
.ybc{bottom:794.625000px;}
.y160{bottom:794.985000px;}
.y191{bottom:796.605000px;}
.yd{bottom:798.045000px;}
.y77{bottom:802.725000px;}
.y57{bottom:805.965000px;}
.y15f{bottom:811.365000px;}
.ybb{bottom:812.805000px;}
.y190{bottom:812.985000px;}
.yc{bottom:815.325000px;}
.y75{bottom:817.305000px;}
.y56{bottom:824.865000px;}
.y15e{bottom:827.925000px;}
.yba{bottom:830.805000px;}
.yb{bottom:832.785000px;}
.y18f{bottom:833.865000px;}
.y74{bottom:835.485000px;}
.y55{bottom:843.765000px;}
.y15d{bottom:848.805000px;}
.yb9{bottom:848.985000px;}
.y18e{bottom:850.245000px;}
.ya{bottom:850.965000px;}
.y54{bottom:862.845000px;}
.y15c{bottom:865.185000px;}
.y18d{bottom:866.625000px;}
.y9{bottom:868.965000px;}
.yb8{bottom:876.165000px;}
.y15b{bottom:881.565000px;}
.y53{bottom:881.745000px;}
.y18c{bottom:887.505000px;}
.y15a{bottom:897.945000px;}
.y52{bottom:900.870000px;}
.y18b{bottom:903.930000px;}
.yb7{bottom:904.110000px;}
.y8{bottom:905.730000px;}
.yb6{bottom:918.690000px;}
.ycc{bottom:918.810000px;}
.y159{bottom:918.870000px;}
.y51{bottom:919.770000px;}
.y18a{bottom:920.310000px;}
.y158{bottom:935.250000px;}
.y50{bottom:938.670000px;}
.y189{bottom:941.190000px;}
.y7{bottom:944.430000px;}
.y157{bottom:951.630000px;}
.y188{bottom:957.570000px;}
.y4f{bottom:957.750000px;}
.y6{bottom:965.130000px;}
.y156{bottom:968.010000px;}
.y187{bottom:973.950000px;}
.y4e{bottom:976.650000px;}
.y186{bottom:994.830000px;}
.y4d{bottom:995.730000px;}
.y155{bottom:1002.750000px;}
.y5{bottom:1003.830000px;}
.y185{bottom:1011.210000px;}
.y4c{bottom:1018.950000px;}
.y184{bottom:1027.590000px;}
.y154{bottom:1030.830000px;}
.y4b{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y183{bottom:1048.470000px;}
.y4a{bottom:1057.110000px;}
.y153{bottom:1058.730000px;}
.y182{bottom:1064.850000px;}
.y49{bottom:1076.010000px;}
.y181{bottom:1081.230000px;}
.y152{bottom:1086.630000px;}
.y48{bottom:1095.090000px;}
.y180{bottom:1102.110000px;}
.y151{bottom:1105.530000px;}
.y47{bottom:1113.990000px;}
.y17f{bottom:1118.490000px;}
.y150{bottom:1132.710000px;}
.y46{bottom:1132.890000px;}
.y17e{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hb{height:17.657227px;}
.h16{height:18.000000px;}
.h15{height:18.036000px;}
.h12{height:18.180000px;}
.h17{height:18.216000px;}
.h1c{height:21.674532px;}
.h1d{height:23.063724px;}
.h14{height:27.180000px;}
.h1e{height:35.489278px;}
.h22{height:36.180000px;}
.h19{height:36.742457px;}
.h8{height:40.320000px;}
.h26{height:55.824609px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h5{height:62.184375px;}
.h25{height:62.327813px;}
.h2{height:65.010937px;}
.h9{height:66.757500px;}
.h24{height:69.086250px;}
.hf{height:70.664062px;}
.h4{height:72.562500px;}
.h1a{height:79.066059px;}
.h3{height:96.508125px;}
.ha{height:109.476000px;}
.h10{height:153.341016px;}
.h18{height:229.410000px;}
.h1b{height:230.025000px;}
.he{height:282.090000px;}
.h11{height:312.735000px;}
.h23{height:356.220000px;}
.h20{height:356.475000px;}
.h13{height:358.455000px;}
.h21{height:366.915000px;}
.hd{height:393.735000px;}
.h1f{height:527.685000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w8{width:40.860000px;}
.wa{width:109.116000px;}
.w3{width:237.990000px;}
.w9{width:381.855000px;}
.w5{width:406.875000px;}
.wc{width:472.601600px;}
.w10{width:569.700000px;}
.w7{width:572.145000px;}
.we{width:585.825000px;}
.wb{width:589.114995px;}
.wf{width:669.345000px;}
.wd{width:677.265000px;}
.w6{width:729.105000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x21{left:18.778757px;}
.x5b{left:34.927897px;}
.x5a{left:38.039672px;}
.x37{left:42.832781px;}
.x65{left:51.630000px;}
.x56{left:55.682098px;}
.x60{left:57.600000px;}
.x59{left:62.612752px;}
.x55{left:74.376956px;}
.x24{left:88.613601px;}
.x22{left:90.379136px;}
.x1b{left:92.136461px;}
.x1c{left:95.068078px;}
.x64{left:97.530000px;}
.x20{left:99.165773px;}
.x5{left:108.035987px;}
.x23{left:110.916865px;}
.x61{left:111.996000px;}
.x54{left:113.815351px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xe{left:136.434000px;}
.x11{left:140.985000px;}
.x57{left:145.993747px;}
.x58{left:149.795680px;}
.x1a{left:152.025000px;}
.x5e{left:153.750000px;}
.xf{left:160.590000px;}
.x63{left:161.640000px;}
.x3e{left:176.438265px;}
.x3a{left:178.516015px;}
.x13{left:180.750000px;}
.x67{left:183.450000px;}
.xa{left:185.250000px;}
.x5d{left:189.039000px;}
.x3b{left:193.045692px;}
.x25{left:200.097084px;}
.x3c{left:205.851184px;}
.x38{left:210.270000px;}
.x14{left:221.610000px;}
.x39{left:226.953124px;}
.x12{left:228.989987px;}
.x27{left:231.203406px;}
.x3f{left:233.869248px;}
.x19{left:240.509987px;}
.x3d{left:246.326029px;}
.x44{left:251.513128px;}
.x51{left:252.907986px;}
.x45{left:258.438942px;}
.x1d{left:269.938494px;}
.x43{left:272.624752px;}
.x53{left:276.426689px;}
.x17{left:283.394987px;}
.x52{left:284.737670px;}
.x26{left:286.370321px;}
.x66{left:289.290000px;}
.x1e{left:297.505533px;}
.x4f{left:298.569929px;}
.x4e{left:299.606379px;}
.x42{left:313.099597px;}
.x3{left:314.354987px;}
.x1f{left:318.043261px;}
.x50{left:322.103160px;}
.x49{left:338.710579px;}
.x4b{left:339.747033px;}
.x30{left:345.051892px;}
.xc{left:347.294987px;}
.x4a{left:351.167359px;}
.x40{left:353.240257px;}
.x41{left:359.119935px;}
.x8{left:360.795000px;}
.x2d{left:364.998369px;}
.x4d{left:372.961880px;}
.x4c{left:376.415100px;}
.x9{left:378.435000px;}
.x2f{left:385.536098px;}
.x32{left:396.671302px;}
.x31{left:410.179729px;}
.x46{left:420.706407px;}
.x47{left:426.586085px;}
.x48{left:433.163189px;}
.x28{left:445.974990px;}
.x35{left:463.581103px;}
.x2c{left:470.618627px;}
.x2b{left:475.890606px;}
.x29{left:489.399025px;}
.x2a{left:507.005139px;}
.x34{left:511.102827px;}
.x36{left:513.451406px;}
.x2e{left:519.897675px;}
.x33{left:529.883227px;}
.x10{left:563.880000px;}
.x5f{left:577.740000px;}
.x15{left:603.465000px;}
.x62{left:625.074000px;}
.xd{left:673.854000px;}
.x5c{left:680.874000px;}
.x18{left:682.889987px;}
.x16{left:741.209987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v5{vertical-align:-22.967986pt;}
.v1{vertical-align:-16.629985pt;}
.v4{vertical-align:-10.478053pt;}
.v7{vertical-align:-4.922200pt;}
.v3{vertical-align:-2.081655pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.234838pt;}
.v2{vertical-align:12.472489pt;}
.v6{vertical-align:37.620980pt;}
.ls8{letter-spacing:-0.789333pt;}
.lsb{letter-spacing:-0.706602pt;}
.lsf{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.024320pt;}
.ls0{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.101120pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.252800pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.480000pt;}
.lsc{letter-spacing:107.049387pt;}
.ls9{letter-spacing:251.265278pt;}
.lsa{letter-spacing:321.343877pt;}
.wsb{word-spacing:-123.418027pt;}
.wsf{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.664320pt;}
.ws10{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.026667pt;}
.ws6{word-spacing:-8.319353pt;}
.ws8{word-spacing:-4.907622pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:58.234667pt;}
.ws7{word-spacing:139.241746pt;}
.wsa{word-spacing:165.137568pt;}
.wsd{word-spacing:338.195627pt;}
.wse{word-spacing:400.239787pt;}
.ws9{word-spacing:403.792920pt;}
._1d{margin-left:-435.552533pt;}
._1e{margin-left:-16.373333pt;}
._11{margin-left:-4.268373pt;}
._f{margin-left:-3.341653pt;}
._6{margin-left:-2.443520pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.985600pt;}
._9{width:2.410667pt;}
._8{width:3.582720pt;}
._d{width:4.916480pt;}
._7{width:5.878400pt;}
._5{width:7.035520pt;}
._b{width:8.469760pt;}
._e{width:9.462827pt;}
._4{width:10.358400pt;}
._c{width:11.869440pt;}
._16{width:12.880640pt;}
._a{width:14.332587pt;}
._17{width:15.308800pt;}
._10{width:16.250880pt;}
._15{width:17.251840pt;}
._12{width:29.086720pt;}
._13{width:30.205440pt;}
._14{width:31.221333pt;}
._2{width:33.359360pt;}
._3{width:34.256640pt;}
._19{width:109.917342pt;}
._18{width:116.650865pt;}
._1b{width:123.387115pt;}
._1a{width:209.507619pt;}
._1c{width:238.150880pt;}
.fs5{font-size:16.000000pt;}
.fs8{font-size:19.630488pt;}
.fs7{font-size:33.277414pt;}
.fs9{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.880000pt;}
.y76{bottom:3.040000pt;}
.y9f{bottom:3.066667pt;}
.y99{bottom:11.040000pt;}
.y10{bottom:12.800000pt;}
.y14c{bottom:13.053333pt;}
.ye3{bottom:17.193235pt;}
.y17{bottom:18.880000pt;}
.y139{bottom:19.040000pt;}
.ye0{bottom:22.398090pt;}
.y10a{bottom:25.511831pt;}
.y2f{bottom:26.240000pt;}
.ye2{bottom:27.099999pt;}
.yfa{bottom:31.048449pt;}
.yee{bottom:31.281519pt;}
.y109{bottom:31.355443pt;}
.ydf{bottom:32.322294pt;}
.y14a{bottom:33.946667pt;}
.y16{bottom:34.266667pt;}
.yed{bottom:35.965233pt;}
.yd3{bottom:38.065073pt;}
.y110{bottom:41.201130pt;}
.y2e{bottom:41.600000pt;}
.yd2{bottom:43.269929pt;}
.yd6{bottom:44.328202pt;}
.y10f{bottom:47.035309pt;}
.y15{bottom:49.626667pt;}
.y144{bottom:51.426667pt;}
.yd1{bottom:56.837004pt;}
.y112{bottom:56.879709pt;}
.y2d{bottom:56.960000pt;}
.y10c{bottom:62.415040pt;}
.y111{bottom:62.723749pt;}
.y14{bottom:64.986667pt;}
.ye4{bottom:66.761185pt;}
.yd0{bottom:66.761212pt;}
.y10b{bottom:68.259081pt;}
.ye5{bottom:70.404825pt;}
.ye6{bottom:71.463102pt;}
.y2c{bottom:72.360000pt;}
.y116{bottom:75.638093pt;}
.yde{bottom:79.290368pt;}
.y13{bottom:80.346667pt;}
.ye7{bottom:82.408502pt;}
.y115{bottom:82.712684pt;}
.y18{bottom:84.826667pt;}
.ye1{bottom:86.595077pt;}
.yd5{bottom:87.634482pt;}
.y2b{bottom:87.720000pt;}
.ydd{bottom:89.197131pt;}
.yd8{bottom:90.236541pt;}
.yda{bottom:92.853143pt;}
.y12{bottom:93.626667pt;}
.y114{bottom:95.922874pt;}
.y145{bottom:98.333333pt;}
.yec{bottom:100.157800pt;}
.y113{bottom:101.766915pt;}
.y2a{bottom:102.920000pt;}
.yce{bottom:103.799295pt;}
.y117{bottom:103.927880pt;}
.yd7{bottom:107.462537pt;}
.yd9{bottom:108.501894pt;}
.y119{bottom:108.837218pt;}
.yf0{bottom:110.693762pt;}
.y10e{bottom:111.920024pt;}
.y118{bottom:114.681258pt;}
.yf2{bottom:115.603099pt;}
.ydb{bottom:116.329905pt;}
.y10d{bottom:117.764065pt;}
.yd4{bottom:117.892626pt;}
.y29{bottom:118.280000pt;}
.y11b{bottom:120.525299pt;}
.y100{bottom:122.677689pt;}
.y14b{bottom:126.813333pt;}
.yff{bottom:128.521730pt;}
.y107{bottom:128.826152pt;}
.y28{bottom:133.640000pt;}
.ydc{bottom:134.079198pt;}
.yf1{bottom:134.361483pt;}
.y11a{bottom:137.740136pt;}
.yfe{bottom:141.436074pt;}
.y38{bottom:141.640000pt;}
.yf4{bottom:142.357914pt;}
.yeb{bottom:145.025331pt;}
.y146{bottom:145.280000pt;}
.y104{bottom:145.436433pt;}
.y42{bottom:145.626667pt;}
.y142{bottom:145.946667pt;}
.yea{bottom:146.602557pt;}
.y96{bottom:147.866667pt;}
.yf3{bottom:148.201955pt;}
.y27{bottom:149.000000pt;}
.y103{bottom:151.271898pt;}
.yf5{bottom:151.885030pt;}
.y134{bottom:152.346667pt;}
.yfd{bottom:155.272258pt;}
.y37{bottom:157.000000pt;}
.y108{bottom:157.729070pt;}
.y11d{bottom:159.272617pt;}
.ycd{bottom:159.634760pt;}
.y41{bottom:162.586667pt;}
.ycf{bottom:162.774665pt;}
.y95{bottom:164.026667pt;}
.y26{bottom:164.360000pt;}
.y106{bottom:164.799373pt;}
.y11c{bottom:165.108083pt;}
.yf7{bottom:166.651630pt;}
.y133{bottom:168.506667pt;}
.yf9{bottom:170.030283pt;}
.y105{bottom:170.643414pt;}
.y141{bottom:170.746667pt;}
.y36{bottom:172.360000pt;}
.yf6{bottom:172.487095pt;}
.yf8{bottom:175.874323pt;}
.y40{bottom:179.386667pt;}
.ye9{bottom:179.462765pt;}
.y25{bottom:179.560000pt;}
.ye8{bottom:179.986102pt;}
.y94{bottom:180.186667pt;}
.y17d{bottom:180.506667pt;}
.y102{bottom:181.105233pt;}
.yfc{bottom:181.409655pt;}
.y132{bottom:184.506667pt;}
.y140{bottom:186.906667pt;}
.y101{bottom:186.936411pt;}
.yfb{bottom:187.253695pt;}
.y35{bottom:187.720000pt;}
.y147{bottom:192.186667pt;}
.y24{bottom:194.920000pt;}
.yb5{bottom:195.386667pt;}
.y3f{bottom:196.186667pt;}
.y17c{bottom:199.066667pt;}
.y131{bottom:200.666667pt;}
.y13f{bottom:202.906667pt;}
.y34{bottom:203.080000pt;}
.y73{bottom:203.546667pt;}
.y23{bottom:210.280000pt;}
.yb4{bottom:211.386667pt;}
.y93{bottom:212.346667pt;}
.y3e{bottom:213.146667pt;}
.y17b{bottom:213.626667pt;}
.y130{bottom:216.666667pt;}
.y33{bottom:218.440000pt;}
.y13e{bottom:219.066667pt;}
.y72{bottom:219.706667pt;}
.y22{bottom:225.640000pt;}
.yb3{bottom:227.546667pt;}
.y92{bottom:228.506667pt;}
.y3d{bottom:229.946667pt;}
.y17a{bottom:232.186667pt;}
.y12f{bottom:232.826667pt;}
.y32{bottom:233.640000pt;}
.y13d{bottom:235.226667pt;}
.y71{bottom:235.866667pt;}
.y39{bottom:238.280000pt;}
.y148{bottom:239.133333pt;}
.y21{bottom:241.000000pt;}
.yb2{bottom:243.546667pt;}
.ycb{bottom:243.706667pt;}
.y91{bottom:244.506667pt;}
.y179{bottom:246.746667pt;}
.y3c{bottom:246.906667pt;}
.y31{bottom:246.920000pt;}
.y12e{bottom:248.986667pt;}
.y14f{bottom:251.133333pt;}
.y13c{bottom:251.226667pt;}
.y70{bottom:251.866667pt;}
.y20{bottom:256.360000pt;}
.yca{bottom:259.706667pt;}
.y90{bottom:260.666667pt;}
.y12d{bottom:264.986667pt;}
.y178{bottom:265.466667pt;}
.y13b{bottom:267.386667pt;}
.yb1{bottom:267.706667pt;}
.y6f{bottom:268.026667pt;}
.y14e{bottom:270.560000pt;}
.y3b{bottom:271.546667pt;}
.y1f{bottom:271.560000pt;}
.yc9{bottom:275.866667pt;}
.y177{bottom:280.026667pt;}
.y12c{bottom:281.146667pt;}
.y8f{bottom:284.986667pt;}
.y149{bottom:286.053333pt;}
.y1e{bottom:286.946667pt;}
.y3a{bottom:288.186667pt;}
.y14d{bottom:289.986667pt;}
.yb0{bottom:290.266667pt;}
.y13a{bottom:291.546667pt;}
.yc8{bottom:291.866667pt;}
.y6e{bottom:292.346667pt;}
.y12b{bottom:297.306667pt;}
.y176{bottom:298.586667pt;}
.y1d{bottom:302.306667pt;}
.y19{bottom:302.586667pt;}
.yaf{bottom:306.266667pt;}
.yc7{bottom:308.026667pt;}
.y8e{bottom:309.626667pt;}
.y138{bottom:313.186667pt;}
.y12a{bottom:313.306667pt;}
.y6d{bottom:317.146667pt;}
.y1c{bottom:317.666667pt;}
.yae{bottom:322.426667pt;}
.yc6{bottom:324.186667pt;}
.y8d{bottom:325.786667pt;}
.y129{bottom:329.466667pt;}
.y1b{bottom:333.026667pt;}
.y175{bottom:335.706667pt;}
.yad{bottom:338.426667pt;}
.yc5{bottom:340.186667pt;}
.y8c{bottom:341.786667pt;}
.y1a6{bottom:344.506667pt;}
.y128{bottom:345.466667pt;}
.y1a{bottom:346.306667pt;}
.y6c{bottom:349.946667pt;}
.y174{bottom:354.266667pt;}
.yac{bottom:354.586667pt;}
.yc4{bottom:356.346667pt;}
.y8b{bottom:357.946667pt;}
.y1a5{bottom:366.146667pt;}
.y6b{bottom:366.946667pt;}
.y173{bottom:368.866667pt;}
.yab{bottom:370.786667pt;}
.y8a{bottom:373.986667pt;}
.y127{bottom:377.666667pt;}
.yc3{bottom:380.386667pt;}
.y1a4{bottom:380.706667pt;}
.y172{bottom:383.426667pt;}
.y6a{bottom:383.906667pt;}
.yaa{bottom:386.786667pt;}
.y89{bottom:390.146667pt;}
.y126{bottom:393.826667pt;}
.yc2{bottom:396.546667pt;}
.y1a3{bottom:399.266667pt;}
.y69{bottom:400.706667pt;}
.y171{bottom:401.986667pt;}
.ya9{bottom:402.946667pt;}
.y88{bottom:406.306667pt;}
.y125{bottom:409.826667pt;}
.yc1{bottom:412.706667pt;}
.y68{bottom:417.666667pt;}
.y1a2{bottom:417.826667pt;}
.ya8{bottom:419.106667pt;}
.y170{bottom:420.546667pt;}
.y87{bottom:422.306667pt;}
.y124{bottom:425.986667pt;}
.yc0{bottom:428.706667pt;}
.y1a1{bottom:432.386667pt;}
.y67{bottom:434.466667pt;}
.ya7{bottom:435.106667pt;}
.y86{bottom:438.466667pt;}
.y123{bottom:441.986667pt;}
.y1a0{bottom:446.946667pt;}
.y16f{bottom:449.666667pt;}
.y66{bottom:451.266667pt;}
.ybf{bottom:452.866667pt;}
.y85{bottom:454.466667pt;}
.y122{bottom:458.146667pt;}
.y19f{bottom:465.506667pt;}
.ya6{bottom:467.266667pt;}
.y65{bottom:468.226667pt;}
.y84{bottom:470.626667pt;}
.y121{bottom:474.306667pt;}
.ybe{bottom:477.666667pt;}
.y19e{bottom:480.066667pt;}
.y16e{bottom:482.786667pt;}
.ya5{bottom:483.426667pt;}
.y64{bottom:485.026667pt;}
.y120{bottom:490.306667pt;}
.ybd{bottom:490.786667pt;}
.yef{bottom:490.880000pt;}
.y19d{bottom:494.626667pt;}
.y83{bottom:494.786667pt;}
.y16d{bottom:497.346667pt;}
.ya4{bottom:499.586667pt;}
.y63{bottom:501.986667pt;}
.y11f{bottom:506.466667pt;}
.y19c{bottom:513.186667pt;}
.ya3{bottom:515.586667pt;}
.y16c{bottom:515.906667pt;}
.y62{bottom:518.786667pt;}
.y82{bottom:519.586667pt;}
.y19b{bottom:527.746667pt;}
.y16b{bottom:530.466667pt;}
.ya2{bottom:531.746667pt;}
.y61{bottom:535.586667pt;}
.y81{bottom:535.746667pt;}
.y16a{bottom:545.026667pt;}
.y19a{bottom:546.306667pt;}
.ya1{bottom:547.906667pt;}
.y11e{bottom:551.586667pt;}
.y80{bottom:551.746667pt;}
.y11{bottom:555.266667pt;}
.y60{bottom:556.386667pt;}
.y199{bottom:560.866667pt;}
.y169{bottom:563.586667pt;}
.ya0{bottom:563.906667pt;}
.y7f{bottom:567.906667pt;}
.y5f{bottom:573.346667pt;}
.y198{bottom:575.586667pt;}
.y168{bottom:578.146667pt;}
.y9e{bottom:580.066667pt;}
.y7e{bottom:584.093333pt;}
.y167{bottom:592.733333pt;}
.y5e{bottom:594.173333pt;}
.y9d{bottom:596.093333pt;}
.y7d{bottom:600.093333pt;}
.y197{bottom:608.733333pt;}
.y5d{bottom:611.133333pt;}
.y166{bottom:611.293333pt;}
.y9c{bottom:612.893333pt;}
.y7c{bottom:616.253333pt;}
.y196{bottom:623.293333pt;}
.y165{bottom:625.853333pt;}
.y5c{bottom:627.933333pt;}
.y7b{bottom:632.253333pt;}
.y9b{bottom:632.733333pt;}
.y195{bottom:641.853333pt;}
.y164{bottom:644.413333pt;}
.y5b{bottom:644.893333pt;}
.y7a{bottom:648.413333pt;}
.yf{bottom:654.653333pt;}
.y194{bottom:656.413333pt;}
.y9a{bottom:656.733333pt;}
.y163{bottom:658.973333pt;}
.y5a{bottom:661.693333pt;}
.y79{bottom:664.573333pt;}
.y162{bottom:673.533333pt;}
.y137{bottom:674.653333pt;}
.y193{bottom:674.973333pt;}
.y98{bottom:677.853333pt;}
.y59{bottom:678.653333pt;}
.y136{bottom:687.773333pt;}
.y161{bottom:688.093333pt;}
.y78{bottom:688.733333pt;}
.y192{bottom:689.533333pt;}
.ye{bottom:694.173333pt;}
.y58{bottom:699.293333pt;}
.y97{bottom:702.013333pt;}
.y135{bottom:703.773333pt;}
.y143{bottom:704.000000pt;}
.ybc{bottom:706.333333pt;}
.y160{bottom:706.653333pt;}
.y191{bottom:708.093333pt;}
.yd{bottom:709.373333pt;}
.y77{bottom:713.533333pt;}
.y57{bottom:716.413333pt;}
.y15f{bottom:721.213333pt;}
.ybb{bottom:722.493333pt;}
.y190{bottom:722.653333pt;}
.yc{bottom:724.733333pt;}
.y75{bottom:726.493333pt;}
.y56{bottom:733.213333pt;}
.y15e{bottom:735.933333pt;}
.yba{bottom:738.493333pt;}
.yb{bottom:740.253333pt;}
.y18f{bottom:741.213333pt;}
.y74{bottom:742.653333pt;}
.y55{bottom:750.013333pt;}
.y15d{bottom:754.493333pt;}
.yb9{bottom:754.653333pt;}
.y18e{bottom:755.773333pt;}
.ya{bottom:756.413333pt;}
.y54{bottom:766.973333pt;}
.y15c{bottom:769.053333pt;}
.y18d{bottom:770.333333pt;}
.y9{bottom:772.413333pt;}
.yb8{bottom:778.813333pt;}
.y15b{bottom:783.613333pt;}
.y53{bottom:783.773333pt;}
.y18c{bottom:788.893333pt;}
.y15a{bottom:798.173333pt;}
.y52{bottom:800.773333pt;}
.y18b{bottom:803.493333pt;}
.yb7{bottom:803.653333pt;}
.y8{bottom:805.093333pt;}
.yb6{bottom:816.613333pt;}
.ycc{bottom:816.720000pt;}
.y159{bottom:816.773333pt;}
.y51{bottom:817.573333pt;}
.y18a{bottom:818.053333pt;}
.y158{bottom:831.333333pt;}
.y50{bottom:834.373333pt;}
.y189{bottom:836.613333pt;}
.y7{bottom:839.493333pt;}
.y157{bottom:845.893333pt;}
.y188{bottom:851.173333pt;}
.y4f{bottom:851.333333pt;}
.y6{bottom:857.893333pt;}
.y156{bottom:860.453333pt;}
.y187{bottom:865.733333pt;}
.y4e{bottom:868.133333pt;}
.y186{bottom:884.293333pt;}
.y4d{bottom:885.093333pt;}
.y155{bottom:891.333333pt;}
.y5{bottom:892.293333pt;}
.y185{bottom:898.853333pt;}
.y4c{bottom:905.733333pt;}
.y184{bottom:913.413333pt;}
.y154{bottom:916.293333pt;}
.y4b{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y183{bottom:931.973333pt;}
.y4a{bottom:939.653333pt;}
.y153{bottom:941.093333pt;}
.y182{bottom:946.533333pt;}
.y49{bottom:956.453333pt;}
.y181{bottom:961.093333pt;}
.y152{bottom:965.893333pt;}
.y48{bottom:973.413333pt;}
.y180{bottom:979.653333pt;}
.y151{bottom:982.693333pt;}
.y47{bottom:990.213333pt;}
.y17f{bottom:994.213333pt;}
.y150{bottom:1006.853333pt;}
.y46{bottom:1007.013333pt;}
.y17e{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hb{height:15.695312pt;}
.h16{height:16.000000pt;}
.h15{height:16.032000pt;}
.h12{height:16.160000pt;}
.h17{height:16.192000pt;}
.h1c{height:19.266251pt;}
.h1d{height:20.501088pt;}
.h14{height:24.160000pt;}
.h1e{height:31.546025pt;}
.h22{height:32.160000pt;}
.h19{height:32.659962pt;}
.h8{height:35.840000pt;}
.h26{height:49.621875pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h5{height:55.275000pt;}
.h25{height:55.402500pt;}
.h2{height:57.787500pt;}
.h9{height:59.340000pt;}
.h24{height:61.410000pt;}
.hf{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1a{height:70.280941pt;}
.h3{height:85.785000pt;}
.ha{height:97.312000pt;}
.h10{height:136.303125pt;}
.h18{height:203.920000pt;}
.h1b{height:204.466667pt;}
.he{height:250.746667pt;}
.h11{height:277.986667pt;}
.h23{height:316.640000pt;}
.h20{height:316.866667pt;}
.h13{height:318.626667pt;}
.h21{height:326.146667pt;}
.hd{height:349.986667pt;}
.h1f{height:469.053333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w8{width:36.320000pt;}
.wa{width:96.992000pt;}
.w3{width:211.546667pt;}
.w9{width:339.426667pt;}
.w5{width:361.666667pt;}
.wc{width:420.090311pt;}
.w10{width:506.400000pt;}
.w7{width:508.573333pt;}
.we{width:520.733333pt;}
.wb{width:523.657774pt;}
.wf{width:594.973333pt;}
.wd{width:602.013333pt;}
.w6{width:648.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x21{left:16.692229pt;}
.x5b{left:31.047019pt;}
.x5a{left:33.813042pt;}
.x37{left:38.073583pt;}
.x65{left:45.893333pt;}
.x56{left:49.495198pt;}
.x60{left:51.200000pt;}
.x59{left:55.655779pt;}
.x55{left:66.112850pt;}
.x24{left:78.767646pt;}
.x22{left:80.337010pt;}
.x1b{left:81.899076pt;}
.x1c{left:84.504958pt;}
.x64{left:86.693333pt;}
.x20{left:88.147353pt;}
.x5{left:96.031988pt;}
.x23{left:98.592769pt;}
.x61{left:99.552000pt;}
.x54{left:101.169201pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xe{left:121.274667pt;}
.x11{left:125.320000pt;}
.x57{left:129.772219pt;}
.x58{left:133.151716pt;}
.x1a{left:135.133333pt;}
.x5e{left:136.666667pt;}
.xf{left:142.746667pt;}
.x63{left:143.680000pt;}
.x3e{left:156.834013pt;}
.x3a{left:158.680902pt;}
.x13{left:160.666667pt;}
.x67{left:163.066667pt;}
.xa{left:164.666667pt;}
.x5d{left:168.034667pt;}
.x3b{left:171.596170pt;}
.x25{left:177.864074pt;}
.x3c{left:182.978830pt;}
.x38{left:186.906667pt;}
.x14{left:196.986667pt;}
.x39{left:201.736110pt;}
.x12{left:203.546655pt;}
.x27{left:205.514139pt;}
.x3f{left:207.883776pt;}
.x19{left:213.786655pt;}
.x3d{left:218.956471pt;}
.x44{left:223.567225pt;}
.x51{left:224.807098pt;}
.x45{left:229.723504pt;}
.x1d{left:239.945328pt;}
.x43{left:242.333113pt;}
.x53{left:245.712612pt;}
.x17{left:251.906655pt;}
.x52{left:253.100151pt;}
.x26{left:254.551397pt;}
.x66{left:257.146667pt;}
.x1e{left:264.449363pt;}
.x4f{left:265.395493pt;}
.x4e{left:266.316782pt;}
.x42{left:278.310753pt;}
.x3{left:279.426655pt;}
.x1f{left:282.705121pt;}
.x50{left:286.313920pt;}
.x49{left:301.076070pt;}
.x4b{left:301.997363pt;}
.x30{left:306.712793pt;}
.xc{left:308.706655pt;}
.x4a{left:312.148763pt;}
.x40{left:313.991340pt;}
.x41{left:319.217720pt;}
.x8{left:320.706667pt;}
.x2d{left:324.442995pt;}
.x4d{left:331.521671pt;}
.x4c{left:334.591200pt;}
.x9{left:336.386667pt;}
.x2f{left:342.698754pt;}
.x32{left:352.596713pt;}
.x31{left:364.604203pt;}
.x46{left:373.961250pt;}
.x47{left:379.187631pt;}
.x48{left:385.033946pt;}
.x28{left:396.422214pt;}
.x35{left:412.072091pt;}
.x2c{left:418.327669pt;}
.x2b{left:423.013872pt;}
.x29{left:435.021356pt;}
.x2a{left:450.671234pt;}
.x34{left:454.313624pt;}
.x36{left:456.401250pt;}
.x2e{left:462.131267pt;}
.x33{left:471.007312pt;}
.x10{left:501.226667pt;}
.x5f{left:513.546667pt;}
.x15{left:536.413333pt;}
.x62{left:555.621333pt;}
.xd{left:598.981333pt;}
.x5c{left:605.221333pt;}
.x18{left:607.013322pt;}
.x16{left:658.853322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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