
    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_88e6e95e60855bda2311553a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2012bdb23f5f61d6d8336f7c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2bd74840155815bedc95cf7f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_169b74b0437142b33b257bcb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_766b00fdaa0d0ea5ee7f1dc5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fcf1b7db5ffe686fb41e8f6e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_928822268a14f2612fdc3017.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ec461d505044ba1746b1fd9c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8cccf2db04308f7265ecb0e0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.852539;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_587d73c4a390f749324b8df2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_0c2e23577da7b3bb6d93d389.woff')format("woff");}.ffc{font-family:ffc;line-height:0.852539;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_b6cb440816a6a128749944b6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0285bc547d4c2cf352982bf9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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:fff;src:url('chunks/assets/font_d7873689f8453bd0ce701731.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1dd8d5a72e5a2b8c9171515a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_21a0a59db3533d97cf4f0436.woff')format("woff");}.ff11{font-family:ff11;line-height:1.091797;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);}
.v2{vertical-align:-24.000000px;}
.v5{vertical-align:-21.000000px;}
.v7{vertical-align:-15.000000px;}
.v6{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.000000px;}
.v4{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.ls26{letter-spacing:-0.876000px;}
.ls28{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.612000px;}
.ls2b{letter-spacing:-0.597000px;}
.ls7{letter-spacing:-0.546000px;}
.ls12{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.318000px;}
.ls27{letter-spacing:-0.312000px;}
.ls2a{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.282000px;}
.ls20{letter-spacing:-0.276000px;}
.ls1d{letter-spacing:-0.228000px;}
.ls4{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.132000px;}
.lsf{letter-spacing:-0.114000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.102000px;}
.ls11{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.174000px;}
.ls1e{letter-spacing:0.228000px;}
.ls17{letter-spacing:0.276000px;}
.ls16{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.384000px;}
.ls1a{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.474000px;}
.ls19{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.516000px;}
.ls23{letter-spacing:0.552000px;}
.ls18{letter-spacing:0.564000px;}
.lsa{letter-spacing:0.582000px;}
.ls6{letter-spacing:0.606000px;}
.ls1b{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.624000px;}
.ls22{letter-spacing:0.630000px;}
.lsb{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.726000px;}
.ls13{letter-spacing:0.756000px;}
.lse{letter-spacing:1.338000px;}
.ls15{letter-spacing:59.652000px;}
.ls29{letter-spacing:841.098000px;}
.ls1f{letter-spacing:844.434000px;}
.ls24{letter-spacing:846.012000px;}
.ls1{letter-spacing:846.102000px;}
.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;}
}
.ws21{word-spacing:-72.000000px;}
.ws12{word-spacing:-66.000000px;}
.ws0{word-spacing:-21.360000px;}
.ws1b{word-spacing:-15.168000px;}
.ws9{word-spacing:-14.736000px;}
.ws22{word-spacing:-14.616000px;}
.ws11{word-spacing:-14.154000px;}
.wsb{word-spacing:-14.124000px;}
.ws1c{word-spacing:-14.022000px;}
.ws2{word-spacing:-14.004000px;}
.ws1a{word-spacing:-13.872000px;}
.ws7{word-spacing:-13.560000px;}
.wsd{word-spacing:-13.524000px;}
.ws6{word-spacing:-13.398000px;}
.wsa{word-spacing:-13.284000px;}
.ws1{word-spacing:-13.236000px;}
.ws8{word-spacing:-13.116000px;}
.ws1e{word-spacing:-13.086000px;}
.ws4{word-spacing:-13.080000px;}
.wse{word-spacing:-12.966000px;}
.ws3{word-spacing:-12.852000px;}
.ws20{word-spacing:-12.786000px;}
.ws1d{word-spacing:-12.522000px;}
.ws15{word-spacing:-10.356000px;}
.ws18{word-spacing:-9.972000px;}
.ws10{word-spacing:-9.807000px;}
.ws13{word-spacing:-9.744000px;}
.ws16{word-spacing:-9.612000px;}
.ws17{word-spacing:-9.516000px;}
.ws19{word-spacing:-9.468000px;}
.wsf{word-spacing:-9.135000px;}
.wsc{word-spacing:-7.917000px;}
.ws1f{word-spacing:-7.320000px;}
.ws14{word-spacing:-7.308000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2.505000px;}
._0{margin-left:-1.500000px;}
._1{width:1.920000px;}
._2{width:3.120000px;}
._4{width:4.350000px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,71,97);}
.fs8{font-size:27.000000px;}
.fsb{font-size:30.000000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fsc{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.250000px;}
.y71{bottom:5.610000px;}
.y6e{bottom:5.625000px;}
.y8c{bottom:5.655000px;}
.y85{bottom:5.670000px;}
.y6b{bottom:6.000000px;}
.y83{bottom:6.750000px;}
.y6c{bottom:7.125000px;}
.y86{bottom:7.170000px;}
.y3{bottom:84.787500px;}
.y2{bottom:90.037500px;}
.y4d{bottom:111.787500px;}
.y4c{bottom:129.037500px;}
.y4b{bottom:142.537500px;}
.y4a{bottom:156.420000px;}
.yc0{bottom:157.200000px;}
.ydd{bottom:162.795000px;}
.y49{bottom:172.545000px;}
.ybf{bottom:173.325000px;}
.y48{bottom:178.530000px;}
.y90{bottom:181.905000px;}
.yb8{bottom:184.200000px;}
.ydc{bottom:186.075000px;}
.ybe{bottom:189.075000px;}
.y47{bottom:192.075000px;}
.yfc{bottom:193.950000px;}
.yb7{bottom:199.950000px;}
.ya7{bottom:200.325000px;}
.y46{bottom:205.950000px;}
.ydb{bottom:209.700000px;}
.ybd{bottom:214.200000px;}
.yb6{bottom:216.075000px;}
.ya6{bottom:216.825000px;}
.y45{bottom:219.825000px;}
.y8f{bottom:229.575000px;}
.ya5{bottom:232.620000px;}
.y44{bottom:233.325000px;}
.yfb{bottom:233.700000px;}
.yda{bottom:234.075000px;}
.yb5{bottom:241.245000px;}
.y43{bottom:249.450000px;}
.y8e{bottom:253.575000px;}
.y42{bottom:255.450000px;}
.yfa{bottom:257.325000px;}
.yd9{bottom:258.075000px;}
.ya4{bottom:259.245000px;}
.y41{bottom:271.200000px;}
.y8d{bottom:277.575000px;}
.yf9{bottom:280.575000px;}
.yd8{bottom:283.200000px;}
.y125{bottom:300.075000px;}
.y8b{bottom:301.575000px;}
.yf8{bottom:304.245000px;}
.yd7{bottom:306.480000px;}
.y40{bottom:307.620000px;}
.y10d{bottom:316.605000px;}
.y8a{bottom:325.620000px;}
.ybc{bottom:326.775000px;}
.yf7{bottom:327.495000px;}
.y3f{bottom:330.870000px;}
.yd6{bottom:337.620000px;}
.ybb{bottom:342.525000px;}
.y89{bottom:349.245000px;}
.yf6{bottom:351.120000px;}
.y124{bottom:351.495000px;}
.y10c{bottom:351.870000px;}
.y3e{bottom:354.495000px;}
.yba{bottom:358.650000px;}
.y1f{bottom:362.370000px;}
.yc2{bottom:369.120000px;}
.y88{bottom:373.245000px;}
.yf5{bottom:374.370000px;}
.yd5{bottom:374.745000px;}
.y10b{bottom:375.495000px;}
.y3d{bottom:377.745000px;}
.yb9{bottom:383.775000px;}
.y123{bottom:388.995000px;}
.y87{bottom:397.245000px;}
.y1e{bottom:397.995000px;}
.y3c{bottom:401.370000px;}
.yf4{bottom:409.620000px;}
.y10a{bottom:410.745000px;}
.y122{bottom:414.495000px;}
.y84{bottom:421.230000px;}
.y1d{bottom:421.245000px;}
.y3b{bottom:424.650000px;}
.yf3{bottom:433.275000px;}
.y121{bottom:440.025000px;}
.y1c{bottom:444.525000px;}
.yd4{bottom:444.900000px;}
.y82{bottom:445.275000px;}
.y109{bottom:446.025000px;}
.yf2{bottom:456.525000px;}
.y3a{bottom:459.900000px;}
.y1b{bottom:468.150000px;}
.y81{bottom:468.900000px;}
.y120{bottom:477.525000px;}
.yf1{bottom:480.150000px;}
.y108{bottom:481.650000px;}
.y65{bottom:482.400000px;}
.y39{bottom:483.525000px;}
.y1a{bottom:491.400000px;}
.y80{bottom:492.900000px;}
.y11f{bottom:503.025000px;}
.yf0{bottom:503.400000px;}
.yd3{bottom:503.775000px;}
.y38{bottom:506.775000px;}
.y19{bottom:515.025000px;}
.y7f{bottom:516.900000px;}
.y64{bottom:517.650000px;}
.yd2{bottom:527.025000px;}
.y37{bottom:530.400000px;}
.y18{bottom:538.275000px;}
.yef{bottom:539.025000px;}
.y11e{bottom:540.570000px;}
.y63{bottom:540.945000px;}
.ya1{bottom:549.195000px;}
.yd1{bottom:551.820000px;}
.y107{bottom:552.570000px;}
.y36{bottom:553.695000px;}
.y17{bottom:561.945000px;}
.yee{bottom:562.320000px;}
.y62{bottom:564.570000px;}
.y7e{bottom:564.945000px;}
.y11d{bottom:566.070000px;}
.yd0{bottom:575.070000px;}
.y35{bottom:577.320000px;}
.y16{bottom:585.195000px;}
.yed{bottom:585.570000px;}
.ya0{bottom:586.320000px;}
.y106{bottom:587.070000px;}
.y61{bottom:587.820000px;}
.y7d{bottom:588.570000px;}
.y11c{bottom:591.570000px;}
.ycf{bottom:599.445000px;}
.y34{bottom:600.570000px;}
.y9f{bottom:606.195000px;}
.y15{bottom:608.445000px;}
.yec{bottom:610.320000px;}
.y60{bottom:611.445000px;}
.y7c{bottom:612.570000px;}
.y11b{bottom:617.445000px;}
.yce{bottom:623.070000px;}
.y33{bottom:624.195000px;}
.y105{bottom:629.445000px;}
.y14{bottom:632.070000px;}
.yeb{bottom:633.570000px;}
.y9e{bottom:633.945000px;}
.y5f{bottom:634.695000px;}
.y7b{bottom:636.570000px;}
.y32{bottom:647.445000px;}
.y104{bottom:652.695000px;}
.y11a{bottom:654.945000px;}
.y13{bottom:655.320000px;}
.yea{bottom:658.320000px;}
.y7a{bottom:660.600000px;}
.y9d{bottom:661.350000px;}
.y5e{bottom:670.350000px;}
.y31{bottom:670.725000px;}
.ycd{bottom:671.475000px;}
.y103{bottom:676.350000px;}
.y12{bottom:678.975000px;}
.y119{bottom:680.475000px;}
.ye9{bottom:681.600000px;}
.y79{bottom:684.600000px;}
.y9c{bottom:689.100000px;}
.y5d{bottom:693.600000px;}
.y30{bottom:694.350000px;}
.ycc{bottom:696.975000px;}
.y11{bottom:702.225000px;}
.ye8{bottom:705.975000px;}
.y78{bottom:708.225000px;}
.y102{bottom:711.600000px;}
.y9b{bottom:716.850000px;}
.y2f{bottom:717.600000px;}
.y5c{bottom:717.975000px;}
.ycb{bottom:720.225000px;}
.y10{bottom:725.850000px;}
.ye7{bottom:729.600000px;}
.y118{bottom:731.475000px;}
.y77{bottom:732.225000px;}
.y101{bottom:735.225000px;}
.y2e{bottom:741.225000px;}
.y5b{bottom:742.725000px;}
.y9a{bottom:744.600000px;}
.yca{bottom:744.975000px;}
.yb4{bottom:747.600000px;}
.yf{bottom:749.100000px;}
.ye6{bottom:752.850000px;}
.y76{bottom:756.225000px;}
.y2d{bottom:764.475000px;}
.y5a{bottom:765.975000px;}
.yc9{bottom:768.225000px;}
.y117{bottom:768.975000px;}
.y100{bottom:770.475000px;}
.yb3{bottom:771.225000px;}
.y99{bottom:772.350000px;}
.ye{bottom:772.725000px;}
.ye5{bottom:777.630000px;}
.y75{bottom:780.255000px;}
.ya3{bottom:787.080000px;}
.y2c{bottom:788.145000px;}
.y59{bottom:790.770000px;}
.yc8{bottom:792.255000px;}
.yff{bottom:794.145000px;}
.yb2{bottom:794.505000px;}
.yd{bottom:796.005000px;}
.y98{bottom:799.755000px;}
.ye4{bottom:800.895000px;}
.y74{bottom:804.255000px;}
.y2b{bottom:811.380000px;}
.y58{bottom:814.005000px;}
.yb1{bottom:818.130000px;}
.yc{bottom:819.255000px;}
.y116{bottom:820.005000px;}
.yc7{bottom:824.505000px;}
.y97{bottom:827.505000px;}
.y73{bottom:827.880000px;}
.yfe{bottom:829.380000px;}
.y2a{bottom:834.630000px;}
.y57{bottom:838.380000px;}
.yb0{bottom:841.380000px;}
.yb{bottom:842.880000px;}
.y115{bottom:845.505000px;}
.ye3{bottom:848.880000px;}
.y72{bottom:851.880000px;}
.yfd{bottom:852.630000px;}
.y96{bottom:855.255000px;}
.y56{bottom:862.005000px;}
.yaf{bottom:864.630000px;}
.ya{bottom:866.130000px;}
.y29{bottom:872.130000px;}
.ya2{bottom:872.580000px;}
.y70{bottom:875.895000px;}
.y95{bottom:883.020000px;}
.y114{bottom:883.380000px;}
.y55{bottom:885.255000px;}
.yc6{bottom:887.505000px;}
.yae{bottom:888.255000px;}
.y9{bottom:889.755000px;}
.ye2{bottom:896.925000px;}
.y6f{bottom:899.925000px;}
.y113{bottom:908.925000px;}
.y94{bottom:910.800000px;}
.yad{bottom:911.550000px;}
.y28{bottom:911.925000px;}
.y8{bottom:913.050000px;}
.ye1{bottom:920.175000px;}
.y54{bottom:922.050000px;}
.y6d{bottom:923.925000px;}
.y112{bottom:934.425000px;}
.yac{bottom:935.175000px;}
.y27{bottom:935.550000px;}
.y93{bottom:938.175000px;}
.yc5{bottom:938.550000px;}
.y53{bottom:945.300000px;}
.y6a{bottom:947.550000px;}
.y7{bottom:950.550000px;}
.ye0{bottom:956.925000px;}
.yab{bottom:958.425000px;}
.yc4{bottom:964.050000px;}
.y52{bottom:968.925000px;}
.y26{bottom:970.800000px;}
.y111{bottom:971.925000px;}
.ydf{bottom:980.175000px;}
.yaa{bottom:982.050000px;}
.y92{bottom:985.425000px;}
.y6{bottom:989.175000px;}
.yc3{bottom:989.550000px;}
.y51{bottom:992.175000px;}
.y25{bottom:994.425000px;}
.y69{bottom:995.175000px;}
.y110{bottom:997.425000px;}
.y91{bottom:1001.175000px;}
.ya9{bottom:1005.300000px;}
.yc1{bottom:1011.300000px;}
.y50{bottom:1015.455000px;}
.y68{bottom:1017.330000px;}
.y23{bottom:1017.705000px;}
.y10f{bottom:1022.955000px;}
.y24{bottom:1023.705000px;}
.y5{bottom:1027.455000px;}
.ya8{bottom:1028.955000px;}
.y67{bottom:1033.455000px;}
.y4f{bottom:1039.080000px;}
.yde{bottom:1039.830000px;}
.y21{bottom:1041.330000px;}
.y22{bottom:1047.330000px;}
.y10e{bottom:1057.455000px;}
.y66{bottom:1060.080000px;}
.y4e{bottom:1063.080000px;}
.y20{bottom:1064.580000px;}
.y1{bottom:1142.625000px;}
.h13{height:21.000000px;}
.h17{height:21.360000px;}
.h10{height:21.375000px;}
.h15{height:21.397500px;}
.h16{height:21.412500px;}
.h3{height:21.750000px;}
.h1a{height:24.000000px;}
.h1d{height:24.037500px;}
.h1e{height:24.360000px;}
.h19{height:24.375000px;}
.h1c{height:24.397500px;}
.h9{height:33.801270px;}
.hb{height:36.401367px;}
.hc{height:38.891602px;}
.h22{height:39.001465px;}
.h21{height:40.927734px;}
.h1b{height:41.484375px;}
.h14{height:41.601562px;}
.h11{height:41.671875px;}
.hd{height:52.001953px;}
.h18{height:52.193906px;}
.h12{height:52.253906px;}
.h6{height:57.202148px;}
.h8{height:57.298828px;}
.ha{height:57.801270px;}
.h25{height:57.921270px;}
.he{height:60.401367px;}
.h2{height:62.402344px;}
.h1{height:62.578125px;}
.h23{height:65.838867px;}
.hf{height:67.837600px;}
.h7{height:68.707031px;}
.h5{height:72.597656px;}
.h1f{height:74.004654px;}
.h26{height:82.968750px;}
.h24{height:86.338763px;}
.h4{height:93.339844px;}
.h20{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:9.750000px;}
.wf{width:19.125000px;}
.w9{width:52.875000px;}
.wa{width:52.912500px;}
.wb{width:68.287500px;}
.w5{width:97.912500px;}
.w7{width:127.162500px;}
.w6{width:187.575000px;}
.wc{width:221.325000px;}
.w4{width:281.370000px;}
.w8{width:292.275000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.we{width:1187.999982px;}
.wd{width:1188.000000px;}
.x0{left:0.000000px;}
.x13{left:6.750000px;}
.x2{left:108.037486px;}
.xc{left:112.537500px;}
.x9{left:113.662486px;}
.xa{left:135.074986px;}
.xb{left:162.074986px;}
.x8{left:324.149986px;}
.x1{left:358.274986px;}
.xd{left:395.025000px;}
.x4{left:398.024973px;}
.x5{left:403.319986px;}
.x10{left:407.070000px;}
.x11{left:462.195000px;}
.xe{left:494.475000px;}
.x12{left:517.350000px;}
.x14{left:587.895000px;}
.x15{left:628.319982px;}
.xf{left:683.550000px;}
.x6{left:698.924973px;}
.x7{left:704.174986px;}
.x1b{left:787.829986px;}
.x1a{left:791.220000px;}
.x3{left:800.595000px;}
.x19{left:1061.220000px;}
.x16{left:1070.595000px;}
.x18{left:1074.704982px;}
.x17{left:1090.844982px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v5{vertical-align:-18.666667pt;}
.v7{vertical-align:-13.333333pt;}
.v6{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.333333pt;}
.v4{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.ls26{letter-spacing:-0.778667pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.544000pt;}
.ls2b{letter-spacing:-0.530667pt;}
.ls7{letter-spacing:-0.485333pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.282667pt;}
.ls27{letter-spacing:-0.277333pt;}
.ls2a{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.250667pt;}
.ls20{letter-spacing:-0.245333pt;}
.ls1d{letter-spacing:-0.202667pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.090667pt;}
.ls11{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.154667pt;}
.ls1e{letter-spacing:0.202667pt;}
.ls17{letter-spacing:0.245333pt;}
.ls16{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.341333pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.421333pt;}
.ls19{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.458667pt;}
.ls23{letter-spacing:0.490667pt;}
.ls18{letter-spacing:0.501333pt;}
.lsa{letter-spacing:0.517333pt;}
.ls6{letter-spacing:0.538667pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.554667pt;}
.ls22{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.645333pt;}
.ls13{letter-spacing:0.672000pt;}
.lse{letter-spacing:1.189333pt;}
.ls15{letter-spacing:53.024000pt;}
.ls29{letter-spacing:747.642667pt;}
.ls1f{letter-spacing:750.608000pt;}
.ls24{letter-spacing:752.010667pt;}
.ls1{letter-spacing:752.090667pt;}
.ws21{word-spacing:-64.000000pt;}
.ws12{word-spacing:-58.666667pt;}
.ws0{word-spacing:-18.986667pt;}
.ws1b{word-spacing:-13.482667pt;}
.ws9{word-spacing:-13.098667pt;}
.ws22{word-spacing:-12.992000pt;}
.ws11{word-spacing:-12.581333pt;}
.wsb{word-spacing:-12.554667pt;}
.ws1c{word-spacing:-12.464000pt;}
.ws2{word-spacing:-12.448000pt;}
.ws1a{word-spacing:-12.330667pt;}
.ws7{word-spacing:-12.053333pt;}
.wsd{word-spacing:-12.021333pt;}
.ws6{word-spacing:-11.909333pt;}
.wsa{word-spacing:-11.808000pt;}
.ws1{word-spacing:-11.765333pt;}
.ws8{word-spacing:-11.658667pt;}
.ws1e{word-spacing:-11.632000pt;}
.ws4{word-spacing:-11.626667pt;}
.wse{word-spacing:-11.525333pt;}
.ws3{word-spacing:-11.424000pt;}
.ws20{word-spacing:-11.365333pt;}
.ws1d{word-spacing:-11.130667pt;}
.ws15{word-spacing:-9.205333pt;}
.ws18{word-spacing:-8.864000pt;}
.ws10{word-spacing:-8.717333pt;}
.ws13{word-spacing:-8.661333pt;}
.ws16{word-spacing:-8.544000pt;}
.ws17{word-spacing:-8.458667pt;}
.ws19{word-spacing:-8.416000pt;}
.wsf{word-spacing:-8.120000pt;}
.wsc{word-spacing:-7.037333pt;}
.ws1f{word-spacing:-6.506667pt;}
.ws14{word-spacing:-6.496000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2.226667pt;}
._0{margin-left:-1.333333pt;}
._1{width:1.706667pt;}
._2{width:2.773333pt;}
._4{width:3.866667pt;}
.fs8{font-size:24.000000pt;}
.fsb{font-size:26.666667pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fsc{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.666667pt;}
.y71{bottom:4.986667pt;}
.y6e{bottom:5.000000pt;}
.y8c{bottom:5.026667pt;}
.y85{bottom:5.040000pt;}
.y6b{bottom:5.333333pt;}
.y83{bottom:6.000000pt;}
.y6c{bottom:6.333333pt;}
.y86{bottom:6.373333pt;}
.y3{bottom:75.366667pt;}
.y2{bottom:80.033333pt;}
.y4d{bottom:99.366667pt;}
.y4c{bottom:114.700000pt;}
.y4b{bottom:126.700000pt;}
.y4a{bottom:139.040000pt;}
.yc0{bottom:139.733333pt;}
.ydd{bottom:144.706667pt;}
.y49{bottom:153.373333pt;}
.ybf{bottom:154.066667pt;}
.y48{bottom:158.693333pt;}
.y90{bottom:161.693333pt;}
.yb8{bottom:163.733333pt;}
.ydc{bottom:165.400000pt;}
.ybe{bottom:168.066667pt;}
.y47{bottom:170.733333pt;}
.yfc{bottom:172.400000pt;}
.yb7{bottom:177.733333pt;}
.ya7{bottom:178.066667pt;}
.y46{bottom:183.066667pt;}
.ydb{bottom:186.400000pt;}
.ybd{bottom:190.400000pt;}
.yb6{bottom:192.066667pt;}
.ya6{bottom:192.733333pt;}
.y45{bottom:195.400000pt;}
.y8f{bottom:204.066667pt;}
.ya5{bottom:206.773333pt;}
.y44{bottom:207.400000pt;}
.yfb{bottom:207.733333pt;}
.yda{bottom:208.066667pt;}
.yb5{bottom:214.440000pt;}
.y43{bottom:221.733333pt;}
.y8e{bottom:225.400000pt;}
.y42{bottom:227.066667pt;}
.yfa{bottom:228.733333pt;}
.yd9{bottom:229.400000pt;}
.ya4{bottom:230.440000pt;}
.y41{bottom:241.066667pt;}
.y8d{bottom:246.733333pt;}
.yf9{bottom:249.400000pt;}
.yd8{bottom:251.733333pt;}
.y125{bottom:266.733333pt;}
.y8b{bottom:268.066667pt;}
.yf8{bottom:270.440000pt;}
.yd7{bottom:272.426667pt;}
.y40{bottom:273.440000pt;}
.y10d{bottom:281.426667pt;}
.y8a{bottom:289.440000pt;}
.ybc{bottom:290.466667pt;}
.yf7{bottom:291.106667pt;}
.y3f{bottom:294.106667pt;}
.yd6{bottom:300.106667pt;}
.ybb{bottom:304.466667pt;}
.y89{bottom:310.440000pt;}
.yf6{bottom:312.106667pt;}
.y124{bottom:312.440000pt;}
.y10c{bottom:312.773333pt;}
.y3e{bottom:315.106667pt;}
.yba{bottom:318.800000pt;}
.y1f{bottom:322.106667pt;}
.yc2{bottom:328.106667pt;}
.y88{bottom:331.773333pt;}
.yf5{bottom:332.773333pt;}
.yd5{bottom:333.106667pt;}
.y10b{bottom:333.773333pt;}
.y3d{bottom:335.773333pt;}
.yb9{bottom:341.133333pt;}
.y123{bottom:345.773333pt;}
.y87{bottom:353.106667pt;}
.y1e{bottom:353.773333pt;}
.y3c{bottom:356.773333pt;}
.yf4{bottom:364.106667pt;}
.y10a{bottom:365.106667pt;}
.y122{bottom:368.440000pt;}
.y84{bottom:374.426667pt;}
.y1d{bottom:374.440000pt;}
.y3b{bottom:377.466667pt;}
.yf3{bottom:385.133333pt;}
.y121{bottom:391.133333pt;}
.y1c{bottom:395.133333pt;}
.yd4{bottom:395.466667pt;}
.y82{bottom:395.800000pt;}
.y109{bottom:396.466667pt;}
.yf2{bottom:405.800000pt;}
.y3a{bottom:408.800000pt;}
.y1b{bottom:416.133333pt;}
.y81{bottom:416.800000pt;}
.y120{bottom:424.466667pt;}
.yf1{bottom:426.800000pt;}
.y108{bottom:428.133333pt;}
.y65{bottom:428.800000pt;}
.y39{bottom:429.800000pt;}
.y1a{bottom:436.800000pt;}
.y80{bottom:438.133333pt;}
.y11f{bottom:447.133333pt;}
.yf0{bottom:447.466667pt;}
.yd3{bottom:447.800000pt;}
.y38{bottom:450.466667pt;}
.y19{bottom:457.800000pt;}
.y7f{bottom:459.466667pt;}
.y64{bottom:460.133333pt;}
.yd2{bottom:468.466667pt;}
.y37{bottom:471.466667pt;}
.y18{bottom:478.466667pt;}
.yef{bottom:479.133333pt;}
.y11e{bottom:480.506667pt;}
.y63{bottom:480.840000pt;}
.ya1{bottom:488.173333pt;}
.yd1{bottom:490.506667pt;}
.y107{bottom:491.173333pt;}
.y36{bottom:492.173333pt;}
.y17{bottom:499.506667pt;}
.yee{bottom:499.840000pt;}
.y62{bottom:501.840000pt;}
.y7e{bottom:502.173333pt;}
.y11d{bottom:503.173333pt;}
.yd0{bottom:511.173333pt;}
.y35{bottom:513.173333pt;}
.y16{bottom:520.173333pt;}
.yed{bottom:520.506667pt;}
.ya0{bottom:521.173333pt;}
.y106{bottom:521.840000pt;}
.y61{bottom:522.506667pt;}
.y7d{bottom:523.173333pt;}
.y11c{bottom:525.840000pt;}
.ycf{bottom:532.840000pt;}
.y34{bottom:533.840000pt;}
.y9f{bottom:538.840000pt;}
.y15{bottom:540.840000pt;}
.yec{bottom:542.506667pt;}
.y60{bottom:543.506667pt;}
.y7c{bottom:544.506667pt;}
.y11b{bottom:548.840000pt;}
.yce{bottom:553.840000pt;}
.y33{bottom:554.840000pt;}
.y105{bottom:559.506667pt;}
.y14{bottom:561.840000pt;}
.yeb{bottom:563.173333pt;}
.y9e{bottom:563.506667pt;}
.y5f{bottom:564.173333pt;}
.y7b{bottom:565.840000pt;}
.y32{bottom:575.506667pt;}
.y104{bottom:580.173333pt;}
.y11a{bottom:582.173333pt;}
.y13{bottom:582.506667pt;}
.yea{bottom:585.173333pt;}
.y7a{bottom:587.200000pt;}
.y9d{bottom:587.866667pt;}
.y5e{bottom:595.866667pt;}
.y31{bottom:596.200000pt;}
.ycd{bottom:596.866667pt;}
.y103{bottom:601.200000pt;}
.y12{bottom:603.533333pt;}
.y119{bottom:604.866667pt;}
.ye9{bottom:605.866667pt;}
.y79{bottom:608.533333pt;}
.y9c{bottom:612.533333pt;}
.y5d{bottom:616.533333pt;}
.y30{bottom:617.200000pt;}
.ycc{bottom:619.533333pt;}
.y11{bottom:624.200000pt;}
.ye8{bottom:627.533333pt;}
.y78{bottom:629.533333pt;}
.y102{bottom:632.533333pt;}
.y9b{bottom:637.200000pt;}
.y2f{bottom:637.866667pt;}
.y5c{bottom:638.200000pt;}
.ycb{bottom:640.200000pt;}
.y10{bottom:645.200000pt;}
.ye7{bottom:648.533333pt;}
.y118{bottom:650.200000pt;}
.y77{bottom:650.866667pt;}
.y101{bottom:653.533333pt;}
.y2e{bottom:658.866667pt;}
.y5b{bottom:660.200000pt;}
.y9a{bottom:661.866667pt;}
.yca{bottom:662.200000pt;}
.yb4{bottom:664.533333pt;}
.yf{bottom:665.866667pt;}
.ye6{bottom:669.200000pt;}
.y76{bottom:672.200000pt;}
.y2d{bottom:679.533333pt;}
.y5a{bottom:680.866667pt;}
.yc9{bottom:682.866667pt;}
.y117{bottom:683.533333pt;}
.y100{bottom:684.866667pt;}
.yb3{bottom:685.533333pt;}
.y99{bottom:686.533333pt;}
.ye{bottom:686.866667pt;}
.ye5{bottom:691.226667pt;}
.y75{bottom:693.560000pt;}
.ya3{bottom:699.626667pt;}
.y2c{bottom:700.573333pt;}
.y59{bottom:702.906667pt;}
.yc8{bottom:704.226667pt;}
.yff{bottom:705.906667pt;}
.yb2{bottom:706.226667pt;}
.yd{bottom:707.560000pt;}
.y98{bottom:710.893333pt;}
.ye4{bottom:711.906667pt;}
.y74{bottom:714.893333pt;}
.y2b{bottom:721.226667pt;}
.y58{bottom:723.560000pt;}
.yb1{bottom:727.226667pt;}
.yc{bottom:728.226667pt;}
.y116{bottom:728.893333pt;}
.yc7{bottom:732.893333pt;}
.y97{bottom:735.560000pt;}
.y73{bottom:735.893333pt;}
.yfe{bottom:737.226667pt;}
.y2a{bottom:741.893333pt;}
.y57{bottom:745.226667pt;}
.yb0{bottom:747.893333pt;}
.yb{bottom:749.226667pt;}
.y115{bottom:751.560000pt;}
.ye3{bottom:754.560000pt;}
.y72{bottom:757.226667pt;}
.yfd{bottom:757.893333pt;}
.y96{bottom:760.226667pt;}
.y56{bottom:766.226667pt;}
.yaf{bottom:768.560000pt;}
.ya{bottom:769.893333pt;}
.y29{bottom:775.226667pt;}
.ya2{bottom:775.626667pt;}
.y70{bottom:778.573333pt;}
.y95{bottom:784.906667pt;}
.y114{bottom:785.226667pt;}
.y55{bottom:786.893333pt;}
.yc6{bottom:788.893333pt;}
.yae{bottom:789.560000pt;}
.y9{bottom:790.893333pt;}
.ye2{bottom:797.266667pt;}
.y6f{bottom:799.933333pt;}
.y113{bottom:807.933333pt;}
.y94{bottom:809.600000pt;}
.yad{bottom:810.266667pt;}
.y28{bottom:810.600000pt;}
.y8{bottom:811.600000pt;}
.ye1{bottom:817.933333pt;}
.y54{bottom:819.600000pt;}
.y6d{bottom:821.266667pt;}
.y112{bottom:830.600000pt;}
.yac{bottom:831.266667pt;}
.y27{bottom:831.600000pt;}
.y93{bottom:833.933333pt;}
.yc5{bottom:834.266667pt;}
.y53{bottom:840.266667pt;}
.y6a{bottom:842.266667pt;}
.y7{bottom:844.933333pt;}
.ye0{bottom:850.600000pt;}
.yab{bottom:851.933333pt;}
.yc4{bottom:856.933333pt;}
.y52{bottom:861.266667pt;}
.y26{bottom:862.933333pt;}
.y111{bottom:863.933333pt;}
.ydf{bottom:871.266667pt;}
.yaa{bottom:872.933333pt;}
.y92{bottom:875.933333pt;}
.y6{bottom:879.266667pt;}
.yc3{bottom:879.600000pt;}
.y51{bottom:881.933333pt;}
.y25{bottom:883.933333pt;}
.y69{bottom:884.600000pt;}
.y110{bottom:886.600000pt;}
.y91{bottom:889.933333pt;}
.ya9{bottom:893.600000pt;}
.yc1{bottom:898.933333pt;}
.y50{bottom:902.626667pt;}
.y68{bottom:904.293333pt;}
.y23{bottom:904.626667pt;}
.y10f{bottom:909.293333pt;}
.y24{bottom:909.960000pt;}
.y5{bottom:913.293333pt;}
.ya8{bottom:914.626667pt;}
.y67{bottom:918.626667pt;}
.y4f{bottom:923.626667pt;}
.yde{bottom:924.293333pt;}
.y21{bottom:925.626667pt;}
.y22{bottom:930.960000pt;}
.y10e{bottom:939.960000pt;}
.y66{bottom:942.293333pt;}
.y4e{bottom:944.960000pt;}
.y20{bottom:946.293333pt;}
.y1{bottom:1015.666667pt;}
.h13{height:18.666667pt;}
.h17{height:18.986667pt;}
.h10{height:19.000000pt;}
.h15{height:19.020000pt;}
.h16{height:19.033333pt;}
.h3{height:19.333333pt;}
.h1a{height:21.333333pt;}
.h1d{height:21.366667pt;}
.h1e{height:21.653333pt;}
.h19{height:21.666667pt;}
.h1c{height:21.686667pt;}
.h9{height:30.045573pt;}
.hb{height:32.356771pt;}
.hc{height:34.570312pt;}
.h22{height:34.667969pt;}
.h21{height:36.380208pt;}
.h1b{height:36.875000pt;}
.h14{height:36.979167pt;}
.h11{height:37.041667pt;}
.hd{height:46.223958pt;}
.h18{height:46.394583pt;}
.h12{height:46.447917pt;}
.h6{height:50.846354pt;}
.h8{height:50.932292pt;}
.ha{height:51.378906pt;}
.h25{height:51.485573pt;}
.he{height:53.690104pt;}
.h2{height:55.468750pt;}
.h1{height:55.625000pt;}
.h23{height:58.523438pt;}
.hf{height:60.300089pt;}
.h7{height:61.072917pt;}
.h5{height:64.531250pt;}
.h1f{height:65.781915pt;}
.h26{height:73.750000pt;}
.h24{height:76.745567pt;}
.h4{height:82.968750pt;}
.h20{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:8.666667pt;}
.wf{width:17.000000pt;}
.w9{width:47.000000pt;}
.wa{width:47.033333pt;}
.wb{width:60.700000pt;}
.w5{width:87.033333pt;}
.w7{width:113.033333pt;}
.w6{width:166.733333pt;}
.wc{width:196.733333pt;}
.w4{width:250.106667pt;}
.w8{width:259.800000pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.we{width:1055.999984pt;}
.wd{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.000000pt;}
.x2{left:96.033321pt;}
.xc{left:100.033333pt;}
.x9{left:101.033321pt;}
.xa{left:120.066655pt;}
.xb{left:144.066655pt;}
.x8{left:288.133321pt;}
.x1{left:318.466655pt;}
.xd{left:351.133333pt;}
.x4{left:353.799976pt;}
.x5{left:358.506655pt;}
.x10{left:361.840000pt;}
.x11{left:410.840000pt;}
.xe{left:439.533333pt;}
.x12{left:459.866667pt;}
.x14{left:522.573333pt;}
.x15{left:558.506651pt;}
.xf{left:607.600000pt;}
.x6{left:621.266642pt;}
.x7{left:625.933321pt;}
.x1b{left:700.293321pt;}
.x1a{left:703.306667pt;}
.x3{left:711.640000pt;}
.x19{left:943.306667pt;}
.x16{left:951.640000pt;}
.x18{left:955.293318pt;}
.x17{left:969.639984pt;}
}




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