
    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_5c65350495bd8cb902367970.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_8b280a8a2f9136a813395621.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_091edee372b3cc885b839ff3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.146000;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_b8e4ec7b30c27255795ae5b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987793;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_08f86ce3943eea80c580852a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_768632ecf8efccc4cedaf24a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_6048cb65de60e81b1fed8340.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.970000px;}
.ls2{letter-spacing:-1.980000px;}
.ls5{letter-spacing:-1.056000px;}
.ls1{letter-spacing:-0.264000px;}
.ls3{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws69{word-spacing:-20.016000px;}
.ws1{word-spacing:-16.500000px;}
.ws9d{word-spacing:-15.444000px;}
.ws74{word-spacing:-14.520000px;}
.ws2{word-spacing:-8.250000px;}
.ws95{word-spacing:-7.326000px;}
.ws9c{word-spacing:-7.260000px;}
.ws7f{word-spacing:-6.534000px;}
.ws97{word-spacing:-6.468000px;}
.ws6{word-spacing:-6.270000px;}
.ws6a{word-spacing:-6.072000px;}
.ws9e{word-spacing:-5.874000px;}
.ws64{word-spacing:-5.742000px;}
.ws6c{word-spacing:-5.676000px;}
.ws7{word-spacing:-5.610000px;}
.ws2c{word-spacing:-5.544000px;}
.ws7a{word-spacing:-5.478000px;}
.ws79{word-spacing:-5.346000px;}
.ws78{word-spacing:-5.082000px;}
.ws81{word-spacing:-4.554000px;}
.ws38{word-spacing:-4.422000px;}
.ws12{word-spacing:-4.290000px;}
.ws7e{word-spacing:-4.026000px;}
.ws6d{word-spacing:-3.894000px;}
.ws7c{word-spacing:-3.828000px;}
.ws45{word-spacing:-3.696000px;}
.ws22{word-spacing:-3.630000px;}
.ws84{word-spacing:-3.564000px;}
.ws8f{word-spacing:-3.234000px;}
.ws87{word-spacing:-3.168000px;}
.ws66{word-spacing:-3.036000px;}
.ws17{word-spacing:-2.970000px;}
.ws16{word-spacing:-2.904000px;}
.ws2f{word-spacing:-2.838000px;}
.wsa0{word-spacing:-2.772000px;}
.ws2b{word-spacing:-2.706000px;}
.ws89{word-spacing:-2.664000px;}
.ws35{word-spacing:-2.574000px;}
.ws33{word-spacing:-2.508000px;}
.ws5b{word-spacing:-2.376000px;}
.ws36{word-spacing:-2.310000px;}
.ws24{word-spacing:-2.244000px;}
.ws5d{word-spacing:-2.178000px;}
.ws13{word-spacing:-2.112000px;}
.ws2e{word-spacing:-2.046000px;}
.ws59{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.914000px;}
.ws42{word-spacing:-1.782000px;}
.ws15{word-spacing:-1.716000px;}
.ws5f{word-spacing:-1.584000px;}
.ws4{word-spacing:-1.518000px;}
.ws48{word-spacing:-1.452000px;}
.ws8b{word-spacing:-1.386000px;}
.ws34{word-spacing:-1.320000px;}
.ws68{word-spacing:-1.254000px;}
.ws5e{word-spacing:-1.188000px;}
.ws50{word-spacing:-1.122000px;}
.ws5c{word-spacing:-1.056000px;}
.ws65{word-spacing:-0.990000px;}
.ws32{word-spacing:-0.924000px;}
.ws2d{word-spacing:-0.858000px;}
.ws8{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.726000px;}
.ws5{word-spacing:-0.660000px;}
.ws26{word-spacing:-0.594000px;}
.ws54{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.462000px;}
.ws6f{word-spacing:-0.396000px;}
.ws7d{word-spacing:-0.330000px;}
.ws39{word-spacing:-0.264000px;}
.ws92{word-spacing:-0.198000px;}
.ws9{word-spacing:-0.132000px;}
.wsf{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws91{word-spacing:0.066000px;}
.ws80{word-spacing:0.132000px;}
.ws8d{word-spacing:0.198000px;}
.ws3b{word-spacing:0.264000px;}
.ws1e{word-spacing:0.330000px;}
.ws1d{word-spacing:0.396000px;}
.wsb{word-spacing:0.462000px;}
.ws44{word-spacing:0.528000px;}
.ws10{word-spacing:0.594000px;}
.ws20{word-spacing:0.660000px;}
.ws47{word-spacing:0.858000px;}
.ws4c{word-spacing:0.924000px;}
.ws58{word-spacing:0.990000px;}
.ws37{word-spacing:1.056000px;}
.ws70{word-spacing:1.122000px;}
.ws7b{word-spacing:1.188000px;}
.ws51{word-spacing:1.254000px;}
.ws67{word-spacing:1.320000px;}
.ws73{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.ws71{word-spacing:1.518000px;}
.ws8c{word-spacing:1.584000px;}
.ws61{word-spacing:1.650000px;}
.ws19{word-spacing:1.716000px;}
.ws53{word-spacing:1.782000px;}
.ws55{word-spacing:1.848000px;}
.ws72{word-spacing:1.914000px;}
.ws6e{word-spacing:1.980000px;}
.ws4e{word-spacing:2.046000px;}
.ws1b{word-spacing:2.112000px;}
.ws8e{word-spacing:2.178000px;}
.ws1c{word-spacing:2.244000px;}
.ws90{word-spacing:2.310000px;}
.ws30{word-spacing:2.376000px;}
.ws77{word-spacing:2.442000px;}
.ws1a{word-spacing:2.508000px;}
.ws2a{word-spacing:2.574000px;}
.ws40{word-spacing:2.640000px;}
.ws41{word-spacing:2.706000px;}
.ws27{word-spacing:2.772000px;}
.ws76{word-spacing:2.838000px;}
.ws14{word-spacing:2.904000px;}
.ws4a{word-spacing:2.970000px;}
.ws9a{word-spacing:3.036000px;}
.ws57{word-spacing:3.102000px;}
.ws25{word-spacing:3.168000px;}
.wsa{word-spacing:3.300000px;}
.ws63{word-spacing:3.432000px;}
.ws4d{word-spacing:3.498000px;}
.ws21{word-spacing:3.564000px;}
.ws62{word-spacing:3.630000px;}
.ws31{word-spacing:3.762000px;}
.wse{word-spacing:3.828000px;}
.ws8a{word-spacing:3.894000px;}
.ws86{word-spacing:3.960000px;}
.ws49{word-spacing:4.026000px;}
.ws83{word-spacing:4.092000px;}
.ws60{word-spacing:4.224000px;}
.ws29{word-spacing:4.356000px;}
.ws85{word-spacing:4.422000px;}
.ws4b{word-spacing:4.554000px;}
.ws6b{word-spacing:4.686000px;}
.ws96{word-spacing:4.752000px;}
.ws88{word-spacing:4.818000px;}
.ws1f{word-spacing:4.884000px;}
.ws11{word-spacing:4.950000px;}
.ws52{word-spacing:5.082000px;}
.ws4f{word-spacing:5.214000px;}
.ws3f{word-spacing:5.346000px;}
.ws3{word-spacing:5.478000px;}
.ws5a{word-spacing:5.544000px;}
.ws9f{word-spacing:5.610000px;}
.ws43{word-spacing:5.676000px;}
.ws75{word-spacing:5.742000px;}
.ws3c{word-spacing:5.808000px;}
.ws3a{word-spacing:6.072000px;}
.ws99{word-spacing:6.600000px;}
.wsc{word-spacing:6.666000px;}
.ws3e{word-spacing:6.798000px;}
.wsa1{word-spacing:7.128000px;}
.ws9b{word-spacing:7.392000px;}
.ws3d{word-spacing:8.118000px;}
.ws93{word-spacing:8.184000px;}
.ws94{word-spacing:8.250000px;}
.ws82{word-spacing:8.316000px;}
.wsd{word-spacing:8.514000px;}
.ws56{word-spacing:10.098000px;}
.ws98{word-spacing:10.890000px;}
._b{margin-left:-24.756600px;}
._c{margin-left:-23.391300px;}
._1b{margin-left:-21.252000px;}
._e{margin-left:-19.196400px;}
._d{margin-left:-18.105300px;}
._3{margin-left:-16.965000px;}
._a{margin-left:-15.054900px;}
._9{margin-left:-13.956300px;}
._8{margin-left:-12.335400px;}
._7{margin-left:-10.230000px;}
._1d{margin-left:-8.352600px;}
._1a{margin-left:-6.333600px;}
._6{margin-left:-5.261700px;}
._5{margin-left:-3.630000px;}
._4{margin-left:-2.385600px;}
._0{margin-left:-1.053000px;}
._1{width:1.485900px;}
._16{width:2.899800px;}
._1c{width:7.269300px;}
._2{width:17.160000px;}
._14{width:18.268800px;}
._15{width:19.443600px;}
._17{width:28.912200px;}
._13{width:43.956000px;}
._11{width:49.019700px;}
._f{width:50.075700px;}
._10{width:51.612000px;}
._12{width:54.978000px;}
._18{width:87.585000px;}
._19{width:88.743000px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:39.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.491150px;}
.y4{bottom:73.425000px;}
.y3{bottom:85.125000px;}
.y2{bottom:107.250000px;}
.y63{bottom:109.904850px;}
.yaf{bottom:110.629800px;}
.y49{bottom:130.900200px;}
.y62{bottom:130.904850px;}
.ycd{bottom:130.909950px;}
.yae{bottom:131.629800px;}
.y48{bottom:151.900200px;}
.y61{bottom:151.904850px;}
.ycc{bottom:151.909950px;}
.yad{bottom:152.629800px;}
.y88{bottom:152.639100px;}
.yf1{bottom:160.895550px;}
.y47{bottom:172.900200px;}
.y60{bottom:172.904850px;}
.ycb{bottom:172.909950px;}
.y1f{bottom:173.318400px;}
.yac{bottom:173.629800px;}
.y87{bottom:173.639100px;}
.yf0{bottom:181.895550px;}
.y46{bottom:193.900200px;}
.y5f{bottom:193.904850px;}
.yca{bottom:193.909950px;}
.y1e{bottom:194.318400px;}
.yab{bottom:194.629800px;}
.y86{bottom:194.639100px;}
.yef{bottom:202.895550px;}
.y10b{bottom:204.225000px;}
.y45{bottom:214.900200px;}
.y5e{bottom:214.904850px;}
.yc9{bottom:214.909950px;}
.y1d{bottom:215.318400px;}
.yaa{bottom:215.629800px;}
.y85{bottom:215.639100px;}
.y10a{bottom:225.225000px;}
.yee{bottom:234.695550px;}
.y44{bottom:235.900200px;}
.y5d{bottom:235.904850px;}
.yc8{bottom:235.909950px;}
.y1c{bottom:236.318400px;}
.ya9{bottom:236.629800px;}
.y84{bottom:236.639100px;}
.y109{bottom:246.225000px;}
.y43{bottom:256.900200px;}
.y5c{bottom:256.904850px;}
.yc7{bottom:256.909950px;}
.y1b{bottom:257.318400px;}
.ya8{bottom:257.629800px;}
.y83{bottom:257.639100px;}
.yed{bottom:266.495550px;}
.y42{bottom:277.900350px;}
.y5b{bottom:277.904850px;}
.yc6{bottom:277.909950px;}
.y108{bottom:278.025000px;}
.y1a{bottom:278.318400px;}
.ya7{bottom:278.629800px;}
.y82{bottom:278.639100px;}
.yec{bottom:298.295550px;}
.y41{bottom:298.900350px;}
.y5a{bottom:298.904850px;}
.yc5{bottom:298.909950px;}
.y107{bottom:299.025000px;}
.y19{bottom:299.318400px;}
.ya6{bottom:299.629800px;}
.y81{bottom:299.639100px;}
.y40{bottom:319.900350px;}
.y59{bottom:319.904850px;}
.y18{bottom:320.318400px;}
.ya5{bottom:320.629800px;}
.y80{bottom:320.639100px;}
.yeb{bottom:330.095550px;}
.y106{bottom:330.825000px;}
.y3f{bottom:340.900350px;}
.y58{bottom:340.904850px;}
.yc4{bottom:340.905150px;}
.y17{bottom:341.318400px;}
.ya4{bottom:341.629800px;}
.y7f{bottom:341.639100px;}
.yea{bottom:351.095550px;}
.y105{bottom:351.825000px;}
.y3e{bottom:361.900350px;}
.y57{bottom:361.904850px;}
.yc3{bottom:361.905150px;}
.y16{bottom:362.318400px;}
.ya3{bottom:362.629800px;}
.y7e{bottom:362.639100px;}
.ye9{bottom:372.095550px;}
.y3d{bottom:382.900350px;}
.y56{bottom:382.904850px;}
.yc2{bottom:382.905150px;}
.y15{bottom:383.318400px;}
.y104{bottom:383.625000px;}
.ya2{bottom:383.629800px;}
.y7d{bottom:383.639100px;}
.ye8{bottom:403.895550px;}
.y3c{bottom:403.900350px;}
.y55{bottom:403.904850px;}
.yc1{bottom:404.625000px;}
.ya1{bottom:404.629800px;}
.y7c{bottom:404.639100px;}
.y14{bottom:417.818400px;}
.ye7{bottom:424.895550px;}
.y3b{bottom:424.900350px;}
.y54{bottom:424.904850px;}
.y103{bottom:425.625000px;}
.ya0{bottom:425.629800px;}
.y7b{bottom:425.639100px;}
.ye6{bottom:445.895550px;}
.y3a{bottom:445.900350px;}
.y53{bottom:445.904850px;}
.yc0{bottom:446.625000px;}
.y9f{bottom:446.629800px;}
.y7a{bottom:446.639100px;}
.y102{bottom:457.425000px;}
.y13{bottom:460.353600px;}
.ye5{bottom:466.895550px;}
.y39{bottom:466.900350px;}
.y52{bottom:466.904850px;}
.ybf{bottom:467.625000px;}
.y9e{bottom:467.629800px;}
.yd1{bottom:467.634300px;}
.y79{bottom:467.639100px;}
.y101{bottom:478.425000px;}
.y12{bottom:483.753600px;}
.y38{bottom:487.900350px;}
.y51{bottom:487.904850px;}
.ybe{bottom:488.625000px;}
.y9d{bottom:488.629800px;}
.y78{bottom:488.639100px;}
.ye4{bottom:498.695550px;}
.y37{bottom:508.900350px;}
.y50{bottom:508.904850px;}
.ybd{bottom:509.625000px;}
.y9c{bottom:509.629800px;}
.y77{bottom:509.639100px;}
.ye3{bottom:519.695550px;}
.y11{bottom:519.753600px;}
.y100{bottom:528.225000px;}
.y36{bottom:529.900350px;}
.y4f{bottom:529.904850px;}
.ybc{bottom:530.625000px;}
.y9b{bottom:530.629800px;}
.yd0{bottom:530.634300px;}
.y76{bottom:530.639100px;}
.ye2{bottom:540.695550px;}
.y10{bottom:543.153600px;}
.y35{bottom:550.900350px;}
.y4e{bottom:550.904850px;}
.ybb{bottom:551.625000px;}
.y9a{bottom:551.629800px;}
.ycf{bottom:551.634300px;}
.y34{bottom:571.900350px;}
.y4d{bottom:571.904850px;}
.ye1{bottom:572.495550px;}
.yba{bottom:572.625000px;}
.y99{bottom:572.629800px;}
.y75{bottom:572.634300px;}
.yf{bottom:579.153600px;}
.y33{bottom:592.900350px;}
.y4c{bottom:592.904850px;}
.ye0{bottom:593.495550px;}
.yb9{bottom:593.625000px;}
.y98{bottom:593.629800px;}
.yce{bottom:593.634300px;}
.yff{bottom:602.025000px;}
.ye{bottom:602.553600px;}
.y32{bottom:613.900350px;}
.y4b{bottom:613.904850px;}
.ydf{bottom:614.495550px;}
.yb8{bottom:614.625000px;}
.y97{bottom:614.629800px;}
.y74{bottom:614.634300px;}
.yfe{bottom:623.025000px;}
.y31{bottom:634.900350px;}
.y4a{bottom:634.904850px;}
.yb7{bottom:635.625000px;}
.y96{bottom:635.629800px;}
.y73{bottom:635.634300px;}
.yd{bottom:638.553600px;}
.yde{bottom:646.295550px;}
.yfd{bottom:654.825000px;}
.y30{bottom:655.900350px;}
.yb6{bottom:656.625000px;}
.y95{bottom:656.629800px;}
.y72{bottom:656.634300px;}
.yc{bottom:661.953600px;}
.yfc{bottom:675.825000px;}
.y2f{bottom:676.900350px;}
.yb5{bottom:677.625000px;}
.y94{bottom:677.629800px;}
.y71{bottom:677.634300px;}
.ydd{bottom:678.095550px;}
.y2e{bottom:697.900350px;}
.yb{bottom:697.953600px;}
.yb4{bottom:698.625000px;}
.y93{bottom:698.629800px;}
.y70{bottom:698.634300px;}
.ydc{bottom:699.095550px;}
.yfb{bottom:707.625000px;}
.y2d{bottom:718.900350px;}
.yb3{bottom:719.625000px;}
.y92{bottom:719.629800px;}
.y6f{bottom:719.634300px;}
.ydb{bottom:720.095550px;}
.ya{bottom:721.353600px;}
.yfa{bottom:728.625000px;}
.y9{bottom:739.353600px;}
.y2c{bottom:739.900350px;}
.yb2{bottom:740.625000px;}
.y91{bottom:740.629800px;}
.y6e{bottom:740.634300px;}
.yda{bottom:751.895550px;}
.yf9{bottom:760.425000px;}
.y2b{bottom:760.900350px;}
.yb1{bottom:761.625000px;}
.y6d{bottom:761.634300px;}
.yf8{bottom:781.425000px;}
.y2a{bottom:781.900200px;}
.y90{bottom:782.625000px;}
.y6c{bottom:782.634300px;}
.yd9{bottom:783.695550px;}
.y8{bottom:788.853450px;}
.y29{bottom:802.900200px;}
.yb0{bottom:803.625000px;}
.y6b{bottom:803.634300px;}
.yd8{bottom:804.695550px;}
.yf7{bottom:813.225000px;}
.y28{bottom:823.900200px;}
.y8f{bottom:824.625000px;}
.yd7{bottom:825.695550px;}
.y7{bottom:832.053600px;}
.y27{bottom:844.900200px;}
.yf6{bottom:845.025000px;}
.y8e{bottom:845.625000px;}
.y6a{bottom:845.629500px;}
.yd6{bottom:857.495550px;}
.y26{bottom:865.900200px;}
.yf5{bottom:866.025000px;}
.y8d{bottom:866.625000px;}
.y6{bottom:875.253600px;}
.yd5{bottom:878.495550px;}
.y25{bottom:886.900200px;}
.y8c{bottom:887.625000px;}
.y69{bottom:887.629500px;}
.yf4{bottom:897.825000px;}
.y24{bottom:907.900200px;}
.y8b{bottom:908.625000px;}
.y68{bottom:908.629500px;}
.yd4{bottom:910.295400px;}
.y5{bottom:918.453600px;}
.yf3{bottom:918.825000px;}
.y23{bottom:928.900200px;}
.y8a{bottom:929.625000px;}
.y67{bottom:929.629500px;}
.yf2{bottom:939.825000px;}
.yd3{bottom:942.095550px;}
.y22{bottom:949.900200px;}
.y89{bottom:950.625000px;}
.yd2{bottom:963.095550px;}
.y21{bottom:970.900200px;}
.y66{bottom:971.625000px;}
.y65{bottom:992.625000px;}
.y20{bottom:1012.895550px;}
.y64{bottom:1013.625000px;}
.h3{height:36.192000px;}
.h1{height:39.313477px;}
.h8{height:45.276000px;}
.h6{height:47.058000px;}
.h2{height:50.112000px;}
.h9{height:52.417969px;}
.h7{height:61.248000px;}
.h4{height:84.585938px;}
.h5{height:112.781250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:108.000000px;}
.x13{left:129.600000px;}
.x2{left:133.994400px;}
.x11{left:135.000000px;}
.x3{left:138.447900px;}
.x16{left:143.629200px;}
.x15{left:156.600000px;}
.x17{left:170.629200px;}
.x6{left:184.654800px;}
.x5{left:186.352800px;}
.x7{left:281.211450px;}
.xa{left:316.675350px;}
.xb{left:343.191150px;}
.x9{left:352.960050px;}
.xc{left:364.879800px;}
.xe{left:368.369550px;}
.x10{left:375.918450px;}
.x4{left:384.768450px;}
.xd{left:398.366250px;}
.xf{left:401.847600px;}
.x8{left:404.900100px;}
.x18{left:437.991900px;}
.x14{left:441.745950px;}
.x19{left:465.364350px;}
.x1{left:468.745950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.640000pt;}
.ls2{letter-spacing:-1.760000pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls1{letter-spacing:-0.234667pt;}
.ls3{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws69{word-spacing:-17.792000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws9d{word-spacing:-13.728000pt;}
.ws74{word-spacing:-12.906667pt;}
.ws2{word-spacing:-7.333333pt;}
.ws95{word-spacing:-6.512000pt;}
.ws9c{word-spacing:-6.453333pt;}
.ws7f{word-spacing:-5.808000pt;}
.ws97{word-spacing:-5.749333pt;}
.ws6{word-spacing:-5.573333pt;}
.ws6a{word-spacing:-5.397333pt;}
.ws9e{word-spacing:-5.221333pt;}
.ws64{word-spacing:-5.104000pt;}
.ws6c{word-spacing:-5.045333pt;}
.ws7{word-spacing:-4.986667pt;}
.ws2c{word-spacing:-4.928000pt;}
.ws7a{word-spacing:-4.869333pt;}
.ws79{word-spacing:-4.752000pt;}
.ws78{word-spacing:-4.517333pt;}
.ws81{word-spacing:-4.048000pt;}
.ws38{word-spacing:-3.930667pt;}
.ws12{word-spacing:-3.813333pt;}
.ws7e{word-spacing:-3.578667pt;}
.ws6d{word-spacing:-3.461333pt;}
.ws7c{word-spacing:-3.402667pt;}
.ws45{word-spacing:-3.285333pt;}
.ws22{word-spacing:-3.226667pt;}
.ws84{word-spacing:-3.168000pt;}
.ws8f{word-spacing:-2.874667pt;}
.ws87{word-spacing:-2.816000pt;}
.ws66{word-spacing:-2.698667pt;}
.ws17{word-spacing:-2.640000pt;}
.ws16{word-spacing:-2.581333pt;}
.ws2f{word-spacing:-2.522667pt;}
.wsa0{word-spacing:-2.464000pt;}
.ws2b{word-spacing:-2.405333pt;}
.ws89{word-spacing:-2.368000pt;}
.ws35{word-spacing:-2.288000pt;}
.ws33{word-spacing:-2.229333pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws36{word-spacing:-2.053333pt;}
.ws24{word-spacing:-1.994667pt;}
.ws5d{word-spacing:-1.936000pt;}
.ws13{word-spacing:-1.877333pt;}
.ws2e{word-spacing:-1.818667pt;}
.ws59{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.701333pt;}
.ws42{word-spacing:-1.584000pt;}
.ws15{word-spacing:-1.525333pt;}
.ws5f{word-spacing:-1.408000pt;}
.ws4{word-spacing:-1.349333pt;}
.ws48{word-spacing:-1.290667pt;}
.ws8b{word-spacing:-1.232000pt;}
.ws34{word-spacing:-1.173333pt;}
.ws68{word-spacing:-1.114667pt;}
.ws5e{word-spacing:-1.056000pt;}
.ws50{word-spacing:-0.997333pt;}
.ws5c{word-spacing:-0.938667pt;}
.ws65{word-spacing:-0.880000pt;}
.ws32{word-spacing:-0.821333pt;}
.ws2d{word-spacing:-0.762667pt;}
.ws8{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.645333pt;}
.ws5{word-spacing:-0.586667pt;}
.ws26{word-spacing:-0.528000pt;}
.ws54{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.410667pt;}
.ws6f{word-spacing:-0.352000pt;}
.ws7d{word-spacing:-0.293333pt;}
.ws39{word-spacing:-0.234667pt;}
.ws92{word-spacing:-0.176000pt;}
.ws9{word-spacing:-0.117333pt;}
.wsf{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws91{word-spacing:0.058667pt;}
.ws80{word-spacing:0.117333pt;}
.ws8d{word-spacing:0.176000pt;}
.ws3b{word-spacing:0.234667pt;}
.ws1e{word-spacing:0.293333pt;}
.ws1d{word-spacing:0.352000pt;}
.wsb{word-spacing:0.410667pt;}
.ws44{word-spacing:0.469333pt;}
.ws10{word-spacing:0.528000pt;}
.ws20{word-spacing:0.586667pt;}
.ws47{word-spacing:0.762667pt;}
.ws4c{word-spacing:0.821333pt;}
.ws58{word-spacing:0.880000pt;}
.ws37{word-spacing:0.938667pt;}
.ws70{word-spacing:0.997333pt;}
.ws7b{word-spacing:1.056000pt;}
.ws51{word-spacing:1.114667pt;}
.ws67{word-spacing:1.173333pt;}
.ws73{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.ws71{word-spacing:1.349333pt;}
.ws8c{word-spacing:1.408000pt;}
.ws61{word-spacing:1.466667pt;}
.ws19{word-spacing:1.525333pt;}
.ws53{word-spacing:1.584000pt;}
.ws55{word-spacing:1.642667pt;}
.ws72{word-spacing:1.701333pt;}
.ws6e{word-spacing:1.760000pt;}
.ws4e{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.877333pt;}
.ws8e{word-spacing:1.936000pt;}
.ws1c{word-spacing:1.994667pt;}
.ws90{word-spacing:2.053333pt;}
.ws30{word-spacing:2.112000pt;}
.ws77{word-spacing:2.170667pt;}
.ws1a{word-spacing:2.229333pt;}
.ws2a{word-spacing:2.288000pt;}
.ws40{word-spacing:2.346667pt;}
.ws41{word-spacing:2.405333pt;}
.ws27{word-spacing:2.464000pt;}
.ws76{word-spacing:2.522667pt;}
.ws14{word-spacing:2.581333pt;}
.ws4a{word-spacing:2.640000pt;}
.ws9a{word-spacing:2.698667pt;}
.ws57{word-spacing:2.757333pt;}
.ws25{word-spacing:2.816000pt;}
.wsa{word-spacing:2.933333pt;}
.ws63{word-spacing:3.050667pt;}
.ws4d{word-spacing:3.109333pt;}
.ws21{word-spacing:3.168000pt;}
.ws62{word-spacing:3.226667pt;}
.ws31{word-spacing:3.344000pt;}
.wse{word-spacing:3.402667pt;}
.ws8a{word-spacing:3.461333pt;}
.ws86{word-spacing:3.520000pt;}
.ws49{word-spacing:3.578667pt;}
.ws83{word-spacing:3.637333pt;}
.ws60{word-spacing:3.754667pt;}
.ws29{word-spacing:3.872000pt;}
.ws85{word-spacing:3.930667pt;}
.ws4b{word-spacing:4.048000pt;}
.ws6b{word-spacing:4.165333pt;}
.ws96{word-spacing:4.224000pt;}
.ws88{word-spacing:4.282667pt;}
.ws1f{word-spacing:4.341333pt;}
.ws11{word-spacing:4.400000pt;}
.ws52{word-spacing:4.517333pt;}
.ws4f{word-spacing:4.634667pt;}
.ws3f{word-spacing:4.752000pt;}
.ws3{word-spacing:4.869333pt;}
.ws5a{word-spacing:4.928000pt;}
.ws9f{word-spacing:4.986667pt;}
.ws43{word-spacing:5.045333pt;}
.ws75{word-spacing:5.104000pt;}
.ws3c{word-spacing:5.162667pt;}
.ws3a{word-spacing:5.397333pt;}
.ws99{word-spacing:5.866667pt;}
.wsc{word-spacing:5.925333pt;}
.ws3e{word-spacing:6.042667pt;}
.wsa1{word-spacing:6.336000pt;}
.ws9b{word-spacing:6.570667pt;}
.ws3d{word-spacing:7.216000pt;}
.ws93{word-spacing:7.274667pt;}
.ws94{word-spacing:7.333333pt;}
.ws82{word-spacing:7.392000pt;}
.wsd{word-spacing:7.568000pt;}
.ws56{word-spacing:8.976000pt;}
.ws98{word-spacing:9.680000pt;}
._b{margin-left:-22.005867pt;}
._c{margin-left:-20.792267pt;}
._1b{margin-left:-18.890667pt;}
._e{margin-left:-17.063467pt;}
._d{margin-left:-16.093600pt;}
._3{margin-left:-15.080000pt;}
._a{margin-left:-13.382133pt;}
._9{margin-left:-12.405600pt;}
._8{margin-left:-10.964800pt;}
._7{margin-left:-9.093333pt;}
._1d{margin-left:-7.424533pt;}
._1a{margin-left:-5.629867pt;}
._6{margin-left:-4.677067pt;}
._5{margin-left:-3.226667pt;}
._4{margin-left:-2.120533pt;}
._0{margin-left:-0.936000pt;}
._1{width:1.320800pt;}
._16{width:2.577600pt;}
._1c{width:6.461600pt;}
._2{width:15.253333pt;}
._14{width:16.238933pt;}
._15{width:17.283200pt;}
._17{width:25.699733pt;}
._13{width:39.072000pt;}
._11{width:43.573067pt;}
._f{width:44.511733pt;}
._10{width:45.877333pt;}
._12{width:48.869333pt;}
._18{width:77.853333pt;}
._19{width:78.882667pt;}
.fs1{font-size:34.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.658800pt;}
.y4{bottom:65.266667pt;}
.y3{bottom:75.666667pt;}
.y2{bottom:95.333333pt;}
.y63{bottom:97.693200pt;}
.yaf{bottom:98.337600pt;}
.y49{bottom:116.355733pt;}
.y62{bottom:116.359867pt;}
.ycd{bottom:116.364400pt;}
.yae{bottom:117.004267pt;}
.y48{bottom:135.022400pt;}
.y61{bottom:135.026533pt;}
.ycc{bottom:135.031067pt;}
.yad{bottom:135.670933pt;}
.y88{bottom:135.679200pt;}
.yf1{bottom:143.018267pt;}
.y47{bottom:153.689067pt;}
.y60{bottom:153.693200pt;}
.ycb{bottom:153.697733pt;}
.y1f{bottom:154.060800pt;}
.yac{bottom:154.337600pt;}
.y87{bottom:154.345867pt;}
.yf0{bottom:161.684933pt;}
.y46{bottom:172.355733pt;}
.y5f{bottom:172.359867pt;}
.yca{bottom:172.364400pt;}
.y1e{bottom:172.727467pt;}
.yab{bottom:173.004267pt;}
.y86{bottom:173.012533pt;}
.yef{bottom:180.351600pt;}
.y10b{bottom:181.533333pt;}
.y45{bottom:191.022400pt;}
.y5e{bottom:191.026533pt;}
.yc9{bottom:191.031067pt;}
.y1d{bottom:191.394133pt;}
.yaa{bottom:191.670933pt;}
.y85{bottom:191.679200pt;}
.y10a{bottom:200.200000pt;}
.yee{bottom:208.618267pt;}
.y44{bottom:209.689067pt;}
.y5d{bottom:209.693200pt;}
.yc8{bottom:209.697733pt;}
.y1c{bottom:210.060800pt;}
.ya9{bottom:210.337600pt;}
.y84{bottom:210.345867pt;}
.y109{bottom:218.866667pt;}
.y43{bottom:228.355733pt;}
.y5c{bottom:228.359867pt;}
.yc7{bottom:228.364400pt;}
.y1b{bottom:228.727467pt;}
.ya8{bottom:229.004267pt;}
.y83{bottom:229.012533pt;}
.yed{bottom:236.884933pt;}
.y42{bottom:247.022533pt;}
.y5b{bottom:247.026533pt;}
.yc6{bottom:247.031067pt;}
.y108{bottom:247.133333pt;}
.y1a{bottom:247.394133pt;}
.ya7{bottom:247.670933pt;}
.y82{bottom:247.679200pt;}
.yec{bottom:265.151600pt;}
.y41{bottom:265.689200pt;}
.y5a{bottom:265.693200pt;}
.yc5{bottom:265.697733pt;}
.y107{bottom:265.800000pt;}
.y19{bottom:266.060800pt;}
.ya6{bottom:266.337600pt;}
.y81{bottom:266.345867pt;}
.y40{bottom:284.355867pt;}
.y59{bottom:284.359867pt;}
.y18{bottom:284.727467pt;}
.ya5{bottom:285.004267pt;}
.y80{bottom:285.012533pt;}
.yeb{bottom:293.418267pt;}
.y106{bottom:294.066667pt;}
.y3f{bottom:303.022533pt;}
.y58{bottom:303.026533pt;}
.yc4{bottom:303.026800pt;}
.y17{bottom:303.394133pt;}
.ya4{bottom:303.670933pt;}
.y7f{bottom:303.679200pt;}
.yea{bottom:312.084933pt;}
.y105{bottom:312.733333pt;}
.y3e{bottom:321.689200pt;}
.y57{bottom:321.693200pt;}
.yc3{bottom:321.693467pt;}
.y16{bottom:322.060800pt;}
.ya3{bottom:322.337600pt;}
.y7e{bottom:322.345867pt;}
.ye9{bottom:330.751600pt;}
.y3d{bottom:340.355867pt;}
.y56{bottom:340.359867pt;}
.yc2{bottom:340.360133pt;}
.y15{bottom:340.727467pt;}
.y104{bottom:341.000000pt;}
.ya2{bottom:341.004267pt;}
.y7d{bottom:341.012533pt;}
.ye8{bottom:359.018267pt;}
.y3c{bottom:359.022533pt;}
.y55{bottom:359.026533pt;}
.yc1{bottom:359.666667pt;}
.ya1{bottom:359.670933pt;}
.y7c{bottom:359.679200pt;}
.y14{bottom:371.394133pt;}
.ye7{bottom:377.684933pt;}
.y3b{bottom:377.689200pt;}
.y54{bottom:377.693200pt;}
.y103{bottom:378.333333pt;}
.ya0{bottom:378.337600pt;}
.y7b{bottom:378.345867pt;}
.ye6{bottom:396.351600pt;}
.y3a{bottom:396.355867pt;}
.y53{bottom:396.359867pt;}
.yc0{bottom:397.000000pt;}
.y9f{bottom:397.004267pt;}
.y7a{bottom:397.012533pt;}
.y102{bottom:406.600000pt;}
.y13{bottom:409.203200pt;}
.ye5{bottom:415.018267pt;}
.y39{bottom:415.022533pt;}
.y52{bottom:415.026533pt;}
.ybf{bottom:415.666667pt;}
.y9e{bottom:415.670933pt;}
.yd1{bottom:415.674933pt;}
.y79{bottom:415.679200pt;}
.y101{bottom:425.266667pt;}
.y12{bottom:430.003200pt;}
.y38{bottom:433.689200pt;}
.y51{bottom:433.693200pt;}
.ybe{bottom:434.333333pt;}
.y9d{bottom:434.337600pt;}
.y78{bottom:434.345867pt;}
.ye4{bottom:443.284933pt;}
.y37{bottom:452.355867pt;}
.y50{bottom:452.359867pt;}
.ybd{bottom:453.000000pt;}
.y9c{bottom:453.004267pt;}
.y77{bottom:453.012533pt;}
.ye3{bottom:461.951600pt;}
.y11{bottom:462.003200pt;}
.y100{bottom:469.533333pt;}
.y36{bottom:471.022533pt;}
.y4f{bottom:471.026533pt;}
.ybc{bottom:471.666667pt;}
.y9b{bottom:471.670933pt;}
.yd0{bottom:471.674933pt;}
.y76{bottom:471.679200pt;}
.ye2{bottom:480.618267pt;}
.y10{bottom:482.803200pt;}
.y35{bottom:489.689200pt;}
.y4e{bottom:489.693200pt;}
.ybb{bottom:490.333333pt;}
.y9a{bottom:490.337600pt;}
.ycf{bottom:490.341600pt;}
.y34{bottom:508.355867pt;}
.y4d{bottom:508.359867pt;}
.ye1{bottom:508.884933pt;}
.yba{bottom:509.000000pt;}
.y99{bottom:509.004267pt;}
.y75{bottom:509.008267pt;}
.yf{bottom:514.803200pt;}
.y33{bottom:527.022533pt;}
.y4c{bottom:527.026533pt;}
.ye0{bottom:527.551600pt;}
.yb9{bottom:527.666667pt;}
.y98{bottom:527.670933pt;}
.yce{bottom:527.674933pt;}
.yff{bottom:535.133333pt;}
.ye{bottom:535.603200pt;}
.y32{bottom:545.689200pt;}
.y4b{bottom:545.693200pt;}
.ydf{bottom:546.218267pt;}
.yb8{bottom:546.333333pt;}
.y97{bottom:546.337600pt;}
.y74{bottom:546.341600pt;}
.yfe{bottom:553.800000pt;}
.y31{bottom:564.355867pt;}
.y4a{bottom:564.359867pt;}
.yb7{bottom:565.000000pt;}
.y96{bottom:565.004267pt;}
.y73{bottom:565.008267pt;}
.yd{bottom:567.603200pt;}
.yde{bottom:574.484933pt;}
.yfd{bottom:582.066667pt;}
.y30{bottom:583.022533pt;}
.yb6{bottom:583.666667pt;}
.y95{bottom:583.670933pt;}
.y72{bottom:583.674933pt;}
.yc{bottom:588.403200pt;}
.yfc{bottom:600.733333pt;}
.y2f{bottom:601.689200pt;}
.yb5{bottom:602.333333pt;}
.y94{bottom:602.337600pt;}
.y71{bottom:602.341600pt;}
.ydd{bottom:602.751600pt;}
.y2e{bottom:620.355867pt;}
.yb{bottom:620.403200pt;}
.yb4{bottom:621.000000pt;}
.y93{bottom:621.004267pt;}
.y70{bottom:621.008267pt;}
.ydc{bottom:621.418267pt;}
.yfb{bottom:629.000000pt;}
.y2d{bottom:639.022533pt;}
.yb3{bottom:639.666667pt;}
.y92{bottom:639.670933pt;}
.y6f{bottom:639.674933pt;}
.ydb{bottom:640.084933pt;}
.ya{bottom:641.203200pt;}
.yfa{bottom:647.666667pt;}
.y9{bottom:657.203200pt;}
.y2c{bottom:657.689200pt;}
.yb2{bottom:658.333333pt;}
.y91{bottom:658.337600pt;}
.y6e{bottom:658.341600pt;}
.yda{bottom:668.351600pt;}
.yf9{bottom:675.933333pt;}
.y2b{bottom:676.355867pt;}
.yb1{bottom:677.000000pt;}
.y6d{bottom:677.008267pt;}
.yf8{bottom:694.600000pt;}
.y2a{bottom:695.022400pt;}
.y90{bottom:695.666667pt;}
.y6c{bottom:695.674933pt;}
.yd9{bottom:696.618267pt;}
.y8{bottom:701.203067pt;}
.y29{bottom:713.689067pt;}
.yb0{bottom:714.333333pt;}
.y6b{bottom:714.341600pt;}
.yd8{bottom:715.284933pt;}
.yf7{bottom:722.866667pt;}
.y28{bottom:732.355733pt;}
.y8f{bottom:733.000000pt;}
.yd7{bottom:733.951600pt;}
.y7{bottom:739.603200pt;}
.y27{bottom:751.022400pt;}
.yf6{bottom:751.133333pt;}
.y8e{bottom:751.666667pt;}
.y6a{bottom:751.670667pt;}
.yd6{bottom:762.218267pt;}
.y26{bottom:769.689067pt;}
.yf5{bottom:769.800000pt;}
.y8d{bottom:770.333333pt;}
.y6{bottom:778.003200pt;}
.yd5{bottom:780.884933pt;}
.y25{bottom:788.355733pt;}
.y8c{bottom:789.000000pt;}
.y69{bottom:789.004000pt;}
.yf4{bottom:798.066667pt;}
.y24{bottom:807.022400pt;}
.y8b{bottom:807.666667pt;}
.y68{bottom:807.670667pt;}
.yd4{bottom:809.151467pt;}
.y5{bottom:816.403200pt;}
.yf3{bottom:816.733333pt;}
.y23{bottom:825.689067pt;}
.y8a{bottom:826.333333pt;}
.y67{bottom:826.337333pt;}
.yf2{bottom:835.400000pt;}
.yd3{bottom:837.418267pt;}
.y22{bottom:844.355733pt;}
.y89{bottom:845.000000pt;}
.yd2{bottom:856.084933pt;}
.y21{bottom:863.022400pt;}
.y66{bottom:863.666667pt;}
.y65{bottom:882.333333pt;}
.y20{bottom:900.351600pt;}
.y64{bottom:901.000000pt;}
.h3{height:32.170667pt;}
.h1{height:34.945312pt;}
.h8{height:40.245333pt;}
.h6{height:41.829333pt;}
.h2{height:44.544000pt;}
.h9{height:46.593750pt;}
.h7{height:54.442667pt;}
.h4{height:75.187500pt;}
.h5{height:100.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:96.000000pt;}
.x13{left:115.200000pt;}
.x2{left:119.106133pt;}
.x11{left:120.000000pt;}
.x3{left:123.064800pt;}
.x16{left:127.670400pt;}
.x15{left:139.200000pt;}
.x17{left:151.670400pt;}
.x6{left:164.137600pt;}
.x5{left:165.646933pt;}
.x7{left:249.965733pt;}
.xa{left:281.489200pt;}
.xb{left:305.058800pt;}
.x9{left:313.742267pt;}
.xc{left:324.337600pt;}
.xe{left:327.439600pt;}
.x10{left:334.149733pt;}
.x4{left:342.016400pt;}
.xd{left:354.103333pt;}
.xf{left:357.197867pt;}
.x8{left:359.911200pt;}
.x18{left:389.326133pt;}
.x14{left:392.663067pt;}
.x19{left:413.657200pt;}
.x1{left:416.663067pt;}
}




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