
    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_33de79cd283c51a053bbf1fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_c9ab504cb19eef952a62f622.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bf7ac76816ce6a3e21d68d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.674316;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_fad4e977d30cbc69159a2324.woff2')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_cc3105bfd23dd06f0b97b6c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1f1bbe95e3754c7056a9fce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a81abfc12637c2c94bc81e55.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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_dc3159935bfbaf1d1619c9ff.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_54ab199005f76ed2b9cd6a65.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_780506f22084f7370a58088e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.444600px;}
.lsb{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.156000px;}
.ls5{letter-spacing:-0.121200px;}
.ls2{letter-spacing:-0.090000px;}
.ls18{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls3{letter-spacing:-0.006000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.060480px;}
.ls6{letter-spacing:0.074160px;}
.lsf{letter-spacing:0.074400px;}
.ls4{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.114600px;}
.lsa{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.177000px;}
.ls9{letter-spacing:1.533600px;}
.ls17{letter-spacing:6.573600px;}
.ls0{letter-spacing:13.397760px;}
.lse{letter-spacing:35.846640px;}
.ls16{letter-spacing:45.206640px;}
.ls12{letter-spacing:68.246640px;}
.ls7{letter-spacing:73.845360px;}
.ls15{letter-spacing:78.326640px;}
.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;}
}
.ws2{word-spacing:-26.240760px;}
.ws5{word-spacing:-14.493600px;}
.ws10{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.403400px;}
.wse{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.300800px;}
.ws12{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.070400px;}
.wsf{word-spacing:-13.039800px;}
.ws15{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.266400px;}
.ws11{word-spacing:-8.553600px;}
.wsc{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.042000px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:0.054000px;}
.ws8{word-spacing:0.060000px;}
.wsb{word-spacing:0.096000px;}
.wsd{word-spacing:0.120000px;}
.ws7{word-spacing:0.264000px;}
.ws4{word-spacing:78.104880px;}
._a{margin-left:-3.487200px;}
._b{margin-left:-2.159159px;}
._0{margin-left:-1.020000px;}
._1{width:1.043880px;}
._2{width:2.104200px;}
._3{width:3.126000px;}
._4{width:4.368122px;}
._6{width:6.132000px;}
._9{width:7.275001px;}
._8{width:8.415000px;}
._5{width:9.619200px;}
._7{width:11.242200px;}
._f{width:14.480760px;}
._e{width:15.691320px;}
._c{width:17.074080px;}
._d{width:18.298318px;}
._12{width:19.358640px;}
._13{width:20.681280px;}
._10{width:22.845600px;}
._11{width:23.959079px;}
._17{width:36.492840px;}
._18{width:37.791599px;}
._14{width:62.975520px;}
._15{width:64.028520px;}
._16{width:122.892960px;}
._19{width:142.724880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.830000px;}
.ybf{bottom:7.860000px;}
.y4e{bottom:7.920000px;}
.y91{bottom:12.330000px;}
.ya2{bottom:13.140000px;}
.y6a{bottom:25.380000px;}
.y6f{bottom:25.470000px;}
.yc7{bottom:29.880000px;}
.y90{bottom:29.970000px;}
.ya1{bottom:35.280000px;}
.y8f{bottom:47.520000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:102.360000px;}
.yf0{bottom:122.610000px;}
.y71{bottom:123.510000px;}
.y47{bottom:125.670000px;}
.y26{bottom:126.120000px;}
.y9c{bottom:130.080000px;}
.y143{bottom:132.510000px;}
.yef{bottom:140.250000px;}
.y46{bottom:143.310000px;}
.y25{bottom:143.670000px;}
.ybb{bottom:144.570000px;}
.y9b{bottom:147.630000px;}
.y142{bottom:150.150000px;}
.y164{bottom:151.680000px;}
.yf3{bottom:154.830000px;}
.yee{bottom:157.800000px;}
.y70{bottom:159.060000px;}
.y45{bottom:160.860000px;}
.y24{bottom:161.310000px;}
.y9a{bottom:165.270000px;}
.y141{bottom:167.700000px;}
.y163{bottom:169.320000px;}
.y6e{bottom:174.000000px;}
.yc5{bottom:176.400000px;}
.y44{bottom:178.500000px;}
.yb8{bottom:182.730000px;}
.y99{bottom:182.820000px;}
.y162{bottom:186.870000px;}
.y120{bottom:187.770000px;}
.yed{bottom:193.440000px;}
.yc4{bottom:193.950000px;}
.y140{bottom:194.250000px;}
.y43{bottom:196.050000px;}
.y23{bottom:196.860000px;}
.y98{bottom:209.460000px;}
.y13f{bottom:211.890000px;}
.ye2{bottom:212.700000px;}
.y161{bottom:213.510000px;}
.y42{bottom:213.600000px;}
.y22{bottom:214.500000px;}
.yb7{bottom:218.280000px;}
.y6d{bottom:219.000000px;}
.yec{bottom:225.660000px;}
.y13e{bottom:229.440000px;}
.ye1{bottom:230.250000px;}
.y160{bottom:231.060000px;}
.y21{bottom:232.050000px;}
.y11f{bottom:236.100000px;}
.y97{bottom:244.290000px;}
.y6c{bottom:246.270000px;}
.y13d{bottom:247.080000px;}
.ye0{bottom:247.890000px;}
.y15f{bottom:248.610000px;}
.y41{bottom:249.240000px;}
.y20{bottom:249.600000px;}
.y11e{bottom:253.650000px;}
.yb6{bottom:253.830000px;}
.y96{bottom:256.440000px;}
.yd1{bottom:260.040000px;}
.y13c{bottom:264.630000px;}
.ydf{bottom:265.440000px;}
.y40{bottom:266.790000px;}
.y1f{bottom:267.240000px;}
.y11d{bottom:271.200000px;}
.y6b{bottom:273.630000px;}
.y15e{bottom:275.250000px;}
.yde{bottom:283.080000px;}
.y95{bottom:283.800000px;}
.y3f{bottom:284.340000px;}
.y1e{bottom:284.790000px;}
.y11c{bottom:288.840000px;}
.yb5{bottom:289.470000px;}
.y13b{bottom:291.180000px;}
.y15d{bottom:292.800000px;}
.yd0{bottom:295.680000px;}
.ydd{bottom:300.630000px;}
.y69{bottom:300.990000px;}
.y3e{bottom:301.980000px;}
.y1d{bottom:302.340000px;}
.y11b{bottom:306.390000px;}
.y13a{bottom:308.820000px;}
.y94{bottom:311.160000px;}
.ydc{bottom:318.180000px;}
.y15c{bottom:319.440000px;}
.y3d{bottom:319.530000px;}
.y1c{bottom:319.980000px;}
.yb4{bottom:325.020000px;}
.ycf{bottom:327.900000px;}
.y139{bottom:335.370000px;}
.y15b{bottom:336.990000px;}
.y3c{bottom:337.170000px;}
.y1b{bottom:337.530000px;}
.y93{bottom:338.430000px;}
.y11a{bottom:341.940000px;}
.yb3{bottom:342.660000px;}
.ydb{bottom:344.820000px;}
.y68{bottom:345.900000px;}
.y138{bottom:353.010000px;}
.y3b{bottom:354.720000px;}
.y1a{bottom:355.170000px;}
.y119{bottom:359.580000px;}
.yb2{bottom:360.210000px;}
.y15a{bottom:363.540000px;}
.y92{bottom:365.790000px;}
.y137{bottom:370.560000px;}
.y118{bottom:377.130000px;}
.yb1{bottom:377.760000px;}
.yda{bottom:380.370000px;}
.y159{bottom:381.180000px;}
.y19{bottom:382.080000px;}
.y3a{bottom:390.270000px;}
.y8e{bottom:393.150000px;}
.y67{bottom:394.590000px;}
.y117{bottom:394.770000px;}
.yb0{bottom:395.400000px;}
.y136{bottom:397.110000px;}
.yd9{bottom:398.010000px;}
.y158{bottom:398.730000px;}
.y116{bottom:412.320000px;}
.yd8{bottom:415.560000px;}
.yaf{bottom:421.950000px;}
.y39{bottom:422.580000px;}
.y135{bottom:423.750000px;}
.y157{bottom:425.370000px;}
.y115{bottom:429.870000px;}
.y66{bottom:430.140000px;}
.y18{bottom:430.680000px;}
.yd7{bottom:433.110000px;}
.y134{bottom:441.300000px;}
.y156{bottom:442.920000px;}
.y65{bottom:447.780000px;}
.yd6{bottom:450.750000px;}
.yae{bottom:457.500000px;}
.y133{bottom:458.940000px;}
.y8d{bottom:460.110000px;}
.y64{bottom:465.330000px;}
.y114{bottom:465.510000px;}
.y17{bottom:467.670000px;}
.yd5{bottom:468.300000px;}
.y155{bottom:469.470000px;}
.yad{bottom:475.170000px;}
.y63{bottom:483.000000px;}
.y113{bottom:483.090000px;}
.y16{bottom:485.250000px;}
.y132{bottom:485.520000px;}
.y154{bottom:487.140000px;}
.yac{bottom:492.720000px;}
.y62{bottom:500.550000px;}
.y112{bottom:500.730000px;}
.y15{bottom:502.890000px;}
.y131{bottom:503.070000px;}
.yd4{bottom:503.970000px;}
.y153{bottom:504.690000px;}
.y8c{bottom:508.830000px;}
.yab{bottom:510.360000px;}
.y61{bottom:518.100000px;}
.y111{bottom:518.280000px;}
.y14{bottom:520.440000px;}
.y130{bottom:520.710000px;}
.y152{bottom:531.330000px;}
.y60{bottom:535.740000px;}
.y110{bottom:535.830000px;}
.yd3{bottom:536.190000px;}
.yaa{bottom:536.910000px;}
.y13{bottom:538.080000px;}
.y8b{bottom:544.470000px;}
.y12f{bottom:547.260000px;}
.y151{bottom:548.880000px;}
.y5f{bottom:553.290000px;}
.y10f{bottom:553.470000px;}
.y12{bottom:555.630000px;}
.y8a{bottom:562.020000px;}
.ye9{bottom:562.290000px;}
.y12e{bottom:564.900000px;}
.y5e{bottom:570.840000px;}
.y10e{bottom:571.020000px;}
.ya9{bottom:572.460000px;}
.y11{bottom:573.180000px;}
.y150{bottom:575.430000px;}
.y89{bottom:579.660000px;}
.ye8{bottom:579.840000px;}
.y12d{bottom:582.450000px;}
.ya8{bottom:587.490000px;}
.y10{bottom:590.820000px;}
.y14f{bottom:593.070000px;}
.y88{bottom:597.210000px;}
.ye7{bottom:597.390000px;}
.y5d{bottom:597.480000px;}
.yf2{bottom:601.530000px;}
.y10d{bottom:606.660000px;}
.yf{bottom:608.370000px;}
.y12c{bottom:609.360000px;}
.y87{bottom:614.760000px;}
.ya7{bottom:614.850000px;}
.ye6{bottom:615.030000px;}
.y14e{bottom:619.620000px;}
.y10c{bottom:624.210000px;}
.ye{bottom:625.920000px;}
.y5c{bottom:633.030000px;}
.yf1{bottom:633.750000px;}
.yce{bottom:636.270000px;}
.y14d{bottom:637.260000px;}
.y86{bottom:641.400000px;}
.y10b{bottom:641.760000px;}
.ya6{bottom:642.120000px;}
.yd{bottom:643.560000px;}
.ye5{bottom:650.580000px;}
.y5b{bottom:650.670000px;}
.y12b{bottom:657.600000px;}
.y10a{bottom:659.400000px;}
.yc{bottom:661.110000px;}
.y14c{bottom:663.810000px;}
.y5a{bottom:668.220000px;}
.ya5{bottom:669.480000px;}
.ycd{bottom:671.820000px;}
.yeb{bottom:676.770000px;}
.y85{bottom:677.310000px;}
.yb{bottom:678.750000px;}
.y14b{bottom:681.360000px;}
.ye4{bottom:682.800000px;}
.y12a{bottom:684.510000px;}
.y59{bottom:685.770000px;}
.y109{bottom:685.950000px;}
.yc3{bottom:686.760000px;}
.ya4{bottom:696.840000px;}
.y58{bottom:703.410000px;}
.ya{bottom:705.660000px;}
.y14a{bottom:708.000000px;}
.yea{bottom:708.990000px;}
.ycc{bottom:714.120000px;}
.y57{bottom:720.960000px;}
.y108{bottom:721.590000px;}
.y129{bottom:721.860000px;}
.ya0{bottom:724.110000px;}
.y84{bottom:725.550000px;}
.y56{bottom:738.600000px;}
.y107{bottom:739.140000px;}
.ycb{bottom:741.480000px;}
.y83{bottom:743.190000px;}
.ya3{bottom:751.470000px;}
.y9{bottom:753.900000px;}
.y55{bottom:756.150000px;}
.y106{bottom:756.690000px;}
.y82{bottom:760.740000px;}
.yca{bottom:768.750000px;}
.y128{bottom:770.190000px;}
.y54{bottom:773.700000px;}
.y105{bottom:774.330000px;}
.y81{bottom:778.290000px;}
.y149{bottom:787.290000px;}
.y127{bottom:787.740000px;}
.y8{bottom:789.450000px;}
.y53{bottom:791.340000px;}
.y80{bottom:795.930000px;}
.yc9{bottom:796.110000px;}
.y9f{bottom:800.160000px;}
.y148{bottom:804.930000px;}
.y126{bottom:805.290000px;}
.y104{bottom:809.880000px;}
.y7f{bottom:813.480000px;}
.y169{bottom:822.480000px;}
.y125{bottom:822.930000px;}
.yc8{bottom:823.470000px;}
.y52{bottom:824.280000px;}
.y7{bottom:825.090000px;}
.y103{bottom:827.520000px;}
.y147{bottom:831.480000px;}
.y9e{bottom:835.800000px;}
.y168{bottom:840.030000px;}
.y124{bottom:840.480000px;}
.yd2{bottom:844.440000px;}
.y102{bottom:845.070000px;}
.y7e{bottom:849.030000px;}
.yc6{bottom:850.830000px;}
.y51{bottom:851.640000px;}
.y167{bottom:857.670000px;}
.y123{bottom:858.030000px;}
.y101{bottom:862.620000px;}
.y38{bottom:862.980000px;}
.y6{bottom:863.899500px;}
.y7d{bottom:866.670000px;}
.y9d{bottom:868.020000px;}
.y166{bottom:875.220000px;}
.y122{bottom:875.670000px;}
.y4f{bottom:879.000000px;}
.y100{bottom:880.260000px;}
.y5{bottom:881.479500px;}
.y7c{bottom:884.220000px;}
.y121{bottom:893.220000px;}
.yff{bottom:897.810000px;}
.y4{bottom:899.059500px;}
.yc2{bottom:900.240000px;}
.y7b{bottom:901.860000px;}
.y4d{bottom:906.270000px;}
.y146{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.yfe{bottom:915.450000px;}
.y7a{bottom:919.410000px;}
.yba{bottom:927.600000px;}
.y145{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y3{bottom:932.610000px;}
.ye3{bottom:936.240000px;}
.yfd{bottom:942.000000px;}
.y144{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.yc1{bottom:954.870000px;}
.y4c{bottom:954.960000px;}
.y165{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y79{bottom:972.600000px;}
.yfc{bottom:977.550000px;}
.y28{bottom:980.374500px;}
.y33{bottom:981.600000px;}
.yc0{bottom:982.230000px;}
.y78{bottom:990.150000px;}
.yfb{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.y77{bottom:1007.790000px;}
.y27{bottom:1009.174500px;}
.ybe{bottom:1009.590000px;}
.yfa{bottom:1012.770000px;}
.y31{bottom:1016.820000px;}
.y4b{bottom:1017.180000px;}
.y76{bottom:1025.370000px;}
.yf9{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y4a{bottom:1034.820000px;}
.ybd{bottom:1036.890000px;}
.yf8{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y49{bottom:1052.370000px;}
.y75{bottom:1060.920000px;}
.ybc{bottom:1064.250000px;}
.yf7{bottom:1065.510000px;}
.y48{bottom:1069.920000px;}
.y74{bottom:1078.560000px;}
.yf6{bottom:1083.150000px;}
.y2e{bottom:1087.560000px;}
.yb9{bottom:1091.610000px;}
.y73{bottom:1096.110000px;}
.yf5{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y72{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.yf4{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h16{height:26.580000px;}
.hb{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:29.368828px;}
.h5{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.he{height:44.100000px;}
.hf{height:44.190000px;}
.h18{height:48.600000px;}
.hc{height:50.902383px;}
.h6{height:52.311445px;}
.h13{height:54.000000px;}
.h7{height:55.779258px;}
.h4{height:57.323320px;}
.h14{height:59.973223px;}
.h19{height:61.793886px;}
.ha{height:62.585859px;}
.h11{height:66.240000px;}
.h8{height:67.312500px;}
.h9{height:68.582109px;}
.h15{height:163.290000px;}
.h17{height:212.670000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:48.960000px;}
.w5{width:84.690000px;}
.w17{width:85.230000px;}
.w15{width:85.260000px;}
.w13{width:85.950000px;}
.w12{width:96.390000px;}
.w14{width:98.460000px;}
.w16{width:98.550000px;}
.w1d{width:99.480000px;}
.wc{width:100.530000px;}
.wd{width:100.560000px;}
.w1c{width:104.130000px;}
.wb{width:107.280000px;}
.we{width:107.670000px;}
.w8{width:108.660000px;}
.w6{width:112.530000px;}
.w1f{width:112.950000px;}
.w1b{width:114.210000px;}
.w1e{width:114.750000px;}
.w1a{width:114.780000px;}
.w3{width:119.250000px;}
.w4{width:127.920000px;}
.wf{width:183.150000px;}
.w10{width:184.440000px;}
.w11{width:184.500000px;}
.wa{width:201.810000px;}
.w9{width:208.530000px;}
.w7{width:570.360000px;}
.w19{width:663.990000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.650000px;}
.x1{left:68.040000px;}
.x2{left:70.101000px;}
.x1b{left:89.730000px;}
.xa{left:104.850000px;}
.x2d{left:110.609987px;}
.x15{left:115.650000px;}
.x1c{left:139.500000px;}
.xc{left:178.140000px;}
.x3{left:201.539987px;}
.x22{left:215.219987px;}
.xb{left:218.100000px;}
.x14{left:223.229987px;}
.x1d{left:255.000000px;}
.x24{left:276.329987px;}
.x6{left:279.930000px;}
.xf{left:286.140000px;}
.x12{left:302.519987px;}
.x2b{left:306.119987px;}
.x25{left:309.179987px;}
.x27{left:311.609987px;}
.x29{left:312.689987px;}
.x18{left:321.330000px;}
.x1e{left:369.930000px;}
.xd{left:387.390000px;}
.x8{left:399.990000px;}
.x16{left:408.000000px;}
.x1f{left:474.780000px;}
.x10{left:488.640000px;}
.x19{left:507.180000px;}
.x9{left:528.720000px;}
.x20{left:575.070000px;}
.xe{left:589.920000px;}
.x17{left:593.160000px;}
.x23{left:687.389987px;}
.x21{left:688.559987px;}
.x11{left:691.170000px;}
.x1a{left:692.430000px;}
.x2c{left:767.309987px;}
.x26{left:775.139987px;}
.x13{left:777.749987px;}
.x28{left:780.809987px;}
.x4{left:792.059987px;}
.x5{left:793.859987px;}
.x2a{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.395200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.138667pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls2{letter-spacing:-0.080000pt;}
.ls18{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls3{letter-spacing:-0.005333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.053760pt;}
.ls6{letter-spacing:0.065920pt;}
.lsf{letter-spacing:0.066133pt;}
.ls4{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.101867pt;}
.lsa{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.157333pt;}
.ls9{letter-spacing:1.363200pt;}
.ls17{letter-spacing:5.843200pt;}
.ls0{letter-spacing:11.909120pt;}
.lse{letter-spacing:31.863680pt;}
.ls16{letter-spacing:40.183680pt;}
.ls12{letter-spacing:60.663680pt;}
.ls7{letter-spacing:65.640320pt;}
.ls15{letter-spacing:69.623680pt;}
.ws2{word-spacing:-23.325120pt;}
.ws5{word-spacing:-12.883200pt;}
.ws10{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.914133pt;}
.wse{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.822933pt;}
.ws12{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.618133pt;}
.wsf{word-spacing:-11.590933pt;}
.ws15{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.236800pt;}
.ws11{word-spacing:-7.603200pt;}
.wsc{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.037333pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:0.048000pt;}
.ws8{word-spacing:0.053333pt;}
.wsb{word-spacing:0.085333pt;}
.wsd{word-spacing:0.106667pt;}
.ws7{word-spacing:0.234667pt;}
.ws4{word-spacing:69.426560pt;}
._a{margin-left:-3.099734pt;}
._b{margin-left:-1.919252pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.927893pt;}
._2{width:1.870400pt;}
._3{width:2.778666pt;}
._4{width:3.882775pt;}
._6{width:5.450666pt;}
._9{width:6.466668pt;}
._8{width:7.480000pt;}
._5{width:8.550400pt;}
._7{width:9.993066pt;}
._f{width:12.871787pt;}
._e{width:13.947840pt;}
._c{width:15.176960pt;}
._d{width:16.265172pt;}
._12{width:17.207680pt;}
._13{width:18.383360pt;}
._10{width:20.307200pt;}
._11{width:21.296959pt;}
._17{width:32.438080pt;}
._18{width:33.592532pt;}
._14{width:55.978240pt;}
._15{width:56.914240pt;}
._16{width:109.238187pt;}
._19{width:126.866560pt;}
.fs0{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.960000pt;}
.ybf{bottom:6.986667pt;}
.y4e{bottom:7.040000pt;}
.y91{bottom:10.960000pt;}
.ya2{bottom:11.680000pt;}
.y6a{bottom:22.560000pt;}
.y6f{bottom:22.640000pt;}
.yc7{bottom:26.560000pt;}
.y90{bottom:26.640000pt;}
.ya1{bottom:31.360000pt;}
.y8f{bottom:42.240000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.986667pt;}
.yf0{bottom:108.986667pt;}
.y71{bottom:109.786667pt;}
.y47{bottom:111.706667pt;}
.y26{bottom:112.106667pt;}
.y9c{bottom:115.626667pt;}
.y143{bottom:117.786667pt;}
.yef{bottom:124.666667pt;}
.y46{bottom:127.386667pt;}
.y25{bottom:127.706667pt;}
.ybb{bottom:128.506667pt;}
.y9b{bottom:131.226667pt;}
.y142{bottom:133.466667pt;}
.y164{bottom:134.826667pt;}
.yf3{bottom:137.626667pt;}
.yee{bottom:140.266667pt;}
.y70{bottom:141.386667pt;}
.y45{bottom:142.986667pt;}
.y24{bottom:143.386667pt;}
.y9a{bottom:146.906667pt;}
.y141{bottom:149.066667pt;}
.y163{bottom:150.506667pt;}
.y6e{bottom:154.666667pt;}
.yc5{bottom:156.800000pt;}
.y44{bottom:158.666667pt;}
.yb8{bottom:162.426667pt;}
.y99{bottom:162.506667pt;}
.y162{bottom:166.106667pt;}
.y120{bottom:166.906667pt;}
.yed{bottom:171.946667pt;}
.yc4{bottom:172.400000pt;}
.y140{bottom:172.666667pt;}
.y43{bottom:174.266667pt;}
.y23{bottom:174.986667pt;}
.y98{bottom:186.186667pt;}
.y13f{bottom:188.346667pt;}
.ye2{bottom:189.066667pt;}
.y161{bottom:189.786667pt;}
.y42{bottom:189.866667pt;}
.y22{bottom:190.666667pt;}
.yb7{bottom:194.026667pt;}
.y6d{bottom:194.666667pt;}
.yec{bottom:200.586667pt;}
.y13e{bottom:203.946667pt;}
.ye1{bottom:204.666667pt;}
.y160{bottom:205.386667pt;}
.y21{bottom:206.266667pt;}
.y11f{bottom:209.866667pt;}
.y97{bottom:217.146667pt;}
.y6c{bottom:218.906667pt;}
.y13d{bottom:219.626667pt;}
.ye0{bottom:220.346667pt;}
.y15f{bottom:220.986667pt;}
.y41{bottom:221.546667pt;}
.y20{bottom:221.866667pt;}
.y11e{bottom:225.466667pt;}
.yb6{bottom:225.626667pt;}
.y96{bottom:227.946667pt;}
.yd1{bottom:231.146667pt;}
.y13c{bottom:235.226667pt;}
.ydf{bottom:235.946667pt;}
.y40{bottom:237.146667pt;}
.y1f{bottom:237.546667pt;}
.y11d{bottom:241.066667pt;}
.y6b{bottom:243.226667pt;}
.y15e{bottom:244.666667pt;}
.yde{bottom:251.626667pt;}
.y95{bottom:252.266667pt;}
.y3f{bottom:252.746667pt;}
.y1e{bottom:253.146667pt;}
.y11c{bottom:256.746667pt;}
.yb5{bottom:257.306667pt;}
.y13b{bottom:258.826667pt;}
.y15d{bottom:260.266667pt;}
.yd0{bottom:262.826667pt;}
.ydd{bottom:267.226667pt;}
.y69{bottom:267.546667pt;}
.y3e{bottom:268.426667pt;}
.y1d{bottom:268.746667pt;}
.y11b{bottom:272.346667pt;}
.y13a{bottom:274.506667pt;}
.y94{bottom:276.586667pt;}
.ydc{bottom:282.826667pt;}
.y15c{bottom:283.946667pt;}
.y3d{bottom:284.026667pt;}
.y1c{bottom:284.426667pt;}
.yb4{bottom:288.906667pt;}
.ycf{bottom:291.466667pt;}
.y139{bottom:298.106667pt;}
.y15b{bottom:299.546667pt;}
.y3c{bottom:299.706667pt;}
.y1b{bottom:300.026667pt;}
.y93{bottom:300.826667pt;}
.y11a{bottom:303.946667pt;}
.yb3{bottom:304.586667pt;}
.ydb{bottom:306.506667pt;}
.y68{bottom:307.466667pt;}
.y138{bottom:313.786667pt;}
.y3b{bottom:315.306667pt;}
.y1a{bottom:315.706667pt;}
.y119{bottom:319.626667pt;}
.yb2{bottom:320.186667pt;}
.y15a{bottom:323.146667pt;}
.y92{bottom:325.146667pt;}
.y137{bottom:329.386667pt;}
.y118{bottom:335.226667pt;}
.yb1{bottom:335.786667pt;}
.yda{bottom:338.106667pt;}
.y159{bottom:338.826667pt;}
.y19{bottom:339.626667pt;}
.y3a{bottom:346.906667pt;}
.y8e{bottom:349.466667pt;}
.y67{bottom:350.746667pt;}
.y117{bottom:350.906667pt;}
.yb0{bottom:351.466667pt;}
.y136{bottom:352.986667pt;}
.yd9{bottom:353.786667pt;}
.y158{bottom:354.426667pt;}
.y116{bottom:366.506667pt;}
.yd8{bottom:369.386667pt;}
.yaf{bottom:375.066667pt;}
.y39{bottom:375.626667pt;}
.y135{bottom:376.666667pt;}
.y157{bottom:378.106667pt;}
.y115{bottom:382.106667pt;}
.y66{bottom:382.346667pt;}
.y18{bottom:382.826667pt;}
.yd7{bottom:384.986667pt;}
.y134{bottom:392.266667pt;}
.y156{bottom:393.706667pt;}
.y65{bottom:398.026667pt;}
.yd6{bottom:400.666667pt;}
.yae{bottom:406.666667pt;}
.y133{bottom:407.946667pt;}
.y8d{bottom:408.986667pt;}
.y64{bottom:413.626667pt;}
.y114{bottom:413.786667pt;}
.y17{bottom:415.706667pt;}
.yd5{bottom:416.266667pt;}
.y155{bottom:417.306667pt;}
.yad{bottom:422.373333pt;}
.y63{bottom:429.333333pt;}
.y113{bottom:429.413333pt;}
.y16{bottom:431.333333pt;}
.y132{bottom:431.573333pt;}
.y154{bottom:433.013333pt;}
.yac{bottom:437.973333pt;}
.y62{bottom:444.933333pt;}
.y112{bottom:445.093333pt;}
.y15{bottom:447.013333pt;}
.y131{bottom:447.173333pt;}
.yd4{bottom:447.973333pt;}
.y153{bottom:448.613333pt;}
.y8c{bottom:452.293333pt;}
.yab{bottom:453.653333pt;}
.y61{bottom:460.533333pt;}
.y111{bottom:460.693333pt;}
.y14{bottom:462.613333pt;}
.y130{bottom:462.853333pt;}
.y152{bottom:472.293333pt;}
.y60{bottom:476.213333pt;}
.y110{bottom:476.293333pt;}
.yd3{bottom:476.613333pt;}
.yaa{bottom:477.253333pt;}
.y13{bottom:478.293333pt;}
.y8b{bottom:483.973333pt;}
.y12f{bottom:486.453333pt;}
.y151{bottom:487.893333pt;}
.y5f{bottom:491.813333pt;}
.y10f{bottom:491.973333pt;}
.y12{bottom:493.893333pt;}
.y8a{bottom:499.573333pt;}
.ye9{bottom:499.813333pt;}
.y12e{bottom:502.133333pt;}
.y5e{bottom:507.413333pt;}
.y10e{bottom:507.573333pt;}
.ya9{bottom:508.853333pt;}
.y11{bottom:509.493333pt;}
.y150{bottom:511.493333pt;}
.y89{bottom:515.253333pt;}
.ye8{bottom:515.413333pt;}
.y12d{bottom:517.733333pt;}
.ya8{bottom:522.213333pt;}
.y10{bottom:525.173333pt;}
.y14f{bottom:527.173333pt;}
.y88{bottom:530.853333pt;}
.ye7{bottom:531.013333pt;}
.y5d{bottom:531.093333pt;}
.yf2{bottom:534.693333pt;}
.y10d{bottom:539.253333pt;}
.yf{bottom:540.773333pt;}
.y12c{bottom:541.653333pt;}
.y87{bottom:546.453333pt;}
.ya7{bottom:546.533333pt;}
.ye6{bottom:546.693333pt;}
.y14e{bottom:550.773333pt;}
.y10c{bottom:554.853333pt;}
.ye{bottom:556.373333pt;}
.y5c{bottom:562.693333pt;}
.yf1{bottom:563.333333pt;}
.yce{bottom:565.573333pt;}
.y14d{bottom:566.453333pt;}
.y86{bottom:570.133333pt;}
.y10b{bottom:570.453333pt;}
.ya6{bottom:570.773333pt;}
.yd{bottom:572.053333pt;}
.ye5{bottom:578.293333pt;}
.y5b{bottom:578.373333pt;}
.y12b{bottom:584.533333pt;}
.y10a{bottom:586.133333pt;}
.yc{bottom:587.653333pt;}
.y14c{bottom:590.053333pt;}
.y5a{bottom:593.973333pt;}
.ya5{bottom:595.093333pt;}
.ycd{bottom:597.173333pt;}
.yeb{bottom:601.573333pt;}
.y85{bottom:602.053333pt;}
.yb{bottom:603.333333pt;}
.y14b{bottom:605.653333pt;}
.ye4{bottom:606.933333pt;}
.y12a{bottom:608.453333pt;}
.y59{bottom:609.573333pt;}
.y109{bottom:609.733333pt;}
.yc3{bottom:610.453333pt;}
.ya4{bottom:619.413333pt;}
.y58{bottom:625.253333pt;}
.ya{bottom:627.253333pt;}
.y14a{bottom:629.333333pt;}
.yea{bottom:630.213333pt;}
.ycc{bottom:634.773333pt;}
.y57{bottom:640.853333pt;}
.y108{bottom:641.413333pt;}
.y129{bottom:641.653333pt;}
.ya0{bottom:643.653333pt;}
.y84{bottom:644.933333pt;}
.y56{bottom:656.533333pt;}
.y107{bottom:657.013333pt;}
.ycb{bottom:659.093333pt;}
.y83{bottom:660.613333pt;}
.ya3{bottom:667.973333pt;}
.y9{bottom:670.133333pt;}
.y55{bottom:672.133333pt;}
.y106{bottom:672.613333pt;}
.y82{bottom:676.213333pt;}
.yca{bottom:683.333333pt;}
.y128{bottom:684.613333pt;}
.y54{bottom:687.733333pt;}
.y105{bottom:688.293333pt;}
.y81{bottom:691.813333pt;}
.y149{bottom:699.813333pt;}
.y127{bottom:700.213333pt;}
.y8{bottom:701.733333pt;}
.y53{bottom:703.413333pt;}
.y80{bottom:707.493333pt;}
.yc9{bottom:707.653333pt;}
.y9f{bottom:711.253333pt;}
.y148{bottom:715.493333pt;}
.y126{bottom:715.813333pt;}
.y104{bottom:719.893333pt;}
.y7f{bottom:723.093333pt;}
.y169{bottom:731.093333pt;}
.y125{bottom:731.493333pt;}
.yc8{bottom:731.973333pt;}
.y52{bottom:732.693333pt;}
.y7{bottom:733.413333pt;}
.y103{bottom:735.573333pt;}
.y147{bottom:739.093333pt;}
.y9e{bottom:742.933333pt;}
.y168{bottom:746.693333pt;}
.y124{bottom:747.093333pt;}
.yd2{bottom:750.613333pt;}
.y102{bottom:751.173333pt;}
.y7e{bottom:754.693333pt;}
.yc6{bottom:756.293333pt;}
.y51{bottom:757.013333pt;}
.y167{bottom:762.373333pt;}
.y123{bottom:762.693333pt;}
.y101{bottom:766.773333pt;}
.y38{bottom:767.093333pt;}
.y6{bottom:767.910667pt;}
.y7d{bottom:770.373333pt;}
.y9d{bottom:771.573333pt;}
.y166{bottom:777.973333pt;}
.y122{bottom:778.373333pt;}
.y4f{bottom:781.333333pt;}
.y100{bottom:782.453333pt;}
.y5{bottom:783.537333pt;}
.y7c{bottom:785.973333pt;}
.y121{bottom:793.973333pt;}
.yff{bottom:798.053333pt;}
.y4{bottom:799.164000pt;}
.yc2{bottom:800.213333pt;}
.y7b{bottom:801.653333pt;}
.y4d{bottom:805.573333pt;}
.y146{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.yfe{bottom:813.733333pt;}
.y7a{bottom:817.253333pt;}
.yba{bottom:824.533333pt;}
.y145{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y3{bottom:828.986667pt;}
.ye3{bottom:832.213333pt;}
.yfd{bottom:837.333333pt;}
.y144{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.yc1{bottom:848.773333pt;}
.y4c{bottom:848.853333pt;}
.y165{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y79{bottom:864.533333pt;}
.yfc{bottom:868.933333pt;}
.y28{bottom:871.444000pt;}
.y33{bottom:872.533333pt;}
.yc0{bottom:873.093333pt;}
.y78{bottom:880.133333pt;}
.yfb{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.y77{bottom:895.813333pt;}
.y27{bottom:897.044000pt;}
.ybe{bottom:897.413333pt;}
.yfa{bottom:900.240000pt;}
.y31{bottom:903.840000pt;}
.y4b{bottom:904.160000pt;}
.y76{bottom:911.440000pt;}
.yf9{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y4a{bottom:919.840000pt;}
.ybd{bottom:921.680000pt;}
.yf8{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y49{bottom:935.440000pt;}
.y75{bottom:943.040000pt;}
.ybc{bottom:946.000000pt;}
.yf7{bottom:947.120000pt;}
.y48{bottom:951.040000pt;}
.y74{bottom:958.720000pt;}
.yf6{bottom:962.800000pt;}
.y2e{bottom:966.720000pt;}
.yb9{bottom:970.320000pt;}
.y73{bottom:974.320000pt;}
.yf5{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y72{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.yf4{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h16{height:23.626667pt;}
.hb{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.105625pt;}
.h5{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.he{height:39.200000pt;}
.hf{height:39.280000pt;}
.h18{height:43.200000pt;}
.hc{height:45.246562pt;}
.h6{height:46.499062pt;}
.h13{height:48.000000pt;}
.h7{height:49.581562pt;}
.h4{height:50.954062pt;}
.h14{height:53.309531pt;}
.h19{height:54.927899pt;}
.ha{height:55.631875pt;}
.h11{height:58.880000pt;}
.h8{height:59.833333pt;}
.h9{height:60.961875pt;}
.h15{height:145.146667pt;}
.h17{height:189.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:43.520000pt;}
.w5{width:75.280000pt;}
.w17{width:75.760000pt;}
.w15{width:75.786667pt;}
.w13{width:76.400000pt;}
.w12{width:85.680000pt;}
.w14{width:87.520000pt;}
.w16{width:87.600000pt;}
.w1d{width:88.426667pt;}
.wc{width:89.360000pt;}
.wd{width:89.386667pt;}
.w1c{width:92.560000pt;}
.wb{width:95.360000pt;}
.we{width:95.706667pt;}
.w8{width:96.586667pt;}
.w6{width:100.026667pt;}
.w1f{width:100.400000pt;}
.w1b{width:101.520000pt;}
.w1e{width:102.000000pt;}
.w1a{width:102.026667pt;}
.w3{width:106.000000pt;}
.w4{width:113.706667pt;}
.wf{width:162.800000pt;}
.w10{width:163.946667pt;}
.w11{width:164.000000pt;}
.wa{width:179.386667pt;}
.w9{width:185.360000pt;}
.w7{width:506.986667pt;}
.w19{width:590.213333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.800000pt;}
.x1{left:60.480000pt;}
.x2{left:62.312000pt;}
.x1b{left:79.760000pt;}
.xa{left:93.200000pt;}
.x2d{left:98.319988pt;}
.x15{left:102.800000pt;}
.x1c{left:124.000000pt;}
.xc{left:158.346667pt;}
.x3{left:179.146655pt;}
.x22{left:191.306655pt;}
.xb{left:193.866667pt;}
.x14{left:198.426655pt;}
.x1d{left:226.666667pt;}
.x24{left:245.626655pt;}
.x6{left:248.826667pt;}
.xf{left:254.346667pt;}
.x12{left:268.906655pt;}
.x2b{left:272.106655pt;}
.x25{left:274.826655pt;}
.x27{left:276.986655pt;}
.x29{left:277.946655pt;}
.x18{left:285.626667pt;}
.x1e{left:328.826667pt;}
.xd{left:344.346667pt;}
.x8{left:355.546667pt;}
.x16{left:362.666667pt;}
.x1f{left:422.026667pt;}
.x10{left:434.346667pt;}
.x19{left:450.826667pt;}
.x9{left:469.973333pt;}
.x20{left:511.173333pt;}
.xe{left:524.373333pt;}
.x17{left:527.253333pt;}
.x23{left:611.013322pt;}
.x21{left:612.053322pt;}
.x11{left:614.373333pt;}
.x1a{left:615.493333pt;}
.x2c{left:682.053322pt;}
.x26{left:689.013322pt;}
.x13{left:691.333322pt;}
.x28{left:694.053322pt;}
.x4{left:704.053322pt;}
.x5{left:705.653322pt;}
.x2a{left:711.013322pt;}
}




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