
    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_bef4d745590ff29f8462cbc7.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_55195bd22f52db23250955be.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_5cc2643f5aec083d1fcfda1b.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_1b172ff1f7a92946b26bd859.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7e488e6de396ee8fa83d36ff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_43b0192c579bde55b77463fc.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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_93b9cb4062dcac7980ca6313.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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_92248e20f9382d5426381768.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_11391aa848c2f0e87ca74eb6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_59c708e0959d7bd721ff3565.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e9fac5b9e437e71aa1f81f09.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_11faa585c68fb893a8787383.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3e99b2d6fd6a2912563298ce.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_858ac1f327855a22123d8fcd.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3bc1913ff5d22d2ee30822bd.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c927ba82a1adbbeb71e36e51.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_776e7be8c9a0ee446fd99d3f.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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;}
.ls10{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.800000px;}
.ls12{letter-spacing:16.506720px;}
.lsa{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;}
}
.wsa{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.587200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.182000px;}
._2{margin-left:-3.090000px;}
._0{margin-left:-1.122000px;}
._1{width:1.110000px;}
._9{width:2.506800px;}
._7{width:3.602160px;}
._6{width:5.019840px;}
._d{width:6.061200px;}
._12{width:7.599360px;}
._5{width:8.611920px;}
._8{width:10.530960px;}
._b{width:12.170880px;}
._a{width:13.690080px;}
._f{width:16.273920px;}
._11{width:17.729520px;}
._c{width:18.909600px;}
._e{width:25.771920px;}
._13{width:31.040880px;}
._14{width:33.188880px;}
._10{width:34.925280px;}
.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;}
.y46{bottom:3.240000px;}
.y93{bottom:3.270000px;}
.yda{bottom:3.285000px;}
.y49{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.yad{bottom:4.320000px;}
.y84{bottom:4.500000px;}
.y19{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.yf7{bottom:11.880000px;}
.yc9{bottom:12.240000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yab{bottom:14.580000px;}
.y4a{bottom:14.940000px;}
.y4{bottom:17.316000px;}
.y48{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.yf8{bottom:20.520000px;}
.y45{bottom:20.565000px;}
.yf5{bottom:20.880000px;}
.y18{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y5{bottom:36.720000px;}
.y44{bottom:37.845000px;}
.y17{bottom:45.900000px;}
.ya{bottom:46.440000px;}
.y43{bottom:55.125000px;}
.y1{bottom:57.780000px;}
.y16{bottom:62.505000px;}
.y42{bottom:72.225000px;}
.y9{bottom:73.440000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y41{bottom:89.505000px;}
.y8{bottom:93.060000px;}
.y55{bottom:105.696000px;}
.y40{bottom:106.785000px;}
.y13{bottom:106.965000px;}
.yc8{bottom:109.656000px;}
.y7{bottom:111.270000px;}
.y91{bottom:112.716000px;}
.y106{bottom:119.016000px;}
.y13d{bottom:120.096000px;}
.y54{bottom:122.976000px;}
.y3f{bottom:124.065000px;}
.y12{bottom:126.045000px;}
.yca{bottom:127.656000px;}
.y90{bottom:131.436000px;}
.y105{bottom:137.016000px;}
.y13c{bottom:137.376000px;}
.y53{bottom:140.256000px;}
.y3e{bottom:141.345000px;}
.yc7{bottom:148.896000px;}
.y8f{bottom:150.330000px;}
.y11{bottom:151.785000px;}
.y13b{bottom:154.470000px;}
.y104{bottom:155.010000px;}
.y52{bottom:157.530000px;}
.y3d{bottom:158.445000px;}
.yc6{bottom:165.990000px;}
.y8e{bottom:171.570000px;}
.y13a{bottom:171.750000px;}
.y103{bottom:173.010000px;}
.y51{bottom:174.810000px;}
.y3c{bottom:175.725000px;}
.y10{bottom:176.085000px;}
.yc5{bottom:183.270000px;}
.y8d{bottom:188.670000px;}
.y139{bottom:189.030000px;}
.y102{bottom:191.010000px;}
.y50{bottom:191.910000px;}
.y3b{bottom:193.005000px;}
.yc4{bottom:200.550000px;}
.y2b{bottom:201.465000px;}
.y8c{bottom:205.950000px;}
.y138{bottom:206.310000px;}
.y101{bottom:209.010000px;}
.y4f{bottom:209.190000px;}
.y3a{bottom:210.285000px;}
.y2a{bottom:216.765000px;}
.yc3{bottom:217.830000px;}
.y8b{bottom:223.230000px;}
.y137{bottom:223.590000px;}
.y4e{bottom:226.470000px;}
.y100{bottom:227.010000px;}
.y39{bottom:227.565000px;}
.y29{bottom:234.405000px;}
.yc2{bottom:235.110000px;}
.y8a{bottom:240.510000px;}
.y136{bottom:240.870000px;}
.y4d{bottom:243.750000px;}
.y38{bottom:244.845000px;}
.yff{bottom:245.010000px;}
.y28{bottom:251.505000px;}
.yc1{bottom:252.390000px;}
.y89{bottom:255.270000px;}
.y135{bottom:257.970000px;}
.y4c{bottom:261.030000px;}
.y37{bottom:261.945000px;}
.yfe{bottom:263.010000px;}
.yc0{bottom:267.150000px;}
.y27{bottom:268.785000px;}
.y134{bottom:275.250000px;}
.y88{bottom:275.790000px;}
.y4b{bottom:278.130000px;}
.y36{bottom:279.225000px;}
.yfd{bottom:281.010000px;}
.y26{bottom:286.635000px;}
.ybf{bottom:287.490000px;}
.y47{bottom:292.170000px;}
.y133{bottom:292.530000px;}
.y142{bottom:295.590000px;}
.y87{bottom:296.310000px;}
.y35{bottom:296.535000px;}
.yfc{bottom:299.010000px;}
.y25{bottom:303.375000px;}
.ybe{bottom:307.830000px;}
.y132{bottom:309.810000px;}
.y141{bottom:312.870000px;}
.y34{bottom:313.815000px;}
.y86{bottom:316.830000px;}
.yfb{bottom:317.010000px;}
.y24{bottom:319.755000px;}
.y1c{bottom:321.510000px;}
.y131{bottom:327.090000px;}
.ybd{bottom:328.350000px;}
.y140{bottom:329.970000px;}
.y33{bottom:331.095000px;}
.yfa{bottom:335.010000px;}
.y23{bottom:336.855000px;}
.y85{bottom:337.575000px;}
.y130{bottom:344.415000px;}
.y13f{bottom:347.295000px;}
.y32{bottom:348.375000px;}
.ybc{bottom:348.735000px;}
.yf9{bottom:353.055000px;}
.y22{bottom:354.135000px;}
.y83{bottom:358.095000px;}
.y12f{bottom:361.515000px;}
.y13e{bottom:364.575000px;}
.y31{bottom:365.475000px;}
.ybb{bottom:369.075000px;}
.yf4{bottom:371.055000px;}
.y21{bottom:371.595000px;}
.y12e{bottom:378.795000px;}
.y82{bottom:381.855000px;}
.y30{bottom:382.755000px;}
.y20{bottom:389.055000px;}
.yba{bottom:389.595000px;}
.y12d{bottom:396.075000px;}
.y81{bottom:399.135000px;}
.y2f{bottom:400.035000px;}
.yf6{bottom:406.335000px;}
.y1f{bottom:409.215000px;}
.yb9{bottom:409.935000px;}
.y12c{bottom:413.355000px;}
.y80{bottom:416.415000px;}
.y2e{bottom:417.315000px;}
.yf3{bottom:427.575000px;}
.yb8{bottom:430.275000px;}
.y12b{bottom:430.635000px;}
.y7f{bottom:433.515000px;}
.y2d{bottom:434.595000px;}
.y1e{bottom:436.755000px;}
.yf2{bottom:444.855000px;}
.y12a{bottom:447.915000px;}
.y7e{bottom:450.795000px;}
.y2c{bottom:451.695000px;}
.y1d{bottom:454.395000px;}
.yf1{bottom:462.135000px;}
.y129{bottom:465.015000px;}
.y7d{bottom:468.075000px;}
.yb7{bottom:471.135000px;}
.yf0{bottom:479.235000px;}
.y128{bottom:482.295000px;}
.y7c{bottom:485.355000px;}
.yb6{bottom:491.475000px;}
.yef{bottom:496.515000px;}
.y127{bottom:499.575000px;}
.y7b{bottom:502.635000px;}
.yb5{bottom:511.995000px;}
.yee{bottom:513.795000px;}
.y126{bottom:516.855000px;}
.y7a{bottom:519.735000px;}
.yed{bottom:531.075000px;}
.yb4{bottom:532.335000px;}
.y125{bottom:534.135000px;}
.y79{bottom:537.015000px;}
.yec{bottom:548.355000px;}
.y124{bottom:551.235000px;}
.yb3{bottom:552.675000px;}
.y78{bottom:554.295000px;}
.yeb{bottom:565.635000px;}
.y123{bottom:568.515000px;}
.y77{bottom:571.575000px;}
.yb2{bottom:573.195000px;}
.yea{bottom:582.735000px;}
.y122{bottom:585.795000px;}
.y76{bottom:588.855000px;}
.yb1{bottom:593.535000px;}
.ye9{bottom:597.495000px;}
.y121{bottom:603.075000px;}
.y75{bottom:606.165000px;}
.yb0{bottom:613.905000px;}
.ye8{bottom:615.525000px;}
.y120{bottom:620.385000px;}
.y74{bottom:623.265000px;}
.ye7{bottom:633.525000px;}
.yaf{bottom:634.425000px;}
.y11f{bottom:637.665000px;}
.y73{bottom:640.545000px;}
.ye6{bottom:651.525000px;}
.yae{bottom:654.765000px;}
.y72{bottom:657.825000px;}
.ye5{bottom:669.525000px;}
.y11e{bottom:672.045000px;}
.y71{bottom:675.105000px;}
.ye4{bottom:687.525000px;}
.y11d{bottom:689.325000px;}
.y70{bottom:692.385000px;}
.yaa{bottom:695.625000px;}
.ye3{bottom:705.525000px;}
.y11c{bottom:706.605000px;}
.y6f{bottom:709.665000px;}
.yac{bottom:715.965000px;}
.ye2{bottom:723.525000px;}
.y11b{bottom:723.885000px;}
.y6e{bottom:726.765000px;}
.ya9{bottom:739.545000px;}
.y11a{bottom:741.165000px;}
.ye1{bottom:741.525000px;}
.y6d{bottom:744.045000px;}
.ya8{bottom:756.825000px;}
.y119{bottom:758.265000px;}
.ye0{bottom:759.525000px;}
.y6c{bottom:761.325000px;}
.ya7{bottom:774.105000px;}
.y118{bottom:775.545000px;}
.ydf{bottom:777.525000px;}
.y6b{bottom:778.605000px;}
.y1a{bottom:787.245000px;}
.ya6{bottom:791.385000px;}
.y117{bottom:792.825000px;}
.yde{bottom:795.525000px;}
.y6a{bottom:795.885000px;}
.ya5{bottom:808.485000px;}
.y116{bottom:810.105000px;}
.y69{bottom:812.985000px;}
.ydd{bottom:813.525000px;}
.yf{bottom:816.765000px;}
.ya4{bottom:825.765000px;}
.y115{bottom:827.385000px;}
.y68{bottom:830.265000px;}
.ydc{bottom:831.525000px;}
.ya3{bottom:843.045000px;}
.y114{bottom:844.485000px;}
.y67{bottom:847.545000px;}
.ydb{bottom:849.525000px;}
.ya2{bottom:860.325000px;}
.y113{bottom:861.765000px;}
.y66{bottom:864.825000px;}
.yd9{bottom:867.525000px;}
.ya1{bottom:875.850000px;}
.y112{bottom:879.090000px;}
.y65{bottom:882.150000px;}
.yd8{bottom:885.570000px;}
.ya0{bottom:893.850000px;}
.y111{bottom:896.370000px;}
.y64{bottom:899.430000px;}
.yd7{bottom:903.570000px;}
.y9f{bottom:912.570000px;}
.y110{bottom:913.650000px;}
.y63{bottom:916.530000px;}
.yd6{bottom:921.570000px;}
.y10f{bottom:930.930000px;}
.y9e{bottom:931.290000px;}
.y62{bottom:933.810000px;}
.yd5{bottom:939.570000px;}
.y10e{bottom:948.030000px;}
.y9d{bottom:950.190000px;}
.y61{bottom:951.090000px;}
.yd4{bottom:957.570000px;}
.y10d{bottom:965.310000px;}
.y60{bottom:968.370000px;}
.y9c{bottom:968.910000px;}
.yd3{bottom:975.570000px;}
.y10c{bottom:982.590000px;}
.y5f{bottom:985.650000px;}
.y9b{bottom:987.630000px;}
.yd2{bottom:993.570000px;}
.y10b{bottom:999.870000px;}
.y5e{bottom:1002.930000px;}
.y9a{bottom:1006.350000px;}
.yd{bottom:1007.970000px;}
.yd1{bottom:1011.570000px;}
.y10a{bottom:1017.150000px;}
.y5d{bottom:1020.030000px;}
.y99{bottom:1025.070000px;}
.yd0{bottom:1029.570000px;}
.y6{bottom:1033.350000px;}
.y109{bottom:1034.430000px;}
.y5c{bottom:1037.310000px;}
.y98{bottom:1043.790000px;}
.ycf{bottom:1047.570000px;}
.y108{bottom:1051.530000px;}
.y5b{bottom:1054.590000px;}
.y97{bottom:1062.690000px;}
.yce{bottom:1065.570000px;}
.y107{bottom:1068.810000px;}
.y5a{bottom:1071.870000px;}
.y96{bottom:1081.410000px;}
.ycd{bottom:1083.570000px;}
.y59{bottom:1089.150000px;}
.y95{bottom:1100.130000px;}
.ycc{bottom:1101.570000px;}
.y58{bottom:1106.430000px;}
.y94{bottom:1118.850000px;}
.ycb{bottom:1119.570000px;}
.y57{bottom:1123.530000px;}
.y92{bottom:1137.570000px;}
.y56{bottom:1140.840000px;}
.h23{height:17.100000px;}
.h24{height:17.280000px;}
.h25{height:17.316000px;}
.h27{height:19.620000px;}
.h28{height:19.656000px;}
.h21{height:19.800000px;}
.h22{height:19.836000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h1f{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h2b{height:34.560000px;}
.h29{height:35.100000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1c{height:38.818125px;}
.h26{height:39.960000px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h19{height:46.881563px;}
.h17{height:47.980898px;}
.h2c{height:48.027656px;}
.h2d{height:48.432422px;}
.h1b{height:49.255313px;}
.h2a{height:52.560000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.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:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w25{width:86.220000px;}
.w24{width:86.256000px;}
.w17{width:98.676000px;}
.w1d{width:104.796000px;}
.w18{width:105.660000px;}
.w1e{width:112.500000px;}
.w21{width:114.156000px;}
.w1a{width:126.756000px;}
.w1b{width:127.980000px;}
.w22{width:130.320000px;}
.w15{width:134.100000px;}
.w5{width:151.950000px;}
.wb{width:154.620000px;}
.w11{width:154.980000px;}
.w14{width:155.010000px;}
.w10{width:155.160000px;}
.wd{width:160.950000px;}
.w23{width:172.830000px;}
.wc{width:203.610000px;}
.w16{width:204.690000px;}
.wa{width:209.415000px;}
.w1c{width:217.650000px;}
.w8{width:223.455000px;}
.w13{width:234.795000px;}
.w19{width:267.555000px;}
.w20{width:311.115000px;}
.wf{width:416.625000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w12{width:728.250000px;}
.we{width:729.690000px;}
.w7{width:731.130000px;}
.w1f{width:741.390000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.416000px;}
.x2{left:8.676000px;}
.xb{left:13.356000px;}
.xc{left:71.850000px;}
.x1{left:81.000000px;}
.x16{left:82.440000px;}
.xe{left:87.510000px;}
.x4{left:98.130000px;}
.x29{left:108.035987px;}
.x1a{left:114.875987px;}
.x1f{left:123.875987px;}
.xd{left:148.530000px;}
.xf{left:215.175000px;}
.x5{left:232.950000px;}
.x15{left:255.089987px;}
.x8{left:272.235000px;}
.x11{left:280.694987px;}
.x12{left:291.495000px;}
.x10{left:304.455000px;}
.x1b{left:316.875000px;}
.x6{left:331.995000px;}
.x20{left:349.815000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x24{left:393.375000px;}
.x28{left:396.074987px;}
.x9{left:439.500000px;}
.x13{left:446.475000px;}
.x1c{left:472.245000px;}
.x21{left:476.925000px;}
.x18{left:499.785000px;}
.x25{left:507.885000px;}
.x22{left:605.445000px;}
.x1d{left:606.705000px;}
.x26{left:638.565000px;}
.x14{left:650.445000px;}
.x19{left:655.710000px;}
.x1e{left:705.750000px;}
.x23{left:710.610000px;}
.x27{left:725.190000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.600000pt;}
.ls12{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws3{word-spacing:-20.966400pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.717333pt;}
._2{margin-left:-2.746667pt;}
._0{margin-left:-0.997333pt;}
._1{width:0.986667pt;}
._9{width:2.228267pt;}
._7{width:3.201920pt;}
._6{width:4.462080pt;}
._d{width:5.387733pt;}
._12{width:6.754987pt;}
._5{width:7.655040pt;}
._8{width:9.360853pt;}
._b{width:10.818560pt;}
._a{width:12.168960pt;}
._f{width:14.465707pt;}
._11{width:15.759573pt;}
._c{width:16.808533pt;}
._e{width:22.908373pt;}
._13{width:27.591893pt;}
._14{width:29.501227pt;}
._10{width:31.044693pt;}
.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;}
.y46{bottom:2.880000pt;}
.y93{bottom:2.906667pt;}
.yda{bottom:2.920000pt;}
.y49{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.yad{bottom:3.840000pt;}
.y84{bottom:4.000000pt;}
.y19{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.yf7{bottom:10.560000pt;}
.yc9{bottom:10.880000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yab{bottom:12.960000pt;}
.y4a{bottom:13.280000pt;}
.y4{bottom:15.392000pt;}
.y48{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.yf8{bottom:18.240000pt;}
.y45{bottom:18.280000pt;}
.yf5{bottom:18.560000pt;}
.y18{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:32.640000pt;}
.y44{bottom:33.640000pt;}
.y17{bottom:40.800000pt;}
.ya{bottom:41.280000pt;}
.y43{bottom:49.000000pt;}
.y1{bottom:51.360000pt;}
.y16{bottom:55.560000pt;}
.y42{bottom:64.200000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y41{bottom:79.560000pt;}
.y8{bottom:82.720000pt;}
.y55{bottom:93.952000pt;}
.y40{bottom:94.920000pt;}
.y13{bottom:95.080000pt;}
.yc8{bottom:97.472000pt;}
.y7{bottom:98.906667pt;}
.y91{bottom:100.192000pt;}
.y106{bottom:105.792000pt;}
.y13d{bottom:106.752000pt;}
.y54{bottom:109.312000pt;}
.y3f{bottom:110.280000pt;}
.y12{bottom:112.040000pt;}
.yca{bottom:113.472000pt;}
.y90{bottom:116.832000pt;}
.y105{bottom:121.792000pt;}
.y13c{bottom:122.112000pt;}
.y53{bottom:124.672000pt;}
.y3e{bottom:125.640000pt;}
.yc7{bottom:132.352000pt;}
.y8f{bottom:133.626667pt;}
.y11{bottom:134.920000pt;}
.y13b{bottom:137.306667pt;}
.y104{bottom:137.786667pt;}
.y52{bottom:140.026667pt;}
.y3d{bottom:140.840000pt;}
.yc6{bottom:147.546667pt;}
.y8e{bottom:152.506667pt;}
.y13a{bottom:152.666667pt;}
.y103{bottom:153.786667pt;}
.y51{bottom:155.386667pt;}
.y3c{bottom:156.200000pt;}
.y10{bottom:156.520000pt;}
.yc5{bottom:162.906667pt;}
.y8d{bottom:167.706667pt;}
.y139{bottom:168.026667pt;}
.y102{bottom:169.786667pt;}
.y50{bottom:170.586667pt;}
.y3b{bottom:171.560000pt;}
.yc4{bottom:178.266667pt;}
.y2b{bottom:179.080000pt;}
.y8c{bottom:183.066667pt;}
.y138{bottom:183.386667pt;}
.y101{bottom:185.786667pt;}
.y4f{bottom:185.946667pt;}
.y3a{bottom:186.920000pt;}
.y2a{bottom:192.680000pt;}
.yc3{bottom:193.626667pt;}
.y8b{bottom:198.426667pt;}
.y137{bottom:198.746667pt;}
.y4e{bottom:201.306667pt;}
.y100{bottom:201.786667pt;}
.y39{bottom:202.280000pt;}
.y29{bottom:208.360000pt;}
.yc2{bottom:208.986667pt;}
.y8a{bottom:213.786667pt;}
.y136{bottom:214.106667pt;}
.y4d{bottom:216.666667pt;}
.y38{bottom:217.640000pt;}
.yff{bottom:217.786667pt;}
.y28{bottom:223.560000pt;}
.yc1{bottom:224.346667pt;}
.y89{bottom:226.906667pt;}
.y135{bottom:229.306667pt;}
.y4c{bottom:232.026667pt;}
.y37{bottom:232.840000pt;}
.yfe{bottom:233.786667pt;}
.yc0{bottom:237.466667pt;}
.y27{bottom:238.920000pt;}
.y134{bottom:244.666667pt;}
.y88{bottom:245.146667pt;}
.y4b{bottom:247.226667pt;}
.y36{bottom:248.200000pt;}
.yfd{bottom:249.786667pt;}
.y26{bottom:254.786667pt;}
.ybf{bottom:255.546667pt;}
.y47{bottom:259.706667pt;}
.y133{bottom:260.026667pt;}
.y142{bottom:262.746667pt;}
.y87{bottom:263.386667pt;}
.y35{bottom:263.586667pt;}
.yfc{bottom:265.786667pt;}
.y25{bottom:269.666667pt;}
.ybe{bottom:273.626667pt;}
.y132{bottom:275.386667pt;}
.y141{bottom:278.106667pt;}
.y34{bottom:278.946667pt;}
.y86{bottom:281.626667pt;}
.yfb{bottom:281.786667pt;}
.y24{bottom:284.226667pt;}
.y1c{bottom:285.786667pt;}
.y131{bottom:290.746667pt;}
.ybd{bottom:291.866667pt;}
.y140{bottom:293.306667pt;}
.y33{bottom:294.306667pt;}
.yfa{bottom:297.786667pt;}
.y23{bottom:299.426667pt;}
.y85{bottom:300.066667pt;}
.y130{bottom:306.146667pt;}
.y13f{bottom:308.706667pt;}
.y32{bottom:309.666667pt;}
.ybc{bottom:309.986667pt;}
.yf9{bottom:313.826667pt;}
.y22{bottom:314.786667pt;}
.y83{bottom:318.306667pt;}
.y12f{bottom:321.346667pt;}
.y13e{bottom:324.066667pt;}
.y31{bottom:324.866667pt;}
.ybb{bottom:328.066667pt;}
.yf4{bottom:329.826667pt;}
.y21{bottom:330.306667pt;}
.y12e{bottom:336.706667pt;}
.y82{bottom:339.426667pt;}
.y30{bottom:340.226667pt;}
.y20{bottom:345.826667pt;}
.yba{bottom:346.306667pt;}
.y12d{bottom:352.066667pt;}
.y81{bottom:354.786667pt;}
.y2f{bottom:355.586667pt;}
.yf6{bottom:361.186667pt;}
.y1f{bottom:363.746667pt;}
.yb9{bottom:364.386667pt;}
.y12c{bottom:367.426667pt;}
.y80{bottom:370.146667pt;}
.y2e{bottom:370.946667pt;}
.yf3{bottom:380.066667pt;}
.yb8{bottom:382.466667pt;}
.y12b{bottom:382.786667pt;}
.y7f{bottom:385.346667pt;}
.y2d{bottom:386.306667pt;}
.y1e{bottom:388.226667pt;}
.yf2{bottom:395.426667pt;}
.y12a{bottom:398.146667pt;}
.y7e{bottom:400.706667pt;}
.y2c{bottom:401.506667pt;}
.y1d{bottom:403.906667pt;}
.yf1{bottom:410.786667pt;}
.y129{bottom:413.346667pt;}
.y7d{bottom:416.066667pt;}
.yb7{bottom:418.786667pt;}
.yf0{bottom:425.986667pt;}
.y128{bottom:428.706667pt;}
.y7c{bottom:431.426667pt;}
.yb6{bottom:436.866667pt;}
.yef{bottom:441.346667pt;}
.y127{bottom:444.066667pt;}
.y7b{bottom:446.786667pt;}
.yb5{bottom:455.106667pt;}
.yee{bottom:456.706667pt;}
.y126{bottom:459.426667pt;}
.y7a{bottom:461.986667pt;}
.yed{bottom:472.066667pt;}
.yb4{bottom:473.186667pt;}
.y125{bottom:474.786667pt;}
.y79{bottom:477.346667pt;}
.yec{bottom:487.426667pt;}
.y124{bottom:489.986667pt;}
.yb3{bottom:491.266667pt;}
.y78{bottom:492.706667pt;}
.yeb{bottom:502.786667pt;}
.y123{bottom:505.346667pt;}
.y77{bottom:508.066667pt;}
.yb2{bottom:509.506667pt;}
.yea{bottom:517.986667pt;}
.y122{bottom:520.706667pt;}
.y76{bottom:523.426667pt;}
.yb1{bottom:527.586667pt;}
.ye9{bottom:531.106667pt;}
.y121{bottom:536.066667pt;}
.y75{bottom:538.813333pt;}
.yb0{bottom:545.693333pt;}
.ye8{bottom:547.133333pt;}
.y120{bottom:551.453333pt;}
.y74{bottom:554.013333pt;}
.ye7{bottom:563.133333pt;}
.yaf{bottom:563.933333pt;}
.y11f{bottom:566.813333pt;}
.y73{bottom:569.373333pt;}
.ye6{bottom:579.133333pt;}
.yae{bottom:582.013333pt;}
.y72{bottom:584.733333pt;}
.ye5{bottom:595.133333pt;}
.y11e{bottom:597.373333pt;}
.y71{bottom:600.093333pt;}
.ye4{bottom:611.133333pt;}
.y11d{bottom:612.733333pt;}
.y70{bottom:615.453333pt;}
.yaa{bottom:618.333333pt;}
.ye3{bottom:627.133333pt;}
.y11c{bottom:628.093333pt;}
.y6f{bottom:630.813333pt;}
.yac{bottom:636.413333pt;}
.ye2{bottom:643.133333pt;}
.y11b{bottom:643.453333pt;}
.y6e{bottom:646.013333pt;}
.ya9{bottom:657.373333pt;}
.y11a{bottom:658.813333pt;}
.ye1{bottom:659.133333pt;}
.y6d{bottom:661.373333pt;}
.ya8{bottom:672.733333pt;}
.y119{bottom:674.013333pt;}
.ye0{bottom:675.133333pt;}
.y6c{bottom:676.733333pt;}
.ya7{bottom:688.093333pt;}
.y118{bottom:689.373333pt;}
.ydf{bottom:691.133333pt;}
.y6b{bottom:692.093333pt;}
.y1a{bottom:699.773333pt;}
.ya6{bottom:703.453333pt;}
.y117{bottom:704.733333pt;}
.yde{bottom:707.133333pt;}
.y6a{bottom:707.453333pt;}
.ya5{bottom:718.653333pt;}
.y116{bottom:720.093333pt;}
.y69{bottom:722.653333pt;}
.ydd{bottom:723.133333pt;}
.yf{bottom:726.013333pt;}
.ya4{bottom:734.013333pt;}
.y115{bottom:735.453333pt;}
.y68{bottom:738.013333pt;}
.ydc{bottom:739.133333pt;}
.ya3{bottom:749.373333pt;}
.y114{bottom:750.653333pt;}
.y67{bottom:753.373333pt;}
.ydb{bottom:755.133333pt;}
.ya2{bottom:764.733333pt;}
.y113{bottom:766.013333pt;}
.y66{bottom:768.733333pt;}
.yd9{bottom:771.133333pt;}
.ya1{bottom:778.533333pt;}
.y112{bottom:781.413333pt;}
.y65{bottom:784.133333pt;}
.yd8{bottom:787.173333pt;}
.ya0{bottom:794.533333pt;}
.y111{bottom:796.773333pt;}
.y64{bottom:799.493333pt;}
.yd7{bottom:803.173333pt;}
.y9f{bottom:811.173333pt;}
.y110{bottom:812.133333pt;}
.y63{bottom:814.693333pt;}
.yd6{bottom:819.173333pt;}
.y10f{bottom:827.493333pt;}
.y9e{bottom:827.813333pt;}
.y62{bottom:830.053333pt;}
.yd5{bottom:835.173333pt;}
.y10e{bottom:842.693333pt;}
.y9d{bottom:844.613333pt;}
.y61{bottom:845.413333pt;}
.yd4{bottom:851.173333pt;}
.y10d{bottom:858.053333pt;}
.y60{bottom:860.773333pt;}
.y9c{bottom:861.253333pt;}
.yd3{bottom:867.173333pt;}
.y10c{bottom:873.413333pt;}
.y5f{bottom:876.133333pt;}
.y9b{bottom:877.893333pt;}
.yd2{bottom:883.173333pt;}
.y10b{bottom:888.773333pt;}
.y5e{bottom:891.493333pt;}
.y9a{bottom:894.533333pt;}
.yd{bottom:895.973333pt;}
.yd1{bottom:899.173333pt;}
.y10a{bottom:904.133333pt;}
.y5d{bottom:906.693333pt;}
.y99{bottom:911.173333pt;}
.yd0{bottom:915.173333pt;}
.y6{bottom:918.533333pt;}
.y109{bottom:919.493333pt;}
.y5c{bottom:922.053333pt;}
.y98{bottom:927.813333pt;}
.ycf{bottom:931.173333pt;}
.y108{bottom:934.693333pt;}
.y5b{bottom:937.413333pt;}
.y97{bottom:944.613333pt;}
.yce{bottom:947.173333pt;}
.y107{bottom:950.053333pt;}
.y5a{bottom:952.773333pt;}
.y96{bottom:961.253333pt;}
.ycd{bottom:963.173333pt;}
.y59{bottom:968.133333pt;}
.y95{bottom:977.893333pt;}
.ycc{bottom:979.173333pt;}
.y58{bottom:983.493333pt;}
.y94{bottom:994.533333pt;}
.ycb{bottom:995.173333pt;}
.y57{bottom:998.693333pt;}
.y92{bottom:1011.173333pt;}
.y56{bottom:1014.080000pt;}
.h23{height:15.200000pt;}
.h24{height:15.360000pt;}
.h25{height:15.392000pt;}
.h27{height:17.440000pt;}
.h28{height:17.472000pt;}
.h21{height:17.600000pt;}
.h22{height:17.632000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h1f{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h2b{height:30.720000pt;}
.h29{height:31.200000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1c{height:34.505000pt;}
.h26{height:35.520000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h19{height:41.672500pt;}
.h17{height:42.649687pt;}
.h2c{height:42.691250pt;}
.h2d{height:43.051042pt;}
.h1b{height:43.782500pt;}
.h2a{height:46.720000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.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:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w25{width:76.640000pt;}
.w24{width:76.672000pt;}
.w17{width:87.712000pt;}
.w1d{width:93.152000pt;}
.w18{width:93.920000pt;}
.w1e{width:100.000000pt;}
.w21{width:101.472000pt;}
.w1a{width:112.672000pt;}
.w1b{width:113.760000pt;}
.w22{width:115.840000pt;}
.w15{width:119.200000pt;}
.w5{width:135.066667pt;}
.wb{width:137.440000pt;}
.w11{width:137.760000pt;}
.w14{width:137.786667pt;}
.w10{width:137.920000pt;}
.wd{width:143.066667pt;}
.w23{width:153.626667pt;}
.wc{width:180.986667pt;}
.w16{width:181.946667pt;}
.wa{width:186.146667pt;}
.w1c{width:193.466667pt;}
.w8{width:198.626667pt;}
.w13{width:208.706667pt;}
.w19{width:237.826667pt;}
.w20{width:276.546667pt;}
.wf{width:370.333333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w12{width:647.333333pt;}
.we{width:648.613333pt;}
.w7{width:649.893333pt;}
.w1f{width:659.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.592000pt;}
.x2{left:7.712000pt;}
.xb{left:11.872000pt;}
.xc{left:63.866667pt;}
.x1{left:72.000000pt;}
.x16{left:73.280000pt;}
.xe{left:77.786667pt;}
.x4{left:87.226667pt;}
.x29{left:96.031988pt;}
.x1a{left:102.111988pt;}
.x1f{left:110.111988pt;}
.xd{left:132.026667pt;}
.xf{left:191.266667pt;}
.x5{left:207.066667pt;}
.x15{left:226.746655pt;}
.x8{left:241.986667pt;}
.x11{left:249.506655pt;}
.x12{left:259.106667pt;}
.x10{left:270.626667pt;}
.x1b{left:281.666667pt;}
.x6{left:295.106667pt;}
.x20{left:310.946667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x24{left:349.666667pt;}
.x28{left:352.066655pt;}
.x9{left:390.666667pt;}
.x13{left:396.866667pt;}
.x1c{left:419.773333pt;}
.x21{left:423.933333pt;}
.x18{left:444.253333pt;}
.x25{left:451.453333pt;}
.x22{left:538.173333pt;}
.x1d{left:539.293333pt;}
.x26{left:567.613333pt;}
.x14{left:578.173333pt;}
.x19{left:582.853333pt;}
.x1e{left:627.333333pt;}
.x23{left:631.653333pt;}
.x27{left:644.613333pt;}
.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; }
  