
    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_411e2fb8fd07d18d380bb2fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_895f89078e25d04f2a44ad62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_b85abadc9f1fde2c7fc9672c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_1d15e28f34cf265090f81551.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3f21525836475fdf55e70594.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_e0b11829c498744d65b13e17.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_f7e97579b8b865c255a62f11.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f7830e145cdc37407bcd9f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_769acf1d2940a2d0a200c019.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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_55255f7804b03cdb7f5fb9ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-83.640000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.736000px;}
.ls9{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.296000px;}
.ls1a{letter-spacing:-1.152000px;}
.lse{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.518400px;}
.ls1b{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.178800px;}
.ls17{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.869760px;}
.lsb{letter-spacing:1.152000px;}
.ls0{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.584000px;}
.ls13{letter-spacing:2.160000px;}
.ls6{letter-spacing:10.224000px;}
.ls15{letter-spacing:33.264000px;}
.ls5{letter-spacing:81.516000px;}
.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;}
}
.ws1{word-spacing:-22.320000px;}
.ws2{word-spacing:-21.058800px;}
.ws0{word-spacing:-20.880000px;}
.wsa{word-spacing:-19.584000px;}
.ws9{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.648000px;}
.ws6{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.496000px;}
.wse{word-spacing:-17.352000px;}
.ws11{word-spacing:-17.208000px;}
.ws8{word-spacing:-17.064000px;}
.ws14{word-spacing:-16.848000px;}
.wsd{word-spacing:-16.704000px;}
.ws13{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.264000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-16.527360px;}
._7{margin-left:-15.415680px;}
._e{margin-left:-13.647360px;}
._b{margin-left:-11.939520px;}
._9{margin-left:-9.874080px;}
._5{margin-left:-8.520000px;}
._d{margin-left:-7.200000px;}
._4{margin-left:-5.388000px;}
._2b{margin-left:-3.810720px;}
._3{margin-left:-2.804160px;}
._1{margin-left:-1.336320px;}
._0{width:1.560000px;}
._2{width:2.780640px;}
._10{width:3.836160px;}
._f{width:4.932960px;}
._1c{width:5.960640px;}
._1d{width:7.039680px;}
._12{width:8.880960px;}
._11{width:10.696320px;}
._1e{width:11.988960px;}
._15{width:13.352640px;}
._14{width:14.532480px;}
._18{width:15.766080px;}
._13{width:16.922880px;}
._1b{width:19.936320px;}
._19{width:20.992320px;}
._1a{width:22.564800px;}
._2d{width:23.636640px;}
._28{width:24.780480px;}
._29{width:25.808640px;}
._20{width:27.568320px;}
._1f{width:28.688640px;}
._2a{width:30.344160px;}
._21{width:32.046720px;}
._2e{width:33.561120px;}
._26{width:34.577280px;}
._27{width:35.591040px;}
._34{width:36.691200px;}
._25{width:37.729440px;}
._22{width:39.375840px;}
._17{width:40.704480px;}
._16{width:42.284160px;}
._2f{width:43.764000px;}
._2c{width:45.502560px;}
._23{width:46.968960px;}
._24{width:48.206400px;}
._30{width:49.928640px;}
._6{width:60.636000px;}
._35{width:68.492160px;}
._8{width:71.292000px;}
._45{width:72.867360px;}
._44{width:74.064960px;}
._43{width:75.404160px;}
._a{width:83.296320px;}
._33{width:88.135200px;}
._31{width:89.592480px;}
._32{width:90.668160px;}
._37{width:96.904320px;}
._3a{width:97.980480px;}
._38{width:147.116160px;}
._39{width:148.127520px;}
._40{width:225.544320px;}
._42{width:228.364320px;}
._3c{width:274.128000px;}
._3d{width:276.518880px;}
._41{width:485.848320px;}
._3b{width:734.688000px;}
._36{width:846.456000px;}
._3e{width:1486.864320px;}
._3f{width:1827.432000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:44.640000px;}
.fs2{font-size:54.720000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yef{bottom:18.030000px;}
.yee{bottom:37.830000px;}
.yed{bottom:56.910000px;}
.y1c{bottom:72.036000px;}
.ya1{bottom:112.356000px;}
.y12a{bottom:113.436000px;}
.yeb{bottom:122.796000px;}
.y1ad{bottom:124.596000px;}
.y100{bottom:127.476000px;}
.y60{bottom:128.196000px;}
.y7f{bottom:128.916000px;}
.y119{bottom:130.716000px;}
.yd0{bottom:132.876000px;}
.y172{bottom:136.116000px;}
.ybe{bottom:137.556000px;}
.y13f{bottom:140.436000px;}
.ya0{bottom:143.676000px;}
.y129{bottom:144.756000px;}
.y1ac{bottom:145.116000px;}
.y19{bottom:146.916000px;}
.y193{bottom:148.716000px;}
.y108{bottom:150.150000px;}
.yea{bottom:153.750000px;}
.y171{bottom:156.630000px;}
.yff{bottom:158.430000px;}
.y118{bottom:162.030000px;}
.y5f{bottom:163.830000px;}
.y7e{bottom:164.550000px;}
.ybd{bottom:168.510000px;}
.y13e{bottom:171.750000px;}
.y36{bottom:174.270000px;}
.y9d{bottom:174.630000px;}
.y128{bottom:175.710000px;}
.y170{bottom:177.510000px;}
.y1ab{bottom:180.750000px;}
.y107{bottom:181.110000px;}
.y5e{bottom:184.350000px;}
.y14e{bottom:184.710000px;}
.ye9{bottom:185.070000px;}
.yfe{bottom:189.750000px;}
.y18{bottom:191.910000px;}
.y117{bottom:192.990000px;}
.ycf{bottom:194.835000px;}
.y35{bottom:195.555000px;}
.ybc{bottom:199.875000px;}
.y7d{bottom:200.235000px;}
.y1aa{bottom:201.675000px;}
.y13d{bottom:202.755000px;}
.y5d{bottom:205.275000px;}
.y9c{bottom:205.635000px;}
.y127{bottom:206.715000px;}
.y106{bottom:212.115000px;}
.y16f{bottom:213.195000px;}
.y14d{bottom:215.715000px;}
.ye8{bottom:216.075000px;}
.y154{bottom:218.595000px;}
.yfd{bottom:220.755000px;}
.y1a9{bottom:222.195000px;}
.y116{bottom:223.635000px;}
.y5c{bottom:225.795000px;}
.yce{bottom:226.155000px;}
.ybb{bottom:230.835000px;}
.y13c{bottom:233.715000px;}
.y34{bottom:234.075000px;}
.y7c{bottom:235.875000px;}
.y9b{bottom:236.595000px;}
.y17{bottom:237.315000px;}
.y126{bottom:237.675000px;}
.y105{bottom:243.435000px;}
.y5b{bottom:246.675000px;}
.ye7{bottom:247.035000px;}
.yfc{bottom:251.715000px;}
.y16e{bottom:254.595000px;}
.ycd{bottom:257.115000px;}
.y1a8{bottom:258.195000px;}
.yba{bottom:261.795000px;}
.y13b{bottom:264.675000px;}
.y5a{bottom:267.195000px;}
.y9a{bottom:267.915000px;}
.y125{bottom:268.995000px;}
.y115{bottom:270.075000px;}
.y7b{bottom:271.875000px;}
.y33{bottom:272.955000px;}
.y16d{bottom:275.475000px;}
.ye6{bottom:277.995000px;}
.y104{bottom:278.715000px;}
.y192{bottom:282.315000px;}
.y16{bottom:282.675000px;}
.y59{bottom:288.075000px;}
.yb9{bottom:292.755000px;}
.y13a{bottom:295.995000px;}
.y103{bottom:297.435000px;}
.y99{bottom:298.875000px;}
.y124{bottom:299.595000px;}
.y114{bottom:301.035000px;}
.y7a{bottom:303.195000px;}
.y58{bottom:308.595000px;}
.y14c{bottom:308.955000px;}
.ye5{bottom:309.315000px;}
.y16c{bottom:311.115000px;}
.yfb{bottom:313.995000px;}
.y102{bottom:316.515000px;}
.y32{bottom:319.035000px;}
.yec{bottom:319.395000px;}
.y191{bottom:323.745000px;}
.yb8{bottom:324.105000px;}
.y139{bottom:326.985000px;}
.y15{bottom:327.705000px;}
.y57{bottom:329.505000px;}
.y98{bottom:329.865000px;}
.y16b{bottom:331.665000px;}
.y113{bottom:332.385000px;}
.y79{bottom:334.185000px;}
.y101{bottom:335.265000px;}
.y14b{bottom:339.945000px;}
.ye4{bottom:340.305000px;}
.yfa{bottom:344.985000px;}
.y123{bottom:346.065000px;}
.y56{bottom:350.025000px;}
.ycc{bottom:350.385000px;}
.y16a{bottom:352.545000px;}
.yb7{bottom:355.065000px;}
.y1a7{bottom:355.785000px;}
.y31{bottom:357.585000px;}
.y138{bottom:357.945000px;}
.y190{bottom:359.385000px;}
.y97{bottom:360.825000px;}
.y112{bottom:363.345000px;}
.y78{bottom:365.145000px;}
.y55{bottom:370.905000px;}
.ye3{bottom:371.265000px;}
.y14{bottom:373.065000px;}
.yf9{bottom:375.945000px;}
.y122{bottom:377.025000px;}
.y18f{bottom:380.265000px;}
.ycb{bottom:381.345000px;}
.yb6{bottom:386.025000px;}
.y169{bottom:388.185000px;}
.y137{bottom:388.905000px;}
.y1a6{bottom:391.425000px;}
.y96{bottom:392.145000px;}
.y111{bottom:393.945000px;}
.y30{bottom:396.105000px;}
.y14a{bottom:401.865000px;}
.ye2{bottom:402.225000px;}
.yf8{bottom:406.905000px;}
.y121{bottom:407.985000px;}
.y168{bottom:408.705000px;}
.y54{bottom:412.305000px;}
.y18e{bottom:415.905000px;}
.yb5{bottom:416.985000px;}
.y13{bottom:418.065000px;}
.y153{bottom:419.865000px;}
.y136{bottom:420.225000px;}
.y95{bottom:423.105000px;}
.y77{bottom:427.425000px;}
.y167{bottom:429.585000px;}
.y53{bottom:432.825000px;}
.ye1{bottom:433.545000px;}
.y2f{bottom:434.625000px;}
.y18d{bottom:436.425000px;}
.yf7{bottom:438.225000px;}
.y120{bottom:439.305000px;}
.yca{bottom:443.265000px;}
.yb4{bottom:448.350000px;}
.y166{bottom:450.150000px;}
.y135{bottom:451.230000px;}
.y52{bottom:453.750000px;}
.y94{bottom:454.110000px;}
.y76{bottom:458.430000px;}
.y12{bottom:463.470000px;}
.ye0{bottom:464.550000px;}
.y1a5{bottom:468.870000px;}
.yf6{bottom:469.230000px;}
.y11f{bottom:470.310000px;}
.y18c{bottom:472.470000px;}
.y2e{bottom:473.190000px;}
.y51{bottom:474.270000px;}
.yc9{bottom:474.630000px;}
.yb3{bottom:479.310000px;}
.y134{bottom:482.190000px;}
.y93{bottom:485.070000px;}
.y165{bottom:486.150000px;}
.y75{bottom:489.390000px;}
.y18b{bottom:492.990000px;}
.y50{bottom:495.150000px;}
.ydf{bottom:495.510000px;}
.y11{bottom:500.190000px;}
.y11e{bottom:501.270000px;}
.yc8{bottom:505.590000px;}
.y164{bottom:506.670000px;}
.yb2{bottom:510.270000px;}
.y2d{bottom:512.070000px;}
.y133{bottom:513.150000px;}
.y18a{bottom:513.870000px;}
.y4f{bottom:515.670000px;}
.y92{bottom:516.390000px;}
.y74{bottom:520.350000px;}
.yde{bottom:526.470000px;}
.y10{bottom:527.910000px;}
.yf5{bottom:531.150000px;}
.y11d{bottom:532.230000px;}
.y189{bottom:534.390000px;}
.y4e{bottom:536.550000px;}
.yb1{bottom:541.230000px;}
.y163{bottom:542.310000px;}
.y132{bottom:544.470000px;}
.y1a4{bottom:545.910000px;}
.y91{bottom:547.350000px;}
.y2c{bottom:550.590000px;}
.y73{bottom:551.670000px;}
.y188{bottom:555.270000px;}
.yf{bottom:555.630000px;}
.y4d{bottom:557.070000px;}
.ydd{bottom:557.790000px;}
.yf4{bottom:562.470000px;}
.y11c{bottom:563.190000px;}
.y1a3{bottom:566.430000px;}
.yc7{bottom:567.510000px;}
.yb0{bottom:572.190000px;}
.y131{bottom:575.460000px;}
.y4c{bottom:577.980000px;}
.y90{bottom:578.340000px;}
.y72{bottom:582.660000px;}
.ye{bottom:583.740000px;}
.y1a2{bottom:587.340000px;}
.ydc{bottom:588.780000px;}
.y2b{bottom:589.140000px;}
.y187{bottom:590.940000px;}
.yf3{bottom:593.460000px;}
.y11b{bottom:594.540000px;}
.y4b{bottom:598.500000px;}
.yc6{bottom:598.860000px;}
.yaf{bottom:603.540000px;}
.y130{bottom:606.420000px;}
.y8f{bottom:609.300000px;}
.y186{bottom:611.460000px;}
.y71{bottom:613.620000px;}
.y4a{bottom:619.380000px;}
.ydb{bottom:619.740000px;}
.yd{bottom:620.460000px;}
.y1a1{bottom:622.980000px;}
.yf2{bottom:624.420000px;}
.y11a{bottom:625.140000px;}
.y2a{bottom:627.660000px;}
.yc5{bottom:629.820000px;}
.y185{bottom:632.340000px;}
.yae{bottom:634.500000px;}
.y12f{bottom:637.380000px;}
.y49{bottom:639.900000px;}
.y8e{bottom:640.620000px;}
.y1a0{bottom:643.500000px;}
.y70{bottom:644.580000px;}
.yda{bottom:650.700000px;}
.y184{bottom:652.860000px;}
.yf1{bottom:655.380000px;}
.yc{bottom:657.180000px;}
.y48{bottom:660.780000px;}
.y19f{bottom:664.380000px;}
.yad{bottom:665.460000px;}
.y29{bottom:666.180000px;}
.y12e{bottom:668.700000px;}
.yc4{bottom:671.220000px;}
.y8d{bottom:671.580000px;}
.y6f{bottom:675.900000px;}
.yd9{bottom:682.020000px;}
.yf0{bottom:686.700000px;}
.y183{bottom:688.500000px;}
.y110{bottom:691.740000px;}
.yb{bottom:693.900000px;}
.yac{bottom:696.420000px;}
.y162{bottom:696.780000px;}
.y12d{bottom:699.690000px;}
.y19e{bottom:700.050000px;}
.y47{bottom:702.210000px;}
.y8c{bottom:702.570000px;}
.y28{bottom:704.730000px;}
.y6e{bottom:706.890000px;}
.y182{bottom:709.410000px;}
.yd8{bottom:713.010000px;}
.yc3{bottom:717.690000px;}
.y19d{bottom:720.930000px;}
.y46{bottom:722.730000px;}
.yab{bottom:727.770000px;}
.y181{bottom:729.930000px;}
.ya{bottom:730.650000px;}
.y161{bottom:732.450000px;}
.y8b{bottom:733.530000px;}
.y6d{bottom:737.850000px;}
.y27{bottom:743.250000px;}
.y45{bottom:743.610000px;}
.yd7{bottom:743.970000px;}
.yc2{bottom:748.650000px;}
.y180{bottom:750.810000px;}
.y160{bottom:752.970000px;}
.y10f{bottom:754.050000px;}
.y19c{bottom:756.570000px;}
.yaa{bottom:758.730000px;}
.y12c{bottom:761.250000px;}
.y143{bottom:761.610000px;}
.y44{bottom:764.130000px;}
.y8a{bottom:764.850000px;}
.y9{bottom:767.370000px;}
.y6c{bottom:768.810000px;}
.y19b{bottom:777.090000px;}
.yd6{bottom:779.250000px;}
.yc1{bottom:779.610000px;}
.y26{bottom:781.770000px;}
.y43{bottom:785.010000px;}
.y17f{bottom:786.450000px;}
.y15f{bottom:788.610000px;}
.ya9{bottom:789.690000px;}
.y1b0{bottom:792.210000px;}
.y14f{bottom:792.570000px;}
.y142{bottom:792.930000px;}
.y12b{bottom:795.450000px;}
.y89{bottom:795.810000px;}
.yd5{bottom:797.970000px;}
.y6b{bottom:800.130000px;}
.y8{bottom:804.090000px;}
.y42{bottom:805.530000px;}
.y17e{bottom:806.970000px;}
.y15e{bottom:809.490000px;}
.yc0{bottom:810.930000px;}
.y19a{bottom:812.730000px;}
.y10e{bottom:815.970000px;}
.yd4{bottom:817.050000px;}
.y25{bottom:820.290000px;}
.ya8{bottom:820.650000px;}
.y141{bottom:823.890000px;}
.y41{bottom:826.455000px;}
.y88{bottom:826.815000px;}
.y17d{bottom:827.895000px;}
.y6a{bottom:831.135000px;}
.y199{bottom:833.655000px;}
.yd3{bottom:836.175000px;}
.y7{bottom:841.215000px;}
.ybf{bottom:841.935000px;}
.y15d{bottom:845.175000px;}
.y40{bottom:846.975000px;}
.ya7{bottom:852.015000px;}
.y198{bottom:854.175000px;}
.y140{bottom:854.535000px;}
.y146{bottom:854.895000px;}
.yd2{bottom:855.255000px;}
.y87{bottom:857.775000px;}
.y24{bottom:858.855000px;}
.y69{bottom:862.095000px;}
.y17c{bottom:863.535000px;}
.y15c{bottom:866.055000px;}
.y3f{bottom:867.855000px;}
.y1af{bottom:869.295000px;}
.y9f{bottom:872.895000px;}
.yd1{bottom:873.975000px;}
.y6{bottom:877.935000px;}
.y10d{bottom:878.295000px;}
.ya6{bottom:882.975000px;}
.y17b{bottom:884.415000px;}
.y145{bottom:885.855000px;}
.y15b{bottom:886.575000px;}
.y3e{bottom:888.375000px;}
.y86{bottom:888.735000px;}
.y23{bottom:889.815000px;}
.y68{bottom:893.055000px;}
.y9e{bottom:903.855000px;}
.y17a{bottom:904.935000px;}
.y3d{bottom:909.255000px;}
.y197{bottom:910.695000px;}
.ya5{bottom:913.935000px;}
.y5{bottom:914.655000px;}
.y144{bottom:916.455000px;}
.y149{bottom:916.815000px;}
.y15a{bottom:922.215000px;}
.y67{bottom:924.375000px;}
.y179{bottom:925.815000px;}
.y22{bottom:928.695000px;}
.y3c{bottom:929.775000px;}
.y196{bottom:931.215000px;}
.y85{bottom:934.815000px;}
.y10c{bottom:940.215000px;}
.y159{bottom:943.095000px;}
.ya4{bottom:944.895000px;}
.y1ae{bottom:946.335000px;}
.y148{bottom:948.135000px;}
.y66{bottom:955.365000px;}
.y178{bottom:961.485000px;}
.y158{bottom:963.645000px;}
.y3b{bottom:965.445000px;}
.y84{bottom:966.165000px;}
.y4{bottom:966.525000px;}
.y21{bottom:967.245000px;}
.y10b{bottom:971.205000px;}
.ya3{bottom:975.885000px;}
.y147{bottom:978.765000px;}
.y152{bottom:979.125000px;}
.y177{bottom:982.005000px;}
.y65{bottom:986.325000px;}
.y195{bottom:987.765000px;}
.y83{bottom:997.125000px;}
.y157{bottom:999.285000px;}
.y3a{bottom:1000.725000px;}
.y10a{bottom:1002.525000px;}
.y176{bottom:1002.885000px;}
.y20{bottom:1005.765000px;}
.ya2{bottom:1006.485000px;}
.y3{bottom:1007.205000px;}
.y151{bottom:1010.085000px;}
.y64{bottom:1017.285000px;}
.y156{bottom:1020.165000px;}
.y175{bottom:1023.405000px;}
.y82{bottom:1028.085000px;}
.y39{bottom:1034.925000px;}
.y150{bottom:1040.685000px;}
.y2{bottom:1043.205000px;}
.y109{bottom:1043.925000px;}
.y1f{bottom:1044.285000px;}
.y63{bottom:1048.605000px;}
.y155{bottom:1058.685000px;}
.y81{bottom:1059.045000px;}
.y38{bottom:1062.645000px;}
.y194{bottom:1064.805000px;}
.y62{bottom:1079.610000px;}
.y174{bottom:1079.970000px;}
.y1{bottom:1086.810000px;}
.y1e{bottom:1090.410000px;}
.y173{bottom:1100.490000px;}
.y37{bottom:1118.130000px;}
.y80{bottom:1120.650000px;}
.y61{bottom:1121.010000px;}
.y1d{bottom:1121.370000px;}
.y1b{bottom:1156.650000px;}
.y1a{bottom:1193.010000px;}
.h4{height:54.597656px;}
.hb{height:59.343750px;}
.h3{height:60.679688px;}
.h9{height:65.010937px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.ha{height:71.676000px;}
.h6{height:72.562500px;}
.h8{height:74.953125px;}
.h5{height:84.172500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:252.825000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:127.475987px;}
.xd{left:144.071987px;}
.xe{left:160.634987px;}
.x7{left:165.314987px;}
.x11{left:170.354987px;}
.x12{left:180.434987px;}
.x8{left:188.354987px;}
.x9{left:194.834987px;}
.x2{left:233.744987px;}
.x5{left:274.784987px;}
.x6{left:353.309987px;}
.xa{left:380.669987px;}
.x1{left:434.699987px;}
.x4{left:446.579987px;}
.xc{left:486.899987px;}
.x13{left:512.820000px;}
.xf{left:584.489987px;}
.x10{left:687.494987px;}
.xb{left:765.644987px;}
@media print{
.v1{vertical-align:-74.346667pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.432000pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.152000pt;}
.ls1a{letter-spacing:-1.024000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.460800pt;}
.ls1b{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.158933pt;}
.ls17{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.773120pt;}
.lsb{letter-spacing:1.024000pt;}
.ls0{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls6{letter-spacing:9.088000pt;}
.ls15{letter-spacing:29.568000pt;}
.ls5{letter-spacing:72.458667pt;}
.ws1{word-spacing:-19.840000pt;}
.ws2{word-spacing:-18.718933pt;}
.ws0{word-spacing:-18.560000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws9{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.576000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.552000pt;}
.wse{word-spacing:-15.424000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws14{word-spacing:-14.976000pt;}
.wsd{word-spacing:-14.848000pt;}
.ws13{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.568000pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-14.690987pt;}
._7{margin-left:-13.702827pt;}
._e{margin-left:-12.130987pt;}
._b{margin-left:-10.612907pt;}
._9{margin-left:-8.776960pt;}
._5{margin-left:-7.573333pt;}
._d{margin-left:-6.400000pt;}
._4{margin-left:-4.789333pt;}
._2b{margin-left:-3.387307pt;}
._3{margin-left:-2.492587pt;}
._1{margin-left:-1.187840pt;}
._0{width:1.386667pt;}
._2{width:2.471680pt;}
._10{width:3.409920pt;}
._f{width:4.384853pt;}
._1c{width:5.298347pt;}
._1d{width:6.257493pt;}
._12{width:7.894187pt;}
._11{width:9.507840pt;}
._1e{width:10.656853pt;}
._15{width:11.869013pt;}
._14{width:12.917760pt;}
._18{width:14.014293pt;}
._13{width:15.042560pt;}
._1b{width:17.721173pt;}
._19{width:18.659840pt;}
._1a{width:20.057600pt;}
._2d{width:21.010347pt;}
._28{width:22.027093pt;}
._29{width:22.941013pt;}
._20{width:24.505173pt;}
._1f{width:25.501013pt;}
._2a{width:26.972587pt;}
._21{width:28.485973pt;}
._2e{width:29.832107pt;}
._26{width:30.735360pt;}
._27{width:31.636480pt;}
._34{width:32.614400pt;}
._25{width:33.537280pt;}
._22{width:35.000747pt;}
._17{width:36.181760pt;}
._16{width:37.585920pt;}
._2f{width:38.901333pt;}
._2c{width:40.446720pt;}
._23{width:41.750187pt;}
._24{width:42.850133pt;}
._30{width:44.381013pt;}
._6{width:53.898667pt;}
._35{width:60.881920pt;}
._8{width:63.370667pt;}
._45{width:64.770987pt;}
._44{width:65.835520pt;}
._43{width:67.025920pt;}
._a{width:74.041173pt;}
._33{width:78.342400pt;}
._31{width:79.637760pt;}
._32{width:80.593920pt;}
._37{width:86.137173pt;}
._3a{width:87.093760pt;}
._38{width:130.769920pt;}
._39{width:131.668907pt;}
._40{width:200.483840pt;}
._42{width:202.990507pt;}
._3c{width:243.669333pt;}
._3d{width:245.794560pt;}
._41{width:431.865173pt;}
._3b{width:653.056000pt;}
._36{width:752.405333pt;}
._3e{width:1321.657173pt;}
._3f{width:1624.384000pt;}
.fs4{font-size:39.680000pt;}
.fs2{font-size:48.640000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:16.026667pt;}
.yee{bottom:33.626667pt;}
.yed{bottom:50.586667pt;}
.y1c{bottom:64.032000pt;}
.ya1{bottom:99.872000pt;}
.y12a{bottom:100.832000pt;}
.yeb{bottom:109.152000pt;}
.y1ad{bottom:110.752000pt;}
.y100{bottom:113.312000pt;}
.y60{bottom:113.952000pt;}
.y7f{bottom:114.592000pt;}
.y119{bottom:116.192000pt;}
.yd0{bottom:118.112000pt;}
.y172{bottom:120.992000pt;}
.ybe{bottom:122.272000pt;}
.y13f{bottom:124.832000pt;}
.ya0{bottom:127.712000pt;}
.y129{bottom:128.672000pt;}
.y1ac{bottom:128.992000pt;}
.y19{bottom:130.592000pt;}
.y193{bottom:132.192000pt;}
.y108{bottom:133.466667pt;}
.yea{bottom:136.666667pt;}
.y171{bottom:139.226667pt;}
.yff{bottom:140.826667pt;}
.y118{bottom:144.026667pt;}
.y5f{bottom:145.626667pt;}
.y7e{bottom:146.266667pt;}
.ybd{bottom:149.786667pt;}
.y13e{bottom:152.666667pt;}
.y36{bottom:154.906667pt;}
.y9d{bottom:155.226667pt;}
.y128{bottom:156.186667pt;}
.y170{bottom:157.786667pt;}
.y1ab{bottom:160.666667pt;}
.y107{bottom:160.986667pt;}
.y5e{bottom:163.866667pt;}
.y14e{bottom:164.186667pt;}
.ye9{bottom:164.506667pt;}
.yfe{bottom:168.666667pt;}
.y18{bottom:170.586667pt;}
.y117{bottom:171.546667pt;}
.ycf{bottom:173.186667pt;}
.y35{bottom:173.826667pt;}
.ybc{bottom:177.666667pt;}
.y7d{bottom:177.986667pt;}
.y1aa{bottom:179.266667pt;}
.y13d{bottom:180.226667pt;}
.y5d{bottom:182.466667pt;}
.y9c{bottom:182.786667pt;}
.y127{bottom:183.746667pt;}
.y106{bottom:188.546667pt;}
.y16f{bottom:189.506667pt;}
.y14d{bottom:191.746667pt;}
.ye8{bottom:192.066667pt;}
.y154{bottom:194.306667pt;}
.yfd{bottom:196.226667pt;}
.y1a9{bottom:197.506667pt;}
.y116{bottom:198.786667pt;}
.y5c{bottom:200.706667pt;}
.yce{bottom:201.026667pt;}
.ybb{bottom:205.186667pt;}
.y13c{bottom:207.746667pt;}
.y34{bottom:208.066667pt;}
.y7c{bottom:209.666667pt;}
.y9b{bottom:210.306667pt;}
.y17{bottom:210.946667pt;}
.y126{bottom:211.266667pt;}
.y105{bottom:216.386667pt;}
.y5b{bottom:219.266667pt;}
.ye7{bottom:219.586667pt;}
.yfc{bottom:223.746667pt;}
.y16e{bottom:226.306667pt;}
.ycd{bottom:228.546667pt;}
.y1a8{bottom:229.506667pt;}
.yba{bottom:232.706667pt;}
.y13b{bottom:235.266667pt;}
.y5a{bottom:237.506667pt;}
.y9a{bottom:238.146667pt;}
.y125{bottom:239.106667pt;}
.y115{bottom:240.066667pt;}
.y7b{bottom:241.666667pt;}
.y33{bottom:242.626667pt;}
.y16d{bottom:244.866667pt;}
.ye6{bottom:247.106667pt;}
.y104{bottom:247.746667pt;}
.y192{bottom:250.946667pt;}
.y16{bottom:251.266667pt;}
.y59{bottom:256.066667pt;}
.yb9{bottom:260.226667pt;}
.y13a{bottom:263.106667pt;}
.y103{bottom:264.386667pt;}
.y99{bottom:265.666667pt;}
.y124{bottom:266.306667pt;}
.y114{bottom:267.586667pt;}
.y7a{bottom:269.506667pt;}
.y58{bottom:274.306667pt;}
.y14c{bottom:274.626667pt;}
.ye5{bottom:274.946667pt;}
.y16c{bottom:276.546667pt;}
.yfb{bottom:279.106667pt;}
.y102{bottom:281.346667pt;}
.y32{bottom:283.586667pt;}
.yec{bottom:283.906667pt;}
.y191{bottom:287.773333pt;}
.yb8{bottom:288.093333pt;}
.y139{bottom:290.653333pt;}
.y15{bottom:291.293333pt;}
.y57{bottom:292.893333pt;}
.y98{bottom:293.213333pt;}
.y16b{bottom:294.813333pt;}
.y113{bottom:295.453333pt;}
.y79{bottom:297.053333pt;}
.y101{bottom:298.013333pt;}
.y14b{bottom:302.173333pt;}
.ye4{bottom:302.493333pt;}
.yfa{bottom:306.653333pt;}
.y123{bottom:307.613333pt;}
.y56{bottom:311.133333pt;}
.ycc{bottom:311.453333pt;}
.y16a{bottom:313.373333pt;}
.yb7{bottom:315.613333pt;}
.y1a7{bottom:316.253333pt;}
.y31{bottom:317.853333pt;}
.y138{bottom:318.173333pt;}
.y190{bottom:319.453333pt;}
.y97{bottom:320.733333pt;}
.y112{bottom:322.973333pt;}
.y78{bottom:324.573333pt;}
.y55{bottom:329.693333pt;}
.ye3{bottom:330.013333pt;}
.y14{bottom:331.613333pt;}
.yf9{bottom:334.173333pt;}
.y122{bottom:335.133333pt;}
.y18f{bottom:338.013333pt;}
.ycb{bottom:338.973333pt;}
.yb6{bottom:343.133333pt;}
.y169{bottom:345.053333pt;}
.y137{bottom:345.693333pt;}
.y1a6{bottom:347.933333pt;}
.y96{bottom:348.573333pt;}
.y111{bottom:350.173333pt;}
.y30{bottom:352.093333pt;}
.y14a{bottom:357.213333pt;}
.ye2{bottom:357.533333pt;}
.yf8{bottom:361.693333pt;}
.y121{bottom:362.653333pt;}
.y168{bottom:363.293333pt;}
.y54{bottom:366.493333pt;}
.y18e{bottom:369.693333pt;}
.yb5{bottom:370.653333pt;}
.y13{bottom:371.613333pt;}
.y153{bottom:373.213333pt;}
.y136{bottom:373.533333pt;}
.y95{bottom:376.093333pt;}
.y77{bottom:379.933333pt;}
.y167{bottom:381.853333pt;}
.y53{bottom:384.733333pt;}
.ye1{bottom:385.373333pt;}
.y2f{bottom:386.333333pt;}
.y18d{bottom:387.933333pt;}
.yf7{bottom:389.533333pt;}
.y120{bottom:390.493333pt;}
.yca{bottom:394.013333pt;}
.yb4{bottom:398.533333pt;}
.y166{bottom:400.133333pt;}
.y135{bottom:401.093333pt;}
.y52{bottom:403.333333pt;}
.y94{bottom:403.653333pt;}
.y76{bottom:407.493333pt;}
.y12{bottom:411.973333pt;}
.ye0{bottom:412.933333pt;}
.y1a5{bottom:416.773333pt;}
.yf6{bottom:417.093333pt;}
.y11f{bottom:418.053333pt;}
.y18c{bottom:419.973333pt;}
.y2e{bottom:420.613333pt;}
.y51{bottom:421.573333pt;}
.yc9{bottom:421.893333pt;}
.yb3{bottom:426.053333pt;}
.y134{bottom:428.613333pt;}
.y93{bottom:431.173333pt;}
.y165{bottom:432.133333pt;}
.y75{bottom:435.013333pt;}
.y18b{bottom:438.213333pt;}
.y50{bottom:440.133333pt;}
.ydf{bottom:440.453333pt;}
.y11{bottom:444.613333pt;}
.y11e{bottom:445.573333pt;}
.yc8{bottom:449.413333pt;}
.y164{bottom:450.373333pt;}
.yb2{bottom:453.573333pt;}
.y2d{bottom:455.173333pt;}
.y133{bottom:456.133333pt;}
.y18a{bottom:456.773333pt;}
.y4f{bottom:458.373333pt;}
.y92{bottom:459.013333pt;}
.y74{bottom:462.533333pt;}
.yde{bottom:467.973333pt;}
.y10{bottom:469.253333pt;}
.yf5{bottom:472.133333pt;}
.y11d{bottom:473.093333pt;}
.y189{bottom:475.013333pt;}
.y4e{bottom:476.933333pt;}
.yb1{bottom:481.093333pt;}
.y163{bottom:482.053333pt;}
.y132{bottom:483.973333pt;}
.y1a4{bottom:485.253333pt;}
.y91{bottom:486.533333pt;}
.y2c{bottom:489.413333pt;}
.y73{bottom:490.373333pt;}
.y188{bottom:493.573333pt;}
.yf{bottom:493.893333pt;}
.y4d{bottom:495.173333pt;}
.ydd{bottom:495.813333pt;}
.yf4{bottom:499.973333pt;}
.y11c{bottom:500.613333pt;}
.y1a3{bottom:503.493333pt;}
.yc7{bottom:504.453333pt;}
.yb0{bottom:508.613333pt;}
.y131{bottom:511.520000pt;}
.y4c{bottom:513.760000pt;}
.y90{bottom:514.080000pt;}
.y72{bottom:517.920000pt;}
.ye{bottom:518.880000pt;}
.y1a2{bottom:522.080000pt;}
.ydc{bottom:523.360000pt;}
.y2b{bottom:523.680000pt;}
.y187{bottom:525.280000pt;}
.yf3{bottom:527.520000pt;}
.y11b{bottom:528.480000pt;}
.y4b{bottom:532.000000pt;}
.yc6{bottom:532.320000pt;}
.yaf{bottom:536.480000pt;}
.y130{bottom:539.040000pt;}
.y8f{bottom:541.600000pt;}
.y186{bottom:543.520000pt;}
.y71{bottom:545.440000pt;}
.y4a{bottom:550.560000pt;}
.ydb{bottom:550.880000pt;}
.yd{bottom:551.520000pt;}
.y1a1{bottom:553.760000pt;}
.yf2{bottom:555.040000pt;}
.y11a{bottom:555.680000pt;}
.y2a{bottom:557.920000pt;}
.yc5{bottom:559.840000pt;}
.y185{bottom:562.080000pt;}
.yae{bottom:564.000000pt;}
.y12f{bottom:566.560000pt;}
.y49{bottom:568.800000pt;}
.y8e{bottom:569.440000pt;}
.y1a0{bottom:572.000000pt;}
.y70{bottom:572.960000pt;}
.yda{bottom:578.400000pt;}
.y184{bottom:580.320000pt;}
.yf1{bottom:582.560000pt;}
.yc{bottom:584.160000pt;}
.y48{bottom:587.360000pt;}
.y19f{bottom:590.560000pt;}
.yad{bottom:591.520000pt;}
.y29{bottom:592.160000pt;}
.y12e{bottom:594.400000pt;}
.yc4{bottom:596.640000pt;}
.y8d{bottom:596.960000pt;}
.y6f{bottom:600.800000pt;}
.yd9{bottom:606.240000pt;}
.yf0{bottom:610.400000pt;}
.y183{bottom:612.000000pt;}
.y110{bottom:614.880000pt;}
.yb{bottom:616.800000pt;}
.yac{bottom:619.040000pt;}
.y162{bottom:619.360000pt;}
.y12d{bottom:621.946667pt;}
.y19e{bottom:622.266667pt;}
.y47{bottom:624.186667pt;}
.y8c{bottom:624.506667pt;}
.y28{bottom:626.426667pt;}
.y6e{bottom:628.346667pt;}
.y182{bottom:630.586667pt;}
.yd8{bottom:633.786667pt;}
.yc3{bottom:637.946667pt;}
.y19d{bottom:640.826667pt;}
.y46{bottom:642.426667pt;}
.yab{bottom:646.906667pt;}
.y181{bottom:648.826667pt;}
.ya{bottom:649.466667pt;}
.y161{bottom:651.066667pt;}
.y8b{bottom:652.026667pt;}
.y6d{bottom:655.866667pt;}
.y27{bottom:660.666667pt;}
.y45{bottom:660.986667pt;}
.yd7{bottom:661.306667pt;}
.yc2{bottom:665.466667pt;}
.y180{bottom:667.386667pt;}
.y160{bottom:669.306667pt;}
.y10f{bottom:670.266667pt;}
.y19c{bottom:672.506667pt;}
.yaa{bottom:674.426667pt;}
.y12c{bottom:676.666667pt;}
.y143{bottom:676.986667pt;}
.y44{bottom:679.226667pt;}
.y8a{bottom:679.866667pt;}
.y9{bottom:682.106667pt;}
.y6c{bottom:683.386667pt;}
.y19b{bottom:690.746667pt;}
.yd6{bottom:692.666667pt;}
.yc1{bottom:692.986667pt;}
.y26{bottom:694.906667pt;}
.y43{bottom:697.786667pt;}
.y17f{bottom:699.066667pt;}
.y15f{bottom:700.986667pt;}
.ya9{bottom:701.946667pt;}
.y1b0{bottom:704.186667pt;}
.y14f{bottom:704.506667pt;}
.y142{bottom:704.826667pt;}
.y12b{bottom:707.066667pt;}
.y89{bottom:707.386667pt;}
.yd5{bottom:709.306667pt;}
.y6b{bottom:711.226667pt;}
.y8{bottom:714.746667pt;}
.y42{bottom:716.026667pt;}
.y17e{bottom:717.306667pt;}
.y15e{bottom:719.546667pt;}
.yc0{bottom:720.826667pt;}
.y19a{bottom:722.426667pt;}
.y10e{bottom:725.306667pt;}
.yd4{bottom:726.266667pt;}
.y25{bottom:729.146667pt;}
.ya8{bottom:729.466667pt;}
.y141{bottom:732.346667pt;}
.y41{bottom:734.626667pt;}
.y88{bottom:734.946667pt;}
.y17d{bottom:735.906667pt;}
.y6a{bottom:738.786667pt;}
.y199{bottom:741.026667pt;}
.yd3{bottom:743.266667pt;}
.y7{bottom:747.746667pt;}
.ybf{bottom:748.386667pt;}
.y15d{bottom:751.266667pt;}
.y40{bottom:752.866667pt;}
.ya7{bottom:757.346667pt;}
.y198{bottom:759.266667pt;}
.y140{bottom:759.586667pt;}
.y146{bottom:759.906667pt;}
.yd2{bottom:760.226667pt;}
.y87{bottom:762.466667pt;}
.y24{bottom:763.426667pt;}
.y69{bottom:766.306667pt;}
.y17c{bottom:767.586667pt;}
.y15c{bottom:769.826667pt;}
.y3f{bottom:771.426667pt;}
.y1af{bottom:772.706667pt;}
.y9f{bottom:775.906667pt;}
.yd1{bottom:776.866667pt;}
.y6{bottom:780.386667pt;}
.y10d{bottom:780.706667pt;}
.ya6{bottom:784.866667pt;}
.y17b{bottom:786.146667pt;}
.y145{bottom:787.426667pt;}
.y15b{bottom:788.066667pt;}
.y3e{bottom:789.666667pt;}
.y86{bottom:789.986667pt;}
.y23{bottom:790.946667pt;}
.y68{bottom:793.826667pt;}
.y9e{bottom:803.426667pt;}
.y17a{bottom:804.386667pt;}
.y3d{bottom:808.226667pt;}
.y197{bottom:809.506667pt;}
.ya5{bottom:812.386667pt;}
.y5{bottom:813.026667pt;}
.y144{bottom:814.626667pt;}
.y149{bottom:814.946667pt;}
.y15a{bottom:819.746667pt;}
.y67{bottom:821.666667pt;}
.y179{bottom:822.946667pt;}
.y22{bottom:825.506667pt;}
.y3c{bottom:826.466667pt;}
.y196{bottom:827.746667pt;}
.y85{bottom:830.946667pt;}
.y10c{bottom:835.746667pt;}
.y159{bottom:838.306667pt;}
.ya4{bottom:839.906667pt;}
.y1ae{bottom:841.186667pt;}
.y148{bottom:842.786667pt;}
.y66{bottom:849.213333pt;}
.y178{bottom:854.653333pt;}
.y158{bottom:856.573333pt;}
.y3b{bottom:858.173333pt;}
.y84{bottom:858.813333pt;}
.y4{bottom:859.133333pt;}
.y21{bottom:859.773333pt;}
.y10b{bottom:863.293333pt;}
.ya3{bottom:867.453333pt;}
.y147{bottom:870.013333pt;}
.y152{bottom:870.333333pt;}
.y177{bottom:872.893333pt;}
.y65{bottom:876.733333pt;}
.y195{bottom:878.013333pt;}
.y83{bottom:886.333333pt;}
.y157{bottom:888.253333pt;}
.y3a{bottom:889.533333pt;}
.y10a{bottom:891.133333pt;}
.y176{bottom:891.453333pt;}
.y20{bottom:894.013333pt;}
.ya2{bottom:894.653333pt;}
.y3{bottom:895.293333pt;}
.y151{bottom:897.853333pt;}
.y64{bottom:904.253333pt;}
.y156{bottom:906.813333pt;}
.y175{bottom:909.693333pt;}
.y82{bottom:913.853333pt;}
.y39{bottom:919.933333pt;}
.y150{bottom:925.053333pt;}
.y2{bottom:927.293333pt;}
.y109{bottom:927.933333pt;}
.y1f{bottom:928.253333pt;}
.y63{bottom:932.093333pt;}
.y155{bottom:941.053333pt;}
.y81{bottom:941.373333pt;}
.y38{bottom:944.573333pt;}
.y194{bottom:946.493333pt;}
.y62{bottom:959.653333pt;}
.y174{bottom:959.973333pt;}
.y1{bottom:966.053333pt;}
.y1e{bottom:969.253333pt;}
.y173{bottom:978.213333pt;}
.y37{bottom:993.893333pt;}
.y80{bottom:996.133333pt;}
.y61{bottom:996.453333pt;}
.y1d{bottom:996.773333pt;}
.y1b{bottom:1028.133333pt;}
.y1a{bottom:1060.453333pt;}
.h4{height:48.531250pt;}
.hb{height:52.750000pt;}
.h3{height:53.937500pt;}
.h9{height:57.787500pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.ha{height:63.712000pt;}
.h6{height:64.500000pt;}
.h8{height:66.625000pt;}
.h5{height:74.820000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:224.733333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:113.311988pt;}
.xd{left:128.063988pt;}
.xe{left:142.786655pt;}
.x7{left:146.946655pt;}
.x11{left:151.426655pt;}
.x12{left:160.386655pt;}
.x8{left:167.426655pt;}
.x9{left:173.186655pt;}
.x2{left:207.773322pt;}
.x5{left:244.253322pt;}
.x6{left:314.053322pt;}
.xa{left:338.373322pt;}
.x1{left:386.399988pt;}
.x4{left:396.959988pt;}
.xc{left:432.799988pt;}
.x13{left:455.840000pt;}
.xf{left:519.546655pt;}
.x10{left:611.106655pt;}
.xb{left:680.573322pt;}
}




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