
    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_b5a7bf04cd1b3f0df37763fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_6b521924950b2732ff3f2eb3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_8a9bb2142852193a00b60afc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_cf885d088c9500396312e02b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082000;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_cf885d088c9500396312e02b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082000;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_cf885d088c9500396312e02b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-24.420000px;}
.v4{vertical-align:-2.220000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:22.860000px;}
.v3{vertical-align:26.640000px;}
.v6{vertical-align:36.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.488400px;}
.ls7{letter-spacing:3.600000px;}
.ls5{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsa{letter-spacing:5.400000px;}
.lsc{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls3{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.lsd{letter-spacing:19.800000px;}
.ls9{letter-spacing:55.123200px;}
.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;}
}
.ws14{word-spacing:-36.102000px;}
.ws11{word-spacing:-27.432000px;}
.ws12{word-spacing:-22.860000px;}
.ws10{word-spacing:-20.448000px;}
.ws2{word-spacing:-20.232000px;}
.ws9{word-spacing:-18.546000px;}
.wsf{word-spacing:-18.144000px;}
.ws3{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.860000px;}
.ws13{word-spacing:-16.302000px;}
.ws7{word-spacing:-14.079000px;}
.ws4{word-spacing:-13.150800px;}
.ws5{word-spacing:-12.139200px;}
.ws6{word-spacing:-11.127600px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:133.246667px;}
.ws8{word-spacing:208.384000px;}
.wsc{word-spacing:261.154667px;}
.wse{word-spacing:277.654667px;}
.wsb{word-spacing:1358.712000px;}
.wsd{word-spacing:1428.474000px;}
._30{margin-left:-19.800000px;}
._12{margin-left:-14.904000px;}
._13{margin-left:-13.830000px;}
._15{margin-left:-12.624000px;}
._4{margin-left:-10.099333px;}
._5{margin-left:-8.976000px;}
._3{margin-left:-7.531333px;}
._16{margin-left:-6.414000px;}
._c{margin-left:-5.400000px;}
._2{margin-left:-4.187333px;}
._1{margin-left:-2.730000px;}
._0{margin-left:-1.680000px;}
._e{width:1.032000px;}
._7{width:2.064000px;}
._d{width:3.168000px;}
._b{width:4.680000px;}
._2e{width:5.688000px;}
._8{width:6.696000px;}
._9{width:7.698000px;}
._a{width:9.240000px;}
._f{width:10.920000px;}
._6{width:12.480000px;}
._11{width:14.112600px;}
._14{width:15.360000px;}
._10{width:16.632000px;}
._17{width:17.650133px;}
._2f{width:19.368000px;}
._2d{width:246.700667px;}
._1b{width:252.944000px;}
._22{width:282.829333px;}
._29{width:296.200667px;}
._2b{width:297.836000px;}
._1a{width:299.329333px;}
._27{width:312.700667px;}
._1c{width:315.829333px;}
._1f{width:332.329333px;}
._1d{width:478.802000px;}
._2a{width:628.202667px;}
._26{width:758.404000px;}
._25{width:777.606000px;}
._19{width:950.642000px;}
._1e{width:986.516000px;}
._24{width:1056.168000px;}
._18{width:1071.828667px;}
._23{width:1145.624000px;}
._21{width:1430.000667px;}
._2c{width:1492.251333px;}
._20{width:1493.822000px;}
._28{width:1556.072667px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.000000px;}
.fs9{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs7{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:56.999400px;}
.fsb{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y95{bottom:173.062500px;}
.y1d{bottom:174.344700px;}
.yf6{bottom:177.350850px;}
.y74{bottom:177.918150px;}
.y106{bottom:181.612500px;}
.yd4{bottom:181.690950px;}
.y13b{bottom:185.004600px;}
.y11b{bottom:186.008550px;}
.y3e{bottom:192.008550px;}
.y94{bottom:192.862500px;}
.y1c{bottom:195.944700px;}
.yf5{bottom:198.951000px;}
.y105{bottom:203.212500px;}
.yd3{bottom:203.290950px;}
.y13a{bottom:204.804600px;}
.y11a{bottom:207.608550px;}
.y73{bottom:211.404600px;}
.y3d{bottom:213.608550px;}
.y1b{bottom:217.544700px;}
.yf4{bottom:220.551000px;}
.y139{bottom:224.604600px;}
.y104{bottom:224.812500px;}
.yd2{bottom:224.890950px;}
.yb3{bottom:227.708550px;}
.y119{bottom:229.208550px;}
.y72{bottom:233.304600px;}
.y3c{bottom:235.208550px;}
.y1a{bottom:239.144700px;}
.y5f{bottom:241.012500px;}
.yf3{bottom:242.151000px;}
.y138{bottom:244.404600px;}
.y103{bottom:246.412500px;}
.yd1{bottom:246.490950px;}
.yb2{bottom:249.608550px;}
.y118{bottom:250.808550px;}
.y71{bottom:254.454600px;}
.y3b{bottom:256.808550px;}
.y19{bottom:260.744700px;}
.y5e{bottom:262.612500px;}
.yf2{bottom:263.751000px;}
.y137{bottom:264.204600px;}
.y9b{bottom:267.349200px;}
.y102{bottom:268.012500px;}
.yd0{bottom:268.090950px;}
.yb1{bottom:271.508550px;}
.y117{bottom:272.408550px;}
.y70{bottom:275.604600px;}
.y3a{bottom:278.408550px;}
.y18{bottom:282.344700px;}
.y136{bottom:284.004600px;}
.y5d{bottom:284.212500px;}
.yf1{bottom:285.350850px;}
.y156{bottom:285.706050px;}
.y101{bottom:289.612500px;}
.ycf{bottom:289.690950px;}
.yb0{bottom:293.408550px;}
.y116{bottom:294.008550px;}
.y6f{bottom:296.754600px;}
.y39{bottom:300.008550px;}
.y9d{bottom:300.351853px;}
.y155{bottom:303.706050px;}
.y135{bottom:303.804600px;}
.y17{bottom:303.944700px;}
.y5c{bottom:305.812500px;}
.yf0{bottom:306.950850px;}
.y100{bottom:311.212500px;}
.yce{bottom:311.290950px;}
.yaf{bottom:315.308550px;}
.y115{bottom:315.608550px;}
.y6e{bottom:317.904600px;}
.y38{bottom:321.608550px;}
.y154{bottom:321.706050px;}
.y9a{bottom:321.719850px;}
.y16{bottom:325.544700px;}
.y5b{bottom:327.412500px;}
.yef{bottom:328.551000px;}
.y134{bottom:332.108550px;}
.yff{bottom:332.812500px;}
.ycd{bottom:332.890950px;}
.yae{bottom:337.208550px;}
.y6d{bottom:339.054600px;}
.y153{bottom:339.706050px;}
.y37{bottom:343.208550px;}
.y99{bottom:346.971750px;}
.y15{bottom:347.144700px;}
.y5a{bottom:349.012500px;}
.yee{bottom:350.151000px;}
.yfe{bottom:354.412500px;}
.ycc{bottom:354.490950px;}
.y114{bottom:358.808550px;}
.yad{bottom:359.108550px;}
.y6c{bottom:360.204600px;}
.y36{bottom:364.808550px;}
.y98{bottom:367.971750px;}
.y14{bottom:368.744700px;}
.y59{bottom:370.612500px;}
.yed{bottom:371.751000px;}
.yfd{bottom:376.012500px;}
.ycb{bottom:376.090950px;}
.y113{bottom:380.408550px;}
.yac{bottom:381.008550px;}
.y6b{bottom:381.354600px;}
.y35{bottom:386.408550px;}
.y97{bottom:388.971750px;}
.y13{bottom:390.344700px;}
.y133{bottom:390.712500px;}
.y58{bottom:392.212500px;}
.yec{bottom:393.350850px;}
.yfc{bottom:397.612500px;}
.yca{bottom:397.690950px;}
.y112{bottom:402.008550px;}
.y6a{bottom:402.504600px;}
.yab{bottom:402.908550px;}
.y152{bottom:404.506050px;}
.y34{bottom:408.008550px;}
.y12{bottom:411.944700px;}
.y132{bottom:412.612500px;}
.y57{bottom:413.812500px;}
.y96{bottom:414.223800px;}
.yeb{bottom:414.950850px;}
.yfb{bottom:419.212500px;}
.yc9{bottom:419.290950px;}
.y151{bottom:424.306050px;}
.yaa{bottom:424.808550px;}
.y9c{bottom:430.125237px;}
.y111{bottom:432.112500px;}
.y131{bottom:434.512500px;}
.y56{bottom:435.412500px;}
.y33{bottom:438.112500px;}
.yfa{bottom:440.812500px;}
.yc8{bottom:440.890950px;}
.y11{bottom:442.048650px;}
.y150{bottom:444.106050px;}
.ya9{bottom:446.708550px;}
.y69{bottom:454.208550px;}
.y130{bottom:456.412500px;}
.y55{bottom:457.012500px;}
.yea{bottom:459.701550px;}
.yf9{bottom:462.412500px;}
.y14f{bottom:463.906050px;}
.y93{bottom:471.862500px;}
.y68{bottom:474.008550px;}
.y12f{bottom:478.312500px;}
.y54{bottom:478.612500px;}
.y14e{bottom:483.706050px;}
.yf8{bottom:484.012500px;}
.ye9{bottom:485.119650px;}
.yc7{bottom:491.041650px;}
.y92{bottom:493.462500px;}
.y53{bottom:500.212500px;}
.ya8{bottom:502.612500px;}
.y14d{bottom:503.506050px;}
.yf7{bottom:505.612500px;}
.ye8{bottom:510.631500px;}
.y91{bottom:515.062500px;}
.yc6{bottom:516.459600px;}
.y110{bottom:521.212500px;}
.y52{bottom:521.812500px;}
.y12e{bottom:522.112500px;}
.ya7{bottom:522.412500px;}
.y14c{bottom:523.306050px;}
.y32{bottom:527.212500px;}
.y10{bottom:528.448650px;}
.y78{bottom:534.148709px;}
.ye7{bottom:536.143200px;}
.y90{bottom:536.212500px;}
.yc5{bottom:541.971450px;}
.y14b{bottom:543.106050px;}
.y10f{bottom:543.112500px;}
.y51{bottom:543.412500px;}
.y12d{bottom:544.012500px;}
.y31{bottom:548.812500px;}
.yf{bottom:550.048650px;}
.y75{bottom:553.956000px;}
.y8f{bottom:557.362500px;}
.ye6{bottom:561.655050px;}
.y14a{bottom:562.906050px;}
.y50{bottom:565.012500px;}
.yb9{bottom:565.126350px;}
.y12c{bottom:565.912500px;}
.yc4{bottom:567.483300px;}
.y77{bottom:569.388588px;}
.y30{bottom:570.412500px;}
.ye{bottom:571.648650px;}
.y8e{bottom:578.512500px;}
.ybd{bottom:578.820456px;}
.ye4{bottom:579.897600px;}
.y149{bottom:582.706050px;}
.y4f{bottom:586.612500px;}
.y7c{bottom:586.660350px;}
.y10e{bottom:586.912500px;}
.y12b{bottom:587.812500px;}
.y2f{bottom:592.012500px;}
.yc3{bottom:592.995000px;}
.yd{bottom:593.248650px;}
.ye3{bottom:597.897600px;}
.y8d{bottom:599.662500px;}
.y148{bottom:602.506050px;}
.yb8{bottom:603.850500px;}
.ye5{bottom:606.897600px;}
.y7b{bottom:607.660350px;}
.y4e{bottom:608.212500px;}
.y10d{bottom:608.812500px;}
.y12a{bottom:609.712500px;}
.y2e{bottom:613.612500px;}
.yc{bottom:614.848500px;}
.ye2{bottom:615.897600px;}
.yc2{bottom:618.413100px;}
.y8c{bottom:620.812500px;}
.y147{bottom:622.306050px;}
.yb7{bottom:624.850500px;}
.y7a{bottom:628.660350px;}
.y4d{bottom:629.812500px;}
.y10c{bottom:630.712500px;}
.y129{bottom:631.612500px;}
.ye1{bottom:633.897600px;}
.y2d{bottom:635.212500px;}
.yb{bottom:636.448650px;}
.y8b{bottom:641.962500px;}
.y146{bottom:642.106050px;}
.yc1{bottom:645.648600px;}
.yb6{bottom:645.850500px;}
.y79{bottom:649.660350px;}
.y4c{bottom:651.412500px;}
.ye0{bottom:651.643950px;}
.y10b{bottom:652.612500px;}
.y128{bottom:653.512500px;}
.yc0{bottom:654.648600px;}
.y2c{bottom:656.812500px;}
.ya{bottom:658.048650px;}
.y145{bottom:661.906050px;}
.y8a{bottom:663.112500px;}
.yb5{bottom:666.850500px;}
.ydf{bottom:669.643950px;}
.ybc{bottom:670.560990px;}
.y4b{bottom:673.012500px;}
.y10a{bottom:674.512500px;}
.y127{bottom:675.412500px;}
.y2b{bottom:678.412500px;}
.y9{bottom:679.648650px;}
.y144{bottom:681.706050px;}
.y89{bottom:684.262500px;}
.yb4{bottom:687.850500px;}
.y76{bottom:690.555062px;}
.yde{bottom:694.163700px;}
.y4a{bottom:694.612500px;}
.y109{bottom:696.412500px;}
.y126{bottom:697.312500px;}
.ybf{bottom:698.212500px;}
.y2a{bottom:700.012500px;}
.y8{bottom:701.248650px;}
.y143{bottom:701.506050px;}
.yba{bottom:701.725412px;}
.y88{bottom:705.412500px;}
.ydd{bottom:712.163700px;}
.y49{bottom:716.662500px;}
.ybe{bottom:718.012500px;}
.y108{bottom:718.312500px;}
.y125{bottom:719.212500px;}
.ybb{bottom:720.663463px;}
.y29{bottom:721.612500px;}
.y7{bottom:722.848500px;}
.y87{bottom:726.562500px;}
.y67{bottom:732.608550px;}
.ydc{bottom:736.683300px;}
.y48{bottom:738.712500px;}
.y107{bottom:740.212500px;}
.y142{bottom:741.106050px;}
.y124{bottom:741.112500px;}
.y28{bottom:743.212500px;}
.y6{bottom:744.448650px;}
.y86{bottom:747.712500px;}
.y66{bottom:754.508550px;}
.ydb{bottom:754.683300px;}
.y47{bottom:760.762500px;}
.ya6{bottom:762.112500px;}
.y123{bottom:763.012500px;}
.y27{bottom:764.812500px;}
.y85{bottom:768.862500px;}
.y141{bottom:771.210000px;}
.y65{bottom:776.408550px;}
.yda{bottom:779.109300px;}
.y46{bottom:782.812500px;}
.ya5{bottom:784.012500px;}
.y122{bottom:784.912500px;}
.y26{bottom:786.412500px;}
.y84{bottom:790.012500px;}
.yd9{bottom:797.109300px;}
.y64{bottom:798.308550px;}
.y45{bottom:804.862500px;}
.ya4{bottom:805.912500px;}
.y121{bottom:806.812500px;}
.y25{bottom:808.012500px;}
.y83{bottom:811.162500px;}
.y63{bottom:820.208550px;}
.yd8{bottom:823.848600px;}
.y44{bottom:826.912500px;}
.ya3{bottom:827.812500px;}
.y120{bottom:828.712500px;}
.y24{bottom:829.612500px;}
.y82{bottom:832.312500px;}
.yd7{bottom:832.848600px;}
.y62{bottom:842.108550px;}
.y140{bottom:846.810000px;}
.y43{bottom:848.962500px;}
.ya2{bottom:849.712500px;}
.y11f{bottom:850.612500px;}
.y23{bottom:851.212500px;}
.y81{bottom:853.462500px;}
.y5{bottom:856.348500px;}
.y61{bottom:864.008550px;}
.y42{bottom:871.012500px;}
.ya1{bottom:871.612500px;}
.y11e{bottom:872.512500px;}
.y22{bottom:872.812500px;}
.y80{bottom:874.612500px;}
.yd6{bottom:876.412500px;}
.y13f{bottom:881.010000px;}
.y60{bottom:885.908550px;}
.y4{bottom:886.948650px;}
.y41{bottom:893.062500px;}
.ya0{bottom:893.512500px;}
.y11d{bottom:894.112500px;}
.y21{bottom:894.412500px;}
.y7f{bottom:895.762500px;}
.yd5{bottom:896.212500px;}
.y13e{bottom:900.810000px;}
.y40{bottom:915.112500px;}
.y9f{bottom:915.412500px;}
.y11c{bottom:915.712500px;}
.y20{bottom:916.012500px;}
.y7e{bottom:916.912500px;}
.y13d{bottom:920.610000px;}
.y3f{bottom:937.162500px;}
.y9e{bottom:937.312500px;}
.y1f{bottom:937.612500px;}
.y7d{bottom:938.062500px;}
.y13c{bottom:940.410000px;}
.y3{bottom:942.210000px;}
.y1e{bottom:959.212500px;}
.y2{bottom:960.210000px;}
.hb{height:38.207812px;}
.h8{height:40.523438px;}
.h7{height:43.523438px;}
.h2{height:46.312500px;}
.hc{height:48.392491px;}
.hf{height:50.947266px;}
.hd{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.h9{height:61.136719px;}
.ha{height:63.679688px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.he{height:99.679688px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035400px;}
.x1a{left:124.639350px;}
.x4{left:129.295350px;}
.x1c{left:137.395350px;}
.x1e{left:145.899150px;}
.x7{left:150.555150px;}
.x9{left:156.631650px;}
.xe{left:159.059100px;}
.x20{left:162.907050px;}
.x15{left:165.952507px;}
.x22{left:171.814950px;}
.x8{left:180.318900px;}
.x5{left:182.170350px;}
.x14{left:195.079200px;}
.x19{left:201.578700px;}
.x1d{left:222.838650px;}
.x11{left:272.072762px;}
.x6{left:302.077950px;}
.x1{left:310.233600px;}
.x16{left:316.829918px;}
.xa{left:323.226646px;}
.xc{left:352.353340px;}
.x18{left:381.495738px;}
.xb{left:405.362782px;}
.x17{left:408.285456px;}
.x12{left:415.754000px;}
.x13{left:438.364650px;}
.xf{left:443.325300px;}
.xd{left:444.375000px;}
.x10{left:468.837000px;}
.x1b{left:482.208600px;}
.x1f{left:520.072350px;}
.x21{left:536.437200px;}
.x23{left:574.709400px;}
.x2{left:603.664350px;}
@media print{
.v5{vertical-align:-21.706667pt;}
.v4{vertical-align:-1.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:20.320000pt;}
.v3{vertical-align:23.680000pt;}
.v6{vertical-align:32.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.434133pt;}
.ls7{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsa{letter-spacing:4.800000pt;}
.lsc{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls3{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.lsd{letter-spacing:17.600000pt;}
.ls9{letter-spacing:48.998400pt;}
.ws14{word-spacing:-32.090667pt;}
.ws11{word-spacing:-24.384000pt;}
.ws12{word-spacing:-20.320000pt;}
.ws10{word-spacing:-18.176000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws9{word-spacing:-16.485333pt;}
.wsf{word-spacing:-16.128000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws13{word-spacing:-14.490667pt;}
.ws7{word-spacing:-12.514667pt;}
.ws4{word-spacing:-11.689600pt;}
.ws5{word-spacing:-10.790400pt;}
.ws6{word-spacing:-9.891200pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:118.441481pt;}
.ws8{word-spacing:185.230222pt;}
.wsc{word-spacing:232.137481pt;}
.wse{word-spacing:246.804148pt;}
.wsb{word-spacing:1207.744000pt;}
.wsd{word-spacing:1269.754667pt;}
._30{margin-left:-17.600000pt;}
._12{margin-left:-13.248000pt;}
._13{margin-left:-12.293333pt;}
._15{margin-left:-11.221333pt;}
._4{margin-left:-8.977185pt;}
._5{margin-left:-7.978667pt;}
._3{margin-left:-6.694519pt;}
._16{margin-left:-5.701333pt;}
._c{margin-left:-4.800000pt;}
._2{margin-left:-3.722074pt;}
._1{margin-left:-2.426667pt;}
._0{margin-left:-1.493333pt;}
._e{width:0.917333pt;}
._7{width:1.834667pt;}
._d{width:2.816000pt;}
._b{width:4.160000pt;}
._2e{width:5.056000pt;}
._8{width:5.952000pt;}
._9{width:6.842667pt;}
._a{width:8.213333pt;}
._f{width:9.706667pt;}
._6{width:11.093333pt;}
._11{width:12.544533pt;}
._14{width:13.653333pt;}
._10{width:14.784000pt;}
._17{width:15.689007pt;}
._2f{width:17.216000pt;}
._2d{width:219.289481pt;}
._1b{width:224.839111pt;}
._22{width:251.403852pt;}
._29{width:263.289481pt;}
._2b{width:264.743111pt;}
._1a{width:266.070519pt;}
._27{width:277.956148pt;}
._1c{width:280.737185pt;}
._1f{width:295.403852pt;}
._1d{width:425.601778pt;}
._2a{width:558.402370pt;}
._26{width:674.136889pt;}
._25{width:691.205333pt;}
._19{width:845.015111pt;}
._1e{width:876.903111pt;}
._24{width:938.816000pt;}
._18{width:952.736593pt;}
._23{width:1018.332444pt;}
._21{width:1271.111704pt;}
._2c{width:1326.445630pt;}
._20{width:1327.841778pt;}
._28{width:1383.175704pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs7{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:50.666133pt;}
.fsb{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y95{bottom:153.833333pt;}
.y1d{bottom:154.973067pt;}
.yf6{bottom:157.645200pt;}
.y74{bottom:158.149467pt;}
.y106{bottom:161.433333pt;}
.yd4{bottom:161.503067pt;}
.y13b{bottom:164.448533pt;}
.y11b{bottom:165.340933pt;}
.y3e{bottom:170.674267pt;}
.y94{bottom:171.433333pt;}
.y1c{bottom:174.173067pt;}
.yf5{bottom:176.845333pt;}
.y105{bottom:180.633333pt;}
.yd3{bottom:180.703067pt;}
.y13a{bottom:182.048533pt;}
.y11a{bottom:184.540933pt;}
.y73{bottom:187.915200pt;}
.y3d{bottom:189.874267pt;}
.y1b{bottom:193.373067pt;}
.yf4{bottom:196.045333pt;}
.y139{bottom:199.648533pt;}
.y104{bottom:199.833333pt;}
.yd2{bottom:199.903067pt;}
.yb3{bottom:202.407600pt;}
.y119{bottom:203.740933pt;}
.y72{bottom:207.381867pt;}
.y3c{bottom:209.074267pt;}
.y1a{bottom:212.573067pt;}
.y5f{bottom:214.233333pt;}
.yf3{bottom:215.245333pt;}
.y138{bottom:217.248533pt;}
.y103{bottom:219.033333pt;}
.yd1{bottom:219.103067pt;}
.yb2{bottom:221.874267pt;}
.y118{bottom:222.940933pt;}
.y71{bottom:226.181867pt;}
.y3b{bottom:228.274267pt;}
.y19{bottom:231.773067pt;}
.y5e{bottom:233.433333pt;}
.yf2{bottom:234.445333pt;}
.y137{bottom:234.848533pt;}
.y9b{bottom:237.643733pt;}
.y102{bottom:238.233333pt;}
.yd0{bottom:238.303067pt;}
.yb1{bottom:241.340933pt;}
.y117{bottom:242.140933pt;}
.y70{bottom:244.981867pt;}
.y3a{bottom:247.474267pt;}
.y18{bottom:250.973067pt;}
.y136{bottom:252.448533pt;}
.y5d{bottom:252.633333pt;}
.yf1{bottom:253.645200pt;}
.y156{bottom:253.960933pt;}
.y101{bottom:257.433333pt;}
.ycf{bottom:257.503067pt;}
.yb0{bottom:260.807600pt;}
.y116{bottom:261.340933pt;}
.y6f{bottom:263.781867pt;}
.y39{bottom:266.674267pt;}
.y9d{bottom:266.979425pt;}
.y155{bottom:269.960933pt;}
.y135{bottom:270.048533pt;}
.y17{bottom:270.173067pt;}
.y5c{bottom:271.833333pt;}
.yf0{bottom:272.845200pt;}
.y100{bottom:276.633333pt;}
.yce{bottom:276.703067pt;}
.yaf{bottom:280.274267pt;}
.y115{bottom:280.540933pt;}
.y6e{bottom:282.581867pt;}
.y38{bottom:285.874267pt;}
.y154{bottom:285.960933pt;}
.y9a{bottom:285.973200pt;}
.y16{bottom:289.373067pt;}
.y5b{bottom:291.033333pt;}
.yef{bottom:292.045333pt;}
.y134{bottom:295.207600pt;}
.yff{bottom:295.833333pt;}
.ycd{bottom:295.903067pt;}
.yae{bottom:299.740933pt;}
.y6d{bottom:301.381867pt;}
.y153{bottom:301.960933pt;}
.y37{bottom:305.074267pt;}
.y99{bottom:308.419333pt;}
.y15{bottom:308.573067pt;}
.y5a{bottom:310.233333pt;}
.yee{bottom:311.245333pt;}
.yfe{bottom:315.033333pt;}
.ycc{bottom:315.103067pt;}
.y114{bottom:318.940933pt;}
.yad{bottom:319.207600pt;}
.y6c{bottom:320.181867pt;}
.y36{bottom:324.274267pt;}
.y98{bottom:327.086000pt;}
.y14{bottom:327.773067pt;}
.y59{bottom:329.433333pt;}
.yed{bottom:330.445333pt;}
.yfd{bottom:334.233333pt;}
.ycb{bottom:334.303067pt;}
.y113{bottom:338.140933pt;}
.yac{bottom:338.674267pt;}
.y6b{bottom:338.981867pt;}
.y35{bottom:343.474267pt;}
.y97{bottom:345.752667pt;}
.y13{bottom:346.973067pt;}
.y133{bottom:347.300000pt;}
.y58{bottom:348.633333pt;}
.yec{bottom:349.645200pt;}
.yfc{bottom:353.433333pt;}
.yca{bottom:353.503067pt;}
.y112{bottom:357.340933pt;}
.y6a{bottom:357.781867pt;}
.yab{bottom:358.140933pt;}
.y152{bottom:359.560933pt;}
.y34{bottom:362.674267pt;}
.y12{bottom:366.173067pt;}
.y132{bottom:366.766667pt;}
.y57{bottom:367.833333pt;}
.y96{bottom:368.198933pt;}
.yeb{bottom:368.845200pt;}
.yfb{bottom:372.633333pt;}
.yc9{bottom:372.703067pt;}
.y151{bottom:377.160933pt;}
.yaa{bottom:377.607600pt;}
.y9c{bottom:382.333544pt;}
.y111{bottom:384.100000pt;}
.y131{bottom:386.233333pt;}
.y56{bottom:387.033333pt;}
.y33{bottom:389.433333pt;}
.yfa{bottom:391.833333pt;}
.yc8{bottom:391.903067pt;}
.y11{bottom:392.932133pt;}
.y150{bottom:394.760933pt;}
.ya9{bottom:397.074267pt;}
.y69{bottom:403.740933pt;}
.y130{bottom:405.700000pt;}
.y55{bottom:406.233333pt;}
.yea{bottom:408.623600pt;}
.yf9{bottom:411.033333pt;}
.y14f{bottom:412.360933pt;}
.y93{bottom:419.433333pt;}
.y68{bottom:421.340933pt;}
.y12f{bottom:425.166667pt;}
.y54{bottom:425.433333pt;}
.y14e{bottom:429.960933pt;}
.yf8{bottom:430.233333pt;}
.ye9{bottom:431.217467pt;}
.yc7{bottom:436.481467pt;}
.y92{bottom:438.633333pt;}
.y53{bottom:444.633333pt;}
.ya8{bottom:446.766667pt;}
.y14d{bottom:447.560933pt;}
.yf7{bottom:449.433333pt;}
.ye8{bottom:453.894667pt;}
.y91{bottom:457.833333pt;}
.yc6{bottom:459.075200pt;}
.y110{bottom:463.300000pt;}
.y52{bottom:463.833333pt;}
.y12e{bottom:464.100000pt;}
.ya7{bottom:464.366667pt;}
.y14c{bottom:465.160933pt;}
.y32{bottom:468.633333pt;}
.y10{bottom:469.732133pt;}
.y78{bottom:474.798852pt;}
.ye7{bottom:476.571733pt;}
.y90{bottom:476.633333pt;}
.yc5{bottom:481.752400pt;}
.y14b{bottom:482.760933pt;}
.y10f{bottom:482.766667pt;}
.y51{bottom:483.033333pt;}
.y12d{bottom:483.566667pt;}
.y31{bottom:487.833333pt;}
.yf{bottom:488.932133pt;}
.y75{bottom:492.405333pt;}
.y8f{bottom:495.433333pt;}
.ye6{bottom:499.248933pt;}
.y14a{bottom:500.360933pt;}
.y50{bottom:502.233333pt;}
.yb9{bottom:502.334533pt;}
.y12c{bottom:503.033333pt;}
.yc4{bottom:504.429600pt;}
.y77{bottom:506.123189pt;}
.y30{bottom:507.033333pt;}
.ye{bottom:508.132133pt;}
.y8e{bottom:514.233333pt;}
.ybd{bottom:514.507072pt;}
.ye4{bottom:515.464533pt;}
.y149{bottom:517.960933pt;}
.y4f{bottom:521.433333pt;}
.y7c{bottom:521.475867pt;}
.y10e{bottom:521.700000pt;}
.y12b{bottom:522.500000pt;}
.y2f{bottom:526.233333pt;}
.yc3{bottom:527.106667pt;}
.yd{bottom:527.332133pt;}
.ye3{bottom:531.464533pt;}
.y8d{bottom:533.033333pt;}
.y148{bottom:535.560933pt;}
.yb8{bottom:536.756000pt;}
.ye5{bottom:539.464533pt;}
.y7b{bottom:540.142533pt;}
.y4e{bottom:540.633333pt;}
.y10d{bottom:541.166667pt;}
.y12a{bottom:541.966667pt;}
.y2e{bottom:545.433333pt;}
.yc{bottom:546.532000pt;}
.ye2{bottom:547.464533pt;}
.yc2{bottom:549.700533pt;}
.y8c{bottom:551.833333pt;}
.y147{bottom:553.160933pt;}
.yb7{bottom:555.422667pt;}
.y7a{bottom:558.809200pt;}
.y4d{bottom:559.833333pt;}
.y10c{bottom:560.633333pt;}
.y129{bottom:561.433333pt;}
.ye1{bottom:563.464533pt;}
.y2d{bottom:564.633333pt;}
.yb{bottom:565.732133pt;}
.y8b{bottom:570.633333pt;}
.y146{bottom:570.760933pt;}
.yc1{bottom:573.909867pt;}
.yb6{bottom:574.089333pt;}
.y79{bottom:577.475867pt;}
.y4c{bottom:579.033333pt;}
.ye0{bottom:579.239067pt;}
.y10b{bottom:580.100000pt;}
.y128{bottom:580.900000pt;}
.yc0{bottom:581.909867pt;}
.y2c{bottom:583.833333pt;}
.ya{bottom:584.932133pt;}
.y145{bottom:588.360933pt;}
.y8a{bottom:589.433333pt;}
.yb5{bottom:592.756000pt;}
.ydf{bottom:595.239067pt;}
.ybc{bottom:596.054213pt;}
.y4b{bottom:598.233333pt;}
.y10a{bottom:599.566667pt;}
.y127{bottom:600.366667pt;}
.y2b{bottom:603.033333pt;}
.y9{bottom:604.132133pt;}
.y144{bottom:605.960933pt;}
.y89{bottom:608.233333pt;}
.yb4{bottom:611.422667pt;}
.y76{bottom:613.826722pt;}
.yde{bottom:617.034400pt;}
.y4a{bottom:617.433333pt;}
.y109{bottom:619.033333pt;}
.y126{bottom:619.833333pt;}
.ybf{bottom:620.633333pt;}
.y2a{bottom:622.233333pt;}
.y8{bottom:623.332133pt;}
.y143{bottom:623.560933pt;}
.yba{bottom:623.755922pt;}
.y88{bottom:627.033333pt;}
.ydd{bottom:633.034400pt;}
.y49{bottom:637.033333pt;}
.ybe{bottom:638.233333pt;}
.y108{bottom:638.500000pt;}
.y125{bottom:639.300000pt;}
.ybb{bottom:640.589745pt;}
.y29{bottom:641.433333pt;}
.y7{bottom:642.532000pt;}
.y87{bottom:645.833333pt;}
.y67{bottom:651.207600pt;}
.ydc{bottom:654.829600pt;}
.y48{bottom:656.633333pt;}
.y107{bottom:657.966667pt;}
.y142{bottom:658.760933pt;}
.y124{bottom:658.766667pt;}
.y28{bottom:660.633333pt;}
.y6{bottom:661.732133pt;}
.y86{bottom:664.633333pt;}
.y66{bottom:670.674267pt;}
.ydb{bottom:670.829600pt;}
.y47{bottom:676.233333pt;}
.ya6{bottom:677.433333pt;}
.y123{bottom:678.233333pt;}
.y27{bottom:679.833333pt;}
.y85{bottom:683.433333pt;}
.y141{bottom:685.520000pt;}
.y65{bottom:690.140933pt;}
.yda{bottom:692.541600pt;}
.y46{bottom:695.833333pt;}
.ya5{bottom:696.900000pt;}
.y122{bottom:697.700000pt;}
.y26{bottom:699.033333pt;}
.y84{bottom:702.233333pt;}
.yd9{bottom:708.541600pt;}
.y64{bottom:709.607600pt;}
.y45{bottom:715.433333pt;}
.ya4{bottom:716.366667pt;}
.y121{bottom:717.166667pt;}
.y25{bottom:718.233333pt;}
.y83{bottom:721.033333pt;}
.y63{bottom:729.074267pt;}
.yd8{bottom:732.309867pt;}
.y44{bottom:735.033333pt;}
.ya3{bottom:735.833333pt;}
.y120{bottom:736.633333pt;}
.y24{bottom:737.433333pt;}
.y82{bottom:739.833333pt;}
.yd7{bottom:740.309867pt;}
.y62{bottom:748.540933pt;}
.y140{bottom:752.720000pt;}
.y43{bottom:754.633333pt;}
.ya2{bottom:755.300000pt;}
.y11f{bottom:756.100000pt;}
.y23{bottom:756.633333pt;}
.y81{bottom:758.633333pt;}
.y5{bottom:761.198667pt;}
.y61{bottom:768.007600pt;}
.y42{bottom:774.233333pt;}
.ya1{bottom:774.766667pt;}
.y11e{bottom:775.566667pt;}
.y22{bottom:775.833333pt;}
.y80{bottom:777.433333pt;}
.yd6{bottom:779.033333pt;}
.y13f{bottom:783.120000pt;}
.y60{bottom:787.474267pt;}
.y4{bottom:788.398800pt;}
.y41{bottom:793.833333pt;}
.ya0{bottom:794.233333pt;}
.y11d{bottom:794.766667pt;}
.y21{bottom:795.033333pt;}
.y7f{bottom:796.233333pt;}
.yd5{bottom:796.633333pt;}
.y13e{bottom:800.720000pt;}
.y40{bottom:813.433333pt;}
.y9f{bottom:813.700000pt;}
.y11c{bottom:813.966667pt;}
.y20{bottom:814.233333pt;}
.y7e{bottom:815.033333pt;}
.y13d{bottom:818.320000pt;}
.y3f{bottom:833.033333pt;}
.y9e{bottom:833.166667pt;}
.y1f{bottom:833.433333pt;}
.y7d{bottom:833.833333pt;}
.y13c{bottom:835.920000pt;}
.y3{bottom:837.520000pt;}
.y1e{bottom:852.633333pt;}
.y2{bottom:853.520000pt;}
.hb{height:33.962500pt;}
.h8{height:36.020833pt;}
.h7{height:38.687500pt;}
.h2{height:41.166667pt;}
.hc{height:43.015547pt;}
.hf{height:45.286458pt;}
.hd{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.h9{height:54.343750pt;}
.ha{height:56.604167pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.he{height:88.604167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.031467pt;}
.x1a{left:110.790533pt;}
.x4{left:114.929200pt;}
.x1c{left:122.129200pt;}
.x1e{left:129.688133pt;}
.x7{left:133.826800pt;}
.x9{left:139.228133pt;}
.xe{left:141.385867pt;}
.x20{left:144.806267pt;}
.x15{left:147.513339pt;}
.x22{left:152.724400pt;}
.x8{left:160.283467pt;}
.x5{left:161.929200pt;}
.x14{left:173.403733pt;}
.x19{left:179.181067pt;}
.x1d{left:198.078800pt;}
.x11{left:241.842455pt;}
.x6{left:268.513733pt;}
.x1{left:275.763200pt;}
.x16{left:281.626594pt;}
.xa{left:287.312575pt;}
.xc{left:313.202969pt;}
.x18{left:339.107322pt;}
.xb{left:360.322473pt;}
.x17{left:362.920405pt;}
.x12{left:369.559111pt;}
.x13{left:389.657467pt;}
.xf{left:394.066933pt;}
.xd{left:395.000000pt;}
.x10{left:416.744000pt;}
.x1b{left:428.629867pt;}
.x1f{left:462.286533pt;}
.x21{left:476.833067pt;}
.x23{left:510.852800pt;}
.x2{left:536.590533pt;}
}




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