
    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_37fca18fec8f2f8bd9626eee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9e94a5f591e88356c58291db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_5403dfa2318efe871da4f2d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_c359ce404436ea428a91b58d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_6a4147865f49781e063f0c70.woff2')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_a147a358c9ef9e4b4728d607.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_3909c40d9a74d8df1db14b7b.woff2')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;}
.m3{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,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(0.367650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-93.600000px;}
.v5{vertical-align:-70.560000px;}
.v4{vertical-align:-69.120000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1e{letter-spacing:-2.880000px;}
.ls16{letter-spacing:-2.052000px;}
.ls1d{letter-spacing:-1.746000px;}
.ls8{letter-spacing:-1.530000px;}
.ls9{letter-spacing:-1.476000px;}
.ls22{letter-spacing:-1.458000px;}
.ls11{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.422000px;}
.lsc{letter-spacing:-1.134000px;}
.ls1b{letter-spacing:-0.972000px;}
.ls20{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.507000px;}
.ls23{letter-spacing:-0.466800px;}
.lsb{letter-spacing:-0.457800px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.118080px;}
.ls12{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.161280px;}
.lse{letter-spacing:0.178560px;}
.ls10{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.357120px;}
.lsd{letter-spacing:0.452160px;}
.ls21{letter-spacing:0.466800px;}
.ls25{letter-spacing:0.507000px;}
.ls5{letter-spacing:0.630720px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.732000px;}
.ls15{letter-spacing:0.828000px;}
.lsa{letter-spacing:1.440000px;}
.ls18{letter-spacing:5.040000px;}
.ls24{letter-spacing:6.480000px;}
.lsf{letter-spacing:7.344000px;}
.ls13{letter-spacing:12.793440px;}
.ls4{letter-spacing:21.433440px;}
.ls17{letter-spacing:747.096000px;}
.ls1c{letter-spacing:955.896000px;}
.ls19{letter-spacing:991.896000px;}
.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;}
}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws1{word-spacing:-22.590000px;}
.ws7{word-spacing:-20.880000px;}
.ws4{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.440000px;}
.wsf{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.964000px;}
.ws10{word-spacing:-17.388000px;}
.wse{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.102200px;}
.ws6{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.627000px;}
.ws18{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.426000px;}
.wsa{word-spacing:-15.120000px;}
.ws15{word-spacing:-14.814000px;}
.ws1a{word-spacing:-14.653200px;}
.ws1c{word-spacing:-14.613000px;}
.ws11{word-spacing:-14.508000px;}
.ws16{word-spacing:-14.400000px;}
.ws17{word-spacing:-14.184000px;}
.ws14{word-spacing:-14.148000px;}
.ws12{word-spacing:-13.698000px;}
.ws13{word-spacing:-13.680000px;}
.ws19{word-spacing:-13.662000px;}
.ws1d{word-spacing:-12.240000px;}
.ws9{word-spacing:0.000000px;}
._22{margin-left:-7.920000px;}
._26{margin-left:-5.510880px;}
._3{margin-left:-3.791040px;}
._4{margin-left:-2.512320px;}
._0{margin-left:-1.451520px;}
._1{width:1.330560px;}
._2{width:2.901120px;}
._9{width:4.126560px;}
._7{width:5.745600px;}
._8{width:7.392000px;}
._13{width:8.466240px;}
._b{width:9.519360px;}
._a{width:10.732800px;}
._6{width:11.952000px;}
._5{width:13.063680px;}
._12{width:14.780160px;}
._25{width:16.692480px;}
._15{width:17.761920px;}
._f{width:19.064640px;}
._e{width:20.265600px;}
._d{width:21.302400px;}
._c{width:22.317120px;}
._1a{width:23.513760px;}
._10{width:24.635520px;}
._11{width:25.990080px;}
._16{width:27.301440px;}
._18{width:28.848000px;}
._19{width:29.946720px;}
._1e{width:31.176960px;}
._20{width:33.085920px;}
._14{width:34.097280px;}
._23{width:35.686080px;}
._24{width:36.747840px;}
._17{width:38.550240px;}
._1c{width:40.342080px;}
._1b{width:41.945760px;}
._1d{width:43.030080px;}
._21{width:45.522720px;}
._1f{width:55.334400px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fsa{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs9{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:3.600000px;}
.y69{bottom:4.320000px;}
.yd5{bottom:6.480000px;}
.yd7{bottom:6.840000px;}
.ydb{bottom:6.870000px;}
.yd9{bottom:7.200000px;}
.ye2{bottom:7.245000px;}
.yb4{bottom:21.600000px;}
.y68{bottom:104.796000px;}
.y6a{bottom:106.236000px;}
.ya5{bottom:108.036000px;}
.y2{bottom:109.476000px;}
.y9e{bottom:111.276000px;}
.yf5{bottom:139.716000px;}
.y67{bottom:144.756000px;}
.y146{bottom:147.996000px;}
.y33{bottom:152.310000px;}
.yf1{bottom:154.110000px;}
.y9c{bottom:155.190000px;}
.yf4{bottom:158.790000px;}
.y66{bottom:163.830000px;}
.y145{bottom:165.270000px;}
.y32{bottom:171.390000px;}
.y10d{bottom:172.110000px;}
.yf0{bottom:173.190000px;}
.y9b{bottom:174.270000px;}
.yc7{bottom:174.630000px;}
.ya4{bottom:176.070000px;}
.yf3{bottom:177.510000px;}
.y144{bottom:182.550000px;}
.y65{bottom:182.910000px;}
.y10c{bottom:189.390000px;}
.y31{bottom:190.470000px;}
.yef{bottom:192.270000px;}
.y9a{bottom:193.350000px;}
.ya3{bottom:194.835000px;}
.yf2{bottom:196.635000px;}
.y143{bottom:199.875000px;}
.y64{bottom:202.035000px;}
.y10b{bottom:206.715000px;}
.y30{bottom:209.235000px;}
.yee{bottom:211.035000px;}
.y99{bottom:212.115000px;}
.ya2{bottom:213.915000px;}
.y142{bottom:217.155000px;}
.y63{bottom:220.755000px;}
.y10a{bottom:223.995000px;}
.y2f{bottom:228.315000px;}
.yed{bottom:230.115000px;}
.y98{bottom:231.195000px;}
.ya1{bottom:232.995000px;}
.y141{bottom:234.435000px;}
.y62{bottom:239.835000px;}
.y109{bottom:241.275000px;}
.y2e{bottom:247.395000px;}
.yec{bottom:249.195000px;}
.y97{bottom:250.275000px;}
.y140{bottom:251.355000px;}
.ya0{bottom:251.715000px;}
.y108{bottom:258.555000px;}
.y61{bottom:258.915000px;}
.y2d{bottom:266.475000px;}
.yeb{bottom:267.915000px;}
.y13f{bottom:268.635000px;}
.y96{bottom:270.795000px;}
.y107{bottom:275.835000px;}
.y60{bottom:277.635000px;}
.y2c{bottom:285.195000px;}
.y13e{bottom:285.915000px;}
.yea{bottom:286.995000px;}
.y95{bottom:289.875000px;}
.y106{bottom:292.755000px;}
.y5f{bottom:296.715000px;}
.y13d{bottom:303.195000px;}
.y2b{bottom:304.275000px;}
.ye9{bottom:306.075000px;}
.y94{bottom:308.955000px;}
.y105{bottom:310.035000px;}
.y5e{bottom:315.795000px;}
.y13c{bottom:320.505000px;}
.y2a{bottom:323.385000px;}
.ye8{bottom:325.185000px;}
.y104{bottom:327.345000px;}
.y93{bottom:327.705000px;}
.y5d{bottom:334.545000px;}
.y13b{bottom:337.785000px;}
.y29{bottom:342.105000px;}
.ye7{bottom:343.905000px;}
.y103{bottom:344.625000px;}
.y92{bottom:346.785000px;}
.y5c{bottom:353.625000px;}
.y13a{bottom:355.065000px;}
.y28{bottom:361.185000px;}
.y102{bottom:361.905000px;}
.ye6{bottom:362.985000px;}
.y91{bottom:365.865000px;}
.y9f{bottom:366.945000px;}
.y139{bottom:372.345000px;}
.y5b{bottom:372.705000px;}
.y101{bottom:379.185000px;}
.y27{bottom:380.265000px;}
.ye5{bottom:382.065000px;}
.yc6{bottom:383.145000px;}
.y90{bottom:384.585000px;}
.y138{bottom:389.625000px;}
.y5a{bottom:391.785000px;}
.y100{bottom:396.465000px;}
.y26{bottom:398.985000px;}
.yc5{bottom:402.225000px;}
.ye4{bottom:402.585000px;}
.y8f{bottom:403.665000px;}
.y137{bottom:406.905000px;}
.y59{bottom:410.505000px;}
.yff{bottom:413.745000px;}
.y25{bottom:418.065000px;}
.ye3{bottom:418.425000px;}
.yc4{bottom:421.305000px;}
.y8e{bottom:422.745000px;}
.y136{bottom:424.185000px;}
.y58{bottom:429.585000px;}
.yfe{bottom:431.025000px;}
.y24{bottom:437.145000px;}
.ye1{bottom:439.665000px;}
.yc3{bottom:440.385000px;}
.y135{bottom:441.105000px;}
.y8d{bottom:441.465000px;}
.yfd{bottom:448.350000px;}
.y57{bottom:448.710000px;}
.y23{bottom:456.270000px;}
.y134{bottom:458.430000px;}
.yc2{bottom:459.150000px;}
.y8c{bottom:460.590000px;}
.ye0{bottom:461.310000px;}
.yfc{bottom:465.630000px;}
.y56{bottom:467.430000px;}
.y22{bottom:474.990000px;}
.y133{bottom:475.710000px;}
.yc1{bottom:478.230000px;}
.y8b{bottom:479.670000px;}
.ydf{bottom:482.550000px;}
.y55{bottom:486.510000px;}
.y132{bottom:492.990000px;}
.y21{bottom:494.070000px;}
.y8a{bottom:498.750000px;}
.yfb{bottom:499.830000px;}
.yde{bottom:503.790000px;}
.y54{bottom:505.590000px;}
.y131{bottom:510.270000px;}
.y20{bottom:513.150000px;}
.y150{bottom:514.230000px;}
.y89{bottom:517.470000px;}
.yc0{bottom:517.830000px;}
.yfa{bottom:519.630000px;}
.y53{bottom:524.310000px;}
.ydd{bottom:525.390000px;}
.y130{bottom:527.550000px;}
.y1f{bottom:531.870000px;}
.y14f{bottom:532.950000px;}
.y88{bottom:536.550000px;}
.ybf{bottom:536.910000px;}
.yf9{bottom:540.150000px;}
.y52{bottom:543.390000px;}
.y12f{bottom:544.830000px;}
.ydc{bottom:546.630000px;}
.y1e{bottom:551.670000px;}
.y87{bottom:555.630000px;}
.ybe{bottom:555.990000px;}
.yf8{bottom:558.870000px;}
.y12e{bottom:562.110000px;}
.y51{bottom:562.470000px;}
.yda{bottom:567.870000px;}
.y14e{bottom:568.950000px;}
.y86{bottom:574.380000px;}
.y1d{bottom:574.740000px;}
.yf7{bottom:577.620000px;}
.y12d{bottom:579.420000px;}
.y50{bottom:581.580000px;}
.y14d{bottom:586.620000px;}
.yd8{bottom:589.140000px;}
.y1c{bottom:592.020000px;}
.y85{bottom:593.460000px;}
.ybd{bottom:593.820000px;}
.y12c{bottom:596.700000px;}
.yf6{bottom:597.420000px;}
.y4f{bottom:600.300000px;}
.y14c{bottom:605.700000px;}
.y1b{bottom:609.300000px;}
.yd6{bottom:610.740000px;}
.y84{bottom:612.540000px;}
.ybc{bottom:612.900000px;}
.y12b{bottom:613.980000px;}
.y4e{bottom:619.380000px;}
.y14b{bottom:624.420000px;}
.y1a{bottom:628.380000px;}
.y12a{bottom:631.260000px;}
.y83{bottom:631.620000px;}
.yd4{bottom:631.980000px;}
.ybb{bottom:633.060000px;}
.y4d{bottom:638.460000px;}
.y14a{bottom:643.140000px;}
.y129{bottom:648.180000px;}
.y19{bottom:650.340000px;}
.y4c{bottom:657.180000px;}
.y149{bottom:660.420000px;}
.y128{bottom:665.460000px;}
.y18{bottom:668.700000px;}
.y82{bottom:669.420000px;}
.y4b{bottom:676.260000px;}
.yba{bottom:676.620000px;}
.y148{bottom:677.700000px;}
.y127{bottom:682.740000px;}
.y17{bottom:685.980000px;}
.y81{bottom:688.500000px;}
.yd3{bottom:693.540000px;}
.y4a{bottom:695.340000px;}
.yb9{bottom:695.700000px;}
.y147{bottom:697.140000px;}
.y126{bottom:700.050000px;}
.y16{bottom:703.290000px;}
.y80{bottom:707.250000px;}
.yd2{bottom:712.650000px;}
.y49{bottom:714.450000px;}
.y125{bottom:717.330000px;}
.y15{bottom:720.570000px;}
.y7f{bottom:726.330000px;}
.yd1{bottom:731.370000px;}
.y48{bottom:733.170000px;}
.yb8{bottom:733.530000px;}
.y124{bottom:734.610000px;}
.y14{bottom:737.850000px;}
.y7e{bottom:745.410000px;}
.yd0{bottom:750.450000px;}
.y123{bottom:751.890000px;}
.y47{bottom:752.250000px;}
.yb7{bottom:752.610000px;}
.y13{bottom:755.130000px;}
.y7d{bottom:764.130000px;}
.y122{bottom:769.170000px;}
.ycf{bottom:769.530000px;}
.y46{bottom:771.330000px;}
.y12{bottom:772.410000px;}
.y7c{bottom:783.210000px;}
.y121{bottom:786.450000px;}
.yce{bottom:788.610000px;}
.y11{bottom:789.690000px;}
.y45{bottom:790.050000px;}
.yb6{bottom:790.770000px;}
.y7b{bottom:802.290000px;}
.y120{bottom:803.730000px;}
.y10{bottom:806.970000px;}
.ycd{bottom:807.330000px;}
.y44{bottom:809.130000px;}
.yb5{bottom:811.290000px;}
.y11f{bottom:821.010000px;}
.y7a{bottom:821.370000px;}
.yf{bottom:824.250000px;}
.ycc{bottom:826.455000px;}
.yb3{bottom:826.815000px;}
.y43{bottom:828.255000px;}
.y11e{bottom:837.975000px;}
.y79{bottom:840.135000px;}
.ye{bottom:841.215000px;}
.ycb{bottom:845.535000px;}
.y42{bottom:846.975000px;}
.y11d{bottom:855.255000px;}
.y78{bottom:859.215000px;}
.yd{bottom:861.015000px;}
.yb1{bottom:862.815000px;}
.yca{bottom:864.255000px;}
.y41{bottom:866.055000px;}
.y11c{bottom:872.535000px;}
.y77{bottom:878.295000px;}
.yc{bottom:882.975000px;}
.yc9{bottom:883.335000px;}
.y40{bottom:885.135000px;}
.y11b{bottom:889.815000px;}
.y76{bottom:897.015000px;}
.yc8{bottom:902.415000px;}
.yb{bottom:902.775000px;}
.y3f{bottom:904.215000px;}
.y11a{bottom:907.095000px;}
.y75{bottom:916.095000px;}
.yb0{bottom:921.135000px;}
.y3e{bottom:922.935000px;}
.y119{bottom:924.375000px;}
.ya{bottom:930.135000px;}
.y74{bottom:935.175000px;}
.yaf{bottom:940.215000px;}
.y118{bottom:941.655000px;}
.y3d{bottom:942.015000px;}
.y9{bottom:951.015000px;}
.y73{bottom:954.285000px;}
.y117{bottom:958.965000px;}
.yae{bottom:959.325000px;}
.y3c{bottom:961.125000px;}
.y8{bottom:964.725000px;}
.y72{bottom:973.005000px;}
.y116{bottom:976.245000px;}
.yad{bottom:978.405000px;}
.y3b{bottom:979.845000px;}
.y7{bottom:985.605000px;}
.y71{bottom:992.085000px;}
.y115{bottom:993.525000px;}
.yac{bottom:997.125000px;}
.y3a{bottom:998.925000px;}
.y6{bottom:1007.925000px;}
.y114{bottom:1010.805000px;}
.y70{bottom:1011.165000px;}
.yab{bottom:1016.205000px;}
.y39{bottom:1018.005000px;}
.y113{bottom:1028.085000px;}
.y6f{bottom:1029.885000px;}
.y5{bottom:1033.845000px;}
.yaa{bottom:1035.285000px;}
.y38{bottom:1036.725000px;}
.y112{bottom:1045.005000px;}
.y6e{bottom:1048.965000px;}
.ya9{bottom:1054.005000px;}
.y37{bottom:1055.805000px;}
.y111{bottom:1062.285000px;}
.y4{bottom:1067.325000px;}
.y6d{bottom:1068.045000px;}
.ya8{bottom:1073.085000px;}
.y36{bottom:1074.885000px;}
.y110{bottom:1079.610000px;}
.y6c{bottom:1088.250000px;}
.ya7{bottom:1092.210000px;}
.y35{bottom:1094.010000px;}
.y10f{bottom:1096.890000px;}
.y3{bottom:1100.490000px;}
.y6b{bottom:1108.410000px;}
.ya6{bottom:1111.290000px;}
.y34{bottom:1112.730000px;}
.y10e{bottom:1114.170000px;}
.y9d{bottom:1142.610000px;}
.y1{bottom:1142.970000px;}
.h12{height:17.640000px;}
.hf{height:19.440000px;}
.h15{height:20.520000px;}
.h17{height:20.556000px;}
.h16{height:20.880000px;}
.h18{height:20.916000px;}
.h14{height:35.280000px;}
.h8{height:46.638281px;}
.h1b{height:54.219375px;}
.hc{height:59.328281px;}
.h2{height:59.357813px;}
.h13{height:60.952500px;}
.hd{height:62.153438px;}
.h1a{height:62.163910px;}
.hb{height:64.978594px;}
.h9{height:65.010937px;}
.h10{height:66.757500px;}
.h7{height:70.664062px;}
.h19{height:72.562500px;}
.h11{height:74.953125px;}
.ha{height:76.279219px;}
.h6{height:76.824844px;}
.h5{height:78.367500px;}
.h4{height:80.944453px;}
.he{height:86.945625px;}
.h3{height:117.302344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:25.596000px;}
.w7{width:75.276000px;}
.w5{width:122.832000px;}
.w9{width:123.876000px;}
.wa{width:133.992000px;}
.w4{width:144.756000px;}
.w8{width:156.315000px;}
.w6{width:360.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:4.680000px;}
.x17{left:7.200000px;}
.x15{left:9.360000px;}
.x18{left:16.560000px;}
.x1a{left:20.910000px;}
.x26{left:21.960000px;}
.x13{left:29.523000px;}
.x28{left:30.630000px;}
.x1f{left:33.525000px;}
.x16{left:35.685000px;}
.x1d{left:38.880000px;}
.x20{left:41.085000px;}
.x23{left:45.360000px;}
.x1b{left:46.485000px;}
.x14{left:50.403000px;}
.x24{left:53.685000px;}
.x22{left:54.765000px;}
.x25{left:56.205000px;}
.x29{left:57.645000px;}
.x27{left:59.805000px;}
.x21{left:63.765000px;}
.x2{left:123.515987px;}
.x10{left:132.192000px;}
.x2a{left:140.471987px;}
.x12{left:144.030000px;}
.x2c{left:148.031987px;}
.x8{left:149.111987px;}
.x1{left:152.714987px;}
.x2b{left:157.034987px;}
.x19{left:202.035000px;}
.x3{left:221.144987px;}
.x7{left:257.864987px;}
.xa{left:268.304987px;}
.x11{left:277.665000px;}
.x4{left:278.744987px;}
.x6{left:341.069987px;}
.x9{left:376.349987px;}
.xb{left:401.219987px;}
.xc{left:412.379987px;}
.x1c{left:435.420000px;}
.x5{left:446.579987px;}
.x1e{left:560.010000px;}
.xe{left:750.885000px;}
.x2d{left:755.204987px;}
.xd{left:762.809987px;}
@media print{
.v3{vertical-align:-83.200000pt;}
.v5{vertical-align:-62.720000pt;}
.v4{vertical-align:-61.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1e{letter-spacing:-2.560000pt;}
.ls16{letter-spacing:-1.824000pt;}
.ls1d{letter-spacing:-1.552000pt;}
.ls8{letter-spacing:-1.360000pt;}
.ls9{letter-spacing:-1.312000pt;}
.ls22{letter-spacing:-1.296000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.264000pt;}
.lsc{letter-spacing:-1.008000pt;}
.ls1b{letter-spacing:-0.864000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.450667pt;}
.ls23{letter-spacing:-0.414933pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.104960pt;}
.ls12{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.143360pt;}
.lse{letter-spacing:0.158720pt;}
.ls10{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.317440pt;}
.lsd{letter-spacing:0.401920pt;}
.ls21{letter-spacing:0.414933pt;}
.ls25{letter-spacing:0.450667pt;}
.ls5{letter-spacing:0.560640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650667pt;}
.ls15{letter-spacing:0.736000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls24{letter-spacing:5.760000pt;}
.lsf{letter-spacing:6.528000pt;}
.ls13{letter-spacing:11.371947pt;}
.ls4{letter-spacing:19.051947pt;}
.ls17{letter-spacing:664.085333pt;}
.ls1c{letter-spacing:849.685333pt;}
.ls19{letter-spacing:881.685333pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws1{word-spacing:-20.080000pt;}
.ws7{word-spacing:-18.560000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.280000pt;}
.wsf{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.968000pt;}
.ws10{word-spacing:-15.456000pt;}
.wse{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.313067pt;}
.ws6{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.890667pt;}
.ws18{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.712000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.168000pt;}
.ws1a{word-spacing:-13.025067pt;}
.ws1c{word-spacing:-12.989333pt;}
.ws11{word-spacing:-12.896000pt;}
.ws16{word-spacing:-12.800000pt;}
.ws17{word-spacing:-12.608000pt;}
.ws14{word-spacing:-12.576000pt;}
.ws12{word-spacing:-12.176000pt;}
.ws13{word-spacing:-12.160000pt;}
.ws19{word-spacing:-12.144000pt;}
.ws1d{word-spacing:-10.880000pt;}
.ws9{word-spacing:0.000000pt;}
._22{margin-left:-7.040000pt;}
._26{margin-left:-4.898560pt;}
._3{margin-left:-3.369813pt;}
._4{margin-left:-2.233173pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.182720pt;}
._2{width:2.578773pt;}
._9{width:3.668053pt;}
._7{width:5.107200pt;}
._8{width:6.570667pt;}
._13{width:7.525547pt;}
._b{width:8.461653pt;}
._a{width:9.540267pt;}
._6{width:10.624000pt;}
._5{width:11.612160pt;}
._12{width:13.137920pt;}
._25{width:14.837760pt;}
._15{width:15.788373pt;}
._f{width:16.946347pt;}
._e{width:18.013867pt;}
._d{width:18.935467pt;}
._c{width:19.837440pt;}
._1a{width:20.901120pt;}
._10{width:21.898240pt;}
._11{width:23.102293pt;}
._16{width:24.267947pt;}
._18{width:25.642667pt;}
._19{width:26.619307pt;}
._1e{width:27.712853pt;}
._20{width:29.409707pt;}
._14{width:30.308693pt;}
._23{width:31.720960pt;}
._24{width:32.664747pt;}
._17{width:34.266880pt;}
._1c{width:35.859627pt;}
._1b{width:37.285120pt;}
._1d{width:38.248960pt;}
._21{width:40.464640pt;}
._1f{width:49.186133pt;}
.fs6{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fsa{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs9{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:3.200000pt;}
.y69{bottom:3.840000pt;}
.yd5{bottom:5.760000pt;}
.yd7{bottom:6.080000pt;}
.ydb{bottom:6.106667pt;}
.yd9{bottom:6.400000pt;}
.ye2{bottom:6.440000pt;}
.yb4{bottom:19.200000pt;}
.y68{bottom:93.152000pt;}
.y6a{bottom:94.432000pt;}
.ya5{bottom:96.032000pt;}
.y2{bottom:97.312000pt;}
.y9e{bottom:98.912000pt;}
.yf5{bottom:124.192000pt;}
.y67{bottom:128.672000pt;}
.y146{bottom:131.552000pt;}
.y33{bottom:135.386667pt;}
.yf1{bottom:136.986667pt;}
.y9c{bottom:137.946667pt;}
.yf4{bottom:141.146667pt;}
.y66{bottom:145.626667pt;}
.y145{bottom:146.906667pt;}
.y32{bottom:152.346667pt;}
.y10d{bottom:152.986667pt;}
.yf0{bottom:153.946667pt;}
.y9b{bottom:154.906667pt;}
.yc7{bottom:155.226667pt;}
.ya4{bottom:156.506667pt;}
.yf3{bottom:157.786667pt;}
.y144{bottom:162.266667pt;}
.y65{bottom:162.586667pt;}
.y10c{bottom:168.346667pt;}
.y31{bottom:169.306667pt;}
.yef{bottom:170.906667pt;}
.y9a{bottom:171.866667pt;}
.ya3{bottom:173.186667pt;}
.yf2{bottom:174.786667pt;}
.y143{bottom:177.666667pt;}
.y64{bottom:179.586667pt;}
.y10b{bottom:183.746667pt;}
.y30{bottom:185.986667pt;}
.yee{bottom:187.586667pt;}
.y99{bottom:188.546667pt;}
.ya2{bottom:190.146667pt;}
.y142{bottom:193.026667pt;}
.y63{bottom:196.226667pt;}
.y10a{bottom:199.106667pt;}
.y2f{bottom:202.946667pt;}
.yed{bottom:204.546667pt;}
.y98{bottom:205.506667pt;}
.ya1{bottom:207.106667pt;}
.y141{bottom:208.386667pt;}
.y62{bottom:213.186667pt;}
.y109{bottom:214.466667pt;}
.y2e{bottom:219.906667pt;}
.yec{bottom:221.506667pt;}
.y97{bottom:222.466667pt;}
.y140{bottom:223.426667pt;}
.ya0{bottom:223.746667pt;}
.y108{bottom:229.826667pt;}
.y61{bottom:230.146667pt;}
.y2d{bottom:236.866667pt;}
.yeb{bottom:238.146667pt;}
.y13f{bottom:238.786667pt;}
.y96{bottom:240.706667pt;}
.y107{bottom:245.186667pt;}
.y60{bottom:246.786667pt;}
.y2c{bottom:253.506667pt;}
.y13e{bottom:254.146667pt;}
.yea{bottom:255.106667pt;}
.y95{bottom:257.666667pt;}
.y106{bottom:260.226667pt;}
.y5f{bottom:263.746667pt;}
.y13d{bottom:269.506667pt;}
.y2b{bottom:270.466667pt;}
.ye9{bottom:272.066667pt;}
.y94{bottom:274.626667pt;}
.y105{bottom:275.586667pt;}
.y5e{bottom:280.706667pt;}
.y13c{bottom:284.893333pt;}
.y2a{bottom:287.453333pt;}
.ye8{bottom:289.053333pt;}
.y104{bottom:290.973333pt;}
.y93{bottom:291.293333pt;}
.y5d{bottom:297.373333pt;}
.y13b{bottom:300.253333pt;}
.y29{bottom:304.093333pt;}
.ye7{bottom:305.693333pt;}
.y103{bottom:306.333333pt;}
.y92{bottom:308.253333pt;}
.y5c{bottom:314.333333pt;}
.y13a{bottom:315.613333pt;}
.y28{bottom:321.053333pt;}
.y102{bottom:321.693333pt;}
.ye6{bottom:322.653333pt;}
.y91{bottom:325.213333pt;}
.y9f{bottom:326.173333pt;}
.y139{bottom:330.973333pt;}
.y5b{bottom:331.293333pt;}
.y101{bottom:337.053333pt;}
.y27{bottom:338.013333pt;}
.ye5{bottom:339.613333pt;}
.yc6{bottom:340.573333pt;}
.y90{bottom:341.853333pt;}
.y138{bottom:346.333333pt;}
.y5a{bottom:348.253333pt;}
.y100{bottom:352.413333pt;}
.y26{bottom:354.653333pt;}
.yc5{bottom:357.533333pt;}
.ye4{bottom:357.853333pt;}
.y8f{bottom:358.813333pt;}
.y137{bottom:361.693333pt;}
.y59{bottom:364.893333pt;}
.yff{bottom:367.773333pt;}
.y25{bottom:371.613333pt;}
.ye3{bottom:371.933333pt;}
.yc4{bottom:374.493333pt;}
.y8e{bottom:375.773333pt;}
.y136{bottom:377.053333pt;}
.y58{bottom:381.853333pt;}
.yfe{bottom:383.133333pt;}
.y24{bottom:388.573333pt;}
.ye1{bottom:390.813333pt;}
.yc3{bottom:391.453333pt;}
.y135{bottom:392.093333pt;}
.y8d{bottom:392.413333pt;}
.yfd{bottom:398.533333pt;}
.y57{bottom:398.853333pt;}
.y23{bottom:405.573333pt;}
.y134{bottom:407.493333pt;}
.yc2{bottom:408.133333pt;}
.y8c{bottom:409.413333pt;}
.ye0{bottom:410.053333pt;}
.yfc{bottom:413.893333pt;}
.y56{bottom:415.493333pt;}
.y22{bottom:422.213333pt;}
.y133{bottom:422.853333pt;}
.yc1{bottom:425.093333pt;}
.y8b{bottom:426.373333pt;}
.ydf{bottom:428.933333pt;}
.y55{bottom:432.453333pt;}
.y132{bottom:438.213333pt;}
.y21{bottom:439.173333pt;}
.y8a{bottom:443.333333pt;}
.yfb{bottom:444.293333pt;}
.yde{bottom:447.813333pt;}
.y54{bottom:449.413333pt;}
.y131{bottom:453.573333pt;}
.y20{bottom:456.133333pt;}
.y150{bottom:457.093333pt;}
.y89{bottom:459.973333pt;}
.yc0{bottom:460.293333pt;}
.yfa{bottom:461.893333pt;}
.y53{bottom:466.053333pt;}
.ydd{bottom:467.013333pt;}
.y130{bottom:468.933333pt;}
.y1f{bottom:472.773333pt;}
.y14f{bottom:473.733333pt;}
.y88{bottom:476.933333pt;}
.ybf{bottom:477.253333pt;}
.yf9{bottom:480.133333pt;}
.y52{bottom:483.013333pt;}
.y12f{bottom:484.293333pt;}
.ydc{bottom:485.893333pt;}
.y1e{bottom:490.373333pt;}
.y87{bottom:493.893333pt;}
.ybe{bottom:494.213333pt;}
.yf8{bottom:496.773333pt;}
.y12e{bottom:499.653333pt;}
.y51{bottom:499.973333pt;}
.yda{bottom:504.773333pt;}
.y14e{bottom:505.733333pt;}
.y86{bottom:510.560000pt;}
.y1d{bottom:510.880000pt;}
.yf7{bottom:513.440000pt;}
.y12d{bottom:515.040000pt;}
.y50{bottom:516.960000pt;}
.y14d{bottom:521.440000pt;}
.yd8{bottom:523.680000pt;}
.y1c{bottom:526.240000pt;}
.y85{bottom:527.520000pt;}
.ybd{bottom:527.840000pt;}
.y12c{bottom:530.400000pt;}
.yf6{bottom:531.040000pt;}
.y4f{bottom:533.600000pt;}
.y14c{bottom:538.400000pt;}
.y1b{bottom:541.600000pt;}
.yd6{bottom:542.880000pt;}
.y84{bottom:544.480000pt;}
.ybc{bottom:544.800000pt;}
.y12b{bottom:545.760000pt;}
.y4e{bottom:550.560000pt;}
.y14b{bottom:555.040000pt;}
.y1a{bottom:558.560000pt;}
.y12a{bottom:561.120000pt;}
.y83{bottom:561.440000pt;}
.yd4{bottom:561.760000pt;}
.ybb{bottom:562.720000pt;}
.y4d{bottom:567.520000pt;}
.y14a{bottom:571.680000pt;}
.y129{bottom:576.160000pt;}
.y19{bottom:578.080000pt;}
.y4c{bottom:584.160000pt;}
.y149{bottom:587.040000pt;}
.y128{bottom:591.520000pt;}
.y18{bottom:594.400000pt;}
.y82{bottom:595.040000pt;}
.y4b{bottom:601.120000pt;}
.yba{bottom:601.440000pt;}
.y148{bottom:602.400000pt;}
.y127{bottom:606.880000pt;}
.y17{bottom:609.760000pt;}
.y81{bottom:612.000000pt;}
.yd3{bottom:616.480000pt;}
.y4a{bottom:618.080000pt;}
.yb9{bottom:618.400000pt;}
.y147{bottom:619.680000pt;}
.y126{bottom:622.266667pt;}
.y16{bottom:625.146667pt;}
.y80{bottom:628.666667pt;}
.yd2{bottom:633.466667pt;}
.y49{bottom:635.066667pt;}
.y125{bottom:637.626667pt;}
.y15{bottom:640.506667pt;}
.y7f{bottom:645.626667pt;}
.yd1{bottom:650.106667pt;}
.y48{bottom:651.706667pt;}
.yb8{bottom:652.026667pt;}
.y124{bottom:652.986667pt;}
.y14{bottom:655.866667pt;}
.y7e{bottom:662.586667pt;}
.yd0{bottom:667.066667pt;}
.y123{bottom:668.346667pt;}
.y47{bottom:668.666667pt;}
.yb7{bottom:668.986667pt;}
.y13{bottom:671.226667pt;}
.y7d{bottom:679.226667pt;}
.y122{bottom:683.706667pt;}
.ycf{bottom:684.026667pt;}
.y46{bottom:685.626667pt;}
.y12{bottom:686.586667pt;}
.y7c{bottom:696.186667pt;}
.y121{bottom:699.066667pt;}
.yce{bottom:700.986667pt;}
.y11{bottom:701.946667pt;}
.y45{bottom:702.266667pt;}
.yb6{bottom:702.906667pt;}
.y7b{bottom:713.146667pt;}
.y120{bottom:714.426667pt;}
.y10{bottom:717.306667pt;}
.ycd{bottom:717.626667pt;}
.y44{bottom:719.226667pt;}
.yb5{bottom:721.146667pt;}
.y11f{bottom:729.786667pt;}
.y7a{bottom:730.106667pt;}
.yf{bottom:732.666667pt;}
.ycc{bottom:734.626667pt;}
.yb3{bottom:734.946667pt;}
.y43{bottom:736.226667pt;}
.y11e{bottom:744.866667pt;}
.y79{bottom:746.786667pt;}
.ye{bottom:747.746667pt;}
.ycb{bottom:751.586667pt;}
.y42{bottom:752.866667pt;}
.y11d{bottom:760.226667pt;}
.y78{bottom:763.746667pt;}
.yd{bottom:765.346667pt;}
.yb1{bottom:766.946667pt;}
.yca{bottom:768.226667pt;}
.y41{bottom:769.826667pt;}
.y11c{bottom:775.586667pt;}
.y77{bottom:780.706667pt;}
.yc{bottom:784.866667pt;}
.yc9{bottom:785.186667pt;}
.y40{bottom:786.786667pt;}
.y11b{bottom:790.946667pt;}
.y76{bottom:797.346667pt;}
.yc8{bottom:802.146667pt;}
.yb{bottom:802.466667pt;}
.y3f{bottom:803.746667pt;}
.y11a{bottom:806.306667pt;}
.y75{bottom:814.306667pt;}
.yb0{bottom:818.786667pt;}
.y3e{bottom:820.386667pt;}
.y119{bottom:821.666667pt;}
.ya{bottom:826.786667pt;}
.y74{bottom:831.266667pt;}
.yaf{bottom:835.746667pt;}
.y118{bottom:837.026667pt;}
.y3d{bottom:837.346667pt;}
.y9{bottom:845.346667pt;}
.y73{bottom:848.253333pt;}
.y117{bottom:852.413333pt;}
.yae{bottom:852.733333pt;}
.y3c{bottom:854.333333pt;}
.y8{bottom:857.533333pt;}
.y72{bottom:864.893333pt;}
.y116{bottom:867.773333pt;}
.yad{bottom:869.693333pt;}
.y3b{bottom:870.973333pt;}
.y7{bottom:876.093333pt;}
.y71{bottom:881.853333pt;}
.y115{bottom:883.133333pt;}
.yac{bottom:886.333333pt;}
.y3a{bottom:887.933333pt;}
.y6{bottom:895.933333pt;}
.y114{bottom:898.493333pt;}
.y70{bottom:898.813333pt;}
.yab{bottom:903.293333pt;}
.y39{bottom:904.893333pt;}
.y113{bottom:913.853333pt;}
.y6f{bottom:915.453333pt;}
.y5{bottom:918.973333pt;}
.yaa{bottom:920.253333pt;}
.y38{bottom:921.533333pt;}
.y112{bottom:928.893333pt;}
.y6e{bottom:932.413333pt;}
.ya9{bottom:936.893333pt;}
.y37{bottom:938.493333pt;}
.y111{bottom:944.253333pt;}
.y4{bottom:948.733333pt;}
.y6d{bottom:949.373333pt;}
.ya8{bottom:953.853333pt;}
.y36{bottom:955.453333pt;}
.y110{bottom:959.653333pt;}
.y6c{bottom:967.333333pt;}
.ya7{bottom:970.853333pt;}
.y35{bottom:972.453333pt;}
.y10f{bottom:975.013333pt;}
.y3{bottom:978.213333pt;}
.y6b{bottom:985.253333pt;}
.ya6{bottom:987.813333pt;}
.y34{bottom:989.093333pt;}
.y10e{bottom:990.373333pt;}
.y9d{bottom:1015.653333pt;}
.y1{bottom:1015.973333pt;}
.h12{height:15.680000pt;}
.hf{height:17.280000pt;}
.h15{height:18.240000pt;}
.h17{height:18.272000pt;}
.h16{height:18.560000pt;}
.h18{height:18.592000pt;}
.h14{height:31.360000pt;}
.h8{height:41.456250pt;}
.h1b{height:48.195000pt;}
.hc{height:52.736250pt;}
.h2{height:52.762500pt;}
.h13{height:54.180000pt;}
.hd{height:55.247500pt;}
.h1a{height:55.256809pt;}
.hb{height:57.758750pt;}
.h9{height:57.787500pt;}
.h10{height:59.340000pt;}
.h7{height:62.812500pt;}
.h19{height:64.500000pt;}
.h11{height:66.625000pt;}
.ha{height:67.803750pt;}
.h6{height:68.288750pt;}
.h5{height:69.660000pt;}
.h4{height:71.950625pt;}
.he{height:77.285000pt;}
.h3{height:104.268750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:22.752000pt;}
.w7{width:66.912000pt;}
.w5{width:109.184000pt;}
.w9{width:110.112000pt;}
.wa{width:119.104000pt;}
.w4{width:128.672000pt;}
.w8{width:138.946667pt;}
.w6{width:320.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.160000pt;}
.x17{left:6.400000pt;}
.x15{left:8.320000pt;}
.x18{left:14.720000pt;}
.x1a{left:18.586667pt;}
.x26{left:19.520000pt;}
.x13{left:26.242667pt;}
.x28{left:27.226667pt;}
.x1f{left:29.800000pt;}
.x16{left:31.720000pt;}
.x1d{left:34.560000pt;}
.x20{left:36.520000pt;}
.x23{left:40.320000pt;}
.x1b{left:41.320000pt;}
.x14{left:44.802667pt;}
.x24{left:47.720000pt;}
.x22{left:48.680000pt;}
.x25{left:49.960000pt;}
.x29{left:51.240000pt;}
.x27{left:53.160000pt;}
.x21{left:56.680000pt;}
.x2{left:109.791988pt;}
.x10{left:117.504000pt;}
.x2a{left:124.863988pt;}
.x12{left:128.026667pt;}
.x2c{left:131.583988pt;}
.x8{left:132.543988pt;}
.x1{left:135.746655pt;}
.x2b{left:139.586655pt;}
.x19{left:179.586667pt;}
.x3{left:196.573322pt;}
.x7{left:229.213322pt;}
.xa{left:238.493322pt;}
.x11{left:246.813333pt;}
.x4{left:247.773322pt;}
.x6{left:303.173322pt;}
.x9{left:334.533322pt;}
.xb{left:356.639988pt;}
.xc{left:366.559988pt;}
.x1c{left:387.040000pt;}
.x5{left:396.959988pt;}
.x1e{left:497.786667pt;}
.xe{left:667.453333pt;}
.x2d{left:671.293322pt;}
.xd{left:678.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; }
  