
    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_8381db241152ccd9d00e7238.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_bd6a1e14715db2176c8dd704.woff')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_3e27f850a4d9100b1add8884.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_1174a20b86440d890d468ab8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_826a75162e52b9c5bfae96d2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_3b3eaed18ec188e16ff0ebf3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_68cac3f7ba1033dfe5e348ba.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_08c0701121b451a80bba8296.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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;}
.m2{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);}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-25.800000px;}
.v5{vertical-align:-17.160000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.180000px;}
.v9{vertical-align:8.520000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:25.800000px;}
.v7{vertical-align:34.320000px;}
.v8{vertical-align:42.960000px;}
.ls5{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.034560px;}
.ls11{letter-spacing:0.052980px;}
.ls14{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.ls13{letter-spacing:1.440000px;}
.lsf{letter-spacing:81.942000px;}
.lse{letter-spacing:82.062000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-19.457280px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.146400px;}
.wse{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws9{word-spacing:-12.236544px;}
.ws8{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:56.214000px;}
.wsc{word-spacing:191.335920px;}
.wsd{word-spacing:307.872000px;}
.wsa{word-spacing:327.354000px;}
._d{margin-left:-4.680000px;}
._c{margin-left:-3.672000px;}
._9{margin-left:-2.232000px;}
._4{margin-left:-1.080000px;}
._0{width:1.374000px;}
._5{width:2.712000px;}
._2{width:4.320000px;}
._3{width:5.658000px;}
._10{width:7.116000px;}
._16{width:8.436000px;}
._17{width:9.576000px;}
._a{width:10.656000px;}
._b{width:11.658000px;}
._13{width:12.744000px;}
._12{width:13.758000px;}
._15{width:14.976000px;}
._11{width:16.392000px;}
._8{width:20.016000px;}
._7{width:21.504000px;}
._e{width:23.400000px;}
._f{width:24.552000px;}
._1b{width:25.920000px;}
._1c{width:28.512000px;}
._1d{width:30.462000px;}
._20{width:31.608000px;}
._21{width:33.192000px;}
._1e{width:38.256000px;}
._6{width:39.432000px;}
._1f{width:40.548000px;}
._22{width:42.324000px;}
._1a{width:273.638880px;}
._19{width:553.428000px;}
._18{width:598.338000px;}
._1{width:743.579760px;}
._14{width:1557.636000px;}
._23{width:1757.076000px;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(68,84,106);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fsa{font-size:77.904000px;}
.fs1{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y144{bottom:5.760000px;}
.y151{bottom:5.790000px;}
.y141{bottom:5.940000px;}
.yd2{bottom:6.300000px;}
.yd5{bottom:6.480000px;}
.y147{bottom:9.180000px;}
.y2{bottom:11.880000px;}
.y9e{bottom:14.835000px;}
.y143{bottom:25.560000px;}
.y150{bottom:25.590000px;}
.y159{bottom:25.605000px;}
.y140{bottom:25.740000px;}
.y94{bottom:37.230000px;}
.y90{bottom:48.495000px;}
.y9a{bottom:48.600000px;}
.y8f{bottom:58.065000px;}
.y99{bottom:68.865000px;}
.y92{bottom:70.770000px;}
.y96{bottom:73.290000px;}
.y9d{bottom:74.130000px;}
.y8d{bottom:74.235000px;}
.y8e{bottom:74.985000px;}
.y93{bottom:76.650000px;}
.y95{bottom:78.405000px;}
.y91{bottom:78.660000px;}
.y9c{bottom:80.670000px;}
.y98{bottom:81.210000px;}
.y8b{bottom:83.520000px;}
.y9b{bottom:87.480000px;}
.y8c{bottom:95.685000px;}
.yc4{bottom:99.075000px;}
.y97{bottom:101.160000px;}
.yec{bottom:116.856000px;}
.y3d{bottom:117.036000px;}
.y74{bottom:120.636000px;}
.y80{bottom:126.576000px;}
.y82{bottom:127.650000px;}
.yc5{bottom:127.875000px;}
.y23{bottom:129.996000px;}
.y6b{bottom:132.516000px;}
.y54{bottom:144.216000px;}
.ycf{bottom:148.245000px;}
.y9f{bottom:149.070000px;}
.y83{bottom:149.115000px;}
.yc2{bottom:150.690000px;}
.ya8{bottom:151.200000px;}
.ya5{bottom:155.520000px;}
.yc6{bottom:156.705000px;}
.ya3{bottom:157.650000px;}
.yeb{bottom:158.250000px;}
.y3c{bottom:158.430000px;}
.ya1{bottom:159.810000px;}
.y126{bottom:160.770000px;}
.y103{bottom:161.490000px;}
.y73{bottom:162.030000px;}
.y22{bottom:163.470000px;}
.y7f{bottom:164.010000px;}
.y15c{bottom:165.450000px;}
.ya7{bottom:170.535000px;}
.y84{bottom:170.610000px;}
.yb1{bottom:171.750000px;}
.y6a{bottom:173.910000px;}
.y53{bottom:182.010000px;}
.y15b{bottom:182.910000px;}
.yc7{bottom:185.505000px;}
.ya2{bottom:189.870000px;}
.y125{bottom:191.730000px;}
.y85{bottom:192.060000px;}
.yc1{bottom:192.090000px;}
.y102{bottom:192.450000px;}
.y21{bottom:193.890000px;}
.yb4{bottom:197.205000px;}
.yea{bottom:199.650000px;}
.y3b{bottom:199.830000px;}
.y7c{bottom:201.450000px;}
.y72{bottom:203.430000px;}
.y11b{bottom:203.790000px;}
.yf1{bottom:204.870000px;}
.yb0{bottom:207.390000px;}
.yb2{bottom:208.440000px;}
.ya6{bottom:211.320000px;}
.ya4{bottom:213.480000px;}
.y86{bottom:213.510000px;}
.yc8{bottom:214.350000px;}
.y69{bottom:215.310000px;}
.y20{bottom:218.550000px;}
.y52{bottom:219.990000px;}
.y124{bottom:222.870000px;}
.y15a{bottom:223.410000px;}
.y101{bottom:223.590000px;}
.yc0{bottom:233.490000px;}
.y11a{bottom:234.750000px;}
.y87{bottom:235.005000px;}
.y1f{bottom:236.190000px;}
.ycd{bottom:236.265000px;}
.ye9{bottom:241.050000px;}
.y3a{bottom:241.230000px;}
.y7b{bottom:242.850000px;}
.yc9{bottom:243.180000px;}
.y71{bottom:244.830000px;}
.yf0{bottom:246.270000px;}
.y100{bottom:254.550000px;}
.y88{bottom:256.470000px;}
.y68{bottom:256.710000px;}
.y51{bottom:257.970000px;}
.y158{bottom:263.910000px;}
.y119{bottom:265.890000px;}
.y1e{bottom:266.430000px;}
.yb3{bottom:266.730000px;}
.yca{bottom:271.980000px;}
.y39{bottom:273.270000px;}
.ybf{bottom:274.890000px;}
.y89{bottom:277.920000px;}
.ye8{bottom:282.450000px;}
.y7a{bottom:284.250000px;}
.y70{bottom:286.230000px;}
.yef{bottom:287.715000px;}
.yd0{bottom:295.485000px;}
.y50{bottom:295.995000px;}
.y123{bottom:296.895000px;}
.y1d{bottom:297.075000px;}
.yff{bottom:297.615000px;}
.y67{bottom:298.155000px;}
.y8a{bottom:299.415000px;}
.ycb{bottom:300.810000px;}
.y157{bottom:304.275000px;}
.ya0{bottom:305.790000px;}
.y38{bottom:305.895000px;}
.y118{bottom:308.955000px;}
.ybe{bottom:316.335000px;}
.y1c{bottom:320.835000px;}
.ye7{bottom:323.895000px;}
.y79{bottom:325.695000px;}
.y6f{bottom:327.675000px;}
.y122{bottom:328.035000px;}
.yfe{bottom:328.755000px;}
.yee{bottom:329.115000px;}
.ycc{bottom:329.610000px;}
.y4f{bottom:333.975000px;}
.yb5{bottom:336.270000px;}
.y37{bottom:337.035000px;}
.y13e{bottom:337.215000px;}
.y117{bottom:339.915000px;}
.y66{bottom:341.535000px;}
.y1b{bottom:344.595000px;}
.y156{bottom:344.775000px;}
.yab{bottom:346.575000px;}
.yce{bottom:353.160000px;}
.ybd{bottom:357.735000px;}
.y1a{bottom:361.695000px;}
.ye6{bottom:365.295000px;}
.y78{bottom:367.095000px;}
.y6e{bottom:369.075000px;}
.yed{bottom:370.515000px;}
.y116{bottom:371.055000px;}
.y13d{bottom:371.415000px;}
.y4e{bottom:371.775000px;}
.y36{bottom:378.435000px;}
.y130{bottom:383.115000px;}
.y65{bottom:384.375000px;}
.y155{bottom:385.095000px;}
.yaa{bottom:385.815000px;}
.y19{bottom:392.295000px;}
.ybc{bottom:399.135000px;}
.y121{bottom:402.015000px;}
.yfd{bottom:402.735000px;}
.y13c{bottom:405.795000px;}
.ye5{bottom:406.695000px;}
.y6d{bottom:408.315000px;}
.y77{bottom:408.495000px;}
.y4d{bottom:411.915000px;}
.y115{bottom:414.075000px;}
.y18{bottom:416.055000px;}
.y35{bottom:419.655000px;}
.ya9{bottom:421.815000px;}
.y154{bottom:425.595000px;}
.y64{bottom:425.775000px;}
.y120{bottom:433.155000px;}
.yfc{bottom:433.875000px;}
.y17{bottom:439.815000px;}
.y13b{bottom:440.175000px;}
.ybb{bottom:440.535000px;}
.y6c{bottom:444.315000px;}
.y114{bottom:445.035000px;}
.ye4{bottom:448.095000px;}
.y76{bottom:449.895000px;}
.y4c{bottom:453.315000px;}
.y34{bottom:461.055000px;}
.y16{bottom:463.755000px;}
.y153{bottom:465.915000px;}
.y63{bottom:467.175000px;}
.y113{bottom:476.175000px;}
.yfb{bottom:476.895000px;}
.yba{bottom:481.935000px;}
.y13a{bottom:483.195000px;}
.y15{bottom:487.515000px;}
.y12f{bottom:488.235000px;}
.ye3{bottom:489.315000px;}
.y75{bottom:493.275000px;}
.y4b{bottom:494.715000px;}
.y33{bottom:502.455000px;}
.y152{bottom:506.415000px;}
.y112{bottom:507.135000px;}
.yfa{bottom:507.855000px;}
.y62{bottom:508.575000px;}
.y14{bottom:511.275000px;}
.y12e{bottom:519.195000px;}
.yb9{bottom:523.335000px;}
.y139{bottom:526.215000px;}
.ye2{bottom:530.715000px;}
.y13{bottom:535.035000px;}
.y4a{bottom:536.115000px;}
.y11f{bottom:538.275000px;}
.y32{bottom:543.855000px;}
.y14f{bottom:546.915000px;}
.y61{bottom:550.005000px;}
.y111{bottom:550.365000px;}
.yf9{bottom:551.085000px;}
.y12{bottom:559.005000px;}
.yb8{bottom:564.765000px;}
.y138{bottom:569.265000px;}
.ye1{bottom:572.145000px;}
.y49{bottom:577.545000px;}
.y110{bottom:581.325000px;}
.yf8{bottom:582.045000px;}
.y11{bottom:582.765000px;}
.y31{bottom:585.285000px;}
.y14e{bottom:587.265000px;}
.y60{bottom:591.405000px;}
.y12d{bottom:593.385000px;}
.y10{bottom:599.685000px;}
.y137{bottom:600.405000px;}
.yb7{bottom:604.005000px;}
.y10f{bottom:612.465000px;}
.ye0{bottom:613.545000px;}
.y48{bottom:618.945000px;}
.y12c{bottom:624.345000px;}
.yf7{bottom:625.065000px;}
.y30{bottom:626.685000px;}
.y14d{bottom:627.765000px;}
.yf{bottom:630.285000px;}
.y136{bottom:631.365000px;}
.y5f{bottom:632.805000px;}
.yb6{bottom:640.185000px;}
.yaf{bottom:641.625000px;}
.yc3{bottom:642.240000px;}
.y11e{bottom:643.425000px;}
.ye{bottom:647.205000px;}
.ydf{bottom:654.945000px;}
.y10e{bottom:655.485000px;}
.yf6{bottom:656.205000px;}
.y47{bottom:660.345000px;}
.y2f{bottom:668.085000px;}
.yd{bottom:671.145000px;}
.y7e{bottom:672.585000px;}
.y5e{bottom:674.205000px;}
.y135{bottom:674.565000px;}
.yae{bottom:680.865000px;}
.y10d{bottom:686.445000px;}
.yf5{bottom:687.165000px;}
.yc{bottom:694.905000px;}
.yde{bottom:696.345000px;}
.y12b{bottom:698.505000px;}
.y46{bottom:701.745000px;}
.y134{bottom:705.525000px;}
.y14c{bottom:708.585000px;}
.y2e{bottom:709.485000px;}
.y7d{bottom:709.845000px;}
.y81{bottom:710.640000px;}
.y5d{bottom:715.605000px;}
.y10c{bottom:717.585000px;}
.yb{bottom:718.665000px;}
.yad{bottom:718.845000px;}
.y12a{bottom:729.465000px;}
.yf4{bottom:730.185000px;}
.ydd{bottom:737.745000px;}
.ya{bottom:742.425000px;}
.y45{bottom:743.145000px;}
.y11d{bottom:748.545000px;}
.y14b{bottom:748.905000px;}
.y2d{bottom:750.885000px;}
.yac{bottom:754.845000px;}
.y5c{bottom:757.005000px;}
.y10b{bottom:760.605000px;}
.yf3{bottom:761.325000px;}
.y9{bottom:766.365000px;}
.ydc{bottom:779.145000px;}
.y133{bottom:779.685000px;}
.y44{bottom:784.545000px;}
.y14a{bottom:789.405000px;}
.y10a{bottom:791.565000px;}
.y2c{bottom:792.285000px;}
.y8{bottom:797.325000px;}
.y5b{bottom:798.405000px;}
.y129{bottom:803.625000px;}
.y149{bottom:813.390000px;}
.ydb{bottom:820.590000px;}
.y109{bottom:822.750000px;}
.yf2{bottom:824.370000px;}
.y7{bottom:824.550000px;}
.y43{bottom:825.990000px;}
.y2b{bottom:833.730000px;}
.y128{bottom:834.810000px;}
.y148{bottom:837.510000px;}
.yda{bottom:838.230000px;}
.y5a{bottom:839.850000px;}
.y11c{bottom:853.710000px;}
.y6{bottom:860.370000px;}
.yd9{bottom:860.730000px;}
.y146{bottom:861.450000px;}
.y108{bottom:865.770000px;}
.y42{bottom:867.390000px;}
.y2a{bottom:875.130000px;}
.y59{bottom:881.250000px;}
.yd8{bottom:883.230000px;}
.y132{bottom:884.850000px;}
.y145{bottom:885.390000px;}
.y107{bottom:896.730000px;}
.y5{bottom:898.350000px;}
.yd7{bottom:905.910000px;}
.y1{bottom:906.450000px;}
.y41{bottom:908.790000px;}
.y4{bottom:915.810000px;}
.y29{bottom:916.530000px;}
.y58{bottom:920.490000px;}
.y142{bottom:925.890000px;}
.y106{bottom:927.870000px;}
.yd6{bottom:928.410000px;}
.y127{bottom:939.930000px;}
.y3{bottom:943.890000px;}
.y40{bottom:950.190000px;}
.yd4{bottom:950.910000px;}
.y28{bottom:957.930000px;}
.y57{bottom:958.290000px;}
.y131{bottom:958.830000px;}
.y13f{bottom:966.210000px;}
.y105{bottom:970.890000px;}
.yd3{bottom:973.590000px;}
.y3f{bottom:991.590000px;}
.yd1{bottom:996.090000px;}
.y56{bottom:996.270000px;}
.y27{bottom:999.330000px;}
.y104{bottom:1002.030000px;}
.y26{bottom:1031.370000px;}
.y3e{bottom:1032.990000px;}
.y55{bottom:1034.250000px;}
.y25{bottom:1094.940000px;}
.y24{bottom:1117.260000px;}
.h5{height:12.532852px;}
.h1a{height:21.780000px;}
.h1b{height:21.960000px;}
.h22{height:23.220000px;}
.h23{height:23.256000px;}
.h1{height:28.980000px;}
.h1f{height:39.600000px;}
.h24{height:39.636000px;}
.h1c{height:39.780000px;}
.h1e{height:41.843672px;}
.h1d{height:42.164648px;}
.ha{height:43.246406px;}
.h21{height:49.255313px;}
.h10{height:50.414062px;}
.h7{height:50.800781px;}
.h20{height:53.573906px;}
.hc{height:53.709961px;}
.h13{height:53.853187px;}
.hd{height:54.864844px;}
.h9{height:57.796523px;}
.h15{height:59.343750px;}
.hf{height:59.383125px;}
.h4{height:61.189805px;}
.hb{height:64.546875px;}
.h8{height:65.884219px;}
.he{height:67.824844px;}
.h11{height:69.710625px;}
.h18{height:69.839719px;}
.h3{height:73.722656px;}
.h19{height:75.890625px;}
.h6{height:76.201172px;}
.h2{height:98.051133px;}
.h14{height:122.409961px;}
.h12{height:339.120000px;}
.h17{height:407.520000px;}
.h16{height:408.600000px;}
.h0{height:1188.000000px;}
.w8{width:30.240000px;}
.we{width:43.380000px;}
.wa{width:69.156000px;}
.w9{width:101.520000px;}
.w7{width:113.616000px;}
.wc{width:129.456000px;}
.wd{width:145.836000px;}
.w1{width:152.490000px;}
.wb{width:163.800000px;}
.w6{width:363.495000px;}
.w5{width:736.380000px;}
.w4{width:752.940000px;}
.w3{width:759.780000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x46{left:7.740000px;}
.x2{left:15.840000px;}
.xd{left:38.448000px;}
.xc{left:45.324000px;}
.x37{left:56.775000px;}
.x25{left:71.676000px;}
.xb{left:75.960000px;}
.x26{left:80.640000px;}
.xe{left:82.980000px;}
.x3f{left:86.580000px;}
.x27{left:104.580000px;}
.x4{left:108.035986px;}
.xf{left:110.340000px;}
.x38{left:115.560000px;}
.x40{left:130.035000px;}
.x28{left:135.360000px;}
.x10{left:137.670000px;}
.x49{left:139.716000px;}
.x29{left:159.270000px;}
.x48{left:162.029986px;}
.x11{left:165.030000px;}
.x39{left:174.345000px;}
.x44{left:176.969986px;}
.x2a{left:190.050000px;}
.x12{left:192.345000px;}
.x45{left:214.050000px;}
.x41{left:217.470000px;}
.x13{left:219.705000px;}
.x2b{left:241.305000px;}
.x14{left:247.065000px;}
.x2c{left:272.085000px;}
.x15{left:274.395000px;}
.x8{left:278.669986px;}
.x3a{left:291.930000px;}
.x16{left:301.755000px;}
.xa{left:308.054986px;}
.x42{left:309.060000px;}
.x4a{left:311.835000px;}
.x17{left:329.115000px;}
.x6{left:344.954986px;}
.x2d{left:350.715000px;}
.x18{left:356.430000px;}
.x2e{left:378.030000px;}
.x19{left:383.790000px;}
.x2f{left:405.390000px;}
.x3b{left:409.500000px;}
.x1a{left:411.150000px;}
.x1b{left:438.480000px;}
.x30{left:463.500000px;}
.x1c{left:465.840000px;}
.x3c{left:468.285000px;}
.x4b{left:476.355000px;}
.x1d{left:493.170000px;}
.x1e{left:520.530000px;}
.x1f{left:547.890000px;}
.x20{left:575.205000px;}
.x47{left:577.905000px;}
.x43{left:583.815000px;}
.x21{left:602.565000px;}
.x4c{left:606.705000px;}
.x31{left:624.165000px;}
.x22{left:629.925000px;}
.x1{left:646.485000px;}
.x32{left:654.945000px;}
.x23{left:657.255000px;}
.x33{left:678.855000px;}
.x24{left:684.615000px;}
.x3d{left:703.440000px;}
.x5{left:728.429986px;}
.x4d{left:753.450000px;}
.x3{left:805.649986px;}
.x3e{left:824.909986px;}
.x7{left:836.609986px;}
.x35{left:848.309986px;}
.x9{left:855.149986px;}
.x34{left:856.409986px;}
.x36{left:861.809986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-22.933333pt;}
.v5{vertical-align:-15.253333pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.493333pt;}
.v9{vertical-align:7.573333pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:22.933333pt;}
.v7{vertical-align:30.506667pt;}
.v8{vertical-align:38.186667pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.030720pt;}
.ls11{letter-spacing:0.047093pt;}
.ls14{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.ls13{letter-spacing:1.280000pt;}
.lsf{letter-spacing:72.837333pt;}
.lse{letter-spacing:72.944000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws10{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws9{word-spacing:-10.876928pt;}
.ws8{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:49.968000pt;}
.wsc{word-spacing:170.076373pt;}
.wsd{word-spacing:273.664000pt;}
.wsa{word-spacing:290.981333pt;}
._d{margin-left:-4.160000pt;}
._c{margin-left:-3.264000pt;}
._9{margin-left:-1.984000pt;}
._4{margin-left:-0.960000pt;}
._0{width:1.221333pt;}
._5{width:2.410667pt;}
._2{width:3.840000pt;}
._3{width:5.029333pt;}
._10{width:6.325333pt;}
._16{width:7.498667pt;}
._17{width:8.512000pt;}
._a{width:9.472000pt;}
._b{width:10.362667pt;}
._13{width:11.328000pt;}
._12{width:12.229333pt;}
._15{width:13.312000pt;}
._11{width:14.570667pt;}
._8{width:17.792000pt;}
._7{width:19.114667pt;}
._e{width:20.800000pt;}
._f{width:21.824000pt;}
._1b{width:23.040000pt;}
._1c{width:25.344000pt;}
._1d{width:27.077333pt;}
._20{width:28.096000pt;}
._21{width:29.504000pt;}
._1e{width:34.005333pt;}
._6{width:35.050667pt;}
._1f{width:36.042667pt;}
._22{width:37.621333pt;}
._1a{width:243.234560pt;}
._19{width:491.936000pt;}
._18{width:531.856000pt;}
._1{width:660.959787pt;}
._14{width:1384.565333pt;}
._23{width:1561.845333pt;}
.fs3{font-size:10.880000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fsa{font-size:69.248000pt;}
.fs1{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:5.120000pt;}
.y151{bottom:5.146667pt;}
.y141{bottom:5.280000pt;}
.yd2{bottom:5.600000pt;}
.yd5{bottom:5.760000pt;}
.y147{bottom:8.160000pt;}
.y2{bottom:10.560000pt;}
.y9e{bottom:13.186667pt;}
.y143{bottom:22.720000pt;}
.y150{bottom:22.746667pt;}
.y159{bottom:22.760000pt;}
.y140{bottom:22.880000pt;}
.y94{bottom:33.093333pt;}
.y90{bottom:43.106667pt;}
.y9a{bottom:43.200000pt;}
.y8f{bottom:51.613333pt;}
.y99{bottom:61.213333pt;}
.y92{bottom:62.906667pt;}
.y96{bottom:65.146667pt;}
.y9d{bottom:65.893333pt;}
.y8d{bottom:65.986667pt;}
.y8e{bottom:66.653333pt;}
.y93{bottom:68.133333pt;}
.y95{bottom:69.693333pt;}
.y91{bottom:69.920000pt;}
.y9c{bottom:71.706667pt;}
.y98{bottom:72.186667pt;}
.y8b{bottom:74.240000pt;}
.y9b{bottom:77.760000pt;}
.y8c{bottom:85.053333pt;}
.yc4{bottom:88.066667pt;}
.y97{bottom:89.920000pt;}
.yec{bottom:103.872000pt;}
.y3d{bottom:104.032000pt;}
.y74{bottom:107.232000pt;}
.y80{bottom:112.512000pt;}
.y82{bottom:113.466667pt;}
.yc5{bottom:113.666667pt;}
.y23{bottom:115.552000pt;}
.y6b{bottom:117.792000pt;}
.y54{bottom:128.192000pt;}
.ycf{bottom:131.773333pt;}
.y9f{bottom:132.506667pt;}
.y83{bottom:132.546667pt;}
.yc2{bottom:133.946667pt;}
.ya8{bottom:134.400000pt;}
.ya5{bottom:138.240000pt;}
.yc6{bottom:139.293333pt;}
.ya3{bottom:140.133333pt;}
.yeb{bottom:140.666667pt;}
.y3c{bottom:140.826667pt;}
.ya1{bottom:142.053333pt;}
.y126{bottom:142.906667pt;}
.y103{bottom:143.546667pt;}
.y73{bottom:144.026667pt;}
.y22{bottom:145.306667pt;}
.y7f{bottom:145.786667pt;}
.y15c{bottom:147.066667pt;}
.ya7{bottom:151.586667pt;}
.y84{bottom:151.653333pt;}
.yb1{bottom:152.666667pt;}
.y6a{bottom:154.586667pt;}
.y53{bottom:161.786667pt;}
.y15b{bottom:162.586667pt;}
.yc7{bottom:164.893333pt;}
.ya2{bottom:168.773333pt;}
.y125{bottom:170.426667pt;}
.y85{bottom:170.720000pt;}
.yc1{bottom:170.746667pt;}
.y102{bottom:171.066667pt;}
.y21{bottom:172.346667pt;}
.yb4{bottom:175.293333pt;}
.yea{bottom:177.466667pt;}
.y3b{bottom:177.626667pt;}
.y7c{bottom:179.066667pt;}
.y72{bottom:180.826667pt;}
.y11b{bottom:181.146667pt;}
.yf1{bottom:182.106667pt;}
.yb0{bottom:184.346667pt;}
.yb2{bottom:185.280000pt;}
.ya6{bottom:187.840000pt;}
.ya4{bottom:189.760000pt;}
.y86{bottom:189.786667pt;}
.yc8{bottom:190.533333pt;}
.y69{bottom:191.386667pt;}
.y20{bottom:194.266667pt;}
.y52{bottom:195.546667pt;}
.y124{bottom:198.106667pt;}
.y15a{bottom:198.586667pt;}
.y101{bottom:198.746667pt;}
.yc0{bottom:207.546667pt;}
.y11a{bottom:208.666667pt;}
.y87{bottom:208.893333pt;}
.y1f{bottom:209.946667pt;}
.ycd{bottom:210.013333pt;}
.ye9{bottom:214.266667pt;}
.y3a{bottom:214.426667pt;}
.y7b{bottom:215.866667pt;}
.yc9{bottom:216.160000pt;}
.y71{bottom:217.626667pt;}
.yf0{bottom:218.906667pt;}
.y100{bottom:226.266667pt;}
.y88{bottom:227.973333pt;}
.y68{bottom:228.186667pt;}
.y51{bottom:229.306667pt;}
.y158{bottom:234.586667pt;}
.y119{bottom:236.346667pt;}
.y1e{bottom:236.826667pt;}
.yb3{bottom:237.093333pt;}
.yca{bottom:241.760000pt;}
.y39{bottom:242.906667pt;}
.ybf{bottom:244.346667pt;}
.y89{bottom:247.040000pt;}
.ye8{bottom:251.066667pt;}
.y7a{bottom:252.666667pt;}
.y70{bottom:254.426667pt;}
.yef{bottom:255.746667pt;}
.yd0{bottom:262.653333pt;}
.y50{bottom:263.106667pt;}
.y123{bottom:263.906667pt;}
.y1d{bottom:264.066667pt;}
.yff{bottom:264.546667pt;}
.y67{bottom:265.026667pt;}
.y8a{bottom:266.146667pt;}
.ycb{bottom:267.386667pt;}
.y157{bottom:270.466667pt;}
.ya0{bottom:271.813333pt;}
.y38{bottom:271.906667pt;}
.y118{bottom:274.626667pt;}
.ybe{bottom:281.186667pt;}
.y1c{bottom:285.186667pt;}
.ye7{bottom:287.906667pt;}
.y79{bottom:289.506667pt;}
.y6f{bottom:291.266667pt;}
.y122{bottom:291.586667pt;}
.yfe{bottom:292.226667pt;}
.yee{bottom:292.546667pt;}
.ycc{bottom:292.986667pt;}
.y4f{bottom:296.866667pt;}
.yb5{bottom:298.906667pt;}
.y37{bottom:299.586667pt;}
.y13e{bottom:299.746667pt;}
.y117{bottom:302.146667pt;}
.y66{bottom:303.586667pt;}
.y1b{bottom:306.306667pt;}
.y156{bottom:306.466667pt;}
.yab{bottom:308.066667pt;}
.yce{bottom:313.920000pt;}
.ybd{bottom:317.986667pt;}
.y1a{bottom:321.506667pt;}
.ye6{bottom:324.706667pt;}
.y78{bottom:326.306667pt;}
.y6e{bottom:328.066667pt;}
.yed{bottom:329.346667pt;}
.y116{bottom:329.826667pt;}
.y13d{bottom:330.146667pt;}
.y4e{bottom:330.466667pt;}
.y36{bottom:336.386667pt;}
.y130{bottom:340.546667pt;}
.y65{bottom:341.666667pt;}
.y155{bottom:342.306667pt;}
.yaa{bottom:342.946667pt;}
.y19{bottom:348.706667pt;}
.ybc{bottom:354.786667pt;}
.y121{bottom:357.346667pt;}
.yfd{bottom:357.986667pt;}
.y13c{bottom:360.706667pt;}
.ye5{bottom:361.506667pt;}
.y6d{bottom:362.946667pt;}
.y77{bottom:363.106667pt;}
.y4d{bottom:366.146667pt;}
.y115{bottom:368.066667pt;}
.y18{bottom:369.826667pt;}
.y35{bottom:373.026667pt;}
.ya9{bottom:374.946667pt;}
.y154{bottom:378.306667pt;}
.y64{bottom:378.466667pt;}
.y120{bottom:385.026667pt;}
.yfc{bottom:385.666667pt;}
.y17{bottom:390.946667pt;}
.y13b{bottom:391.266667pt;}
.ybb{bottom:391.586667pt;}
.y6c{bottom:394.946667pt;}
.y114{bottom:395.586667pt;}
.ye4{bottom:398.306667pt;}
.y76{bottom:399.906667pt;}
.y4c{bottom:402.946667pt;}
.y34{bottom:409.826667pt;}
.y16{bottom:412.226667pt;}
.y153{bottom:414.146667pt;}
.y63{bottom:415.266667pt;}
.y113{bottom:423.266667pt;}
.yfb{bottom:423.906667pt;}
.yba{bottom:428.386667pt;}
.y13a{bottom:429.506667pt;}
.y15{bottom:433.346667pt;}
.y12f{bottom:433.986667pt;}
.ye3{bottom:434.946667pt;}
.y75{bottom:438.466667pt;}
.y4b{bottom:439.746667pt;}
.y33{bottom:446.626667pt;}
.y152{bottom:450.146667pt;}
.y112{bottom:450.786667pt;}
.yfa{bottom:451.426667pt;}
.y62{bottom:452.066667pt;}
.y14{bottom:454.466667pt;}
.y12e{bottom:461.506667pt;}
.yb9{bottom:465.186667pt;}
.y139{bottom:467.746667pt;}
.ye2{bottom:471.746667pt;}
.y13{bottom:475.586667pt;}
.y4a{bottom:476.546667pt;}
.y11f{bottom:478.466667pt;}
.y32{bottom:483.426667pt;}
.y14f{bottom:486.146667pt;}
.y61{bottom:488.893333pt;}
.y111{bottom:489.213333pt;}
.yf9{bottom:489.853333pt;}
.y12{bottom:496.893333pt;}
.yb8{bottom:502.013333pt;}
.y138{bottom:506.013333pt;}
.ye1{bottom:508.573333pt;}
.y49{bottom:513.373333pt;}
.y110{bottom:516.733333pt;}
.yf8{bottom:517.373333pt;}
.y11{bottom:518.013333pt;}
.y31{bottom:520.253333pt;}
.y14e{bottom:522.013333pt;}
.y60{bottom:525.693333pt;}
.y12d{bottom:527.453333pt;}
.y10{bottom:533.053333pt;}
.y137{bottom:533.693333pt;}
.yb7{bottom:536.893333pt;}
.y10f{bottom:544.413333pt;}
.ye0{bottom:545.373333pt;}
.y48{bottom:550.173333pt;}
.y12c{bottom:554.973333pt;}
.yf7{bottom:555.613333pt;}
.y30{bottom:557.053333pt;}
.y14d{bottom:558.013333pt;}
.yf{bottom:560.253333pt;}
.y136{bottom:561.213333pt;}
.y5f{bottom:562.493333pt;}
.yb6{bottom:569.053333pt;}
.yaf{bottom:570.333333pt;}
.yc3{bottom:570.880000pt;}
.y11e{bottom:571.933333pt;}
.ye{bottom:575.293333pt;}
.ydf{bottom:582.173333pt;}
.y10e{bottom:582.653333pt;}
.yf6{bottom:583.293333pt;}
.y47{bottom:586.973333pt;}
.y2f{bottom:593.853333pt;}
.yd{bottom:596.573333pt;}
.y7e{bottom:597.853333pt;}
.y5e{bottom:599.293333pt;}
.y135{bottom:599.613333pt;}
.yae{bottom:605.213333pt;}
.y10d{bottom:610.173333pt;}
.yf5{bottom:610.813333pt;}
.yc{bottom:617.693333pt;}
.yde{bottom:618.973333pt;}
.y12b{bottom:620.893333pt;}
.y46{bottom:623.773333pt;}
.y134{bottom:627.133333pt;}
.y14c{bottom:629.853333pt;}
.y2e{bottom:630.653333pt;}
.y7d{bottom:630.973333pt;}
.y81{bottom:631.680000pt;}
.y5d{bottom:636.093333pt;}
.y10c{bottom:637.853333pt;}
.yb{bottom:638.813333pt;}
.yad{bottom:638.973333pt;}
.y12a{bottom:648.413333pt;}
.yf4{bottom:649.053333pt;}
.ydd{bottom:655.773333pt;}
.ya{bottom:659.933333pt;}
.y45{bottom:660.573333pt;}
.y11d{bottom:665.373333pt;}
.y14b{bottom:665.693333pt;}
.y2d{bottom:667.453333pt;}
.yac{bottom:670.973333pt;}
.y5c{bottom:672.893333pt;}
.y10b{bottom:676.093333pt;}
.yf3{bottom:676.733333pt;}
.y9{bottom:681.213333pt;}
.ydc{bottom:692.573333pt;}
.y133{bottom:693.053333pt;}
.y44{bottom:697.373333pt;}
.y14a{bottom:701.693333pt;}
.y10a{bottom:703.613333pt;}
.y2c{bottom:704.253333pt;}
.y8{bottom:708.733333pt;}
.y5b{bottom:709.693333pt;}
.y129{bottom:714.333333pt;}
.y149{bottom:723.013333pt;}
.ydb{bottom:729.413333pt;}
.y109{bottom:731.333333pt;}
.yf2{bottom:732.773333pt;}
.y7{bottom:732.933333pt;}
.y43{bottom:734.213333pt;}
.y2b{bottom:741.093333pt;}
.y128{bottom:742.053333pt;}
.y148{bottom:744.453333pt;}
.yda{bottom:745.093333pt;}
.y5a{bottom:746.533333pt;}
.y11c{bottom:758.853333pt;}
.y6{bottom:764.773333pt;}
.yd9{bottom:765.093333pt;}
.y146{bottom:765.733333pt;}
.y108{bottom:769.573333pt;}
.y42{bottom:771.013333pt;}
.y2a{bottom:777.893333pt;}
.y59{bottom:783.333333pt;}
.yd8{bottom:785.093333pt;}
.y132{bottom:786.533333pt;}
.y145{bottom:787.013333pt;}
.y107{bottom:797.093333pt;}
.y5{bottom:798.533333pt;}
.yd7{bottom:805.253333pt;}
.y1{bottom:805.733333pt;}
.y41{bottom:807.813333pt;}
.y4{bottom:814.053333pt;}
.y29{bottom:814.693333pt;}
.y58{bottom:818.213333pt;}
.y142{bottom:823.013333pt;}
.y106{bottom:824.773333pt;}
.yd6{bottom:825.253333pt;}
.y127{bottom:835.493333pt;}
.y3{bottom:839.013333pt;}
.y40{bottom:844.613333pt;}
.yd4{bottom:845.253333pt;}
.y28{bottom:851.493333pt;}
.y57{bottom:851.813333pt;}
.y131{bottom:852.293333pt;}
.y13f{bottom:858.853333pt;}
.y105{bottom:863.013333pt;}
.yd3{bottom:865.413333pt;}
.y3f{bottom:881.413333pt;}
.yd1{bottom:885.413333pt;}
.y56{bottom:885.573333pt;}
.y27{bottom:888.293333pt;}
.y104{bottom:890.693333pt;}
.y26{bottom:916.773333pt;}
.y3e{bottom:918.213333pt;}
.y55{bottom:919.333333pt;}
.y25{bottom:973.280000pt;}
.y24{bottom:993.120000pt;}
.h5{height:11.140312pt;}
.h1a{height:19.360000pt;}
.h1b{height:19.520000pt;}
.h22{height:20.640000pt;}
.h23{height:20.672000pt;}
.h1{height:25.760000pt;}
.h1f{height:35.200000pt;}
.h24{height:35.232000pt;}
.h1c{height:35.360000pt;}
.h1e{height:37.194375pt;}
.h1d{height:37.479688pt;}
.ha{height:38.441250pt;}
.h21{height:43.782500pt;}
.h10{height:44.812500pt;}
.h7{height:45.156250pt;}
.h20{height:47.621250pt;}
.hc{height:47.742188pt;}
.h13{height:47.869500pt;}
.hd{height:48.768750pt;}
.h9{height:51.374688pt;}
.h15{height:52.750000pt;}
.hf{height:52.785000pt;}
.h4{height:54.390938pt;}
.hb{height:57.375000pt;}
.h8{height:58.563750pt;}
.he{height:60.288750pt;}
.h11{height:61.965000pt;}
.h18{height:62.079750pt;}
.h3{height:65.531250pt;}
.h19{height:67.458333pt;}
.h6{height:67.734375pt;}
.h2{height:87.156562pt;}
.h14{height:108.808854pt;}
.h12{height:301.440000pt;}
.h17{height:362.240000pt;}
.h16{height:363.200000pt;}
.h0{height:1056.000000pt;}
.w8{width:26.880000pt;}
.we{width:38.560000pt;}
.wa{width:61.472000pt;}
.w9{width:90.240000pt;}
.w7{width:100.992000pt;}
.wc{width:115.072000pt;}
.wd{width:129.632000pt;}
.w1{width:135.546667pt;}
.wb{width:145.600000pt;}
.w6{width:323.106667pt;}
.w5{width:654.560000pt;}
.w4{width:669.280000pt;}
.w3{width:675.360000pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x46{left:6.880000pt;}
.x2{left:14.080000pt;}
.xd{left:34.176000pt;}
.xc{left:40.288000pt;}
.x37{left:50.466667pt;}
.x25{left:63.712000pt;}
.xb{left:67.520000pt;}
.x26{left:71.680000pt;}
.xe{left:73.760000pt;}
.x3f{left:76.960000pt;}
.x27{left:92.960000pt;}
.x4{left:96.031988pt;}
.xf{left:98.080000pt;}
.x38{left:102.720000pt;}
.x40{left:115.586667pt;}
.x28{left:120.320000pt;}
.x10{left:122.373333pt;}
.x49{left:124.192000pt;}
.x29{left:141.573333pt;}
.x48{left:144.026655pt;}
.x11{left:146.693333pt;}
.x39{left:154.973333pt;}
.x44{left:157.306655pt;}
.x2a{left:168.933333pt;}
.x12{left:170.973333pt;}
.x45{left:190.266667pt;}
.x41{left:193.306667pt;}
.x13{left:195.293333pt;}
.x2b{left:214.493333pt;}
.x14{left:219.613333pt;}
.x2c{left:241.853333pt;}
.x15{left:243.906667pt;}
.x8{left:247.706655pt;}
.x3a{left:259.493333pt;}
.x16{left:268.226667pt;}
.xa{left:273.826655pt;}
.x42{left:274.720000pt;}
.x4a{left:277.186667pt;}
.x17{left:292.546667pt;}
.x6{left:306.626655pt;}
.x2d{left:311.746667pt;}
.x18{left:316.826667pt;}
.x2e{left:336.026667pt;}
.x19{left:341.146667pt;}
.x2f{left:360.346667pt;}
.x3b{left:364.000000pt;}
.x1a{left:365.466667pt;}
.x1b{left:389.760000pt;}
.x30{left:412.000000pt;}
.x1c{left:414.080000pt;}
.x3c{left:416.253333pt;}
.x4b{left:423.426667pt;}
.x1d{left:438.373333pt;}
.x1e{left:462.693333pt;}
.x1f{left:487.013333pt;}
.x20{left:511.293333pt;}
.x47{left:513.693333pt;}
.x43{left:518.946667pt;}
.x21{left:535.613333pt;}
.x4c{left:539.293333pt;}
.x31{left:554.813333pt;}
.x22{left:559.933333pt;}
.x1{left:574.653333pt;}
.x32{left:582.173333pt;}
.x23{left:584.226667pt;}
.x33{left:603.426667pt;}
.x24{left:608.546667pt;}
.x3d{left:625.280000pt;}
.x5{left:647.493321pt;}
.x4d{left:669.733333pt;}
.x3{left:716.133321pt;}
.x3e{left:733.253321pt;}
.x7{left:743.653321pt;}
.x35{left:754.053321pt;}
.x9{left:760.133321pt;}
.x34{left:761.253321pt;}
.x36{left:766.053321pt;}
}




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