
    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_0a031d74606743b1df0b3f21.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_be186d9c851158f6d92f1d96.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_10e86d51efa550ad6f5e7b48.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967285;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_0d2ced403435c64ec6c88768.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_15e90fe2992434fb9ac534fe.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_15a2558b71aa6fb24eaddd09.woff')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_f0647ae181a45ff2345aeb6d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.681641;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_75e2dd7a4061c59af8c24f0e.woff')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_e8af2c89048a6b5a299711fc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.769043;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_e44584b574f82e5b805d9915.woff')format("woff");}.ffa{font-family:ffa;line-height:0.721000;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_cd628921cd29f7e71369360c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.967285;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_9df8efb1b227fb4613394496.woff')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:41.958000px;}
.lsa{letter-spacing:-1.632000px;}
.ls5{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.672000px;}
.ls4{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.162000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.664200px;}
.lsf{letter-spacing:0.664620px;}
.lsd{letter-spacing:1.020000px;}
.ls0{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.140000px;}
.ls7{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.920000px;}
.ls11{letter-spacing:32.160000px;}
.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;}
}
.ws3{word-spacing:-54.000000px;}
.ws6{word-spacing:-23.040000px;}
.ws1d{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.146000px;}
.ws0{word-spacing:-13.138488px;}
.ws5{word-spacing:-12.690000px;}
.ws2{word-spacing:-12.000000px;}
.ws7a{word-spacing:-9.409620px;}
.ws1e{word-spacing:-8.745000px;}
.ws30{word-spacing:-3.660000px;}
.ws9{word-spacing:-3.240000px;}
.ws43{word-spacing:-3.060000px;}
.ws7c{word-spacing:-2.760000px;}
.ws6a{word-spacing:-2.700000px;}
.ws27{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.376000px;}
.wsa9{word-spacing:-2.256000px;}
.ws41{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.100000px;}
.ws52{word-spacing:-2.040000px;}
.wse{word-spacing:-1.944000px;}
.ws91{word-spacing:-1.920000px;}
.ws73{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.674000px;}
.ws3d{word-spacing:-1.560000px;}
.ws5a{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.404000px;}
.ws6d{word-spacing:-1.320000px;}
.ws59{word-spacing:-1.260000px;}
.ws2b{word-spacing:-1.200000px;}
.ws4e{word-spacing:-1.188000px;}
.ws6e{word-spacing:-1.140000px;}
.ws8{word-spacing:-1.080000px;}
.ws4a{word-spacing:-0.960000px;}
.ws50{word-spacing:-0.918000px;}
.wsa2{word-spacing:-0.768000px;}
.ws44{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.672000px;}
.ws1b{word-spacing:-0.642600px;}
.ws35{word-spacing:-0.576000px;}
.ws17{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.529200px;}
.ws3a{word-spacing:-0.480000px;}
.ws20{word-spacing:-0.420000px;}
.wsa7{word-spacing:-0.336000px;}
.ws79{word-spacing:-0.324000px;}
.ws72{word-spacing:-0.300000px;}
.ws34{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.192000px;}
.ws8e{word-spacing:-0.180000px;}
.ws82{word-spacing:-0.120000px;}
.wsb1{word-spacing:-0.096000px;}
.ws7{word-spacing:0.000000px;}
.ws1c{word-spacing:0.144000px;}
.wsc{word-spacing:0.162000px;}
.ws6f{word-spacing:0.180000px;}
.ws83{word-spacing:0.240000px;}
.ws16{word-spacing:0.324000px;}
.ws75{word-spacing:0.360000px;}
.ws33{word-spacing:0.420000px;}
.ws19{word-spacing:0.540000px;}
.ws55{word-spacing:0.720000px;}
.ws9a{word-spacing:0.780000px;}
.wsf{word-spacing:0.810000px;}
.ws2c{word-spacing:0.840000px;}
.ws47{word-spacing:0.900000px;}
.ws28{word-spacing:0.960000px;}
.ws2f{word-spacing:1.380000px;}
.wsaa{word-spacing:1.488000px;}
.ws9f{word-spacing:1.584000px;}
.ws45{word-spacing:1.620000px;}
.ws8b{word-spacing:1.680000px;}
.wsaf{word-spacing:1.728000px;}
.ws64{word-spacing:1.740000px;}
.ws15{word-spacing:1.782000px;}
.ws14{word-spacing:1.890000px;}
.ws9b{word-spacing:1.920000px;}
.ws4d{word-spacing:1.980000px;}
.ws66{word-spacing:2.100000px;}
.ws58{word-spacing:2.160000px;}
.ws6c{word-spacing:2.220000px;}
.ws3c{word-spacing:2.340000px;}
.wsae{word-spacing:2.352000px;}
.ws65{word-spacing:2.400000px;}
.ws7e{word-spacing:2.520000px;}
.ws22{word-spacing:2.580000px;}
.ws7d{word-spacing:2.640000px;}
.ws97{word-spacing:2.760000px;}
.ws46{word-spacing:2.820000px;}
.ws9d{word-spacing:2.862000px;}
.ws32{word-spacing:2.880000px;}
.ws38{word-spacing:2.940000px;}
.wsa0{word-spacing:2.976000px;}
.ws2e{word-spacing:3.060000px;}
.ws5c{word-spacing:3.120000px;}
.ws71{word-spacing:3.180000px;}
.wsab{word-spacing:3.216000px;}
.ws7f{word-spacing:3.240000px;}
.wsa1{word-spacing:3.264000px;}
.ws12{word-spacing:3.456000px;}
.ws51{word-spacing:3.660000px;}
.ws26{word-spacing:3.780000px;}
.ws8f{word-spacing:3.900000px;}
.ws37{word-spacing:4.020000px;}
.ws21{word-spacing:4.080000px;}
.ws95{word-spacing:4.200000px;}
.ws4f{word-spacing:4.266000px;}
.ws77{word-spacing:4.500000px;}
.ws96{word-spacing:4.560000px;}
.ws13{word-spacing:4.590000px;}
.ws53{word-spacing:4.800000px;}
.wsb0{word-spacing:4.992000px;}
.ws3b{word-spacing:5.100000px;}
.ws23{word-spacing:5.160000px;}
.ws5b{word-spacing:5.280000px;}
.ws10{word-spacing:5.346000px;}
.ws61{word-spacing:5.460000px;}
.ws74{word-spacing:5.520000px;}
.ws9c{word-spacing:5.562000px;}
.ws84{word-spacing:5.580000px;}
.ws92{word-spacing:5.940000px;}
.ws8d{word-spacing:6.000000px;}
.ws88{word-spacing:6.120000px;}
.ws4b{word-spacing:6.240000px;}
.ws60{word-spacing:6.480000px;}
.ws7b{word-spacing:6.540000px;}
.ws98{word-spacing:6.840000px;}
.ws49{word-spacing:6.960000px;}
.ws6b{word-spacing:7.020000px;}
.ws63{word-spacing:7.380000px;}
.ws11{word-spacing:7.398000px;}
.ws81{word-spacing:7.440000px;}
.ws5e{word-spacing:7.560000px;}
.ws87{word-spacing:7.620000px;}
.ws42{word-spacing:7.680000px;}
.ws89{word-spacing:7.740000px;}
.wsa6{word-spacing:7.776000px;}
.ws4c{word-spacing:7.860000px;}
.ws36{word-spacing:7.920000px;}
.ws5d{word-spacing:7.980000px;}
.ws24{word-spacing:8.040000px;}
.wsd{word-spacing:8.208000px;}
.ws8a{word-spacing:8.340000px;}
.wsa3{word-spacing:8.352000px;}
.ws2a{word-spacing:8.460000px;}
.ws76{word-spacing:8.520000px;}
.wsac{word-spacing:8.544000px;}
.ws2d{word-spacing:8.580000px;}
.ws54{word-spacing:8.700000px;}
.ws85{word-spacing:8.760000px;}
.ws9e{word-spacing:8.856000px;}
.ws40{word-spacing:9.060000px;}
.ws80{word-spacing:9.180000px;}
.ws69{word-spacing:9.480000px;}
.ws93{word-spacing:9.540000px;}
.ws3f{word-spacing:9.840000px;}
.ws31{word-spacing:9.960000px;}
.ws67{word-spacing:10.380000px;}
.ws3e{word-spacing:10.440000px;}
.ws78{word-spacing:10.500000px;}
.ws68{word-spacing:10.620000px;}
.ws94{word-spacing:10.860000px;}
.ws8c{word-spacing:10.920000px;}
.ws57{word-spacing:11.100000px;}
.wsa4{word-spacing:11.808000px;}
.ws29{word-spacing:11.880000px;}
.wsa5{word-spacing:12.288000px;}
.ws99{word-spacing:12.720000px;}
.ws39{word-spacing:12.780000px;}
.wsa8{word-spacing:13.008000px;}
.ws62{word-spacing:13.380000px;}
.ws86{word-spacing:13.920000px;}
.ws5f{word-spacing:16.020000px;}
.ws90{word-spacing:16.620000px;}
.ws70{word-spacing:17.160000px;}
.ws1f{word-spacing:20.820000px;}
._c{margin-left:-2823.142800px;}
._15{margin-left:-47.856000px;}
._1{margin-left:-10.080000px;}
._3{margin-left:-8.640000px;}
._8{margin-left:-6.906600px;}
._5{margin-left:-5.566800px;}
._7{margin-left:-4.266000px;}
._0{margin-left:-3.024000px;}
._2{margin-left:-1.728000px;}
._4{width:1.080000px;}
._e{width:2.238000px;}
._6{width:3.240000px;}
._9{width:4.870800px;}
._a{width:6.420600px;}
._d{width:7.704000px;}
._f{width:9.492000px;}
._13{width:10.590000px;}
._12{width:13.104000px;}
._14{width:25.380000px;}
._b{width:27.540000px;}
._11{width:32.040000px;}
._10{width:1701.358800px;}
.fc1{color:rgb(40,63,144);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fs8{font-size:37.800000px;}
.fs3{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:73.458000px;}
.fs7{font-size:96.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:75.661350px;}
.y22{bottom:88.258200px;}
.y27{bottom:117.158700px;}
.ya4{bottom:125.291250px;}
.y82{bottom:142.325850px;}
.ya3{bottom:143.291250px;}
.y5c{bottom:143.291400px;}
.y81{bottom:160.321350px;}
.ya2{bottom:161.291250px;}
.y5b{bottom:161.291400px;}
.y80{bottom:178.316850px;}
.ya1{bottom:179.291250px;}
.y5a{bottom:179.291400px;}
.ya0{bottom:197.291250px;}
.y59{bottom:197.291400px;}
.y9f{bottom:215.291250px;}
.y58{bottom:215.291400px;}
.y9e{bottom:233.291250px;}
.y57{bottom:233.291400px;}
.y9d{bottom:251.291250px;}
.y56{bottom:251.291400px;}
.y21{bottom:265.911450px;}
.y9c{bottom:269.291250px;}
.y55{bottom:269.291400px;}
.y20{bottom:283.906950px;}
.y9b{bottom:287.291250px;}
.y54{bottom:287.291400px;}
.y5d{bottom:293.527650px;}
.y1f{bottom:301.902450px;}
.y9a{bottom:305.291250px;}
.y53{bottom:305.291400px;}
.y99{bottom:323.291250px;}
.y52{bottom:323.291400px;}
.y1e{bottom:328.406400px;}
.y98{bottom:341.291250px;}
.y51{bottom:341.291400px;}
.y65{bottom:348.839850px;}
.y97{bottom:359.291250px;}
.y50{bottom:359.291400px;}
.y64{bottom:366.835350px;}
.y96{bottom:377.291250px;}
.y4f{bottom:377.291400px;}
.y63{bottom:384.830850px;}
.y1d{bottom:387.342150px;}
.y95{bottom:395.291250px;}
.y4e{bottom:395.291400px;}
.y1c{bottom:404.298150px;}
.y94{bottom:413.291250px;}
.y4d{bottom:413.291400px;}
.y1b{bottom:421.254150px;}
.y93{bottom:431.291250px;}
.y7c{bottom:431.291400px;}
.y1a{bottom:438.210150px;}
.y92{bottom:449.291250px;}
.y7b{bottom:449.291400px;}
.y19{bottom:455.166150px;}
.y4c{bottom:455.527650px;}
.y91{bottom:467.291250px;}
.y7a{bottom:467.291400px;}
.y18{bottom:472.122150px;}
.y4b{bottom:479.527650px;}
.y90{bottom:485.291250px;}
.y79{bottom:485.291400px;}
.y17{bottom:489.078150px;}
.y7f{bottom:499.599000px;}
.y8f{bottom:503.291250px;}
.y78{bottom:503.291400px;}
.y4a{bottom:503.527650px;}
.y16{bottom:506.034150px;}
.y7e{bottom:517.594500px;}
.y8e{bottom:521.291250px;}
.y77{bottom:521.291400px;}
.y15{bottom:522.990150px;}
.y7d{bottom:535.590000px;}
.y8d{bottom:539.291250px;}
.y76{bottom:539.291400px;}
.y14{bottom:539.946150px;}
.y13{bottom:556.902150px;}
.y8c{bottom:557.291250px;}
.y49{bottom:557.291400px;}
.y12{bottom:573.858150px;}
.y8b{bottom:575.291250px;}
.y48{bottom:575.291400px;}
.y11{bottom:590.814150px;}
.y8a{bottom:593.291250px;}
.y47{bottom:593.291400px;}
.y10{bottom:607.770150px;}
.y89{bottom:611.291250px;}
.y46{bottom:611.291400px;}
.ya9{bottom:611.527500px;}
.yf{bottom:624.726150px;}
.y88{bottom:629.291250px;}
.y45{bottom:629.291400px;}
.y87{bottom:647.291250px;}
.y44{bottom:647.291400px;}
.ye{bottom:650.180100px;}
.y86{bottom:665.291250px;}
.y43{bottom:665.291400px;}
.y85{bottom:683.291250px;}
.y42{bottom:683.291400px;}
.y84{bottom:701.291250px;}
.y41{bottom:701.291400px;}
.yd{bottom:706.459200px;}
.y83{bottom:719.291250px;}
.y40{bottom:719.291400px;}
.yc{bottom:724.454700px;}
.ya8{bottom:737.291250px;}
.y3f{bottom:737.291400px;}
.yb{bottom:742.450200px;}
.ya7{bottom:755.291250px;}
.y3e{bottom:755.291400px;}
.yab{bottom:755.944500px;}
.ya6{bottom:773.291250px;}
.y3d{bottom:773.291400px;}
.yaa{bottom:773.940000px;}
.ya{bottom:777.455700px;}
.ya5{bottom:791.291250px;}
.y3c{bottom:791.291400px;}
.y3b{bottom:809.291400px;}
.y9{bottom:825.215400px;}
.y3a{bottom:827.291400px;}
.yae{bottom:832.312500px;}
.ybf{bottom:842.631750px;}
.y39{bottom:845.291400px;}
.yad{bottom:850.308000px;}
.y8{bottom:851.723400px;}
.y62{bottom:856.082250px;}
.ybe{bottom:860.631750px;}
.y38{bottom:863.291400px;}
.yac{bottom:868.303500px;}
.y7{bottom:869.723400px;}
.y61{bottom:874.077750px;}
.ybd{bottom:878.631750px;}
.y37{bottom:881.291400px;}
.y6{bottom:887.723400px;}
.y60{bottom:892.073250px;}
.ybc{bottom:896.631750px;}
.y36{bottom:899.291400px;}
.y74{bottom:900.281400px;}
.y5{bottom:905.723400px;}
.y5f{bottom:910.068750px;}
.ybb{bottom:914.631750px;}
.y35{bottom:917.291400px;}
.y73{bottom:918.281400px;}
.y5e{bottom:928.064250px;}
.y4{bottom:932.227200px;}
.yba{bottom:932.631750px;}
.y34{bottom:935.291400px;}
.y72{bottom:936.281400px;}
.yb9{bottom:950.631750px;}
.y33{bottom:953.291400px;}
.y3{bottom:953.827200px;}
.y71{bottom:954.281400px;}
.yb8{bottom:968.631750px;}
.y32{bottom:971.291400px;}
.y70{bottom:972.281400px;}
.yb7{bottom:986.631750px;}
.y31{bottom:989.291400px;}
.y6f{bottom:990.281400px;}
.y2{bottom:993.425850px;}
.yb6{bottom:1004.631750px;}
.y30{bottom:1007.291400px;}
.y6e{bottom:1008.281400px;}
.yb5{bottom:1022.631750px;}
.y2f{bottom:1025.291400px;}
.y6d{bottom:1026.281400px;}
.y1{bottom:1031.225850px;}
.yb4{bottom:1040.631750px;}
.y2e{bottom:1043.291400px;}
.y6c{bottom:1044.281400px;}
.yb3{bottom:1058.631750px;}
.y2d{bottom:1061.291400px;}
.y6b{bottom:1062.281400px;}
.yb2{bottom:1076.631750px;}
.y2c{bottom:1079.291400px;}
.y6a{bottom:1080.281400px;}
.yb1{bottom:1094.631750px;}
.y2b{bottom:1097.291400px;}
.y69{bottom:1098.281400px;}
.y26{bottom:1108.311000px;}
.yb0{bottom:1112.631750px;}
.y2a{bottom:1115.291400px;}
.y68{bottom:1116.281400px;}
.y75{bottom:1133.291400px;}
.yaf{bottom:1147.639500px;}
.y29{bottom:1147.639650px;}
.y67{bottom:1151.291400px;}
.y25{bottom:1168.102350px;}
.y24{bottom:1181.602350px;}
.y66{bottom:1194.094800px;}
.y28{bottom:1194.094950px;}
.ha{height:28.516113px;}
.h5{height:33.328125px;}
.h6{height:33.351562px;}
.hb{height:33.947754px;}
.h10{height:34.687500px;}
.h9{height:37.494141px;}
.h7{height:37.520508px;}
.he{height:41.660156px;}
.hd{height:41.689453px;}
.hf{height:44.284951px;}
.hc{height:51.120000px;}
.h4{height:55.642465px;}
.h8{height:68.640000px;}
.h2{height:90.090000px;}
.h3{height:94.480470px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.xa{left:102.502350px;}
.x7{left:110.553300px;}
.x2{left:127.558950px;}
.x5{left:384.307200px;}
.x8{left:455.457000px;}
.xb{left:464.362350px;}
.x9{left:472.471200px;}
.x6{left:508.243350px;}
.x3{left:544.394100px;}
.x4{left:634.382850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:37.296000pt;}
.lsa{letter-spacing:-1.450667pt;}
.ls5{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.597333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.144000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.590400pt;}
.lsf{letter-spacing:0.590773pt;}
.lsd{letter-spacing:0.906667pt;}
.ls0{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.013333pt;}
.ls7{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.706667pt;}
.ls11{letter-spacing:28.586667pt;}
.ws3{word-spacing:-48.000000pt;}
.ws6{word-spacing:-20.480000pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws0{word-spacing:-11.678656pt;}
.ws5{word-spacing:-11.280000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws7a{word-spacing:-8.364107pt;}
.ws1e{word-spacing:-7.773333pt;}
.ws30{word-spacing:-3.253333pt;}
.ws9{word-spacing:-2.880000pt;}
.ws43{word-spacing:-2.720000pt;}
.ws7c{word-spacing:-2.453333pt;}
.ws6a{word-spacing:-2.400000pt;}
.ws27{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.112000pt;}
.wsa9{word-spacing:-2.005333pt;}
.ws41{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.866667pt;}
.ws52{word-spacing:-1.813333pt;}
.wse{word-spacing:-1.728000pt;}
.ws91{word-spacing:-1.706667pt;}
.ws73{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.488000pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws5a{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.248000pt;}
.ws6d{word-spacing:-1.173333pt;}
.ws59{word-spacing:-1.120000pt;}
.ws2b{word-spacing:-1.066667pt;}
.ws4e{word-spacing:-1.056000pt;}
.ws6e{word-spacing:-1.013333pt;}
.ws8{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.853333pt;}
.ws50{word-spacing:-0.816000pt;}
.wsa2{word-spacing:-0.682667pt;}
.ws44{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.597333pt;}
.ws1b{word-spacing:-0.571200pt;}
.ws35{word-spacing:-0.512000pt;}
.ws17{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.470400pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws20{word-spacing:-0.373333pt;}
.wsa7{word-spacing:-0.298667pt;}
.ws79{word-spacing:-0.288000pt;}
.ws72{word-spacing:-0.266667pt;}
.ws34{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.170667pt;}
.ws8e{word-spacing:-0.160000pt;}
.ws82{word-spacing:-0.106667pt;}
.wsb1{word-spacing:-0.085333pt;}
.ws7{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.128000pt;}
.wsc{word-spacing:0.144000pt;}
.ws6f{word-spacing:0.160000pt;}
.ws83{word-spacing:0.213333pt;}
.ws16{word-spacing:0.288000pt;}
.ws75{word-spacing:0.320000pt;}
.ws33{word-spacing:0.373333pt;}
.ws19{word-spacing:0.480000pt;}
.ws55{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.693333pt;}
.wsf{word-spacing:0.720000pt;}
.ws2c{word-spacing:0.746667pt;}
.ws47{word-spacing:0.800000pt;}
.ws28{word-spacing:0.853333pt;}
.ws2f{word-spacing:1.226667pt;}
.wsaa{word-spacing:1.322667pt;}
.ws9f{word-spacing:1.408000pt;}
.ws45{word-spacing:1.440000pt;}
.ws8b{word-spacing:1.493333pt;}
.wsaf{word-spacing:1.536000pt;}
.ws64{word-spacing:1.546667pt;}
.ws15{word-spacing:1.584000pt;}
.ws14{word-spacing:1.680000pt;}
.ws9b{word-spacing:1.706667pt;}
.ws4d{word-spacing:1.760000pt;}
.ws66{word-spacing:1.866667pt;}
.ws58{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.973333pt;}
.ws3c{word-spacing:2.080000pt;}
.wsae{word-spacing:2.090667pt;}
.ws65{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.240000pt;}
.ws22{word-spacing:2.293333pt;}
.ws7d{word-spacing:2.346667pt;}
.ws97{word-spacing:2.453333pt;}
.ws46{word-spacing:2.506667pt;}
.ws9d{word-spacing:2.544000pt;}
.ws32{word-spacing:2.560000pt;}
.ws38{word-spacing:2.613333pt;}
.wsa0{word-spacing:2.645333pt;}
.ws2e{word-spacing:2.720000pt;}
.ws5c{word-spacing:2.773333pt;}
.ws71{word-spacing:2.826667pt;}
.wsab{word-spacing:2.858667pt;}
.ws7f{word-spacing:2.880000pt;}
.wsa1{word-spacing:2.901333pt;}
.ws12{word-spacing:3.072000pt;}
.ws51{word-spacing:3.253333pt;}
.ws26{word-spacing:3.360000pt;}
.ws8f{word-spacing:3.466667pt;}
.ws37{word-spacing:3.573333pt;}
.ws21{word-spacing:3.626667pt;}
.ws95{word-spacing:3.733333pt;}
.ws4f{word-spacing:3.792000pt;}
.ws77{word-spacing:4.000000pt;}
.ws96{word-spacing:4.053333pt;}
.ws13{word-spacing:4.080000pt;}
.ws53{word-spacing:4.266667pt;}
.wsb0{word-spacing:4.437333pt;}
.ws3b{word-spacing:4.533333pt;}
.ws23{word-spacing:4.586667pt;}
.ws5b{word-spacing:4.693333pt;}
.ws10{word-spacing:4.752000pt;}
.ws61{word-spacing:4.853333pt;}
.ws74{word-spacing:4.906667pt;}
.ws9c{word-spacing:4.944000pt;}
.ws84{word-spacing:4.960000pt;}
.ws92{word-spacing:5.280000pt;}
.ws8d{word-spacing:5.333333pt;}
.ws88{word-spacing:5.440000pt;}
.ws4b{word-spacing:5.546667pt;}
.ws60{word-spacing:5.760000pt;}
.ws7b{word-spacing:5.813333pt;}
.ws98{word-spacing:6.080000pt;}
.ws49{word-spacing:6.186667pt;}
.ws6b{word-spacing:6.240000pt;}
.ws63{word-spacing:6.560000pt;}
.ws11{word-spacing:6.576000pt;}
.ws81{word-spacing:6.613333pt;}
.ws5e{word-spacing:6.720000pt;}
.ws87{word-spacing:6.773333pt;}
.ws42{word-spacing:6.826667pt;}
.ws89{word-spacing:6.880000pt;}
.wsa6{word-spacing:6.912000pt;}
.ws4c{word-spacing:6.986667pt;}
.ws36{word-spacing:7.040000pt;}
.ws5d{word-spacing:7.093333pt;}
.ws24{word-spacing:7.146667pt;}
.wsd{word-spacing:7.296000pt;}
.ws8a{word-spacing:7.413333pt;}
.wsa3{word-spacing:7.424000pt;}
.ws2a{word-spacing:7.520000pt;}
.ws76{word-spacing:7.573333pt;}
.wsac{word-spacing:7.594667pt;}
.ws2d{word-spacing:7.626667pt;}
.ws54{word-spacing:7.733333pt;}
.ws85{word-spacing:7.786667pt;}
.ws9e{word-spacing:7.872000pt;}
.ws40{word-spacing:8.053333pt;}
.ws80{word-spacing:8.160000pt;}
.ws69{word-spacing:8.426667pt;}
.ws93{word-spacing:8.480000pt;}
.ws3f{word-spacing:8.746667pt;}
.ws31{word-spacing:8.853333pt;}
.ws67{word-spacing:9.226667pt;}
.ws3e{word-spacing:9.280000pt;}
.ws78{word-spacing:9.333333pt;}
.ws68{word-spacing:9.440000pt;}
.ws94{word-spacing:9.653333pt;}
.ws8c{word-spacing:9.706667pt;}
.ws57{word-spacing:9.866667pt;}
.wsa4{word-spacing:10.496000pt;}
.ws29{word-spacing:10.560000pt;}
.wsa5{word-spacing:10.922667pt;}
.ws99{word-spacing:11.306667pt;}
.ws39{word-spacing:11.360000pt;}
.wsa8{word-spacing:11.562667pt;}
.ws62{word-spacing:11.893333pt;}
.ws86{word-spacing:12.373333pt;}
.ws5f{word-spacing:14.240000pt;}
.ws90{word-spacing:14.773333pt;}
.ws70{word-spacing:15.253333pt;}
.ws1f{word-spacing:18.506667pt;}
._c{margin-left:-2509.460267pt;}
._15{margin-left:-42.538667pt;}
._1{margin-left:-8.960000pt;}
._3{margin-left:-7.680000pt;}
._8{margin-left:-6.139200pt;}
._5{margin-left:-4.948267pt;}
._7{margin-left:-3.792000pt;}
._0{margin-left:-2.688000pt;}
._2{margin-left:-1.536000pt;}
._4{width:0.960000pt;}
._e{width:1.989333pt;}
._6{width:2.880000pt;}
._9{width:4.329600pt;}
._a{width:5.707200pt;}
._d{width:6.848000pt;}
._f{width:8.437333pt;}
._13{width:9.413333pt;}
._12{width:11.648000pt;}
._14{width:22.560000pt;}
._b{width:24.480000pt;}
._11{width:28.480000pt;}
._10{width:1512.318933pt;}
.fsb{font-size:31.093333pt;}
.fs8{font-size:33.600000pt;}
.fs3{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:65.296000pt;}
.fs7{font-size:85.333333pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:67.254533pt;}
.y22{bottom:78.451733pt;}
.y27{bottom:104.141067pt;}
.ya4{bottom:111.370000pt;}
.y82{bottom:126.511867pt;}
.ya3{bottom:127.370000pt;}
.y5c{bottom:127.370133pt;}
.y81{bottom:142.507867pt;}
.ya2{bottom:143.370000pt;}
.y5b{bottom:143.370133pt;}
.y80{bottom:158.503867pt;}
.ya1{bottom:159.370000pt;}
.y5a{bottom:159.370133pt;}
.ya0{bottom:175.370000pt;}
.y59{bottom:175.370133pt;}
.y9f{bottom:191.370000pt;}
.y58{bottom:191.370133pt;}
.y9e{bottom:207.370000pt;}
.y57{bottom:207.370133pt;}
.y9d{bottom:223.370000pt;}
.y56{bottom:223.370133pt;}
.y21{bottom:236.365733pt;}
.y9c{bottom:239.370000pt;}
.y55{bottom:239.370133pt;}
.y20{bottom:252.361733pt;}
.y9b{bottom:255.370000pt;}
.y54{bottom:255.370133pt;}
.y5d{bottom:260.913467pt;}
.y1f{bottom:268.357733pt;}
.y9a{bottom:271.370000pt;}
.y53{bottom:271.370133pt;}
.y99{bottom:287.370000pt;}
.y52{bottom:287.370133pt;}
.y1e{bottom:291.916800pt;}
.y98{bottom:303.370000pt;}
.y51{bottom:303.370133pt;}
.y65{bottom:310.079867pt;}
.y97{bottom:319.370000pt;}
.y50{bottom:319.370133pt;}
.y64{bottom:326.075867pt;}
.y96{bottom:335.370000pt;}
.y4f{bottom:335.370133pt;}
.y63{bottom:342.071867pt;}
.y1d{bottom:344.304133pt;}
.y95{bottom:351.370000pt;}
.y4e{bottom:351.370133pt;}
.y1c{bottom:359.376133pt;}
.y94{bottom:367.370000pt;}
.y4d{bottom:367.370133pt;}
.y1b{bottom:374.448133pt;}
.y93{bottom:383.370000pt;}
.y7c{bottom:383.370133pt;}
.y1a{bottom:389.520133pt;}
.y92{bottom:399.370000pt;}
.y7b{bottom:399.370133pt;}
.y19{bottom:404.592133pt;}
.y4c{bottom:404.913467pt;}
.y91{bottom:415.370000pt;}
.y7a{bottom:415.370133pt;}
.y18{bottom:419.664133pt;}
.y4b{bottom:426.246800pt;}
.y90{bottom:431.370000pt;}
.y79{bottom:431.370133pt;}
.y17{bottom:434.736133pt;}
.y7f{bottom:444.088000pt;}
.y8f{bottom:447.370000pt;}
.y78{bottom:447.370133pt;}
.y4a{bottom:447.580133pt;}
.y16{bottom:449.808133pt;}
.y7e{bottom:460.084000pt;}
.y8e{bottom:463.370000pt;}
.y77{bottom:463.370133pt;}
.y15{bottom:464.880133pt;}
.y7d{bottom:476.080000pt;}
.y8d{bottom:479.370000pt;}
.y76{bottom:479.370133pt;}
.y14{bottom:479.952133pt;}
.y13{bottom:495.024133pt;}
.y8c{bottom:495.370000pt;}
.y49{bottom:495.370133pt;}
.y12{bottom:510.096133pt;}
.y8b{bottom:511.370000pt;}
.y48{bottom:511.370133pt;}
.y11{bottom:525.168133pt;}
.y8a{bottom:527.370000pt;}
.y47{bottom:527.370133pt;}
.y10{bottom:540.240133pt;}
.y89{bottom:543.370000pt;}
.y46{bottom:543.370133pt;}
.ya9{bottom:543.580000pt;}
.yf{bottom:555.312133pt;}
.y88{bottom:559.370000pt;}
.y45{bottom:559.370133pt;}
.y87{bottom:575.370000pt;}
.y44{bottom:575.370133pt;}
.ye{bottom:577.937867pt;}
.y86{bottom:591.370000pt;}
.y43{bottom:591.370133pt;}
.y85{bottom:607.370000pt;}
.y42{bottom:607.370133pt;}
.y84{bottom:623.370000pt;}
.y41{bottom:623.370133pt;}
.yd{bottom:627.963733pt;}
.y83{bottom:639.370000pt;}
.y40{bottom:639.370133pt;}
.yc{bottom:643.959733pt;}
.ya8{bottom:655.370000pt;}
.y3f{bottom:655.370133pt;}
.yb{bottom:659.955733pt;}
.ya7{bottom:671.370000pt;}
.y3e{bottom:671.370133pt;}
.yab{bottom:671.950667pt;}
.ya6{bottom:687.370000pt;}
.y3d{bottom:687.370133pt;}
.yaa{bottom:687.946667pt;}
.ya{bottom:691.071733pt;}
.ya5{bottom:703.370000pt;}
.y3c{bottom:703.370133pt;}
.y3b{bottom:719.370133pt;}
.y9{bottom:733.524800pt;}
.y3a{bottom:735.370133pt;}
.yae{bottom:739.833333pt;}
.ybf{bottom:749.006000pt;}
.y39{bottom:751.370133pt;}
.yad{bottom:755.829333pt;}
.y8{bottom:757.087467pt;}
.y62{bottom:760.962000pt;}
.ybe{bottom:765.006000pt;}
.y38{bottom:767.370133pt;}
.yac{bottom:771.825333pt;}
.y7{bottom:773.087467pt;}
.y61{bottom:776.958000pt;}
.ybd{bottom:781.006000pt;}
.y37{bottom:783.370133pt;}
.y6{bottom:789.087467pt;}
.y60{bottom:792.954000pt;}
.ybc{bottom:797.006000pt;}
.y36{bottom:799.370133pt;}
.y74{bottom:800.250133pt;}
.y5{bottom:805.087467pt;}
.y5f{bottom:808.950000pt;}
.ybb{bottom:813.006000pt;}
.y35{bottom:815.370133pt;}
.y73{bottom:816.250133pt;}
.y5e{bottom:824.946000pt;}
.y4{bottom:828.646400pt;}
.yba{bottom:829.006000pt;}
.y34{bottom:831.370133pt;}
.y72{bottom:832.250133pt;}
.yb9{bottom:845.006000pt;}
.y33{bottom:847.370133pt;}
.y3{bottom:847.846400pt;}
.y71{bottom:848.250133pt;}
.yb8{bottom:861.006000pt;}
.y32{bottom:863.370133pt;}
.y70{bottom:864.250133pt;}
.yb7{bottom:877.006000pt;}
.y31{bottom:879.370133pt;}
.y6f{bottom:880.250133pt;}
.y2{bottom:883.045200pt;}
.yb6{bottom:893.006000pt;}
.y30{bottom:895.370133pt;}
.y6e{bottom:896.250133pt;}
.yb5{bottom:909.006000pt;}
.y2f{bottom:911.370133pt;}
.y6d{bottom:912.250133pt;}
.y1{bottom:916.645200pt;}
.yb4{bottom:925.006000pt;}
.y2e{bottom:927.370133pt;}
.y6c{bottom:928.250133pt;}
.yb3{bottom:941.006000pt;}
.y2d{bottom:943.370133pt;}
.y6b{bottom:944.250133pt;}
.yb2{bottom:957.006000pt;}
.y2c{bottom:959.370133pt;}
.y6a{bottom:960.250133pt;}
.yb1{bottom:973.006000pt;}
.y2b{bottom:975.370133pt;}
.y69{bottom:976.250133pt;}
.y26{bottom:985.165333pt;}
.yb0{bottom:989.006000pt;}
.y2a{bottom:991.370133pt;}
.y68{bottom:992.250133pt;}
.y75{bottom:1007.370133pt;}
.yaf{bottom:1020.124000pt;}
.y29{bottom:1020.124133pt;}
.y67{bottom:1023.370133pt;}
.y25{bottom:1038.313200pt;}
.y24{bottom:1050.313200pt;}
.y66{bottom:1061.417600pt;}
.y28{bottom:1061.417733pt;}
.ha{height:25.347656pt;}
.h5{height:29.625000pt;}
.h6{height:29.645833pt;}
.hb{height:30.175781pt;}
.h10{height:30.833333pt;}
.h9{height:33.328125pt;}
.h7{height:33.351562pt;}
.he{height:37.031250pt;}
.hd{height:37.057292pt;}
.hf{height:39.364401pt;}
.hc{height:45.440000pt;}
.h4{height:49.459969pt;}
.h8{height:61.013333pt;}
.h2{height:80.080000pt;}
.h3{height:83.982640pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.xa{left:91.113200pt;}
.x7{left:98.269600pt;}
.x2{left:113.385733pt;}
.x5{left:341.606400pt;}
.x8{left:404.850667pt;}
.xb{left:412.766533pt;}
.x9{left:419.974400pt;}
.x6{left:451.771867pt;}
.x3{left:483.905867pt;}
.x4{left:563.895867pt;}
}




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