
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_00abe153a9589e378cc5bb58.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f1ad9c6930011bd3aeefac8f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_e10be99b788e4a558dd58149.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_e962c5f5fd0d564e08ec50a5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_0b4ab89ed01f263462d962d9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.089844;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_ea7052015703bc20f51c2105.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_6d5c6e80687deff198ef337c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.178800px;}
.ls11{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.124200px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.067200px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls19{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.159200px;}
.ws10{word-spacing:-13.102200px;}
.wsf{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.ws11{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._10{margin-left:-4.200961px;}
._5{margin-left:-3.126000px;}
._8{margin-left:-2.120160px;}
._0{margin-left:-1.110000px;}
._2{width:1.183753px;}
._7{width:2.575892px;}
._e{width:4.027800px;}
._6{width:5.170200px;}
._11{width:6.372960px;}
._3{width:7.395938px;}
._1{width:9.275208px;}
._4{width:10.830453px;}
._9{width:12.075146px;}
._18{width:14.245559px;}
._f{width:15.270600px;}
._19{width:16.893720px;}
._17{width:18.172200px;}
._14{width:19.238400px;}
._15{width:20.288280px;}
._16{width:22.036200px;}
._d{width:23.842007px;}
._c{width:24.949800px;}
._1d{width:26.224033px;}
._1e{width:27.590300px;}
._12{width:29.037960px;}
._13{width:30.663527px;}
._1c{width:31.696873px;}
._1a{width:33.787440px;}
._1b{width:35.220647px;}
._1f{width:37.995840px;}
._31{width:39.358200px;}
._2f{width:40.641120px;}
._30{width:41.843520px;}
._20{width:51.032160px;}
._b{width:54.973320px;}
._a{width:56.847360px;}
._21{width:58.041960px;}
._24{width:59.860200px;}
._23{width:64.929600px;}
._2d{width:77.013720px;}
._2e{width:78.697080px;}
._26{width:83.506680px;}
._29{width:85.009680px;}
._22{width:111.041640px;}
._27{width:119.518560px;}
._28{width:120.520920px;}
._2c{width:128.175840px;}
._2a{width:129.738960px;}
._2b{width:130.941360px;}
._25{width:160.400160px;}
._32{width:191.089200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:78.120000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y57{bottom:7.830000px;}
.y5c{bottom:7.860000px;}
.y59{bottom:7.920000px;}
.y182{bottom:25.380000px;}
.y180{bottom:25.410000px;}
.y17e{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y13f{bottom:112.170000px;}
.yff{bottom:112.530000px;}
.ydb{bottom:125.940000px;}
.y13e{bottom:129.720000px;}
.yfe{bottom:130.170000px;}
.y27{bottom:131.250000px;}
.y126{bottom:134.130000px;}
.y84{bottom:142.950000px;}
.yda{bottom:143.580000px;}
.y13d{bottom:147.270000px;}
.yfd{bottom:147.720000px;}
.y26{bottom:148.800000px;}
.y125{bottom:151.680000px;}
.yae{bottom:156.180000px;}
.y174{bottom:156.270000px;}
.y83{bottom:160.590000px;}
.yd9{bottom:161.130000px;}
.y1a5{bottom:164.190000px;}
.y13c{bottom:164.910000px;}
.yfc{bottom:165.270000px;}
.y25{bottom:166.350000px;}
.y124{bottom:169.320000px;}
.yad{bottom:173.730000px;}
.y173{bottom:173.910000px;}
.y82{bottom:178.140000px;}
.y14d{bottom:178.680000px;}
.y1a4{bottom:181.830000px;}
.y55{bottom:182.100000px;}
.yfb{bottom:182.910000px;}
.y24{bottom:183.990000px;}
.y123{bottom:186.870000px;}
.yac{bottom:191.280000px;}
.y172{bottom:191.460000px;}
.y81{bottom:195.780000px;}
.y14c{bottom:196.320000px;}
.yd8{bottom:196.680000px;}
.y1a3{bottom:199.380000px;}
.y13b{bottom:200.460000px;}
.y23{bottom:201.540000px;}
.y17c{bottom:204.870000px;}
.yab{bottom:208.920000px;}
.y171{bottom:209.100000px;}
.y80{bottom:213.330000px;}
.y122{bottom:213.510000px;}
.y14b{bottom:213.870000px;}
.yd7{bottom:214.320000px;}
.y54{bottom:217.650000px;}
.y13a{bottom:218.100000px;}
.yfa{bottom:218.460000px;}
.y22{bottom:219.090000px;}
.y1a2{bottom:225.930000px;}
.yaa{bottom:226.470000px;}
.y170{bottom:226.650000px;}
.y7f{bottom:230.880000px;}
.y14a{bottom:231.510000px;}
.yd6{bottom:231.870000px;}
.y139{bottom:235.650000px;}
.yf9{bottom:236.100000px;}
.y21{bottom:236.730000px;}
.y17b{bottom:240.510000px;}
.y1a1{bottom:243.570000px;}
.ya9{bottom:244.110000px;}
.y16f{bottom:244.200000px;}
.y121{bottom:249.060000px;}
.yd5{bottom:249.510000px;}
.y53{bottom:253.200000px;}
.yf8{bottom:253.650000px;}
.y7e{bottom:257.520000px;}
.y20{bottom:263.280000px;}
.y120{bottom:266.610000px;}
.yd4{bottom:267.060000px;}
.y1a0{bottom:270.120000px;}
.ya8{bottom:270.660000px;}
.y52{bottom:270.840000px;}
.yf7{bottom:271.200000px;}
.y17a{bottom:276.060000px;}
.y11f{bottom:284.250000px;}
.yd3{bottom:284.610000px;}
.y19f{bottom:287.760000px;}
.y51{bottom:288.390000px;}
.yf6{bottom:288.840000px;}
.y7d{bottom:293.070000px;}
.y179{bottom:293.610000px;}
.y1f{bottom:298.920000px;}
.y11e{bottom:301.800000px;}
.yd2{bottom:302.250000px;}
.ya7{bottom:303.600000px;}
.y19e{bottom:305.310000px;}
.y50{bottom:305.940000px;}
.yf5{bottom:306.390000px;}
.y7c{bottom:310.620000px;}
.y178{bottom:311.250000px;}
.y138{bottom:314.940000px;}
.y1e{bottom:316.470000px;}
.y11d{bottom:319.440000px;}
.y149{bottom:319.800000px;}
.y4f{bottom:323.580000px;}
.y16e{bottom:323.940000px;}
.y7b{bottom:328.260000px;}
.yd1{bottom:328.800000px;}
.ya6{bottom:330.960000px;}
.y19d{bottom:331.860000px;}
.yf4{bottom:332.940000px;}
.y1d{bottom:334.020000px;}
.y11c{bottom:336.990000px;}
.y148{bottom:337.440000px;}
.y4e{bottom:341.130000px;}
.y16d{bottom:341.580000px;}
.y7a{bottom:345.810000px;}
.y177{bottom:346.440000px;}
.y19c{bottom:349.500000px;}
.y137{bottom:350.580000px;}
.y1c{bottom:351.660000px;}
.y11b{bottom:354.540000px;}
.y147{bottom:354.990000px;}
.ya5{bottom:358.320000px;}
.y4d{bottom:358.770000px;}
.y16c{bottom:359.130000px;}
.y79{bottom:363.450000px;}
.y176{bottom:363.990000px;}
.yd0{bottom:364.440000px;}
.y19b{bottom:367.050000px;}
.y136{bottom:368.130000px;}
.yf3{bottom:368.580000px;}
.y1b{bottom:369.210000px;}
.y146{bottom:372.540000px;}
.y4c{bottom:376.320000px;}
.y16b{bottom:376.770000px;}
.ycf{bottom:381.990000px;}
.ya4{bottom:385.590000px;}
.y135{bottom:385.770000px;}
.yf2{bottom:386.130000px;}
.y1a{bottom:386.850000px;}
.y11a{bottom:390.180000px;}
.y19a{bottom:393.690000px;}
.y16a{bottom:394.320000px;}
.y78{bottom:399.000000px;}
.yce{bottom:399.540000px;}
.y4b{bottom:402.870000px;}
.y134{bottom:403.320000px;}
.yf1{bottom:403.770000px;}
.y119{bottom:407.730000px;}
.y199{bottom:411.240000px;}
.ya3{bottom:412.950000px;}
.y19{bottom:413.400000px;}
.y77{bottom:416.550000px;}
.ycd{bottom:417.180000px;}
.y133{bottom:420.870000px;}
.yf0{bottom:421.320000px;}
.y118{bottom:425.370000px;}
.y198{bottom:428.790000px;}
.y169{bottom:429.870000px;}
.y76{bottom:434.190000px;}
.y145{bottom:434.370000px;}
.ycc{bottom:434.730000px;}
.y4a{bottom:438.510000px;}
.yef{bottom:438.870000px;}
.ya2{bottom:440.310000px;}
.y117{bottom:442.920000px;}
.y168{bottom:447.510000px;}
.y18{bottom:449.310000px;}
.y75{bottom:451.740000px;}
.ycb{bottom:452.370000px;}
.y197{bottom:455.430000px;}
.y49{bottom:456.060000px;}
.yee{bottom:456.510000px;}
.y116{bottom:460.470000px;}
.y167{bottom:465.060000px;}
.ya1{bottom:467.670000px;}
.y74{bottom:469.380000px;}
.yca{bottom:469.950000px;}
.y196{bottom:473.010000px;}
.y48{bottom:473.730000px;}
.yed{bottom:474.090000px;}
.y115{bottom:478.140000px;}
.y166{bottom:482.730000px;}
.y73{bottom:486.960000px;}
.yc9{bottom:487.500000px;}
.y195{bottom:490.650000px;}
.y47{bottom:491.280000px;}
.yec{bottom:491.730000px;}
.ya0{bottom:494.970000px;}
.y17{bottom:497.580000px;}
.y165{bottom:500.280000px;}
.y114{bottom:504.690000px;}
.y144{bottom:505.140000px;}
.y46{bottom:508.830000px;}
.y132{bottom:509.280000px;}
.y72{bottom:513.510000px;}
.y16{bottom:515.490000px;}
.y194{bottom:517.470000px;}
.y164{bottom:517.830000px;}
.y9f{bottom:522.330000px;}
.y143{bottom:522.690000px;}
.yc8{bottom:523.140000px;}
.y45{bottom:526.470000px;}
.y131{bottom:526.830000px;}
.yeb{bottom:527.280000px;}
.y113{bottom:540.330000px;}
.yc7{bottom:540.690000px;}
.y44{bottom:544.020000px;}
.y130{bottom:544.470000px;}
.yea{bottom:544.830000px;}
.y71{bottom:549.150000px;}
.y15{bottom:552.570000px;}
.y112{bottom:557.880000px;}
.yc6{bottom:558.330000px;}
.y12f{bottom:562.020000px;}
.ye9{bottom:562.470000px;}
.y193{bottom:565.800000px;}
.y70{bottom:566.700000px;}
.y14{bottom:570.120000px;}
.y43{bottom:570.660000px;}
.y9e{bottom:571.020000px;}
.y111{bottom:575.430000px;}
.yc5{bottom:575.880000px;}
.y12e{bottom:579.660000px;}
.ye8{bottom:580.020000px;}
.y192{bottom:583.350000px;}
.y6f{bottom:584.340000px;}
.y13{bottom:587.670000px;}
.y110{bottom:593.070000px;}
.yc4{bottom:593.430000px;}
.ye7{bottom:597.660000px;}
.y191{bottom:600.990000px;}
.y6e{bottom:601.890000px;}
.y12{bottom:605.310000px;}
.y12d{bottom:606.210000px;}
.y42{bottom:606.570000px;}
.y9d{bottom:606.660000px;}
.y10f{bottom:610.620000px;}
.yc3{bottom:611.070000px;}
.ye6{bottom:615.210000px;}
.y190{bottom:618.540000px;}
.y6d{bottom:619.440000px;}
.y11{bottom:622.860000px;}
.y9c{bottom:624.210000px;}
.y10e{bottom:628.260000px;}
.yc2{bottom:628.620000px;}
.ye5{bottom:632.760000px;}
.y18f{bottom:636.090000px;}
.y6c{bottom:637.080000px;}
.y10{bottom:640.500000px;}
.y9b{bottom:641.760000px;}
.y10d{bottom:645.810000px;}
.y142{bottom:646.260000px;}
.y163{bottom:650.400000px;}
.y18e{bottom:653.730000px;}
.y41{bottom:654.810000px;}
.yc1{bottom:655.260000px;}
.yf{bottom:658.050000px;}
.y9a{bottom:659.400000px;}
.y141{bottom:663.810000px;}
.y162{bottom:667.950000px;}
.y18d{bottom:671.280000px;}
.y40{bottom:672.360000px;}
.y6b{bottom:672.630000px;}
.y175{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y99{bottom:676.950000px;}
.y10c{bottom:681.360000px;}
.y18c{bottom:688.920000px;}
.y3f{bottom:690.000000px;}
.y6a{bottom:690.270000px;}
.yc0{bottom:690.810000px;}
.yd{bottom:693.240000px;}
.y98{bottom:694.590000px;}
.ye4{bottom:695.310000px;}
.y10b{bottom:699.000000px;}
.y161{bottom:703.590000px;}
.y18b{bottom:706.470000px;}
.y3e{bottom:707.550000px;}
.y69{bottom:707.820000px;}
.ybf{bottom:708.360000px;}
.yc{bottom:710.790000px;}
.y97{bottom:712.140000px;}
.y10a{bottom:716.550000px;}
.y160{bottom:721.140000px;}
.y18a{bottom:724.020000px;}
.y3d{bottom:725.190000px;}
.y68{bottom:725.370000px;}
.ybe{bottom:726.000000px;}
.yb{bottom:728.430000px;}
.y12c{bottom:729.690000px;}
.y109{bottom:734.190000px;}
.y15f{bottom:738.690000px;}
.y189{bottom:741.660000px;}
.y3c{bottom:742.740000px;}
.y67{bottom:743.010000px;}
.ybd{bottom:743.550000px;}
.y12b{bottom:747.330000px;}
.y96{bottom:747.690000px;}
.y108{bottom:751.740000px;}
.y1aa{bottom:752.190000px;}
.ya{bottom:755.340000px;}
.y15e{bottom:756.330000px;}
.y188{bottom:759.210000px;}
.y3b{bottom:760.290000px;}
.y66{bottom:760.560000px;}
.y140{bottom:760.740000px;}
.ybc{bottom:761.190000px;}
.y95{bottom:765.330000px;}
.y107{bottom:769.290000px;}
.y1a9{bottom:769.740000px;}
.y15d{bottom:773.880000px;}
.y187{bottom:776.850000px;}
.y65{bottom:778.200000px;}
.ybb{bottom:778.740000px;}
.y94{bottom:782.880000px;}
.y3a{bottom:786.930000px;}
.y1a8{bottom:787.290000px;}
.y15c{bottom:791.520000px;}
.y186{bottom:794.400000px;}
.y64{bottom:795.750000px;}
.y106{bottom:795.930000px;}
.yba{bottom:796.290000px;}
.y93{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y63{bottom:813.300000px;}
.yb9{bottom:813.930000px;}
.y92{bottom:818.070000px;}
.y185{bottom:821.310000px;}
.y39{bottom:822.480000px;}
.ye3{bottom:831.480000px;}
.y91{bottom:835.620000px;}
.y8{bottom:839.130000px;}
.y62{bottom:839.940000px;}
.y38{bottom:840.030000px;}
.ye2{bottom:849.030000px;}
.yb8{bottom:849.480000px;}
.y90{bottom:853.260000px;}
.y15b{bottom:853.620000px;}
.y37{bottom:857.670000px;}
.y1a7{bottom:858.030000px;}
.ye1{bottom:866.670000px;}
.y184{bottom:866.940000px;}
.yb7{bottom:867.030000px;}
.y12a{bottom:870.810000px;}
.y15a{bottom:871.260000px;}
.y61{bottom:872.880000px;}
.y7{bottom:874.950000px;}
.y1a6{bottom:875.670000px;}
.y8f{bottom:879.810000px;}
.ye0{bottom:884.220000px;}
.yb6{bottom:884.670000px;}
.y159{bottom:888.810000px;}
.y36{bottom:893.220000px;}
.y129{bottom:897.450000px;}
.y60{bottom:900.240000px;}
.y105{bottom:901.860000px;}
.yb5{bottom:902.220000px;}
.y158{bottom:906.450000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y183{bottom:911.850000px;}
.y8e{bottom:915.720000px;}
.y104{bottom:919.410000px;}
.yb4{bottom:919.860000px;}
.y157{bottom:924.000000px;}
.y5f{bottom:927.600000px;}
.y34{bottom:928.410000px;}
.y128{bottom:933.270000px;}
.y103{bottom:936.960000px;}
.yb3{bottom:937.410000px;}
.y156{bottom:941.550000px;}
.y33{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y5e{bottom:954.870000px;}
.yb2{bottom:954.960000px;}
.y181{bottom:956.850000px;}
.y32{bottom:963.600000px;}
.y8d{bottom:963.960000px;}
.ydf{bottom:972.600000px;}
.y155{bottom:977.190000px;}
.y31{bottom:981.150000px;}
.y8c{bottom:981.600000px;}
.y5d{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.yde{bottom:990.150000px;}
.y154{bottom:994.740000px;}
.y8b{bottom:999.150000px;}
.y17f{bottom:1001.760000px;}
.y30{bottom:1007.790000px;}
.y5b{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y153{bottom:1012.320000px;}
.y8a{bottom:1016.820000px;}
.yb1{bottom:1017.180000px;}
.ydd{bottom:1025.370000px;}
.y152{bottom:1029.960000px;}
.y89{bottom:1034.370000px;}
.yb0{bottom:1034.820000px;}
.y5a{bottom:1036.890000px;}
.y102{bottom:1042.920000px;}
.y2f{bottom:1043.370000px;}
.y17d{bottom:1046.700000px;}
.y151{bottom:1047.510000px;}
.ydc{bottom:1051.920000px;}
.yaf{bottom:1052.370000px;}
.y101{bottom:1060.560000px;}
.y2e{bottom:1060.920000px;}
.y58{bottom:1064.250000px;}
.y150{bottom:1065.150000px;}
.y127{bottom:1069.560000px;}
.y88{bottom:1069.920000px;}
.y2d{bottom:1078.560000px;}
.y100{bottom:1087.110000px;}
.y87{bottom:1087.560000px;}
.y56{bottom:1091.610000px;}
.y14f{bottom:1091.700000px;}
.y2c{bottom:1096.110000px;}
.y86{bottom:1105.110000px;}
.y2b{bottom:1113.750000px;}
.y85{bottom:1122.750000px;}
.y14e{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.221191px;}
.h12{height:44.100000px;}
.h11{height:44.130000px;}
.h10{height:44.190000px;}
.h6{height:50.667539px;}
.hc{height:50.902383px;}
.h7{height:52.399512px;}
.h8{height:55.779258px;}
.h5{height:57.419824px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:73.108301px;}
.hf{height:81.324141px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:123.150000px;}
.w6{width:170.190000px;}
.w3{width:176.610000px;}
.w4{width:200.100000px;}
.w9{width:203.220000px;}
.wa{width:210.090000px;}
.wb{width:216.990000px;}
.w5{width:229.230000px;}
.w7{width:297.570000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:111.239987px;}
.x4{left:142.920000px;}
.xa{left:192.630000px;}
.x2{left:202.799987px;}
.x8{left:212.340000px;}
.x6{left:320.250000px;}
.x9{left:383.340000px;}
.xb{left:396.660000px;}
.x7{left:521.070000px;}
.xc{left:607.470000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.110400pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.059733pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls19{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.697067pt;}
.ws10{word-spacing:-11.646400pt;}
.wsf{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws11{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._10{margin-left:-3.734188pt;}
._5{margin-left:-2.778666pt;}
._8{margin-left:-1.884587pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.052225pt;}
._7{width:2.289682pt;}
._e{width:3.580266pt;}
._6{width:4.595733pt;}
._11{width:5.664854pt;}
._3{width:6.574167pt;}
._1{width:8.244629pt;}
._4{width:9.627070pt;}
._9{width:10.733463pt;}
._18{width:12.662719pt;}
._f{width:13.573867pt;}
._19{width:15.016640pt;}
._17{width:16.153067pt;}
._14{width:17.100800pt;}
._15{width:18.034027pt;}
._16{width:19.587733pt;}
._d{width:21.192895pt;}
._c{width:22.177600pt;}
._1d{width:23.310252pt;}
._1e{width:24.524711pt;}
._12{width:25.811520pt;}
._13{width:27.256468pt;}
._1c{width:28.174999pt;}
._1a{width:30.033280pt;}
._1b{width:31.307241pt;}
._1f{width:33.774080pt;}
._31{width:34.985067pt;}
._2f{width:36.125440pt;}
._30{width:37.194240pt;}
._20{width:45.361920pt;}
._b{width:48.865173pt;}
._a{width:50.530987pt;}
._21{width:51.592853pt;}
._24{width:53.209067pt;}
._23{width:57.715200pt;}
._2d{width:68.456640pt;}
._2e{width:69.952960pt;}
._26{width:74.228160pt;}
._29{width:75.564160pt;}
._22{width:98.703680pt;}
._27{width:106.238720pt;}
._28{width:107.129707pt;}
._2c{width:113.934080pt;}
._2a{width:115.323520pt;}
._2b{width:116.392320pt;}
._25{width:142.577920pt;}
._32{width:169.857067pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:69.440000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:6.960000pt;}
.y5c{bottom:6.986667pt;}
.y59{bottom:7.040000pt;}
.y182{bottom:22.560000pt;}
.y180{bottom:22.586667pt;}
.y17e{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y13f{bottom:99.706667pt;}
.yff{bottom:100.026667pt;}
.ydb{bottom:111.946667pt;}
.y13e{bottom:115.306667pt;}
.yfe{bottom:115.706667pt;}
.y27{bottom:116.666667pt;}
.y126{bottom:119.226667pt;}
.y84{bottom:127.066667pt;}
.yda{bottom:127.626667pt;}
.y13d{bottom:130.906667pt;}
.yfd{bottom:131.306667pt;}
.y26{bottom:132.266667pt;}
.y125{bottom:134.826667pt;}
.yae{bottom:138.826667pt;}
.y174{bottom:138.906667pt;}
.y83{bottom:142.746667pt;}
.yd9{bottom:143.226667pt;}
.y1a5{bottom:145.946667pt;}
.y13c{bottom:146.586667pt;}
.yfc{bottom:146.906667pt;}
.y25{bottom:147.866667pt;}
.y124{bottom:150.506667pt;}
.yad{bottom:154.426667pt;}
.y173{bottom:154.586667pt;}
.y82{bottom:158.346667pt;}
.y14d{bottom:158.826667pt;}
.y1a4{bottom:161.626667pt;}
.y55{bottom:161.866667pt;}
.yfb{bottom:162.586667pt;}
.y24{bottom:163.546667pt;}
.y123{bottom:166.106667pt;}
.yac{bottom:170.026667pt;}
.y172{bottom:170.186667pt;}
.y81{bottom:174.026667pt;}
.y14c{bottom:174.506667pt;}
.yd8{bottom:174.826667pt;}
.y1a3{bottom:177.226667pt;}
.y13b{bottom:178.186667pt;}
.y23{bottom:179.146667pt;}
.y17c{bottom:182.106667pt;}
.yab{bottom:185.706667pt;}
.y171{bottom:185.866667pt;}
.y80{bottom:189.626667pt;}
.y122{bottom:189.786667pt;}
.y14b{bottom:190.106667pt;}
.yd7{bottom:190.506667pt;}
.y54{bottom:193.466667pt;}
.y13a{bottom:193.866667pt;}
.yfa{bottom:194.186667pt;}
.y22{bottom:194.746667pt;}
.y1a2{bottom:200.826667pt;}
.yaa{bottom:201.306667pt;}
.y170{bottom:201.466667pt;}
.y7f{bottom:205.226667pt;}
.y14a{bottom:205.786667pt;}
.yd6{bottom:206.106667pt;}
.y139{bottom:209.466667pt;}
.yf9{bottom:209.866667pt;}
.y21{bottom:210.426667pt;}
.y17b{bottom:213.786667pt;}
.y1a1{bottom:216.506667pt;}
.ya9{bottom:216.986667pt;}
.y16f{bottom:217.066667pt;}
.y121{bottom:221.386667pt;}
.yd5{bottom:221.786667pt;}
.y53{bottom:225.066667pt;}
.yf8{bottom:225.466667pt;}
.y7e{bottom:228.906667pt;}
.y20{bottom:234.026667pt;}
.y120{bottom:236.986667pt;}
.yd4{bottom:237.386667pt;}
.y1a0{bottom:240.106667pt;}
.ya8{bottom:240.586667pt;}
.y52{bottom:240.746667pt;}
.yf7{bottom:241.066667pt;}
.y17a{bottom:245.386667pt;}
.y11f{bottom:252.666667pt;}
.yd3{bottom:252.986667pt;}
.y19f{bottom:255.786667pt;}
.y51{bottom:256.346667pt;}
.yf6{bottom:256.746667pt;}
.y7d{bottom:260.506667pt;}
.y179{bottom:260.986667pt;}
.y1f{bottom:265.706667pt;}
.y11e{bottom:268.266667pt;}
.yd2{bottom:268.666667pt;}
.ya7{bottom:269.866667pt;}
.y19e{bottom:271.386667pt;}
.y50{bottom:271.946667pt;}
.yf5{bottom:272.346667pt;}
.y7c{bottom:276.106667pt;}
.y178{bottom:276.666667pt;}
.y138{bottom:279.946667pt;}
.y1e{bottom:281.306667pt;}
.y11d{bottom:283.946667pt;}
.y149{bottom:284.266667pt;}
.y4f{bottom:287.626667pt;}
.y16e{bottom:287.946667pt;}
.y7b{bottom:291.786667pt;}
.yd1{bottom:292.266667pt;}
.ya6{bottom:294.186667pt;}
.y19d{bottom:294.986667pt;}
.yf4{bottom:295.946667pt;}
.y1d{bottom:296.906667pt;}
.y11c{bottom:299.546667pt;}
.y148{bottom:299.946667pt;}
.y4e{bottom:303.226667pt;}
.y16d{bottom:303.626667pt;}
.y7a{bottom:307.386667pt;}
.y177{bottom:307.946667pt;}
.y19c{bottom:310.666667pt;}
.y137{bottom:311.626667pt;}
.y1c{bottom:312.586667pt;}
.y11b{bottom:315.146667pt;}
.y147{bottom:315.546667pt;}
.ya5{bottom:318.506667pt;}
.y4d{bottom:318.906667pt;}
.y16c{bottom:319.226667pt;}
.y79{bottom:323.066667pt;}
.y176{bottom:323.546667pt;}
.yd0{bottom:323.946667pt;}
.y19b{bottom:326.266667pt;}
.y136{bottom:327.226667pt;}
.yf3{bottom:327.626667pt;}
.y1b{bottom:328.186667pt;}
.y146{bottom:331.146667pt;}
.y4c{bottom:334.506667pt;}
.y16b{bottom:334.906667pt;}
.ycf{bottom:339.546667pt;}
.ya4{bottom:342.746667pt;}
.y135{bottom:342.906667pt;}
.yf2{bottom:343.226667pt;}
.y1a{bottom:343.866667pt;}
.y11a{bottom:346.826667pt;}
.y19a{bottom:349.946667pt;}
.y16a{bottom:350.506667pt;}
.y78{bottom:354.666667pt;}
.yce{bottom:355.146667pt;}
.y4b{bottom:358.106667pt;}
.y134{bottom:358.506667pt;}
.yf1{bottom:358.906667pt;}
.y119{bottom:362.426667pt;}
.y199{bottom:365.546667pt;}
.ya3{bottom:367.066667pt;}
.y19{bottom:367.466667pt;}
.y77{bottom:370.266667pt;}
.ycd{bottom:370.826667pt;}
.y133{bottom:374.106667pt;}
.yf0{bottom:374.506667pt;}
.y118{bottom:378.106667pt;}
.y198{bottom:381.146667pt;}
.y169{bottom:382.106667pt;}
.y76{bottom:385.946667pt;}
.y145{bottom:386.106667pt;}
.ycc{bottom:386.426667pt;}
.y4a{bottom:389.786667pt;}
.yef{bottom:390.106667pt;}
.ya2{bottom:391.386667pt;}
.y117{bottom:393.706667pt;}
.y168{bottom:397.786667pt;}
.y18{bottom:399.386667pt;}
.y75{bottom:401.546667pt;}
.ycb{bottom:402.106667pt;}
.y197{bottom:404.826667pt;}
.y49{bottom:405.386667pt;}
.yee{bottom:405.786667pt;}
.y116{bottom:409.306667pt;}
.y167{bottom:413.386667pt;}
.ya1{bottom:415.706667pt;}
.y74{bottom:417.226667pt;}
.yca{bottom:417.733333pt;}
.y196{bottom:420.453333pt;}
.y48{bottom:421.093333pt;}
.yed{bottom:421.413333pt;}
.y115{bottom:425.013333pt;}
.y166{bottom:429.093333pt;}
.y73{bottom:432.853333pt;}
.yc9{bottom:433.333333pt;}
.y195{bottom:436.133333pt;}
.y47{bottom:436.693333pt;}
.yec{bottom:437.093333pt;}
.ya0{bottom:439.973333pt;}
.y17{bottom:442.293333pt;}
.y165{bottom:444.693333pt;}
.y114{bottom:448.613333pt;}
.y144{bottom:449.013333pt;}
.y46{bottom:452.293333pt;}
.y132{bottom:452.693333pt;}
.y72{bottom:456.453333pt;}
.y16{bottom:458.213333pt;}
.y194{bottom:459.973333pt;}
.y164{bottom:460.293333pt;}
.y9f{bottom:464.293333pt;}
.y143{bottom:464.613333pt;}
.yc8{bottom:465.013333pt;}
.y45{bottom:467.973333pt;}
.y131{bottom:468.293333pt;}
.yeb{bottom:468.693333pt;}
.y113{bottom:480.293333pt;}
.yc7{bottom:480.613333pt;}
.y44{bottom:483.573333pt;}
.y130{bottom:483.973333pt;}
.yea{bottom:484.293333pt;}
.y71{bottom:488.133333pt;}
.y15{bottom:491.173333pt;}
.y112{bottom:495.893333pt;}
.yc6{bottom:496.293333pt;}
.y12f{bottom:499.573333pt;}
.ye9{bottom:499.973333pt;}
.y193{bottom:502.933333pt;}
.y70{bottom:503.733333pt;}
.y14{bottom:506.773333pt;}
.y43{bottom:507.253333pt;}
.y9e{bottom:507.573333pt;}
.y111{bottom:511.493333pt;}
.yc5{bottom:511.893333pt;}
.y12e{bottom:515.253333pt;}
.ye8{bottom:515.573333pt;}
.y192{bottom:518.533333pt;}
.y6f{bottom:519.413333pt;}
.y13{bottom:522.373333pt;}
.y110{bottom:527.173333pt;}
.yc4{bottom:527.493333pt;}
.ye7{bottom:531.253333pt;}
.y191{bottom:534.213333pt;}
.y6e{bottom:535.013333pt;}
.y12{bottom:538.053333pt;}
.y12d{bottom:538.853333pt;}
.y42{bottom:539.173333pt;}
.y9d{bottom:539.253333pt;}
.y10f{bottom:542.773333pt;}
.yc3{bottom:543.173333pt;}
.ye6{bottom:546.853333pt;}
.y190{bottom:549.813333pt;}
.y6d{bottom:550.613333pt;}
.y11{bottom:553.653333pt;}
.y9c{bottom:554.853333pt;}
.y10e{bottom:558.453333pt;}
.yc2{bottom:558.773333pt;}
.ye5{bottom:562.453333pt;}
.y18f{bottom:565.413333pt;}
.y6c{bottom:566.293333pt;}
.y10{bottom:569.333333pt;}
.y9b{bottom:570.453333pt;}
.y10d{bottom:574.053333pt;}
.y142{bottom:574.453333pt;}
.y163{bottom:578.133333pt;}
.y18e{bottom:581.093333pt;}
.y41{bottom:582.053333pt;}
.yc1{bottom:582.453333pt;}
.yf{bottom:584.933333pt;}
.y9a{bottom:586.133333pt;}
.y141{bottom:590.053333pt;}
.y162{bottom:593.733333pt;}
.y18d{bottom:596.693333pt;}
.y40{bottom:597.653333pt;}
.y6b{bottom:597.893333pt;}
.y175{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y99{bottom:601.733333pt;}
.y10c{bottom:605.653333pt;}
.y18c{bottom:612.373333pt;}
.y3f{bottom:613.333333pt;}
.y6a{bottom:613.573333pt;}
.yc0{bottom:614.053333pt;}
.yd{bottom:616.213333pt;}
.y98{bottom:617.413333pt;}
.ye4{bottom:618.053333pt;}
.y10b{bottom:621.333333pt;}
.y161{bottom:625.413333pt;}
.y18b{bottom:627.973333pt;}
.y3e{bottom:628.933333pt;}
.y69{bottom:629.173333pt;}
.ybf{bottom:629.653333pt;}
.yc{bottom:631.813333pt;}
.y97{bottom:633.013333pt;}
.y10a{bottom:636.933333pt;}
.y160{bottom:641.013333pt;}
.y18a{bottom:643.573333pt;}
.y3d{bottom:644.613333pt;}
.y68{bottom:644.773333pt;}
.ybe{bottom:645.333333pt;}
.yb{bottom:647.493333pt;}
.y12c{bottom:648.613333pt;}
.y109{bottom:652.613333pt;}
.y15f{bottom:656.613333pt;}
.y189{bottom:659.253333pt;}
.y3c{bottom:660.213333pt;}
.y67{bottom:660.453333pt;}
.ybd{bottom:660.933333pt;}
.y12b{bottom:664.293333pt;}
.y96{bottom:664.613333pt;}
.y108{bottom:668.213333pt;}
.y1aa{bottom:668.613333pt;}
.ya{bottom:671.413333pt;}
.y15e{bottom:672.293333pt;}
.y188{bottom:674.853333pt;}
.y3b{bottom:675.813333pt;}
.y66{bottom:676.053333pt;}
.y140{bottom:676.213333pt;}
.ybc{bottom:676.613333pt;}
.y95{bottom:680.293333pt;}
.y107{bottom:683.813333pt;}
.y1a9{bottom:684.213333pt;}
.y15d{bottom:687.893333pt;}
.y187{bottom:690.533333pt;}
.y65{bottom:691.733333pt;}
.ybb{bottom:692.213333pt;}
.y94{bottom:695.893333pt;}
.y3a{bottom:699.493333pt;}
.y1a8{bottom:699.813333pt;}
.y15c{bottom:703.573333pt;}
.y186{bottom:706.133333pt;}
.y64{bottom:707.333333pt;}
.y106{bottom:707.493333pt;}
.yba{bottom:707.813333pt;}
.y93{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y63{bottom:722.933333pt;}
.yb9{bottom:723.493333pt;}
.y92{bottom:727.173333pt;}
.y185{bottom:730.053333pt;}
.y39{bottom:731.093333pt;}
.ye3{bottom:739.093333pt;}
.y91{bottom:742.773333pt;}
.y8{bottom:745.893333pt;}
.y62{bottom:746.613333pt;}
.y38{bottom:746.693333pt;}
.ye2{bottom:754.693333pt;}
.yb8{bottom:755.093333pt;}
.y90{bottom:758.453333pt;}
.y15b{bottom:758.773333pt;}
.y37{bottom:762.373333pt;}
.y1a7{bottom:762.693333pt;}
.ye1{bottom:770.373333pt;}
.y184{bottom:770.613333pt;}
.yb7{bottom:770.693333pt;}
.y12a{bottom:774.053333pt;}
.y15a{bottom:774.453333pt;}
.y61{bottom:775.893333pt;}
.y7{bottom:777.733333pt;}
.y1a6{bottom:778.373333pt;}
.y8f{bottom:782.053333pt;}
.ye0{bottom:785.973333pt;}
.yb6{bottom:786.373333pt;}
.y159{bottom:790.053333pt;}
.y36{bottom:793.973333pt;}
.y129{bottom:797.733333pt;}
.y60{bottom:800.213333pt;}
.y105{bottom:801.653333pt;}
.yb5{bottom:801.973333pt;}
.y158{bottom:805.733333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y183{bottom:810.533333pt;}
.y8e{bottom:813.973333pt;}
.y104{bottom:817.253333pt;}
.yb4{bottom:817.653333pt;}
.y157{bottom:821.333333pt;}
.y5f{bottom:824.533333pt;}
.y34{bottom:825.253333pt;}
.y128{bottom:829.573333pt;}
.y103{bottom:832.853333pt;}
.yb3{bottom:833.253333pt;}
.y156{bottom:836.933333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y5e{bottom:848.773333pt;}
.yb2{bottom:848.853333pt;}
.y181{bottom:850.533333pt;}
.y32{bottom:856.533333pt;}
.y8d{bottom:856.853333pt;}
.ydf{bottom:864.533333pt;}
.y155{bottom:868.613333pt;}
.y31{bottom:872.133333pt;}
.y8c{bottom:872.533333pt;}
.y5d{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.yde{bottom:880.133333pt;}
.y154{bottom:884.213333pt;}
.y8b{bottom:888.133333pt;}
.y17f{bottom:890.453333pt;}
.y30{bottom:895.813333pt;}
.y5b{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y153{bottom:899.840000pt;}
.y8a{bottom:903.840000pt;}
.yb1{bottom:904.160000pt;}
.ydd{bottom:911.440000pt;}
.y152{bottom:915.520000pt;}
.y89{bottom:919.440000pt;}
.yb0{bottom:919.840000pt;}
.y5a{bottom:921.680000pt;}
.y102{bottom:927.040000pt;}
.y2f{bottom:927.440000pt;}
.y17d{bottom:930.400000pt;}
.y151{bottom:931.120000pt;}
.ydc{bottom:935.040000pt;}
.yaf{bottom:935.440000pt;}
.y101{bottom:942.720000pt;}
.y2e{bottom:943.040000pt;}
.y58{bottom:946.000000pt;}
.y150{bottom:946.800000pt;}
.y127{bottom:950.720000pt;}
.y88{bottom:951.040000pt;}
.y2d{bottom:958.720000pt;}
.y100{bottom:966.320000pt;}
.y87{bottom:966.720000pt;}
.y56{bottom:970.320000pt;}
.y14f{bottom:970.400000pt;}
.y2c{bottom:974.320000pt;}
.y86{bottom:982.320000pt;}
.y2b{bottom:990.000000pt;}
.y85{bottom:998.000000pt;}
.y14e{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.863281pt;}
.h12{height:39.200000pt;}
.h11{height:39.226667pt;}
.h10{height:39.280000pt;}
.h6{height:45.037812pt;}
.hc{height:45.246562pt;}
.h7{height:46.577344pt;}
.h8{height:49.581562pt;}
.h5{height:51.039844pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.985156pt;}
.hf{height:72.288125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:109.466667pt;}
.w6{width:151.280000pt;}
.w3{width:156.986667pt;}
.w4{width:177.866667pt;}
.w9{width:180.640000pt;}
.wa{width:186.746667pt;}
.wb{width:192.880000pt;}
.w5{width:203.760000pt;}
.w7{width:264.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:98.879988pt;}
.x4{left:127.040000pt;}
.xa{left:171.226667pt;}
.x2{left:180.266655pt;}
.x8{left:188.746667pt;}
.x6{left:284.666667pt;}
.x9{left:340.746667pt;}
.xb{left:352.586667pt;}
.x7{left:463.173333pt;}
.xc{left:539.973333pt;}
.x3{left:704.053322pt;}
}




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