
    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_ec1837c01af5cfeea9593d63.woff')format("woff");}.ff1{font-family:ff1;line-height:0.740234;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_8f53e32840464bad8057da2a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.957520;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_09e999e5a2d3aa79607718a6.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_ba9465a865fb19599a44a582.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_8a0af7233928003bd36e0e4e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901855;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_6b6bccff4f67a59ca796e8a6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_14f50946c21b823f8c5f4217.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_495ffbe5748e10e4e5e6ee23.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7d70b67950b93679b0321af0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9646e57add5737c0a954a081.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.300000px;}
.ls1d{letter-spacing:-0.822000px;}
.ls1f{letter-spacing:-0.618000px;}
.ls17{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.230400px;}
.ls14{letter-spacing:-0.207600px;}
.lsc{letter-spacing:-0.187200px;}
.ls1c{letter-spacing:-0.103800px;}
.lsd{letter-spacing:-0.085200px;}
.ls28{letter-spacing:-0.069000px;}
.ls2a{letter-spacing:-0.031680px;}
.lsb{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.069840px;}
.ls1b{letter-spacing:0.089280px;}
.ls13{letter-spacing:0.100800px;}
.ls25{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.126600px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.250800px;}
.ls21{letter-spacing:0.305280px;}
.ls29{letter-spacing:0.305400px;}
.lse{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.376560px;}
.ls5{letter-spacing:0.532800px;}
.ls26{letter-spacing:0.547200px;}
.ls24{letter-spacing:1.025280px;}
.ls8{letter-spacing:1.987200px;}
.ls23{letter-spacing:2.707200px;}
.ls9{letter-spacing:3.427200px;}
.ls16{letter-spacing:4.867200px;}
.ls22{letter-spacing:5.587200px;}
.ls20{letter-spacing:7.747200px;}
.ls7{letter-spacing:8.467200px;}
.lsa{letter-spacing:9.187200px;}
.ls27{letter-spacing:10.087200px;}
.ls1e{letter-spacing:10.627200px;}
.ls11{letter-spacing:12.067200px;}
.ls12{letter-spacing:12.787200px;}
.ls10{letter-spacing:14.227200px;}
.ls1a{letter-spacing:19.267200px;}
.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;}
}
.ws4{word-spacing:-21.067200px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.889600px;}
.ws12{word-spacing:-14.878200px;}
.wsd{word-spacing:-14.823600px;}
.wsb{word-spacing:-14.595840px;}
.wsc{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.572800px;}
.ws11{word-spacing:-14.503800px;}
.wse{word-spacing:-14.469000px;}
.ws13{word-spacing:-14.342400px;}
.ws8{word-spacing:-14.158200px;}
.ws10{word-spacing:-13.954800px;}
.wsf{word-spacing:-13.750800px;}
.ws1{word-spacing:-13.273800px;}
.ws0{word-spacing:-13.147200px;}
.ws9{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.527600px;}
.wsa{word-spacing:0.000000px;}
._1f{margin-left:-5.127840px;}
._14{margin-left:-3.510000px;}
._11{margin-left:-2.252160px;}
._0{margin-left:-1.143360px;}
._1{width:1.015920px;}
._2{width:2.670240px;}
._7{width:3.708720px;}
._9{width:4.792320px;}
._a{width:6.223680px;}
._4{width:7.502400px;}
._3{width:8.611200px;}
._b{width:9.737280px;}
._5{width:10.847280px;}
._e{width:12.037680px;}
._10{width:13.380480px;}
._8{width:16.162560px;}
._19{width:17.777760px;}
._f{width:18.846720px;}
._6{width:20.070720px;}
._12{width:21.263040px;}
._15{width:22.720320px;}
._16{width:23.824080px;}
._17{width:25.068720px;}
._18{width:26.568480px;}
._c{width:27.887040px;}
._d{width:28.946880px;}
._20{width:30.752640px;}
._1a{width:134.796000px;}
._22{width:140.428800px;}
._23{width:198.322560px;}
._1c{width:506.460000px;}
._1d{width:639.713280px;}
._1b{width:751.320000px;}
._1e{width:799.680000px;}
._21{width:849.583200px;}
._13{width:1275.456000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.420000px;}
.y88{bottom:3.600000px;}
.y35{bottom:3.780000px;}
.y15{bottom:8.460000px;}
.y18{bottom:12.780000px;}
.y8{bottom:21.060000px;}
.y14{bottom:22.500000px;}
.yb7{bottom:22.860000px;}
.yb4{bottom:23.034000px;}
.y7f{bottom:23.040000px;}
.y83{bottom:23.085000px;}
.y34{bottom:32.040000px;}
.y13{bottom:35.460000px;}
.y7{bottom:38.520000px;}
.yb3{bottom:42.294000px;}
.y87{bottom:42.300000px;}
.ycc{bottom:42.474000px;}
.y8a{bottom:42.480000px;}
.y82{bottom:42.525000px;}
.y12{bottom:46.080000px;}
.y33{bottom:51.480000px;}
.y6{bottom:55.980000px;}
.y26{bottom:60.480000px;}
.y9a{bottom:61.560000px;}
.yb2{bottom:61.734000px;}
.y86{bottom:61.740000px;}
.y8d{bottom:61.770000px;}
.y81{bottom:61.785000px;}
.y11{bottom:63.765000px;}
.y32{bottom:70.740000px;}
.y5{bottom:73.440000px;}
.y25{bottom:79.740000px;}
.yb1{bottom:80.994000px;}
.y85{bottom:81.000000px;}
.y8c{bottom:81.030000px;}
.y9c{bottom:81.045000px;}
.y94{bottom:81.180000px;}
.y91{bottom:81.225000px;}
.y10{bottom:81.405000px;}
.yd{bottom:88.200000px;}
.y31{bottom:90.000000px;}
.y4{bottom:91.080000px;}
.y24{bottom:99.000000px;}
.y99{bottom:100.260000px;}
.y93{bottom:100.440000px;}
.y90{bottom:100.485000px;}
.yf{bottom:100.845000px;}
.y4a{bottom:105.300000px;}
.y30{bottom:109.440000px;}
.y2{bottom:110.340000px;}
.y3{bottom:113.220000px;}
.y23{bottom:118.440000px;}
.y98{bottom:119.700000px;}
.y49{bottom:122.580000px;}
.yc{bottom:123.480000px;}
.y119{bottom:124.560000px;}
.y2f{bottom:128.700000px;}
.ycb{bottom:133.416000px;}
.y22{bottom:137.700000px;}
.yb0{bottom:140.976000px;}
.y118{bottom:143.856000px;}
.y77{bottom:147.276000px;}
.yef{bottom:147.636000px;}
.y2e{bottom:148.140000px;}
.y95{bottom:152.850000px;}
.yb{bottom:153.570000px;}
.y21{bottom:157.140000px;}
.y45{bottom:158.070000px;}
.y44{bottom:163.290000px;}
.y76{bottom:166.710000px;}
.yee{bottom:166.890000px;}
.y2d{bottom:167.430000px;}
.y43{bottom:175.350000px;}
.y20{bottom:176.430000px;}
.y117{bottom:182.550000px;}
.y75{bottom:185.970000px;}
.yed{bottom:186.330000px;}
.y2c{bottom:186.870000px;}
.y42{bottom:194.610000px;}
.y1f{bottom:195.870000px;}
.y116{bottom:201.990000px;}
.y74{bottom:205.410000px;}
.yec{bottom:205.590000px;}
.y2b{bottom:206.130000px;}
.y92{bottom:211.530000px;}
.y41{bottom:214.050000px;}
.y1e{bottom:215.130000px;}
.y115{bottom:221.250000px;}
.y73{bottom:224.670000px;}
.yeb{bottom:225.030000px;}
.y2a{bottom:225.570000px;}
.y40{bottom:233.310000px;}
.y1d{bottom:234.570000px;}
.yaf{bottom:238.350000px;}
.y114{bottom:240.510000px;}
.y72{bottom:244.110000px;}
.yea{bottom:244.290000px;}
.y29{bottom:244.830000px;}
.y3f{bottom:252.750000px;}
.y1c{bottom:253.830000px;}
.y113{bottom:259.950000px;}
.y71{bottom:263.370000px;}
.ye9{bottom:263.730000px;}
.y28{bottom:264.270000px;}
.y3e{bottom:272.010000px;}
.y1b{bottom:273.270000px;}
.y112{bottom:279.210000px;}
.y70{bottom:282.810000px;}
.ye8{bottom:282.990000px;}
.y27{bottom:283.530000px;}
.yca{bottom:289.650000px;}
.y3d{bottom:291.270000px;}
.y1a{bottom:292.530000px;}
.y111{bottom:298.650000px;}
.y6f{bottom:302.070000px;}
.ye7{bottom:302.430000px;}
.y3c{bottom:310.710000px;}
.y110{bottom:317.910000px;}
.y6e{bottom:321.330000px;}
.ye6{bottom:321.690000px;}
.y8f{bottom:328.350000px;}
.y3b{bottom:329.970000px;}
.yae{bottom:335.910000px;}
.y10f{bottom:337.350000px;}
.y6d{bottom:340.770000px;}
.ye5{bottom:341.130000px;}
.y3a{bottom:349.410000px;}
.y10e{bottom:356.610000px;}
.y6c{bottom:360.030000px;}
.ye4{bottom:360.390000px;}
.y39{bottom:368.715000px;}
.y10d{bottom:376.095000px;}
.yad{bottom:378.975000px;}
.y6b{bottom:379.515000px;}
.ye3{bottom:379.875000px;}
.yc9{bottom:387.255000px;}
.y38{bottom:388.155000px;}
.y10c{bottom:395.355000px;}
.yac{bottom:398.415000px;}
.y6a{bottom:398.775000px;}
.ye2{bottom:399.135000px;}
.y37{bottom:407.415000px;}
.y10b{bottom:414.795000px;}
.yab{bottom:417.675000px;}
.y69{bottom:418.215000px;}
.ye1{bottom:418.575000px;}
.y36{bottom:426.495000px;}
.yc8{bottom:430.275000px;}
.y10a{bottom:434.055000px;}
.yaa{bottom:437.115000px;}
.y68{bottom:437.475000px;}
.ye0{bottom:437.835000px;}
.y19{bottom:441.435000px;}
.y8e{bottom:445.215000px;}
.yc7{bottom:449.715000px;}
.y109{bottom:453.495000px;}
.ya9{bottom:456.375000px;}
.y67{bottom:456.915000px;}
.ydf{bottom:457.095000px;}
.yc6{bottom:468.975000px;}
.y108{bottom:472.755000px;}
.ya8{bottom:475.815000px;}
.y66{bottom:476.175000px;}
.yde{bottom:476.535000px;}
.yc5{bottom:488.415000px;}
.y107{bottom:492.195000px;}
.ya7{bottom:495.075000px;}
.y65{bottom:495.615000px;}
.ydd{bottom:495.795000px;}
.y130{bottom:498.855000px;}
.yc4{bottom:507.675000px;}
.y106{bottom:511.455000px;}
.ya6{bottom:514.515000px;}
.y64{bottom:514.875000px;}
.ydc{bottom:515.235000px;}
.y12f{bottom:518.295000px;}
.yc3{bottom:527.115000px;}
.y105{bottom:530.715000px;}
.ya5{bottom:533.775000px;}
.y63{bottom:534.315000px;}
.ydb{bottom:534.495000px;}
.y12e{bottom:537.555000px;}
.y8b{bottom:542.775000px;}
.yc2{bottom:546.375000px;}
.y104{bottom:550.155000px;}
.ya4{bottom:553.215000px;}
.y62{bottom:553.575000px;}
.yda{bottom:553.935000px;}
.y12d{bottom:556.815000px;}
.yc1{bottom:565.815000px;}
.y103{bottom:569.415000px;}
.ya3{bottom:572.475000px;}
.yd9{bottom:573.195000px;}
.y12c{bottom:576.255000px;}
.yc0{bottom:585.075000px;}
.y102{bottom:588.855000px;}
.ya2{bottom:591.915000px;}
.yd8{bottom:592.635000px;}
.y61{bottom:593.895000px;}
.y12b{bottom:595.515000px;}
.ybf{bottom:604.545000px;}
.y101{bottom:608.145000px;}
.ya1{bottom:611.205000px;}
.yd7{bottom:611.925000px;}
.y60{bottom:613.365000px;}
.y12a{bottom:614.985000px;}
.ybe{bottom:623.805000px;}
.y100{bottom:627.585000px;}
.ya0{bottom:630.465000px;}
.yd6{bottom:631.365000px;}
.y5f{bottom:632.625000px;}
.y129{bottom:634.245000px;}
.y89{bottom:640.185000px;}
.ybd{bottom:643.065000px;}
.yff{bottom:646.845000px;}
.y9f{bottom:649.905000px;}
.yd5{bottom:650.625000px;}
.y5e{bottom:652.065000px;}
.y128{bottom:653.685000px;}
.ybc{bottom:662.505000px;}
.yfe{bottom:666.285000px;}
.y9e{bottom:669.165000px;}
.yd4{bottom:670.065000px;}
.y5d{bottom:671.325000px;}
.y127{bottom:672.945000px;}
.ybb{bottom:681.765000px;}
.yfd{bottom:685.545000px;}
.y9d{bottom:685.725000px;}
.yd3{bottom:689.325000px;}
.y5c{bottom:690.765000px;}
.y126{bottom:692.385000px;}
.yba{bottom:701.205000px;}
.yfc{bottom:704.985000px;}
.yd2{bottom:708.765000px;}
.y5b{bottom:710.025000px;}
.y125{bottom:711.645000px;}
.yb9{bottom:717.585000px;}
.yfb{bottom:724.245000px;}
.yd1{bottom:728.025000px;}
.y5a{bottom:729.285000px;}
.y124{bottom:731.085000px;}
.y84{bottom:737.745000px;}
.yfa{bottom:743.685000px;}
.yd0{bottom:747.285000px;}
.y59{bottom:748.725000px;}
.y17{bottom:750.345000px;}
.yf9{bottom:762.945000px;}
.ycf{bottom:763.845000px;}
.y58{bottom:767.985000px;}
.y123{bottom:769.785000px;}
.yf8{bottom:782.385000px;}
.y9b{bottom:783.105000px;}
.y57{bottom:787.425000px;}
.y122{bottom:789.045000px;}
.y16{bottom:789.225000px;}
.ye{bottom:791.925000px;}
.yb8{bottom:795.705000px;}
.yf7{bottom:801.645000px;}
.y56{bottom:806.685000px;}
.y121{bottom:808.485000px;}
.yf6{bottom:820.905000px;}
.y55{bottom:826.125000px;}
.y120{bottom:827.745000px;}
.y80{bottom:835.125000px;}
.yf5{bottom:840.390000px;}
.y54{bottom:845.430000px;}
.y11f{bottom:847.050000px;}
.yf4{bottom:859.650000px;}
.yce{bottom:861.270000px;}
.y53{bottom:864.870000px;}
.y11e{bottom:866.490000px;}
.yf3{bottom:879.090000px;}
.y97{bottom:880.710000px;}
.y52{bottom:884.130000px;}
.y11d{bottom:885.750000px;}
.yb6{bottom:893.310000px;}
.yf2{bottom:898.350000px;}
.y51{bottom:903.570000px;}
.y11c{bottom:905.190000px;}
.y7e{bottom:913.290000px;}
.yf1{bottom:917.790000px;}
.y50{bottom:922.830000px;}
.ya{bottom:923.370000px;}
.y11b{bottom:924.450000px;}
.yf0{bottom:937.050000px;}
.y11a{bottom:943.890000px;}
.y7d{bottom:956.490000px;}
.ycd{bottom:958.830000px;}
.y4f{bottom:963.150000px;}
.y1{bottom:963.510000px;}
.yb5{bottom:971.430000px;}
.y7c{bottom:975.750000px;}
.y4e{bottom:982.590000px;}
.y7b{bottom:995.190000px;}
.y4d{bottom:1001.850000px;}
.y7a{bottom:1014.450000px;}
.y96{bottom:1016.790000px;}
.y4c{bottom:1021.290000px;}
.y79{bottom:1033.890000px;}
.y4b{bottom:1040.550000px;}
.y78{bottom:1052.790000px;}
.y48{bottom:1059.450000px;}
.y47{bottom:1087.920000px;}
.y46{bottom:1105.200000px;}
.h6{height:4.021875px;}
.hc{height:10.650234px;}
.ha{height:26.312344px;}
.h11{height:29.634609px;}
.hd{height:37.440000px;}
.h14{height:38.700000px;}
.h1c{height:38.736000px;}
.h5{height:41.726953px;}
.hb{height:41.974453px;}
.h13{height:45.549492px;}
.h12{height:45.720703px;}
.h4{height:50.597578px;}
.h9{height:51.998203px;}
.he{height:56.084062px;}
.h3{height:56.611406px;}
.hf{height:57.636562px;}
.h1a{height:57.960000px;}
.h1e{height:77.220000px;}
.h1f{height:77.400000px;}
.h15{height:77.436000px;}
.h8{height:81.078047px;}
.h16{height:96.660000px;}
.h17{height:96.696000px;}
.h1d{height:96.840000px;}
.h20{height:96.876000px;}
.h19{height:116.100000px;}
.h18{height:116.136000px;}
.h7{height:123.696000px;}
.h1b{height:135.360000px;}
.h2{height:146.736000px;}
.h10{height:308.190000px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w7{width:21.240000px;}
.wa{width:35.460000px;}
.wf{width:41.400000px;}
.wd{width:128.880000px;}
.w11{width:128.916000px;}
.wc{width:142.236000px;}
.w6{width:170.130000px;}
.we{width:175.350000px;}
.w12{width:182.190000px;}
.wb{width:215.850000px;}
.w10{width:216.390000px;}
.w2{width:216.750000px;}
.w3{width:501.375000px;}
.w8{width:510.375000px;}
.w5{width:713.670000px;}
.w1{width:918.000000px;}
.w9{width:918.179973px;}
.w4{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x12{left:8.100000px;}
.x10{left:10.620000px;}
.x1{left:96.876000px;}
.xe{left:98.315986px;}
.x5{left:106.415986px;}
.x15{left:111.275986px;}
.x8{left:114.516000px;}
.xd{left:124.914000px;}
.x13{left:127.655986px;}
.x1b{left:143.316000px;}
.x19{left:149.075986px;}
.x9{left:193.539000px;}
.x2{left:229.899000px;}
.xb{left:253.839000px;}
.xf{left:284.655000px;}
.x11{left:305.895000px;}
.x3{left:315.075000px;}
.xc{left:318.459000px;}
.x14{left:322.454986px;}
.x22{left:330.374986px;}
.x1e{left:332.714986px;}
.x1a{left:345.134986px;}
.xa{left:352.689000px;}
.x1c{left:359.895000px;}
.x1f{left:366.375000px;}
.x7{left:451.694986px;}
.x6{left:459.104986px;}
.x20{left:496.005000px;}
.x1d{left:502.845000px;}
.x21{left:625.605000px;}
.x17{left:627.044986px;}
.x18{left:632.084986px;}
.x16{left:811.949986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.600000pt;}
.ls1d{letter-spacing:-0.730667pt;}
.ls1f{letter-spacing:-0.549333pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.204800pt;}
.ls14{letter-spacing:-0.184533pt;}
.lsc{letter-spacing:-0.166400pt;}
.ls1c{letter-spacing:-0.092267pt;}
.lsd{letter-spacing:-0.075733pt;}
.ls28{letter-spacing:-0.061333pt;}
.ls2a{letter-spacing:-0.028160pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.062080pt;}
.ls1b{letter-spacing:0.079360pt;}
.ls13{letter-spacing:0.089600pt;}
.ls25{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.112533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.222933pt;}
.ls21{letter-spacing:0.271360pt;}
.ls29{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.334720pt;}
.ls5{letter-spacing:0.473600pt;}
.ls26{letter-spacing:0.486400pt;}
.ls24{letter-spacing:0.911360pt;}
.ls8{letter-spacing:1.766400pt;}
.ls23{letter-spacing:2.406400pt;}
.ls9{letter-spacing:3.046400pt;}
.ls16{letter-spacing:4.326400pt;}
.ls22{letter-spacing:4.966400pt;}
.ls20{letter-spacing:6.886400pt;}
.ls7{letter-spacing:7.526400pt;}
.lsa{letter-spacing:8.166400pt;}
.ls27{letter-spacing:8.966400pt;}
.ls1e{letter-spacing:9.446400pt;}
.ls11{letter-spacing:10.726400pt;}
.ls12{letter-spacing:11.366400pt;}
.ls10{letter-spacing:12.646400pt;}
.ls1a{letter-spacing:17.126400pt;}
.ws4{word-spacing:-18.726400pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.235200pt;}
.ws12{word-spacing:-13.225067pt;}
.wsd{word-spacing:-13.176533pt;}
.wsb{word-spacing:-12.974080pt;}
.wsc{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.892267pt;}
.wse{word-spacing:-12.861333pt;}
.ws13{word-spacing:-12.748800pt;}
.ws8{word-spacing:-12.585067pt;}
.ws10{word-spacing:-12.404267pt;}
.wsf{word-spacing:-12.222933pt;}
.ws1{word-spacing:-11.798933pt;}
.ws0{word-spacing:-11.686400pt;}
.ws9{word-spacing:-10.560000pt;}
.ws5{word-spacing:-9.357867pt;}
.wsa{word-spacing:0.000000pt;}
._1f{margin-left:-4.558080pt;}
._14{margin-left:-3.120000pt;}
._11{margin-left:-2.001920pt;}
._0{margin-left:-1.016320pt;}
._1{width:0.903040pt;}
._2{width:2.373547pt;}
._7{width:3.296640pt;}
._9{width:4.259840pt;}
._a{width:5.532160pt;}
._4{width:6.668800pt;}
._3{width:7.654400pt;}
._b{width:8.655360pt;}
._5{width:9.642027pt;}
._e{width:10.700160pt;}
._10{width:11.893760pt;}
._8{width:14.366720pt;}
._19{width:15.802453pt;}
._f{width:16.752640pt;}
._6{width:17.840640pt;}
._12{width:18.900480pt;}
._15{width:20.195840pt;}
._16{width:21.176960pt;}
._17{width:22.283307pt;}
._18{width:23.616427pt;}
._c{width:24.788480pt;}
._d{width:25.730560pt;}
._20{width:27.335680pt;}
._1a{width:119.818667pt;}
._22{width:124.825600pt;}
._23{width:176.286720pt;}
._1c{width:450.186667pt;}
._1d{width:568.634027pt;}
._1b{width:667.840000pt;}
._1e{width:710.826667pt;}
._21{width:755.185067pt;}
._13{width:1133.738667pt;}
.fs3{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.040000pt;}
.y88{bottom:3.200000pt;}
.y35{bottom:3.360000pt;}
.y15{bottom:7.520000pt;}
.y18{bottom:11.360000pt;}
.y8{bottom:18.720000pt;}
.y14{bottom:20.000000pt;}
.yb7{bottom:20.320000pt;}
.yb4{bottom:20.474667pt;}
.y7f{bottom:20.480000pt;}
.y83{bottom:20.520000pt;}
.y34{bottom:28.480000pt;}
.y13{bottom:31.520000pt;}
.y7{bottom:34.240000pt;}
.yb3{bottom:37.594667pt;}
.y87{bottom:37.600000pt;}
.ycc{bottom:37.754667pt;}
.y8a{bottom:37.760000pt;}
.y82{bottom:37.800000pt;}
.y12{bottom:40.960000pt;}
.y33{bottom:45.760000pt;}
.y6{bottom:49.760000pt;}
.y26{bottom:53.760000pt;}
.y9a{bottom:54.720000pt;}
.yb2{bottom:54.874667pt;}
.y86{bottom:54.880000pt;}
.y8d{bottom:54.906667pt;}
.y81{bottom:54.920000pt;}
.y11{bottom:56.680000pt;}
.y32{bottom:62.880000pt;}
.y5{bottom:65.280000pt;}
.y25{bottom:70.880000pt;}
.yb1{bottom:71.994667pt;}
.y85{bottom:72.000000pt;}
.y8c{bottom:72.026667pt;}
.y9c{bottom:72.040000pt;}
.y94{bottom:72.160000pt;}
.y91{bottom:72.200000pt;}
.y10{bottom:72.360000pt;}
.yd{bottom:78.400000pt;}
.y31{bottom:80.000000pt;}
.y4{bottom:80.960000pt;}
.y24{bottom:88.000000pt;}
.y99{bottom:89.120000pt;}
.y93{bottom:89.280000pt;}
.y90{bottom:89.320000pt;}
.yf{bottom:89.640000pt;}
.y4a{bottom:93.600000pt;}
.y30{bottom:97.280000pt;}
.y2{bottom:98.080000pt;}
.y3{bottom:100.640000pt;}
.y23{bottom:105.280000pt;}
.y98{bottom:106.400000pt;}
.y49{bottom:108.960000pt;}
.yc{bottom:109.760000pt;}
.y119{bottom:110.720000pt;}
.y2f{bottom:114.400000pt;}
.ycb{bottom:118.592000pt;}
.y22{bottom:122.400000pt;}
.yb0{bottom:125.312000pt;}
.y118{bottom:127.872000pt;}
.y77{bottom:130.912000pt;}
.yef{bottom:131.232000pt;}
.y2e{bottom:131.680000pt;}
.y95{bottom:135.866667pt;}
.yb{bottom:136.506667pt;}
.y21{bottom:139.680000pt;}
.y45{bottom:140.506667pt;}
.y44{bottom:145.146667pt;}
.y76{bottom:148.186667pt;}
.yee{bottom:148.346667pt;}
.y2d{bottom:148.826667pt;}
.y43{bottom:155.866667pt;}
.y20{bottom:156.826667pt;}
.y117{bottom:162.266667pt;}
.y75{bottom:165.306667pt;}
.yed{bottom:165.626667pt;}
.y2c{bottom:166.106667pt;}
.y42{bottom:172.986667pt;}
.y1f{bottom:174.106667pt;}
.y116{bottom:179.546667pt;}
.y74{bottom:182.586667pt;}
.yec{bottom:182.746667pt;}
.y2b{bottom:183.226667pt;}
.y92{bottom:188.026667pt;}
.y41{bottom:190.266667pt;}
.y1e{bottom:191.226667pt;}
.y115{bottom:196.666667pt;}
.y73{bottom:199.706667pt;}
.yeb{bottom:200.026667pt;}
.y2a{bottom:200.506667pt;}
.y40{bottom:207.386667pt;}
.y1d{bottom:208.506667pt;}
.yaf{bottom:211.866667pt;}
.y114{bottom:213.786667pt;}
.y72{bottom:216.986667pt;}
.yea{bottom:217.146667pt;}
.y29{bottom:217.626667pt;}
.y3f{bottom:224.666667pt;}
.y1c{bottom:225.626667pt;}
.y113{bottom:231.066667pt;}
.y71{bottom:234.106667pt;}
.ye9{bottom:234.426667pt;}
.y28{bottom:234.906667pt;}
.y3e{bottom:241.786667pt;}
.y1b{bottom:242.906667pt;}
.y112{bottom:248.186667pt;}
.y70{bottom:251.386667pt;}
.ye8{bottom:251.546667pt;}
.y27{bottom:252.026667pt;}
.yca{bottom:257.466667pt;}
.y3d{bottom:258.906667pt;}
.y1a{bottom:260.026667pt;}
.y111{bottom:265.466667pt;}
.y6f{bottom:268.506667pt;}
.ye7{bottom:268.826667pt;}
.y3c{bottom:276.186667pt;}
.y110{bottom:282.586667pt;}
.y6e{bottom:285.626667pt;}
.ye6{bottom:285.946667pt;}
.y8f{bottom:291.866667pt;}
.y3b{bottom:293.306667pt;}
.yae{bottom:298.586667pt;}
.y10f{bottom:299.866667pt;}
.y6d{bottom:302.906667pt;}
.ye5{bottom:303.226667pt;}
.y3a{bottom:310.586667pt;}
.y10e{bottom:316.986667pt;}
.y6c{bottom:320.026667pt;}
.ye4{bottom:320.346667pt;}
.y39{bottom:327.746667pt;}
.y10d{bottom:334.306667pt;}
.yad{bottom:336.866667pt;}
.y6b{bottom:337.346667pt;}
.ye3{bottom:337.666667pt;}
.yc9{bottom:344.226667pt;}
.y38{bottom:345.026667pt;}
.y10c{bottom:351.426667pt;}
.yac{bottom:354.146667pt;}
.y6a{bottom:354.466667pt;}
.ye2{bottom:354.786667pt;}
.y37{bottom:362.146667pt;}
.y10b{bottom:368.706667pt;}
.yab{bottom:371.266667pt;}
.y69{bottom:371.746667pt;}
.ye1{bottom:372.066667pt;}
.y36{bottom:379.106667pt;}
.yc8{bottom:382.466667pt;}
.y10a{bottom:385.826667pt;}
.yaa{bottom:388.546667pt;}
.y68{bottom:388.866667pt;}
.ye0{bottom:389.186667pt;}
.y19{bottom:392.386667pt;}
.y8e{bottom:395.746667pt;}
.yc7{bottom:399.746667pt;}
.y109{bottom:403.106667pt;}
.ya9{bottom:405.666667pt;}
.y67{bottom:406.146667pt;}
.ydf{bottom:406.306667pt;}
.yc6{bottom:416.866667pt;}
.y108{bottom:420.226667pt;}
.ya8{bottom:422.946667pt;}
.y66{bottom:423.266667pt;}
.yde{bottom:423.586667pt;}
.yc5{bottom:434.146667pt;}
.y107{bottom:437.506667pt;}
.ya7{bottom:440.066667pt;}
.y65{bottom:440.546667pt;}
.ydd{bottom:440.706667pt;}
.y130{bottom:443.426667pt;}
.yc4{bottom:451.266667pt;}
.y106{bottom:454.626667pt;}
.ya6{bottom:457.346667pt;}
.y64{bottom:457.666667pt;}
.ydc{bottom:457.986667pt;}
.y12f{bottom:460.706667pt;}
.yc3{bottom:468.546667pt;}
.y105{bottom:471.746667pt;}
.ya5{bottom:474.466667pt;}
.y63{bottom:474.946667pt;}
.ydb{bottom:475.106667pt;}
.y12e{bottom:477.826667pt;}
.y8b{bottom:482.466667pt;}
.yc2{bottom:485.666667pt;}
.y104{bottom:489.026667pt;}
.ya4{bottom:491.746667pt;}
.y62{bottom:492.066667pt;}
.yda{bottom:492.386667pt;}
.y12d{bottom:494.946667pt;}
.yc1{bottom:502.946667pt;}
.y103{bottom:506.146667pt;}
.ya3{bottom:508.866667pt;}
.yd9{bottom:509.506667pt;}
.y12c{bottom:512.226667pt;}
.yc0{bottom:520.066667pt;}
.y102{bottom:523.426667pt;}
.ya2{bottom:526.146667pt;}
.yd8{bottom:526.786667pt;}
.y61{bottom:527.906667pt;}
.y12b{bottom:529.346667pt;}
.ybf{bottom:537.373333pt;}
.y101{bottom:540.573333pt;}
.ya1{bottom:543.293333pt;}
.yd7{bottom:543.933333pt;}
.y60{bottom:545.213333pt;}
.y12a{bottom:546.653333pt;}
.ybe{bottom:554.493333pt;}
.y100{bottom:557.853333pt;}
.ya0{bottom:560.413333pt;}
.yd6{bottom:561.213333pt;}
.y5f{bottom:562.333333pt;}
.y129{bottom:563.773333pt;}
.y89{bottom:569.053333pt;}
.ybd{bottom:571.613333pt;}
.yff{bottom:574.973333pt;}
.y9f{bottom:577.693333pt;}
.yd5{bottom:578.333333pt;}
.y5e{bottom:579.613333pt;}
.y128{bottom:581.053333pt;}
.ybc{bottom:588.893333pt;}
.yfe{bottom:592.253333pt;}
.y9e{bottom:594.813333pt;}
.yd4{bottom:595.613333pt;}
.y5d{bottom:596.733333pt;}
.y127{bottom:598.173333pt;}
.ybb{bottom:606.013333pt;}
.yfd{bottom:609.373333pt;}
.y9d{bottom:609.533333pt;}
.yd3{bottom:612.733333pt;}
.y5c{bottom:614.013333pt;}
.y126{bottom:615.453333pt;}
.yba{bottom:623.293333pt;}
.yfc{bottom:626.653333pt;}
.yd2{bottom:630.013333pt;}
.y5b{bottom:631.133333pt;}
.y125{bottom:632.573333pt;}
.yb9{bottom:637.853333pt;}
.yfb{bottom:643.773333pt;}
.yd1{bottom:647.133333pt;}
.y5a{bottom:648.253333pt;}
.y124{bottom:649.853333pt;}
.y84{bottom:655.773333pt;}
.yfa{bottom:661.053333pt;}
.yd0{bottom:664.253333pt;}
.y59{bottom:665.533333pt;}
.y17{bottom:666.973333pt;}
.yf9{bottom:678.173333pt;}
.ycf{bottom:678.973333pt;}
.y58{bottom:682.653333pt;}
.y123{bottom:684.253333pt;}
.yf8{bottom:695.453333pt;}
.y9b{bottom:696.093333pt;}
.y57{bottom:699.933333pt;}
.y122{bottom:701.373333pt;}
.y16{bottom:701.533333pt;}
.ye{bottom:703.933333pt;}
.yb8{bottom:707.293333pt;}
.yf7{bottom:712.573333pt;}
.y56{bottom:717.053333pt;}
.y121{bottom:718.653333pt;}
.yf6{bottom:729.693333pt;}
.y55{bottom:734.333333pt;}
.y120{bottom:735.773333pt;}
.y80{bottom:742.333333pt;}
.yf5{bottom:747.013333pt;}
.y54{bottom:751.493333pt;}
.y11f{bottom:752.933333pt;}
.yf4{bottom:764.133333pt;}
.yce{bottom:765.573333pt;}
.y53{bottom:768.773333pt;}
.y11e{bottom:770.213333pt;}
.yf3{bottom:781.413333pt;}
.y97{bottom:782.853333pt;}
.y52{bottom:785.893333pt;}
.y11d{bottom:787.333333pt;}
.yb6{bottom:794.053333pt;}
.yf2{bottom:798.533333pt;}
.y51{bottom:803.173333pt;}
.y11c{bottom:804.613333pt;}
.y7e{bottom:811.813333pt;}
.yf1{bottom:815.813333pt;}
.y50{bottom:820.293333pt;}
.ya{bottom:820.773333pt;}
.y11b{bottom:821.733333pt;}
.yf0{bottom:832.933333pt;}
.y11a{bottom:839.013333pt;}
.y7d{bottom:850.213333pt;}
.ycd{bottom:852.293333pt;}
.y4f{bottom:856.133333pt;}
.y1{bottom:856.453333pt;}
.yb5{bottom:863.493333pt;}
.y7c{bottom:867.333333pt;}
.y4e{bottom:873.413333pt;}
.y7b{bottom:884.613333pt;}
.y4d{bottom:890.533333pt;}
.y7a{bottom:901.733333pt;}
.y96{bottom:903.813333pt;}
.y4c{bottom:907.813333pt;}
.y79{bottom:919.013333pt;}
.y4b{bottom:924.933333pt;}
.y78{bottom:935.813333pt;}
.y48{bottom:941.733333pt;}
.y47{bottom:967.040000pt;}
.y46{bottom:982.400000pt;}
.h6{height:3.575000pt;}
.hc{height:9.466875pt;}
.ha{height:23.388750pt;}
.h11{height:26.341875pt;}
.hd{height:33.280000pt;}
.h14{height:34.400000pt;}
.h1c{height:34.432000pt;}
.h5{height:37.090625pt;}
.hb{height:37.310625pt;}
.h13{height:40.488438pt;}
.h12{height:40.640625pt;}
.h4{height:44.975625pt;}
.h9{height:46.220625pt;}
.he{height:49.852500pt;}
.h3{height:50.321250pt;}
.hf{height:51.232500pt;}
.h1a{height:51.520000pt;}
.h1e{height:68.640000pt;}
.h1f{height:68.800000pt;}
.h15{height:68.832000pt;}
.h8{height:72.069375pt;}
.h16{height:85.920000pt;}
.h17{height:85.952000pt;}
.h1d{height:86.080000pt;}
.h20{height:86.112000pt;}
.h19{height:103.200000pt;}
.h18{height:103.232000pt;}
.h7{height:109.952000pt;}
.h1b{height:120.320000pt;}
.h2{height:130.432000pt;}
.h10{height:273.946667pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w7{width:18.880000pt;}
.wa{width:31.520000pt;}
.wf{width:36.800000pt;}
.wd{width:114.560000pt;}
.w11{width:114.592000pt;}
.wc{width:126.432000pt;}
.w6{width:151.226667pt;}
.we{width:155.866667pt;}
.w12{width:161.946667pt;}
.wb{width:191.866667pt;}
.w10{width:192.346667pt;}
.w2{width:192.666667pt;}
.w3{width:445.666667pt;}
.w8{width:453.666667pt;}
.w5{width:634.373333pt;}
.w1{width:816.000000pt;}
.w9{width:816.159976pt;}
.w4{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x12{left:7.200000pt;}
.x10{left:9.440000pt;}
.x1{left:86.112000pt;}
.xe{left:87.391988pt;}
.x5{left:94.591988pt;}
.x15{left:98.911988pt;}
.x8{left:101.792000pt;}
.xd{left:111.034667pt;}
.x13{left:113.471988pt;}
.x1b{left:127.392000pt;}
.x19{left:132.511988pt;}
.x9{left:172.034667pt;}
.x2{left:204.354667pt;}
.xb{left:225.634667pt;}
.xf{left:253.026667pt;}
.x11{left:271.906667pt;}
.x3{left:280.066667pt;}
.xc{left:283.074667pt;}
.x14{left:286.626655pt;}
.x22{left:293.666655pt;}
.x1e{left:295.746655pt;}
.x1a{left:306.786655pt;}
.xa{left:313.501333pt;}
.x1c{left:319.906667pt;}
.x1f{left:325.666667pt;}
.x7{left:401.506655pt;}
.x6{left:408.093321pt;}
.x20{left:440.893333pt;}
.x1d{left:446.973333pt;}
.x21{left:556.093333pt;}
.x17{left:557.373321pt;}
.x18{left:561.853321pt;}
.x16{left:721.733321pt;}
}




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