
    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_7f737dd7865a9b7c7553d9c0.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_8c479e5d9108783f86642387.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_e8e3eabfe8a25261e43f2a84.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_60d7f62f277755f7ad4835d1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_42153568b17649bfe44fa1f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_3d99f88c66cdf231742e00a0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_48372f4da946e74f58efdabb.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_a6f1fbf792e1158a6309c4b5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d4995feacdb2d306cb186a9a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fb9be9e53273fa72e6f66fee.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v1{vertical-align:23.760000px;}
.ls26{letter-spacing:-7.200000px;}
.ls23{letter-spacing:-1.152000px;}
.ls24{letter-spacing:-1.008000px;}
.ls25{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.259200px;}
.lsd{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.892800px;}
.ls18{letter-spacing:0.936000px;}
.ls1d{letter-spacing:1.224000px;}
.ls1f{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.368000px;}
.ls20{letter-spacing:1.512000px;}
.ls2a{letter-spacing:2.928000px;}
.ls29{letter-spacing:2.937600px;}
.ls2b{letter-spacing:3.360000px;}
.ls3{letter-spacing:4.560000px;}
.ls28{letter-spacing:4.752000px;}
.ls0{letter-spacing:8.436000px;}
.ls4{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.740000px;}
.ls22{letter-spacing:12.348000px;}
.ls1{letter-spacing:37.140000px;}
.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;}
}
.ws1{word-spacing:-25.320000px;}
.ws18{word-spacing:-20.448000px;}
.ws3f{word-spacing:-20.232000px;}
.ws19{word-spacing:-20.160000px;}
.ws24{word-spacing:-19.944000px;}
.ws2{word-spacing:-19.800000px;}
.ws32{word-spacing:-19.080000px;}
.ws2a{word-spacing:-19.008000px;}
.ws4b{word-spacing:-18.648000px;}
.ws11{word-spacing:-18.576000px;}
.ws41{word-spacing:-18.504000px;}
.ws2d{word-spacing:-18.216000px;}
.ws4c{word-spacing:-18.144000px;}
.ws26{word-spacing:-18.072000px;}
.ws27{word-spacing:-18.000000px;}
.ws31{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws25{word-spacing:-17.640000px;}
.ws47{word-spacing:-17.568000px;}
.ws29{word-spacing:-17.496000px;}
.ws2b{word-spacing:-17.424000px;}
.ws2c{word-spacing:-17.208000px;}
.ws40{word-spacing:-16.776000px;}
.ws55{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.162400px;}
.ws4f{word-spacing:-13.488000px;}
.ws4d{word-spacing:-12.336000px;}
.ws4e{word-spacing:-11.856000px;}
.ws51{word-spacing:-11.802000px;}
.wsf{word-spacing:-8.496000px;}
.ws20{word-spacing:-8.460000px;}
.ws44{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.512000px;}
.ws2e{word-spacing:-1.368000px;}
.ws3b{word-spacing:-1.296000px;}
.ws2f{word-spacing:-1.224000px;}
.ws23{word-spacing:-0.936000px;}
.ws17{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.288000px;}
.ws53{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws1e{word-spacing:0.072000px;}
.ws1c{word-spacing:0.144000px;}
.ws15{word-spacing:0.216000px;}
.ws52{word-spacing:0.240000px;}
.ws12{word-spacing:0.288000px;}
.ws9{word-spacing:0.360000px;}
.wsa{word-spacing:0.432000px;}
.wse{word-spacing:0.504000px;}
.ws7{word-spacing:0.528000px;}
.ws22{word-spacing:0.576000px;}
.ws3e{word-spacing:0.648000px;}
.ws21{word-spacing:0.720000px;}
.ws46{word-spacing:0.792000px;}
.ws45{word-spacing:1.008000px;}
.ws43{word-spacing:1.152000px;}
.ws35{word-spacing:1.224000px;}
.ws54{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws3d{word-spacing:1.872000px;}
.ws37{word-spacing:2.304000px;}
.ws50{word-spacing:2.976000px;}
.ws4a{word-spacing:3.384000px;}
.ws36{word-spacing:3.600000px;}
.ws49{word-spacing:3.960000px;}
.ws5{word-spacing:4.200000px;}
.ws34{word-spacing:4.608000px;}
.ws42{word-spacing:5.832000px;}
.ws48{word-spacing:7.200000px;}
.ws39{word-spacing:8.424000px;}
.ws38{word-spacing:9.000000px;}
.ws33{word-spacing:10.224000px;}
.ws30{word-spacing:10.656000px;}
.ws3c{word-spacing:13.968000px;}
.ws0{word-spacing:146.196000px;}
._12{margin-left:-948.820800px;}
._7{margin-left:-12.344400px;}
._15{margin-left:-10.725000px;}
._19{margin-left:-9.698400px;}
._18{margin-left:-8.362200px;}
._1{margin-left:-7.332000px;}
._b{margin-left:-6.186000px;}
._c{margin-left:-5.118000px;}
._14{margin-left:-3.989100px;}
._f{margin-left:-2.772000px;}
._9{margin-left:-1.464000px;}
._a{width:1.518600px;}
._2{width:3.138000px;}
._0{width:4.212000px;}
._e{width:6.049200px;}
._10{width:7.235400px;}
._8{width:8.508000px;}
._16{width:9.527400px;}
._d{width:10.540800px;}
._13{width:11.542800px;}
._17{width:12.575100px;}
._1a{width:14.324100px;}
._6{width:24.720000px;}
._3{width:26.814000px;}
._11{width:31.646100px;}
._4{width:68.940000px;}
._5{width:71.046000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y23{bottom:117.000000px;}
.y9e{bottom:117.960000px;}
.yed{bottom:118.116000px;}
.y11b{bottom:119.322000px;}
.yc2{bottom:120.228000px;}
.y45{bottom:121.207500px;}
.y7b{bottom:123.558000px;}
.y22{bottom:132.000000px;}
.yec{bottom:133.116000px;}
.yc1{bottom:134.772000px;}
.y11a{bottom:138.222000px;}
.y58{bottom:139.500000px;}
.y9d{bottom:141.054000px;}
.y7a{bottom:146.814000px;}
.y21{bottom:147.000000px;}
.yeb{bottom:148.116000px;}
.yc0{bottom:155.700000px;}
.y119{bottom:157.122000px;}
.y20{bottom:162.000000px;}
.yea{bottom:163.116000px;}
.y9c{bottom:164.148000px;}
.y79{bottom:170.070000px;}
.y118{bottom:176.022000px;}
.y1f{bottom:177.000000px;}
.ye9{bottom:178.116000px;}
.y44{bottom:184.500000px;}
.y9b{bottom:187.242000px;}
.ye8{bottom:193.116000px;}
.y78{bottom:193.326000px;}
.y117{bottom:194.922000px;}
.y1e{bottom:196.207500px;}
.ybf{bottom:199.800000px;}
.y43{bottom:207.000000px;}
.ye7{bottom:208.116000px;}
.y9a{bottom:210.336000px;}
.y116{bottom:213.822000px;}
.y77{bottom:216.582000px;}
.ybe{bottom:221.850000px;}
.ye6{bottom:223.116000px;}
.y42{bottom:229.500000px;}
.y115{bottom:232.722000px;}
.y99{bottom:233.430000px;}
.y1d{bottom:236.468550px;}
.ye5{bottom:238.116000px;}
.y76{bottom:239.838000px;}
.ybd{bottom:243.900000px;}
.y114{bottom:251.622000px;}
.y41{bottom:252.000000px;}
.ye4{bottom:253.116000px;}
.y98{bottom:256.524000px;}
.y1c{bottom:258.968550px;}
.y75{bottom:263.094000px;}
.ybc{bottom:265.950000px;}
.ye3{bottom:268.116000px;}
.y113{bottom:270.522000px;}
.y40{bottom:274.500000px;}
.y97{bottom:279.618000px;}
.y1b{bottom:281.468550px;}
.ye2{bottom:283.116000px;}
.y74{bottom:286.350000px;}
.ybb{bottom:288.000000px;}
.y112{bottom:289.422000px;}
.y3f{bottom:297.000000px;}
.ye1{bottom:298.116000px;}
.y96{bottom:302.712000px;}
.y1a{bottom:303.968550px;}
.y111{bottom:308.322000px;}
.y73{bottom:309.606000px;}
.yba{bottom:310.050000px;}
.ye0{bottom:313.116000px;}
.y130{bottom:315.750000px;}
.y3e{bottom:319.500000px;}
.y95{bottom:325.806000px;}
.y19{bottom:326.468550px;}
.y110{bottom:327.222000px;}
.ydf{bottom:328.116000px;}
.yb9{bottom:332.100000px;}
.y72{bottom:332.862000px;}
.y12f{bottom:334.500000px;}
.y3d{bottom:342.000000px;}
.yde{bottom:343.116000px;}
.y10f{bottom:346.122000px;}
.y94{bottom:348.900000px;}
.y18{bottom:348.968550px;}
.y12e{bottom:353.250000px;}
.yb8{bottom:354.150000px;}
.y71{bottom:356.118000px;}
.ydd{bottom:358.116000px;}
.y3c{bottom:364.500000px;}
.y10e{bottom:365.022000px;}
.y17{bottom:371.468550px;}
.y93{bottom:371.994000px;}
.y12d{bottom:372.000000px;}
.ydc{bottom:373.116000px;}
.y57{bottom:375.750000px;}
.yb7{bottom:376.200000px;}
.y70{bottom:379.374000px;}
.y10d{bottom:383.922000px;}
.y3b{bottom:387.000000px;}
.ydb{bottom:388.116000px;}
.y12c{bottom:390.750000px;}
.y16{bottom:393.968550px;}
.y92{bottom:395.088000px;}
.y56{bottom:398.250000px;}
.y6f{bottom:402.630000px;}
.y10c{bottom:402.822000px;}
.yda{bottom:403.116000px;}
.y3a{bottom:409.500000px;}
.y15{bottom:416.468550px;}
.yd9{bottom:418.116000px;}
.y91{bottom:418.182000px;}
.yb6{bottom:420.300000px;}
.y55{bottom:420.750000px;}
.y10b{bottom:421.722000px;}
.y6e{bottom:425.886000px;}
.y39{bottom:432.000000px;}
.yd8{bottom:433.116000px;}
.y14{bottom:438.968550px;}
.y10a{bottom:440.622000px;}
.y90{bottom:441.276000px;}
.yb5{bottom:442.350000px;}
.y54{bottom:443.250000px;}
.yd7{bottom:448.116000px;}
.y6d{bottom:449.142000px;}
.y38{bottom:454.500000px;}
.y109{bottom:459.522000px;}
.y13{bottom:461.468550px;}
.y12b{bottom:462.000000px;}
.yd6{bottom:463.116000px;}
.y8f{bottom:464.370000px;}
.yb4{bottom:464.400000px;}
.y53{bottom:465.750000px;}
.y6c{bottom:472.398000px;}
.y37{bottom:477.000000px;}
.yd5{bottom:478.116000px;}
.y108{bottom:478.422000px;}
.y12a{bottom:480.750000px;}
.y12{bottom:483.968550px;}
.yb3{bottom:486.450000px;}
.y8e{bottom:487.464000px;}
.y52{bottom:488.250000px;}
.yd4{bottom:493.116000px;}
.y6b{bottom:495.654000px;}
.y107{bottom:497.322000px;}
.y36{bottom:499.500000px;}
.y11{bottom:506.468550px;}
.yb2{bottom:508.500000px;}
.y8d{bottom:510.558000px;}
.y51{bottom:510.750000px;}
.yd3{bottom:514.500000px;}
.y106{bottom:516.222000px;}
.y129{bottom:518.250000px;}
.y6a{bottom:518.910000px;}
.y35{bottom:522.000000px;}
.y10{bottom:528.968550px;}
.yb1{bottom:530.550000px;}
.y50{bottom:533.250000px;}
.y8c{bottom:533.652000px;}
.y105{bottom:535.122000px;}
.y128{bottom:537.000000px;}
.y34{bottom:544.500000px;}
.yf{bottom:551.468550px;}
.yb0{bottom:552.600000px;}
.y104{bottom:554.022000px;}
.y69{bottom:554.154000px;}
.y4f{bottom:555.750000px;}
.y8b{bottom:556.746000px;}
.yd2{bottom:559.500000px;}
.y33{bottom:567.000000px;}
.y103{bottom:572.922000px;}
.ye{bottom:573.968550px;}
.yd1{bottom:574.500000px;}
.yaf{bottom:574.650000px;}
.y68{bottom:577.410000px;}
.y4e{bottom:578.250000px;}
.y8a{bottom:579.840000px;}
.y32{bottom:589.500000px;}
.y127{bottom:593.250000px;}
.yd{bottom:596.468550px;}
.yae{bottom:596.700000px;}
.y102{bottom:598.290000px;}
.y67{bottom:600.666000px;}
.y4d{bottom:600.750000px;}
.y89{bottom:602.934000px;}
.yd0{bottom:604.500000px;}
.y31{bottom:612.000000px;}
.y101{bottom:616.434000px;}
.yad{bottom:618.750000px;}
.yc{bottom:618.968550px;}
.ycf{bottom:619.500000px;}
.y4c{bottom:623.250000px;}
.y66{bottom:623.922000px;}
.y88{bottom:626.028000px;}
.y126{bottom:630.750000px;}
.y30{bottom:634.500000px;}
.yac{bottom:640.800000px;}
.yb{bottom:641.468550px;}
.y4b{bottom:645.750000px;}
.y65{bottom:647.178000px;}
.y87{bottom:649.122000px;}
.yce{bottom:649.500000px;}
.y2f{bottom:657.000000px;}
.y100{bottom:661.734000px;}
.yab{bottom:662.850000px;}
.ycd{bottom:664.500000px;}
.y4a{bottom:668.250000px;}
.y64{bottom:670.434000px;}
.y86{bottom:672.216000px;}
.yff{bottom:676.878000px;}
.y2e{bottom:679.500000px;}
.yaa{bottom:684.900000px;}
.ya{bottom:686.468550px;}
.y125{bottom:687.000000px;}
.y49{bottom:690.750000px;}
.yfe{bottom:692.022000px;}
.y63{bottom:693.690000px;}
.ycc{bottom:694.500000px;}
.y85{bottom:695.310000px;}
.y2d{bottom:702.000000px;}
.y9{bottom:705.218550px;}
.y124{bottom:705.750000px;}
.ya9{bottom:706.950000px;}
.yfd{bottom:707.166000px;}
.ycb{bottom:709.500000px;}
.y48{bottom:713.250000px;}
.y62{bottom:716.946000px;}
.y84{bottom:718.404000px;}
.yfc{bottom:722.310000px;}
.y2c{bottom:724.500000px;}
.ya8{bottom:729.000000px;}
.y47{bottom:735.750000px;}
.yfb{bottom:737.454000px;}
.yca{bottom:739.500000px;}
.y61{bottom:740.202000px;}
.y83{bottom:741.498000px;}
.y123{bottom:743.250000px;}
.y2b{bottom:747.000000px;}
.y8{bottom:747.354300px;}
.ya7{bottom:751.050000px;}
.yfa{bottom:752.598000px;}
.yc9{bottom:754.500000px;}
.y46{bottom:758.250000px;}
.y122{bottom:762.000000px;}
.y60{bottom:763.458000px;}
.y82{bottom:764.592000px;}
.yf9{bottom:767.742000px;}
.y2a{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.ya6{bottom:773.100000px;}
.y121{bottom:780.750000px;}
.yf8{bottom:782.886000px;}
.yc8{bottom:784.500000px;}
.y5f{bottom:786.714000px;}
.y81{bottom:787.686000px;}
.y29{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.ya5{bottom:795.150000px;}
.yf7{bottom:798.030000px;}
.yc7{bottom:799.500000px;}
.y5e{bottom:809.970000px;}
.y80{bottom:810.780000px;}
.yf6{bottom:813.174000px;}
.y28{bottom:814.500000px;}
.ya4{bottom:817.200000px;}
.y120{bottom:818.250000px;}
.yf5{bottom:828.330000px;}
.yc6{bottom:829.500000px;}
.y5d{bottom:833.226000px;}
.y7f{bottom:833.874000px;}
.y27{bottom:837.000000px;}
.ya3{bottom:839.250000px;}
.yf4{bottom:843.474000px;}
.yc5{bottom:844.500000px;}
.y11f{bottom:855.750000px;}
.y5c{bottom:856.482000px;}
.y7e{bottom:856.968000px;}
.yf3{bottom:858.618000px;}
.y5{bottom:859.500000px;}
.ya2{bottom:861.300000px;}
.yf2{bottom:873.762000px;}
.yc4{bottom:874.500000px;}
.y5b{bottom:879.738000px;}
.y7d{bottom:880.062000px;}
.y26{bottom:882.000000px;}
.ya1{bottom:883.350000px;}
.yf1{bottom:888.906000px;}
.y4{bottom:889.500000px;}
.y11e{bottom:893.250000px;}
.y5a{bottom:902.994000px;}
.y7c{bottom:903.156000px;}
.yf0{bottom:904.062000px;}
.y25{bottom:904.500000px;}
.ya0{bottom:905.400000px;}
.y11d{bottom:912.000000px;}
.yef{bottom:919.206000px;}
.y3{bottom:919.500000px;}
.y59{bottom:926.250000px;}
.y24{bottom:927.000000px;}
.y9f{bottom:927.450000px;}
.y11c{bottom:930.750000px;}
.yee{bottom:934.350000px;}
.yc3{bottom:934.500000px;}
.h6{height:24.630908px;}
.ha{height:30.313623px;}
.hb{height:39.072000px;}
.h7{height:40.757812px;}
.h8{height:41.396484px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.hc{height:55.463086px;}
.h5{height:61.136719px;}
.h9{height:66.555703px;}
.h3{height:82.792969px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x8{left:103.639950px;}
.x5{left:112.500000px;}
.x6{left:127.386000px;}
.x9{left:133.758000px;}
.x2{left:135.000000px;}
.x7{left:148.643850px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v1{vertical-align:21.120000pt;}
.ls26{letter-spacing:-6.400000pt;}
.ls23{letter-spacing:-1.024000pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.230400pt;}
.lsd{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.793600pt;}
.ls18{letter-spacing:0.832000pt;}
.ls1d{letter-spacing:1.088000pt;}
.ls1f{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.216000pt;}
.ls20{letter-spacing:1.344000pt;}
.ls2a{letter-spacing:2.602667pt;}
.ls29{letter-spacing:2.611200pt;}
.ls2b{letter-spacing:2.986667pt;}
.ls3{letter-spacing:4.053333pt;}
.ls28{letter-spacing:4.224000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls22{letter-spacing:10.976000pt;}
.ls1{letter-spacing:33.013333pt;}
.ws1{word-spacing:-22.506667pt;}
.ws18{word-spacing:-18.176000pt;}
.ws3f{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws24{word-spacing:-17.728000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws32{word-spacing:-16.960000pt;}
.ws2a{word-spacing:-16.896000pt;}
.ws4b{word-spacing:-16.576000pt;}
.ws11{word-spacing:-16.512000pt;}
.ws41{word-spacing:-16.448000pt;}
.ws2d{word-spacing:-16.192000pt;}
.ws4c{word-spacing:-16.128000pt;}
.ws26{word-spacing:-16.064000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws31{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws25{word-spacing:-15.680000pt;}
.ws47{word-spacing:-15.616000pt;}
.ws29{word-spacing:-15.552000pt;}
.ws2b{word-spacing:-15.488000pt;}
.ws2c{word-spacing:-15.296000pt;}
.ws40{word-spacing:-14.912000pt;}
.ws55{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.588800pt;}
.ws4f{word-spacing:-11.989333pt;}
.ws4d{word-spacing:-10.965333pt;}
.ws4e{word-spacing:-10.538667pt;}
.ws51{word-spacing:-10.490667pt;}
.wsf{word-spacing:-7.552000pt;}
.ws20{word-spacing:-7.520000pt;}
.ws44{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.344000pt;}
.ws2e{word-spacing:-1.216000pt;}
.ws3b{word-spacing:-1.152000pt;}
.ws2f{word-spacing:-1.088000pt;}
.ws23{word-spacing:-0.832000pt;}
.ws17{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.256000pt;}
.ws53{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.128000pt;}
.ws15{word-spacing:0.192000pt;}
.ws52{word-spacing:0.213333pt;}
.ws12{word-spacing:0.256000pt;}
.ws9{word-spacing:0.320000pt;}
.wsa{word-spacing:0.384000pt;}
.wse{word-spacing:0.448000pt;}
.ws7{word-spacing:0.469333pt;}
.ws22{word-spacing:0.512000pt;}
.ws3e{word-spacing:0.576000pt;}
.ws21{word-spacing:0.640000pt;}
.ws46{word-spacing:0.704000pt;}
.ws45{word-spacing:0.896000pt;}
.ws43{word-spacing:1.024000pt;}
.ws35{word-spacing:1.088000pt;}
.ws54{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws3d{word-spacing:1.664000pt;}
.ws37{word-spacing:2.048000pt;}
.ws50{word-spacing:2.645333pt;}
.ws4a{word-spacing:3.008000pt;}
.ws36{word-spacing:3.200000pt;}
.ws49{word-spacing:3.520000pt;}
.ws5{word-spacing:3.733333pt;}
.ws34{word-spacing:4.096000pt;}
.ws42{word-spacing:5.184000pt;}
.ws48{word-spacing:6.400000pt;}
.ws39{word-spacing:7.488000pt;}
.ws38{word-spacing:8.000000pt;}
.ws33{word-spacing:9.088000pt;}
.ws30{word-spacing:9.472000pt;}
.ws3c{word-spacing:12.416000pt;}
.ws0{word-spacing:129.952000pt;}
._12{margin-left:-843.396267pt;}
._7{margin-left:-10.972800pt;}
._15{margin-left:-9.533333pt;}
._19{margin-left:-8.620800pt;}
._18{margin-left:-7.433067pt;}
._1{margin-left:-6.517333pt;}
._b{margin-left:-5.498667pt;}
._c{margin-left:-4.549333pt;}
._14{margin-left:-3.545867pt;}
._f{margin-left:-2.464000pt;}
._9{margin-left:-1.301333pt;}
._a{width:1.349867pt;}
._2{width:2.789333pt;}
._0{width:3.744000pt;}
._e{width:5.377067pt;}
._10{width:6.431467pt;}
._8{width:7.562667pt;}
._16{width:8.468800pt;}
._d{width:9.369600pt;}
._13{width:10.260267pt;}
._17{width:11.177867pt;}
._1a{width:12.732533pt;}
._6{width:21.973333pt;}
._3{width:23.834667pt;}
._11{width:28.129867pt;}
._4{width:61.280000pt;}
._5{width:63.152000pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y23{bottom:104.000000pt;}
.y9e{bottom:104.853333pt;}
.yed{bottom:104.992000pt;}
.y11b{bottom:106.064000pt;}
.yc2{bottom:106.869333pt;}
.y45{bottom:107.740000pt;}
.y7b{bottom:109.829333pt;}
.y22{bottom:117.333333pt;}
.yec{bottom:118.325333pt;}
.yc1{bottom:119.797333pt;}
.y11a{bottom:122.864000pt;}
.y58{bottom:124.000000pt;}
.y9d{bottom:125.381333pt;}
.y7a{bottom:130.501333pt;}
.y21{bottom:130.666667pt;}
.yeb{bottom:131.658667pt;}
.yc0{bottom:138.400000pt;}
.y119{bottom:139.664000pt;}
.y20{bottom:144.000000pt;}
.yea{bottom:144.992000pt;}
.y9c{bottom:145.909333pt;}
.y79{bottom:151.173333pt;}
.y118{bottom:156.464000pt;}
.y1f{bottom:157.333333pt;}
.ye9{bottom:158.325333pt;}
.y44{bottom:164.000000pt;}
.y9b{bottom:166.437333pt;}
.ye8{bottom:171.658667pt;}
.y78{bottom:171.845333pt;}
.y117{bottom:173.264000pt;}
.y1e{bottom:174.406667pt;}
.ybf{bottom:177.600000pt;}
.y43{bottom:184.000000pt;}
.ye7{bottom:184.992000pt;}
.y9a{bottom:186.965333pt;}
.y116{bottom:190.064000pt;}
.y77{bottom:192.517333pt;}
.ybe{bottom:197.200000pt;}
.ye6{bottom:198.325333pt;}
.y42{bottom:204.000000pt;}
.y115{bottom:206.864000pt;}
.y99{bottom:207.493333pt;}
.y1d{bottom:210.194267pt;}
.ye5{bottom:211.658667pt;}
.y76{bottom:213.189333pt;}
.ybd{bottom:216.800000pt;}
.y114{bottom:223.664000pt;}
.y41{bottom:224.000000pt;}
.ye4{bottom:224.992000pt;}
.y98{bottom:228.021333pt;}
.y1c{bottom:230.194267pt;}
.y75{bottom:233.861333pt;}
.ybc{bottom:236.400000pt;}
.ye3{bottom:238.325333pt;}
.y113{bottom:240.464000pt;}
.y40{bottom:244.000000pt;}
.y97{bottom:248.549333pt;}
.y1b{bottom:250.194267pt;}
.ye2{bottom:251.658667pt;}
.y74{bottom:254.533333pt;}
.ybb{bottom:256.000000pt;}
.y112{bottom:257.264000pt;}
.y3f{bottom:264.000000pt;}
.ye1{bottom:264.992000pt;}
.y96{bottom:269.077333pt;}
.y1a{bottom:270.194267pt;}
.y111{bottom:274.064000pt;}
.y73{bottom:275.205333pt;}
.yba{bottom:275.600000pt;}
.ye0{bottom:278.325333pt;}
.y130{bottom:280.666667pt;}
.y3e{bottom:284.000000pt;}
.y95{bottom:289.605333pt;}
.y19{bottom:290.194267pt;}
.y110{bottom:290.864000pt;}
.ydf{bottom:291.658667pt;}
.yb9{bottom:295.200000pt;}
.y72{bottom:295.877333pt;}
.y12f{bottom:297.333333pt;}
.y3d{bottom:304.000000pt;}
.yde{bottom:304.992000pt;}
.y10f{bottom:307.664000pt;}
.y94{bottom:310.133333pt;}
.y18{bottom:310.194267pt;}
.y12e{bottom:314.000000pt;}
.yb8{bottom:314.800000pt;}
.y71{bottom:316.549333pt;}
.ydd{bottom:318.325333pt;}
.y3c{bottom:324.000000pt;}
.y10e{bottom:324.464000pt;}
.y17{bottom:330.194267pt;}
.y93{bottom:330.661333pt;}
.y12d{bottom:330.666667pt;}
.ydc{bottom:331.658667pt;}
.y57{bottom:334.000000pt;}
.yb7{bottom:334.400000pt;}
.y70{bottom:337.221333pt;}
.y10d{bottom:341.264000pt;}
.y3b{bottom:344.000000pt;}
.ydb{bottom:344.992000pt;}
.y12c{bottom:347.333333pt;}
.y16{bottom:350.194267pt;}
.y92{bottom:351.189333pt;}
.y56{bottom:354.000000pt;}
.y6f{bottom:357.893333pt;}
.y10c{bottom:358.064000pt;}
.yda{bottom:358.325333pt;}
.y3a{bottom:364.000000pt;}
.y15{bottom:370.194267pt;}
.yd9{bottom:371.658667pt;}
.y91{bottom:371.717333pt;}
.yb6{bottom:373.600000pt;}
.y55{bottom:374.000000pt;}
.y10b{bottom:374.864000pt;}
.y6e{bottom:378.565333pt;}
.y39{bottom:384.000000pt;}
.yd8{bottom:384.992000pt;}
.y14{bottom:390.194267pt;}
.y10a{bottom:391.664000pt;}
.y90{bottom:392.245333pt;}
.yb5{bottom:393.200000pt;}
.y54{bottom:394.000000pt;}
.yd7{bottom:398.325333pt;}
.y6d{bottom:399.237333pt;}
.y38{bottom:404.000000pt;}
.y109{bottom:408.464000pt;}
.y13{bottom:410.194267pt;}
.y12b{bottom:410.666667pt;}
.yd6{bottom:411.658667pt;}
.y8f{bottom:412.773333pt;}
.yb4{bottom:412.800000pt;}
.y53{bottom:414.000000pt;}
.y6c{bottom:419.909333pt;}
.y37{bottom:424.000000pt;}
.yd5{bottom:424.992000pt;}
.y108{bottom:425.264000pt;}
.y12a{bottom:427.333333pt;}
.y12{bottom:430.194267pt;}
.yb3{bottom:432.400000pt;}
.y8e{bottom:433.301333pt;}
.y52{bottom:434.000000pt;}
.yd4{bottom:438.325333pt;}
.y6b{bottom:440.581333pt;}
.y107{bottom:442.064000pt;}
.y36{bottom:444.000000pt;}
.y11{bottom:450.194267pt;}
.yb2{bottom:452.000000pt;}
.y8d{bottom:453.829333pt;}
.y51{bottom:454.000000pt;}
.yd3{bottom:457.333333pt;}
.y106{bottom:458.864000pt;}
.y129{bottom:460.666667pt;}
.y6a{bottom:461.253333pt;}
.y35{bottom:464.000000pt;}
.y10{bottom:470.194267pt;}
.yb1{bottom:471.600000pt;}
.y50{bottom:474.000000pt;}
.y8c{bottom:474.357333pt;}
.y105{bottom:475.664000pt;}
.y128{bottom:477.333333pt;}
.y34{bottom:484.000000pt;}
.yf{bottom:490.194267pt;}
.yb0{bottom:491.200000pt;}
.y104{bottom:492.464000pt;}
.y69{bottom:492.581333pt;}
.y4f{bottom:494.000000pt;}
.y8b{bottom:494.885333pt;}
.yd2{bottom:497.333333pt;}
.y33{bottom:504.000000pt;}
.y103{bottom:509.264000pt;}
.ye{bottom:510.194267pt;}
.yd1{bottom:510.666667pt;}
.yaf{bottom:510.800000pt;}
.y68{bottom:513.253333pt;}
.y4e{bottom:514.000000pt;}
.y8a{bottom:515.413333pt;}
.y32{bottom:524.000000pt;}
.y127{bottom:527.333333pt;}
.yd{bottom:530.194267pt;}
.yae{bottom:530.400000pt;}
.y102{bottom:531.813333pt;}
.y67{bottom:533.925333pt;}
.y4d{bottom:534.000000pt;}
.y89{bottom:535.941333pt;}
.yd0{bottom:537.333333pt;}
.y31{bottom:544.000000pt;}
.y101{bottom:547.941333pt;}
.yad{bottom:550.000000pt;}
.yc{bottom:550.194267pt;}
.ycf{bottom:550.666667pt;}
.y4c{bottom:554.000000pt;}
.y66{bottom:554.597333pt;}
.y88{bottom:556.469333pt;}
.y126{bottom:560.666667pt;}
.y30{bottom:564.000000pt;}
.yac{bottom:569.600000pt;}
.yb{bottom:570.194267pt;}
.y4b{bottom:574.000000pt;}
.y65{bottom:575.269333pt;}
.y87{bottom:576.997333pt;}
.yce{bottom:577.333333pt;}
.y2f{bottom:584.000000pt;}
.y100{bottom:588.208000pt;}
.yab{bottom:589.200000pt;}
.ycd{bottom:590.666667pt;}
.y4a{bottom:594.000000pt;}
.y64{bottom:595.941333pt;}
.y86{bottom:597.525333pt;}
.yff{bottom:601.669333pt;}
.y2e{bottom:604.000000pt;}
.yaa{bottom:608.800000pt;}
.ya{bottom:610.194267pt;}
.y125{bottom:610.666667pt;}
.y49{bottom:614.000000pt;}
.yfe{bottom:615.130667pt;}
.y63{bottom:616.613333pt;}
.ycc{bottom:617.333333pt;}
.y85{bottom:618.053333pt;}
.y2d{bottom:624.000000pt;}
.y9{bottom:626.860933pt;}
.y124{bottom:627.333333pt;}
.ya9{bottom:628.400000pt;}
.yfd{bottom:628.592000pt;}
.ycb{bottom:630.666667pt;}
.y48{bottom:634.000000pt;}
.y62{bottom:637.285333pt;}
.y84{bottom:638.581333pt;}
.yfc{bottom:642.053333pt;}
.y2c{bottom:644.000000pt;}
.ya8{bottom:648.000000pt;}
.y47{bottom:654.000000pt;}
.yfb{bottom:655.514667pt;}
.yca{bottom:657.333333pt;}
.y61{bottom:657.957333pt;}
.y83{bottom:659.109333pt;}
.y123{bottom:660.666667pt;}
.y2b{bottom:664.000000pt;}
.y8{bottom:664.314933pt;}
.ya7{bottom:667.600000pt;}
.yfa{bottom:668.976000pt;}
.yc9{bottom:670.666667pt;}
.y46{bottom:674.000000pt;}
.y122{bottom:677.333333pt;}
.y60{bottom:678.629333pt;}
.y82{bottom:679.637333pt;}
.yf9{bottom:682.437333pt;}
.y2a{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.ya6{bottom:687.200000pt;}
.y121{bottom:694.000000pt;}
.yf8{bottom:695.898667pt;}
.yc8{bottom:697.333333pt;}
.y5f{bottom:699.301333pt;}
.y81{bottom:700.165333pt;}
.y29{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.ya5{bottom:706.800000pt;}
.yf7{bottom:709.360000pt;}
.yc7{bottom:710.666667pt;}
.y5e{bottom:719.973333pt;}
.y80{bottom:720.693333pt;}
.yf6{bottom:722.821333pt;}
.y28{bottom:724.000000pt;}
.ya4{bottom:726.400000pt;}
.y120{bottom:727.333333pt;}
.yf5{bottom:736.293333pt;}
.yc6{bottom:737.333333pt;}
.y5d{bottom:740.645333pt;}
.y7f{bottom:741.221333pt;}
.y27{bottom:744.000000pt;}
.ya3{bottom:746.000000pt;}
.yf4{bottom:749.754667pt;}
.yc5{bottom:750.666667pt;}
.y11f{bottom:760.666667pt;}
.y5c{bottom:761.317333pt;}
.y7e{bottom:761.749333pt;}
.yf3{bottom:763.216000pt;}
.y5{bottom:764.000000pt;}
.ya2{bottom:765.600000pt;}
.yf2{bottom:776.677333pt;}
.yc4{bottom:777.333333pt;}
.y5b{bottom:781.989333pt;}
.y7d{bottom:782.277333pt;}
.y26{bottom:784.000000pt;}
.ya1{bottom:785.200000pt;}
.yf1{bottom:790.138667pt;}
.y4{bottom:790.666667pt;}
.y11e{bottom:794.000000pt;}
.y5a{bottom:802.661333pt;}
.y7c{bottom:802.805333pt;}
.yf0{bottom:803.610667pt;}
.y25{bottom:804.000000pt;}
.ya0{bottom:804.800000pt;}
.y11d{bottom:810.666667pt;}
.yef{bottom:817.072000pt;}
.y3{bottom:817.333333pt;}
.y59{bottom:823.333333pt;}
.y24{bottom:824.000000pt;}
.y9f{bottom:824.400000pt;}
.y11c{bottom:827.333333pt;}
.yee{bottom:830.533333pt;}
.yc3{bottom:830.666667pt;}
.h6{height:21.894141pt;}
.ha{height:26.945443pt;}
.hb{height:34.730667pt;}
.h7{height:36.229167pt;}
.h8{height:36.796875pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.hc{height:49.300521pt;}
.h5{height:54.343750pt;}
.h9{height:59.160625pt;}
.h3{height:73.593750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x8{left:92.124400pt;}
.x5{left:100.000000pt;}
.x6{left:113.232000pt;}
.x9{left:118.896000pt;}
.x2{left:120.000000pt;}
.x7{left:132.127867pt;}
.x4{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; }
  