
    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_90515f4100cf7a2da123a3cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_0e86df6f9ce6581d545348ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_f0bed7e36794c49c65abca7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_36228c9b36df1448bdb049a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_d17fb50611159fd6d71561be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_56a759c9b815a786fa24ff65.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.037000;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_1d29fac6cc5488ddd947641c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909180;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_098aa7841b66ba1a1b652c96.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196000;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_53d5449921e419313d8dad4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls36{letter-spacing:-5.508000px;}
.ls32{letter-spacing:-2.601000px;}
.ls16{letter-spacing:-2.106000px;}
.ls17{letter-spacing:-1.836000px;}
.lsa{letter-spacing:-1.479000px;}
.ls23{letter-spacing:-0.960000px;}
.ls22{letter-spacing:-0.900000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls24{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.561000px;}
.ls13{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.510000px;}
.ls15{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.060000px;}
.ls39{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.003600px;}
.ls37{letter-spacing:0.020400px;}
.ls2d{letter-spacing:0.030000px;}
.ls0{letter-spacing:0.051000px;}
.lse{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.153000px;}
.ls1e{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.300000px;}
.ls2b{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.510000px;}
.lsf{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.600000px;}
.ls35{letter-spacing:0.765000px;}
.ls1f{letter-spacing:0.840000px;}
.ls25{letter-spacing:0.960000px;}
.ls26{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.200000px;}
.ls3a{letter-spacing:1.566000px;}
.ls10{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.782000px;}
.ls2f{letter-spacing:1.800000px;}
.ls2e{letter-spacing:1.836000px;}
.ls34{letter-spacing:1.944000px;}
.ls2a{letter-spacing:2.052000px;}
.ls20{letter-spacing:2.214000px;}
.ls28{letter-spacing:2.376000px;}
.ls31{letter-spacing:2.754000px;}
.ls29{letter-spacing:718.815600px;}
.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;}
}
.ws5f{word-spacing:-15.174000px;}
.ws7b{word-spacing:-14.742000px;}
.ws6b{word-spacing:-14.634000px;}
.ws1c{word-spacing:-14.526000px;}
.ws83{word-spacing:-14.364000px;}
.ws73{word-spacing:-14.025000px;}
.ws38{word-spacing:-13.260000px;}
.ws47{word-spacing:-12.960000px;}
.ws7f{word-spacing:-12.600000px;}
.ws85{word-spacing:-11.997000px;}
.ws7c{word-spacing:-11.730000px;}
.ws67{word-spacing:-11.550600px;}
.ws75{word-spacing:-10.965000px;}
.ws86{word-spacing:-10.710000px;}
.ws77{word-spacing:-10.455000px;}
.ws74{word-spacing:-10.200000px;}
.ws0{word-spacing:-9.792000px;}
.ws49{word-spacing:-8.901000px;}
.ws76{word-spacing:-8.364000px;}
.ws48{word-spacing:-7.345800px;}
.ws7d{word-spacing:-5.457000px;}
.ws5b{word-spacing:-2.760000px;}
.ws4f{word-spacing:-2.400000px;}
.ws5a{word-spacing:-2.280000px;}
.ws44{word-spacing:-2.220000px;}
.ws35{word-spacing:-1.980000px;}
.ws1f{word-spacing:-1.920000px;}
.ws12{word-spacing:-1.860000px;}
.ws40{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.740000px;}
.ws1a{word-spacing:-1.680000px;}
.ws2e{word-spacing:-1.620000px;}
.ws1b{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.500000px;}
.ws2f{word-spacing:-1.440000px;}
.ws82{word-spacing:-1.320000px;}
.ws4d{word-spacing:-1.260000px;}
.wsb{word-spacing:-1.200000px;}
.ws62{word-spacing:-1.080000px;}
.ws8{word-spacing:-1.020000px;}
.ws3f{word-spacing:-0.900000px;}
.ws5{word-spacing:-0.867000px;}
.ws20{word-spacing:-0.780000px;}
.ws16{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.714000px;}
.ws25{word-spacing:-0.600000px;}
.ws2b{word-spacing:-0.540000px;}
.ws2d{word-spacing:-0.480000px;}
.ws59{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.223200px;}
.ws9{word-spacing:-0.204000px;}
.ws5e{word-spacing:-0.180000px;}
.ws81{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws70{word-spacing:0.060000px;}
.ws54{word-spacing:0.120000px;}
.ws4e{word-spacing:0.180000px;}
.ws7{word-spacing:0.204000px;}
.ws3d{word-spacing:0.240000px;}
.ws72{word-spacing:0.360000px;}
.ws41{word-spacing:0.480000px;}
.ws55{word-spacing:0.540000px;}
.wsa{word-spacing:0.561000px;}
.ws52{word-spacing:0.600000px;}
.ws4b{word-spacing:0.720000px;}
.ws6{word-spacing:0.765000px;}
.ws27{word-spacing:0.780000px;}
.ws28{word-spacing:0.900000px;}
.ws2a{word-spacing:1.020000px;}
.ws24{word-spacing:1.080000px;}
.ws19{word-spacing:1.200000px;}
.ws4c{word-spacing:1.260000px;}
.ws50{word-spacing:1.320000px;}
.ws2{word-spacing:1.326000px;}
.ws43{word-spacing:1.440000px;}
.ws6e{word-spacing:1.500000px;}
.ws30{word-spacing:1.560000px;}
.ws4{word-spacing:1.581000px;}
.ws3{word-spacing:1.632000px;}
.ws13{word-spacing:1.680000px;}
.ws45{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.ws21{word-spacing:1.860000px;}
.wse{word-spacing:1.920000px;}
.ws36{word-spacing:1.980000px;}
.ws3c{word-spacing:2.040000px;}
.ws71{word-spacing:2.100000px;}
.ws39{word-spacing:2.106000px;}
.ws23{word-spacing:2.160000px;}
.ws3e{word-spacing:2.220000px;}
.ws14{word-spacing:2.280000px;}
.wsd{word-spacing:2.340000px;}
.ws5c{word-spacing:2.400000px;}
.ws10{word-spacing:2.460000px;}
.ws11{word-spacing:2.520000px;}
.ws6a{word-spacing:2.580000px;}
.ws34{word-spacing:2.640000px;}
.wsf{word-spacing:2.700000px;}
.ws29{word-spacing:2.760000px;}
.ws64{word-spacing:2.820000px;}
.ws61{word-spacing:2.880000px;}
.ws58{word-spacing:2.940000px;}
.ws31{word-spacing:3.000000px;}
.ws65{word-spacing:3.060000px;}
.ws89{word-spacing:3.120000px;}
.ws33{word-spacing:3.180000px;}
.ws17{word-spacing:3.240000px;}
.ws42{word-spacing:3.300000px;}
.ws26{word-spacing:3.360000px;}
.ws53{word-spacing:3.420000px;}
.ws2c{word-spacing:3.540000px;}
.ws63{word-spacing:3.600000px;}
.ws3b{word-spacing:3.840000px;}
.ws15{word-spacing:3.900000px;}
.ws22{word-spacing:3.960000px;}
.ws6f{word-spacing:4.020000px;}
.ws32{word-spacing:4.140000px;}
.ws79{word-spacing:4.200000px;}
.ws46{word-spacing:4.440000px;}
.ws51{word-spacing:4.620000px;}
.ws88{word-spacing:4.680000px;}
.ws66{word-spacing:6.780000px;}
.ws5d{word-spacing:7.020000px;}
.ws84{word-spacing:33.759000px;}
.ws6c{word-spacing:812.615400px;}
.ws68{word-spacing:887.499000px;}
.ws60{word-spacing:1186.920000px;}
.ws7e{word-spacing:1187.352000px;}
.ws6d{word-spacing:1187.460000px;}
.ws1d{word-spacing:1187.568000px;}
.ws87{word-spacing:1187.676000px;}
.ws4a{word-spacing:1189.080000px;}
.ws57{word-spacing:1782.918000px;}
.ws69{word-spacing:1783.242000px;}
.ws80{word-spacing:1787.508000px;}
.ws78{word-spacing:1787.994000px;}
.ws3a{word-spacing:1791.018000px;}
._b{margin-left:-1190.635200px;}
._8{margin-left:-1188.817800px;}
._2{margin-left:-8.160000px;}
._15{margin-left:-6.903000px;}
._6{margin-left:-5.895600px;}
._a{margin-left:-4.892400px;}
._1{margin-left:-3.849600px;}
._0{margin-left:-1.920000px;}
._7{width:1.071000px;}
._3{width:2.325600px;}
._4{width:3.391500px;}
._5{width:4.459500px;}
._9{width:6.854100px;}
._12{width:10.080000px;}
._13{width:56.492400px;}
._c{width:57.640800px;}
._14{width:63.612000px;}
._f{width:362.442600px;}
._10{width:379.128000px;}
._e{width:606.837300px;}
._d{width:693.550500px;}
._11{width:699.632700px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:90.567150px;}
.ya5{bottom:91.138800px;}
.y90{bottom:91.151550px;}
.y23{bottom:91.318050px;}
.y10f{bottom:91.318200px;}
.y119{bottom:93.717450px;}
.yd5{bottom:94.675800px;}
.y66{bottom:100.533900px;}
.ya4{bottom:108.389550px;}
.y8f{bottom:108.402300px;}
.y22{bottom:109.768050px;}
.y10e{bottom:109.768200px;}
.y118{bottom:110.968200px;}
.y104{bottom:111.888300px;}
.yd4{bottom:111.926550px;}
.y65{bottom:116.729850px;}
.ya3{bottom:125.640300px;}
.y8e{bottom:125.653050px;}
.y21{bottom:128.218050px;}
.y10d{bottom:128.218200px;}
.y103{bottom:129.139050px;}
.yd3{bottom:129.177300px;}
.y64{bottom:132.925800px;}
.ya2{bottom:142.891050px;}
.y8d{bottom:142.903800px;}
.y102{bottom:146.389800px;}
.yd2{bottom:146.428050px;}
.y20{bottom:146.668050px;}
.y63{bottom:149.121750px;}
.ya1{bottom:160.141800px;}
.y8c{bottom:160.154550px;}
.y101{bottom:163.640550px;}
.yd1{bottom:163.678800px;}
.y1f{bottom:165.118050px;}
.y10c{bottom:165.118200px;}
.y62{bottom:165.317700px;}
.ya0{bottom:177.392550px;}
.y8b{bottom:177.405300px;}
.y100{bottom:180.891300px;}
.yd0{bottom:180.929550px;}
.y1e{bottom:183.568050px;}
.y61{bottom:184.289700px;}
.y9f{bottom:194.643300px;}
.y8a{bottom:194.656050px;}
.yff{bottom:198.142050px;}
.ycf{bottom:198.180300px;}
.y60{bottom:200.485650px;}
.y1d{bottom:202.018050px;}
.y10b{bottom:202.018200px;}
.y9e{bottom:211.894050px;}
.y89{bottom:211.906800px;}
.yfe{bottom:215.392800px;}
.yce{bottom:215.431050px;}
.y5f{bottom:216.681600px;}
.y1c{bottom:220.468050px;}
.y10a{bottom:220.468200px;}
.y9d{bottom:229.144800px;}
.y88{bottom:229.157550px;}
.yfd{bottom:232.643550px;}
.ycd{bottom:232.681800px;}
.y5e{bottom:232.877550px;}
.y1b{bottom:238.918050px;}
.y9c{bottom:246.395550px;}
.y87{bottom:246.408300px;}
.y5d{bottom:249.073500px;}
.yfc{bottom:249.894300px;}
.ycc{bottom:249.932550px;}
.y1a{bottom:257.368050px;}
.y109{bottom:257.368200px;}
.y9b{bottom:263.646300px;}
.y86{bottom:263.659050px;}
.y5c{bottom:265.269450px;}
.yfb{bottom:267.145050px;}
.ycb{bottom:267.183300px;}
.y19{bottom:275.818050px;}
.y108{bottom:275.818200px;}
.y9a{bottom:280.897050px;}
.y85{bottom:280.909800px;}
.y5b{bottom:281.465400px;}
.yfa{bottom:284.395800px;}
.yca{bottom:284.434050px;}
.y18{bottom:294.268050px;}
.y107{bottom:294.268200px;}
.y99{bottom:298.147800px;}
.y84{bottom:298.160550px;}
.y5a{bottom:300.437400px;}
.yf9{bottom:301.646550px;}
.yc9{bottom:301.684800px;}
.y17{bottom:312.718050px;}
.y106{bottom:312.718200px;}
.y98{bottom:315.398550px;}
.y83{bottom:315.411300px;}
.y59{bottom:316.633350px;}
.yf8{bottom:318.897300px;}
.yc8{bottom:318.935550px;}
.y16{bottom:331.168050px;}
.y105{bottom:331.168200px;}
.y97{bottom:332.649300px;}
.y82{bottom:332.662050px;}
.y58{bottom:332.829300px;}
.yf7{bottom:336.148050px;}
.yc7{bottom:336.186300px;}
.y117{bottom:343.324650px;}
.y57{bottom:349.085550px;}
.y15{bottom:349.618050px;}
.y96{bottom:349.900050px;}
.y81{bottom:349.912800px;}
.yf6{bottom:353.398800px;}
.yc6{bottom:353.437050px;}
.y116{bottom:362.296650px;}
.y56{bottom:365.281500px;}
.y95{bottom:367.150800px;}
.y80{bottom:367.163550px;}
.y14{bottom:368.068050px;}
.yf5{bottom:370.649550px;}
.yc5{bottom:370.687800px;}
.y115{bottom:381.268650px;}
.y55{bottom:381.477450px;}
.y94{bottom:384.401550px;}
.y7f{bottom:384.414300px;}
.y40{bottom:386.518050px;}
.yf4{bottom:387.900300px;}
.yc4{bottom:387.938550px;}
.y54{bottom:397.673400px;}
.y114{bottom:400.240650px;}
.y93{bottom:401.652300px;}
.y7e{bottom:401.665050px;}
.y13{bottom:404.968050px;}
.yf3{bottom:405.151050px;}
.yc3{bottom:405.189300px;}
.y53{bottom:413.869350px;}
.y92{bottom:418.903050px;}
.y7d{bottom:418.915800px;}
.y113{bottom:419.212650px;}
.yf2{bottom:422.401800px;}
.yc2{bottom:422.440050px;}
.y3f{bottom:423.418050px;}
.y52{bottom:432.841350px;}
.y91{bottom:436.153800px;}
.y7c{bottom:436.166550px;}
.y112{bottom:438.184650px;}
.yf1{bottom:439.652550px;}
.yc1{bottom:439.690800px;}
.y3e{bottom:441.868050px;}
.y51{bottom:449.037300px;}
.yf0{bottom:456.903300px;}
.yc0{bottom:456.941550px;}
.y111{bottom:457.156650px;}
.y3d{bottom:460.318050px;}
.y50{bottom:465.233250px;}
.y7b{bottom:470.668050px;}
.yef{bottom:474.154050px;}
.ybf{bottom:474.192300px;}
.y110{bottom:476.128650px;}
.y12{bottom:477.108300px;}
.y3c{bottom:478.768050px;}
.y4f{bottom:481.429200px;}
.yee{bottom:491.404800px;}
.ybe{bottom:491.443050px;}
.y11{bottom:494.359050px;}
.y3b{bottom:497.218050px;}
.y4e{bottom:497.625150px;}
.yed{bottom:508.655550px;}
.ybd{bottom:508.693800px;}
.y4d{bottom:513.821100px;}
.y3a{bottom:515.668050px;}
.yec{bottom:525.906300px;}
.ybc{bottom:525.944550px;}
.y10{bottom:528.860550px;}
.y4c{bottom:530.017050px;}
.y39{bottom:534.118050px;}
.yeb{bottom:543.157050px;}
.ybb{bottom:543.195300px;}
.yf{bottom:546.111300px;}
.y4b{bottom:546.213000px;}
.y38{bottom:552.568050px;}
.yea{bottom:560.407800px;}
.yba{bottom:560.446050px;}
.y4a{bottom:562.408950px;}
.ye{bottom:563.362050px;}
.y37{bottom:571.018050px;}
.ye9{bottom:577.658550px;}
.yb9{bottom:577.696800px;}
.y49{bottom:578.604900px;}
.yd{bottom:580.612800px;}
.y7a{bottom:583.882950px;}
.y36{bottom:589.468050px;}
.y48{bottom:594.800850px;}
.ye8{bottom:594.909300px;}
.yb8{bottom:594.947550px;}
.yc{bottom:597.863550px;}
.y79{bottom:600.078900px;}
.y35{bottom:607.918050px;}
.ye7{bottom:612.160050px;}
.yb7{bottom:612.198300px;}
.y47{bottom:613.772850px;}
.yb{bottom:615.114300px;}
.y78{bottom:616.274850px;}
.y34{bottom:626.368050px;}
.ye6{bottom:629.410800px;}
.yb6{bottom:629.449050px;}
.y46{bottom:629.968800px;}
.ya{bottom:632.365050px;}
.y77{bottom:632.470800px;}
.y33{bottom:644.818050px;}
.y45{bottom:646.164750px;}
.ye5{bottom:646.661550px;}
.yb5{bottom:646.699800px;}
.y76{bottom:648.666750px;}
.y9{bottom:649.615800px;}
.y44{bottom:662.360700px;}
.y32{bottom:663.268050px;}
.ye4{bottom:663.912300px;}
.yb4{bottom:663.950550px;}
.y75{bottom:664.862700px;}
.y8{bottom:666.866550px;}
.y43{bottom:678.556650px;}
.ye3{bottom:681.163050px;}
.yb3{bottom:681.201300px;}
.y31{bottom:681.718050px;}
.y74{bottom:683.834700px;}
.y7{bottom:684.117300px;}
.y42{bottom:697.528650px;}
.ye2{bottom:698.413800px;}
.yb2{bottom:698.452050px;}
.y73{bottom:700.030650px;}
.y30{bottom:700.168050px;}
.y6{bottom:701.368050px;}
.ye1{bottom:715.664550px;}
.yb1{bottom:715.702800px;}
.y72{bottom:716.226600px;}
.y2f{bottom:718.618050px;}
.ye0{bottom:732.915300px;}
.yb0{bottom:732.953550px;}
.y71{bottom:735.198600px;}
.y2e{bottom:737.068050px;}
.ydf{bottom:750.166050px;}
.yaf{bottom:750.204300px;}
.y70{bottom:751.394550px;}
.y2d{bottom:755.518050px;}
.yde{bottom:767.416800px;}
.yae{bottom:767.455050px;}
.y6f{bottom:767.590500px;}
.y5{bottom:771.418050px;}
.y2c{bottom:773.968050px;}
.y6e{bottom:783.786450px;}
.ydd{bottom:784.667550px;}
.yad{bottom:784.705800px;}
.y2b{bottom:792.418050px;}
.y6d{bottom:799.982400px;}
.ydc{bottom:801.918300px;}
.yac{bottom:801.956550px;}
.y2a{bottom:810.868050px;}
.y6c{bottom:816.178350px;}
.ydb{bottom:819.169050px;}
.yab{bottom:819.207300px;}
.y4{bottom:819.839700px;}
.y29{bottom:829.318050px;}
.y6b{bottom:832.374300px;}
.yda{bottom:836.419800px;}
.yaa{bottom:836.458050px;}
.y3{bottom:845.327700px;}
.y28{bottom:847.768050px;}
.y6a{bottom:848.570250px;}
.yd9{bottom:853.670550px;}
.ya9{bottom:853.708800px;}
.y69{bottom:864.766200px;}
.y27{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.yd8{bottom:870.921300px;}
.ya8{bottom:870.959550px;}
.y68{bottom:880.962150px;}
.y26{bottom:884.668050px;}
.yd7{bottom:888.172050px;}
.ya7{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y67{bottom:899.934150px;}
.y25{bottom:903.118050px;}
.yd6{bottom:905.422800px;}
.ya6{bottom:905.461050px;}
.y24{bottom:955.942350px;}
.ha{height:42.910200px;}
.hc{height:45.543000px;}
.hb{height:45.696000px;}
.h5{height:45.900000px;}
.he{height:46.614000px;}
.h4{height:48.195000px;}
.h9{height:49.996800px;}
.h8{height:50.868000px;}
.h7{height:54.000000px;}
.hd{height:54.000600px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:72.283500px;}
.xd{left:75.272550px;}
.x1{left:80.787450px;}
.x9{left:85.039350px;}
.x4{left:93.538500px;}
.x2{left:102.042450px;}
.xc{left:338.885700px;}
.x6{left:347.391450px;}
.xa{left:353.414100px;}
.x5{left:355.895400px;}
.x8{left:361.912200px;}
.xb{left:366.164100px;}
.x7{left:374.662200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls36{letter-spacing:-4.896000pt;}
.ls32{letter-spacing:-2.312000pt;}
.ls16{letter-spacing:-1.872000pt;}
.ls17{letter-spacing:-1.632000pt;}
.lsa{letter-spacing:-1.314667pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls22{letter-spacing:-0.800000pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.498667pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.453333pt;}
.ls15{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls39{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.003200pt;}
.ls37{letter-spacing:0.018133pt;}
.ls2d{letter-spacing:0.026667pt;}
.ls0{letter-spacing:0.045333pt;}
.lse{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.136000pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls2b{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.453333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.533333pt;}
.ls35{letter-spacing:0.680000pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls25{letter-spacing:0.853333pt;}
.ls26{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.066667pt;}
.ls3a{letter-spacing:1.392000pt;}
.ls10{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.584000pt;}
.ls2f{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:1.632000pt;}
.ls34{letter-spacing:1.728000pt;}
.ls2a{letter-spacing:1.824000pt;}
.ls20{letter-spacing:1.968000pt;}
.ls28{letter-spacing:2.112000pt;}
.ls31{letter-spacing:2.448000pt;}
.ls29{letter-spacing:638.947200pt;}
.ws5f{word-spacing:-13.488000pt;}
.ws7b{word-spacing:-13.104000pt;}
.ws6b{word-spacing:-13.008000pt;}
.ws1c{word-spacing:-12.912000pt;}
.ws83{word-spacing:-12.768000pt;}
.ws73{word-spacing:-12.466667pt;}
.ws38{word-spacing:-11.786667pt;}
.ws47{word-spacing:-11.520000pt;}
.ws7f{word-spacing:-11.200000pt;}
.ws85{word-spacing:-10.664000pt;}
.ws7c{word-spacing:-10.426667pt;}
.ws67{word-spacing:-10.267200pt;}
.ws75{word-spacing:-9.746667pt;}
.ws86{word-spacing:-9.520000pt;}
.ws77{word-spacing:-9.293333pt;}
.ws74{word-spacing:-9.066667pt;}
.ws0{word-spacing:-8.704000pt;}
.ws49{word-spacing:-7.912000pt;}
.ws76{word-spacing:-7.434667pt;}
.ws48{word-spacing:-6.529600pt;}
.ws7d{word-spacing:-4.850667pt;}
.ws5b{word-spacing:-2.453333pt;}
.ws4f{word-spacing:-2.133333pt;}
.ws5a{word-spacing:-2.026667pt;}
.ws44{word-spacing:-1.973333pt;}
.ws35{word-spacing:-1.760000pt;}
.ws1f{word-spacing:-1.706667pt;}
.ws12{word-spacing:-1.653333pt;}
.ws40{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.546667pt;}
.ws1a{word-spacing:-1.493333pt;}
.ws2e{word-spacing:-1.440000pt;}
.ws1b{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.333333pt;}
.ws2f{word-spacing:-1.280000pt;}
.ws82{word-spacing:-1.173333pt;}
.ws4d{word-spacing:-1.120000pt;}
.wsb{word-spacing:-1.066667pt;}
.ws62{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.906667pt;}
.ws3f{word-spacing:-0.800000pt;}
.ws5{word-spacing:-0.770667pt;}
.ws20{word-spacing:-0.693333pt;}
.ws16{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.634667pt;}
.ws25{word-spacing:-0.533333pt;}
.ws2b{word-spacing:-0.480000pt;}
.ws2d{word-spacing:-0.426667pt;}
.ws59{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.198400pt;}
.ws9{word-spacing:-0.181333pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws81{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws70{word-spacing:0.053333pt;}
.ws54{word-spacing:0.106667pt;}
.ws4e{word-spacing:0.160000pt;}
.ws7{word-spacing:0.181333pt;}
.ws3d{word-spacing:0.213333pt;}
.ws72{word-spacing:0.320000pt;}
.ws41{word-spacing:0.426667pt;}
.ws55{word-spacing:0.480000pt;}
.wsa{word-spacing:0.498667pt;}
.ws52{word-spacing:0.533333pt;}
.ws4b{word-spacing:0.640000pt;}
.ws6{word-spacing:0.680000pt;}
.ws27{word-spacing:0.693333pt;}
.ws28{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.906667pt;}
.ws24{word-spacing:0.960000pt;}
.ws19{word-spacing:1.066667pt;}
.ws4c{word-spacing:1.120000pt;}
.ws50{word-spacing:1.173333pt;}
.ws2{word-spacing:1.178667pt;}
.ws43{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.333333pt;}
.ws30{word-spacing:1.386667pt;}
.ws4{word-spacing:1.405333pt;}
.ws3{word-spacing:1.450667pt;}
.ws13{word-spacing:1.493333pt;}
.ws45{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.ws21{word-spacing:1.653333pt;}
.wse{word-spacing:1.706667pt;}
.ws36{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.813333pt;}
.ws71{word-spacing:1.866667pt;}
.ws39{word-spacing:1.872000pt;}
.ws23{word-spacing:1.920000pt;}
.ws3e{word-spacing:1.973333pt;}
.ws14{word-spacing:2.026667pt;}
.wsd{word-spacing:2.080000pt;}
.ws5c{word-spacing:2.133333pt;}
.ws10{word-spacing:2.186667pt;}
.ws11{word-spacing:2.240000pt;}
.ws6a{word-spacing:2.293333pt;}
.ws34{word-spacing:2.346667pt;}
.wsf{word-spacing:2.400000pt;}
.ws29{word-spacing:2.453333pt;}
.ws64{word-spacing:2.506667pt;}
.ws61{word-spacing:2.560000pt;}
.ws58{word-spacing:2.613333pt;}
.ws31{word-spacing:2.666667pt;}
.ws65{word-spacing:2.720000pt;}
.ws89{word-spacing:2.773333pt;}
.ws33{word-spacing:2.826667pt;}
.ws17{word-spacing:2.880000pt;}
.ws42{word-spacing:2.933333pt;}
.ws26{word-spacing:2.986667pt;}
.ws53{word-spacing:3.040000pt;}
.ws2c{word-spacing:3.146667pt;}
.ws63{word-spacing:3.200000pt;}
.ws3b{word-spacing:3.413333pt;}
.ws15{word-spacing:3.466667pt;}
.ws22{word-spacing:3.520000pt;}
.ws6f{word-spacing:3.573333pt;}
.ws32{word-spacing:3.680000pt;}
.ws79{word-spacing:3.733333pt;}
.ws46{word-spacing:3.946667pt;}
.ws51{word-spacing:4.106667pt;}
.ws88{word-spacing:4.160000pt;}
.ws66{word-spacing:6.026667pt;}
.ws5d{word-spacing:6.240000pt;}
.ws84{word-spacing:30.008000pt;}
.ws6c{word-spacing:722.324800pt;}
.ws68{word-spacing:788.888000pt;}
.ws60{word-spacing:1055.040000pt;}
.ws7e{word-spacing:1055.424000pt;}
.ws6d{word-spacing:1055.520000pt;}
.ws1d{word-spacing:1055.616000pt;}
.ws87{word-spacing:1055.712000pt;}
.ws4a{word-spacing:1056.960000pt;}
.ws57{word-spacing:1584.816000pt;}
.ws69{word-spacing:1585.104000pt;}
.ws80{word-spacing:1588.896000pt;}
.ws78{word-spacing:1589.328000pt;}
.ws3a{word-spacing:1592.016000pt;}
._b{margin-left:-1058.342400pt;}
._8{margin-left:-1056.726933pt;}
._2{margin-left:-7.253333pt;}
._15{margin-left:-6.136000pt;}
._6{margin-left:-5.240533pt;}
._a{margin-left:-4.348800pt;}
._1{margin-left:-3.421867pt;}
._0{margin-left:-1.706667pt;}
._7{width:0.952000pt;}
._3{width:2.067200pt;}
._4{width:3.014667pt;}
._5{width:3.964000pt;}
._9{width:6.092533pt;}
._12{width:8.960000pt;}
._13{width:50.215467pt;}
._c{width:51.236267pt;}
._14{width:56.544000pt;}
._f{width:322.171200pt;}
._10{width:337.002667pt;}
._e{width:539.410933pt;}
._d{width:616.489333pt;}
._11{width:621.895733pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:80.504133pt;}
.ya5{bottom:81.012267pt;}
.y90{bottom:81.023600pt;}
.y23{bottom:81.171600pt;}
.y10f{bottom:81.171733pt;}
.y119{bottom:83.304400pt;}
.yd5{bottom:84.156267pt;}
.y66{bottom:89.363467pt;}
.ya4{bottom:96.346267pt;}
.y8f{bottom:96.357600pt;}
.y22{bottom:97.571600pt;}
.y10e{bottom:97.571733pt;}
.y118{bottom:98.638400pt;}
.y104{bottom:99.456267pt;}
.yd4{bottom:99.490267pt;}
.y65{bottom:103.759867pt;}
.ya3{bottom:111.680267pt;}
.y8e{bottom:111.691600pt;}
.y21{bottom:113.971600pt;}
.y10d{bottom:113.971733pt;}
.y103{bottom:114.790267pt;}
.yd3{bottom:114.824267pt;}
.y64{bottom:118.156267pt;}
.ya2{bottom:127.014267pt;}
.y8d{bottom:127.025600pt;}
.y102{bottom:130.124267pt;}
.yd2{bottom:130.158267pt;}
.y20{bottom:130.371600pt;}
.y63{bottom:132.552667pt;}
.ya1{bottom:142.348267pt;}
.y8c{bottom:142.359600pt;}
.y101{bottom:145.458267pt;}
.yd1{bottom:145.492267pt;}
.y1f{bottom:146.771600pt;}
.y10c{bottom:146.771733pt;}
.y62{bottom:146.949067pt;}
.ya0{bottom:157.682267pt;}
.y8b{bottom:157.693600pt;}
.y100{bottom:160.792267pt;}
.yd0{bottom:160.826267pt;}
.y1e{bottom:163.171600pt;}
.y61{bottom:163.813067pt;}
.y9f{bottom:173.016267pt;}
.y8a{bottom:173.027600pt;}
.yff{bottom:176.126267pt;}
.ycf{bottom:176.160267pt;}
.y60{bottom:178.209467pt;}
.y1d{bottom:179.571600pt;}
.y10b{bottom:179.571733pt;}
.y9e{bottom:188.350267pt;}
.y89{bottom:188.361600pt;}
.yfe{bottom:191.460267pt;}
.yce{bottom:191.494267pt;}
.y5f{bottom:192.605867pt;}
.y1c{bottom:195.971600pt;}
.y10a{bottom:195.971733pt;}
.y9d{bottom:203.684267pt;}
.y88{bottom:203.695600pt;}
.yfd{bottom:206.794267pt;}
.ycd{bottom:206.828267pt;}
.y5e{bottom:207.002267pt;}
.y1b{bottom:212.371600pt;}
.y9c{bottom:219.018267pt;}
.y87{bottom:219.029600pt;}
.y5d{bottom:221.398667pt;}
.yfc{bottom:222.128267pt;}
.ycc{bottom:222.162267pt;}
.y1a{bottom:228.771600pt;}
.y109{bottom:228.771733pt;}
.y9b{bottom:234.352267pt;}
.y86{bottom:234.363600pt;}
.y5c{bottom:235.795067pt;}
.yfb{bottom:237.462267pt;}
.ycb{bottom:237.496267pt;}
.y19{bottom:245.171600pt;}
.y108{bottom:245.171733pt;}
.y9a{bottom:249.686267pt;}
.y85{bottom:249.697600pt;}
.y5b{bottom:250.191467pt;}
.yfa{bottom:252.796267pt;}
.yca{bottom:252.830267pt;}
.y18{bottom:261.571600pt;}
.y107{bottom:261.571733pt;}
.y99{bottom:265.020267pt;}
.y84{bottom:265.031600pt;}
.y5a{bottom:267.055467pt;}
.yf9{bottom:268.130267pt;}
.yc9{bottom:268.164267pt;}
.y17{bottom:277.971600pt;}
.y106{bottom:277.971733pt;}
.y98{bottom:280.354267pt;}
.y83{bottom:280.365600pt;}
.y59{bottom:281.451867pt;}
.yf8{bottom:283.464267pt;}
.yc8{bottom:283.498267pt;}
.y16{bottom:294.371600pt;}
.y105{bottom:294.371733pt;}
.y97{bottom:295.688267pt;}
.y82{bottom:295.699600pt;}
.y58{bottom:295.848267pt;}
.yf7{bottom:298.798267pt;}
.yc7{bottom:298.832267pt;}
.y117{bottom:305.177467pt;}
.y57{bottom:310.298267pt;}
.y15{bottom:310.771600pt;}
.y96{bottom:311.022267pt;}
.y81{bottom:311.033600pt;}
.yf6{bottom:314.132267pt;}
.yc6{bottom:314.166267pt;}
.y116{bottom:322.041467pt;}
.y56{bottom:324.694667pt;}
.y95{bottom:326.356267pt;}
.y80{bottom:326.367600pt;}
.y14{bottom:327.171600pt;}
.yf5{bottom:329.466267pt;}
.yc5{bottom:329.500267pt;}
.y115{bottom:338.905467pt;}
.y55{bottom:339.091067pt;}
.y94{bottom:341.690267pt;}
.y7f{bottom:341.701600pt;}
.y40{bottom:343.571600pt;}
.yf4{bottom:344.800267pt;}
.yc4{bottom:344.834267pt;}
.y54{bottom:353.487467pt;}
.y114{bottom:355.769467pt;}
.y93{bottom:357.024267pt;}
.y7e{bottom:357.035600pt;}
.y13{bottom:359.971600pt;}
.yf3{bottom:360.134267pt;}
.yc3{bottom:360.168267pt;}
.y53{bottom:367.883867pt;}
.y92{bottom:372.358267pt;}
.y7d{bottom:372.369600pt;}
.y113{bottom:372.633467pt;}
.yf2{bottom:375.468267pt;}
.yc2{bottom:375.502267pt;}
.y3f{bottom:376.371600pt;}
.y52{bottom:384.747867pt;}
.y91{bottom:387.692267pt;}
.y7c{bottom:387.703600pt;}
.y112{bottom:389.497467pt;}
.yf1{bottom:390.802267pt;}
.yc1{bottom:390.836267pt;}
.y3e{bottom:392.771600pt;}
.y51{bottom:399.144267pt;}
.yf0{bottom:406.136267pt;}
.yc0{bottom:406.170267pt;}
.y111{bottom:406.361467pt;}
.y3d{bottom:409.171600pt;}
.y50{bottom:413.540667pt;}
.y7b{bottom:418.371600pt;}
.yef{bottom:421.470267pt;}
.ybf{bottom:421.504267pt;}
.y110{bottom:423.225467pt;}
.y12{bottom:424.096267pt;}
.y3c{bottom:425.571600pt;}
.y4f{bottom:427.937067pt;}
.yee{bottom:436.804267pt;}
.ybe{bottom:436.838267pt;}
.y11{bottom:439.430267pt;}
.y3b{bottom:441.971600pt;}
.y4e{bottom:442.333467pt;}
.yed{bottom:452.138267pt;}
.ybd{bottom:452.172267pt;}
.y4d{bottom:456.729867pt;}
.y3a{bottom:458.371600pt;}
.yec{bottom:467.472267pt;}
.ybc{bottom:467.506267pt;}
.y10{bottom:470.098267pt;}
.y4c{bottom:471.126267pt;}
.y39{bottom:474.771600pt;}
.yeb{bottom:482.806267pt;}
.ybb{bottom:482.840267pt;}
.yf{bottom:485.432267pt;}
.y4b{bottom:485.522667pt;}
.y38{bottom:491.171600pt;}
.yea{bottom:498.140267pt;}
.yba{bottom:498.174267pt;}
.y4a{bottom:499.919067pt;}
.ye{bottom:500.766267pt;}
.y37{bottom:507.571600pt;}
.ye9{bottom:513.474267pt;}
.yb9{bottom:513.508267pt;}
.y49{bottom:514.315467pt;}
.yd{bottom:516.100267pt;}
.y7a{bottom:519.007067pt;}
.y36{bottom:523.971600pt;}
.y48{bottom:528.711867pt;}
.ye8{bottom:528.808267pt;}
.yb8{bottom:528.842267pt;}
.yc{bottom:531.434267pt;}
.y79{bottom:533.403467pt;}
.y35{bottom:540.371600pt;}
.ye7{bottom:544.142267pt;}
.yb7{bottom:544.176267pt;}
.y47{bottom:545.575867pt;}
.yb{bottom:546.768267pt;}
.y78{bottom:547.799867pt;}
.y34{bottom:556.771600pt;}
.ye6{bottom:559.476267pt;}
.yb6{bottom:559.510267pt;}
.y46{bottom:559.972267pt;}
.ya{bottom:562.102267pt;}
.y77{bottom:562.196267pt;}
.y33{bottom:573.171600pt;}
.y45{bottom:574.368667pt;}
.ye5{bottom:574.810267pt;}
.yb5{bottom:574.844267pt;}
.y76{bottom:576.592667pt;}
.y9{bottom:577.436267pt;}
.y44{bottom:588.765067pt;}
.y32{bottom:589.571600pt;}
.ye4{bottom:590.144267pt;}
.yb4{bottom:590.178267pt;}
.y75{bottom:590.989067pt;}
.y8{bottom:592.770267pt;}
.y43{bottom:603.161467pt;}
.ye3{bottom:605.478267pt;}
.yb3{bottom:605.512267pt;}
.y31{bottom:605.971600pt;}
.y74{bottom:607.853067pt;}
.y7{bottom:608.104267pt;}
.y42{bottom:620.025467pt;}
.ye2{bottom:620.812267pt;}
.yb2{bottom:620.846267pt;}
.y73{bottom:622.249467pt;}
.y30{bottom:622.371600pt;}
.y6{bottom:623.438267pt;}
.ye1{bottom:636.146267pt;}
.yb1{bottom:636.180267pt;}
.y72{bottom:636.645867pt;}
.y2f{bottom:638.771600pt;}
.ye0{bottom:651.480267pt;}
.yb0{bottom:651.514267pt;}
.y71{bottom:653.509867pt;}
.y2e{bottom:655.171600pt;}
.ydf{bottom:666.814267pt;}
.yaf{bottom:666.848267pt;}
.y70{bottom:667.906267pt;}
.y2d{bottom:671.571600pt;}
.yde{bottom:682.148267pt;}
.yae{bottom:682.182267pt;}
.y6f{bottom:682.302667pt;}
.y5{bottom:685.704933pt;}
.y2c{bottom:687.971600pt;}
.y6e{bottom:696.699067pt;}
.ydd{bottom:697.482267pt;}
.yad{bottom:697.516267pt;}
.y2b{bottom:704.371600pt;}
.y6d{bottom:711.095467pt;}
.ydc{bottom:712.816267pt;}
.yac{bottom:712.850267pt;}
.y2a{bottom:720.771600pt;}
.y6c{bottom:725.491867pt;}
.ydb{bottom:728.150267pt;}
.yab{bottom:728.184267pt;}
.y4{bottom:728.746400pt;}
.y29{bottom:737.171600pt;}
.y6b{bottom:739.888267pt;}
.yda{bottom:743.484267pt;}
.yaa{bottom:743.518267pt;}
.y3{bottom:751.402400pt;}
.y28{bottom:753.571600pt;}
.y6a{bottom:754.284667pt;}
.yd9{bottom:758.818267pt;}
.ya9{bottom:758.852267pt;}
.y69{bottom:768.681067pt;}
.y27{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.yd8{bottom:774.152267pt;}
.ya8{bottom:774.186267pt;}
.y68{bottom:783.077467pt;}
.y26{bottom:786.371600pt;}
.yd7{bottom:789.486267pt;}
.ya7{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y67{bottom:799.941467pt;}
.y25{bottom:802.771600pt;}
.yd6{bottom:804.820267pt;}
.ya6{bottom:804.854267pt;}
.y24{bottom:849.726533pt;}
.ha{height:38.142400pt;}
.hc{height:40.482667pt;}
.hb{height:40.618667pt;}
.h5{height:40.800000pt;}
.he{height:41.434667pt;}
.h4{height:42.840000pt;}
.h9{height:44.441600pt;}
.h8{height:45.216000pt;}
.h7{height:48.000000pt;}
.hd{height:48.000533pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:64.252000pt;}
.xd{left:66.908933pt;}
.x1{left:71.811067pt;}
.x9{left:75.590533pt;}
.x4{left:83.145333pt;}
.x2{left:90.704400pt;}
.xc{left:301.231733pt;}
.x6{left:308.792400pt;}
.xa{left:314.145867pt;}
.x5{left:316.351467pt;}
.x8{left:321.699733pt;}
.xb{left:325.479200pt;}
.x7{left:333.033067pt;}
}




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