
    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_7df1fdfb40fe88dafaeabc99.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_7df1fdfb40fe88dafaeabc99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_4d2bbc748c88c4c1aac41508.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_d86d968877282f04d7b8dd33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_37d87b048cfc962c05bebd3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_a881d999f97328cdb914dc88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_b6388bfa24d589ca117551b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_ea050ccd14cd84730a94c96c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_086565f8ea505c672edf4f0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_a44052b9ff699441ce1fd683.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_662bd6e466ba2222876d188c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9887614d06134c452c438391.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e84a635dd28d4fd2fe1e91e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4d2bbc748c88c4c1aac41508.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_714fb780fa9f6b35aeee69da.woff2')format("woff");}.fff{font-family:fff;line-height:0.945813;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws8a{word-spacing:-6.360000px;}
.ws87{word-spacing:-5.100000px;}
.ws34{word-spacing:-5.040000px;}
.ws6b{word-spacing:-4.500000px;}
.ws29{word-spacing:-3.720000px;}
.wsa{word-spacing:-3.564000px;}
.ws6{word-spacing:-3.456000px;}
.ws7e{word-spacing:-3.420000px;}
.ws7a{word-spacing:-3.300000px;}
.ws46{word-spacing:-3.060000px;}
.ws97{word-spacing:-2.700000px;}
.ws53{word-spacing:-2.280000px;}
.ws59{word-spacing:-2.220000px;}
.ws92{word-spacing:-1.980000px;}
.wsd{word-spacing:-1.620000px;}
.wsa2{word-spacing:-1.320000px;}
.ws33{word-spacing:-1.260000px;}
.ws93{word-spacing:-1.140000px;}
.ws52{word-spacing:-0.960000px;}
.ws2f{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws58{word-spacing:0.120000px;}
.wsa3{word-spacing:0.180000px;}
.ws1e{word-spacing:0.240000px;}
.ws1c{word-spacing:0.480000px;}
.ws1{word-spacing:0.720000px;}
.ws90{word-spacing:0.780000px;}
.ws73{word-spacing:0.840000px;}
.ws5{word-spacing:0.918000px;}
.ws79{word-spacing:0.960000px;}
.ws1a{word-spacing:1.200000px;}
.ws8{word-spacing:1.296000px;}
.ws4a{word-spacing:1.620000px;}
.wsab{word-spacing:1.680000px;}
.ws3a{word-spacing:2.160000px;}
.ws26{word-spacing:2.400000px;}
.ws98{word-spacing:2.700000px;}
.ws83{word-spacing:2.820000px;}
.ws4{word-spacing:2.916000px;}
.wsa5{word-spacing:3.180000px;}
.ws9{word-spacing:3.240000px;}
.ws5e{word-spacing:3.300000px;}
.ws70{word-spacing:3.780000px;}
.ws77{word-spacing:3.900000px;}
.ws7c{word-spacing:4.020000px;}
.ws12{word-spacing:4.320000px;}
.ws5f{word-spacing:4.620000px;}
.ws69{word-spacing:4.680000px;}
.ws28{word-spacing:4.740000px;}
.ws18{word-spacing:4.860000px;}
.ws11{word-spacing:5.184000px;}
.ws6a{word-spacing:5.280000px;}
.ws17{word-spacing:5.400000px;}
.ws3e{word-spacing:5.880000px;}
.ws19{word-spacing:6.060000px;}
.ws81{word-spacing:6.120000px;}
.ws31{word-spacing:6.300000px;}
.ws10{word-spacing:6.372000px;}
.ws9e{word-spacing:6.480000px;}
.ws55{word-spacing:6.600000px;}
.ws1b{word-spacing:6.720000px;}
.ws60{word-spacing:7.200000px;}
.ws43{word-spacing:7.740000px;}
.ws8d{word-spacing:7.800000px;}
.ws6c{word-spacing:7.920000px;}
.ws36{word-spacing:7.980000px;}
.ws3d{word-spacing:8.280000px;}
.ws47{word-spacing:8.400000px;}
.wsc{word-spacing:8.424000px;}
.wsaa{word-spacing:8.460000px;}
.ws3b{word-spacing:8.520000px;}
.ws95{word-spacing:8.640000px;}
.ws6d{word-spacing:8.880000px;}
.ws44{word-spacing:9.060000px;}
.ws66{word-spacing:9.180000px;}
.wsb{word-spacing:9.234000px;}
.ws8f{word-spacing:9.240000px;}
.ws99{word-spacing:9.360000px;}
.wse{word-spacing:9.450000px;}
.ws2b{word-spacing:9.540000px;}
.ws4b{word-spacing:9.600000px;}
.ws82{word-spacing:9.780000px;}
.ws7{word-spacing:9.828000px;}
.wsa0{word-spacing:9.900000px;}
.ws2e{word-spacing:10.140000px;}
.ws24{word-spacing:10.200000px;}
.ws1f{word-spacing:10.500000px;}
.ws76{word-spacing:10.680000px;}
.ws15{word-spacing:10.860000px;}
.ws37{word-spacing:10.920000px;}
.ws71{word-spacing:10.980000px;}
.ws5b{word-spacing:11.220000px;}
.wsf{word-spacing:11.394000px;}
.ws32{word-spacing:11.580000px;}
.ws14{word-spacing:11.760000px;}
.ws4e{word-spacing:11.880000px;}
.ws16{word-spacing:11.940000px;}
.ws3f{word-spacing:12.000000px;}
.ws23{word-spacing:12.420000px;}
.ws84{word-spacing:12.720000px;}
.ws5a{word-spacing:12.900000px;}
.ws35{word-spacing:13.620000px;}
.ws2d{word-spacing:14.220000px;}
.ws67{word-spacing:14.640000px;}
.wsa8{word-spacing:15.540000px;}
.ws39{word-spacing:16.020000px;}
.ws80{word-spacing:16.140000px;}
.ws72{word-spacing:16.200000px;}
.ws75{word-spacing:16.260000px;}
.ws4f{word-spacing:16.320000px;}
.ws74{word-spacing:16.440000px;}
.ws86{word-spacing:16.500000px;}
.ws57{word-spacing:16.620000px;}
.ws9d{word-spacing:16.980000px;}
.ws42{word-spacing:17.340000px;}
.ws22{word-spacing:17.400000px;}
.ws45{word-spacing:17.460000px;}
.ws2c{word-spacing:17.580000px;}
.ws49{word-spacing:18.600000px;}
.ws91{word-spacing:18.840000px;}
.ws9f{word-spacing:19.200000px;}
.ws13{word-spacing:19.380000px;}
.ws64{word-spacing:20.220000px;}
.ws4d{word-spacing:20.280000px;}
.ws2a{word-spacing:20.460000px;}
.wsad{word-spacing:20.520000px;}
.ws62{word-spacing:20.760000px;}
.ws6f{word-spacing:21.000000px;}
.ws48{word-spacing:21.060000px;}
.ws89{word-spacing:21.720000px;}
.wsac{word-spacing:22.020000px;}
.wsa7{word-spacing:22.260000px;}
.ws1d{word-spacing:22.740000px;}
.ws68{word-spacing:23.640000px;}
.ws9a{word-spacing:24.060000px;}
.ws61{word-spacing:24.120000px;}
.ws8b{word-spacing:24.540000px;}
.ws25{word-spacing:24.720000px;}
.ws7b{word-spacing:25.200000px;}
.ws30{word-spacing:25.260000px;}
.ws8e{word-spacing:25.380000px;}
.ws9b{word-spacing:26.040000px;}
.ws63{word-spacing:26.100000px;}
.ws88{word-spacing:27.240000px;}
.ws96{word-spacing:27.420000px;}
.ws27{word-spacing:27.840000px;}
.ws41{word-spacing:28.200000px;}
.ws50{word-spacing:29.580000px;}
.ws4c{word-spacing:29.940000px;}
.ws65{word-spacing:30.540000px;}
.ws7f{word-spacing:30.780000px;}
.ws54{word-spacing:32.640000px;}
.wsa1{word-spacing:32.700000px;}
.ws20{word-spacing:33.621000px;}
.ws38{word-spacing:33.900000px;}
.ws40{word-spacing:34.620000px;}
.ws56{word-spacing:35.580000px;}
.ws6e{word-spacing:37.020000px;}
.ws9c{word-spacing:37.440000px;}
.ws5c{word-spacing:39.060000px;}
.ws5d{word-spacing:39.840000px;}
.ws78{word-spacing:41.520000px;}
.ws7d{word-spacing:41.820000px;}
.ws8c{word-spacing:42.240000px;}
.ws85{word-spacing:42.780000px;}
.wsa9{word-spacing:44.520000px;}
.wsa6{word-spacing:44.760000px;}
.wsa4{word-spacing:51.960000px;}
.ws21{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._27{margin-left:-43.818000px;}
._29{margin-left:-36.618000px;}
._6{margin-left:-13.149000px;}
._3{margin-left:-8.679000px;}
._4{margin-left:-7.257000px;}
._5{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._7{margin-left:-2.689800px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._12{width:2.787000px;}
._16{width:4.368000px;}
._15{width:5.382000px;}
._26{width:7.422000px;}
._f{width:8.880000px;}
._18{width:10.176000px;}
._19{width:11.304000px;}
._21{width:13.032000px;}
._b{width:16.362000px;}
._e{width:18.276000px;}
._11{width:19.338000px;}
._1b{width:20.868000px;}
._1a{width:21.930000px;}
._28{width:23.508000px;}
._13{width:24.858000px;}
._23{width:27.240000px;}
._1d{width:28.512000px;}
._1e{width:29.748000px;}
._d{width:36.120000px;}
._14{width:38.664000px;}
._10{width:45.300000px;}
._24{width:48.300000px;}
._8{width:49.620000px;}
._20{width:51.108000px;}
._c{width:52.440000px;}
._17{width:53.700000px;}
._1f{width:55.800000px;}
._1c{width:58.800000px;}
._9{width:62.280000px;}
._25{width:63.540000px;}
._22{width:66.120000px;}
._a{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y30{bottom:96.142650px;}
.y94{bottom:98.923200px;}
.ybf{bottom:99.159600px;}
.y68{bottom:99.163200px;}
.y2f{bottom:115.642650px;}
.y93{bottom:118.423200px;}
.ybe{bottom:118.659600px;}
.y67{bottom:118.663200px;}
.y2e{bottom:135.142650px;}
.y92{bottom:137.923200px;}
.ybd{bottom:138.159600px;}
.y66{bottom:138.163200px;}
.y2d{bottom:154.642650px;}
.y91{bottom:157.423200px;}
.ybc{bottom:157.659600px;}
.y65{bottom:157.663200px;}
.y2c{bottom:174.142650px;}
.y90{bottom:176.923200px;}
.ybb{bottom:177.159600px;}
.y64{bottom:177.163200px;}
.y2b{bottom:193.642650px;}
.yba{bottom:196.659600px;}
.y63{bottom:196.663200px;}
.y2a{bottom:213.142650px;}
.y8f{bottom:215.923200px;}
.yc3{bottom:216.159600px;}
.y62{bottom:216.163200px;}
.y29{bottom:232.642650px;}
.y8e{bottom:235.423200px;}
.yb9{bottom:235.659600px;}
.y61{bottom:235.663200px;}
.y28{bottom:252.142650px;}
.y8d{bottom:254.923200px;}
.yb8{bottom:255.159600px;}
.y60{bottom:255.163200px;}
.y27{bottom:271.642650px;}
.y8c{bottom:274.423200px;}
.yb7{bottom:274.659600px;}
.y5f{bottom:274.663200px;}
.y26{bottom:291.142650px;}
.y8b{bottom:293.923200px;}
.yb6{bottom:294.159600px;}
.y5e{bottom:294.163200px;}
.y25{bottom:310.642650px;}
.y8a{bottom:313.423200px;}
.yb5{bottom:313.659600px;}
.y5d{bottom:313.663200px;}
.y24{bottom:330.142650px;}
.y89{bottom:332.923200px;}
.yb4{bottom:333.159600px;}
.y5c{bottom:333.163200px;}
.y23{bottom:349.642650px;}
.y88{bottom:352.423200px;}
.yb3{bottom:352.659600px;}
.y5b{bottom:352.663200px;}
.y22{bottom:369.142650px;}
.y87{bottom:371.923200px;}
.yb2{bottom:372.159600px;}
.y21{bottom:388.642650px;}
.y86{bottom:391.423200px;}
.yb1{bottom:391.659600px;}
.y5a{bottom:391.663200px;}
.y20{bottom:408.142650px;}
.y85{bottom:410.923200px;}
.yb0{bottom:411.159600px;}
.y59{bottom:411.163200px;}
.y84{bottom:430.423200px;}
.yc2{bottom:430.659600px;}
.y58{bottom:430.663200px;}
.y1f{bottom:447.229650px;}
.y83{bottom:449.923200px;}
.yaf{bottom:450.159600px;}
.y57{bottom:450.163200px;}
.y39{bottom:456.139950px;}
.y1e{bottom:466.723650px;}
.yae{bottom:469.659600px;}
.y56{bottom:469.663200px;}
.y38{bottom:478.639950px;}
.y1d{bottom:484.719150px;}
.y82{bottom:488.923200px;}
.yad{bottom:489.159600px;}
.y55{bottom:489.163200px;}
.y37{bottom:501.139950px;}
.y1c{bottom:502.714650px;}
.y81{bottom:508.423200px;}
.yac{bottom:508.659600px;}
.y54{bottom:508.663200px;}
.y1b{bottom:520.710150px;}
.y80{bottom:527.923200px;}
.yab{bottom:528.159600px;}
.y53{bottom:528.163200px;}
.y1a{bottom:538.705650px;}
.y36{bottom:541.639950px;}
.y7f{bottom:547.423200px;}
.yaa{bottom:547.659600px;}
.y52{bottom:547.663200px;}
.y19{bottom:556.701150px;}
.y7e{bottom:566.923200px;}
.ya9{bottom:567.159600px;}
.y51{bottom:567.163200px;}
.y18{bottom:574.696650px;}
.y7d{bottom:586.423200px;}
.y35{bottom:586.639950px;}
.ya8{bottom:586.659600px;}
.y50{bottom:586.663200px;}
.y17{bottom:592.692150px;}
.y7c{bottom:605.923200px;}
.ya7{bottom:606.159600px;}
.y4f{bottom:606.163200px;}
.y16{bottom:610.687650px;}
.y7b{bottom:625.423200px;}
.ya6{bottom:625.659600px;}
.y4e{bottom:625.663200px;}
.y34{bottom:627.139950px;}
.y15{bottom:628.683150px;}
.y7a{bottom:644.923200px;}
.yc1{bottom:645.159600px;}
.y4d{bottom:645.163200px;}
.y14{bottom:646.678650px;}
.y33{bottom:663.139950px;}
.y79{bottom:664.423200px;}
.ya5{bottom:664.659600px;}
.y4c{bottom:664.663200px;}
.y13{bottom:664.674150px;}
.y12{bottom:682.669650px;}
.y78{bottom:683.923200px;}
.ya4{bottom:684.159600px;}
.y4b{bottom:684.163200px;}
.y32{bottom:699.139950px;}
.y11{bottom:700.665150px;}
.y77{bottom:703.423200px;}
.ya3{bottom:703.659600px;}
.y10{bottom:718.660650px;}
.y76{bottom:722.923200px;}
.ya2{bottom:723.159600px;}
.y4a{bottom:723.163200px;}
.y31{bottom:735.139950px;}
.yf{bottom:736.656150px;}
.y75{bottom:742.423200px;}
.ya1{bottom:742.659600px;}
.y49{bottom:742.663200px;}
.ye{bottom:754.651650px;}
.y74{bottom:761.923200px;}
.ya0{bottom:762.159600px;}
.y48{bottom:762.163200px;}
.yd{bottom:772.647150px;}
.y9f{bottom:781.659600px;}
.y47{bottom:781.663200px;}
.yc{bottom:790.642650px;}
.y73{bottom:800.923200px;}
.y9e{bottom:801.159600px;}
.y46{bottom:801.163200px;}
.yb{bottom:808.642650px;}
.y72{bottom:820.423200px;}
.y9d{bottom:820.659600px;}
.y45{bottom:820.663200px;}
.y71{bottom:839.923200px;}
.y9c{bottom:840.159600px;}
.y44{bottom:840.163200px;}
.ya{bottom:847.653150px;}
.y70{bottom:859.423200px;}
.y9b{bottom:859.659600px;}
.y43{bottom:859.663200px;}
.y9{bottom:867.147150px;}
.y6f{bottom:878.923200px;}
.yc0{bottom:879.159600px;}
.y42{bottom:879.163200px;}
.y8{bottom:885.142650px;}
.y6e{bottom:898.423200px;}
.y9a{bottom:898.659600px;}
.y41{bottom:898.663200px;}
.y7{bottom:903.142650px;}
.y6d{bottom:917.923200px;}
.y99{bottom:918.159600px;}
.y40{bottom:918.163200px;}
.y6c{bottom:937.423200px;}
.y98{bottom:937.659600px;}
.y3f{bottom:937.663200px;}
.y6{bottom:942.142650px;}
.y6b{bottom:956.923200px;}
.y97{bottom:957.159600px;}
.y3e{bottom:957.163200px;}
.y5{bottom:969.142650px;}
.y6a{bottom:976.423200px;}
.y96{bottom:976.659600px;}
.y3d{bottom:976.663200px;}
.y69{bottom:995.923200px;}
.y95{bottom:996.159600px;}
.y3c{bottom:996.163200px;}
.y4{bottom:1024.374150px;}
.y3b{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.559100px;}
.xb{left:224.187900px;}
.x5{left:245.460600px;}
.x6{left:288.345600px;}
.xf{left:399.929550px;}
.x4{left:412.272150px;}
.x10{left:426.929550px;}
.xa{left:454.403850px;}
.x8{left:478.123350px;}
.x9{left:479.392350px;}
.x7{left:543.951300px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8a{word-spacing:-5.653333pt;}
.ws87{word-spacing:-4.533333pt;}
.ws34{word-spacing:-4.480000pt;}
.ws6b{word-spacing:-4.000000pt;}
.ws29{word-spacing:-3.306667pt;}
.wsa{word-spacing:-3.168000pt;}
.ws6{word-spacing:-3.072000pt;}
.ws7e{word-spacing:-3.040000pt;}
.ws7a{word-spacing:-2.933333pt;}
.ws46{word-spacing:-2.720000pt;}
.ws97{word-spacing:-2.400000pt;}
.ws53{word-spacing:-2.026667pt;}
.ws59{word-spacing:-1.973333pt;}
.ws92{word-spacing:-1.760000pt;}
.wsd{word-spacing:-1.440000pt;}
.wsa2{word-spacing:-1.173333pt;}
.ws33{word-spacing:-1.120000pt;}
.ws93{word-spacing:-1.013333pt;}
.ws52{word-spacing:-0.853333pt;}
.ws2f{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws58{word-spacing:0.106667pt;}
.wsa3{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.426667pt;}
.ws1{word-spacing:0.640000pt;}
.ws90{word-spacing:0.693333pt;}
.ws73{word-spacing:0.746667pt;}
.ws5{word-spacing:0.816000pt;}
.ws79{word-spacing:0.853333pt;}
.ws1a{word-spacing:1.066667pt;}
.ws8{word-spacing:1.152000pt;}
.ws4a{word-spacing:1.440000pt;}
.wsab{word-spacing:1.493333pt;}
.ws3a{word-spacing:1.920000pt;}
.ws26{word-spacing:2.133333pt;}
.ws98{word-spacing:2.400000pt;}
.ws83{word-spacing:2.506667pt;}
.ws4{word-spacing:2.592000pt;}
.wsa5{word-spacing:2.826667pt;}
.ws9{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.933333pt;}
.ws70{word-spacing:3.360000pt;}
.ws77{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.573333pt;}
.ws12{word-spacing:3.840000pt;}
.ws5f{word-spacing:4.106667pt;}
.ws69{word-spacing:4.160000pt;}
.ws28{word-spacing:4.213333pt;}
.ws18{word-spacing:4.320000pt;}
.ws11{word-spacing:4.608000pt;}
.ws6a{word-spacing:4.693333pt;}
.ws17{word-spacing:4.800000pt;}
.ws3e{word-spacing:5.226667pt;}
.ws19{word-spacing:5.386667pt;}
.ws81{word-spacing:5.440000pt;}
.ws31{word-spacing:5.600000pt;}
.ws10{word-spacing:5.664000pt;}
.ws9e{word-spacing:5.760000pt;}
.ws55{word-spacing:5.866667pt;}
.ws1b{word-spacing:5.973333pt;}
.ws60{word-spacing:6.400000pt;}
.ws43{word-spacing:6.880000pt;}
.ws8d{word-spacing:6.933333pt;}
.ws6c{word-spacing:7.040000pt;}
.ws36{word-spacing:7.093333pt;}
.ws3d{word-spacing:7.360000pt;}
.ws47{word-spacing:7.466667pt;}
.wsc{word-spacing:7.488000pt;}
.wsaa{word-spacing:7.520000pt;}
.ws3b{word-spacing:7.573333pt;}
.ws95{word-spacing:7.680000pt;}
.ws6d{word-spacing:7.893333pt;}
.ws44{word-spacing:8.053333pt;}
.ws66{word-spacing:8.160000pt;}
.wsb{word-spacing:8.208000pt;}
.ws8f{word-spacing:8.213333pt;}
.ws99{word-spacing:8.320000pt;}
.wse{word-spacing:8.400000pt;}
.ws2b{word-spacing:8.480000pt;}
.ws4b{word-spacing:8.533333pt;}
.ws82{word-spacing:8.693333pt;}
.ws7{word-spacing:8.736000pt;}
.wsa0{word-spacing:8.800000pt;}
.ws2e{word-spacing:9.013333pt;}
.ws24{word-spacing:9.066667pt;}
.ws1f{word-spacing:9.333333pt;}
.ws76{word-spacing:9.493333pt;}
.ws15{word-spacing:9.653333pt;}
.ws37{word-spacing:9.706667pt;}
.ws71{word-spacing:9.760000pt;}
.ws5b{word-spacing:9.973333pt;}
.wsf{word-spacing:10.128000pt;}
.ws32{word-spacing:10.293333pt;}
.ws14{word-spacing:10.453333pt;}
.ws4e{word-spacing:10.560000pt;}
.ws16{word-spacing:10.613333pt;}
.ws3f{word-spacing:10.666667pt;}
.ws23{word-spacing:11.040000pt;}
.ws84{word-spacing:11.306667pt;}
.ws5a{word-spacing:11.466667pt;}
.ws35{word-spacing:12.106667pt;}
.ws2d{word-spacing:12.640000pt;}
.ws67{word-spacing:13.013333pt;}
.wsa8{word-spacing:13.813333pt;}
.ws39{word-spacing:14.240000pt;}
.ws80{word-spacing:14.346667pt;}
.ws72{word-spacing:14.400000pt;}
.ws75{word-spacing:14.453333pt;}
.ws4f{word-spacing:14.506667pt;}
.ws74{word-spacing:14.613333pt;}
.ws86{word-spacing:14.666667pt;}
.ws57{word-spacing:14.773333pt;}
.ws9d{word-spacing:15.093333pt;}
.ws42{word-spacing:15.413333pt;}
.ws22{word-spacing:15.466667pt;}
.ws45{word-spacing:15.520000pt;}
.ws2c{word-spacing:15.626667pt;}
.ws49{word-spacing:16.533333pt;}
.ws91{word-spacing:16.746667pt;}
.ws9f{word-spacing:17.066667pt;}
.ws13{word-spacing:17.226667pt;}
.ws64{word-spacing:17.973333pt;}
.ws4d{word-spacing:18.026667pt;}
.ws2a{word-spacing:18.186667pt;}
.wsad{word-spacing:18.240000pt;}
.ws62{word-spacing:18.453333pt;}
.ws6f{word-spacing:18.666667pt;}
.ws48{word-spacing:18.720000pt;}
.ws89{word-spacing:19.306667pt;}
.wsac{word-spacing:19.573333pt;}
.wsa7{word-spacing:19.786667pt;}
.ws1d{word-spacing:20.213333pt;}
.ws68{word-spacing:21.013333pt;}
.ws9a{word-spacing:21.386667pt;}
.ws61{word-spacing:21.440000pt;}
.ws8b{word-spacing:21.813333pt;}
.ws25{word-spacing:21.973333pt;}
.ws7b{word-spacing:22.400000pt;}
.ws30{word-spacing:22.453333pt;}
.ws8e{word-spacing:22.560000pt;}
.ws9b{word-spacing:23.146667pt;}
.ws63{word-spacing:23.200000pt;}
.ws88{word-spacing:24.213333pt;}
.ws96{word-spacing:24.373333pt;}
.ws27{word-spacing:24.746667pt;}
.ws41{word-spacing:25.066667pt;}
.ws50{word-spacing:26.293333pt;}
.ws4c{word-spacing:26.613333pt;}
.ws65{word-spacing:27.146667pt;}
.ws7f{word-spacing:27.360000pt;}
.ws54{word-spacing:29.013333pt;}
.wsa1{word-spacing:29.066667pt;}
.ws20{word-spacing:29.885333pt;}
.ws38{word-spacing:30.133333pt;}
.ws40{word-spacing:30.773333pt;}
.ws56{word-spacing:31.626667pt;}
.ws6e{word-spacing:32.906667pt;}
.ws9c{word-spacing:33.280000pt;}
.ws5c{word-spacing:34.720000pt;}
.ws5d{word-spacing:35.413333pt;}
.ws78{word-spacing:36.906667pt;}
.ws7d{word-spacing:37.173333pt;}
.ws8c{word-spacing:37.546667pt;}
.ws85{word-spacing:38.026667pt;}
.wsa9{word-spacing:39.573333pt;}
.wsa6{word-spacing:39.786667pt;}
.wsa4{word-spacing:46.186667pt;}
.ws21{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._27{margin-left:-38.949333pt;}
._29{margin-left:-32.549333pt;}
._6{margin-left:-11.688000pt;}
._3{margin-left:-7.714667pt;}
._4{margin-left:-6.450667pt;}
._5{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._7{margin-left:-2.390933pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._12{width:2.477333pt;}
._16{width:3.882667pt;}
._15{width:4.784000pt;}
._26{width:6.597333pt;}
._f{width:7.893333pt;}
._18{width:9.045333pt;}
._19{width:10.048000pt;}
._21{width:11.584000pt;}
._b{width:14.544000pt;}
._e{width:16.245333pt;}
._11{width:17.189333pt;}
._1b{width:18.549333pt;}
._1a{width:19.493333pt;}
._28{width:20.896000pt;}
._13{width:22.096000pt;}
._23{width:24.213333pt;}
._1d{width:25.344000pt;}
._1e{width:26.442667pt;}
._d{width:32.106667pt;}
._14{width:34.368000pt;}
._10{width:40.266667pt;}
._24{width:42.933333pt;}
._8{width:44.106667pt;}
._20{width:45.429333pt;}
._c{width:46.613333pt;}
._17{width:47.733333pt;}
._1f{width:49.600000pt;}
._1c{width:52.266667pt;}
._9{width:55.360000pt;}
._25{width:56.480000pt;}
._22{width:58.773333pt;}
._a{width:62.240000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y30{bottom:85.460133pt;}
.y94{bottom:87.931733pt;}
.ybf{bottom:88.141867pt;}
.y68{bottom:88.145067pt;}
.y2f{bottom:102.793467pt;}
.y93{bottom:105.265067pt;}
.ybe{bottom:105.475200pt;}
.y67{bottom:105.478400pt;}
.y2e{bottom:120.126800pt;}
.y92{bottom:122.598400pt;}
.ybd{bottom:122.808533pt;}
.y66{bottom:122.811733pt;}
.y2d{bottom:137.460133pt;}
.y91{bottom:139.931733pt;}
.ybc{bottom:140.141867pt;}
.y65{bottom:140.145067pt;}
.y2c{bottom:154.793467pt;}
.y90{bottom:157.265067pt;}
.ybb{bottom:157.475200pt;}
.y64{bottom:157.478400pt;}
.y2b{bottom:172.126800pt;}
.yba{bottom:174.808533pt;}
.y63{bottom:174.811733pt;}
.y2a{bottom:189.460133pt;}
.y8f{bottom:191.931733pt;}
.yc3{bottom:192.141867pt;}
.y62{bottom:192.145067pt;}
.y29{bottom:206.793467pt;}
.y8e{bottom:209.265067pt;}
.yb9{bottom:209.475200pt;}
.y61{bottom:209.478400pt;}
.y28{bottom:224.126800pt;}
.y8d{bottom:226.598400pt;}
.yb8{bottom:226.808533pt;}
.y60{bottom:226.811733pt;}
.y27{bottom:241.460133pt;}
.y8c{bottom:243.931733pt;}
.yb7{bottom:244.141867pt;}
.y5f{bottom:244.145067pt;}
.y26{bottom:258.793467pt;}
.y8b{bottom:261.265067pt;}
.yb6{bottom:261.475200pt;}
.y5e{bottom:261.478400pt;}
.y25{bottom:276.126800pt;}
.y8a{bottom:278.598400pt;}
.yb5{bottom:278.808533pt;}
.y5d{bottom:278.811733pt;}
.y24{bottom:293.460133pt;}
.y89{bottom:295.931733pt;}
.yb4{bottom:296.141867pt;}
.y5c{bottom:296.145067pt;}
.y23{bottom:310.793467pt;}
.y88{bottom:313.265067pt;}
.yb3{bottom:313.475200pt;}
.y5b{bottom:313.478400pt;}
.y22{bottom:328.126800pt;}
.y87{bottom:330.598400pt;}
.yb2{bottom:330.808533pt;}
.y21{bottom:345.460133pt;}
.y86{bottom:347.931733pt;}
.yb1{bottom:348.141867pt;}
.y5a{bottom:348.145067pt;}
.y20{bottom:362.793467pt;}
.y85{bottom:365.265067pt;}
.yb0{bottom:365.475200pt;}
.y59{bottom:365.478400pt;}
.y84{bottom:382.598400pt;}
.yc2{bottom:382.808533pt;}
.y58{bottom:382.811733pt;}
.y1f{bottom:397.537467pt;}
.y83{bottom:399.931733pt;}
.yaf{bottom:400.141867pt;}
.y57{bottom:400.145067pt;}
.y39{bottom:405.457733pt;}
.y1e{bottom:414.865467pt;}
.yae{bottom:417.475200pt;}
.y56{bottom:417.478400pt;}
.y38{bottom:425.457733pt;}
.y1d{bottom:430.861467pt;}
.y82{bottom:434.598400pt;}
.yad{bottom:434.808533pt;}
.y55{bottom:434.811733pt;}
.y37{bottom:445.457733pt;}
.y1c{bottom:446.857467pt;}
.y81{bottom:451.931733pt;}
.yac{bottom:452.141867pt;}
.y54{bottom:452.145067pt;}
.y1b{bottom:462.853467pt;}
.y80{bottom:469.265067pt;}
.yab{bottom:469.475200pt;}
.y53{bottom:469.478400pt;}
.y1a{bottom:478.849467pt;}
.y36{bottom:481.457733pt;}
.y7f{bottom:486.598400pt;}
.yaa{bottom:486.808533pt;}
.y52{bottom:486.811733pt;}
.y19{bottom:494.845467pt;}
.y7e{bottom:503.931733pt;}
.ya9{bottom:504.141867pt;}
.y51{bottom:504.145067pt;}
.y18{bottom:510.841467pt;}
.y7d{bottom:521.265067pt;}
.y35{bottom:521.457733pt;}
.ya8{bottom:521.475200pt;}
.y50{bottom:521.478400pt;}
.y17{bottom:526.837467pt;}
.y7c{bottom:538.598400pt;}
.ya7{bottom:538.808533pt;}
.y4f{bottom:538.811733pt;}
.y16{bottom:542.833467pt;}
.y7b{bottom:555.931733pt;}
.ya6{bottom:556.141867pt;}
.y4e{bottom:556.145067pt;}
.y34{bottom:557.457733pt;}
.y15{bottom:558.829467pt;}
.y7a{bottom:573.265067pt;}
.yc1{bottom:573.475200pt;}
.y4d{bottom:573.478400pt;}
.y14{bottom:574.825467pt;}
.y33{bottom:589.457733pt;}
.y79{bottom:590.598400pt;}
.ya5{bottom:590.808533pt;}
.y4c{bottom:590.811733pt;}
.y13{bottom:590.821467pt;}
.y12{bottom:606.817467pt;}
.y78{bottom:607.931733pt;}
.ya4{bottom:608.141867pt;}
.y4b{bottom:608.145067pt;}
.y32{bottom:621.457733pt;}
.y11{bottom:622.813467pt;}
.y77{bottom:625.265067pt;}
.ya3{bottom:625.475200pt;}
.y10{bottom:638.809467pt;}
.y76{bottom:642.598400pt;}
.ya2{bottom:642.808533pt;}
.y4a{bottom:642.811733pt;}
.y31{bottom:653.457733pt;}
.yf{bottom:654.805467pt;}
.y75{bottom:659.931733pt;}
.ya1{bottom:660.141867pt;}
.y49{bottom:660.145067pt;}
.ye{bottom:670.801467pt;}
.y74{bottom:677.265067pt;}
.ya0{bottom:677.475200pt;}
.y48{bottom:677.478400pt;}
.yd{bottom:686.797467pt;}
.y9f{bottom:694.808533pt;}
.y47{bottom:694.811733pt;}
.yc{bottom:702.793467pt;}
.y73{bottom:711.931733pt;}
.y9e{bottom:712.141867pt;}
.y46{bottom:712.145067pt;}
.yb{bottom:718.793467pt;}
.y72{bottom:729.265067pt;}
.y9d{bottom:729.475200pt;}
.y45{bottom:729.478400pt;}
.y71{bottom:746.598400pt;}
.y9c{bottom:746.808533pt;}
.y44{bottom:746.811733pt;}
.ya{bottom:753.469467pt;}
.y70{bottom:763.931733pt;}
.y9b{bottom:764.141867pt;}
.y43{bottom:764.145067pt;}
.y9{bottom:770.797467pt;}
.y6f{bottom:781.265067pt;}
.yc0{bottom:781.475200pt;}
.y42{bottom:781.478400pt;}
.y8{bottom:786.793467pt;}
.y6e{bottom:798.598400pt;}
.y9a{bottom:798.808533pt;}
.y41{bottom:798.811733pt;}
.y7{bottom:802.793467pt;}
.y6d{bottom:815.931733pt;}
.y99{bottom:816.141867pt;}
.y40{bottom:816.145067pt;}
.y6c{bottom:833.265067pt;}
.y98{bottom:833.475200pt;}
.y3f{bottom:833.478400pt;}
.y6{bottom:837.460133pt;}
.y6b{bottom:850.598400pt;}
.y97{bottom:850.808533pt;}
.y3e{bottom:850.811733pt;}
.y5{bottom:861.460133pt;}
.y6a{bottom:867.931733pt;}
.y96{bottom:868.141867pt;}
.y3d{bottom:868.145067pt;}
.y69{bottom:885.265067pt;}
.y95{bottom:885.475200pt;}
.y3c{bottom:885.478400pt;}
.y4{bottom:910.554800pt;}
.y3b{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:65.385867pt;}
.xb{left:199.278133pt;}
.x5{left:218.187200pt;}
.x6{left:256.307200pt;}
.xf{left:355.492933pt;}
.x4{left:366.464133pt;}
.x10{left:379.492933pt;}
.xa{left:403.914533pt;}
.x8{left:424.998533pt;}
.x9{left:426.126533pt;}
.x7{left:483.512267pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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