
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_27e398bffcd7e0652933511c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85537e3a91edb251950afb09.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ec4c1f85e7ac058322c64867.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2160a658b755a18b0826f752.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_8587c3f98fcf8da2a5eb9546.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f42448feafbf59242df2500b.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a8d8442f26a483809a909859.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1015bcbde432b31b1484dcd9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ff4dab85341f92d0313dc7eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960938;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:-73.440000px;}
.v5{vertical-align:-70.560000px;}
.v7{vertical-align:-69.120000px;}
.v8{vertical-align:-67.680000px;}
.v4{vertical-align:-60.480000px;}
.v6{vertical-align:-57.600000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lse{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls13{letter-spacing:9.360000px;}
.ls1c{letter-spacing:16.306560px;}
.ls3{letter-spacing:16.560000px;}
.ls11{letter-spacing:32.400000px;}
.lsf{letter-spacing:44.280000px;}
.ls15{letter-spacing:46.546560px;}
.ls17{letter-spacing:63.826560px;}
.lsc{letter-spacing:69.586560px;}
.ls1a{letter-spacing:211.464000px;}
.ls10{letter-spacing:224.064000px;}
.ls14{letter-spacing:300.756000px;}
.ls12{letter-spacing:481.836000px;}
.ls19{letter-spacing:1219.752000px;}
.lsd{letter-spacing:1425.456000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws9{word-spacing:-15.606600px;}
.wsb{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.613000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.994000px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-3.564480px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:5.336640px;}
._14{width:6.349920px;}
._c{width:7.384320px;}
._11{width:8.562240px;}
._7{width:9.725760px;}
._6{width:11.044800px;}
._d{width:12.242880px;}
._15{width:13.933440px;}
._8{width:15.076800px;}
._b{width:16.413120px;}
._a{width:17.478720px;}
._e{width:19.180800px;}
._f{width:20.347200px;}
._12{width:22.256640px;}
._13{width:24.312960px;}
._19{width:25.933440px;}
._10{width:28.241280px;}
._16{width:31.354560px;}
._17{width:32.719680px;}
._5{width:495.589440px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y13d{bottom:3.600000px;}
.y144{bottom:3.945000px;}
.y56{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y140{bottom:12.600000px;}
.y49{bottom:14.035500px;}
.y143{bottom:20.895000px;}
.y4{bottom:21.240000px;}
.y55{bottom:21.271500px;}
.y48{bottom:21.631500px;}
.y13f{bottom:29.880000px;}
.y3f{bottom:38.520000px;}
.y54{bottom:38.554500px;}
.y3{bottom:44.280000px;}
.y47{bottom:51.154500px;}
.y3e{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y53{bottom:60.154500px;}
.y46{bottom:63.394500px;}
.y3d{bottom:73.125000px;}
.y45{bottom:76.354500px;}
.y52{bottom:78.874500px;}
.y44{bottom:89.314500px;}
.y3c{bottom:90.405000px;}
.y51{bottom:94.714500px;}
.yc8{bottom:98.676000px;}
.y105{bottom:99.396000px;}
.y13a{bottom:100.476000px;}
.y18f{bottom:102.636000px;}
.y16b{bottom:105.156000px;}
.y86{bottom:105.876000px;}
.ya5{bottom:106.956000px;}
.y3b{bottom:107.325000px;}
.y57{bottom:108.036000px;}
.y95{bottom:110.196000px;}
.y50{bottom:110.554500px;}
.y43{bottom:110.914500px;}
.yc7{bottom:115.956000px;}
.y104{bottom:116.316000px;}
.y139{bottom:117.756000px;}
.y4f{bottom:119.554500px;}
.y18e{bottom:119.916000px;}
.y40{bottom:122.080500px;}
.y16a{bottom:122.796000px;}
.y85{bottom:123.156000px;}
.ya4{bottom:124.236000px;}
.y94{bottom:127.476000px;}
.yc6{bottom:133.236000px;}
.y3a{bottom:133.245000px;}
.y103{bottom:133.596000px;}
.y18d{bottom:137.196000px;}
.y4e{bottom:138.634500px;}
.y84{bottom:140.076000px;}
.ya3{bottom:141.552000px;}
.y93{bottom:144.792000px;}
.y39{bottom:148.725000px;}
.y138{bottom:150.195000px;}
.yc5{bottom:150.555000px;}
.y102{bottom:150.915000px;}
.y4d{bottom:154.144500px;}
.y18c{bottom:154.875000px;}
.y169{bottom:157.035000px;}
.y83{bottom:157.395000px;}
.y137{bottom:158.115000px;}
.ya2{bottom:158.835000px;}
.y92{bottom:162.075000px;}
.y38{bottom:164.205000px;}
.y101{bottom:166.755000px;}
.yc4{bottom:167.835000px;}
.y4c{bottom:169.624500px;}
.y42{bottom:173.224500px;}
.y18b{bottom:173.955000px;}
.y168{bottom:174.315000px;}
.y82{bottom:174.675000px;}
.y136{bottom:175.035000px;}
.ya1{bottom:176.115000px;}
.y91{bottom:179.355000px;}
.y37{bottom:179.685000px;}
.y41{bottom:184.024500px;}
.y4b{bottom:185.104500px;}
.yc3{bottom:185.115000px;}
.y167{bottom:191.235000px;}
.y100{bottom:191.595000px;}
.y81{bottom:191.955000px;}
.y135{bottom:192.315000px;}
.ya0{bottom:193.395000px;}
.y36{bottom:195.165000px;}
.y4a{bottom:200.224500px;}
.yc2{bottom:202.395000px;}
.y9f{bottom:208.155000px;}
.y18a{bottom:208.515000px;}
.yff{bottom:208.875000px;}
.y80{bottom:209.235000px;}
.y134{bottom:209.595000px;}
.y35{bottom:210.675000px;}
.y9e{bottom:212.475000px;}
.y90{bottom:214.275000px;}
.yc1{bottom:219.675000px;}
.y189{bottom:225.795000px;}
.yfe{bottom:226.155000px;}
.y34{bottom:226.515000px;}
.y133{bottom:226.875000px;}
.y8f{bottom:228.675000px;}
.y8e{bottom:232.995000px;}
.yc0{bottom:236.955000px;}
.y33{bottom:241.995000px;}
.y166{bottom:243.075000px;}
.yfd{bottom:243.435000px;}
.y7f{bottom:244.155000px;}
.ybf{bottom:254.235000px;}
.y32{bottom:257.475000px;}
.y7e{bottom:257.835000px;}
.y188{bottom:260.355000px;}
.yfc{bottom:260.715000px;}
.y132{bottom:261.075000px;}
.ybe{bottom:271.155000px;}
.y31{bottom:272.955000px;}
.y187{bottom:277.305000px;}
.yfb{bottom:278.025000px;}
.y131{bottom:278.385000px;}
.y1e{bottom:281.235000px;}
.y30{bottom:288.435000px;}
.y186{bottom:294.585000px;}
.y165{bottom:294.945000px;}
.yfa{bottom:295.305000px;}
.ybd{bottom:297.465000px;}
.y2f{bottom:303.915000px;}
.y130{bottom:305.025000px;}
.y1d{bottom:305.355000px;}
.y185{bottom:311.865000px;}
.yf9{bottom:312.585000px;}
.ybc{bottom:314.745000px;}
.y2e{bottom:319.395000px;}
.y12f{bottom:322.305000px;}
.y184{bottom:329.145000px;}
.y1c{bottom:329.475000px;}
.yf8{bottom:329.865000px;}
.ybb{bottom:332.025000px;}
.y2d{bottom:334.905000px;}
.y10{bottom:335.625000px;}
.y12e{bottom:339.585000px;}
.yf7{bottom:345.345000px;}
.y183{bottom:346.425000px;}
.y164{bottom:347.145000px;}
.yba{bottom:349.305000px;}
.y2c{bottom:350.385000px;}
.yf6{bottom:353.265000px;}
.y1b{bottom:353.985000px;}
.y12d{bottom:356.865000px;}
.y182{bottom:363.705000px;}
.y163{bottom:364.065000px;}
.y2b{bottom:366.225000px;}
.yb9{bottom:366.585000px;}
.yf5{bottom:370.545000px;}
.y12c{bottom:374.145000px;}
.y1a{bottom:378.105000px;}
.y162{bottom:380.985000px;}
.y2a{bottom:381.705000px;}
.yb8{bottom:383.865000px;}
.yf4{bottom:387.825000px;}
.y12b{bottom:391.065000px;}
.y29{bottom:397.185000px;}
.y181{bottom:398.265000px;}
.yb7{bottom:401.145000px;}
.y19{bottom:402.225000px;}
.yf3{bottom:405.150000px;}
.y161{bottom:407.670000px;}
.y12a{bottom:408.390000px;}
.y28{bottom:412.665000px;}
.y180{bottom:415.590000px;}
.yb6{bottom:418.470000px;}
.yf2{bottom:422.430000px;}
.y160{bottom:424.950000px;}
.y9d{bottom:425.310000px;}
.y129{bottom:425.670000px;}
.y18{bottom:426.345000px;}
.y27{bottom:428.145000px;}
.y17f{bottom:432.870000px;}
.yb5{bottom:435.750000px;}
.yf1{bottom:439.710000px;}
.y15f{bottom:441.870000px;}
.y128{bottom:442.950000px;}
.y26{bottom:443.625000px;}
.y9c{bottom:450.150000px;}
.y17{bottom:450.465000px;}
.yb4{bottom:453.030000px;}
.yf0{bottom:456.630000px;}
.y127{bottom:458.790000px;}
.y25{bottom:459.105000px;}
.y15e{bottom:459.510000px;}
.y9b{bottom:464.190000px;}
.y126{bottom:466.350000px;}
.y17e{bottom:467.430000px;}
.yb3{bottom:470.310000px;}
.yef{bottom:473.910000px;}
.y16{bottom:474.630000px;}
.y15d{bottom:476.790000px;}
.y125{bottom:483.630000px;}
.y17d{bottom:484.350000px;}
.yb2{bottom:487.230000px;}
.y24{bottom:490.470000px;}
.yee{bottom:491.190000px;}
.y15c{bottom:494.070000px;}
.y8d{bottom:498.030000px;}
.y15{bottom:498.750000px;}
.y124{bottom:500.910000px;}
.y17c{bottom:501.630000px;}
.y7d{bottom:502.710000px;}
.yb1{bottom:504.510000px;}
.y23{bottom:505.950000px;}
.yed{bottom:508.470000px;}
.y7c{bottom:510.270000px;}
.y15b{bottom:510.990000px;}
.y123{bottom:518.190000px;}
.y17b{bottom:518.910000px;}
.y22{bottom:521.430000px;}
.yb0{bottom:521.790000px;}
.y14{bottom:522.870000px;}
.yec{bottom:525.750000px;}
.y7b{bottom:527.550000px;}
.y15a{bottom:528.630000px;}
.y8c{bottom:532.590000px;}
.y122{bottom:535.470000px;}
.y17a{bottom:535.830000px;}
.y21{bottom:536.910000px;}
.yaf{bottom:539.100000px;}
.yeb{bottom:543.060000px;}
.y159{bottom:545.940000px;}
.y8b{bottom:546.300000px;}
.y13{bottom:546.990000px;}
.y20{bottom:552.390000px;}
.y121{bottom:552.780000px;}
.y7a{bottom:554.220000px;}
.yae{bottom:556.380000px;}
.yea{bottom:560.340000px;}
.y179{bottom:562.500000px;}
.y158{bottom:562.860000px;}
.y120{bottom:570.060000px;}
.y12{bottom:571.110000px;}
.y79{bottom:571.500000px;}
.yad{bottom:573.660000px;}
.ye9{bottom:575.820000px;}
.y178{bottom:579.780000px;}
.y157{bottom:580.140000px;}
.y1f{bottom:582.990000px;}
.ye8{bottom:583.740000px;}
.y11f{bottom:587.340000px;}
.y78{bottom:588.780000px;}
.yac{bottom:590.940000px;}
.y11{bottom:595.230000px;}
.y177{bottom:597.060000px;}
.y156{bottom:597.420000px;}
.ye7{bottom:601.020000px;}
.y11e{bottom:604.620000px;}
.y77{bottom:606.060000px;}
.yab{bottom:608.220000px;}
.y155{bottom:614.340000px;}
.ye6{bottom:618.300000px;}
.y11d{bottom:621.900000px;}
.y76{bottom:623.340000px;}
.yaa{bottom:625.140000px;}
.y154{bottom:631.620000px;}
.ye5{bottom:635.580000px;}
.y11c{bottom:639.180000px;}
.y75{bottom:640.620000px;}
.ya9{bottom:647.820000px;}
.y176{bottom:648.900000px;}
.ye4{bottom:652.860000px;}
.y11b{bottom:654.660000px;}
.y74{bottom:657.900000px;}
.y153{bottom:658.260000px;}
.y11a{bottom:662.580000px;}
.y175{bottom:666.180000px;}
.ye3{bottom:670.170000px;}
.y73{bottom:675.210000px;}
.y152{bottom:675.570000px;}
.y119{bottom:679.890000px;}
.y174{bottom:683.130000px;}
.ye2{bottom:687.450000px;}
.y72{bottom:692.130000px;}
.y151{bottom:692.850000px;}
.y118{bottom:697.170000px;}
.y173{bottom:700.410000px;}
.ye1{bottom:704.730000px;}
.y71{bottom:709.410000px;}
.y150{bottom:710.130000px;}
.y117{bottom:714.450000px;}
.y172{bottom:717.690000px;}
.ye0{bottom:722.010000px;}
.y9a{bottom:724.890000px;}
.y70{bottom:726.690000px;}
.y14f{bottom:727.410000px;}
.y116{bottom:731.370000px;}
.y99{bottom:732.810000px;}
.y171{bottom:734.610000px;}
.ydf{bottom:737.490000px;}
.y6f{bottom:743.970000px;}
.y14e{bottom:744.690000px;}
.yde{bottom:745.410000px;}
.y115{bottom:748.650000px;}
.y6e{bottom:761.250000px;}
.y14d{bottom:761.970000px;}
.ydd{bottom:762.690000px;}
.y114{bottom:765.930000px;}
.y98{bottom:767.370000px;}
.y6d{bottom:778.530000px;}
.y14c{bottom:778.890000px;}
.ydc{bottom:779.970000px;}
.y97{bottom:780.690000px;}
.y113{bottom:783.210000px;}
.y6c{bottom:795.810000px;}
.y14b{bottom:796.170000px;}
.ydb{bottom:797.250000px;}
.y112{bottom:800.490000px;}
.y8a{bottom:806.655000px;}
.y170{bottom:812.775000px;}
.y6b{bottom:813.135000px;}
.y14a{bottom:813.495000px;}
.yda{bottom:814.215000px;}
.y111{bottom:817.815000px;}
.y89{bottom:828.975000px;}
.y6a{bottom:830.415000px;}
.y149{bottom:830.775000px;}
.yd9{bottom:831.495000px;}
.y88{bottom:833.295000px;}
.y110{bottom:841.215000px;}
.y69{bottom:847.695000px;}
.y148{bottom:848.055000px;}
.yd8{bottom:848.775000px;}
.y10f{bottom:858.495000px;}
.y16f{bottom:864.615000px;}
.y68{bottom:864.975000px;}
.y147{bottom:865.335000px;}
.yd7{bottom:866.055000px;}
.ya8{bottom:870.375000px;}
.y10e{bottom:875.775000px;}
.y67{bottom:882.255000px;}
.y146{bottom:882.615000px;}
.yd6{bottom:883.335000px;}
.ya7{bottom:892.695000px;}
.y10d{bottom:893.055000px;}
.ya6{bottom:897.015000px;}
.yd5{bottom:898.815000px;}
.y66{bottom:899.175000px;}
.yd4{bottom:906.735000px;}
.y10c{bottom:910.335000px;}
.y145{bottom:914.295000px;}
.y65{bottom:916.455000px;}
.y142{bottom:921.870000px;}
.yd3{bottom:924.015000px;}
.y10b{bottom:927.615000px;}
.y16e{bottom:933.405000px;}
.y64{bottom:933.765000px;}
.yd2{bottom:941.325000px;}
.yf{bottom:943.125000px;}
.y10a{bottom:944.925000px;}
.ye{bottom:948.525000px;}
.y63{bottom:951.045000px;}
.yd1{bottom:958.605000px;}
.y141{bottom:961.845000px;}
.y109{bottom:962.205000px;}
.y62{bottom:968.325000px;}
.yd{bottom:972.645000px;}
.yd0{bottom:975.885000px;}
.y108{bottom:979.485000px;}
.yc{bottom:983.085000px;}
.y61{bottom:985.605000px;}
.ycf{bottom:993.165000px;}
.y107{bottom:996.765000px;}
.y60{bottom:1002.885000px;}
.yb{bottom:1007.205000px;}
.yce{bottom:1010.445000px;}
.y106{bottom:1012.245000px;}
.y13e{bottom:1019.085000px;}
.y16d{bottom:1019.805000px;}
.y5f{bottom:1020.165000px;}
.ycd{bottom:1027.725000px;}
.ya{bottom:1035.645000px;}
.y5e{bottom:1037.445000px;}
.ycc{bottom:1045.005000px;}
.y5d{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.ycb{bottom:1062.285000px;}
.y5c{bottom:1072.050000px;}
.y13c{bottom:1076.730000px;}
.yca{bottom:1080.330000px;}
.y96{bottom:1081.410000px;}
.y8{bottom:1088.250000px;}
.y16c{bottom:1088.610000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.yc9{bottom:1095.810000px;}
.y87{bottom:1098.330000px;}
.y13b{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h14{height:5.650313px;}
.h1d{height:17.265000px;}
.h1a{height:18.372656px;}
.h1b{height:18.866250px;}
.h7{height:24.348516px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h20{height:34.200000px;}
.ha{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h1c{height:42.229688px;}
.h1f{height:51.825000px;}
.h1e{height:51.870000px;}
.h10{height:53.677969px;}
.h13{height:55.147500px;}
.h8{height:58.050000px;}
.h15{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.hb{height:60.952500px;}
.h19{height:62.163910px;}
.h21{height:62.960625px;}
.h17{height:63.455625px;}
.h18{height:65.518594px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h11{height:212.805000px;}
.hd{height:604.605000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w7{width:335.655000px;}
.w8{width:391.815000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x17{left:8.295000px;}
.x3a{left:9.346500px;}
.x38{left:10.440000px;}
.x4{left:13.305000px;}
.x15{left:16.546500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x35{left:21.600000px;}
.x33{left:22.666500px;}
.x14{left:29.146500px;}
.x34{left:35.626500px;}
.x3c{left:36.720000px;}
.x6{left:43.575000px;}
.x36{left:46.080000px;}
.x1b{left:47.542500px;}
.xf{left:50.782500px;}
.xe{left:55.102500px;}
.x1d{left:57.262500px;}
.x3b{left:59.062500px;}
.x18{left:62.295000px;}
.x1c{left:66.265500px;}
.x12{left:73.105500px;}
.x11{left:76.705500px;}
.x1{left:78.529500px;}
.x13{left:80.305500px;}
.x30{left:82.489500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x28{left:97.596000px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.x21{left:113.436000px;}
.x10{left:124.585500px;}
.x39{left:127.110000px;}
.x1f{left:140.472000px;}
.x31{left:142.975500px;}
.x37{left:151.615500px;}
.x3{left:182.250000px;}
.x24{left:189.795000px;}
.x29{left:191.235000px;}
.x16{left:218.970000px;}
.xa{left:315.870000px;}
.xc{left:321.270000px;}
.x2b{left:361.590000px;}
.x2f{left:368.790000px;}
.x32{left:419.220000px;}
.x23{left:446.580000px;}
.xb{left:563.250000px;}
.x25{left:622.335000px;}
.x22{left:623.415000px;}
.x26{left:637.815000px;}
.x27{left:640.695000px;}
.x2a{left:643.575000px;}
.x2e{left:650.415000px;}
.x2d{left:651.495000px;}
.x2c{left:654.015000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v5{vertical-align:-62.720000pt;}
.v7{vertical-align:-61.440000pt;}
.v8{vertical-align:-60.160000pt;}
.v4{vertical-align:-53.760000pt;}
.v6{vertical-align:-51.200000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls13{letter-spacing:8.320000pt;}
.ls1c{letter-spacing:14.494720pt;}
.ls3{letter-spacing:14.720000pt;}
.ls11{letter-spacing:28.800000pt;}
.lsf{letter-spacing:39.360000pt;}
.ls15{letter-spacing:41.374720pt;}
.ls17{letter-spacing:56.734720pt;}
.lsc{letter-spacing:61.854720pt;}
.ls1a{letter-spacing:187.968000pt;}
.ls10{letter-spacing:199.168000pt;}
.ls14{letter-spacing:267.338667pt;}
.ls12{letter-spacing:428.298667pt;}
.ls19{letter-spacing:1084.224000pt;}
.lsd{letter-spacing:1267.072000pt;}
.wsa{word-spacing:-53.760000pt;}
.ws9{word-spacing:-13.872533pt;}
.wsb{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.989333pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.994667pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-3.168427pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.743680pt;}
._14{width:5.644373pt;}
._c{width:6.563840pt;}
._11{width:7.610880pt;}
._7{width:8.645120pt;}
._6{width:9.817600pt;}
._d{width:10.882560pt;}
._15{width:12.385280pt;}
._8{width:13.401600pt;}
._b{width:14.589440pt;}
._a{width:15.536640pt;}
._e{width:17.049600pt;}
._f{width:18.086400pt;}
._12{width:19.783680pt;}
._13{width:21.611520pt;}
._19{width:23.051947pt;}
._10{width:25.103360pt;}
._16{width:27.870720pt;}
._17{width:29.084160pt;}
._5{width:440.523947pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:3.200000pt;}
.y144{bottom:3.506667pt;}
.y56{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y140{bottom:11.200000pt;}
.y49{bottom:12.476000pt;}
.y143{bottom:18.573333pt;}
.y4{bottom:18.880000pt;}
.y55{bottom:18.908000pt;}
.y48{bottom:19.228000pt;}
.y13f{bottom:26.560000pt;}
.y3f{bottom:34.240000pt;}
.y54{bottom:34.270667pt;}
.y3{bottom:39.360000pt;}
.y47{bottom:45.470667pt;}
.y3e{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:53.470667pt;}
.y46{bottom:56.350667pt;}
.y3d{bottom:65.000000pt;}
.y45{bottom:67.870667pt;}
.y52{bottom:70.110667pt;}
.y44{bottom:79.390667pt;}
.y3c{bottom:80.360000pt;}
.y51{bottom:84.190667pt;}
.yc8{bottom:87.712000pt;}
.y105{bottom:88.352000pt;}
.y13a{bottom:89.312000pt;}
.y18f{bottom:91.232000pt;}
.y16b{bottom:93.472000pt;}
.y86{bottom:94.112000pt;}
.ya5{bottom:95.072000pt;}
.y3b{bottom:95.400000pt;}
.y57{bottom:96.032000pt;}
.y95{bottom:97.952000pt;}
.y50{bottom:98.270667pt;}
.y43{bottom:98.590667pt;}
.yc7{bottom:103.072000pt;}
.y104{bottom:103.392000pt;}
.y139{bottom:104.672000pt;}
.y4f{bottom:106.270667pt;}
.y18e{bottom:106.592000pt;}
.y40{bottom:108.516000pt;}
.y16a{bottom:109.152000pt;}
.y85{bottom:109.472000pt;}
.ya4{bottom:110.432000pt;}
.y94{bottom:113.312000pt;}
.yc6{bottom:118.432000pt;}
.y3a{bottom:118.440000pt;}
.y103{bottom:118.752000pt;}
.y18d{bottom:121.952000pt;}
.y4e{bottom:123.230667pt;}
.y84{bottom:124.512000pt;}
.ya3{bottom:125.824000pt;}
.y93{bottom:128.704000pt;}
.y39{bottom:132.200000pt;}
.y138{bottom:133.506667pt;}
.yc5{bottom:133.826667pt;}
.y102{bottom:134.146667pt;}
.y4d{bottom:137.017333pt;}
.y18c{bottom:137.666667pt;}
.y169{bottom:139.586667pt;}
.y83{bottom:139.906667pt;}
.y137{bottom:140.546667pt;}
.ya2{bottom:141.186667pt;}
.y92{bottom:144.066667pt;}
.y38{bottom:145.960000pt;}
.y101{bottom:148.226667pt;}
.yc4{bottom:149.186667pt;}
.y4c{bottom:150.777333pt;}
.y42{bottom:153.977333pt;}
.y18b{bottom:154.626667pt;}
.y168{bottom:154.946667pt;}
.y82{bottom:155.266667pt;}
.y136{bottom:155.586667pt;}
.ya1{bottom:156.546667pt;}
.y91{bottom:159.426667pt;}
.y37{bottom:159.720000pt;}
.y41{bottom:163.577333pt;}
.y4b{bottom:164.537333pt;}
.yc3{bottom:164.546667pt;}
.y167{bottom:169.986667pt;}
.y100{bottom:170.306667pt;}
.y81{bottom:170.626667pt;}
.y135{bottom:170.946667pt;}
.ya0{bottom:171.906667pt;}
.y36{bottom:173.480000pt;}
.y4a{bottom:177.977333pt;}
.yc2{bottom:179.906667pt;}
.y9f{bottom:185.026667pt;}
.y18a{bottom:185.346667pt;}
.yff{bottom:185.666667pt;}
.y80{bottom:185.986667pt;}
.y134{bottom:186.306667pt;}
.y35{bottom:187.266667pt;}
.y9e{bottom:188.866667pt;}
.y90{bottom:190.466667pt;}
.yc1{bottom:195.266667pt;}
.y189{bottom:200.706667pt;}
.yfe{bottom:201.026667pt;}
.y34{bottom:201.346667pt;}
.y133{bottom:201.666667pt;}
.y8f{bottom:203.266667pt;}
.y8e{bottom:207.106667pt;}
.yc0{bottom:210.626667pt;}
.y33{bottom:215.106667pt;}
.y166{bottom:216.066667pt;}
.yfd{bottom:216.386667pt;}
.y7f{bottom:217.026667pt;}
.ybf{bottom:225.986667pt;}
.y32{bottom:228.866667pt;}
.y7e{bottom:229.186667pt;}
.y188{bottom:231.426667pt;}
.yfc{bottom:231.746667pt;}
.y132{bottom:232.066667pt;}
.ybe{bottom:241.026667pt;}
.y31{bottom:242.626667pt;}
.y187{bottom:246.493333pt;}
.yfb{bottom:247.133333pt;}
.y131{bottom:247.453333pt;}
.y1e{bottom:249.986667pt;}
.y30{bottom:256.386667pt;}
.y186{bottom:261.853333pt;}
.y165{bottom:262.173333pt;}
.yfa{bottom:262.493333pt;}
.ybd{bottom:264.413333pt;}
.y2f{bottom:270.146667pt;}
.y130{bottom:271.133333pt;}
.y1d{bottom:271.426667pt;}
.y185{bottom:277.213333pt;}
.yf9{bottom:277.853333pt;}
.ybc{bottom:279.773333pt;}
.y2e{bottom:283.906667pt;}
.y12f{bottom:286.493333pt;}
.y184{bottom:292.573333pt;}
.y1c{bottom:292.866667pt;}
.yf8{bottom:293.213333pt;}
.ybb{bottom:295.133333pt;}
.y2d{bottom:297.693333pt;}
.y10{bottom:298.333333pt;}
.y12e{bottom:301.853333pt;}
.yf7{bottom:306.973333pt;}
.y183{bottom:307.933333pt;}
.y164{bottom:308.573333pt;}
.yba{bottom:310.493333pt;}
.y2c{bottom:311.453333pt;}
.yf6{bottom:314.013333pt;}
.y1b{bottom:314.653333pt;}
.y12d{bottom:317.213333pt;}
.y182{bottom:323.293333pt;}
.y163{bottom:323.613333pt;}
.y2b{bottom:325.533333pt;}
.yb9{bottom:325.853333pt;}
.yf5{bottom:329.373333pt;}
.y12c{bottom:332.573333pt;}
.y1a{bottom:336.093333pt;}
.y162{bottom:338.653333pt;}
.y2a{bottom:339.293333pt;}
.yb8{bottom:341.213333pt;}
.yf4{bottom:344.733333pt;}
.y12b{bottom:347.613333pt;}
.y29{bottom:353.053333pt;}
.y181{bottom:354.013333pt;}
.yb7{bottom:356.573333pt;}
.y19{bottom:357.533333pt;}
.yf3{bottom:360.133333pt;}
.y161{bottom:362.373333pt;}
.y12a{bottom:363.013333pt;}
.y28{bottom:366.813333pt;}
.y180{bottom:369.413333pt;}
.yb6{bottom:371.973333pt;}
.yf2{bottom:375.493333pt;}
.y160{bottom:377.733333pt;}
.y9d{bottom:378.053333pt;}
.y129{bottom:378.373333pt;}
.y18{bottom:378.973333pt;}
.y27{bottom:380.573333pt;}
.y17f{bottom:384.773333pt;}
.yb5{bottom:387.333333pt;}
.yf1{bottom:390.853333pt;}
.y15f{bottom:392.773333pt;}
.y128{bottom:393.733333pt;}
.y26{bottom:394.333333pt;}
.y9c{bottom:400.133333pt;}
.y17{bottom:400.413333pt;}
.yb4{bottom:402.693333pt;}
.yf0{bottom:405.893333pt;}
.y127{bottom:407.813333pt;}
.y25{bottom:408.093333pt;}
.y15e{bottom:408.453333pt;}
.y9b{bottom:412.613333pt;}
.y126{bottom:414.533333pt;}
.y17e{bottom:415.493333pt;}
.yb3{bottom:418.053333pt;}
.yef{bottom:421.253333pt;}
.y16{bottom:421.893333pt;}
.y15d{bottom:423.813333pt;}
.y125{bottom:429.893333pt;}
.y17d{bottom:430.533333pt;}
.yb2{bottom:433.093333pt;}
.y24{bottom:435.973333pt;}
.yee{bottom:436.613333pt;}
.y15c{bottom:439.173333pt;}
.y8d{bottom:442.693333pt;}
.y15{bottom:443.333333pt;}
.y124{bottom:445.253333pt;}
.y17c{bottom:445.893333pt;}
.y7d{bottom:446.853333pt;}
.yb1{bottom:448.453333pt;}
.y23{bottom:449.733333pt;}
.yed{bottom:451.973333pt;}
.y7c{bottom:453.573333pt;}
.y15b{bottom:454.213333pt;}
.y123{bottom:460.613333pt;}
.y17b{bottom:461.253333pt;}
.y22{bottom:463.493333pt;}
.yb0{bottom:463.813333pt;}
.y14{bottom:464.773333pt;}
.yec{bottom:467.333333pt;}
.y7b{bottom:468.933333pt;}
.y15a{bottom:469.893333pt;}
.y8c{bottom:473.413333pt;}
.y122{bottom:475.973333pt;}
.y17a{bottom:476.293333pt;}
.y21{bottom:477.253333pt;}
.yaf{bottom:479.200000pt;}
.yeb{bottom:482.720000pt;}
.y159{bottom:485.280000pt;}
.y8b{bottom:485.600000pt;}
.y13{bottom:486.213333pt;}
.y20{bottom:491.013333pt;}
.y121{bottom:491.360000pt;}
.y7a{bottom:492.640000pt;}
.yae{bottom:494.560000pt;}
.yea{bottom:498.080000pt;}
.y179{bottom:500.000000pt;}
.y158{bottom:500.320000pt;}
.y120{bottom:506.720000pt;}
.y12{bottom:507.653333pt;}
.y79{bottom:508.000000pt;}
.yad{bottom:509.920000pt;}
.ye9{bottom:511.840000pt;}
.y178{bottom:515.360000pt;}
.y157{bottom:515.680000pt;}
.y1f{bottom:518.213333pt;}
.ye8{bottom:518.880000pt;}
.y11f{bottom:522.080000pt;}
.y78{bottom:523.360000pt;}
.yac{bottom:525.280000pt;}
.y11{bottom:529.093333pt;}
.y177{bottom:530.720000pt;}
.y156{bottom:531.040000pt;}
.ye7{bottom:534.240000pt;}
.y11e{bottom:537.440000pt;}
.y77{bottom:538.720000pt;}
.yab{bottom:540.640000pt;}
.y155{bottom:546.080000pt;}
.ye6{bottom:549.600000pt;}
.y11d{bottom:552.800000pt;}
.y76{bottom:554.080000pt;}
.yaa{bottom:555.680000pt;}
.y154{bottom:561.440000pt;}
.ye5{bottom:564.960000pt;}
.y11c{bottom:568.160000pt;}
.y75{bottom:569.440000pt;}
.ya9{bottom:575.840000pt;}
.y176{bottom:576.800000pt;}
.ye4{bottom:580.320000pt;}
.y11b{bottom:581.920000pt;}
.y74{bottom:584.800000pt;}
.y153{bottom:585.120000pt;}
.y11a{bottom:588.960000pt;}
.y175{bottom:592.160000pt;}
.ye3{bottom:595.706667pt;}
.y73{bottom:600.186667pt;}
.y152{bottom:600.506667pt;}
.y119{bottom:604.346667pt;}
.y174{bottom:607.226667pt;}
.ye2{bottom:611.066667pt;}
.y72{bottom:615.226667pt;}
.y151{bottom:615.866667pt;}
.y118{bottom:619.706667pt;}
.y173{bottom:622.586667pt;}
.ye1{bottom:626.426667pt;}
.y71{bottom:630.586667pt;}
.y150{bottom:631.226667pt;}
.y117{bottom:635.066667pt;}
.y172{bottom:637.946667pt;}
.ye0{bottom:641.786667pt;}
.y9a{bottom:644.346667pt;}
.y70{bottom:645.946667pt;}
.y14f{bottom:646.586667pt;}
.y116{bottom:650.106667pt;}
.y99{bottom:651.386667pt;}
.y171{bottom:652.986667pt;}
.ydf{bottom:655.546667pt;}
.y6f{bottom:661.306667pt;}
.y14e{bottom:661.946667pt;}
.yde{bottom:662.586667pt;}
.y115{bottom:665.466667pt;}
.y6e{bottom:676.666667pt;}
.y14d{bottom:677.306667pt;}
.ydd{bottom:677.946667pt;}
.y114{bottom:680.826667pt;}
.y98{bottom:682.106667pt;}
.y6d{bottom:692.026667pt;}
.y14c{bottom:692.346667pt;}
.ydc{bottom:693.306667pt;}
.y97{bottom:693.946667pt;}
.y113{bottom:696.186667pt;}
.y6c{bottom:707.386667pt;}
.y14b{bottom:707.706667pt;}
.ydb{bottom:708.666667pt;}
.y112{bottom:711.546667pt;}
.y8a{bottom:717.026667pt;}
.y170{bottom:722.466667pt;}
.y6b{bottom:722.786667pt;}
.y14a{bottom:723.106667pt;}
.yda{bottom:723.746667pt;}
.y111{bottom:726.946667pt;}
.y89{bottom:736.866667pt;}
.y6a{bottom:738.146667pt;}
.y149{bottom:738.466667pt;}
.yd9{bottom:739.106667pt;}
.y88{bottom:740.706667pt;}
.y110{bottom:747.746667pt;}
.y69{bottom:753.506667pt;}
.y148{bottom:753.826667pt;}
.yd8{bottom:754.466667pt;}
.y10f{bottom:763.106667pt;}
.y16f{bottom:768.546667pt;}
.y68{bottom:768.866667pt;}
.y147{bottom:769.186667pt;}
.yd7{bottom:769.826667pt;}
.ya8{bottom:773.666667pt;}
.y10e{bottom:778.466667pt;}
.y67{bottom:784.226667pt;}
.y146{bottom:784.546667pt;}
.yd6{bottom:785.186667pt;}
.ya7{bottom:793.506667pt;}
.y10d{bottom:793.826667pt;}
.ya6{bottom:797.346667pt;}
.yd5{bottom:798.946667pt;}
.y66{bottom:799.266667pt;}
.yd4{bottom:805.986667pt;}
.y10c{bottom:809.186667pt;}
.y145{bottom:812.706667pt;}
.y65{bottom:814.626667pt;}
.y142{bottom:819.440000pt;}
.yd3{bottom:821.346667pt;}
.y10b{bottom:824.546667pt;}
.y16e{bottom:829.693333pt;}
.y64{bottom:830.013333pt;}
.yd2{bottom:836.733333pt;}
.yf{bottom:838.333333pt;}
.y10a{bottom:839.933333pt;}
.ye{bottom:843.133333pt;}
.y63{bottom:845.373333pt;}
.yd1{bottom:852.093333pt;}
.y141{bottom:854.973333pt;}
.y109{bottom:855.293333pt;}
.y62{bottom:860.733333pt;}
.yd{bottom:864.573333pt;}
.yd0{bottom:867.453333pt;}
.y108{bottom:870.653333pt;}
.yc{bottom:873.853333pt;}
.y61{bottom:876.093333pt;}
.ycf{bottom:882.813333pt;}
.y107{bottom:886.013333pt;}
.y60{bottom:891.453333pt;}
.yb{bottom:895.293333pt;}
.yce{bottom:898.173333pt;}
.y106{bottom:899.773333pt;}
.y13e{bottom:905.853333pt;}
.y16d{bottom:906.493333pt;}
.y5f{bottom:906.813333pt;}
.ycd{bottom:913.533333pt;}
.ya{bottom:920.573333pt;}
.y5e{bottom:922.173333pt;}
.ycc{bottom:928.893333pt;}
.y5d{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.ycb{bottom:944.253333pt;}
.y5c{bottom:952.933333pt;}
.y13c{bottom:957.093333pt;}
.yca{bottom:960.293333pt;}
.y96{bottom:961.253333pt;}
.y8{bottom:967.333333pt;}
.y16c{bottom:967.653333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.yc9{bottom:974.053333pt;}
.y87{bottom:976.293333pt;}
.y13b{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h14{height:5.022500pt;}
.h1d{height:15.346667pt;}
.h1a{height:16.331250pt;}
.h1b{height:16.770000pt;}
.h7{height:21.643125pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h20{height:30.400000pt;}
.ha{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h1c{height:37.537500pt;}
.h1f{height:46.066667pt;}
.h1e{height:46.106667pt;}
.h10{height:47.713750pt;}
.h13{height:49.020000pt;}
.h8{height:51.600000pt;}
.h15{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.hb{height:54.180000pt;}
.h19{height:55.256809pt;}
.h21{height:55.965000pt;}
.h17{height:56.405000pt;}
.h18{height:58.238750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h11{height:189.160000pt;}
.hd{height:537.426667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w7{width:298.360000pt;}
.w8{width:348.280000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x17{left:7.373333pt;}
.x3a{left:8.308000pt;}
.x38{left:9.280000pt;}
.x4{left:11.826667pt;}
.x15{left:14.708000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x35{left:19.200000pt;}
.x33{left:20.148000pt;}
.x14{left:25.908000pt;}
.x34{left:31.668000pt;}
.x3c{left:32.640000pt;}
.x6{left:38.733333pt;}
.x36{left:40.960000pt;}
.x1b{left:42.260000pt;}
.xf{left:45.140000pt;}
.xe{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x3b{left:52.500000pt;}
.x18{left:55.373333pt;}
.x1c{left:58.902667pt;}
.x12{left:64.982667pt;}
.x11{left:68.182667pt;}
.x1{left:69.804000pt;}
.x13{left:71.382667pt;}
.x30{left:73.324000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x28{left:86.752000pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.x21{left:100.832000pt;}
.x10{left:110.742667pt;}
.x39{left:112.986667pt;}
.x1f{left:124.864000pt;}
.x31{left:127.089333pt;}
.x37{left:134.769333pt;}
.x3{left:162.000000pt;}
.x24{left:168.706667pt;}
.x29{left:169.986667pt;}
.x16{left:194.640000pt;}
.xa{left:280.773333pt;}
.xc{left:285.573333pt;}
.x2b{left:321.413333pt;}
.x2f{left:327.813333pt;}
.x32{left:372.640000pt;}
.x23{left:396.960000pt;}
.xb{left:500.666667pt;}
.x25{left:553.186667pt;}
.x22{left:554.146667pt;}
.x26{left:566.946667pt;}
.x27{left:569.506667pt;}
.x2a{left:572.066667pt;}
.x2e{left:578.146667pt;}
.x2d{left:579.106667pt;}
.x2c{left:581.346667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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