
    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_487c85b962ae5343e85c62a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8dc37b6b57426764a69fee1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114258;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_76a3dad5ea8aa8132687106e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_b4b68418187258c0c41a57ef.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_678c02c71c89a718207b3a0a.woff2')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_8ead5d5d1bfdf9f759fa2fd7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_440dcd78f3271a4b22ca39d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bce4d83d1630a70096f4eeea.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a613d6e8de3896c851d1d0ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_81f876a9d1c8ea576fa155ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_481815b96adba3f0a1a25da7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_8e87883a2a4e0dcc4e916830.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_ce9d9d0b08e7da38ab79d0ca.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4d0b2a94a95b889818df5ad0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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_d9f5e829872491fc61f067eb.woff2')format("woff");}.fff{font-family:fff;line-height:0.940918;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_e1a96272eb9dba228f5ccc94.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_42e9569938e5e02e97fdf4ca.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940918;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.229800px;}
.ls1{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.172200px;}
.ls6{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.123000px;}
.lsa{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.177600px;}
.ls2{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.509760px;}
.ls17{letter-spacing:0.576000px;}
.lsd{letter-spacing:12.384000px;}
.ls7{letter-spacing:19.781280px;}
.ls13{letter-spacing:33.264000px;}
.ls4{letter-spacing:62.045760px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws0{word-spacing:-39.659760px;}
.ws1{word-spacing:-26.784000px;}
.ws5{word-spacing:-19.161240px;}
.ws4{word-spacing:-18.866040px;}
.ws9{word-spacing:-18.808440px;}
.wsf{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.272000px;}
.wse{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.ws10{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.408000px;}
.wsb{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-15.830640px;}
._2{margin-left:-13.571280px;}
._9{margin-left:-10.701360px;}
._0{margin-left:-6.851520px;}
._5{margin-left:-5.391360px;}
._8{margin-left:-3.861360px;}
._4{margin-left:-2.214000px;}
._3{margin-left:-1.125360px;}
._1{width:1.449360px;}
._12{width:2.463840px;}
._d{width:3.528000px;}
._f{width:4.680000px;}
._e{width:5.719200px;}
._17{width:6.777360px;}
._18{width:7.788960px;}
._19{width:8.959680px;}
._c{width:10.422000px;}
._b{width:11.808000px;}
._14{width:12.898800px;}
._13{width:14.022000px;}
._1c{width:15.053280px;}
._1e{width:16.395120px;}
._1d{width:17.629200px;}
._1a{width:19.322640px;}
._1b{width:20.745360px;}
._1f{width:22.698720px;}
._11{width:24.048000px;}
._10{width:25.344000px;}
._22{width:26.694000px;}
._29{width:27.705360px;}
._21{width:28.728000px;}
._20{width:30.456000px;}
._23{width:31.518000px;}
._16{width:32.760000px;}
._15{width:33.768000px;}
._25{width:34.806000px;}
._28{width:36.539280px;}
._27{width:38.349360px;}
._24{width:41.184000px;}
._26{width:42.956640px;}
._2a{width:46.268640px;}
._2c{width:119.238240px;}
._2b{width:120.600000px;}
._a{width:196.104000px;}
._2d{width:846.156000px;}
._6{width:847.884000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y45{bottom:6.660000px;}
.y73{bottom:13.140000px;}
.y41{bottom:16.020000px;}
.y75{bottom:16.200000px;}
.ye6{bottom:17.100000px;}
.y5a{bottom:24.474000px;}
.yb9{bottom:24.480000px;}
.y53{bottom:24.660000px;}
.y85{bottom:24.705000px;}
.y44{bottom:27.720000px;}
.y81{bottom:35.100000px;}
.y84{bottom:35.145000px;}
.y77{bottom:35.280000px;}
.y59{bottom:45.534000px;}
.y5d{bottom:45.720000px;}
.y52{bottom:45.765000px;}
.y43{bottom:48.780000px;}
.y7d{bottom:56.160000px;}
.y87{bottom:56.340000px;}
.y13{bottom:57.780000px;}
.y58{bottom:66.594000px;}
.y62{bottom:66.780000px;}
.y5c{bottom:66.810000px;}
.y51{bottom:66.825000px;}
.y7c{bottom:77.220000px;}
.y88{bottom:77.400000px;}
.y57{bottom:87.654000px;}
.y7f{bottom:87.840000px;}
.y50{bottom:87.885000px;}
.y12{bottom:97.776000px;}
.y61{bottom:105.840000px;}
.y56{bottom:108.714000px;}
.y4f{bottom:108.765000px;}
.y7e{bottom:108.900000px;}
.y60{bottom:126.900000px;}
.y55{bottom:129.774000px;}
.y4e{bottom:129.825000px;}
.y54{bottom:133.776000px;}
.yb4{bottom:147.636000px;}
.y5f{bottom:147.960000px;}
.y9c{bottom:150.870000px;}
.y4d{bottom:150.885000px;}
.y12f{bottom:154.470000px;}
.y115{bottom:156.450000px;}
.y37{bottom:156.990000px;}
.ye3{bottom:162.570000px;}
.yd5{bottom:163.470000px;}
.y89{bottom:169.410000px;}
.y4c{bottom:171.945000px;}
.yb3{bottom:180.570000px;}
.yeb{bottom:183.090000px;}
.y9b{bottom:183.810000px;}
.y12e{bottom:187.410000px;}
.y114{bottom:189.390000px;}
.y36{bottom:189.930000px;}
.yc4{bottom:192.450000px;}
.y4b{bottom:193.005000px;}
.ye2{bottom:195.510000px;}
.yd4{bottom:196.410000px;}
.y86{bottom:207.750000px;}
.yfe{bottom:211.710000px;}
.yb2{bottom:213.510000px;}
.y9a{bottom:216.930000px;}
.y12d{bottom:220.350000px;}
.y113{bottom:222.330000px;}
.y35{bottom:222.870000px;}
.yc3{bottom:225.390000px;}
.ye1{bottom:228.450000px;}
.yd3{bottom:229.350000px;}
.y4a{bottom:232.065000px;}
.yea{bottom:240.870000px;}
.yfd{bottom:244.650000px;}
.yb1{bottom:246.450000px;}
.y162{bottom:249.330000px;}
.y49{bottom:253.125000px;}
.y12c{bottom:253.290000px;}
.y10{bottom:253.650000px;}
.y14d{bottom:254.910000px;}
.y112{bottom:255.270000px;}
.y34{bottom:255.810000px;}
.yc2{bottom:258.510000px;}
.y142{bottom:261.030000px;}
.ye0{bottom:261.390000px;}
.y99{bottom:267.870000px;}
.y48{bottom:274.185000px;}
.yfc{bottom:277.590000px;}
.y138{bottom:278.490000px;}
.yb0{bottom:279.390000px;}
.yd2{bottom:280.290000px;}
.y12b{bottom:286.230000px;}
.y33{bottom:288.930000px;}
.y71{bottom:290.550000px;}
.yc1{bottom:291.450000px;}
.ydf{bottom:294.330000px;}
.y47{bottom:295.245000px;}
.y46{bottom:296.850000px;}
.ye9{bottom:298.650000px;}
.y98{bottom:300.810000px;}
.y161{bottom:301.710000px;}
.yf{bottom:304.590000px;}
.y14c{bottom:305.850000px;}
.y111{bottom:306.210000px;}
.yfb{bottom:310.530000px;}
.y141{bottom:311.610000px;}
.yaf{bottom:312.330000px;}
.yd1{bottom:313.230000px;}
.y137{bottom:315.750000px;}
.y12a{bottom:319.170000px;}
.y32{bottom:321.870000px;}
.yc0{bottom:324.390000px;}
.yde{bottom:327.270000px;}
.y171{bottom:327.450000px;}
.y83{bottom:328.890000px;}
.y97{bottom:333.750000px;}
.y160{bottom:334.650000px;}
.y14b{bottom:338.835000px;}
.y110{bottom:339.195000px;}
.y159{bottom:340.635000px;}
.y70{bottom:341.535000px;}
.yfa{bottom:343.515000px;}
.y140{bottom:344.595000px;}
.yae{bottom:345.315000px;}
.y129{bottom:352.155000px;}
.y31{bottom:354.855000px;}
.ye{bottom:356.295000px;}
.ye8{bottom:356.475000px;}
.ydd{bottom:360.255000px;}
.yd0{bottom:364.215000px;}
.y96{bottom:366.735000px;}
.y15f{bottom:367.635000px;}
.y14a{bottom:371.775000px;}
.y6f{bottom:374.475000px;}
.ybf{bottom:375.375000px;}
.yf9{bottom:376.455000px;}
.y13f{bottom:377.535000px;}
.yad{bottom:378.255000px;}
.y170{bottom:378.615000px;}
.y128{bottom:385.095000px;}
.y10f{bottom:390.135000px;}
.y158{bottom:391.575000px;}
.yd{bottom:392.655000px;}
.ydc{bottom:393.195000px;}
.ycf{bottom:397.155000px;}
.y95{bottom:399.675000px;}
.y15e{bottom:400.575000px;}
.y30{bottom:405.795000px;}
.y6e{bottom:407.415000px;}
.y82{bottom:407.775000px;}
.y13e{bottom:410.475000px;}
.yac{bottom:411.195000px;}
.y16f{bottom:411.555000px;}
.ybe{bottom:413.895000px;}
.ye7{bottom:414.255000px;}
.y149{bottom:422.715000px;}
.y10e{bottom:423.255000px;}
.y157{bottom:424.515000px;}
.yf8{bottom:427.395000px;}
.yc{bottom:428.835000px;}
.y11b{bottom:429.195000px;}
.yce{bottom:430.275000px;}
.y136{bottom:432.615000px;}
.y15d{bottom:433.515000px;}
.y127{bottom:436.035000px;}
.y2f{bottom:438.735000px;}
.y6d{bottom:440.535000px;}
.y13d{bottom:443.415000px;}
.y153{bottom:443.595000px;}
.yab{bottom:444.135000px;}
.y16e{bottom:444.495000px;}
.y94{bottom:450.615000px;}
.y10d{bottom:456.195000px;}
.yf7{bottom:460.335000px;}
.y11a{bottom:462.135000px;}
.ycd{bottom:463.215000px;}
.yb{bottom:465.015000px;}
.y135{bottom:465.555000px;}
.y126{bottom:468.975000px;}
.y2e{bottom:471.675000px;}
.y148{bottom:473.835000px;}
.ye5{bottom:474.735000px;}
.y156{bottom:475.455000px;}
.y13c{bottom:476.355000px;}
.y152{bottom:476.535000px;}
.yaa{bottom:477.255000px;}
.y16d{bottom:477.435000px;}
.y93{bottom:483.555000px;}
.y15c{bottom:484.455000px;}
.y6c{bottom:491.475000px;}
.yf6{bottom:493.275000px;}
.y119{bottom:495.255000px;}
.ycc{bottom:496.155000px;}
.y168{bottom:496.695000px;}
.y147{bottom:497.235000px;}
.ya{bottom:501.195000px;}
.y125{bottom:502.095000px;}
.y2d{bottom:504.615000px;}
.y10c{bottom:507.135000px;}
.y13b{bottom:509.295000px;}
.ya9{bottom:510.195000px;}
.y16c{bottom:510.375000px;}
.y92{bottom:516.495000px;}
.ye4{bottom:520.275000px;}
.y6b{bottom:524.415000px;}
.yf5{bottom:526.395000px;}
.y155{bottom:526.575000px;}
.y151{bottom:527.655000px;}
.y118{bottom:528.195000px;}
.y80{bottom:528.735000px;}
.ycb{bottom:529.095000px;}
.y124{bottom:535.035000px;}
.y15b{bottom:535.575000px;}
.y9{bottom:537.555000px;}
.y10b{bottom:540.075000px;}
.ya8{bottom:543.135000px;}
.y167{bottom:547.635000px;}
.y146{bottom:548.175000px;}
.y91{bottom:549.435000px;}
.ybd{bottom:550.515000px;}
.y6a{bottom:557.355000px;}
.yf4{bottom:559.335000px;}
.y13a{bottom:560.415000px;}
.ydb{bottom:561.135000px;}
.y16b{bottom:561.315000px;}
.yca{bottom:562.035000px;}
.y123{bottom:567.975000px;}
.y2c{bottom:570.495000px;}
.y154{bottom:571.575000px;}
.y10a{bottom:573.015000px;}
.y8{bottom:574.815000px;}
.ya7{bottom:576.075000px;}
.y150{bottom:578.595000px;}
.y15a{bottom:580.575000px;}
.y145{bottom:581.115000px;}
.y134{bottom:582.555000px;}
.y69{bottom:590.295000px;}
.yf3{bottom:592.275000px;}
.yda{bottom:594.075000px;}
.y139{bottom:599.295000px;}
.y90{bottom:600.555000px;}
.y122{bottom:600.915000px;}
.y2b{bottom:603.435000px;}
.y7b{bottom:607.605000px;}
.y16a{bottom:612.285000px;}
.y166{bottom:613.545000px;}
.yc9{bottom:615.525000px;}
.y68{bottom:623.265000px;}
.y14f{bottom:623.445000px;}
.y109{bottom:623.985000px;}
.yf2{bottom:625.245000px;}
.ya6{bottom:627.045000px;}
.y42{bottom:627.945000px;}
.ybc{bottom:629.385000px;}
.y7{bottom:631.725000px;}
.y144{bottom:632.085000px;}
.y8f{bottom:633.525000px;}
.y121{bottom:633.885000px;}
.y2a{bottom:636.585000px;}
.y67{bottom:656.205000px;}
.y108{bottom:656.925000px;}
.y169{bottom:657.285000px;}
.yf1{bottom:658.185000px;}
.ya5{bottom:659.985000px;}
.y165{bottom:664.485000px;}
.y8e{bottom:666.465000px;}
.y120{bottom:666.825000px;}
.y29{bottom:669.525000px;}
.y1d{bottom:675.285000px;}
.y143{bottom:677.265000px;}
.y133{bottom:684.465000px;}
.y66{bottom:689.145000px;}
.y107{bottom:689.865000px;}
.yf0{bottom:691.125000px;}
.y6{bottom:692.025000px;}
.ya4{bottom:692.925000px;}
.y40{bottom:694.545000px;}
.y8d{bottom:699.405000px;}
.y11f{bottom:699.765000px;}
.y28{bottom:702.465000px;}
.ybb{bottom:708.225000px;}
.y164{bottom:715.605000px;}
.y132{bottom:717.405000px;}
.y65{bottom:722.085000px;}
.y106{bottom:722.805000px;}
.ya3{bottom:725.865000px;}
.y1c{bottom:726.405000px;}
.y27{bottom:735.405000px;}
.yef{bottom:742.065000px;}
.y7a{bottom:749.625000px;}
.y8c{bottom:750.345000px;}
.y11e{bottom:753.225000px;}
.y64{bottom:755.205000px;}
.y105{bottom:755.925000px;}
.ya2{bottom:758.805000px;}
.y163{bottom:760.605000px;}
.y5{bottom:761.865000px;}
.y26{bottom:768.345000px;}
.y117{bottom:776.805000px;}
.y1b{bottom:777.345000px;}
.yba{bottom:787.065000px;}
.ya1{bottom:791.925000px;}
.y63{bottom:793.545000px;}
.y25{bottom:801.285000px;}
.y131{bottom:803.805000px;}
.y104{bottom:806.865000px;}
.y116{bottom:809.925000px;}
.ya0{bottom:824.865000px;}
.y1a{bottom:828.285000px;}
.y79{bottom:828.465000px;}
.y24{bottom:834.225000px;}
.y4{bottom:837.285000px;}
.y103{bottom:839.805000px;}
.yd9{bottom:842.865000px;}
.yb8{bottom:845.025000px;}
.y9f{bottom:857.805000px;}
.y3f{bottom:867.165000px;}
.y102{bottom:872.790000px;}
.yd8{bottom:875.850000px;}
.y19{bottom:879.270000px;}
.y23{bottom:885.210000px;}
.y9e{bottom:890.790000px;}
.y5e{bottom:893.490000px;}
.y8b{bottom:900.150000px;}
.yb7{bottom:905.370000px;}
.y101{bottom:905.730000px;}
.y78{bottom:907.350000px;}
.yd7{bottom:908.790000px;}
.y3{bottom:912.930000px;}
.y22{bottom:918.150000px;}
.y3e{bottom:920.670000px;}
.y9d{bottom:923.730000px;}
.y18{bottom:930.210000px;}
.yc8{bottom:933.270000px;}
.yd6{bottom:941.730000px;}
.yb6{bottom:948.750000px;}
.y21{bottom:951.270000px;}
.y8a{bottom:953.610000px;}
.y100{bottom:956.670000px;}
.yc7{bottom:966.210000px;}
.y3d{bottom:974.670000px;}
.y2{bottom:977.730000px;}
.y17{bottom:981.150000px;}
.y20{bottom:984.210000px;}
.y76{bottom:986.190000px;}
.yff{bottom:989.610000px;}
.yc6{bottom:999.150000px;}
.y3c{bottom:1007.610000px;}
.y1f{bottom:1017.150000px;}
.yb5{bottom:1022.550000px;}
.y1{bottom:1028.670000px;}
.y16{bottom:1032.090000px;}
.yee{bottom:1039.650000px;}
.y3b{bottom:1040.550000px;}
.y1e{bottom:1050.090000px;}
.yc5{bottom:1052.430000px;}
.y130{bottom:1055.490000px;}
.y74{bottom:1067.730000px;}
.y3a{bottom:1073.490000px;}
.y5b{bottom:1074.570000px;}
.yed{bottom:1078.710000px;}
.y15{bottom:1083.030000px;}
.yec{bottom:1098.690000px;}
.y39{bottom:1106.430000px;}
.y72{bottom:1111.110000px;}
.y11d{bottom:1123.890000px;}
.y14{bottom:1136.490000px;}
.y14e{bottom:1137.960000px;}
.y38{bottom:1139.580000px;}
.y11c{bottom:1142.280000px;}
.y11{bottom:1177.380000px;}
.hb{height:39.960000px;}
.h1f{height:42.120000px;}
.h14{height:45.576000px;}
.h8{height:52.260820px;}
.h21{height:54.914062px;}
.h1a{height:56.916000px;}
.h1b{height:57.060000px;}
.h20{height:57.096000px;}
.hf{height:59.439023px;}
.hc{height:61.189805px;}
.hd{height:63.180000px;}
.h2{height:71.613281px;}
.h1e{height:71.824219px;}
.h1d{height:73.722656px;}
.h1c{height:74.004654px;}
.h19{height:74.953125px;}
.h6{height:75.519844px;}
.h15{height:78.120000px;}
.h16{height:78.156000px;}
.h22{height:79.620469px;}
.h11{height:81.216000px;}
.h9{height:86.255508px;}
.h7{height:86.585445px;}
.ha{height:87.695156px;}
.h5{height:92.505818px;}
.h13{height:99.216000px;}
.h4{height:112.429688px;}
.h18{height:120.240000px;}
.h3{height:123.396328px;}
.h17{height:141.300000px;}
.h10{height:162.180000px;}
.h12{height:180.360000px;}
.he{height:327.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:92.016000px;}
.wc{width:92.160000px;}
.wa{width:106.200000px;}
.wb{width:127.656000px;}
.w7{width:159.300000px;}
.w6{width:159.510000px;}
.w4{width:161.850000px;}
.w9{width:212.610000px;}
.w8{width:265.710000px;}
.w5{width:475.995000px;}
.w3{width:637.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x25{left:9.360000px;}
.x10{left:10.620000px;}
.x21{left:11.880000px;}
.x24{left:12.960000px;}
.x3a{left:15.120000px;}
.xd{left:17.100000px;}
.x33{left:18.900000px;}
.x19{left:20.340000px;}
.xc{left:22.140000px;}
.x29{left:24.660000px;}
.x3e{left:26.460000px;}
.x1a{left:29.190000px;}
.x28{left:30.600000px;}
.x12{left:31.854000px;}
.x1f{left:32.940000px;}
.x1b{left:34.740000px;}
.x1d{left:36.180000px;}
.x20{left:39.600000px;}
.x1c{left:40.860000px;}
.x23{left:41.940000px;}
.x18{left:43.740000px;}
.x14{left:46.080000px;}
.x22{left:47.160000px;}
.x1e{left:48.420000px;}
.x17{left:50.625000px;}
.x26{left:53.640000px;}
.x36{left:56.154000px;}
.x11{left:57.234000px;}
.x15{left:60.510000px;}
.x32{left:65.205000px;}
.xe{left:69.474000px;}
.x35{left:73.650000px;}
.x27{left:79.554000px;}
.x34{left:95.034000px;}
.x30{left:103.494000px;}
.x1{left:127.655987px;}
.x5{left:130.715987px;}
.x8{left:133.055987px;}
.x9{left:136.835987px;}
.x42{left:141.155987px;}
.x2a{left:144.755987px;}
.x2b{left:146.015987px;}
.x2c{left:151.229987px;}
.x6{left:153.749987px;}
.x2e{left:160.229987px;}
.x7{left:170.489987px;}
.x37{left:181.649987px;}
.x44{left:198.389987px;}
.x3{left:201.449987px;}
.x38{left:233.850000px;}
.x47{left:270.029987px;}
.x2f{left:276.509987px;}
.x13{left:287.175000px;}
.xf{left:289.515000px;}
.x43{left:292.214987px;}
.x49{left:295.094987px;}
.x2{left:353.234987px;}
.x46{left:357.374987px;}
.x39{left:361.515000px;}
.x2d{left:379.874987px;}
.x31{left:393.375000px;}
.x40{left:416.594987px;}
.x4{left:446.474987px;}
.x3b{left:489.165000px;}
.xa{left:508.964987px;}
.x3c{left:581.325000px;}
.x16{left:605.985000px;}
.x3d{left:673.350000px;}
.x3f{left:689.549987px;}
.x48{left:722.669987px;}
.x45{left:726.269987px;}
.x41{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.204267pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.153067pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.109333pt;}
.lsa{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.157867pt;}
.ls2{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.453120pt;}
.ls17{letter-spacing:0.512000pt;}
.lsd{letter-spacing:11.008000pt;}
.ls7{letter-spacing:17.583360pt;}
.ls13{letter-spacing:29.568000pt;}
.ls4{letter-spacing:55.151787pt;}
.ws2{word-spacing:-74.880000pt;}
.ws0{word-spacing:-35.253120pt;}
.ws1{word-spacing:-23.808000pt;}
.ws5{word-spacing:-17.032213pt;}
.ws4{word-spacing:-16.769813pt;}
.ws9{word-spacing:-16.718613pt;}
.wsf{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws10{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.696000pt;}
.wsb{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-14.071680pt;}
._2{margin-left:-12.063360pt;}
._9{margin-left:-9.512320pt;}
._0{margin-left:-6.090240pt;}
._5{margin-left:-4.792320pt;}
._8{margin-left:-3.432320pt;}
._4{margin-left:-1.968000pt;}
._3{margin-left:-1.000320pt;}
._1{width:1.288320pt;}
._12{width:2.190080pt;}
._d{width:3.136000pt;}
._f{width:4.160000pt;}
._e{width:5.083733pt;}
._17{width:6.024320pt;}
._18{width:6.923520pt;}
._19{width:7.964160pt;}
._c{width:9.264000pt;}
._b{width:10.496000pt;}
._14{width:11.465600pt;}
._13{width:12.464000pt;}
._1c{width:13.380693pt;}
._1e{width:14.573440pt;}
._1d{width:15.670400pt;}
._1a{width:17.175680pt;}
._1b{width:18.440320pt;}
._1f{width:20.176640pt;}
._11{width:21.376000pt;}
._10{width:22.528000pt;}
._22{width:23.728000pt;}
._29{width:24.626987pt;}
._21{width:25.536000pt;}
._20{width:27.072000pt;}
._23{width:28.016000pt;}
._16{width:29.120000pt;}
._15{width:30.016000pt;}
._25{width:30.938667pt;}
._28{width:32.479360pt;}
._27{width:34.088320pt;}
._24{width:36.608000pt;}
._26{width:38.183680pt;}
._2a{width:41.127680pt;}
._2c{width:105.989547pt;}
._2b{width:107.200000pt;}
._a{width:174.314667pt;}
._2d{width:752.138667pt;}
._6{width:753.674667pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:5.920000pt;}
.y73{bottom:11.680000pt;}
.y41{bottom:14.240000pt;}
.y75{bottom:14.400000pt;}
.ye6{bottom:15.200000pt;}
.y5a{bottom:21.754667pt;}
.yb9{bottom:21.760000pt;}
.y53{bottom:21.920000pt;}
.y85{bottom:21.960000pt;}
.y44{bottom:24.640000pt;}
.y81{bottom:31.200000pt;}
.y84{bottom:31.240000pt;}
.y77{bottom:31.360000pt;}
.y59{bottom:40.474667pt;}
.y5d{bottom:40.640000pt;}
.y52{bottom:40.680000pt;}
.y43{bottom:43.360000pt;}
.y7d{bottom:49.920000pt;}
.y87{bottom:50.080000pt;}
.y13{bottom:51.360000pt;}
.y58{bottom:59.194667pt;}
.y62{bottom:59.360000pt;}
.y5c{bottom:59.386667pt;}
.y51{bottom:59.400000pt;}
.y7c{bottom:68.640000pt;}
.y88{bottom:68.800000pt;}
.y57{bottom:77.914667pt;}
.y7f{bottom:78.080000pt;}
.y50{bottom:78.120000pt;}
.y12{bottom:86.912000pt;}
.y61{bottom:94.080000pt;}
.y56{bottom:96.634667pt;}
.y4f{bottom:96.680000pt;}
.y7e{bottom:96.800000pt;}
.y60{bottom:112.800000pt;}
.y55{bottom:115.354667pt;}
.y4e{bottom:115.400000pt;}
.y54{bottom:118.912000pt;}
.yb4{bottom:131.232000pt;}
.y5f{bottom:131.520000pt;}
.y9c{bottom:134.106667pt;}
.y4d{bottom:134.120000pt;}
.y12f{bottom:137.306667pt;}
.y115{bottom:139.066667pt;}
.y37{bottom:139.546667pt;}
.ye3{bottom:144.506667pt;}
.yd5{bottom:145.306667pt;}
.y89{bottom:150.586667pt;}
.y4c{bottom:152.840000pt;}
.yb3{bottom:160.506667pt;}
.yeb{bottom:162.746667pt;}
.y9b{bottom:163.386667pt;}
.y12e{bottom:166.586667pt;}
.y114{bottom:168.346667pt;}
.y36{bottom:168.826667pt;}
.yc4{bottom:171.066667pt;}
.y4b{bottom:171.560000pt;}
.ye2{bottom:173.786667pt;}
.yd4{bottom:174.586667pt;}
.y86{bottom:184.666667pt;}
.yfe{bottom:188.186667pt;}
.yb2{bottom:189.786667pt;}
.y9a{bottom:192.826667pt;}
.y12d{bottom:195.866667pt;}
.y113{bottom:197.626667pt;}
.y35{bottom:198.106667pt;}
.yc3{bottom:200.346667pt;}
.ye1{bottom:203.066667pt;}
.yd3{bottom:203.866667pt;}
.y4a{bottom:206.280000pt;}
.yea{bottom:214.106667pt;}
.yfd{bottom:217.466667pt;}
.yb1{bottom:219.066667pt;}
.y162{bottom:221.626667pt;}
.y49{bottom:225.000000pt;}
.y12c{bottom:225.146667pt;}
.y10{bottom:225.466667pt;}
.y14d{bottom:226.586667pt;}
.y112{bottom:226.906667pt;}
.y34{bottom:227.386667pt;}
.yc2{bottom:229.786667pt;}
.y142{bottom:232.026667pt;}
.ye0{bottom:232.346667pt;}
.y99{bottom:238.106667pt;}
.y48{bottom:243.720000pt;}
.yfc{bottom:246.746667pt;}
.y138{bottom:247.546667pt;}
.yb0{bottom:248.346667pt;}
.yd2{bottom:249.146667pt;}
.y12b{bottom:254.426667pt;}
.y33{bottom:256.826667pt;}
.y71{bottom:258.266667pt;}
.yc1{bottom:259.066667pt;}
.ydf{bottom:261.626667pt;}
.y47{bottom:262.440000pt;}
.y46{bottom:263.866667pt;}
.ye9{bottom:265.466667pt;}
.y98{bottom:267.386667pt;}
.y161{bottom:268.186667pt;}
.yf{bottom:270.746667pt;}
.y14c{bottom:271.866667pt;}
.y111{bottom:272.186667pt;}
.yfb{bottom:276.026667pt;}
.y141{bottom:276.986667pt;}
.yaf{bottom:277.626667pt;}
.yd1{bottom:278.426667pt;}
.y137{bottom:280.666667pt;}
.y12a{bottom:283.706667pt;}
.y32{bottom:286.106667pt;}
.yc0{bottom:288.346667pt;}
.yde{bottom:290.906667pt;}
.y171{bottom:291.066667pt;}
.y83{bottom:292.346667pt;}
.y97{bottom:296.666667pt;}
.y160{bottom:297.466667pt;}
.y14b{bottom:301.186667pt;}
.y110{bottom:301.506667pt;}
.y159{bottom:302.786667pt;}
.y70{bottom:303.586667pt;}
.yfa{bottom:305.346667pt;}
.y140{bottom:306.306667pt;}
.yae{bottom:306.946667pt;}
.y129{bottom:313.026667pt;}
.y31{bottom:315.426667pt;}
.ye{bottom:316.706667pt;}
.ye8{bottom:316.866667pt;}
.ydd{bottom:320.226667pt;}
.yd0{bottom:323.746667pt;}
.y96{bottom:325.986667pt;}
.y15f{bottom:326.786667pt;}
.y14a{bottom:330.466667pt;}
.y6f{bottom:332.866667pt;}
.ybf{bottom:333.666667pt;}
.yf9{bottom:334.626667pt;}
.y13f{bottom:335.586667pt;}
.yad{bottom:336.226667pt;}
.y170{bottom:336.546667pt;}
.y128{bottom:342.306667pt;}
.y10f{bottom:346.786667pt;}
.y158{bottom:348.066667pt;}
.yd{bottom:349.026667pt;}
.ydc{bottom:349.506667pt;}
.ycf{bottom:353.026667pt;}
.y95{bottom:355.266667pt;}
.y15e{bottom:356.066667pt;}
.y30{bottom:360.706667pt;}
.y6e{bottom:362.146667pt;}
.y82{bottom:362.466667pt;}
.y13e{bottom:364.866667pt;}
.yac{bottom:365.506667pt;}
.y16f{bottom:365.826667pt;}
.ybe{bottom:367.906667pt;}
.ye7{bottom:368.226667pt;}
.y149{bottom:375.746667pt;}
.y10e{bottom:376.226667pt;}
.y157{bottom:377.346667pt;}
.yf8{bottom:379.906667pt;}
.yc{bottom:381.186667pt;}
.y11b{bottom:381.506667pt;}
.yce{bottom:382.466667pt;}
.y136{bottom:384.546667pt;}
.y15d{bottom:385.346667pt;}
.y127{bottom:387.586667pt;}
.y2f{bottom:389.986667pt;}
.y6d{bottom:391.586667pt;}
.y13d{bottom:394.146667pt;}
.y153{bottom:394.306667pt;}
.yab{bottom:394.786667pt;}
.y16e{bottom:395.106667pt;}
.y94{bottom:400.546667pt;}
.y10d{bottom:405.506667pt;}
.yf7{bottom:409.186667pt;}
.y11a{bottom:410.786667pt;}
.ycd{bottom:411.746667pt;}
.yb{bottom:413.346667pt;}
.y135{bottom:413.826667pt;}
.y126{bottom:416.866667pt;}
.y2e{bottom:419.266667pt;}
.y148{bottom:421.186667pt;}
.ye5{bottom:421.986667pt;}
.y156{bottom:422.626667pt;}
.y13c{bottom:423.426667pt;}
.y152{bottom:423.586667pt;}
.yaa{bottom:424.226667pt;}
.y16d{bottom:424.386667pt;}
.y93{bottom:429.826667pt;}
.y15c{bottom:430.626667pt;}
.y6c{bottom:436.866667pt;}
.yf6{bottom:438.466667pt;}
.y119{bottom:440.226667pt;}
.ycc{bottom:441.026667pt;}
.y168{bottom:441.506667pt;}
.y147{bottom:441.986667pt;}
.ya{bottom:445.506667pt;}
.y125{bottom:446.306667pt;}
.y2d{bottom:448.546667pt;}
.y10c{bottom:450.786667pt;}
.y13b{bottom:452.706667pt;}
.ya9{bottom:453.506667pt;}
.y16c{bottom:453.666667pt;}
.y92{bottom:459.106667pt;}
.ye4{bottom:462.466667pt;}
.y6b{bottom:466.146667pt;}
.yf5{bottom:467.906667pt;}
.y155{bottom:468.066667pt;}
.y151{bottom:469.026667pt;}
.y118{bottom:469.506667pt;}
.y80{bottom:469.986667pt;}
.ycb{bottom:470.306667pt;}
.y124{bottom:475.586667pt;}
.y15b{bottom:476.066667pt;}
.y9{bottom:477.826667pt;}
.y10b{bottom:480.066667pt;}
.ya8{bottom:482.786667pt;}
.y167{bottom:486.786667pt;}
.y146{bottom:487.266667pt;}
.y91{bottom:488.386667pt;}
.ybd{bottom:489.346667pt;}
.y6a{bottom:495.426667pt;}
.yf4{bottom:497.186667pt;}
.y13a{bottom:498.146667pt;}
.ydb{bottom:498.786667pt;}
.y16b{bottom:498.946667pt;}
.yca{bottom:499.586667pt;}
.y123{bottom:504.866667pt;}
.y2c{bottom:507.106667pt;}
.y154{bottom:508.066667pt;}
.y10a{bottom:509.346667pt;}
.y8{bottom:510.946667pt;}
.ya7{bottom:512.066667pt;}
.y150{bottom:514.306667pt;}
.y15a{bottom:516.066667pt;}
.y145{bottom:516.546667pt;}
.y134{bottom:517.826667pt;}
.y69{bottom:524.706667pt;}
.yf3{bottom:526.466667pt;}
.yda{bottom:528.066667pt;}
.y139{bottom:532.706667pt;}
.y90{bottom:533.826667pt;}
.y122{bottom:534.146667pt;}
.y2b{bottom:536.386667pt;}
.y7b{bottom:540.093333pt;}
.y16a{bottom:544.253333pt;}
.y166{bottom:545.373333pt;}
.yc9{bottom:547.133333pt;}
.y68{bottom:554.013333pt;}
.y14f{bottom:554.173333pt;}
.y109{bottom:554.653333pt;}
.yf2{bottom:555.773333pt;}
.ya6{bottom:557.373333pt;}
.y42{bottom:558.173333pt;}
.ybc{bottom:559.453333pt;}
.y7{bottom:561.533333pt;}
.y144{bottom:561.853333pt;}
.y8f{bottom:563.133333pt;}
.y121{bottom:563.453333pt;}
.y2a{bottom:565.853333pt;}
.y67{bottom:583.293333pt;}
.y108{bottom:583.933333pt;}
.y169{bottom:584.253333pt;}
.yf1{bottom:585.053333pt;}
.ya5{bottom:586.653333pt;}
.y165{bottom:590.653333pt;}
.y8e{bottom:592.413333pt;}
.y120{bottom:592.733333pt;}
.y29{bottom:595.133333pt;}
.y1d{bottom:600.253333pt;}
.y143{bottom:602.013333pt;}
.y133{bottom:608.413333pt;}
.y66{bottom:612.573333pt;}
.y107{bottom:613.213333pt;}
.yf0{bottom:614.333333pt;}
.y6{bottom:615.133333pt;}
.ya4{bottom:615.933333pt;}
.y40{bottom:617.373333pt;}
.y8d{bottom:621.693333pt;}
.y11f{bottom:622.013333pt;}
.y28{bottom:624.413333pt;}
.ybb{bottom:629.533333pt;}
.y164{bottom:636.093333pt;}
.y132{bottom:637.693333pt;}
.y65{bottom:641.853333pt;}
.y106{bottom:642.493333pt;}
.ya3{bottom:645.213333pt;}
.y1c{bottom:645.693333pt;}
.y27{bottom:653.693333pt;}
.yef{bottom:659.613333pt;}
.y7a{bottom:666.333333pt;}
.y8c{bottom:666.973333pt;}
.y11e{bottom:669.533333pt;}
.y64{bottom:671.293333pt;}
.y105{bottom:671.933333pt;}
.ya2{bottom:674.493333pt;}
.y163{bottom:676.093333pt;}
.y5{bottom:677.213333pt;}
.y26{bottom:682.973333pt;}
.y117{bottom:690.493333pt;}
.y1b{bottom:690.973333pt;}
.yba{bottom:699.613333pt;}
.ya1{bottom:703.933333pt;}
.y63{bottom:705.373333pt;}
.y25{bottom:712.253333pt;}
.y131{bottom:714.493333pt;}
.y104{bottom:717.213333pt;}
.y116{bottom:719.933333pt;}
.ya0{bottom:733.213333pt;}
.y1a{bottom:736.253333pt;}
.y79{bottom:736.413333pt;}
.y24{bottom:741.533333pt;}
.y4{bottom:744.253333pt;}
.y103{bottom:746.493333pt;}
.yd9{bottom:749.213333pt;}
.yb8{bottom:751.133333pt;}
.y9f{bottom:762.493333pt;}
.y3f{bottom:770.813333pt;}
.y102{bottom:775.813333pt;}
.yd8{bottom:778.533333pt;}
.y19{bottom:781.573333pt;}
.y23{bottom:786.853333pt;}
.y9e{bottom:791.813333pt;}
.y5e{bottom:794.213333pt;}
.y8b{bottom:800.133333pt;}
.yb7{bottom:804.773333pt;}
.y101{bottom:805.093333pt;}
.y78{bottom:806.533333pt;}
.yd7{bottom:807.813333pt;}
.y3{bottom:811.493333pt;}
.y22{bottom:816.133333pt;}
.y3e{bottom:818.373333pt;}
.y9d{bottom:821.093333pt;}
.y18{bottom:826.853333pt;}
.yc8{bottom:829.573333pt;}
.yd6{bottom:837.093333pt;}
.yb6{bottom:843.333333pt;}
.y21{bottom:845.573333pt;}
.y8a{bottom:847.653333pt;}
.y100{bottom:850.373333pt;}
.yc7{bottom:858.853333pt;}
.y3d{bottom:866.373333pt;}
.y2{bottom:869.093333pt;}
.y17{bottom:872.133333pt;}
.y20{bottom:874.853333pt;}
.y76{bottom:876.613333pt;}
.yff{bottom:879.653333pt;}
.yc6{bottom:888.133333pt;}
.y3c{bottom:895.653333pt;}
.y1f{bottom:904.133333pt;}
.yb5{bottom:908.933333pt;}
.y1{bottom:914.373333pt;}
.y16{bottom:917.413333pt;}
.yee{bottom:924.133333pt;}
.y3b{bottom:924.933333pt;}
.y1e{bottom:933.413333pt;}
.yc5{bottom:935.493333pt;}
.y130{bottom:938.213333pt;}
.y74{bottom:949.093333pt;}
.y3a{bottom:954.213333pt;}
.y5b{bottom:955.173333pt;}
.yed{bottom:958.853333pt;}
.y15{bottom:962.693333pt;}
.yec{bottom:976.613333pt;}
.y39{bottom:983.493333pt;}
.y72{bottom:987.653333pt;}
.y11d{bottom:999.013333pt;}
.y14{bottom:1010.213333pt;}
.y14e{bottom:1011.520000pt;}
.y38{bottom:1012.960000pt;}
.y11c{bottom:1015.360000pt;}
.y11{bottom:1046.560000pt;}
.hb{height:35.520000pt;}
.h1f{height:37.440000pt;}
.h14{height:40.512000pt;}
.h8{height:46.454062pt;}
.h21{height:48.812500pt;}
.h1a{height:50.592000pt;}
.h1b{height:50.720000pt;}
.h20{height:50.752000pt;}
.hf{height:52.834688pt;}
.hc{height:54.390938pt;}
.hd{height:56.160000pt;}
.h2{height:63.656250pt;}
.h1e{height:63.843750pt;}
.h1d{height:65.531250pt;}
.h1c{height:65.781915pt;}
.h19{height:66.625000pt;}
.h6{height:67.128750pt;}
.h15{height:69.440000pt;}
.h16{height:69.472000pt;}
.h22{height:70.773750pt;}
.h11{height:72.192000pt;}
.h9{height:76.671562pt;}
.h7{height:76.964840pt;}
.ha{height:77.951250pt;}
.h5{height:82.227394pt;}
.h13{height:88.192000pt;}
.h4{height:99.937500pt;}
.h18{height:106.880000pt;}
.h3{height:109.685625pt;}
.h17{height:125.600000pt;}
.h10{height:144.160000pt;}
.h12{height:160.320000pt;}
.he{height:291.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:81.792000pt;}
.wc{width:81.920000pt;}
.wa{width:94.400000pt;}
.wb{width:113.472000pt;}
.w7{width:141.600000pt;}
.w6{width:141.786667pt;}
.w4{width:143.866667pt;}
.w9{width:188.986667pt;}
.w8{width:236.186667pt;}
.w5{width:423.106667pt;}
.w3{width:566.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x25{left:8.320000pt;}
.x10{left:9.440000pt;}
.x21{left:10.560000pt;}
.x24{left:11.520000pt;}
.x3a{left:13.440000pt;}
.xd{left:15.200000pt;}
.x33{left:16.800000pt;}
.x19{left:18.080000pt;}
.xc{left:19.680000pt;}
.x29{left:21.920000pt;}
.x3e{left:23.520000pt;}
.x1a{left:25.946667pt;}
.x28{left:27.200000pt;}
.x12{left:28.314667pt;}
.x1f{left:29.280000pt;}
.x1b{left:30.880000pt;}
.x1d{left:32.160000pt;}
.x20{left:35.200000pt;}
.x1c{left:36.320000pt;}
.x23{left:37.280000pt;}
.x18{left:38.880000pt;}
.x14{left:40.960000pt;}
.x22{left:41.920000pt;}
.x1e{left:43.040000pt;}
.x17{left:45.000000pt;}
.x26{left:47.680000pt;}
.x36{left:49.914667pt;}
.x11{left:50.874667pt;}
.x15{left:53.786667pt;}
.x32{left:57.960000pt;}
.xe{left:61.754667pt;}
.x35{left:65.466667pt;}
.x27{left:70.714667pt;}
.x34{left:84.474667pt;}
.x30{left:91.994667pt;}
.x1{left:113.471988pt;}
.x5{left:116.191988pt;}
.x8{left:118.271988pt;}
.x9{left:121.631988pt;}
.x42{left:125.471988pt;}
.x2a{left:128.671988pt;}
.x2b{left:129.791988pt;}
.x2c{left:134.426655pt;}
.x6{left:136.666655pt;}
.x2e{left:142.426655pt;}
.x7{left:151.546655pt;}
.x37{left:161.466655pt;}
.x44{left:176.346655pt;}
.x3{left:179.066655pt;}
.x38{left:207.866667pt;}
.x47{left:240.026655pt;}
.x2f{left:245.786655pt;}
.x13{left:255.266667pt;}
.xf{left:257.346667pt;}
.x43{left:259.746655pt;}
.x49{left:262.306655pt;}
.x2{left:313.986655pt;}
.x46{left:317.666655pt;}
.x39{left:321.346667pt;}
.x2d{left:337.666655pt;}
.x31{left:349.666667pt;}
.x40{left:370.306655pt;}
.x4{left:396.866655pt;}
.x3b{left:434.813333pt;}
.xa{left:452.413322pt;}
.x3c{left:516.733333pt;}
.x16{left:538.653333pt;}
.x3d{left:598.533333pt;}
.x3f{left:612.933322pt;}
.x48{left:642.373322pt;}
.x45{left:645.573322pt;}
.x41{left:680.453322pt;}
}




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