
    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_7e3fa7733176a2ecccdc75ea.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2b56c6fb130e7a1eb8515fe8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1f2582afe30d3fa2e2691fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_aa21e35b7e5a2dc7f883dd8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_93b9cb4062dcac7980ca6313.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_49d3f9694f7b11145cde5fb6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_19310e8285973dda71d2c9a0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4bab8558e3963c19d7545fc0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4890fdeeedd98a7a430070f6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_dabcb6117f85857c7e7744da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_d9d2f07e160c6b3e5a3fce3d.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_d18c09edacbb3cd02caeb862.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_e89ff62660407f3f352fb011.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_73549e3d885ba64b36e7328b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_b6076169e1e148685fc851e0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.854004;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls13{letter-spacing:-1.332000px;}
.ls9{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.177840px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.lsa{letter-spacing:4.500000px;}
.ls15{letter-spacing:16.506720px;}
.lsc{letter-spacing:38.106720px;}
.ls14{letter-spacing:46.026720px;}
.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:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.328000px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._13{margin-left:-5.777520px;}
._4{margin-left:-4.739760px;}
._2{margin-left:-3.246240px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.050000px;}
._1{width:1.224000px;}
._9{width:3.189360px;}
._c{width:5.139360px;}
._10{width:6.186240px;}
._5{width:7.539840px;}
._7{width:9.005040px;}
._6{width:10.416960px;}
._f{width:11.835360px;}
._b{width:12.926880px;}
._11{width:16.640640px;}
._a{width:18.377280px;}
._e{width:19.780560px;}
._d{width:20.856240px;}
._16{width:30.059280px;}
._15{width:31.338000px;}
._8{width:33.138000px;}
._12{width:34.233600px;}
._18{width:36.604080px;}
._17{width:38.067120px;}
._14{width:47.540160px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y46{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y19{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.yaf{bottom:11.880000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.y47{bottom:14.940000px;}
.y4{bottom:17.316000px;}
.y45{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y42{bottom:20.520000px;}
.y18{bottom:29.340000px;}
.yb{bottom:30.060000px;}
.y5{bottom:32.760000px;}
.y41{bottom:37.800000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y1{bottom:53.820000px;}
.y40{bottom:55.080000px;}
.y16{bottom:62.325000px;}
.y3f{bottom:72.180000px;}
.y9{bottom:73.260000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y3e{bottom:89.460000px;}
.y8{bottom:92.910000px;}
.ye0{bottom:98.496000px;}
.y8f{bottom:101.736000px;}
.yab{bottom:104.436000px;}
.y3d{bottom:106.740000px;}
.y13{bottom:106.965000px;}
.y7{bottom:111.270000px;}
.y55{bottom:111.456000px;}
.y11a{bottom:113.076000px;}
.y8e{bottom:119.016000px;}
.yaa{bottom:122.436000px;}
.y3c{bottom:124.020000px;}
.y12{bottom:125.865000px;}
.y54{bottom:128.736000px;}
.y119{bottom:130.176000px;}
.ydf{bottom:133.776000px;}
.y8d{bottom:136.116000px;}
.ya9{bottom:140.436000px;}
.y3b{bottom:141.300000px;}
.y53{bottom:146.016000px;}
.y118{bottom:147.456000px;}
.y11{bottom:151.605000px;}
.yde{bottom:151.770000px;}
.y8c{bottom:153.390000px;}
.ya8{bottom:158.430000px;}
.y3a{bottom:158.580000px;}
.y52{bottom:163.110000px;}
.y126{bottom:163.290000px;}
.y117{bottom:164.730000px;}
.ydd{bottom:169.770000px;}
.y8b{bottom:170.670000px;}
.y39{bottom:175.680000px;}
.y10{bottom:176.085000px;}
.ya7{bottom:176.430000px;}
.y51{bottom:180.390000px;}
.y125{bottom:180.570000px;}
.y116{bottom:182.010000px;}
.y2a{bottom:182.340000px;}
.ydc{bottom:187.770000px;}
.y8a{bottom:187.950000px;}
.y38{bottom:192.960000px;}
.ya6{bottom:194.430000px;}
.y29{bottom:197.640000px;}
.y50{bottom:197.670000px;}
.y115{bottom:199.290000px;}
.y89{bottom:205.230000px;}
.ydb{bottom:205.770000px;}
.y37{bottom:210.240000px;}
.ya5{bottom:212.430000px;}
.y4f{bottom:214.950000px;}
.y28{bottom:215.280000px;}
.y114{bottom:216.570000px;}
.y88{bottom:222.330000px;}
.yda{bottom:223.770000px;}
.y36{bottom:227.550000px;}
.ya4{bottom:230.430000px;}
.y4e{bottom:232.230000px;}
.y27{bottom:232.410000px;}
.y113{bottom:233.670000px;}
.y87{bottom:239.610000px;}
.yd9{bottom:241.770000px;}
.y35{bottom:244.830000px;}
.ya3{bottom:248.430000px;}
.y4d{bottom:249.330000px;}
.y124{bottom:249.510000px;}
.y26{bottom:249.690000px;}
.y112{bottom:250.950000px;}
.y86{bottom:256.890000px;}
.yd8{bottom:259.770000px;}
.y34{bottom:262.110000px;}
.ya2{bottom:266.430000px;}
.y4c{bottom:266.610000px;}
.y123{bottom:266.790000px;}
.y25{bottom:267.510000px;}
.y111{bottom:268.230000px;}
.y85{bottom:274.170000px;}
.yd7{bottom:277.770000px;}
.y33{bottom:279.210000px;}
.y4b{bottom:283.890000px;}
.y122{bottom:284.070000px;}
.ya1{bottom:284.430000px;}
.y24{bottom:284.970000px;}
.y110{bottom:285.510000px;}
.y84{bottom:291.450000px;}
.yd6{bottom:295.770000px;}
.y32{bottom:296.490000px;}
.y4a{bottom:301.170000px;}
.y23{bottom:302.250000px;}
.ya0{bottom:302.430000px;}
.y10f{bottom:302.790000px;}
.y83{bottom:308.730000px;}
.y31{bottom:313.770000px;}
.y49{bottom:318.450000px;}
.y22{bottom:319.710000px;}
.y10e{bottom:320.070000px;}
.y9f{bottom:320.430000px;}
.y82{bottom:325.830000px;}
.y30{bottom:331.050000px;}
.yd5{bottom:331.770000px;}
.y48{bottom:335.730000px;}
.y21{bottom:337.170000px;}
.y10d{bottom:337.215000px;}
.y9e{bottom:338.475000px;}
.y81{bottom:339.915000px;}
.y121{bottom:340.995000px;}
.y2f{bottom:348.330000px;}
.y44{bottom:349.635000px;}
.yd4{bottom:349.815000px;}
.y120{bottom:353.055000px;}
.y20{bottom:354.450000px;}
.y10c{bottom:354.495000px;}
.y9d{bottom:356.475000px;}
.y2e{bottom:365.610000px;}
.y11f{bottom:370.335000px;}
.y10b{bottom:371.775000px;}
.y9c{bottom:374.475000px;}
.y1f{bottom:374.790000px;}
.y1c{bottom:378.975000px;}
.y2d{bottom:382.710000px;}
.yd3{bottom:385.095000px;}
.y11e{bottom:387.615000px;}
.y10a{bottom:389.055000px;}
.y9b{bottom:392.475000px;}
.y2c{bottom:399.990000px;}
.y1e{bottom:402.150000px;}
.yd2{bottom:403.095000px;}
.y11d{bottom:404.715000px;}
.y109{bottom:406.335000px;}
.y9a{bottom:410.475000px;}
.y2b{bottom:417.270000px;}
.y1d{bottom:419.970000px;}
.yd1{bottom:421.095000px;}
.y11c{bottom:421.995000px;}
.y108{bottom:423.615000px;}
.y99{bottom:428.475000px;}
.yd0{bottom:439.095000px;}
.y80{bottom:439.275000px;}
.y107{bottom:440.715000px;}
.y98{bottom:446.475000px;}
.y7f{bottom:456.555000px;}
.y106{bottom:457.995000px;}
.y97{bottom:464.475000px;}
.y7e{bottom:473.835000px;}
.ycf{bottom:474.195000px;}
.y105{bottom:475.275000px;}
.y96{bottom:482.475000px;}
.y7d{bottom:490.935000px;}
.yce{bottom:492.195000px;}
.y104{bottom:492.555000px;}
.y95{bottom:500.475000px;}
.y7c{bottom:508.215000px;}
.y103{bottom:509.835000px;}
.y94{bottom:518.475000px;}
.y7b{bottom:525.495000px;}
.y102{bottom:526.935000px;}
.ycd{bottom:527.475000px;}
.y93{bottom:536.475000px;}
.y7a{bottom:542.775000px;}
.y101{bottom:544.215000px;}
.y92{bottom:554.475000px;}
.y79{bottom:560.055000px;}
.y100{bottom:561.495000px;}
.ycc{bottom:562.755000px;}
.y91{bottom:572.475000px;}
.y78{bottom:577.335000px;}
.yff{bottom:578.775000px;}
.ycb{bottom:580.755000px;}
.y90{bottom:590.475000px;}
.y77{bottom:594.435000px;}
.yfe{bottom:596.055000px;}
.y76{bottom:611.745000px;}
.yfd{bottom:613.365000px;}
.yca{bottom:619.305000px;}
.y75{bottom:629.025000px;}
.yfc{bottom:630.465000px;}
.yc9{bottom:636.585000px;}
.y74{bottom:646.305000px;}
.yfb{bottom:647.745000px;}
.yc8{bottom:653.865000px;}
.y73{bottom:663.585000px;}
.yfa{bottom:665.025000px;}
.yc7{bottom:670.965000px;}
.y72{bottom:680.865000px;}
.yf9{bottom:682.305000px;}
.yc6{bottom:685.725000px;}
.y71{bottom:697.965000px;}
.yf8{bottom:699.585000px;}
.yc5{bottom:703.725000px;}
.y70{bottom:715.245000px;}
.yf7{bottom:716.865000px;}
.yc4{bottom:721.725000px;}
.y6f{bottom:732.525000px;}
.yf6{bottom:733.965000px;}
.y6e{bottom:749.805000px;}
.yf5{bottom:751.245000px;}
.yc3{bottom:760.245000px;}
.y6d{bottom:767.085000px;}
.yf4{bottom:768.525000px;}
.yc2{bottom:777.525000px;}
.y6c{bottom:784.365000px;}
.yf3{bottom:785.805000px;}
.yc1{bottom:794.805000px;}
.yf2{bottom:800.565000px;}
.y6b{bottom:801.465000px;}
.y1a{bottom:810.285000px;}
.yc0{bottom:812.085000px;}
.yf1{bottom:818.565000px;}
.y6a{bottom:818.745000px;}
.ybf{bottom:829.185000px;}
.y69{bottom:836.025000px;}
.yf0{bottom:836.565000px;}
.yf{bottom:839.805000px;}
.ybe{bottom:846.465000px;}
.y68{bottom:853.305000px;}
.yef{bottom:854.565000px;}
.ybd{bottom:863.745000px;}
.y67{bottom:870.630000px;}
.yee{bottom:872.610000px;}
.ybc{bottom:881.070000px;}
.y66{bottom:887.730000px;}
.yed{bottom:890.610000px;}
.ybb{bottom:898.350000px;}
.y65{bottom:905.010000px;}
.yec{bottom:908.610000px;}
.y11b{bottom:910.230000px;}
.yba{bottom:915.630000px;}
.y64{bottom:922.290000px;}
.yeb{bottom:926.610000px;}
.yb9{bottom:932.730000px;}
.y63{bottom:939.570000px;}
.yea{bottom:944.610000px;}
.yb8{bottom:950.010000px;}
.y62{bottom:956.850000px;}
.ye9{bottom:962.610000px;}
.yb7{bottom:967.290000px;}
.y61{bottom:974.130000px;}
.ye8{bottom:980.610000px;}
.yb6{bottom:984.570000px;}
.y60{bottom:991.230000px;}
.ye7{bottom:998.610000px;}
.yb5{bottom:1001.850000px;}
.y5f{bottom:1008.510000px;}
.yb4{bottom:1016.610000px;}
.y5e{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.ye6{bottom:1033.890000px;}
.yb3{bottom:1034.610000px;}
.y5d{bottom:1043.070000px;}
.ye5{bottom:1051.890000px;}
.yb2{bottom:1052.610000px;}
.y6{bottom:1056.390000px;}
.y5c{bottom:1060.350000px;}
.ye4{bottom:1069.890000px;}
.yb1{bottom:1070.610000px;}
.y5b{bottom:1077.630000px;}
.ye3{bottom:1087.890000px;}
.yb0{bottom:1088.610000px;}
.y5a{bottom:1094.730000px;}
.ye2{bottom:1105.890000px;}
.yae{bottom:1106.610000px;}
.y59{bottom:1112.010000px;}
.ye1{bottom:1123.890000px;}
.y58{bottom:1129.290000px;}
.yad{bottom:1141.920000px;}
.y57{bottom:1146.600000px;}
.yac{bottom:1159.920000px;}
.y56{bottom:1163.880000px;}
.h24{height:17.100000px;}
.h29{height:17.136000px;}
.h23{height:17.280000px;}
.h21{height:17.316000px;}
.hc{height:24.840000px;}
.h2a{height:28.115859px;}
.h13{height:28.968750px;}
.h1d{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h28{height:34.380000px;}
.h25{height:34.416000px;}
.h26{height:34.560000px;}
.h27{height:34.596000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1b{height:38.818125px;}
.h1e{height:42.164648px;}
.h1a{height:42.281367px;}
.h1c{height:43.215117px;}
.h2b{height:43.506914px;}
.he{height:44.002969px;}
.h20{height:44.265586px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.995859px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h22{height:60.855469px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h16{height:431.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w10{width:140.076000px;}
.w11{width:140.256000px;}
.w13{width:140.400000px;}
.w12{width:140.436000px;}
.w5{width:151.950000px;}
.wf{width:165.270000px;}
.wa{width:174.990000px;}
.wd{width:192.270000px;}
.wb{width:202.530000px;}
.w8{width:216.075000px;}
.wc{width:257.115000px;}
.we{width:274.710000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:7.560000px;}
.x2{left:8.676000px;}
.xc{left:10.296000px;}
.x13{left:12.600000px;}
.xb{left:49.536000px;}
.x1d{left:63.000000px;}
.x1e{left:71.640000px;}
.x1{left:81.000000px;}
.x1a{left:84.060000px;}
.x20{left:85.320000px;}
.x22{left:88.740000px;}
.x24{left:90.575987px;}
.x10{left:96.330000px;}
.x4{left:98.130000px;}
.x1b{left:102.270000px;}
.xe{left:106.230000px;}
.x15{left:108.035987px;}
.x2b{left:113.075987px;}
.x23{left:120.600000px;}
.xf{left:122.430000px;}
.x21{left:124.965000px;}
.x16{left:160.409987px;}
.xd{left:199.695000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x26{left:247.890000px;}
.x17{left:257.430000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x6{left:331.995000px;}
.x1c{left:341.535000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x27{left:388.875000px;}
.x25{left:422.354987px;}
.x9{left:439.500000px;}
.x18{left:460.695000px;}
.x29{left:529.845000px;}
.x1f{left:534.345000px;}
.x14{left:561.344987px;}
.x19{left:636.405000px;}
.x2a{left:671.010000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls13{letter-spacing:-1.184000pt;}
.ls9{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.158080pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsa{letter-spacing:4.000000pt;}
.ls15{letter-spacing:14.672640pt;}
.lsc{letter-spacing:33.872640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.736000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._13{margin-left:-5.135573pt;}
._4{margin-left:-4.213120pt;}
._2{margin-left:-2.885547pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.088000pt;}
._9{width:2.834987pt;}
._c{width:4.568320pt;}
._10{width:5.498880pt;}
._5{width:6.702080pt;}
._7{width:8.004480pt;}
._6{width:9.259520pt;}
._f{width:10.520320pt;}
._b{width:11.490560pt;}
._11{width:14.791680pt;}
._a{width:16.335360pt;}
._e{width:17.582720pt;}
._d{width:18.538880pt;}
._16{width:26.719360pt;}
._15{width:27.856000pt;}
._8{width:29.456000pt;}
._12{width:30.429867pt;}
._18{width:32.536960pt;}
._17{width:33.837440pt;}
._14{width:42.257920pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y46{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y19{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.yaf{bottom:10.560000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.y47{bottom:13.280000pt;}
.y4{bottom:15.392000pt;}
.y45{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y42{bottom:18.240000pt;}
.y18{bottom:26.080000pt;}
.yb{bottom:26.720000pt;}
.y5{bottom:29.120000pt;}
.y41{bottom:33.600000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:47.840000pt;}
.y40{bottom:48.960000pt;}
.y16{bottom:55.400000pt;}
.y3f{bottom:64.160000pt;}
.y9{bottom:65.120000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y3e{bottom:79.520000pt;}
.y8{bottom:82.586667pt;}
.ye0{bottom:87.552000pt;}
.y8f{bottom:90.432000pt;}
.yab{bottom:92.832000pt;}
.y3d{bottom:94.880000pt;}
.y13{bottom:95.080000pt;}
.y7{bottom:98.906667pt;}
.y55{bottom:99.072000pt;}
.y11a{bottom:100.512000pt;}
.y8e{bottom:105.792000pt;}
.yaa{bottom:108.832000pt;}
.y3c{bottom:110.240000pt;}
.y12{bottom:111.880000pt;}
.y54{bottom:114.432000pt;}
.y119{bottom:115.712000pt;}
.ydf{bottom:118.912000pt;}
.y8d{bottom:120.992000pt;}
.ya9{bottom:124.832000pt;}
.y3b{bottom:125.600000pt;}
.y53{bottom:129.792000pt;}
.y118{bottom:131.072000pt;}
.y11{bottom:134.760000pt;}
.yde{bottom:134.906667pt;}
.y8c{bottom:136.346667pt;}
.ya8{bottom:140.826667pt;}
.y3a{bottom:140.960000pt;}
.y52{bottom:144.986667pt;}
.y126{bottom:145.146667pt;}
.y117{bottom:146.426667pt;}
.ydd{bottom:150.906667pt;}
.y8b{bottom:151.706667pt;}
.y39{bottom:156.160000pt;}
.y10{bottom:156.520000pt;}
.ya7{bottom:156.826667pt;}
.y51{bottom:160.346667pt;}
.y125{bottom:160.506667pt;}
.y116{bottom:161.786667pt;}
.y2a{bottom:162.080000pt;}
.ydc{bottom:166.906667pt;}
.y8a{bottom:167.066667pt;}
.y38{bottom:171.520000pt;}
.ya6{bottom:172.826667pt;}
.y29{bottom:175.680000pt;}
.y50{bottom:175.706667pt;}
.y115{bottom:177.146667pt;}
.y89{bottom:182.426667pt;}
.ydb{bottom:182.906667pt;}
.y37{bottom:186.880000pt;}
.ya5{bottom:188.826667pt;}
.y4f{bottom:191.066667pt;}
.y28{bottom:191.360000pt;}
.y114{bottom:192.506667pt;}
.y88{bottom:197.626667pt;}
.yda{bottom:198.906667pt;}
.y36{bottom:202.266667pt;}
.ya4{bottom:204.826667pt;}
.y4e{bottom:206.426667pt;}
.y27{bottom:206.586667pt;}
.y113{bottom:207.706667pt;}
.y87{bottom:212.986667pt;}
.yd9{bottom:214.906667pt;}
.y35{bottom:217.626667pt;}
.ya3{bottom:220.826667pt;}
.y4d{bottom:221.626667pt;}
.y124{bottom:221.786667pt;}
.y26{bottom:221.946667pt;}
.y112{bottom:223.066667pt;}
.y86{bottom:228.346667pt;}
.yd8{bottom:230.906667pt;}
.y34{bottom:232.986667pt;}
.ya2{bottom:236.826667pt;}
.y4c{bottom:236.986667pt;}
.y123{bottom:237.146667pt;}
.y25{bottom:237.786667pt;}
.y111{bottom:238.426667pt;}
.y85{bottom:243.706667pt;}
.yd7{bottom:246.906667pt;}
.y33{bottom:248.186667pt;}
.y4b{bottom:252.346667pt;}
.y122{bottom:252.506667pt;}
.ya1{bottom:252.826667pt;}
.y24{bottom:253.306667pt;}
.y110{bottom:253.786667pt;}
.y84{bottom:259.066667pt;}
.yd6{bottom:262.906667pt;}
.y32{bottom:263.546667pt;}
.y4a{bottom:267.706667pt;}
.y23{bottom:268.666667pt;}
.ya0{bottom:268.826667pt;}
.y10f{bottom:269.146667pt;}
.y83{bottom:274.426667pt;}
.y31{bottom:278.906667pt;}
.y49{bottom:283.066667pt;}
.y22{bottom:284.186667pt;}
.y10e{bottom:284.506667pt;}
.y9f{bottom:284.826667pt;}
.y82{bottom:289.626667pt;}
.y30{bottom:294.266667pt;}
.yd5{bottom:294.906667pt;}
.y48{bottom:298.426667pt;}
.y21{bottom:299.706667pt;}
.y10d{bottom:299.746667pt;}
.y9e{bottom:300.866667pt;}
.y81{bottom:302.146667pt;}
.y121{bottom:303.106667pt;}
.y2f{bottom:309.626667pt;}
.y44{bottom:310.786667pt;}
.yd4{bottom:310.946667pt;}
.y120{bottom:313.826667pt;}
.y20{bottom:315.066667pt;}
.y10c{bottom:315.106667pt;}
.y9d{bottom:316.866667pt;}
.y2e{bottom:324.986667pt;}
.y11f{bottom:329.186667pt;}
.y10b{bottom:330.466667pt;}
.y9c{bottom:332.866667pt;}
.y1f{bottom:333.146667pt;}
.y1c{bottom:336.866667pt;}
.y2d{bottom:340.186667pt;}
.yd3{bottom:342.306667pt;}
.y11e{bottom:344.546667pt;}
.y10a{bottom:345.826667pt;}
.y9b{bottom:348.866667pt;}
.y2c{bottom:355.546667pt;}
.y1e{bottom:357.466667pt;}
.yd2{bottom:358.306667pt;}
.y11d{bottom:359.746667pt;}
.y109{bottom:361.186667pt;}
.y9a{bottom:364.866667pt;}
.y2b{bottom:370.906667pt;}
.y1d{bottom:373.306667pt;}
.yd1{bottom:374.306667pt;}
.y11c{bottom:375.106667pt;}
.y108{bottom:376.546667pt;}
.y99{bottom:380.866667pt;}
.yd0{bottom:390.306667pt;}
.y80{bottom:390.466667pt;}
.y107{bottom:391.746667pt;}
.y98{bottom:396.866667pt;}
.y7f{bottom:405.826667pt;}
.y106{bottom:407.106667pt;}
.y97{bottom:412.866667pt;}
.y7e{bottom:421.186667pt;}
.ycf{bottom:421.506667pt;}
.y105{bottom:422.466667pt;}
.y96{bottom:428.866667pt;}
.y7d{bottom:436.386667pt;}
.yce{bottom:437.506667pt;}
.y104{bottom:437.826667pt;}
.y95{bottom:444.866667pt;}
.y7c{bottom:451.746667pt;}
.y103{bottom:453.186667pt;}
.y94{bottom:460.866667pt;}
.y7b{bottom:467.106667pt;}
.y102{bottom:468.386667pt;}
.ycd{bottom:468.866667pt;}
.y93{bottom:476.866667pt;}
.y7a{bottom:482.466667pt;}
.y101{bottom:483.746667pt;}
.y92{bottom:492.866667pt;}
.y79{bottom:497.826667pt;}
.y100{bottom:499.106667pt;}
.ycc{bottom:500.226667pt;}
.y91{bottom:508.866667pt;}
.y78{bottom:513.186667pt;}
.yff{bottom:514.466667pt;}
.ycb{bottom:516.226667pt;}
.y90{bottom:524.866667pt;}
.y77{bottom:528.386667pt;}
.yfe{bottom:529.826667pt;}
.y76{bottom:543.773333pt;}
.yfd{bottom:545.213333pt;}
.yca{bottom:550.493333pt;}
.y75{bottom:559.133333pt;}
.yfc{bottom:560.413333pt;}
.yc9{bottom:565.853333pt;}
.y74{bottom:574.493333pt;}
.yfb{bottom:575.773333pt;}
.yc8{bottom:581.213333pt;}
.y73{bottom:589.853333pt;}
.yfa{bottom:591.133333pt;}
.yc7{bottom:596.413333pt;}
.y72{bottom:605.213333pt;}
.yf9{bottom:606.493333pt;}
.yc6{bottom:609.533333pt;}
.y71{bottom:620.413333pt;}
.yf8{bottom:621.853333pt;}
.yc5{bottom:625.533333pt;}
.y70{bottom:635.773333pt;}
.yf7{bottom:637.213333pt;}
.yc4{bottom:641.533333pt;}
.y6f{bottom:651.133333pt;}
.yf6{bottom:652.413333pt;}
.y6e{bottom:666.493333pt;}
.yf5{bottom:667.773333pt;}
.yc3{bottom:675.773333pt;}
.y6d{bottom:681.853333pt;}
.yf4{bottom:683.133333pt;}
.yc2{bottom:691.133333pt;}
.y6c{bottom:697.213333pt;}
.yf3{bottom:698.493333pt;}
.yc1{bottom:706.493333pt;}
.yf2{bottom:711.613333pt;}
.y6b{bottom:712.413333pt;}
.y1a{bottom:720.253333pt;}
.yc0{bottom:721.853333pt;}
.yf1{bottom:727.613333pt;}
.y6a{bottom:727.773333pt;}
.ybf{bottom:737.053333pt;}
.y69{bottom:743.133333pt;}
.yf0{bottom:743.613333pt;}
.yf{bottom:746.493333pt;}
.ybe{bottom:752.413333pt;}
.y68{bottom:758.493333pt;}
.yef{bottom:759.613333pt;}
.ybd{bottom:767.773333pt;}
.y67{bottom:773.893333pt;}
.yee{bottom:775.653333pt;}
.ybc{bottom:783.173333pt;}
.y66{bottom:789.093333pt;}
.yed{bottom:791.653333pt;}
.ybb{bottom:798.533333pt;}
.y65{bottom:804.453333pt;}
.yec{bottom:807.653333pt;}
.y11b{bottom:809.093333pt;}
.yba{bottom:813.893333pt;}
.y64{bottom:819.813333pt;}
.yeb{bottom:823.653333pt;}
.yb9{bottom:829.093333pt;}
.y63{bottom:835.173333pt;}
.yea{bottom:839.653333pt;}
.yb8{bottom:844.453333pt;}
.y62{bottom:850.533333pt;}
.ye9{bottom:855.653333pt;}
.yb7{bottom:859.813333pt;}
.y61{bottom:865.893333pt;}
.ye8{bottom:871.653333pt;}
.yb6{bottom:875.173333pt;}
.y60{bottom:881.093333pt;}
.ye7{bottom:887.653333pt;}
.yb5{bottom:890.533333pt;}
.y5f{bottom:896.453333pt;}
.yb4{bottom:903.653333pt;}
.y5e{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.ye6{bottom:919.013333pt;}
.yb3{bottom:919.653333pt;}
.y5d{bottom:927.173333pt;}
.ye5{bottom:935.013333pt;}
.yb2{bottom:935.653333pt;}
.y6{bottom:939.013333pt;}
.y5c{bottom:942.533333pt;}
.ye4{bottom:951.013333pt;}
.yb1{bottom:951.653333pt;}
.y5b{bottom:957.893333pt;}
.ye3{bottom:967.013333pt;}
.yb0{bottom:967.653333pt;}
.y5a{bottom:973.093333pt;}
.ye2{bottom:983.013333pt;}
.yae{bottom:983.653333pt;}
.y59{bottom:988.453333pt;}
.ye1{bottom:999.013333pt;}
.y58{bottom:1003.813333pt;}
.yad{bottom:1015.040000pt;}
.y57{bottom:1019.200000pt;}
.yac{bottom:1031.040000pt;}
.y56{bottom:1034.560000pt;}
.h24{height:15.200000pt;}
.h29{height:15.232000pt;}
.h23{height:15.360000pt;}
.h21{height:15.392000pt;}
.hc{height:22.080000pt;}
.h2a{height:24.991875pt;}
.h13{height:25.750000pt;}
.h1d{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h28{height:30.560000pt;}
.h25{height:30.592000pt;}
.h26{height:30.720000pt;}
.h27{height:30.752000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h1e{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h1c{height:38.413438pt;}
.h2b{height:38.672812pt;}
.he{height:39.113750pt;}
.h20{height:39.347188pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:43.551875pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h22{height:54.093750pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h16{height:383.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w10{width:124.512000pt;}
.w11{width:124.672000pt;}
.w13{width:124.800000pt;}
.w12{width:124.832000pt;}
.w5{width:135.066667pt;}
.wf{width:146.906667pt;}
.wa{width:155.546667pt;}
.wd{width:170.906667pt;}
.wb{width:180.026667pt;}
.w8{width:192.066667pt;}
.wc{width:228.546667pt;}
.we{width:244.186667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.720000pt;}
.x2{left:7.712000pt;}
.xc{left:9.152000pt;}
.x13{left:11.200000pt;}
.xb{left:44.032000pt;}
.x1d{left:56.000000pt;}
.x1e{left:63.680000pt;}
.x1{left:72.000000pt;}
.x1a{left:74.720000pt;}
.x20{left:75.840000pt;}
.x22{left:78.880000pt;}
.x24{left:80.511988pt;}
.x10{left:85.626667pt;}
.x4{left:87.226667pt;}
.x1b{left:90.906667pt;}
.xe{left:94.426667pt;}
.x15{left:96.031988pt;}
.x2b{left:100.511988pt;}
.x23{left:107.200000pt;}
.xf{left:108.826667pt;}
.x21{left:111.080000pt;}
.x16{left:142.586655pt;}
.xd{left:177.506667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x26{left:220.346667pt;}
.x17{left:228.826667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x6{left:295.106667pt;}
.x1c{left:303.586667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x27{left:345.666667pt;}
.x25{left:375.426655pt;}
.x9{left:390.666667pt;}
.x18{left:409.506667pt;}
.x29{left:470.973333pt;}
.x1f{left:474.973333pt;}
.x14{left:498.973322pt;}
.x19{left:565.693333pt;}
.x2a{left:596.453333pt;}
.x3{left:656.933333pt;}
}




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