
    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_198ad2c0ad5d14004962c81e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_f683bd609f7a02a285177e27.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cedc8b7ddf4ae55b3b403a5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_87e45b2340e5845bdf3fb89b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_9e93b5787f3337f2d026e567.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_1437f00082fa1c98c1d1268a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_be954f1e38b6363f9d6d8539.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_caef1866717c85cb3d7946ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.786000px;}
.ls11{letter-spacing:-0.618000px;}
.ls1a{letter-spacing:-0.564600px;}
.ls1e{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.409200px;}
.ls2{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.270600px;}
.lsa{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.172800px;}
.lsc{letter-spacing:-0.094800px;}
.lsf{letter-spacing:-0.063600px;}
.ls7{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.023040px;}
.ls14{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.060600px;}
.lse{letter-spacing:0.075000px;}
.lsd{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.198600px;}
.ls6{letter-spacing:0.274200px;}
.ls20{letter-spacing:0.281280px;}
.ls1c{letter-spacing:0.305280px;}
.ls1f{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.328200px;}
.ls5{letter-spacing:0.348000px;}
.ls13{letter-spacing:0.360000px;}
.ls10{letter-spacing:2.707200px;}
.ls17{letter-spacing:4.867200px;}
.ls19{letter-spacing:7.027200px;}
.ls12{letter-spacing:39.161280px;}
.ls0{letter-spacing:201.427200px;}
.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;}
}
.wsd{word-spacing:-14.901000px;}
.ws12{word-spacing:-14.878200px;}
.ws10{word-spacing:-14.771400px;}
.wse{word-spacing:-14.621760px;}
.wsc{word-spacing:-14.595840px;}
.wsf{word-spacing:-14.590080px;}
.ws3{word-spacing:-14.572800px;}
.ws11{word-spacing:-14.158200px;}
.ws5{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.887000px;}
.wsa{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.342200px;}
.ws2{word-spacing:-9.187200px;}
.wsb{word-spacing:-9.092400px;}
.ws4{word-spacing:-8.614200px;}
.ws7{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-201.247200px;}
._4{margin-left:-36.723840px;}
._1d{margin-left:-5.115120px;}
._1a{margin-left:-3.293040px;}
._19{margin-left:-2.170320px;}
._2{margin-left:-1.170000px;}
._1{width:1.560000px;}
._1c{width:3.047760px;}
._f{width:4.117200px;}
._8{width:5.133120px;}
._7{width:6.274800px;}
._1f{width:7.529040px;}
._12{width:9.495600px;}
._13{width:10.876320px;}
._1b{width:11.939520px;}
._22{width:13.265280px;}
._16{width:14.402160px;}
._14{width:15.908640px;}
._e{width:17.204640px;}
._d{width:18.286560px;}
._15{width:19.903200px;}
._b{width:21.752640px;}
._c{width:23.366880px;}
._17{width:25.218720px;}
._18{width:26.341680px;}
._10{width:28.326240px;}
._11{width:29.521440px;}
._23{width:31.464000px;}
._1e{width:32.523840px;}
._33{width:33.575520px;}
._25{width:34.908480px;}
._a{width:36.447360px;}
._6{width:38.365920px;}
._9{width:40.158720px;}
._34{width:41.482320px;}
._26{width:43.784640px;}
._27{width:44.822160px;}
._35{width:46.367880px;}
._20{width:47.474040px;}
._30{width:52.608720px;}
._2b{width:53.720640px;}
._2f{width:66.769920px;}
._0{width:75.000000px;}
._28{width:86.244480px;}
._2e{width:92.471040px;}
._2c{width:98.697600px;}
._2d{width:99.741840px;}
._29{width:108.633600px;}
._2a{width:139.501440px;}
._32{width:140.693760px;}
._31{width:142.151040px;}
._3{width:181.080000px;}
._24{width:201.403200px;}
._36{width:243.163200px;}
._21{width:1056.007200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(46,46,46);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.760000px;}
.yf4{bottom:6.294000px;}
.yc0{bottom:6.300000px;}
.yb2{bottom:6.480000px;}
.yf7{bottom:6.510000px;}
.yb7{bottom:6.525000px;}
.y52{bottom:19.260000px;}
.ybf{bottom:28.614000px;}
.yb4{bottom:28.620000px;}
.yc8{bottom:28.665000px;}
.yf1{bottom:28.800000px;}
.y51{bottom:29.880000px;}
.y50{bottom:40.320000px;}
.ybe{bottom:50.754000px;}
.ybb{bottom:50.940000px;}
.yc7{bottom:50.985000px;}
.y7{bottom:56.340000px;}
.y55{bottom:56.520000px;}
.y4f{bottom:57.960000px;}
.y6{bottom:70.056000px;}
.ybd{bottom:73.074000px;}
.yba{bottom:73.080000px;}
.yc6{bottom:73.125000px;}
.yb9{bottom:95.400000px;}
.yc5{bottom:95.445000px;}
.y4e{bottom:110.910000px;}
.y133{bottom:112.536000px;}
.y134{bottom:114.156000px;}
.y84{bottom:115.596000px;}
.yc3{bottom:117.540000px;}
.y3c{bottom:123.696000px;}
.y4d{bottom:124.950000px;}
.yf5{bottom:125.496000px;}
.yb5{bottom:127.656000px;}
.ybc{bottom:129.276000px;}
.ye9{bottom:133.416000px;}
.y132{bottom:134.856000px;}
.yed{bottom:136.296000px;}
.y83{bottom:137.916000px;}
.y4c{bottom:138.990000px;}
.y3b{bottom:146.016000px;}
.yf3{bottom:148.536000px;}
.yb3{bottom:150.690000px;}
.y4b{bottom:153.210000px;}
.ye8{bottom:155.550000px;}
.y131{bottom:157.170000px;}
.yec{bottom:158.610000px;}
.y82{bottom:160.050000px;}
.y4a{bottom:167.250000px;}
.y3a{bottom:168.150000px;}
.ye7{bottom:177.870000px;}
.y130{bottom:179.310000px;}
.yeb{bottom:180.930000px;}
.y49{bottom:181.290000px;}
.y81{bottom:182.370000px;}
.y39{bottom:190.470000px;}
.y48{bottom:195.330000px;}
.yb1{bottom:195.870000px;}
.y102{bottom:200.010000px;}
.ye6{bottom:200.190000px;}
.y12f{bottom:201.630000px;}
.yea{bottom:203.070000px;}
.y80{bottom:204.510000px;}
.y47{bottom:209.370000px;}
.y38{bottom:212.610000px;}
.yb8{bottom:218.910000px;}
.ye5{bottom:222.330000px;}
.y46{bottom:223.410000px;}
.y12e{bottom:223.770000px;}
.yb0{bottom:225.390000px;}
.y7f{bottom:226.830000px;}
.y37{bottom:234.930000px;}
.y45{bottom:237.630000px;}
.ye4{bottom:244.650000px;}
.y12d{bottom:246.090000px;}
.yaf{bottom:247.530000px;}
.y7e{bottom:249.150000px;}
.y44{bottom:251.670000px;}
.y36{bottom:257.250000px;}
.y101{bottom:261.210000px;}
.y43{bottom:265.710000px;}
.ye3{bottom:266.790000px;}
.y12c{bottom:268.230000px;}
.yae{bottom:269.850000px;}
.y7d{bottom:271.290000px;}
.y35{bottom:279.390000px;}
.y42{bottom:279.750000px;}
.ye2{bottom:289.110000px;}
.y12b{bottom:290.550000px;}
.yad{bottom:292.170000px;}
.y7c{bottom:293.610000px;}
.y41{bottom:293.790000px;}
.y34{bottom:301.710000px;}
.y100{bottom:306.390000px;}
.y40{bottom:307.830000px;}
.ye1{bottom:311.430000px;}
.y12a{bottom:312.870000px;}
.yac{bottom:314.310000px;}
.y7b{bottom:315.750000px;}
.y3f{bottom:320.430000px;}
.y33{bottom:323.850000px;}
.yb6{bottom:330.870000px;}
.y3e{bottom:331.590000px;}
.ye0{bottom:333.570000px;}
.y129{bottom:335.010000px;}
.yab{bottom:336.675000px;}
.y7a{bottom:338.115000px;}
.y32{bottom:345.855000px;}
.yff{bottom:351.615000px;}
.ydf{bottom:355.935000px;}
.y128{bottom:357.375000px;}
.yaa{bottom:358.815000px;}
.y79{bottom:360.255000px;}
.y31{bottom:363.495000px;}
.yde{bottom:378.075000px;}
.y127{bottom:379.515000px;}
.y30{bottom:380.955000px;}
.ya9{bottom:381.135000px;}
.y78{bottom:382.575000px;}
.y2f{bottom:398.595000px;}
.ydd{bottom:400.395000px;}
.y126{bottom:401.835000px;}
.yfe{bottom:403.275000px;}
.ya8{bottom:403.455000px;}
.y77{bottom:404.895000px;}
.y2e{bottom:416.235000px;}
.ydc{bottom:422.535000px;}
.y125{bottom:424.155000px;}
.ya7{bottom:425.595000px;}
.y76{bottom:427.035000px;}
.y2d{bottom:433.695000px;}
.ydb{bottom:444.855000px;}
.y124{bottom:446.295000px;}
.ya6{bottom:447.915000px;}
.y75{bottom:449.355000px;}
.y2c{bottom:451.335000px;}
.yda{bottom:467.175000px;}
.y123{bottom:468.615000px;}
.y2b{bottom:468.975000px;}
.ya5{bottom:470.055000px;}
.y74{bottom:471.495000px;}
.y2a{bottom:486.615000px;}
.yd9{bottom:489.315000px;}
.y122{bottom:490.755000px;}
.ya4{bottom:492.375000px;}
.y73{bottom:493.815000px;}
.y29{bottom:504.075000px;}
.yd8{bottom:511.635000px;}
.y121{bottom:513.075000px;}
.ya3{bottom:514.515000px;}
.y72{bottom:516.135000px;}
.y28{bottom:521.715000px;}
.y3d{bottom:525.315000px;}
.yd7{bottom:533.775000px;}
.y120{bottom:535.395000px;}
.ya2{bottom:536.835000px;}
.y71{bottom:538.275000px;}
.y27{bottom:539.355000px;}
.yd6{bottom:556.095000px;}
.y26{bottom:556.815000px;}
.y11f{bottom:557.535000px;}
.yfd{bottom:558.975000px;}
.ya1{bottom:559.155000px;}
.y70{bottom:560.595000px;}
.y25{bottom:576.615000px;}
.yd5{bottom:578.415000px;}
.y11e{bottom:579.855000px;}
.ya0{bottom:581.295000px;}
.y6f{bottom:582.735000px;}
.y24{bottom:594.255000px;}
.yd4{bottom:600.555000px;}
.y11d{bottom:601.995000px;}
.y9f{bottom:603.645000px;}
.y6e{bottom:605.085000px;}
.y23{bottom:611.925000px;}
.yd3{bottom:622.905000px;}
.y11c{bottom:624.345000px;}
.y9e{bottom:625.785000px;}
.y6d{bottom:627.405000px;}
.y22{bottom:629.565000px;}
.y105{bottom:639.465000px;}
.yd2{bottom:645.045000px;}
.y11b{bottom:646.485000px;}
.y21{bottom:647.025000px;}
.y9d{bottom:648.105000px;}
.y6c{bottom:649.545000px;}
.y104{bottom:662.505000px;}
.y20{bottom:664.665000px;}
.yd1{bottom:667.365000px;}
.y11a{bottom:668.805000px;}
.yfc{bottom:670.245000px;}
.y9c{bottom:670.425000px;}
.y6b{bottom:671.865000px;}
.y1f{bottom:682.305000px;}
.y103{bottom:685.365000px;}
.yd0{bottom:689.505000px;}
.y119{bottom:691.125000px;}
.y9b{bottom:692.565000px;}
.y6a{bottom:694.005000px;}
.y1e{bottom:699.765000px;}
.ycf{bottom:711.825000px;}
.y118{bottom:713.265000px;}
.y9a{bottom:714.885000px;}
.y69{bottom:716.325000px;}
.y1d{bottom:717.405000px;}
.yce{bottom:734.145000px;}
.y1c{bottom:735.045000px;}
.y117{bottom:735.585000px;}
.y99{bottom:737.025000px;}
.y68{bottom:738.465000px;}
.y1b{bottom:752.505000px;}
.ycd{bottom:756.285000px;}
.y116{bottom:757.725000px;}
.y98{bottom:759.345000px;}
.y67{bottom:760.785000px;}
.y1a{bottom:770.145000px;}
.ycc{bottom:778.605000px;}
.y115{bottom:780.045000px;}
.y97{bottom:781.485000px;}
.y66{bottom:783.105000px;}
.y19{bottom:787.785000px;}
.ycb{bottom:800.745000px;}
.y114{bottom:802.365000px;}
.y96{bottom:803.805000px;}
.y65{bottom:805.245000px;}
.y18{bottom:805.425000px;}
.y17{bottom:822.885000px;}
.yca{bottom:823.065000px;}
.y113{bottom:824.505000px;}
.yfb{bottom:825.945000px;}
.y95{bottom:826.125000px;}
.y64{bottom:827.565000px;}
.y16{bottom:840.525000px;}
.yc9{bottom:845.385000px;}
.y112{bottom:846.825000px;}
.y94{bottom:848.265000px;}
.y63{bottom:849.705000px;}
.y15{bottom:858.165000px;}
.yc4{bottom:861.945000px;}
.yf2{bottom:867.525000px;}
.y111{bottom:868.965000px;}
.y93{bottom:870.630000px;}
.y62{bottom:872.070000px;}
.y14{bottom:875.670000px;}
.yf0{bottom:884.130000px;}
.y110{bottom:891.330000px;}
.y92{bottom:892.770000px;}
.y13{bottom:893.670000px;}
.y61{bottom:894.390000px;}
.y12{bottom:912.930000px;}
.y10f{bottom:913.470000px;}
.y91{bottom:915.090000px;}
.y60{bottom:916.530000px;}
.yef{bottom:929.490000px;}
.y11{bottom:932.010000px;}
.y10e{bottom:935.790000px;}
.yfa{bottom:937.230000px;}
.y90{bottom:937.410000px;}
.y5f{bottom:938.850000px;}
.yee{bottom:952.350000px;}
.y10{bottom:953.430000px;}
.y10d{bottom:958.110000px;}
.y8f{bottom:959.550000px;}
.y5e{bottom:960.990000px;}
.yf{bottom:967.470000px;}
.yc2{bottom:973.950000px;}
.y10c{bottom:980.250000px;}
.y8e{bottom:981.870000px;}
.y5d{bottom:983.310000px;}
.ye{bottom:986.730000px;}
.y10b{bottom:1002.570000px;}
.y8d{bottom:1004.010000px;}
.y5c{bottom:1005.450000px;}
.yd{bottom:1006.170000px;}
.y10a{bottom:1024.710000px;}
.yc{bottom:1025.430000px;}
.y8c{bottom:1026.330000px;}
.y5b{bottom:1027.770000px;}
.yb{bottom:1044.870000px;}
.y109{bottom:1047.030000px;}
.yf9{bottom:1048.470000px;}
.y8b{bottom:1048.650000px;}
.y5a{bottom:1050.090000px;}
.y108{bottom:1063.590000px;}
.ya{bottom:1064.850000px;}
.y8a{bottom:1070.790000px;}
.y59{bottom:1072.230000px;}
.y107{bottom:1086.630000px;}
.y9{bottom:1087.710000px;}
.yf8{bottom:1092.930000px;}
.y89{bottom:1093.110000px;}
.y58{bottom:1094.550000px;}
.yc1{bottom:1108.230000px;}
.y106{bottom:1109.670000px;}
.y8{bottom:1112.550000px;}
.y88{bottom:1115.250000px;}
.y57{bottom:1116.690000px;}
.yf6{bottom:1131.810000px;}
.y5{bottom:1135.050000px;}
.y87{bottom:1137.570000px;}
.y56{bottom:1139.040000px;}
.y4{bottom:1150.740000px;}
.y86{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y85{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y54{bottom:1197.540000px;}
.hd{height:20.117109px;}
.h1d{height:22.140000px;}
.h15{height:22.320000px;}
.h17{height:22.356000px;}
.h12{height:30.480469px;}
.h4{height:33.494766px;}
.h2{height:36.336094px;}
.h8{height:36.878203px;}
.h3{height:38.100586px;}
.he{height:40.843828px;}
.hf{height:41.974453px;}
.h16{height:44.460000px;}
.h1a{height:44.496000px;}
.h1e{height:44.640000px;}
.hc{height:45.720703px;}
.h11{height:46.986328px;}
.h14{height:49.992188px;}
.ha{height:50.597578px;}
.h9{height:51.998203px;}
.h7{height:56.084062px;}
.h5{height:57.636562px;}
.h13{height:58.490859px;}
.h10{height:62.648438px;}
.h6{height:65.837812px;}
.h19{height:88.920000px;}
.h18{height:111.240000px;}
.h1c{height:111.276000px;}
.h1b{height:133.380000px;}
.hb{height:344.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:83.880000px;}
.wa{width:126.360000px;}
.wb{width:180.030000px;}
.w3{width:221.970000px;}
.w7{width:236.730000px;}
.w8{width:307.290000px;}
.w9{width:328.755000px;}
.w6{width:346.575000px;}
.w4{width:668.805000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x12{left:19.260000px;}
.x18{left:20.520000px;}
.x17{left:27.000000px;}
.x16{left:66.780000px;}
.x1c{left:102.630000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x6{left:111.995987px;}
.xa{left:123.515987px;}
.x4{left:126.575987px;}
.x19{left:128.196000px;}
.x1a{left:130.854000px;}
.xf{left:134.994000px;}
.x1e{left:139.890000px;}
.x8{left:140.975987px;}
.x1f{left:143.130000px;}
.x22{left:146.010000px;}
.x20{left:148.710000px;}
.x14{left:150.525000px;}
.x21{left:151.770000px;}
.xe{left:162.029987px;}
.x13{left:193.530000px;}
.x5{left:203.249987px;}
.x1d{left:255.450000px;}
.x7{left:277.634987px;}
.xb{left:298.514987px;}
.xc{left:322.454987px;}
.xd{left:342.614987px;}
.x9{left:405.614987px;}
.x1b{left:436.215000px;}
.x3{left:446.654987px;}
.x15{left:540.825000px;}
.x10{left:579.344987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.698667pt;}
.ls11{letter-spacing:-0.549333pt;}
.ls1a{letter-spacing:-0.501867pt;}
.ls1e{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.363733pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.240533pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.153600pt;}
.lsc{letter-spacing:-0.084267pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.020480pt;}
.ls14{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.066667pt;}
.lsd{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.176533pt;}
.ls6{letter-spacing:0.243733pt;}
.ls20{letter-spacing:0.250027pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls1f{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.291733pt;}
.ls5{letter-spacing:0.309333pt;}
.ls13{letter-spacing:0.320000pt;}
.ls10{letter-spacing:2.406400pt;}
.ls17{letter-spacing:4.326400pt;}
.ls19{letter-spacing:6.246400pt;}
.ls12{letter-spacing:34.810027pt;}
.ls0{letter-spacing:179.046400pt;}
.wsd{word-spacing:-13.245333pt;}
.ws12{word-spacing:-13.225067pt;}
.ws10{word-spacing:-13.130133pt;}
.wse{word-spacing:-12.997120pt;}
.wsc{word-spacing:-12.974080pt;}
.wsf{word-spacing:-12.968960pt;}
.ws3{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.585067pt;}
.ws5{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.677333pt;}
.wsa{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.193067pt;}
.ws2{word-spacing:-8.166400pt;}
.wsb{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.657067pt;}
.ws7{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-178.886400pt;}
._4{margin-left:-32.643413pt;}
._1d{margin-left:-4.546773pt;}
._1a{margin-left:-2.927147pt;}
._19{margin-left:-1.929173pt;}
._2{margin-left:-1.040000pt;}
._1{width:1.386667pt;}
._1c{width:2.709120pt;}
._f{width:3.659733pt;}
._8{width:4.562773pt;}
._7{width:5.577600pt;}
._1f{width:6.692480pt;}
._12{width:8.440533pt;}
._13{width:9.667840pt;}
._1b{width:10.612907pt;}
._22{width:11.791360pt;}
._16{width:12.801920pt;}
._14{width:14.141013pt;}
._e{width:15.293013pt;}
._d{width:16.254720pt;}
._15{width:17.691733pt;}
._b{width:19.335680pt;}
._c{width:20.770560pt;}
._17{width:22.416640pt;}
._18{width:23.414827pt;}
._10{width:25.178880pt;}
._11{width:26.241280pt;}
._23{width:27.968000pt;}
._1e{width:28.910080pt;}
._33{width:29.844907pt;}
._25{width:31.029760pt;}
._a{width:32.397653pt;}
._6{width:34.103040pt;}
._9{width:35.696640pt;}
._34{width:36.873173pt;}
._26{width:38.919680pt;}
._27{width:39.841920pt;}
._35{width:41.215893pt;}
._20{width:42.199147pt;}
._30{width:46.763307pt;}
._2b{width:47.751680pt;}
._2f{width:59.351040pt;}
._0{width:66.666667pt;}
._28{width:76.661760pt;}
._2e{width:82.196480pt;}
._2c{width:87.731200pt;}
._2d{width:88.659413pt;}
._29{width:96.563200pt;}
._2a{width:124.001280pt;}
._32{width:125.061120pt;}
._31{width:126.356480pt;}
._3{width:160.960000pt;}
._24{width:179.025067pt;}
._36{width:216.145067pt;}
._21{width:938.673067pt;}
.fs7{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.120000pt;}
.yf4{bottom:5.594667pt;}
.yc0{bottom:5.600000pt;}
.yb2{bottom:5.760000pt;}
.yf7{bottom:5.786667pt;}
.yb7{bottom:5.800000pt;}
.y52{bottom:17.120000pt;}
.ybf{bottom:25.434667pt;}
.yb4{bottom:25.440000pt;}
.yc8{bottom:25.480000pt;}
.yf1{bottom:25.600000pt;}
.y51{bottom:26.560000pt;}
.y50{bottom:35.840000pt;}
.ybe{bottom:45.114667pt;}
.ybb{bottom:45.280000pt;}
.yc7{bottom:45.320000pt;}
.y7{bottom:50.080000pt;}
.y55{bottom:50.240000pt;}
.y4f{bottom:51.520000pt;}
.y6{bottom:62.272000pt;}
.ybd{bottom:64.954667pt;}
.yba{bottom:64.960000pt;}
.yc6{bottom:65.000000pt;}
.yb9{bottom:84.800000pt;}
.yc5{bottom:84.840000pt;}
.y4e{bottom:98.586667pt;}
.y133{bottom:100.032000pt;}
.y134{bottom:101.472000pt;}
.y84{bottom:102.752000pt;}
.yc3{bottom:104.480000pt;}
.y3c{bottom:109.952000pt;}
.y4d{bottom:111.066667pt;}
.yf5{bottom:111.552000pt;}
.yb5{bottom:113.472000pt;}
.ybc{bottom:114.912000pt;}
.ye9{bottom:118.592000pt;}
.y132{bottom:119.872000pt;}
.yed{bottom:121.152000pt;}
.y83{bottom:122.592000pt;}
.y4c{bottom:123.546667pt;}
.y3b{bottom:129.792000pt;}
.yf3{bottom:132.032000pt;}
.yb3{bottom:133.946667pt;}
.y4b{bottom:136.186667pt;}
.ye8{bottom:138.266667pt;}
.y131{bottom:139.706667pt;}
.yec{bottom:140.986667pt;}
.y82{bottom:142.266667pt;}
.y4a{bottom:148.666667pt;}
.y3a{bottom:149.466667pt;}
.ye7{bottom:158.106667pt;}
.y130{bottom:159.386667pt;}
.yeb{bottom:160.826667pt;}
.y49{bottom:161.146667pt;}
.y81{bottom:162.106667pt;}
.y39{bottom:169.306667pt;}
.y48{bottom:173.626667pt;}
.yb1{bottom:174.106667pt;}
.y102{bottom:177.786667pt;}
.ye6{bottom:177.946667pt;}
.y12f{bottom:179.226667pt;}
.yea{bottom:180.506667pt;}
.y80{bottom:181.786667pt;}
.y47{bottom:186.106667pt;}
.y38{bottom:188.986667pt;}
.yb8{bottom:194.586667pt;}
.ye5{bottom:197.626667pt;}
.y46{bottom:198.586667pt;}
.y12e{bottom:198.906667pt;}
.yb0{bottom:200.346667pt;}
.y7f{bottom:201.626667pt;}
.y37{bottom:208.826667pt;}
.y45{bottom:211.226667pt;}
.ye4{bottom:217.466667pt;}
.y12d{bottom:218.746667pt;}
.yaf{bottom:220.026667pt;}
.y7e{bottom:221.466667pt;}
.y44{bottom:223.706667pt;}
.y36{bottom:228.666667pt;}
.y101{bottom:232.186667pt;}
.y43{bottom:236.186667pt;}
.ye3{bottom:237.146667pt;}
.y12c{bottom:238.426667pt;}
.yae{bottom:239.866667pt;}
.y7d{bottom:241.146667pt;}
.y35{bottom:248.346667pt;}
.y42{bottom:248.666667pt;}
.ye2{bottom:256.986667pt;}
.y12b{bottom:258.266667pt;}
.yad{bottom:259.706667pt;}
.y7c{bottom:260.986667pt;}
.y41{bottom:261.146667pt;}
.y34{bottom:268.186667pt;}
.y100{bottom:272.346667pt;}
.y40{bottom:273.626667pt;}
.ye1{bottom:276.826667pt;}
.y12a{bottom:278.106667pt;}
.yac{bottom:279.386667pt;}
.y7b{bottom:280.666667pt;}
.y3f{bottom:284.826667pt;}
.y33{bottom:287.866667pt;}
.yb6{bottom:294.106667pt;}
.y3e{bottom:294.746667pt;}
.ye0{bottom:296.506667pt;}
.y129{bottom:297.786667pt;}
.yab{bottom:299.266667pt;}
.y7a{bottom:300.546667pt;}
.y32{bottom:307.426667pt;}
.yff{bottom:312.546667pt;}
.ydf{bottom:316.386667pt;}
.y128{bottom:317.666667pt;}
.yaa{bottom:318.946667pt;}
.y79{bottom:320.226667pt;}
.y31{bottom:323.106667pt;}
.yde{bottom:336.066667pt;}
.y127{bottom:337.346667pt;}
.y30{bottom:338.626667pt;}
.ya9{bottom:338.786667pt;}
.y78{bottom:340.066667pt;}
.y2f{bottom:354.306667pt;}
.ydd{bottom:355.906667pt;}
.y126{bottom:357.186667pt;}
.yfe{bottom:358.466667pt;}
.ya8{bottom:358.626667pt;}
.y77{bottom:359.906667pt;}
.y2e{bottom:369.986667pt;}
.ydc{bottom:375.586667pt;}
.y125{bottom:377.026667pt;}
.ya7{bottom:378.306667pt;}
.y76{bottom:379.586667pt;}
.y2d{bottom:385.506667pt;}
.ydb{bottom:395.426667pt;}
.y124{bottom:396.706667pt;}
.ya6{bottom:398.146667pt;}
.y75{bottom:399.426667pt;}
.y2c{bottom:401.186667pt;}
.yda{bottom:415.266667pt;}
.y123{bottom:416.546667pt;}
.y2b{bottom:416.866667pt;}
.ya5{bottom:417.826667pt;}
.y74{bottom:419.106667pt;}
.y2a{bottom:432.546667pt;}
.yd9{bottom:434.946667pt;}
.y122{bottom:436.226667pt;}
.ya4{bottom:437.666667pt;}
.y73{bottom:438.946667pt;}
.y29{bottom:448.066667pt;}
.yd8{bottom:454.786667pt;}
.y121{bottom:456.066667pt;}
.ya3{bottom:457.346667pt;}
.y72{bottom:458.786667pt;}
.y28{bottom:463.746667pt;}
.y3d{bottom:466.946667pt;}
.yd7{bottom:474.466667pt;}
.y120{bottom:475.906667pt;}
.ya2{bottom:477.186667pt;}
.y71{bottom:478.466667pt;}
.y27{bottom:479.426667pt;}
.yd6{bottom:494.306667pt;}
.y26{bottom:494.946667pt;}
.y11f{bottom:495.586667pt;}
.yfd{bottom:496.866667pt;}
.ya1{bottom:497.026667pt;}
.y70{bottom:498.306667pt;}
.y25{bottom:512.546667pt;}
.yd5{bottom:514.146667pt;}
.y11e{bottom:515.426667pt;}
.ya0{bottom:516.706667pt;}
.y6f{bottom:517.986667pt;}
.y24{bottom:528.226667pt;}
.yd4{bottom:533.826667pt;}
.y11d{bottom:535.106667pt;}
.y9f{bottom:536.573333pt;}
.y6e{bottom:537.853333pt;}
.y23{bottom:543.933333pt;}
.yd3{bottom:553.693333pt;}
.y11c{bottom:554.973333pt;}
.y9e{bottom:556.253333pt;}
.y6d{bottom:557.693333pt;}
.y22{bottom:559.613333pt;}
.y105{bottom:568.413333pt;}
.yd2{bottom:573.373333pt;}
.y11b{bottom:574.653333pt;}
.y21{bottom:575.133333pt;}
.y9d{bottom:576.093333pt;}
.y6c{bottom:577.373333pt;}
.y104{bottom:588.893333pt;}
.y20{bottom:590.813333pt;}
.yd1{bottom:593.213333pt;}
.y11a{bottom:594.493333pt;}
.yfc{bottom:595.773333pt;}
.y9c{bottom:595.933333pt;}
.y6b{bottom:597.213333pt;}
.y1f{bottom:606.493333pt;}
.y103{bottom:609.213333pt;}
.yd0{bottom:612.893333pt;}
.y119{bottom:614.333333pt;}
.y9b{bottom:615.613333pt;}
.y6a{bottom:616.893333pt;}
.y1e{bottom:622.013333pt;}
.ycf{bottom:632.733333pt;}
.y118{bottom:634.013333pt;}
.y9a{bottom:635.453333pt;}
.y69{bottom:636.733333pt;}
.y1d{bottom:637.693333pt;}
.yce{bottom:652.573333pt;}
.y1c{bottom:653.373333pt;}
.y117{bottom:653.853333pt;}
.y99{bottom:655.133333pt;}
.y68{bottom:656.413333pt;}
.y1b{bottom:668.893333pt;}
.ycd{bottom:672.253333pt;}
.y116{bottom:673.533333pt;}
.y98{bottom:674.973333pt;}
.y67{bottom:676.253333pt;}
.y1a{bottom:684.573333pt;}
.ycc{bottom:692.093333pt;}
.y115{bottom:693.373333pt;}
.y97{bottom:694.653333pt;}
.y66{bottom:696.093333pt;}
.y19{bottom:700.253333pt;}
.ycb{bottom:711.773333pt;}
.y114{bottom:713.213333pt;}
.y96{bottom:714.493333pt;}
.y65{bottom:715.773333pt;}
.y18{bottom:715.933333pt;}
.y17{bottom:731.453333pt;}
.yca{bottom:731.613333pt;}
.y113{bottom:732.893333pt;}
.yfb{bottom:734.173333pt;}
.y95{bottom:734.333333pt;}
.y64{bottom:735.613333pt;}
.y16{bottom:747.133333pt;}
.yc9{bottom:751.453333pt;}
.y112{bottom:752.733333pt;}
.y94{bottom:754.013333pt;}
.y63{bottom:755.293333pt;}
.y15{bottom:762.813333pt;}
.yc4{bottom:766.173333pt;}
.yf2{bottom:771.133333pt;}
.y111{bottom:772.413333pt;}
.y93{bottom:773.893333pt;}
.y62{bottom:775.173333pt;}
.y14{bottom:778.373333pt;}
.yf0{bottom:785.893333pt;}
.y110{bottom:792.293333pt;}
.y92{bottom:793.573333pt;}
.y13{bottom:794.373333pt;}
.y61{bottom:795.013333pt;}
.y12{bottom:811.493333pt;}
.y10f{bottom:811.973333pt;}
.y91{bottom:813.413333pt;}
.y60{bottom:814.693333pt;}
.yef{bottom:826.213333pt;}
.y11{bottom:828.453333pt;}
.y10e{bottom:831.813333pt;}
.yfa{bottom:833.093333pt;}
.y90{bottom:833.253333pt;}
.y5f{bottom:834.533333pt;}
.yee{bottom:846.533333pt;}
.y10{bottom:847.493333pt;}
.y10d{bottom:851.653333pt;}
.y8f{bottom:852.933333pt;}
.y5e{bottom:854.213333pt;}
.yf{bottom:859.973333pt;}
.yc2{bottom:865.733333pt;}
.y10c{bottom:871.333333pt;}
.y8e{bottom:872.773333pt;}
.y5d{bottom:874.053333pt;}
.ye{bottom:877.093333pt;}
.y10b{bottom:891.173333pt;}
.y8d{bottom:892.453333pt;}
.y5c{bottom:893.733333pt;}
.yd{bottom:894.373333pt;}
.y10a{bottom:910.853333pt;}
.yc{bottom:911.493333pt;}
.y8c{bottom:912.293333pt;}
.y5b{bottom:913.573333pt;}
.yb{bottom:928.773333pt;}
.y109{bottom:930.693333pt;}
.yf9{bottom:931.973333pt;}
.y8b{bottom:932.133333pt;}
.y5a{bottom:933.413333pt;}
.y108{bottom:945.413333pt;}
.ya{bottom:946.533333pt;}
.y8a{bottom:951.813333pt;}
.y59{bottom:953.093333pt;}
.y107{bottom:965.893333pt;}
.y9{bottom:966.853333pt;}
.yf8{bottom:971.493333pt;}
.y89{bottom:971.653333pt;}
.y58{bottom:972.933333pt;}
.yc1{bottom:985.093333pt;}
.y106{bottom:986.373333pt;}
.y8{bottom:988.933333pt;}
.y88{bottom:991.333333pt;}
.y57{bottom:992.613333pt;}
.yf6{bottom:1006.053333pt;}
.y5{bottom:1008.933333pt;}
.y87{bottom:1011.173333pt;}
.y56{bottom:1012.480000pt;}
.y4{bottom:1022.880000pt;}
.y86{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y85{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y54{bottom:1064.480000pt;}
.hd{height:17.881875pt;}
.h1d{height:19.680000pt;}
.h15{height:19.840000pt;}
.h17{height:19.872000pt;}
.h12{height:27.093750pt;}
.h4{height:29.773125pt;}
.h2{height:32.298750pt;}
.h8{height:32.780625pt;}
.h3{height:33.867188pt;}
.he{height:36.305625pt;}
.hf{height:37.310625pt;}
.h16{height:39.520000pt;}
.h1a{height:39.552000pt;}
.h1e{height:39.680000pt;}
.hc{height:40.640625pt;}
.h11{height:41.765625pt;}
.h14{height:44.437500pt;}
.ha{height:44.975625pt;}
.h9{height:46.220625pt;}
.h7{height:49.852500pt;}
.h5{height:51.232500pt;}
.h13{height:51.991875pt;}
.h10{height:55.687500pt;}
.h6{height:58.522500pt;}
.h19{height:79.040000pt;}
.h18{height:98.880000pt;}
.h1c{height:98.912000pt;}
.h1b{height:118.560000pt;}
.hb{height:306.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:74.560000pt;}
.wa{width:112.320000pt;}
.wb{width:160.026667pt;}
.w3{width:197.306667pt;}
.w7{width:210.426667pt;}
.w8{width:273.146667pt;}
.w9{width:292.226667pt;}
.w6{width:308.066667pt;}
.w4{width:594.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x12{left:17.120000pt;}
.x18{left:18.240000pt;}
.x17{left:24.000000pt;}
.x16{left:59.360000pt;}
.x1c{left:91.226667pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x6{left:99.551988pt;}
.xa{left:109.791988pt;}
.x4{left:112.511988pt;}
.x19{left:113.952000pt;}
.x1a{left:116.314667pt;}
.xf{left:119.994667pt;}
.x1e{left:124.346667pt;}
.x8{left:125.311988pt;}
.x1f{left:127.226667pt;}
.x22{left:129.786667pt;}
.x20{left:132.186667pt;}
.x14{left:133.800000pt;}
.x21{left:134.906667pt;}
.xe{left:144.026655pt;}
.x13{left:172.026667pt;}
.x5{left:180.666655pt;}
.x1d{left:227.066667pt;}
.x7{left:246.786655pt;}
.xb{left:265.346655pt;}
.xc{left:286.626655pt;}
.xd{left:304.546655pt;}
.x9{left:360.546655pt;}
.x1b{left:387.746667pt;}
.x3{left:397.026655pt;}
.x15{left:480.733333pt;}
.x10{left:514.973322pt;}
}




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