
    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_174dedc80249eecec859b008.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27c066bec76a42481c7499ca.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ccc5f81be9140f62d87c20ad.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_964e1cb747474facfa3383ad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4658303509dc098dbfec22b8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eb5aaeaa264bd8a76bbfb38e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.677246;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_1f472ea90f101cc9d361ba40.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_65ae696fa57a26bb87c84e50.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082520;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_de3c3ad1c8db0d7362b18dae.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-22.200000px;}
.v5{vertical-align:-14.400000px;}
.v6{vertical-align:-13.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.v1{vertical-align:86.400000px;}
.ls30{letter-spacing:-2.160000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls3a{letter-spacing:-0.462000px;}
.ls15{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.315000px;}
.ls13{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.063000px;}
.ls19{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.076800px;}
.ls1c{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.328800px;}
.ls6{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.410400px;}
.ls16{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.693000px;}
.ls26{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.726000px;}
.lse{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.512000px;}
.ls28{letter-spacing:1.872000px;}
.ls36{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls27{letter-spacing:4.420800px;}
.lsc{letter-spacing:4.536000px;}
.ls4{letter-spacing:5.272500px;}
.ls22{letter-spacing:5.760000px;}
.ls31{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.ls1{letter-spacing:6.600000px;}
.ls18{letter-spacing:7.755300px;}
.ls21{letter-spacing:9.432000px;}
.ls2e{letter-spacing:9.475200px;}
.ls5{letter-spacing:9.720000px;}
.ls1f{letter-spacing:10.080000px;}
.ls2{letter-spacing:10.200000px;}
.ls35{letter-spacing:10.494000px;}
.ls34{letter-spacing:10.956000px;}
.ls2b{letter-spacing:11.016000px;}
.ls37{letter-spacing:11.682000px;}
.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;}
}
.ws27{word-spacing:-20.880000px;}
.ws25{word-spacing:-20.808000px;}
.ws21{word-spacing:-20.304000px;}
.ws17{word-spacing:-20.232000px;}
.ws2e{word-spacing:-18.576000px;}
.ws3b{word-spacing:-18.546000px;}
.ws2f{word-spacing:-18.432000px;}
.ws26{word-spacing:-18.360000px;}
.ws2d{word-spacing:-18.288000px;}
.ws30{word-spacing:-18.216000px;}
.ws32{word-spacing:-18.144000px;}
.ws22{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.703000px;}
.ws2c{word-spacing:-17.496000px;}
.ws2{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.860000px;}
.ws3f{word-spacing:-16.302000px;}
.ws18{word-spacing:-16.017000px;}
.ws40{word-spacing:-14.820000px;}
.ws3{word-spacing:-12.139200px;}
.ws31{word-spacing:-11.923200px;}
.ws46{word-spacing:-11.682000px;}
.ws3e{word-spacing:-11.127600px;}
.ws35{word-spacing:-11.016000px;}
.ws43{word-spacing:-10.956000px;}
.ws44{word-spacing:-10.494000px;}
.ws7{word-spacing:-10.200000px;}
.ws6{word-spacing:-6.600000px;}
.ws8{word-spacing:-6.300000px;}
.ws3c{word-spacing:-6.000000px;}
.ws24{word-spacing:-5.040000px;}
.ws4{word-spacing:-4.200000px;}
.ws33{word-spacing:-1.512000px;}
.ws2a{word-spacing:-0.936000px;}
.ws15{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.792000px;}
.ws47{word-spacing:-0.726000px;}
.ws36{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.693000px;}
.ws42{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.648000px;}
.wse{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.528000px;}
.wsd{word-spacing:-0.504000px;}
.ws1a{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.288000px;}
.wsf{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.126000px;}
.ws1f{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.063000px;}
.ws28{word-spacing:-0.043200px;}
.ws5{word-spacing:0.000000px;}
.ws23{word-spacing:0.057000px;}
.ws20{word-spacing:0.072000px;}
.ws12{word-spacing:0.144000px;}
.ws3d{word-spacing:0.264000px;}
.ws14{word-spacing:0.288000px;}
.ws1b{word-spacing:0.315000px;}
.wsa{word-spacing:0.360000px;}
.ws16{word-spacing:0.432000px;}
.ws45{word-spacing:0.462000px;}
.ws1c{word-spacing:0.504000px;}
.ws34{word-spacing:0.576000px;}
.ws38{word-spacing:0.720000px;}
.ws37{word-spacing:0.864000px;}
.ws29{word-spacing:1.296000px;}
.ws19{word-spacing:1.440000px;}
.ws39{word-spacing:2.160000px;}
.ws3a{word-spacing:3.672000px;}
.ws2b{word-spacing:7.632000px;}
._18{margin-left:-19.764000px;}
._7{margin-left:-16.920000px;}
._17{margin-left:-14.774400px;}
._b{margin-left:-12.511800px;}
._9{margin-left:-10.475400px;}
._16{margin-left:-8.982000px;}
._12{margin-left:-7.872000px;}
._6{margin-left:-6.745200px;}
._a{margin-left:-5.497800px;}
._2{margin-left:-4.284000px;}
._0{margin-left:-3.150000px;}
._3{margin-left:-1.627200px;}
._4{width:1.228800px;}
._d{width:2.639700px;}
._1{width:4.200000px;}
._11{width:5.277600px;}
._c{width:6.300000px;}
._f{width:7.826400px;}
._e{width:9.393300px;}
._5{width:10.587000px;}
._13{width:11.738400px;}
._14{width:12.990600px;}
._15{width:14.466000px;}
._19{width:15.926400px;}
._8{width:17.401200px;}
._1a{width:21.007800px;}
._10{width:56.923200px;}
.fc2{color:rgb(0,177,243);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs6{font-size:210.891000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y6b{bottom:140.307450px;}
.y90{bottom:140.308950px;}
.y20{bottom:140.313450px;}
.y45{bottom:144.930300px;}
.yd3{bottom:145.810350px;}
.yb4{bottom:145.864950px;}
.y6a{bottom:156.808950px;}
.y8f{bottom:156.810450px;}
.yb3{bottom:156.813450px;}
.y1f{bottom:162.364950px;}
.yd2{bottom:165.610350px;}
.y44{bottom:166.674300px;}
.y69{bottom:173.310450px;}
.y8e{bottom:173.311950px;}
.yb2{bottom:178.864950px;}
.yd1{bottom:185.410350px;}
.y43{bottom:188.418300px;}
.y68{bottom:189.811950px;}
.y8d{bottom:189.813450px;}
.ycd{bottom:193.314300px;}
.yd0{bottom:205.210350px;}
.y67{bottom:206.313450px;}
.y42{bottom:210.162300px;}
.y1e{bottom:211.133250px;}
.y8c{bottom:211.864950px;}
.ycc{bottom:214.914300px;}
.y8b{bottom:222.810450px;}
.yb1{bottom:224.904300px;}
.ycf{bottom:225.010350px;}
.y66{bottom:228.364950px;}
.y41{bottom:231.906300px;}
.y1d{bottom:232.877250px;}
.ycb{bottom:236.514300px;}
.y8a{bottom:239.311950px;}
.yb0{bottom:246.198300px;}
.yce{bottom:253.314300px;}
.y40{bottom:253.650300px;}
.y1c{bottom:254.477250px;}
.y89{bottom:255.813450px;}
.yca{bottom:258.114300px;}
.yaf{bottom:267.492300px;}
.y65{bottom:272.202450px;}
.y3f{bottom:275.394300px;}
.y1b{bottom:276.077250px;}
.y88{bottom:277.864950px;}
.yc9{bottom:279.714300px;}
.yae{bottom:288.786300px;}
.y64{bottom:293.802450px;}
.y3e{bottom:297.138300px;}
.y1a{bottom:297.677250px;}
.yc8{bottom:301.314300px;}
.yad{bottom:310.080300px;}
.y63{bottom:315.402450px;}
.y3d{bottom:318.882300px;}
.y19{bottom:319.277250px;}
.yc7{bottom:322.914300px;}
.y87{bottom:323.124450px;}
.yac{bottom:331.374300px;}
.y62{bottom:337.002450px;}
.y3c{bottom:340.626300px;}
.y18{bottom:340.877250px;}
.yc6{bottom:344.514300px;}
.y86{bottom:344.580450px;}
.yab{bottom:352.668300px;}
.y61{bottom:358.602450px;}
.y3b{bottom:362.370300px;}
.y17{bottom:362.477250px;}
.y85{bottom:366.036450px;}
.yc5{bottom:366.114300px;}
.yaa{bottom:373.962300px;}
.y60{bottom:380.202450px;}
.y16{bottom:384.077250px;}
.y3a{bottom:384.114300px;}
.y84{bottom:387.492450px;}
.yc4{bottom:387.714300px;}
.ya9{bottom:395.256300px;}
.y15{bottom:405.677250px;}
.y39{bottom:405.858300px;}
.y83{bottom:408.948450px;}
.yc3{bottom:409.314300px;}
.yec{bottom:411.511800px;}
.y5f{bottom:414.522450px;}
.ya8{bottom:416.550300px;}
.y14{bottom:427.277250px;}
.y38{bottom:427.602300px;}
.yeb{bottom:429.511800px;}
.y82{bottom:430.404450px;}
.yc2{bottom:430.914300px;}
.y5e{bottom:432.524700px;}
.ya7{bottom:437.844300px;}
.yea{bottom:447.511800px;}
.y13{bottom:448.877250px;}
.y37{bottom:449.346300px;}
.y5d{bottom:450.526950px;}
.y81{bottom:451.860450px;}
.yc1{bottom:452.514300px;}
.ya6{bottom:459.138300px;}
.ye9{bottom:465.511800px;}
.y5c{bottom:468.529200px;}
.y12{bottom:470.477250px;}
.y36{bottom:471.090300px;}
.y80{bottom:473.316450px;}
.yc0{bottom:474.114300px;}
.ya5{bottom:480.432300px;}
.y5b{bottom:486.531450px;}
.y11{bottom:492.077250px;}
.y35{bottom:492.834300px;}
.y7f{bottom:494.772450px;}
.ybf{bottom:495.714300px;}
.ya4{bottom:501.726300px;}
.y5a{bottom:504.533700px;}
.ye8{bottom:505.111800px;}
.y10{bottom:513.677250px;}
.y34{bottom:514.578300px;}
.y7e{bottom:516.228450px;}
.ybe{bottom:517.314300px;}
.y59{bottom:522.535950px;}
.ya3{bottom:523.020300px;}
.ye7{bottom:532.711800px;}
.yf{bottom:535.277250px;}
.y33{bottom:536.322300px;}
.y7d{bottom:537.684450px;}
.ybd{bottom:538.914300px;}
.y58{bottom:540.538200px;}
.ya2{bottom:544.410300px;}
.ye6{bottom:552.511800px;}
.y32{bottom:558.066300px;}
.y57{bottom:558.540450px;}
.y7c{bottom:559.140450px;}
.ybc{bottom:560.514300px;}
.ya1{bottom:565.704300px;}
.ye5{bottom:572.311800px;}
.y56{bottom:576.542700px;}
.y31{bottom:579.810300px;}
.y7b{bottom:580.596450px;}
.ybb{bottom:582.114300px;}
.ya0{bottom:586.998300px;}
.ye4{bottom:592.111800px;}
.y55{bottom:594.544950px;}
.ye{bottom:599.730300px;}
.y30{bottom:601.554300px;}
.y7a{bottom:602.040450px;}
.yba{bottom:603.714300px;}
.y9f{bottom:608.292300px;}
.ye3{bottom:611.911800px;}
.y54{bottom:612.547200px;}
.yd{bottom:617.732550px;}
.y2f{bottom:623.298300px;}
.y79{bottom:623.496450px;}
.yb9{bottom:625.314300px;}
.y9e{bottom:629.586300px;}
.y53{bottom:630.549450px;}
.ye2{bottom:631.711800px;}
.yc{bottom:635.734800px;}
.y78{bottom:644.940450px;}
.y2e{bottom:645.042300px;}
.yb8{bottom:646.914300px;}
.y52{bottom:648.551700px;}
.y9d{bottom:650.880300px;}
.ye1{bottom:651.511800px;}
.yb{bottom:653.737050px;}
.y77{bottom:666.396450px;}
.y51{bottom:666.553950px;}
.y2d{bottom:666.786300px;}
.yb7{bottom:668.514300px;}
.ye0{bottom:671.311800px;}
.y9c{bottom:672.174300px;}
.y50{bottom:684.556200px;}
.y76{bottom:687.852450px;}
.y2c{bottom:688.530300px;}
.yb6{bottom:690.114300px;}
.ydf{bottom:691.111800px;}
.y9b{bottom:693.468300px;}
.y4f{bottom:702.558450px;}
.ya{bottom:706.092900px;}
.y2b{bottom:710.274300px;}
.yde{bottom:710.911800px;}
.yb5{bottom:711.714300px;}
.y9a{bottom:714.762300px;}
.y75{bottom:722.084700px;}
.ydd{bottom:730.711800px;}
.y2a{bottom:732.018300px;}
.y4e{bottom:733.314300px;}
.y99{bottom:736.056300px;}
.y9{bottom:736.692900px;}
.y74{bottom:739.929450px;}
.ydc{bottom:750.511800px;}
.y29{bottom:753.762300px;}
.y4d{bottom:754.914300px;}
.y98{bottom:757.350300px;}
.y73{bottom:757.774200px;}
.y8{bottom:767.292900px;}
.ydb{bottom:770.311800px;}
.y28{bottom:775.506300px;}
.y72{bottom:775.618950px;}
.y4c{bottom:776.514300px;}
.y97{bottom:778.644300px;}
.yda{bottom:790.111800px;}
.y71{bottom:793.463700px;}
.y27{bottom:797.250300px;}
.y4b{bottom:798.114300px;}
.y96{bottom:799.938300px;}
.yd9{bottom:809.911800px;}
.y70{bottom:811.308450px;}
.y26{bottom:818.994300px;}
.y4a{bottom:819.714300px;}
.y95{bottom:821.232300px;}
.y7{bottom:822.556800px;}
.yd8{bottom:829.711800px;}
.y6{bottom:840.556800px;}
.y25{bottom:840.738300px;}
.y49{bottom:841.314300px;}
.y6f{bottom:841.890300px;}
.y94{bottom:842.526300px;}
.yd7{bottom:849.511800px;}
.y5{bottom:858.556800px;}
.y24{bottom:862.482300px;}
.y48{bottom:862.914300px;}
.y6e{bottom:863.346300px;}
.y93{bottom:863.820300px;}
.yd6{bottom:869.311800px;}
.y4{bottom:876.556800px;}
.y23{bottom:884.226300px;}
.y47{bottom:884.514300px;}
.y6d{bottom:884.802300px;}
.y92{bottom:885.126300px;}
.yd5{bottom:889.111800px;}
.y22{bottom:905.970300px;}
.y46{bottom:906.114300px;}
.y6c{bottom:906.258300px;}
.y91{bottom:906.420300px;}
.yd4{bottom:908.911800px;}
.y3{bottom:910.711800px;}
.y21{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.hb{height:30.568359px;}
.h2{height:35.663086px;}
.h3{height:40.757812px;}
.hc{height:48.399902px;}
.h4{height:50.947266px;}
.h7{height:53.494629px;}
.h5{height:56.041992px;}
.h9{height:61.136719px;}
.he{height:61.154719px;}
.hf{height:63.274031px;}
.ha{height:63.322031px;}
.hd{height:63.370031px;}
.h6{height:86.610352px;}
.h8{height:179.071997px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:76.535400px;}
.x6{left:97.797900px;}
.x7{left:104.214900px;}
.x9{left:119.071350px;}
.xa{left:140.323650px;}
.x8{left:150.670350px;}
.x1{left:177.729300px;}
.x2{left:299.375700px;}
.x3{left:302.750700px;}
.xb{left:518.943600px;}
.x4{left:572.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v5{vertical-align:-12.800000pt;}
.v6{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.v1{vertical-align:76.800000pt;}
.ls30{letter-spacing:-1.920000pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls3a{letter-spacing:-0.410667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.280000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.056000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.068267pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.292267pt;}
.ls6{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.364800pt;}
.ls16{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.616000pt;}
.ls26{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.832000pt;}
.ls25{letter-spacing:1.344000pt;}
.ls28{letter-spacing:1.664000pt;}
.ls36{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls27{letter-spacing:3.929600pt;}
.lsc{letter-spacing:4.032000pt;}
.ls4{letter-spacing:4.686667pt;}
.ls22{letter-spacing:5.120000pt;}
.ls31{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls18{letter-spacing:6.893600pt;}
.ls21{letter-spacing:8.384000pt;}
.ls2e{letter-spacing:8.422400pt;}
.ls5{letter-spacing:8.640000pt;}
.ls1f{letter-spacing:8.960000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls35{letter-spacing:9.328000pt;}
.ls34{letter-spacing:9.738667pt;}
.ls2b{letter-spacing:9.792000pt;}
.ls37{letter-spacing:10.384000pt;}
.ws27{word-spacing:-18.560000pt;}
.ws25{word-spacing:-18.496000pt;}
.ws21{word-spacing:-18.048000pt;}
.ws17{word-spacing:-17.984000pt;}
.ws2e{word-spacing:-16.512000pt;}
.ws3b{word-spacing:-16.485333pt;}
.ws2f{word-spacing:-16.384000pt;}
.ws26{word-spacing:-16.320000pt;}
.ws2d{word-spacing:-16.256000pt;}
.ws30{word-spacing:-16.192000pt;}
.ws32{word-spacing:-16.128000pt;}
.ws22{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.736000pt;}
.ws2c{word-spacing:-15.552000pt;}
.ws2{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws3f{word-spacing:-14.490667pt;}
.ws18{word-spacing:-14.237333pt;}
.ws40{word-spacing:-13.173333pt;}
.ws3{word-spacing:-10.790400pt;}
.ws31{word-spacing:-10.598400pt;}
.ws46{word-spacing:-10.384000pt;}
.ws3e{word-spacing:-9.891200pt;}
.ws35{word-spacing:-9.792000pt;}
.ws43{word-spacing:-9.738667pt;}
.ws44{word-spacing:-9.328000pt;}
.ws7{word-spacing:-9.066667pt;}
.ws6{word-spacing:-5.866667pt;}
.ws8{word-spacing:-5.600000pt;}
.ws3c{word-spacing:-5.333333pt;}
.ws24{word-spacing:-4.480000pt;}
.ws4{word-spacing:-3.733333pt;}
.ws33{word-spacing:-1.344000pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws15{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.704000pt;}
.ws47{word-spacing:-0.645333pt;}
.ws36{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.616000pt;}
.ws42{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.469333pt;}
.wsd{word-spacing:-0.448000pt;}
.ws1a{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.256000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.112000pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.056000pt;}
.ws28{word-spacing:-0.038400pt;}
.ws5{word-spacing:0.000000pt;}
.ws23{word-spacing:0.050667pt;}
.ws20{word-spacing:0.064000pt;}
.ws12{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.234667pt;}
.ws14{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.280000pt;}
.wsa{word-spacing:0.320000pt;}
.ws16{word-spacing:0.384000pt;}
.ws45{word-spacing:0.410667pt;}
.ws1c{word-spacing:0.448000pt;}
.ws34{word-spacing:0.512000pt;}
.ws38{word-spacing:0.640000pt;}
.ws37{word-spacing:0.768000pt;}
.ws29{word-spacing:1.152000pt;}
.ws19{word-spacing:1.280000pt;}
.ws39{word-spacing:1.920000pt;}
.ws3a{word-spacing:3.264000pt;}
.ws2b{word-spacing:6.784000pt;}
._18{margin-left:-17.568000pt;}
._7{margin-left:-15.040000pt;}
._17{margin-left:-13.132800pt;}
._b{margin-left:-11.121600pt;}
._9{margin-left:-9.311467pt;}
._16{margin-left:-7.984000pt;}
._12{margin-left:-6.997333pt;}
._6{margin-left:-5.995733pt;}
._a{margin-left:-4.886933pt;}
._2{margin-left:-3.808000pt;}
._0{margin-left:-2.800000pt;}
._3{margin-left:-1.446400pt;}
._4{width:1.092267pt;}
._d{width:2.346400pt;}
._1{width:3.733333pt;}
._11{width:4.691200pt;}
._c{width:5.600000pt;}
._f{width:6.956800pt;}
._e{width:8.349600pt;}
._5{width:9.410667pt;}
._13{width:10.434133pt;}
._14{width:11.547200pt;}
._15{width:12.858667pt;}
._19{width:14.156800pt;}
._8{width:15.467733pt;}
._1a{width:18.673600pt;}
._10{width:50.598400pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs6{font-size:187.458667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y6b{bottom:124.717733pt;}
.y90{bottom:124.719067pt;}
.y20{bottom:124.723067pt;}
.y45{bottom:128.826933pt;}
.yd3{bottom:129.609200pt;}
.yb4{bottom:129.657733pt;}
.y6a{bottom:139.385733pt;}
.y8f{bottom:139.387067pt;}
.yb3{bottom:139.389733pt;}
.y1f{bottom:144.324400pt;}
.yd2{bottom:147.209200pt;}
.y44{bottom:148.154933pt;}
.y69{bottom:154.053733pt;}
.y8e{bottom:154.055067pt;}
.yb2{bottom:158.991067pt;}
.yd1{bottom:164.809200pt;}
.y43{bottom:167.482933pt;}
.y68{bottom:168.721733pt;}
.y8d{bottom:168.723067pt;}
.ycd{bottom:171.834933pt;}
.yd0{bottom:182.409200pt;}
.y67{bottom:183.389733pt;}
.y42{bottom:186.810933pt;}
.y1e{bottom:187.674000pt;}
.y8c{bottom:188.324400pt;}
.ycc{bottom:191.034933pt;}
.y8b{bottom:198.053733pt;}
.yb1{bottom:199.914933pt;}
.ycf{bottom:200.009200pt;}
.y66{bottom:202.991067pt;}
.y41{bottom:206.138933pt;}
.y1d{bottom:207.002000pt;}
.ycb{bottom:210.234933pt;}
.y8a{bottom:212.721733pt;}
.yb0{bottom:218.842933pt;}
.yce{bottom:225.168267pt;}
.y40{bottom:225.466933pt;}
.y1c{bottom:226.202000pt;}
.y89{bottom:227.389733pt;}
.yca{bottom:229.434933pt;}
.yaf{bottom:237.770933pt;}
.y65{bottom:241.957733pt;}
.y3f{bottom:244.794933pt;}
.y1b{bottom:245.402000pt;}
.y88{bottom:246.991067pt;}
.yc9{bottom:248.634933pt;}
.yae{bottom:256.698933pt;}
.y64{bottom:261.157733pt;}
.y3e{bottom:264.122933pt;}
.y1a{bottom:264.602000pt;}
.yc8{bottom:267.834933pt;}
.yad{bottom:275.626933pt;}
.y63{bottom:280.357733pt;}
.y3d{bottom:283.450933pt;}
.y19{bottom:283.802000pt;}
.yc7{bottom:287.034933pt;}
.y87{bottom:287.221733pt;}
.yac{bottom:294.554933pt;}
.y62{bottom:299.557733pt;}
.y3c{bottom:302.778933pt;}
.y18{bottom:303.002000pt;}
.yc6{bottom:306.234933pt;}
.y86{bottom:306.293733pt;}
.yab{bottom:313.482933pt;}
.y61{bottom:318.757733pt;}
.y3b{bottom:322.106933pt;}
.y17{bottom:322.202000pt;}
.y85{bottom:325.365733pt;}
.yc5{bottom:325.434933pt;}
.yaa{bottom:332.410933pt;}
.y60{bottom:337.957733pt;}
.y16{bottom:341.402000pt;}
.y3a{bottom:341.434933pt;}
.y84{bottom:344.437733pt;}
.yc4{bottom:344.634933pt;}
.ya9{bottom:351.338933pt;}
.y15{bottom:360.602000pt;}
.y39{bottom:360.762933pt;}
.y83{bottom:363.509733pt;}
.yc3{bottom:363.834933pt;}
.yec{bottom:365.788267pt;}
.y5f{bottom:368.464400pt;}
.ya8{bottom:370.266933pt;}
.y14{bottom:379.802000pt;}
.y38{bottom:380.090933pt;}
.yeb{bottom:381.788267pt;}
.y82{bottom:382.581733pt;}
.yc2{bottom:383.034933pt;}
.y5e{bottom:384.466400pt;}
.ya7{bottom:389.194933pt;}
.yea{bottom:397.788267pt;}
.y13{bottom:399.002000pt;}
.y37{bottom:399.418933pt;}
.y5d{bottom:400.468400pt;}
.y81{bottom:401.653733pt;}
.yc1{bottom:402.234933pt;}
.ya6{bottom:408.122933pt;}
.ye9{bottom:413.788267pt;}
.y5c{bottom:416.470400pt;}
.y12{bottom:418.202000pt;}
.y36{bottom:418.746933pt;}
.y80{bottom:420.725733pt;}
.yc0{bottom:421.434933pt;}
.ya5{bottom:427.050933pt;}
.y5b{bottom:432.472400pt;}
.y11{bottom:437.402000pt;}
.y35{bottom:438.074933pt;}
.y7f{bottom:439.797733pt;}
.ybf{bottom:440.634933pt;}
.ya4{bottom:445.978933pt;}
.y5a{bottom:448.474400pt;}
.ye8{bottom:448.988267pt;}
.y10{bottom:456.602000pt;}
.y34{bottom:457.402933pt;}
.y7e{bottom:458.869733pt;}
.ybe{bottom:459.834933pt;}
.y59{bottom:464.476400pt;}
.ya3{bottom:464.906933pt;}
.ye7{bottom:473.521600pt;}
.yf{bottom:475.802000pt;}
.y33{bottom:476.730933pt;}
.y7d{bottom:477.941733pt;}
.ybd{bottom:479.034933pt;}
.y58{bottom:480.478400pt;}
.ya2{bottom:483.920267pt;}
.ye6{bottom:491.121600pt;}
.y32{bottom:496.058933pt;}
.y57{bottom:496.480400pt;}
.y7c{bottom:497.013733pt;}
.ybc{bottom:498.234933pt;}
.ya1{bottom:502.848267pt;}
.ye5{bottom:508.721600pt;}
.y56{bottom:512.482400pt;}
.y31{bottom:515.386933pt;}
.y7b{bottom:516.085733pt;}
.ybb{bottom:517.434933pt;}
.ya0{bottom:521.776267pt;}
.ye4{bottom:526.321600pt;}
.y55{bottom:528.484400pt;}
.ye{bottom:533.093600pt;}
.y30{bottom:534.714933pt;}
.y7a{bottom:535.147067pt;}
.yba{bottom:536.634933pt;}
.y9f{bottom:540.704267pt;}
.ye3{bottom:543.921600pt;}
.y54{bottom:544.486400pt;}
.yd{bottom:549.095600pt;}
.y2f{bottom:554.042933pt;}
.y79{bottom:554.219067pt;}
.yb9{bottom:555.834933pt;}
.y9e{bottom:559.632267pt;}
.y53{bottom:560.488400pt;}
.ye2{bottom:561.521600pt;}
.yc{bottom:565.097600pt;}
.y78{bottom:573.280400pt;}
.y2e{bottom:573.370933pt;}
.yb8{bottom:575.034933pt;}
.y52{bottom:576.490400pt;}
.y9d{bottom:578.560267pt;}
.ye1{bottom:579.121600pt;}
.yb{bottom:581.099600pt;}
.y77{bottom:592.352400pt;}
.y51{bottom:592.492400pt;}
.y2d{bottom:592.698933pt;}
.yb7{bottom:594.234933pt;}
.ye0{bottom:596.721600pt;}
.y9c{bottom:597.488267pt;}
.y50{bottom:608.494400pt;}
.y76{bottom:611.424400pt;}
.y2c{bottom:612.026933pt;}
.yb6{bottom:613.434933pt;}
.ydf{bottom:614.321600pt;}
.y9b{bottom:616.416267pt;}
.y4f{bottom:624.496400pt;}
.ya{bottom:627.638133pt;}
.y2b{bottom:631.354933pt;}
.yde{bottom:631.921600pt;}
.yb5{bottom:632.634933pt;}
.y9a{bottom:635.344267pt;}
.y75{bottom:641.853067pt;}
.ydd{bottom:649.521600pt;}
.y2a{bottom:650.682933pt;}
.y4e{bottom:651.834933pt;}
.y99{bottom:654.272267pt;}
.y9{bottom:654.838133pt;}
.y74{bottom:657.715067pt;}
.ydc{bottom:667.121600pt;}
.y29{bottom:670.010933pt;}
.y4d{bottom:671.034933pt;}
.y98{bottom:673.200267pt;}
.y73{bottom:673.577067pt;}
.y8{bottom:682.038133pt;}
.ydb{bottom:684.721600pt;}
.y28{bottom:689.338933pt;}
.y72{bottom:689.439067pt;}
.y4c{bottom:690.234933pt;}
.y97{bottom:692.128267pt;}
.yda{bottom:702.321600pt;}
.y71{bottom:705.301067pt;}
.y27{bottom:708.666933pt;}
.y4b{bottom:709.434933pt;}
.y96{bottom:711.056267pt;}
.yd9{bottom:719.921600pt;}
.y70{bottom:721.163067pt;}
.y26{bottom:727.994933pt;}
.y4a{bottom:728.634933pt;}
.y95{bottom:729.984267pt;}
.y7{bottom:731.161600pt;}
.yd8{bottom:737.521600pt;}
.y6{bottom:747.161600pt;}
.y25{bottom:747.322933pt;}
.y49{bottom:747.834933pt;}
.y6f{bottom:748.346933pt;}
.y94{bottom:748.912267pt;}
.yd7{bottom:755.121600pt;}
.y5{bottom:763.161600pt;}
.y24{bottom:766.650933pt;}
.y48{bottom:767.034933pt;}
.y6e{bottom:767.418933pt;}
.y93{bottom:767.840267pt;}
.yd6{bottom:772.721600pt;}
.y4{bottom:779.161600pt;}
.y23{bottom:785.978933pt;}
.y47{bottom:786.234933pt;}
.y6d{bottom:786.490933pt;}
.y92{bottom:786.778933pt;}
.yd5{bottom:790.321600pt;}
.y22{bottom:805.306933pt;}
.y46{bottom:805.434933pt;}
.y6c{bottom:805.562933pt;}
.y91{bottom:805.706933pt;}
.yd4{bottom:807.921600pt;}
.y3{bottom:809.521600pt;}
.y21{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.hb{height:27.171875pt;}
.h2{height:31.700521pt;}
.h3{height:36.229167pt;}
.hc{height:43.022135pt;}
.h4{height:45.286458pt;}
.h7{height:47.550781pt;}
.h5{height:49.815104pt;}
.h9{height:54.343750pt;}
.he{height:54.359750pt;}
.hf{height:56.243583pt;}
.ha{height:56.286250pt;}
.hd{height:56.328917pt;}
.h6{height:76.986979pt;}
.h8{height:159.175108pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:68.031467pt;}
.x6{left:86.931467pt;}
.x7{left:92.635467pt;}
.x9{left:105.841200pt;}
.xa{left:124.732133pt;}
.x8{left:133.929200pt;}
.x1{left:157.981600pt;}
.x2{left:266.111733pt;}
.x3{left:269.111733pt;}
.xb{left:461.283200pt;}
.x4{left:508.590533pt;}
}




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