
    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_5234c10494dcfb2d6232d09c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d460c16b3c878154e315fcfd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_659f93f549ac19d976dd5b6c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_9e344ae0ffce565eb5640768.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_ab89401297252787ec4847a3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_d2fd3fdf27c6e827c39384a6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.828000;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_09c5fa01d5cf268187f84fc7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_150a6db565991a297e4ece05.woff')format("woff");}.ff8{font-family:ff8;line-height:0.822000;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_20fdf11d04bcb4d2a7abf003.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_e70bf5b9dc013798c1ad1fc1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_08dd9e4018620367740667c7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_244d189c8c807b77cbb8f7de.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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_000dbfcb858feb2dfc055ef8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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);}
.v4{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:172.800000px;}
.ls13{letter-spacing:-4.392000px;}
.ls22{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.504000px;}
.ls36{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls1a{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.lse{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.936000px;}
.ls24{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.152000px;}
.ls32{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.512000px;}
.ls28{letter-spacing:3.096000px;}
.ls27{letter-spacing:3.888000px;}
.ls33{letter-spacing:4.060800px;}
.ls2{letter-spacing:4.260000px;}
.ls2a{letter-spacing:4.392000px;}
.ls4{letter-spacing:4.560000px;}
.ls35{letter-spacing:4.752000px;}
.ls2b{letter-spacing:5.112000px;}
.ls29{letter-spacing:5.472000px;}
.ls1b{letter-spacing:5.976000px;}
.ls0{letter-spacing:8.436000px;}
.ls11{letter-spacing:8.460000px;}
.ls1c{letter-spacing:9.144000px;}
.ls5{letter-spacing:10.256850px;}
.ls3{letter-spacing:10.740000px;}
.ls2d{letter-spacing:11.059200px;}
.ls1{letter-spacing:150.360000px;}
.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;}
}
.ws6{word-spacing:-75.180000px;}
.ws4f{word-spacing:-25.320000px;}
.ws36{word-spacing:-20.232000px;}
.ws49{word-spacing:-19.224000px;}
.ws4c{word-spacing:-18.792000px;}
.ws31{word-spacing:-18.720000px;}
.ws3e{word-spacing:-18.648000px;}
.ws40{word-spacing:-18.576000px;}
.ws46{word-spacing:-18.504000px;}
.ws25{word-spacing:-18.432000px;}
.ws38{word-spacing:-18.360000px;}
.ws23{word-spacing:-18.288000px;}
.ws2e{word-spacing:-18.216000px;}
.ws30{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws26{word-spacing:-18.036000px;}
.ws1d{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.928000px;}
.ws2d{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws1c{word-spacing:-17.712000px;}
.ws39{word-spacing:-17.640000px;}
.ws2f{word-spacing:-17.568000px;}
.ws2{word-spacing:-17.424000px;}
.ws1b{word-spacing:-17.352000px;}
.ws3{word-spacing:-17.280000px;}
.ws47{word-spacing:-17.208000px;}
.ws3f{word-spacing:-17.136000px;}
.ws4d{word-spacing:-17.064000px;}
.ws24{word-spacing:-16.992000px;}
.ws1{word-spacing:-16.860000px;}
.ws27{word-spacing:-16.776000px;}
.ws44{word-spacing:-16.704000px;}
.ws54{word-spacing:-16.560000px;}
.ws53{word-spacing:-14.520000px;}
.ws4{word-spacing:-14.162400px;}
.ws11{word-spacing:-13.392000px;}
.ws50{word-spacing:-12.336000px;}
.ws45{word-spacing:-11.856000px;}
.ws10{word-spacing:-8.496000px;}
.ws19{word-spacing:-8.460000px;}
.ws28{word-spacing:-5.976000px;}
.ws3a{word-spacing:-5.472000px;}
.ws3c{word-spacing:-5.112000px;}
.ws51{word-spacing:-4.752000px;}
.ws37{word-spacing:-3.888000px;}
.ws4b{word-spacing:-1.512000px;}
.ws4a{word-spacing:-1.440000px;}
.ws4e{word-spacing:-1.152000px;}
.ws48{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.008000px;}
.ws43{word-spacing:-0.936000px;}
.ws3d{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.792000px;}
.ws2b{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.504000px;}
.ws34{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.360000px;}
.ws18{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.wse{word-spacing:0.144000px;}
.wsc{word-spacing:0.216000px;}
.ws32{word-spacing:0.288000px;}
.ws56{word-spacing:0.300000px;}
.ws9{word-spacing:0.360000px;}
.ws1e{word-spacing:0.432000px;}
.ws52{word-spacing:0.480000px;}
.wsb{word-spacing:0.504000px;}
.wsf{word-spacing:0.576000px;}
.ws42{word-spacing:0.648000px;}
.ws41{word-spacing:0.720000px;}
.ws2a{word-spacing:0.792000px;}
.ws29{word-spacing:0.936000px;}
.ws3b{word-spacing:1.008000px;}
.wsd{word-spacing:1.080000px;}
.ws2c{word-spacing:1.152000px;}
.ws55{word-spacing:1.440000px;}
.ws7{word-spacing:1.800000px;}
.ws8{word-spacing:2.592000px;}
.ws14{word-spacing:4.200000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._16{margin-left:-17.646000px;}
._14{margin-left:-15.156000px;}
._17{margin-left:-12.825600px;}
._1c{margin-left:-10.512000px;}
._19{margin-left:-9.170400px;}
._10{margin-left:-7.950000px;}
._1{margin-left:-6.792000px;}
._15{margin-left:-5.766000px;}
._c{margin-left:-4.707600px;}
._18{margin-left:-3.690000px;}
._2{margin-left:-2.688000px;}
._7{margin-left:-1.464000px;}
._a{width:1.044000px;}
._4{width:2.124000px;}
._3{width:3.618000px;}
._0{width:5.166000px;}
._8{width:6.172800px;}
._5{width:7.824000px;}
._6{width:9.144000px;}
._9{width:10.483200px;}
._e{width:11.709600px;}
._f{width:13.392000px;}
._11{width:14.740800px;}
._13{width:15.828000px;}
._12{width:16.987200px;}
._b{width:31.646100px;}
._1d{width:54.198000px;}
._1a{width:60.288000px;}
._1b{width:73.140000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:410.475000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y22{bottom:117.000000px;}
.ya7{bottom:118.014000px;}
.y69{bottom:118.110000px;}
.yfc{bottom:119.322000px;}
.ycf{bottom:120.504000px;}
.y45{bottom:121.207500px;}
.y21{bottom:132.000000px;}
.yce{bottom:135.648000px;}
.y8c{bottom:136.207500px;}
.yfb{bottom:138.372000px;}
.y44{bottom:139.500000px;}
.ya6{bottom:141.108000px;}
.y68{bottom:141.204000px;}
.ycd{bottom:150.792000px;}
.y20{bottom:151.207500px;}
.yfa{bottom:157.422000px;}
.y43{bottom:158.707500px;}
.y92{bottom:162.000000px;}
.ya5{bottom:164.202000px;}
.y67{bottom:164.298000px;}
.ycc{bottom:165.936000px;}
.y8b{bottom:176.124000px;}
.yf9{bottom:176.472000px;}
.y42{bottom:177.000000px;}
.ycb{bottom:181.080000px;}
.y91{bottom:184.500000px;}
.ya4{bottom:187.296000px;}
.y66{bottom:187.392000px;}
.y1f{bottom:189.668550px;}
.y41{bottom:192.000000px;}
.yf8{bottom:195.522000px;}
.yca{bottom:196.224000px;}
.y8a{bottom:199.218000px;}
.y90{bottom:207.000000px;}
.ya3{bottom:210.390000px;}
.y65{bottom:210.486000px;}
.y40{bottom:211.207500px;}
.y1e{bottom:211.268550px;}
.yf7{bottom:214.572000px;}
.yc9{bottom:217.752000px;}
.y89{bottom:221.862000px;}
.y8f{bottom:229.500000px;}
.y1d{bottom:232.868550px;}
.ya2{bottom:233.484000px;}
.y64{bottom:233.580000px;}
.yf6{bottom:233.622000px;}
.y88{bottom:244.506000px;}
.y3f{bottom:251.406000px;}
.y8e{bottom:252.000000px;}
.yf5{bottom:252.672000px;}
.y1c{bottom:254.468550px;}
.ya1{bottom:256.578000px;}
.y63{bottom:256.674000px;}
.yc8{bottom:263.052000px;}
.y87{bottom:267.108000px;}
.yf4{bottom:271.722000px;}
.y3e{bottom:274.500000px;}
.y1b{bottom:276.068550px;}
.yc7{bottom:278.208000px;}
.ya0{bottom:279.672000px;}
.y62{bottom:279.768000px;}
.y86{bottom:289.752000px;}
.yf3{bottom:290.772000px;}
.yc6{bottom:293.352000px;}
.y3d{bottom:297.000000px;}
.y1a{bottom:297.668550px;}
.y9f{bottom:302.766000px;}
.y61{bottom:302.862000px;}
.yc5{bottom:308.496000px;}
.yf2{bottom:309.822000px;}
.y85{bottom:312.396000px;}
.y19{bottom:319.268550px;}
.y3c{bottom:319.500000px;}
.yc4{bottom:323.640000px;}
.y9e{bottom:325.860000px;}
.y60{bottom:325.956000px;}
.yf1{bottom:328.872000px;}
.y84{bottom:335.040000px;}
.yc3{bottom:338.784000px;}
.y18{bottom:340.868550px;}
.y3b{bottom:342.000000px;}
.yf0{bottom:347.922000px;}
.y9d{bottom:348.954000px;}
.y5f{bottom:349.050000px;}
.yc2{bottom:353.940000px;}
.y83{bottom:357.684000px;}
.y17{bottom:362.468550px;}
.y3a{bottom:364.500000px;}
.yef{bottom:366.972000px;}
.yc1{bottom:369.084000px;}
.y9c{bottom:372.048000px;}
.y5e{bottom:372.144000px;}
.y82{bottom:380.328000px;}
.y16{bottom:384.068550px;}
.yc0{bottom:384.228000px;}
.yee{bottom:386.022000px;}
.y39{bottom:387.000000px;}
.y9b{bottom:395.142000px;}
.y5d{bottom:395.238000px;}
.ybf{bottom:399.372000px;}
.y81{bottom:402.972000px;}
.yed{bottom:405.072000px;}
.y15{bottom:405.668550px;}
.y38{bottom:409.500000px;}
.ybe{bottom:414.516000px;}
.y9a{bottom:418.236000px;}
.y5c{bottom:418.332000px;}
.yec{bottom:424.122000px;}
.y80{bottom:425.616000px;}
.y14{bottom:427.268550px;}
.ybd{bottom:429.672000px;}
.y37{bottom:432.000000px;}
.y99{bottom:441.330000px;}
.y5b{bottom:441.426000px;}
.yeb{bottom:443.172000px;}
.y7f{bottom:448.260000px;}
.y13{bottom:448.868550px;}
.ybc{bottom:451.200000px;}
.y36{bottom:454.500000px;}
.yea{bottom:462.222000px;}
.y98{bottom:464.424000px;}
.y5a{bottom:464.520000px;}
.y12{bottom:470.468550px;}
.y7e{bottom:470.904000px;}
.y35{bottom:477.000000px;}
.ye9{bottom:481.272000px;}
.y97{bottom:487.518000px;}
.y59{bottom:487.614000px;}
.y11{bottom:492.068550px;}
.y7d{bottom:493.548000px;}
.ybb{bottom:496.614000px;}
.y34{bottom:499.500000px;}
.ye8{bottom:500.322000px;}
.y96{bottom:510.612000px;}
.y58{bottom:510.708000px;}
.y10{bottom:513.668550px;}
.y7c{bottom:516.192000px;}
.yba{bottom:519.258000px;}
.ye7{bottom:519.372000px;}
.y33{bottom:522.000000px;}
.y95{bottom:533.706000px;}
.y57{bottom:533.802000px;}
.yf{bottom:535.268550px;}
.ye6{bottom:538.422000px;}
.y7b{bottom:538.998000px;}
.yb9{bottom:541.902000px;}
.y32{bottom:544.500000px;}
.y94{bottom:556.800000px;}
.ye{bottom:556.868550px;}
.y56{bottom:556.896000px;}
.ye5{bottom:557.472000px;}
.y7a{bottom:561.804000px;}
.yb8{bottom:564.546000px;}
.y31{bottom:567.000000px;}
.ye4{bottom:576.522000px;}
.yd{bottom:578.468550px;}
.y93{bottom:579.900000px;}
.y55{bottom:579.990000px;}
.y79{bottom:584.610000px;}
.yb7{bottom:587.190000px;}
.y30{bottom:589.500000px;}
.ye3{bottom:595.572000px;}
.yc{bottom:600.068550px;}
.y54{bottom:603.084000px;}
.y78{bottom:607.416000px;}
.yb6{bottom:609.834000px;}
.y2f{bottom:612.000000px;}
.ye2{bottom:614.622000px;}
.ya{bottom:621.668550px;}
.y53{bottom:626.178000px;}
.y77{bottom:630.222000px;}
.yb5{bottom:632.478000px;}
.ye1{bottom:633.672000px;}
.y2e{bottom:634.500000px;}
.yb{bottom:643.268550px;}
.y52{bottom:649.272000px;}
.y76{bottom:653.028000px;}
.yb4{bottom:655.122000px;}
.y2d{bottom:657.000000px;}
.ye0{bottom:659.100000px;}
.y51{bottom:672.366000px;}
.y75{bottom:675.834000px;}
.yb3{bottom:677.766000px;}
.y2c{bottom:679.500000px;}
.y106{bottom:683.250000px;}
.y50{bottom:695.460000px;}
.y74{bottom:698.640000px;}
.yb2{bottom:700.410000px;}
.y2b{bottom:702.000000px;}
.ydf{bottom:704.700000px;}
.y9{bottom:708.968550px;}
.y4f{bottom:718.554000px;}
.yde{bottom:720.000000px;}
.y105{bottom:720.750000px;}
.y73{bottom:721.446000px;}
.yb1{bottom:723.054000px;}
.y2a{bottom:724.500000px;}
.y8{bottom:727.718550px;}
.ydd{bottom:735.300000px;}
.y104{bottom:739.500000px;}
.y4e{bottom:741.648000px;}
.y72{bottom:744.252000px;}
.yb0{bottom:745.698000px;}
.y29{bottom:747.000000px;}
.ydc{bottom:750.600000px;}
.y4d{bottom:764.742000px;}
.ydb{bottom:765.900000px;}
.y71{bottom:767.058000px;}
.yaf{bottom:768.342000px;}
.y8d{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.y103{bottom:777.000000px;}
.yda{bottom:781.200000px;}
.y4c{bottom:787.836000px;}
.y70{bottom:789.864000px;}
.yae{bottom:790.986000px;}
.y28{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.yd9{bottom:796.500000px;}
.y4b{bottom:810.930000px;}
.yd8{bottom:811.800000px;}
.y6f{bottom:812.670000px;}
.yad{bottom:813.630000px;}
.y27{bottom:814.500000px;}
.y102{bottom:818.250000px;}
.yd7{bottom:827.100000px;}
.y4a{bottom:834.024000px;}
.y6e{bottom:835.476000px;}
.yac{bottom:836.274000px;}
.y26{bottom:837.000000px;}
.yd6{bottom:842.400000px;}
.y101{bottom:855.750000px;}
.y49{bottom:857.118000px;}
.yd5{bottom:857.700000px;}
.y6d{bottom:858.282000px;}
.yab{bottom:858.918000px;}
.y5{bottom:859.500000px;}
.yd4{bottom:873.000000px;}
.y100{bottom:874.500000px;}
.y48{bottom:880.212000px;}
.y6c{bottom:881.088000px;}
.yaa{bottom:881.562000px;}
.y25{bottom:882.000000px;}
.yd3{bottom:888.300000px;}
.y4{bottom:889.500000px;}
.yff{bottom:893.250000px;}
.y47{bottom:903.306000px;}
.yd2{bottom:903.600000px;}
.y6b{bottom:903.894000px;}
.ya9{bottom:904.206000px;}
.y24{bottom:904.500000px;}
.yfe{bottom:912.000000px;}
.yd1{bottom:918.900000px;}
.y46{bottom:926.400000px;}
.y6a{bottom:926.700000px;}
.ya8{bottom:926.850000px;}
.y23{bottom:927.000000px;}
.yfd{bottom:930.750000px;}
.yd0{bottom:934.200000px;}
.h7{height:30.313623px;}
.hb{height:39.072000px;}
.h9{height:39.990234px;}
.h8{height:40.757812px;}
.h3{height:49.200000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h6{height:66.555703px;}
.ha{height:66.723703px;}
.h2{height:101.894531px;}
.h5{height:287.332500px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.381950px;}
.x4{left:106.391250px;}
.x7{left:112.500000px;}
.x8{left:127.381950px;}
.x2{left:135.000000px;}
.x3{left:261.000000px;}
.x6{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:153.600000pt;}
.ls13{letter-spacing:-3.904000pt;}
.ls22{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls36{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.832000pt;}
.ls24{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.024000pt;}
.ls32{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.344000pt;}
.ls28{letter-spacing:2.752000pt;}
.ls27{letter-spacing:3.456000pt;}
.ls33{letter-spacing:3.609600pt;}
.ls2{letter-spacing:3.786667pt;}
.ls2a{letter-spacing:3.904000pt;}
.ls4{letter-spacing:4.053333pt;}
.ls35{letter-spacing:4.224000pt;}
.ls2b{letter-spacing:4.544000pt;}
.ls29{letter-spacing:4.864000pt;}
.ls1b{letter-spacing:5.312000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls11{letter-spacing:7.520000pt;}
.ls1c{letter-spacing:8.128000pt;}
.ls5{letter-spacing:9.117200pt;}
.ls3{letter-spacing:9.546667pt;}
.ls2d{letter-spacing:9.830400pt;}
.ls1{letter-spacing:133.653333pt;}
.ws6{word-spacing:-66.826667pt;}
.ws4f{word-spacing:-22.506667pt;}
.ws36{word-spacing:-17.984000pt;}
.ws49{word-spacing:-17.088000pt;}
.ws4c{word-spacing:-16.704000pt;}
.ws31{word-spacing:-16.640000pt;}
.ws3e{word-spacing:-16.576000pt;}
.ws40{word-spacing:-16.512000pt;}
.ws46{word-spacing:-16.448000pt;}
.ws25{word-spacing:-16.384000pt;}
.ws38{word-spacing:-16.320000pt;}
.ws23{word-spacing:-16.256000pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws26{word-spacing:-16.032000pt;}
.ws1d{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.936000pt;}
.ws2d{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws1c{word-spacing:-15.744000pt;}
.ws39{word-spacing:-15.680000pt;}
.ws2f{word-spacing:-15.616000pt;}
.ws2{word-spacing:-15.488000pt;}
.ws1b{word-spacing:-15.424000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws47{word-spacing:-15.296000pt;}
.ws3f{word-spacing:-15.232000pt;}
.ws4d{word-spacing:-15.168000pt;}
.ws24{word-spacing:-15.104000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws27{word-spacing:-14.912000pt;}
.ws44{word-spacing:-14.848000pt;}
.ws54{word-spacing:-14.720000pt;}
.ws53{word-spacing:-12.906667pt;}
.ws4{word-spacing:-12.588800pt;}
.ws11{word-spacing:-11.904000pt;}
.ws50{word-spacing:-10.965333pt;}
.ws45{word-spacing:-10.538667pt;}
.ws10{word-spacing:-7.552000pt;}
.ws19{word-spacing:-7.520000pt;}
.ws28{word-spacing:-5.312000pt;}
.ws3a{word-spacing:-4.864000pt;}
.ws3c{word-spacing:-4.544000pt;}
.ws51{word-spacing:-4.224000pt;}
.ws37{word-spacing:-3.456000pt;}
.ws4b{word-spacing:-1.344000pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws4e{word-spacing:-1.024000pt;}
.ws48{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.896000pt;}
.ws43{word-spacing:-0.832000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.704000pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.448000pt;}
.ws34{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws18{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.wse{word-spacing:0.128000pt;}
.wsc{word-spacing:0.192000pt;}
.ws32{word-spacing:0.256000pt;}
.ws56{word-spacing:0.266667pt;}
.ws9{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws52{word-spacing:0.426667pt;}
.wsb{word-spacing:0.448000pt;}
.wsf{word-spacing:0.512000pt;}
.ws42{word-spacing:0.576000pt;}
.ws41{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.704000pt;}
.ws29{word-spacing:0.832000pt;}
.ws3b{word-spacing:0.896000pt;}
.wsd{word-spacing:0.960000pt;}
.ws2c{word-spacing:1.024000pt;}
.ws55{word-spacing:1.280000pt;}
.ws7{word-spacing:1.600000pt;}
.ws8{word-spacing:2.304000pt;}
.ws14{word-spacing:3.733333pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._16{margin-left:-15.685333pt;}
._14{margin-left:-13.472000pt;}
._17{margin-left:-11.400533pt;}
._1c{margin-left:-9.344000pt;}
._19{margin-left:-8.151467pt;}
._10{margin-left:-7.066667pt;}
._1{margin-left:-6.037333pt;}
._15{margin-left:-5.125333pt;}
._c{margin-left:-4.184533pt;}
._18{margin-left:-3.280000pt;}
._2{margin-left:-2.389333pt;}
._7{margin-left:-1.301333pt;}
._a{width:0.928000pt;}
._4{width:1.888000pt;}
._3{width:3.216000pt;}
._0{width:4.592000pt;}
._8{width:5.486933pt;}
._5{width:6.954667pt;}
._6{width:8.128000pt;}
._9{width:9.318400pt;}
._e{width:10.408533pt;}
._f{width:11.904000pt;}
._11{width:13.102933pt;}
._13{width:14.069333pt;}
._12{width:15.099733pt;}
._b{width:28.129867pt;}
._1d{width:48.176000pt;}
._1a{width:53.589333pt;}
._1b{width:65.013333pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:364.866667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y22{bottom:104.000000pt;}
.ya7{bottom:104.901333pt;}
.y69{bottom:104.986667pt;}
.yfc{bottom:106.064000pt;}
.ycf{bottom:107.114667pt;}
.y45{bottom:107.740000pt;}
.y21{bottom:117.333333pt;}
.yce{bottom:120.576000pt;}
.y8c{bottom:121.073333pt;}
.yfb{bottom:122.997333pt;}
.y44{bottom:124.000000pt;}
.ya6{bottom:125.429333pt;}
.y68{bottom:125.514667pt;}
.ycd{bottom:134.037333pt;}
.y20{bottom:134.406667pt;}
.yfa{bottom:139.930667pt;}
.y43{bottom:141.073333pt;}
.y92{bottom:144.000000pt;}
.ya5{bottom:145.957333pt;}
.y67{bottom:146.042667pt;}
.ycc{bottom:147.498667pt;}
.y8b{bottom:156.554667pt;}
.yf9{bottom:156.864000pt;}
.y42{bottom:157.333333pt;}
.ycb{bottom:160.960000pt;}
.y91{bottom:164.000000pt;}
.ya4{bottom:166.485333pt;}
.y66{bottom:166.570667pt;}
.y1f{bottom:168.594267pt;}
.y41{bottom:170.666667pt;}
.yf8{bottom:173.797333pt;}
.yca{bottom:174.421333pt;}
.y8a{bottom:177.082667pt;}
.y90{bottom:184.000000pt;}
.ya3{bottom:187.013333pt;}
.y65{bottom:187.098667pt;}
.y40{bottom:187.740000pt;}
.y1e{bottom:187.794267pt;}
.yf7{bottom:190.730667pt;}
.yc9{bottom:193.557333pt;}
.y89{bottom:197.210667pt;}
.y8f{bottom:204.000000pt;}
.y1d{bottom:206.994267pt;}
.ya2{bottom:207.541333pt;}
.y64{bottom:207.626667pt;}
.yf6{bottom:207.664000pt;}
.y88{bottom:217.338667pt;}
.y3f{bottom:223.472000pt;}
.y8e{bottom:224.000000pt;}
.yf5{bottom:224.597333pt;}
.y1c{bottom:226.194267pt;}
.ya1{bottom:228.069333pt;}
.y63{bottom:228.154667pt;}
.yc8{bottom:233.824000pt;}
.y87{bottom:237.429333pt;}
.yf4{bottom:241.530667pt;}
.y3e{bottom:244.000000pt;}
.y1b{bottom:245.394267pt;}
.yc7{bottom:247.296000pt;}
.ya0{bottom:248.597333pt;}
.y62{bottom:248.682667pt;}
.y86{bottom:257.557333pt;}
.yf3{bottom:258.464000pt;}
.yc6{bottom:260.757333pt;}
.y3d{bottom:264.000000pt;}
.y1a{bottom:264.594267pt;}
.y9f{bottom:269.125333pt;}
.y61{bottom:269.210667pt;}
.yc5{bottom:274.218667pt;}
.yf2{bottom:275.397333pt;}
.y85{bottom:277.685333pt;}
.y19{bottom:283.794267pt;}
.y3c{bottom:284.000000pt;}
.yc4{bottom:287.680000pt;}
.y9e{bottom:289.653333pt;}
.y60{bottom:289.738667pt;}
.yf1{bottom:292.330667pt;}
.y84{bottom:297.813333pt;}
.yc3{bottom:301.141333pt;}
.y18{bottom:302.994267pt;}
.y3b{bottom:304.000000pt;}
.yf0{bottom:309.264000pt;}
.y9d{bottom:310.181333pt;}
.y5f{bottom:310.266667pt;}
.yc2{bottom:314.613333pt;}
.y83{bottom:317.941333pt;}
.y17{bottom:322.194267pt;}
.y3a{bottom:324.000000pt;}
.yef{bottom:326.197333pt;}
.yc1{bottom:328.074667pt;}
.y9c{bottom:330.709333pt;}
.y5e{bottom:330.794667pt;}
.y82{bottom:338.069333pt;}
.y16{bottom:341.394267pt;}
.yc0{bottom:341.536000pt;}
.yee{bottom:343.130667pt;}
.y39{bottom:344.000000pt;}
.y9b{bottom:351.237333pt;}
.y5d{bottom:351.322667pt;}
.ybf{bottom:354.997333pt;}
.y81{bottom:358.197333pt;}
.yed{bottom:360.064000pt;}
.y15{bottom:360.594267pt;}
.y38{bottom:364.000000pt;}
.ybe{bottom:368.458667pt;}
.y9a{bottom:371.765333pt;}
.y5c{bottom:371.850667pt;}
.yec{bottom:376.997333pt;}
.y80{bottom:378.325333pt;}
.y14{bottom:379.794267pt;}
.ybd{bottom:381.930667pt;}
.y37{bottom:384.000000pt;}
.y99{bottom:392.293333pt;}
.y5b{bottom:392.378667pt;}
.yeb{bottom:393.930667pt;}
.y7f{bottom:398.453333pt;}
.y13{bottom:398.994267pt;}
.ybc{bottom:401.066667pt;}
.y36{bottom:404.000000pt;}
.yea{bottom:410.864000pt;}
.y98{bottom:412.821333pt;}
.y5a{bottom:412.906667pt;}
.y12{bottom:418.194267pt;}
.y7e{bottom:418.581333pt;}
.y35{bottom:424.000000pt;}
.ye9{bottom:427.797333pt;}
.y97{bottom:433.349333pt;}
.y59{bottom:433.434667pt;}
.y11{bottom:437.394267pt;}
.y7d{bottom:438.709333pt;}
.ybb{bottom:441.434667pt;}
.y34{bottom:444.000000pt;}
.ye8{bottom:444.730667pt;}
.y96{bottom:453.877333pt;}
.y58{bottom:453.962667pt;}
.y10{bottom:456.594267pt;}
.y7c{bottom:458.837333pt;}
.yba{bottom:461.562667pt;}
.ye7{bottom:461.664000pt;}
.y33{bottom:464.000000pt;}
.y95{bottom:474.405333pt;}
.y57{bottom:474.490667pt;}
.yf{bottom:475.794267pt;}
.ye6{bottom:478.597333pt;}
.y7b{bottom:479.109333pt;}
.yb9{bottom:481.690667pt;}
.y32{bottom:484.000000pt;}
.y94{bottom:494.933333pt;}
.ye{bottom:494.994267pt;}
.y56{bottom:495.018667pt;}
.ye5{bottom:495.530667pt;}
.y7a{bottom:499.381333pt;}
.yb8{bottom:501.818667pt;}
.y31{bottom:504.000000pt;}
.ye4{bottom:512.464000pt;}
.yd{bottom:514.194267pt;}
.y93{bottom:515.466667pt;}
.y55{bottom:515.546667pt;}
.y79{bottom:519.653333pt;}
.yb7{bottom:521.946667pt;}
.y30{bottom:524.000000pt;}
.ye3{bottom:529.397333pt;}
.yc{bottom:533.394267pt;}
.y54{bottom:536.074667pt;}
.y78{bottom:539.925333pt;}
.yb6{bottom:542.074667pt;}
.y2f{bottom:544.000000pt;}
.ye2{bottom:546.330667pt;}
.ya{bottom:552.594267pt;}
.y53{bottom:556.602667pt;}
.y77{bottom:560.197333pt;}
.yb5{bottom:562.202667pt;}
.ye1{bottom:563.264000pt;}
.y2e{bottom:564.000000pt;}
.yb{bottom:571.794267pt;}
.y52{bottom:577.130667pt;}
.y76{bottom:580.469333pt;}
.yb4{bottom:582.330667pt;}
.y2d{bottom:584.000000pt;}
.ye0{bottom:585.866667pt;}
.y51{bottom:597.658667pt;}
.y75{bottom:600.741333pt;}
.yb3{bottom:602.458667pt;}
.y2c{bottom:604.000000pt;}
.y106{bottom:607.333333pt;}
.y50{bottom:618.186667pt;}
.y74{bottom:621.013333pt;}
.yb2{bottom:622.586667pt;}
.y2b{bottom:624.000000pt;}
.ydf{bottom:626.400000pt;}
.y9{bottom:630.194267pt;}
.y4f{bottom:638.714667pt;}
.yde{bottom:640.000000pt;}
.y105{bottom:640.666667pt;}
.y73{bottom:641.285333pt;}
.yb1{bottom:642.714667pt;}
.y2a{bottom:644.000000pt;}
.y8{bottom:646.860933pt;}
.ydd{bottom:653.600000pt;}
.y104{bottom:657.333333pt;}
.y4e{bottom:659.242667pt;}
.y72{bottom:661.557333pt;}
.yb0{bottom:662.842667pt;}
.y29{bottom:664.000000pt;}
.ydc{bottom:667.200000pt;}
.y4d{bottom:679.770667pt;}
.ydb{bottom:680.800000pt;}
.y71{bottom:681.829333pt;}
.yaf{bottom:682.970667pt;}
.y8d{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.y103{bottom:690.666667pt;}
.yda{bottom:694.400000pt;}
.y4c{bottom:700.298667pt;}
.y70{bottom:702.101333pt;}
.yae{bottom:703.098667pt;}
.y28{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.yd9{bottom:708.000000pt;}
.y4b{bottom:720.826667pt;}
.yd8{bottom:721.600000pt;}
.y6f{bottom:722.373333pt;}
.yad{bottom:723.226667pt;}
.y27{bottom:724.000000pt;}
.y102{bottom:727.333333pt;}
.yd7{bottom:735.200000pt;}
.y4a{bottom:741.354667pt;}
.y6e{bottom:742.645333pt;}
.yac{bottom:743.354667pt;}
.y26{bottom:744.000000pt;}
.yd6{bottom:748.800000pt;}
.y101{bottom:760.666667pt;}
.y49{bottom:761.882667pt;}
.yd5{bottom:762.400000pt;}
.y6d{bottom:762.917333pt;}
.yab{bottom:763.482667pt;}
.y5{bottom:764.000000pt;}
.yd4{bottom:776.000000pt;}
.y100{bottom:777.333333pt;}
.y48{bottom:782.410667pt;}
.y6c{bottom:783.189333pt;}
.yaa{bottom:783.610667pt;}
.y25{bottom:784.000000pt;}
.yd3{bottom:789.600000pt;}
.y4{bottom:790.666667pt;}
.yff{bottom:794.000000pt;}
.y47{bottom:802.938667pt;}
.yd2{bottom:803.200000pt;}
.y6b{bottom:803.461333pt;}
.ya9{bottom:803.738667pt;}
.y24{bottom:804.000000pt;}
.yfe{bottom:810.666667pt;}
.yd1{bottom:816.800000pt;}
.y46{bottom:823.466667pt;}
.y6a{bottom:823.733333pt;}
.ya8{bottom:823.866667pt;}
.y23{bottom:824.000000pt;}
.yfd{bottom:827.333333pt;}
.yd0{bottom:830.400000pt;}
.h7{height:26.945443pt;}
.hb{height:34.730667pt;}
.h9{height:35.546875pt;}
.h8{height:36.229167pt;}
.h3{height:43.733333pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h6{height:59.160625pt;}
.ha{height:59.309958pt;}
.h2{height:90.572917pt;}
.h5{height:255.406667pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.228400pt;}
.x4{left:94.570000pt;}
.x7{left:100.000000pt;}
.x8{left:113.228400pt;}
.x2{left:120.000000pt;}
.x3{left:232.000000pt;}
.x6{left:556.250000pt;}
}




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