
    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_3bbbbce416d0df6342ea23d4.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_08b699db84cb55c0908c2791.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_040e82e10025ac5997e18184.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d394259f9c18b6bb9e9fb22.woff')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_ac26690d543cb94db56c86f3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b54a41b691d17dfce7053f8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e55fc6f557df83ef93dd8a59.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;}
.ls17{letter-spacing:-0.367800px;}
.ls1e{letter-spacing:-0.216600px;}
.ls13{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.114000px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.015000px;}
.ls16{letter-spacing:-0.014760px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.115800px;}
.ls3{letter-spacing:0.117600px;}
.ls6{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls5{letter-spacing:2.520000px;}
.ls14{letter-spacing:26.280000px;}
.ls1d{letter-spacing:47.726640px;}
.ls1b{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;}
}
.ws2{word-spacing:-18.571200px;}
.ws6{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.379600px;}
.wsb{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.342200px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws4{word-spacing:-13.211400px;}
.ws10{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.039800px;}
.ws13{word-spacing:-13.009800px;}
.wsf{word-spacing:-12.858600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._6{margin-left:-3.787800px;}
._7{margin-left:-2.584198px;}
._0{margin-left:-1.110000px;}
._1{width:1.143768px;}
._b{width:2.243112px;}
._c{width:3.727200px;}
._a{width:5.641080px;}
._8{width:6.821400px;}
._4{width:7.935600px;}
._5{width:9.046802px;}
._9{width:10.523396px;}
._10{width:11.901605px;}
._d{width:14.849400px;}
._e{width:15.873003px;}
._f{width:16.883366px;}
._12{width:18.125859px;}
._18{width:19.161982px;}
._14{width:20.366280px;}
._3{width:21.763200px;}
._17{width:22.850040px;}
._15{width:23.863200px;}
._13{width:25.070040px;}
._11{width:26.212320px;}
._16{width:27.234360px;}
._2{width:33.667200px;}
._19{width:34.929720px;}
._1a{width:46.292400px;}
._20{width:51.342480px;}
._21{width:53.506800px;}
._2a{width:60.540840px;}
._29{width:62.224200px;}
._27{width:73.923840px;}
._25{width:75.233880px;}
._1e{width:79.596480px;}
._24{width:85.129920px;}
._23{width:86.512680px;}
._26{width:91.262160px;}
._22{width:101.903400px;}
._1b{width:106.171920px;}
._1f{width:109.959480px;}
._1d{width:143.265960px;}
._1c{width:188.175600px;}
._2b{width:331.982640px;}
._28{width:341.902440px;}
.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:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:7.830000px;}
.ye4{bottom:7.860000px;}
.ydd{bottom:7.920000px;}
.y115{bottom:25.380000px;}
.y10a{bottom:25.470000px;}
.y111{bottom:25.500000px;}
.y10d{bottom:43.020000px;}
.y110{bottom:43.050000px;}
.y113{bottom:43.110000px;}
.y10c{bottom:60.570000px;}
.y10f{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y86{bottom:112.800000px;}
.y104{bottom:115.500000px;}
.yb5{bottom:121.170000px;}
.yf3{bottom:122.430000px;}
.yd0{bottom:124.950000px;}
.y28{bottom:129.630000px;}
.y103{bottom:133.050000px;}
.yb4{bottom:138.720000px;}
.yf2{bottom:140.070000px;}
.ycf{bottom:142.500000px;}
.y11c{bottom:147.180000px;}
.y27{bottom:147.270000px;}
.y85{bottom:148.350000px;}
.y102{bottom:150.690000px;}
.yf1{bottom:157.620000px;}
.yce{bottom:160.050000px;}
.y26{bottom:164.820000px;}
.yb3{bottom:165.270000px;}
.y101{bottom:168.240000px;}
.y132{bottom:170.310000px;}
.y58{bottom:173.910000px;}
.yf0{bottom:175.260000px;}
.ycd{bottom:177.690000px;}
.y11b{bottom:182.370000px;}
.y84{bottom:183.990000px;}
.y131{bottom:187.860000px;}
.y100{bottom:194.880000px;}
.y11a{bottom:200.010000px;}
.y25{bottom:200.370000px;}
.yb2{bottom:200.910000px;}
.y83{bottom:201.540000px;}
.yef{bottom:201.810000px;}
.ycc{bottom:204.240000px;}
.y130{bottom:205.500000px;}
.y57{bottom:209.460000px;}
.y119{bottom:217.560000px;}
.y24{bottom:218.010000px;}
.yb1{bottom:218.460000px;}
.y82{bottom:219.090000px;}
.y12f{bottom:223.050000px;}
.y56{bottom:227.100000px;}
.yff{bottom:230.790000px;}
.y118{bottom:235.110000px;}
.y23{bottom:235.560000px;}
.yb0{bottom:236.100000px;}
.y81{bottom:236.730000px;}
.yee{bottom:237.360000px;}
.ycb{bottom:239.880000px;}
.y12e{bottom:240.600000px;}
.y55{bottom:244.650000px;}
.y117{bottom:252.750000px;}
.y22{bottom:253.200000px;}
.yaf{bottom:253.650000px;}
.y80{bottom:254.280000px;}
.yed{bottom:255.000000px;}
.yca{bottom:257.430000px;}
.y12d{bottom:258.240000px;}
.y54{bottom:262.200000px;}
.y116{bottom:270.300000px;}
.y21{bottom:270.750000px;}
.yae{bottom:271.200000px;}
.y7f{bottom:271.830000px;}
.yec{bottom:272.550000px;}
.yc9{bottom:274.980000px;}
.y12c{bottom:275.790000px;}
.yfe{bottom:279.030000px;}
.y53{bottom:279.840000px;}
.y20{bottom:288.300000px;}
.yad{bottom:288.840000px;}
.y7e{bottom:289.470000px;}
.yeb{bottom:290.190000px;}
.yc8{bottom:292.620000px;}
.y12b{bottom:293.430000px;}
.yfd{bottom:296.580000px;}
.y52{bottom:297.390000px;}
.y114{bottom:303.330000px;}
.yac{bottom:306.390000px;}
.y7d{bottom:307.020000px;}
.yea{bottom:307.740000px;}
.yc7{bottom:310.170000px;}
.y12a{bottom:310.980000px;}
.yfc{bottom:314.220000px;}
.y51{bottom:314.940000px;}
.y1f{bottom:323.940000px;}
.ye9{bottom:325.290000px;}
.yc6{bottom:327.810000px;}
.y129{bottom:328.530000px;}
.yfb{bottom:331.770000px;}
.y50{bottom:332.580000px;}
.y7c{bottom:333.660000px;}
.y1e{bottom:341.490000px;}
.ye8{bottom:342.930000px;}
.yc5{bottom:345.360000px;}
.y128{bottom:346.170000px;}
.yfa{bottom:349.410000px;}
.y4f{bottom:350.130000px;}
.yab{bottom:350.580000px;}
.y1d{bottom:359.130000px;}
.ye7{bottom:360.480000px;}
.yc4{bottom:362.910000px;}
.y127{bottom:363.720000px;}
.yf9{bottom:366.960000px;}
.y7b{bottom:369.570000px;}
.y1c{bottom:376.680000px;}
.y4e{bottom:376.770000px;}
.y126{bottom:381.360000px;}
.y112{bottom:383.340000px;}
.yf8{bottom:384.510000px;}
.yaa{bottom:386.130000px;}
.ye6{bottom:387.120000px;}
.yc3{bottom:389.550000px;}
.y1b{bottom:394.230000px;}
.yf7{bottom:402.150000px;}
.ya9{bottom:403.770000px;}
.y125{bottom:408.180000px;}
.y1a{bottom:411.870000px;}
.y4d{bottom:412.320000px;}
.y7a{bottom:417.810000px;}
.ya8{bottom:421.320000px;}
.ye5{bottom:423.030000px;}
.yc2{bottom:425.460000px;}
.y4c{bottom:429.870000px;}
.y79{bottom:435.360000px;}
.yf6{bottom:437.700000px;}
.y19{bottom:438.780000px;}
.ya7{bottom:438.870000px;}
.y10e{bottom:445.890000px;}
.y4b{bottom:447.510000px;}
.y78{bottom:453.000000px;}
.ya6{bottom:456.510000px;}
.y4a{bottom:465.060000px;}
.ye3{bottom:468.660000px;}
.yf5{bottom:469.950000px;}
.y77{bottom:470.580000px;}
.yc1{bottom:473.730000px;}
.ya5{bottom:474.090000px;}
.y49{bottom:482.730000px;}
.y18{bottom:487.050000px;}
.y76{bottom:488.220000px;}
.ya4{bottom:491.730000px;}
.ye2{bottom:496.050000px;}
.y48{bottom:500.280000px;}
.y17{bottom:504.960000px;}
.y75{bottom:505.770000px;}
.yc0{bottom:505.950000px;}
.ya3{bottom:509.280000px;}
.y47{bottom:517.830000px;}
.y142{bottom:518.280000px;}
.y74{bottom:523.320000px;}
.y10b{bottom:526.020000px;}
.ya2{bottom:526.830000px;}
.y141{bottom:535.830000px;}
.y73{bottom:540.960000px;}
.y16{bottom:541.950000px;}
.y46{bottom:544.470000px;}
.ye1{bottom:550.680000px;}
.ya1{bottom:553.470000px;}
.y15{bottom:559.590000px;}
.y124{bottom:562.020000px;}
.y72{bottom:567.510000px;}
.y14{bottom:577.140000px;}
.ydf{bottom:578.040000px;}
.y45{bottom:580.020000px;}
.y123{bottom:588.660000px;}
.ya0{bottom:589.380000px;}
.y13{bottom:594.780000px;}
.y44{bottom:597.660000px;}
.y71{bottom:603.150000px;}
.yde{bottom:605.310000px;}
.y109{bottom:606.120000px;}
.y12{bottom:612.330000px;}
.y43{bottom:615.210000px;}
.y70{bottom:620.700000px;}
.y122{bottom:624.210000px;}
.y11{bottom:629.880000px;}
.ydc{bottom:632.670000px;}
.y42{bottom:632.760000px;}
.y9f{bottom:637.620000px;}
.y6f{bottom:638.250000px;}
.y121{bottom:641.760000px;}
.y10{bottom:647.520000px;}
.y41{bottom:650.400000px;}
.y9e{bottom:655.260000px;}
.y6e{bottom:655.890000px;}
.y120{bottom:659.400000px;}
.yf{bottom:665.070000px;}
.y40{bottom:667.950000px;}
.y108{bottom:672.360000px;}
.y9d{bottom:672.810000px;}
.y6d{bottom:673.440000px;}
.y11f{bottom:676.950000px;}
.ydb{bottom:681.360000px;}
.ye{bottom:682.710000px;}
.y3f{bottom:685.590000px;}
.y140{bottom:685.950000px;}
.y9c{bottom:690.360000px;}
.y6c{bottom:691.080000px;}
.y11e{bottom:694.590000px;}
.y107{bottom:699.000000px;}
.yd{bottom:700.260000px;}
.y3e{bottom:703.140000px;}
.y13f{bottom:703.590000px;}
.y9b{bottom:708.000000px;}
.y6b{bottom:708.630000px;}
.y11d{bottom:712.140000px;}
.yda{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y13e{bottom:721.140000px;}
.y9a{bottom:725.550000px;}
.y6a{bottom:726.810000px;}
.y3d{bottom:729.690000px;}
.yd9{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y99{bottom:743.190000px;}
.y13d{bottom:747.690000px;}
.yd8{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.y69{bottom:756.330000px;}
.y98{bottom:760.740000px;}
.y3c{bottom:765.330000px;}
.yd7{bottom:769.740000px;}
.y9{bottom:779.910000px;}
.y3b{bottom:782.880000px;}
.y97{bottom:787.290000px;}
.y68{bottom:791.880000px;}
.y3a{bottom:800.520000px;}
.yd6{bottom:804.930000px;}
.y67{bottom:809.520000px;}
.y39{bottom:818.070000px;}
.yd5{bottom:822.480000px;}
.y96{bottom:822.930000px;}
.y66{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.y38{bottom:835.620000px;}
.yd4{bottom:840.030000px;}
.y95{bottom:840.480000px;}
.y65{bottom:844.620000px;}
.yf4{bottom:849.030000px;}
.y37{bottom:853.260000px;}
.y106{bottom:857.670000px;}
.y94{bottom:858.030000px;}
.y64{bottom:862.260000px;}
.y7{bottom:863.790000px;}
.yd3{bottom:866.670000px;}
.ybf{bottom:867.030000px;}
.y36{bottom:870.810000px;}
.y13c{bottom:871.260000px;}
.y93{bottom:875.670000px;}
.y63{bottom:879.810000px;}
.y105{bottom:884.220000px;}
.ybe{bottom:884.670000px;}
.y13b{bottom:888.810000px;}
.y92{bottom:893.220000px;}
.y35{bottom:897.450000px;}
.y6{bottom:899.610000px;}
.ybd{bottom:902.220000px;}
.y13a{bottom:906.450000px;}
.y91{bottom:910.860000px;}
.ybc{bottom:919.860000px;}
.y62{bottom:924.000000px;}
.y90{bottom:928.410000px;}
.y139{bottom:933.000000px;}
.y34{bottom:933.270000px;}
.y5{bottom:935.610000px;}
.ybb{bottom:937.410000px;}
.y8f{bottom:945.960000px;}
.y138{bottom:950.550000px;}
.yba{bottom:954.960000px;}
.y61{bottom:959.550000px;}
.y4{bottom:971.700000px;}
.y8e{bottom:972.600000px;}
.y60{bottom:977.190000px;}
.y33{bottom:981.600000px;}
.yb9{bottom:990.150000px;}
.y5f{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.yd2{bottom:1007.790000px;}
.y8d{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y5e{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y137{bottom:1021.320000px;}
.yd1{bottom:1025.370000px;}
.y8c{bottom:1025.820000px;}
.y5d{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.y136{bottom:1038.960000px;}
.y8b{bottom:1043.370000px;}
.y5c{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.yb8{bottom:1052.370000px;}
.y8a{bottom:1060.920000px;}
.y5b{bottom:1065.150000px;}
.y135{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.yb7{bottom:1069.920000px;}
.y89{bottom:1078.560000px;}
.y134{bottom:1083.150000px;}
.yb6{bottom:1087.560000px;}
.y5a{bottom:1091.700000px;}
.y88{bottom:1096.110000px;}
.y133{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y87{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y59{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.h11{height:61.793886px;}
.h10{height:61.830000px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:79.290000px;}
.hf{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:125.850000px;}
.w9{width:139.500000px;}
.w7{width:233.640000px;}
.w5{width:238.590000px;}
.w4{width:240.960000px;}
.w3{width:253.290000px;}
.w8{width:254.550000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:79.470000px;}
.xf{left:111.239987px;}
.x5{left:124.379987px;}
.xb{left:163.469987px;}
.xc{left:195.330000px;}
.x2{left:202.799987px;}
.x8{left:333.480000px;}
.xd{left:429.690000px;}
.x9{left:575.160000px;}
.xe{left:684.960000px;}
.xa{left:703.139987px;}
.x4{left:743.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.326933pt;}
.ls1e{letter-spacing:-0.192533pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.101333pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.013333pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.102933pt;}
.ls3{letter-spacing:0.104533pt;}
.ls6{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls5{letter-spacing:2.240000pt;}
.ls14{letter-spacing:23.360000pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.507733pt;}
.ws6{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.781867pt;}
.wsb{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.859733pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws4{word-spacing:-11.743467pt;}
.ws10{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.564267pt;}
.wsf{word-spacing:-11.429867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._6{margin-left:-3.366934pt;}
._7{margin-left:-2.297065pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.016682pt;}
._b{width:1.993878pt;}
._c{width:3.313066pt;}
._a{width:5.014293pt;}
._8{width:6.063467pt;}
._4{width:7.053866pt;}
._5{width:8.041602pt;}
._9{width:9.354130pt;}
._10{width:10.579204pt;}
._d{width:13.199466pt;}
._e{width:14.109336pt;}
._f{width:15.007437pt;}
._12{width:16.111875pt;}
._18{width:17.032873pt;}
._14{width:18.103360pt;}
._3{width:19.345066pt;}
._17{width:20.311147pt;}
._15{width:21.211733pt;}
._13{width:22.284480pt;}
._11{width:23.299840pt;}
._16{width:24.208320pt;}
._2{width:29.926400pt;}
._19{width:31.048640pt;}
._1a{width:41.148800pt;}
._20{width:45.637760pt;}
._21{width:47.561600pt;}
._2a{width:53.814080pt;}
._29{width:55.310400pt;}
._27{width:65.710080pt;}
._25{width:66.874560pt;}
._1e{width:70.752427pt;}
._24{width:75.671040pt;}
._23{width:76.900160pt;}
._26{width:81.121920pt;}
._22{width:90.580800pt;}
._1b{width:94.375040pt;}
._1f{width:97.741760pt;}
._1d{width:127.347520pt;}
._1c{width:167.267200pt;}
._2b{width:295.095680pt;}
._28{width:303.913280pt;}
.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:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:6.960000pt;}
.ye4{bottom:6.986667pt;}
.ydd{bottom:7.040000pt;}
.y115{bottom:22.560000pt;}
.y10a{bottom:22.640000pt;}
.y111{bottom:22.666667pt;}
.y10d{bottom:38.240000pt;}
.y110{bottom:38.266667pt;}
.y113{bottom:38.320000pt;}
.y10c{bottom:53.840000pt;}
.y10f{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y86{bottom:100.266667pt;}
.y104{bottom:102.666667pt;}
.yb5{bottom:107.706667pt;}
.yf3{bottom:108.826667pt;}
.yd0{bottom:111.066667pt;}
.y28{bottom:115.226667pt;}
.y103{bottom:118.266667pt;}
.yb4{bottom:123.306667pt;}
.yf2{bottom:124.506667pt;}
.ycf{bottom:126.666667pt;}
.y11c{bottom:130.826667pt;}
.y27{bottom:130.906667pt;}
.y85{bottom:131.866667pt;}
.y102{bottom:133.946667pt;}
.yf1{bottom:140.106667pt;}
.yce{bottom:142.266667pt;}
.y26{bottom:146.506667pt;}
.yb3{bottom:146.906667pt;}
.y101{bottom:149.546667pt;}
.y132{bottom:151.386667pt;}
.y58{bottom:154.586667pt;}
.yf0{bottom:155.786667pt;}
.ycd{bottom:157.946667pt;}
.y11b{bottom:162.106667pt;}
.y84{bottom:163.546667pt;}
.y131{bottom:166.986667pt;}
.y100{bottom:173.226667pt;}
.y11a{bottom:177.786667pt;}
.y25{bottom:178.106667pt;}
.yb2{bottom:178.586667pt;}
.y83{bottom:179.146667pt;}
.yef{bottom:179.386667pt;}
.ycc{bottom:181.546667pt;}
.y130{bottom:182.666667pt;}
.y57{bottom:186.186667pt;}
.y119{bottom:193.386667pt;}
.y24{bottom:193.786667pt;}
.yb1{bottom:194.186667pt;}
.y82{bottom:194.746667pt;}
.y12f{bottom:198.266667pt;}
.y56{bottom:201.866667pt;}
.yff{bottom:205.146667pt;}
.y118{bottom:208.986667pt;}
.y23{bottom:209.386667pt;}
.yb0{bottom:209.866667pt;}
.y81{bottom:210.426667pt;}
.yee{bottom:210.986667pt;}
.ycb{bottom:213.226667pt;}
.y12e{bottom:213.866667pt;}
.y55{bottom:217.466667pt;}
.y117{bottom:224.666667pt;}
.y22{bottom:225.066667pt;}
.yaf{bottom:225.466667pt;}
.y80{bottom:226.026667pt;}
.yed{bottom:226.666667pt;}
.yca{bottom:228.826667pt;}
.y12d{bottom:229.546667pt;}
.y54{bottom:233.066667pt;}
.y116{bottom:240.266667pt;}
.y21{bottom:240.666667pt;}
.yae{bottom:241.066667pt;}
.y7f{bottom:241.626667pt;}
.yec{bottom:242.266667pt;}
.yc9{bottom:244.426667pt;}
.y12c{bottom:245.146667pt;}
.yfe{bottom:248.026667pt;}
.y53{bottom:248.746667pt;}
.y20{bottom:256.266667pt;}
.yad{bottom:256.746667pt;}
.y7e{bottom:257.306667pt;}
.yeb{bottom:257.946667pt;}
.yc8{bottom:260.106667pt;}
.y12b{bottom:260.826667pt;}
.yfd{bottom:263.626667pt;}
.y52{bottom:264.346667pt;}
.y114{bottom:269.626667pt;}
.yac{bottom:272.346667pt;}
.y7d{bottom:272.906667pt;}
.yea{bottom:273.546667pt;}
.yc7{bottom:275.706667pt;}
.y12a{bottom:276.426667pt;}
.yfc{bottom:279.306667pt;}
.y51{bottom:279.946667pt;}
.y1f{bottom:287.946667pt;}
.ye9{bottom:289.146667pt;}
.yc6{bottom:291.386667pt;}
.y129{bottom:292.026667pt;}
.yfb{bottom:294.906667pt;}
.y50{bottom:295.626667pt;}
.y7c{bottom:296.586667pt;}
.y1e{bottom:303.546667pt;}
.ye8{bottom:304.826667pt;}
.yc5{bottom:306.986667pt;}
.y128{bottom:307.706667pt;}
.yfa{bottom:310.586667pt;}
.y4f{bottom:311.226667pt;}
.yab{bottom:311.626667pt;}
.y1d{bottom:319.226667pt;}
.ye7{bottom:320.426667pt;}
.yc4{bottom:322.586667pt;}
.y127{bottom:323.306667pt;}
.yf9{bottom:326.186667pt;}
.y7b{bottom:328.506667pt;}
.y1c{bottom:334.826667pt;}
.y4e{bottom:334.906667pt;}
.y126{bottom:338.986667pt;}
.y112{bottom:340.746667pt;}
.yf8{bottom:341.786667pt;}
.yaa{bottom:343.226667pt;}
.ye6{bottom:344.106667pt;}
.yc3{bottom:346.266667pt;}
.y1b{bottom:350.426667pt;}
.yf7{bottom:357.466667pt;}
.ya9{bottom:358.906667pt;}
.y125{bottom:362.826667pt;}
.y1a{bottom:366.106667pt;}
.y4d{bottom:366.506667pt;}
.y7a{bottom:371.386667pt;}
.ya8{bottom:374.506667pt;}
.ye5{bottom:376.026667pt;}
.yc2{bottom:378.186667pt;}
.y4c{bottom:382.106667pt;}
.y79{bottom:386.986667pt;}
.yf6{bottom:389.066667pt;}
.y19{bottom:390.026667pt;}
.ya7{bottom:390.106667pt;}
.y10e{bottom:396.346667pt;}
.y4b{bottom:397.786667pt;}
.y78{bottom:402.666667pt;}
.ya6{bottom:405.786667pt;}
.y4a{bottom:413.386667pt;}
.ye3{bottom:416.586667pt;}
.yf5{bottom:417.733333pt;}
.y77{bottom:418.293333pt;}
.yc1{bottom:421.093333pt;}
.ya5{bottom:421.413333pt;}
.y49{bottom:429.093333pt;}
.y18{bottom:432.933333pt;}
.y76{bottom:433.973333pt;}
.ya4{bottom:437.093333pt;}
.ye2{bottom:440.933333pt;}
.y48{bottom:444.693333pt;}
.y17{bottom:448.853333pt;}
.y75{bottom:449.573333pt;}
.yc0{bottom:449.733333pt;}
.ya3{bottom:452.693333pt;}
.y47{bottom:460.293333pt;}
.y142{bottom:460.693333pt;}
.y74{bottom:465.173333pt;}
.y10b{bottom:467.573333pt;}
.ya2{bottom:468.293333pt;}
.y141{bottom:476.293333pt;}
.y73{bottom:480.853333pt;}
.y16{bottom:481.733333pt;}
.y46{bottom:483.973333pt;}
.ye1{bottom:489.493333pt;}
.ya1{bottom:491.973333pt;}
.y15{bottom:497.413333pt;}
.y124{bottom:499.573333pt;}
.y72{bottom:504.453333pt;}
.y14{bottom:513.013333pt;}
.ydf{bottom:513.813333pt;}
.y45{bottom:515.573333pt;}
.y123{bottom:523.253333pt;}
.ya0{bottom:523.893333pt;}
.y13{bottom:528.693333pt;}
.y44{bottom:531.253333pt;}
.y71{bottom:536.133333pt;}
.yde{bottom:538.053333pt;}
.y109{bottom:538.773333pt;}
.y12{bottom:544.293333pt;}
.y43{bottom:546.853333pt;}
.y70{bottom:551.733333pt;}
.y122{bottom:554.853333pt;}
.y11{bottom:559.893333pt;}
.ydc{bottom:562.373333pt;}
.y42{bottom:562.453333pt;}
.y9f{bottom:566.773333pt;}
.y6f{bottom:567.333333pt;}
.y121{bottom:570.453333pt;}
.y10{bottom:575.573333pt;}
.y41{bottom:578.133333pt;}
.y9e{bottom:582.453333pt;}
.y6e{bottom:583.013333pt;}
.y120{bottom:586.133333pt;}
.yf{bottom:591.173333pt;}
.y40{bottom:593.733333pt;}
.y108{bottom:597.653333pt;}
.y9d{bottom:598.053333pt;}
.y6d{bottom:598.613333pt;}
.y11f{bottom:601.733333pt;}
.ydb{bottom:605.653333pt;}
.ye{bottom:606.853333pt;}
.y3f{bottom:609.413333pt;}
.y140{bottom:609.733333pt;}
.y9c{bottom:613.653333pt;}
.y6c{bottom:614.293333pt;}
.y11e{bottom:617.413333pt;}
.y107{bottom:621.333333pt;}
.yd{bottom:622.453333pt;}
.y3e{bottom:625.013333pt;}
.y13f{bottom:625.413333pt;}
.y9b{bottom:629.333333pt;}
.y6b{bottom:629.893333pt;}
.y11d{bottom:633.013333pt;}
.yda{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y13e{bottom:641.013333pt;}
.y9a{bottom:644.933333pt;}
.y6a{bottom:646.053333pt;}
.y3d{bottom:648.613333pt;}
.yd9{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y99{bottom:660.613333pt;}
.y13d{bottom:664.613333pt;}
.yd8{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.y69{bottom:672.293333pt;}
.y98{bottom:676.213333pt;}
.y3c{bottom:680.293333pt;}
.yd7{bottom:684.213333pt;}
.y9{bottom:693.253333pt;}
.y3b{bottom:695.893333pt;}
.y97{bottom:699.813333pt;}
.y68{bottom:703.893333pt;}
.y3a{bottom:711.573333pt;}
.yd6{bottom:715.493333pt;}
.y67{bottom:719.573333pt;}
.y39{bottom:727.173333pt;}
.yd5{bottom:731.093333pt;}
.y96{bottom:731.493333pt;}
.y66{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.y38{bottom:742.773333pt;}
.yd4{bottom:746.693333pt;}
.y95{bottom:747.093333pt;}
.y65{bottom:750.773333pt;}
.yf4{bottom:754.693333pt;}
.y37{bottom:758.453333pt;}
.y106{bottom:762.373333pt;}
.y94{bottom:762.693333pt;}
.y64{bottom:766.453333pt;}
.y7{bottom:767.813333pt;}
.yd3{bottom:770.373333pt;}
.ybf{bottom:770.693333pt;}
.y36{bottom:774.053333pt;}
.y13c{bottom:774.453333pt;}
.y93{bottom:778.373333pt;}
.y63{bottom:782.053333pt;}
.y105{bottom:785.973333pt;}
.ybe{bottom:786.373333pt;}
.y13b{bottom:790.053333pt;}
.y92{bottom:793.973333pt;}
.y35{bottom:797.733333pt;}
.y6{bottom:799.653333pt;}
.ybd{bottom:801.973333pt;}
.y13a{bottom:805.733333pt;}
.y91{bottom:809.653333pt;}
.ybc{bottom:817.653333pt;}
.y62{bottom:821.333333pt;}
.y90{bottom:825.253333pt;}
.y139{bottom:829.333333pt;}
.y34{bottom:829.573333pt;}
.y5{bottom:831.653333pt;}
.ybb{bottom:833.253333pt;}
.y8f{bottom:840.853333pt;}
.y138{bottom:844.933333pt;}
.yba{bottom:848.853333pt;}
.y61{bottom:852.933333pt;}
.y4{bottom:863.733333pt;}
.y8e{bottom:864.533333pt;}
.y60{bottom:868.613333pt;}
.y33{bottom:872.533333pt;}
.yb9{bottom:880.133333pt;}
.y5f{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.yd2{bottom:895.813333pt;}
.y8d{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y5e{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y137{bottom:907.840000pt;}
.yd1{bottom:911.440000pt;}
.y8c{bottom:911.840000pt;}
.y5d{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.y136{bottom:923.520000pt;}
.y8b{bottom:927.440000pt;}
.y5c{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.yb8{bottom:935.440000pt;}
.y8a{bottom:943.040000pt;}
.y5b{bottom:946.800000pt;}
.y135{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.yb7{bottom:951.040000pt;}
.y89{bottom:958.720000pt;}
.y134{bottom:962.800000pt;}
.yb6{bottom:966.720000pt;}
.y5a{bottom:970.400000pt;}
.y88{bottom:974.320000pt;}
.y133{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y87{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y59{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.h11{height:54.927899pt;}
.h10{height:54.960000pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:70.480000pt;}
.hf{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:111.866667pt;}
.w9{width:124.000000pt;}
.w7{width:207.680000pt;}
.w5{width:212.080000pt;}
.w4{width:214.186667pt;}
.w3{width:225.146667pt;}
.w8{width:226.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:70.640000pt;}
.xf{left:98.879988pt;}
.x5{left:110.559988pt;}
.xb{left:145.306655pt;}
.xc{left:173.626667pt;}
.x2{left:180.266655pt;}
.x8{left:296.426667pt;}
.xd{left:381.946667pt;}
.x9{left:511.253333pt;}
.xe{left:608.853333pt;}
.xa{left:625.013322pt;}
.x4{left:661.013322pt;}
.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; }
  