
    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_9f35fa19849173446b4ce972.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_561159394aebb511c5cdccce.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_210a15b9b5e03633b1e5f830.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_76701aff1d8f875498fd10c4.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_3323c7b1fc10f66e58b72712.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_9759be30ed48373d012fe37a.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_8f33cbea8cb4853181221dbb.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_5a9426bfc4e588e93fc23983.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_35da05baeb7699908a072f5b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750977;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_387bf2bf38ace78393aa9948.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_60c011eda818d29b560a3137.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_c798596b799ba30af586a9a0.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.957400px;}
.ls8{letter-spacing:-1.920000px;}
.ls4{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.200000px;}
.lse{letter-spacing:-0.960000px;}
.ls2{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.699600px;}
.lsc{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.200000px;}
.lsb{letter-spacing:6.576000px;}
.lsa{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;}
.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;}
.ws51{word-spacing:-8.745000px;}
.ws4b{word-spacing:-6.240000px;}
.ws3b{word-spacing:-4.980000px;}
.ws45{word-spacing:-4.200000px;}
.ws69{word-spacing:-3.960000px;}
.ws18{word-spacing:-3.540000px;}
.ws8c{word-spacing:-3.300000px;}
.wsac{word-spacing:-3.216000px;}
.ws9c{word-spacing:-2.940000px;}
.ws84{word-spacing:-2.820000px;}
.ws4d{word-spacing:-2.760000px;}
.ws15{word-spacing:-2.754000px;}
.ws97{word-spacing:-2.460000px;}
.ws1c{word-spacing:-2.400000px;}
.ws9{word-spacing:-2.376000px;}
.ws4e{word-spacing:-2.340000px;}
.ws20{word-spacing:-2.268000px;}
.ws55{word-spacing:-2.220000px;}
.ws30{word-spacing:-1.920000px;}
.ws5c{word-spacing:-1.860000px;}
.ws1f{word-spacing:-1.814400px;}
.ws65{word-spacing:-1.800000px;}
.ws9d{word-spacing:-1.740000px;}
.ws91{word-spacing:-1.560000px;}
.ws13{word-spacing:-1.458000px;}
.ws8{word-spacing:-1.404000px;}
.ws58{word-spacing:-1.380000px;}
.ws73{word-spacing:-1.320000px;}
.ws36{word-spacing:-1.260000px;}
.wsd{word-spacing:-1.242000px;}
.ws42{word-spacing:-1.200000px;}
.ws34{word-spacing:-1.020000px;}
.ws3e{word-spacing:-0.960000px;}
.wsa5{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.540000px;}
.ws98{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.288000px;}
.ws37{word-spacing:-0.060000px;}
.wsa7{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws96{word-spacing:0.120000px;}
.ws22{word-spacing:0.144000px;}
.wsa{word-spacing:0.162000px;}
.ws44{word-spacing:0.240000px;}
.ws46{word-spacing:0.360000px;}
.ws47{word-spacing:0.480000px;}
.ws21{word-spacing:0.540000px;}
.ws54{word-spacing:0.600000px;}
.ws6a{word-spacing:0.660000px;}
.ws81{word-spacing:0.720000px;}
.wsb{word-spacing:0.756000px;}
.wsa4{word-spacing:0.768000px;}
.wsab{word-spacing:0.960000px;}
.wsa6{word-spacing:1.152000px;}
.ws92{word-spacing:1.200000px;}
.ws12{word-spacing:1.242000px;}
.ws35{word-spacing:1.260000px;}
.ws6d{word-spacing:1.320000px;}
.wsb4{word-spacing:1.344000px;}
.ws5f{word-spacing:1.440000px;}
.ws1d{word-spacing:1.560000px;}
.ws11{word-spacing:1.566000px;}
.ws1e{word-spacing:1.620000px;}
.ws49{word-spacing:1.680000px;}
.wsae{word-spacing:1.776000px;}
.ws56{word-spacing:1.800000px;}
.ws8d{word-spacing:1.920000px;}
.ws5a{word-spacing:2.040000px;}
.ws1a{word-spacing:2.100000px;}
.ws83{word-spacing:2.220000px;}
.ws93{word-spacing:2.280000px;}
.ws63{word-spacing:2.340000px;}
.ws3d{word-spacing:2.400000px;}
.ws87{word-spacing:2.460000px;}
.ws9b{word-spacing:2.520000px;}
.wse{word-spacing:2.538000px;}
.wsc{word-spacing:2.646000px;}
.ws59{word-spacing:2.820000px;}
.wsf{word-spacing:2.862000px;}
.ws14{word-spacing:2.916000px;}
.ws41{word-spacing:3.000000px;}
.ws86{word-spacing:3.120000px;}
.ws6c{word-spacing:3.180000px;}
.ws16{word-spacing:3.240000px;}
.ws2c{word-spacing:3.480000px;}
.ws64{word-spacing:3.540000px;}
.ws43{word-spacing:3.600000px;}
.ws40{word-spacing:3.660000px;}
.ws48{word-spacing:3.840000px;}
.ws77{word-spacing:4.140000px;}
.wsb3{word-spacing:4.176000px;}
.ws3c{word-spacing:4.200000px;}
.ws8f{word-spacing:4.500000px;}
.wsa0{word-spacing:4.512000px;}
.ws9a{word-spacing:4.620000px;}
.wsb1{word-spacing:4.704000px;}
.ws53{word-spacing:4.740000px;}
.ws61{word-spacing:4.800000px;}
.ws5d{word-spacing:5.100000px;}
.ws2b{word-spacing:5.160000px;}
.ws10{word-spacing:5.184000px;}
.ws2a{word-spacing:5.220000px;}
.wsb5{word-spacing:5.328000px;}
.ws66{word-spacing:5.340000px;}
.ws89{word-spacing:5.460000px;}
.wsa1{word-spacing:5.472000px;}
.ws90{word-spacing:5.580000px;}
.ws32{word-spacing:5.640000px;}
.ws9e{word-spacing:5.664000px;}
.ws4c{word-spacing:5.760000px;}
.wsaf{word-spacing:5.808000px;}
.ws57{word-spacing:5.820000px;}
.ws19{word-spacing:6.180000px;}
.ws3a{word-spacing:6.300000px;}
.ws1b{word-spacing:6.360000px;}
.wsa3{word-spacing:6.576000px;}
.ws94{word-spacing:6.660000px;}
.ws9f{word-spacing:6.672000px;}
.ws67{word-spacing:6.840000px;}
.wsb0{word-spacing:6.864000px;}
.ws7e{word-spacing:7.080000px;}
.ws33{word-spacing:7.140000px;}
.ws8a{word-spacing:7.200000px;}
.ws7b{word-spacing:7.260000px;}
.ws17{word-spacing:7.320000px;}
.ws7d{word-spacing:7.380000px;}
.ws2e{word-spacing:7.500000px;}
.ws78{word-spacing:7.560000px;}
.ws68{word-spacing:7.620000px;}
.ws79{word-spacing:7.740000px;}
.ws85{word-spacing:7.860000px;}
.ws39{word-spacing:7.920000px;}
.ws8e{word-spacing:7.980000px;}
.ws99{word-spacing:8.040000px;}
.ws5b{word-spacing:8.100000px;}
.ws27{word-spacing:8.220000px;}
.ws7c{word-spacing:8.460000px;}
.ws5e{word-spacing:8.700000px;}
.ws95{word-spacing:8.820000px;}
.ws62{word-spacing:9.000000px;}
.ws6b{word-spacing:9.120000px;}
.ws71{word-spacing:9.300000px;}
.ws70{word-spacing:9.480000px;}
.ws28{word-spacing:9.600000px;}
.wsa2{word-spacing:9.696000px;}
.ws6e{word-spacing:9.780000px;}
.ws23{word-spacing:9.900000px;}
.ws50{word-spacing:10.020000px;}
.ws72{word-spacing:10.200000px;}
.ws8b{word-spacing:10.320000px;}
.ws31{word-spacing:10.380000px;}
.ws76{word-spacing:10.500000px;}
.wsb2{word-spacing:10.752000px;}
.ws74{word-spacing:11.400000px;}
.ws6f{word-spacing:12.060000px;}
.ws7a{word-spacing:12.120000px;}
.ws24{word-spacing:12.240000px;}
.ws7f{word-spacing:12.528000px;}
.ws25{word-spacing:13.200000px;}
.ws75{word-spacing:13.320000px;}
.ws60{word-spacing:14.100000px;}
.ws80{word-spacing:15.900000px;}
.ws52{word-spacing:16.140000px;}
.ws29{word-spacing:16.260000px;}
.ws82{word-spacing:18.900000px;}
.ws88{word-spacing:19.200000px;}
.ws26{word-spacing:21.000000px;}
.wsa8{word-spacing:27.456000px;}
.ws4f{word-spacing:30.900000px;}
.wsa9{word-spacing:33.072000px;}
.wsaa{word-spacing:61.536000px;}
._a{margin-left:-2823.352500px;}
._13{margin-left:-47.856000px;}
._3{margin-left:-8.073600px;}
._4{margin-left:-6.130800px;}
._b{margin-left:-5.116800px;}
._1{margin-left:-3.805200px;}
._2{margin-left:-2.520000px;}
._0{margin-left:-1.512000px;}
._5{width:1.501200px;}
._10{width:2.724000px;}
._c{width:4.261800px;}
._7{width:5.849640px;}
._9{width:7.348860px;}
._f{width:8.479980px;}
._12{width:11.208000px;}
._11{width:12.870000px;}
._6{width:18.306000px;}
._8{width:27.540000px;}
._d{width:32.040000px;}
._e{width:1701.645600px;}
.fc1{color:rgb(40,63,144);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs3{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{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;}
.y24{bottom:75.661350px;}
.y23{bottom:88.258200px;}
.y5a{bottom:107.291400px;}
.y60{bottom:108.281400px;}
.y28{bottom:118.198650px;}
.ya8{bottom:125.291250px;}
.y59{bottom:125.291400px;}
.y91{bottom:125.293950px;}
.y5f{bottom:126.281400px;}
.ya7{bottom:143.291250px;}
.y58{bottom:143.291400px;}
.y90{bottom:143.293950px;}
.y5e{bottom:144.281400px;}
.ya6{bottom:161.291250px;}
.y20{bottom:161.291400px;}
.y8f{bottom:161.293950px;}
.y5d{bottom:162.281400px;}
.ya5{bottom:179.291250px;}
.y1f{bottom:179.291400px;}
.y8e{bottom:179.293950px;}
.y1e{bottom:197.291400px;}
.y8d{bottom:197.293950px;}
.y1d{bottom:215.291400px;}
.y8c{bottom:215.293950px;}
.ya4{bottom:215.527500px;}
.y22{bottom:233.291400px;}
.y8b{bottom:233.293950px;}
.y73{bottom:245.527650px;}
.y21{bottom:251.291400px;}
.y1c{bottom:255.476850px;}
.y57{bottom:269.291400px;}
.ya3{bottom:269.293950px;}
.y72{bottom:269.527650px;}
.yaa{bottom:276.729450px;}
.y5c{bottom:281.527650px;}
.y56{bottom:287.291400px;}
.ya2{bottom:287.293950px;}
.y55{bottom:305.291400px;}
.ya1{bottom:305.293950px;}
.y5b{bottom:305.527650px;}
.y54{bottom:323.291400px;}
.ya0{bottom:323.293950px;}
.y1b{bottom:334.756950px;}
.y53{bottom:341.291400px;}
.y9f{bottom:341.293950px;}
.y71{bottom:342.281400px;}
.y1a{bottom:352.752450px;}
.y52{bottom:359.291400px;}
.y9e{bottom:359.293950px;}
.y70{bottom:360.281400px;}
.y51{bottom:377.291400px;}
.y9d{bottom:377.293950px;}
.y6f{bottom:378.281400px;}
.y19{bottom:379.256400px;}
.y50{bottom:395.291400px;}
.y9c{bottom:395.293950px;}
.y6e{bottom:396.281400px;}
.y4f{bottom:413.291400px;}
.y9b{bottom:413.293950px;}
.y6d{bottom:414.281400px;}
.y4e{bottom:431.291400px;}
.y9a{bottom:431.293950px;}
.y6c{bottom:432.281400px;}
.y18{bottom:438.210150px;}
.y4d{bottom:449.291400px;}
.y99{bottom:449.293950px;}
.y6b{bottom:450.281400px;}
.y17{bottom:455.166150px;}
.y4c{bottom:467.291400px;}
.y98{bottom:467.293950px;}
.y16{bottom:472.122150px;}
.y4b{bottom:485.291400px;}
.y97{bottom:485.293950px;}
.y15{bottom:489.078150px;}
.y4a{bottom:503.291400px;}
.y8a{bottom:503.293950px;}
.y14{bottom:506.034150px;}
.y49{bottom:521.291400px;}
.y89{bottom:521.293950px;}
.y13{bottom:522.990150px;}
.y61{bottom:524.405400px;}
.y48{bottom:539.291400px;}
.y88{bottom:539.293950px;}
.y12{bottom:539.946150px;}
.y11{bottom:556.902150px;}
.y47{bottom:557.291400px;}
.y87{bottom:557.293950px;}
.y10{bottom:573.858150px;}
.y46{bottom:575.291400px;}
.y86{bottom:575.293950px;}
.yf{bottom:590.814150px;}
.y45{bottom:593.291400px;}
.y85{bottom:593.293950px;}
.yc8{bottom:604.015650px;}
.ye{bottom:607.770150px;}
.y44{bottom:611.291400px;}
.y96{bottom:611.293950px;}
.yc7{bottom:622.015650px;}
.yd{bottom:624.726150px;}
.y43{bottom:629.291400px;}
.y95{bottom:629.293950px;}
.yc6{bottom:640.015650px;}
.ya9{bottom:644.173200px;}
.y42{bottom:647.291400px;}
.y94{bottom:647.293950px;}
.yc{bottom:650.180100px;}
.yc5{bottom:658.015650px;}
.y41{bottom:665.291400px;}
.y93{bottom:665.293950px;}
.yc4{bottom:676.015650px;}
.y6a{bottom:677.527650px;}
.y40{bottom:683.291400px;}
.y92{bottom:683.293950px;}
.yc3{bottom:694.015650px;}
.y3f{bottom:701.291400px;}
.y69{bottom:701.527650px;}
.yb{bottom:706.459200px;}
.yc2{bottom:712.015650px;}
.y3e{bottom:719.291400px;}
.ya{bottom:724.454700px;}
.yac{bottom:727.018200px;}
.yc1{bottom:730.015650px;}
.y3d{bottom:737.291400px;}
.y9{bottom:742.450200px;}
.yc0{bottom:748.015650px;}
.y3c{bottom:755.291400px;}
.ybf{bottom:766.015650px;}
.y3b{bottom:773.291400px;}
.y8{bottom:777.455700px;}
.y75{bottom:782.741700px;}
.ybe{bottom:784.015650px;}
.y68{bottom:791.291400px;}
.y74{bottom:800.737200px;}
.ybd{bottom:802.015650px;}
.y67{bottom:809.291400px;}
.ybc{bottom:820.015650px;}
.y3a{bottom:821.527650px;}
.y7{bottom:825.215400px;}
.y66{bottom:827.291400px;}
.ybb{bottom:838.015650px;}
.y65{bottom:845.291400px;}
.y39{bottom:845.527650px;}
.y6{bottom:851.723400px;}
.yba{bottom:856.015650px;}
.y64{bottom:863.291400px;}
.yb9{bottom:874.015650px;}
.y5{bottom:878.227200px;}
.y63{bottom:881.291400px;}
.y84{bottom:881.293950px;}
.yb8{bottom:892.015650px;}
.y38{bottom:899.291400px;}
.y83{bottom:899.293950px;}
.yb7{bottom:910.015650px;}
.y37{bottom:917.291400px;}
.y82{bottom:917.293950px;}
.y4{bottom:917.825850px;}
.yb6{bottom:928.015650px;}
.y36{bottom:935.291400px;}
.y81{bottom:935.293950px;}
.y35{bottom:953.291400px;}
.y80{bottom:953.293950px;}
.y3{bottom:955.625850px;}
.yb5{bottom:963.023550px;}
.yab{bottom:965.468700px;}
.y34{bottom:971.291400px;}
.y7f{bottom:971.293950px;}
.y33{bottom:989.291400px;}
.y7e{bottom:989.293950px;}
.y2{bottom:993.425850px;}
.y32{bottom:1007.291400px;}
.y7d{bottom:1007.293950px;}
.yb4{bottom:1025.291250px;}
.y31{bottom:1025.291400px;}
.y7c{bottom:1025.293950px;}
.y1{bottom:1031.225850px;}
.yb3{bottom:1043.291250px;}
.y30{bottom:1043.291400px;}
.yb2{bottom:1061.291250px;}
.y2f{bottom:1061.291400px;}
.y7b{bottom:1064.638950px;}
.yb1{bottom:1079.291250px;}
.y2e{bottom:1079.291400px;}
.y7a{bottom:1082.638950px;}
.yb0{bottom:1097.291250px;}
.y2d{bottom:1097.291400px;}
.y79{bottom:1100.638950px;}
.y27{bottom:1108.311000px;}
.yaf{bottom:1115.291250px;}
.y2c{bottom:1115.291400px;}
.y78{bottom:1118.638950px;}
.yae{bottom:1133.291250px;}
.y2b{bottom:1133.291400px;}
.y77{bottom:1136.638950px;}
.yad{bottom:1151.291250px;}
.y2a{bottom:1151.291400px;}
.y76{bottom:1154.638950px;}
.y26{bottom:1168.102350px;}
.y25{bottom:1181.602350px;}
.y62{bottom:1194.094800px;}
.y29{bottom:1194.094950px;}
.hc{height:28.516113px;}
.h5{height:33.328125px;}
.h6{height:33.351562px;}
.hd{height:33.947754px;}
.h10{height:34.687500px;}
.h9{height:37.494141px;}
.h7{height:37.520508px;}
.ha{height:41.660156px;}
.hb{height:41.689453px;}
.hf{height:44.284951px;}
.he{height:51.120000px;}
.h4{height:55.642465px;}
.h8{height:68.640000px;}
.h2{height:90.090000px;}
.h3{height:94.479870px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.xb{left:102.502350px;}
.x8{left:110.553300px;}
.x2{left:127.559100px;}
.x7{left:314.768550px;}
.x6{left:384.307200px;}
.x3{left:455.463300px;}
.xc{left:464.350350px;}
.x9{left:472.478850px;}
.xa{left:489.476700px;}
.x4{left:544.394100px;}
.x5{left:634.382850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:37.295467pt;}
.ls8{letter-spacing:-1.706667pt;}
.ls4{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.853333pt;}
.ls2{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.621867pt;}
.lsc{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.066667pt;}
.lsb{letter-spacing:5.845333pt;}
.lsa{letter-spacing:28.586667pt;}
.ws3{word-spacing:-48.000000pt;}
.ws6{word-spacing:-20.480000pt;}
.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;}
.ws51{word-spacing:-7.773333pt;}
.ws4b{word-spacing:-5.546667pt;}
.ws3b{word-spacing:-4.426667pt;}
.ws45{word-spacing:-3.733333pt;}
.ws69{word-spacing:-3.520000pt;}
.ws18{word-spacing:-3.146667pt;}
.ws8c{word-spacing:-2.933333pt;}
.wsac{word-spacing:-2.858667pt;}
.ws9c{word-spacing:-2.613333pt;}
.ws84{word-spacing:-2.506667pt;}
.ws4d{word-spacing:-2.453333pt;}
.ws15{word-spacing:-2.448000pt;}
.ws97{word-spacing:-2.186667pt;}
.ws1c{word-spacing:-2.133333pt;}
.ws9{word-spacing:-2.112000pt;}
.ws4e{word-spacing:-2.080000pt;}
.ws20{word-spacing:-2.016000pt;}
.ws55{word-spacing:-1.973333pt;}
.ws30{word-spacing:-1.706667pt;}
.ws5c{word-spacing:-1.653333pt;}
.ws1f{word-spacing:-1.612800pt;}
.ws65{word-spacing:-1.600000pt;}
.ws9d{word-spacing:-1.546667pt;}
.ws91{word-spacing:-1.386667pt;}
.ws13{word-spacing:-1.296000pt;}
.ws8{word-spacing:-1.248000pt;}
.ws58{word-spacing:-1.226667pt;}
.ws73{word-spacing:-1.173333pt;}
.ws36{word-spacing:-1.120000pt;}
.wsd{word-spacing:-1.104000pt;}
.ws42{word-spacing:-1.066667pt;}
.ws34{word-spacing:-0.906667pt;}
.ws3e{word-spacing:-0.853333pt;}
.wsa5{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.480000pt;}
.ws98{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.256000pt;}
.ws37{word-spacing:-0.053333pt;}
.wsa7{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws96{word-spacing:0.106667pt;}
.ws22{word-spacing:0.128000pt;}
.wsa{word-spacing:0.144000pt;}
.ws44{word-spacing:0.213333pt;}
.ws46{word-spacing:0.320000pt;}
.ws47{word-spacing:0.426667pt;}
.ws21{word-spacing:0.480000pt;}
.ws54{word-spacing:0.533333pt;}
.ws6a{word-spacing:0.586667pt;}
.ws81{word-spacing:0.640000pt;}
.wsb{word-spacing:0.672000pt;}
.wsa4{word-spacing:0.682667pt;}
.wsab{word-spacing:0.853333pt;}
.wsa6{word-spacing:1.024000pt;}
.ws92{word-spacing:1.066667pt;}
.ws12{word-spacing:1.104000pt;}
.ws35{word-spacing:1.120000pt;}
.ws6d{word-spacing:1.173333pt;}
.wsb4{word-spacing:1.194667pt;}
.ws5f{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.386667pt;}
.ws11{word-spacing:1.392000pt;}
.ws1e{word-spacing:1.440000pt;}
.ws49{word-spacing:1.493333pt;}
.wsae{word-spacing:1.578667pt;}
.ws56{word-spacing:1.600000pt;}
.ws8d{word-spacing:1.706667pt;}
.ws5a{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.866667pt;}
.ws83{word-spacing:1.973333pt;}
.ws93{word-spacing:2.026667pt;}
.ws63{word-spacing:2.080000pt;}
.ws3d{word-spacing:2.133333pt;}
.ws87{word-spacing:2.186667pt;}
.ws9b{word-spacing:2.240000pt;}
.wse{word-spacing:2.256000pt;}
.wsc{word-spacing:2.352000pt;}
.ws59{word-spacing:2.506667pt;}
.wsf{word-spacing:2.544000pt;}
.ws14{word-spacing:2.592000pt;}
.ws41{word-spacing:2.666667pt;}
.ws86{word-spacing:2.773333pt;}
.ws6c{word-spacing:2.826667pt;}
.ws16{word-spacing:2.880000pt;}
.ws2c{word-spacing:3.093333pt;}
.ws64{word-spacing:3.146667pt;}
.ws43{word-spacing:3.200000pt;}
.ws40{word-spacing:3.253333pt;}
.ws48{word-spacing:3.413333pt;}
.ws77{word-spacing:3.680000pt;}
.wsb3{word-spacing:3.712000pt;}
.ws3c{word-spacing:3.733333pt;}
.ws8f{word-spacing:4.000000pt;}
.wsa0{word-spacing:4.010667pt;}
.ws9a{word-spacing:4.106667pt;}
.wsb1{word-spacing:4.181333pt;}
.ws53{word-spacing:4.213333pt;}
.ws61{word-spacing:4.266667pt;}
.ws5d{word-spacing:4.533333pt;}
.ws2b{word-spacing:4.586667pt;}
.ws10{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.640000pt;}
.wsb5{word-spacing:4.736000pt;}
.ws66{word-spacing:4.746667pt;}
.ws89{word-spacing:4.853333pt;}
.wsa1{word-spacing:4.864000pt;}
.ws90{word-spacing:4.960000pt;}
.ws32{word-spacing:5.013333pt;}
.ws9e{word-spacing:5.034667pt;}
.ws4c{word-spacing:5.120000pt;}
.wsaf{word-spacing:5.162667pt;}
.ws57{word-spacing:5.173333pt;}
.ws19{word-spacing:5.493333pt;}
.ws3a{word-spacing:5.600000pt;}
.ws1b{word-spacing:5.653333pt;}
.wsa3{word-spacing:5.845333pt;}
.ws94{word-spacing:5.920000pt;}
.ws9f{word-spacing:5.930667pt;}
.ws67{word-spacing:6.080000pt;}
.wsb0{word-spacing:6.101333pt;}
.ws7e{word-spacing:6.293333pt;}
.ws33{word-spacing:6.346667pt;}
.ws8a{word-spacing:6.400000pt;}
.ws7b{word-spacing:6.453333pt;}
.ws17{word-spacing:6.506667pt;}
.ws7d{word-spacing:6.560000pt;}
.ws2e{word-spacing:6.666667pt;}
.ws78{word-spacing:6.720000pt;}
.ws68{word-spacing:6.773333pt;}
.ws79{word-spacing:6.880000pt;}
.ws85{word-spacing:6.986667pt;}
.ws39{word-spacing:7.040000pt;}
.ws8e{word-spacing:7.093333pt;}
.ws99{word-spacing:7.146667pt;}
.ws5b{word-spacing:7.200000pt;}
.ws27{word-spacing:7.306667pt;}
.ws7c{word-spacing:7.520000pt;}
.ws5e{word-spacing:7.733333pt;}
.ws95{word-spacing:7.840000pt;}
.ws62{word-spacing:8.000000pt;}
.ws6b{word-spacing:8.106667pt;}
.ws71{word-spacing:8.266667pt;}
.ws70{word-spacing:8.426667pt;}
.ws28{word-spacing:8.533333pt;}
.wsa2{word-spacing:8.618667pt;}
.ws6e{word-spacing:8.693333pt;}
.ws23{word-spacing:8.800000pt;}
.ws50{word-spacing:8.906667pt;}
.ws72{word-spacing:9.066667pt;}
.ws8b{word-spacing:9.173333pt;}
.ws31{word-spacing:9.226667pt;}
.ws76{word-spacing:9.333333pt;}
.wsb2{word-spacing:9.557333pt;}
.ws74{word-spacing:10.133333pt;}
.ws6f{word-spacing:10.720000pt;}
.ws7a{word-spacing:10.773333pt;}
.ws24{word-spacing:10.880000pt;}
.ws7f{word-spacing:11.136000pt;}
.ws25{word-spacing:11.733333pt;}
.ws75{word-spacing:11.840000pt;}
.ws60{word-spacing:12.533333pt;}
.ws80{word-spacing:14.133333pt;}
.ws52{word-spacing:14.346667pt;}
.ws29{word-spacing:14.453333pt;}
.ws82{word-spacing:16.800000pt;}
.ws88{word-spacing:17.066667pt;}
.ws26{word-spacing:18.666667pt;}
.wsa8{word-spacing:24.405333pt;}
.ws4f{word-spacing:27.466667pt;}
.wsa9{word-spacing:29.397333pt;}
.wsaa{word-spacing:54.698667pt;}
._a{margin-left:-2509.646667pt;}
._13{margin-left:-42.538667pt;}
._3{margin-left:-7.176533pt;}
._4{margin-left:-5.449600pt;}
._b{margin-left:-4.548267pt;}
._1{margin-left:-3.382400pt;}
._2{margin-left:-2.240000pt;}
._0{margin-left:-1.344000pt;}
._5{width:1.334400pt;}
._10{width:2.421333pt;}
._c{width:3.788267pt;}
._7{width:5.199680pt;}
._9{width:6.532320pt;}
._f{width:7.537760pt;}
._12{width:9.962667pt;}
._11{width:11.440000pt;}
._6{width:16.272000pt;}
._8{width:24.480000pt;}
._d{width:28.480000pt;}
._e{width:1512.573867pt;}
.fsb{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs3{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{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;}
.y24{bottom:67.254533pt;}
.y23{bottom:78.451733pt;}
.y5a{bottom:95.370133pt;}
.y60{bottom:96.250133pt;}
.y28{bottom:105.065467pt;}
.ya8{bottom:111.370000pt;}
.y59{bottom:111.370133pt;}
.y91{bottom:111.372400pt;}
.y5f{bottom:112.250133pt;}
.ya7{bottom:127.370000pt;}
.y58{bottom:127.370133pt;}
.y90{bottom:127.372400pt;}
.y5e{bottom:128.250133pt;}
.ya6{bottom:143.370000pt;}
.y20{bottom:143.370133pt;}
.y8f{bottom:143.372400pt;}
.y5d{bottom:144.250133pt;}
.ya5{bottom:159.370000pt;}
.y1f{bottom:159.370133pt;}
.y8e{bottom:159.372400pt;}
.y1e{bottom:175.370133pt;}
.y8d{bottom:175.372400pt;}
.y1d{bottom:191.370133pt;}
.y8c{bottom:191.372400pt;}
.ya4{bottom:191.580000pt;}
.y22{bottom:207.370133pt;}
.y8b{bottom:207.372400pt;}
.y73{bottom:218.246800pt;}
.y21{bottom:223.370133pt;}
.y1c{bottom:227.090533pt;}
.y57{bottom:239.370133pt;}
.ya3{bottom:239.372400pt;}
.y72{bottom:239.580133pt;}
.yaa{bottom:245.981733pt;}
.y5c{bottom:250.246800pt;}
.y56{bottom:255.370133pt;}
.ya2{bottom:255.372400pt;}
.y55{bottom:271.370133pt;}
.ya1{bottom:271.372400pt;}
.y5b{bottom:271.580133pt;}
.y54{bottom:287.370133pt;}
.ya0{bottom:287.372400pt;}
.y1b{bottom:297.561733pt;}
.y53{bottom:303.370133pt;}
.y9f{bottom:303.372400pt;}
.y71{bottom:304.250133pt;}
.y1a{bottom:313.557733pt;}
.y52{bottom:319.370133pt;}
.y9e{bottom:319.372400pt;}
.y70{bottom:320.250133pt;}
.y51{bottom:335.370133pt;}
.y9d{bottom:335.372400pt;}
.y6f{bottom:336.250133pt;}
.y19{bottom:337.116800pt;}
.y50{bottom:351.370133pt;}
.y9c{bottom:351.372400pt;}
.y6e{bottom:352.250133pt;}
.y4f{bottom:367.370133pt;}
.y9b{bottom:367.372400pt;}
.y6d{bottom:368.250133pt;}
.y4e{bottom:383.370133pt;}
.y9a{bottom:383.372400pt;}
.y6c{bottom:384.250133pt;}
.y18{bottom:389.520133pt;}
.y4d{bottom:399.370133pt;}
.y99{bottom:399.372400pt;}
.y6b{bottom:400.250133pt;}
.y17{bottom:404.592133pt;}
.y4c{bottom:415.370133pt;}
.y98{bottom:415.372400pt;}
.y16{bottom:419.664133pt;}
.y4b{bottom:431.370133pt;}
.y97{bottom:431.372400pt;}
.y15{bottom:434.736133pt;}
.y4a{bottom:447.370133pt;}
.y8a{bottom:447.372400pt;}
.y14{bottom:449.808133pt;}
.y49{bottom:463.370133pt;}
.y89{bottom:463.372400pt;}
.y13{bottom:464.880133pt;}
.y61{bottom:466.138133pt;}
.y48{bottom:479.370133pt;}
.y88{bottom:479.372400pt;}
.y12{bottom:479.952133pt;}
.y11{bottom:495.024133pt;}
.y47{bottom:495.370133pt;}
.y87{bottom:495.372400pt;}
.y10{bottom:510.096133pt;}
.y46{bottom:511.370133pt;}
.y86{bottom:511.372400pt;}
.yf{bottom:525.168133pt;}
.y45{bottom:527.370133pt;}
.y85{bottom:527.372400pt;}
.yc8{bottom:536.902800pt;}
.ye{bottom:540.240133pt;}
.y44{bottom:543.370133pt;}
.y96{bottom:543.372400pt;}
.yc7{bottom:552.902800pt;}
.yd{bottom:555.312133pt;}
.y43{bottom:559.370133pt;}
.y95{bottom:559.372400pt;}
.yc6{bottom:568.902800pt;}
.ya9{bottom:572.598400pt;}
.y42{bottom:575.370133pt;}
.y94{bottom:575.372400pt;}
.yc{bottom:577.937867pt;}
.yc5{bottom:584.902800pt;}
.y41{bottom:591.370133pt;}
.y93{bottom:591.372400pt;}
.yc4{bottom:600.902800pt;}
.y6a{bottom:602.246800pt;}
.y40{bottom:607.370133pt;}
.y92{bottom:607.372400pt;}
.yc3{bottom:616.902800pt;}
.y3f{bottom:623.370133pt;}
.y69{bottom:623.580133pt;}
.yb{bottom:627.963733pt;}
.yc2{bottom:632.902800pt;}
.y3e{bottom:639.370133pt;}
.ya{bottom:643.959733pt;}
.yac{bottom:646.238400pt;}
.yc1{bottom:648.902800pt;}
.y3d{bottom:655.370133pt;}
.y9{bottom:659.955733pt;}
.yc0{bottom:664.902800pt;}
.y3c{bottom:671.370133pt;}
.ybf{bottom:680.902800pt;}
.y3b{bottom:687.370133pt;}
.y8{bottom:691.071733pt;}
.y75{bottom:695.770400pt;}
.ybe{bottom:696.902800pt;}
.y68{bottom:703.370133pt;}
.y74{bottom:711.766400pt;}
.ybd{bottom:712.902800pt;}
.y67{bottom:719.370133pt;}
.ybc{bottom:728.902800pt;}
.y3a{bottom:730.246800pt;}
.y7{bottom:733.524800pt;}
.y66{bottom:735.370133pt;}
.ybb{bottom:744.902800pt;}
.y65{bottom:751.370133pt;}
.y39{bottom:751.580133pt;}
.y6{bottom:757.087467pt;}
.yba{bottom:760.902800pt;}
.y64{bottom:767.370133pt;}
.yb9{bottom:776.902800pt;}
.y5{bottom:780.646400pt;}
.y63{bottom:783.370133pt;}
.y84{bottom:783.372400pt;}
.yb8{bottom:792.902800pt;}
.y38{bottom:799.370133pt;}
.y83{bottom:799.372400pt;}
.yb7{bottom:808.902800pt;}
.y37{bottom:815.370133pt;}
.y82{bottom:815.372400pt;}
.y4{bottom:815.845200pt;}
.yb6{bottom:824.902800pt;}
.y36{bottom:831.370133pt;}
.y81{bottom:831.372400pt;}
.y35{bottom:847.370133pt;}
.y80{bottom:847.372400pt;}
.y3{bottom:849.445200pt;}
.yb5{bottom:856.020933pt;}
.yab{bottom:858.194400pt;}
.y34{bottom:863.370133pt;}
.y7f{bottom:863.372400pt;}
.y33{bottom:879.370133pt;}
.y7e{bottom:879.372400pt;}
.y2{bottom:883.045200pt;}
.y32{bottom:895.370133pt;}
.y7d{bottom:895.372400pt;}
.yb4{bottom:911.370000pt;}
.y31{bottom:911.370133pt;}
.y7c{bottom:911.372400pt;}
.y1{bottom:916.645200pt;}
.yb3{bottom:927.370000pt;}
.y30{bottom:927.370133pt;}
.yb2{bottom:943.370000pt;}
.y2f{bottom:943.370133pt;}
.y7b{bottom:946.345733pt;}
.yb1{bottom:959.370000pt;}
.y2e{bottom:959.370133pt;}
.y7a{bottom:962.345733pt;}
.yb0{bottom:975.370000pt;}
.y2d{bottom:975.370133pt;}
.y79{bottom:978.345733pt;}
.y27{bottom:985.165333pt;}
.yaf{bottom:991.370000pt;}
.y2c{bottom:991.370133pt;}
.y78{bottom:994.345733pt;}
.yae{bottom:1007.370000pt;}
.y2b{bottom:1007.370133pt;}
.y77{bottom:1010.345733pt;}
.yad{bottom:1023.370000pt;}
.y2a{bottom:1023.370133pt;}
.y76{bottom:1026.345733pt;}
.y26{bottom:1038.313200pt;}
.y25{bottom:1050.313200pt;}
.y62{bottom:1061.417600pt;}
.y29{bottom:1061.417733pt;}
.hc{height:25.347656pt;}
.h5{height:29.625000pt;}
.h6{height:29.645833pt;}
.hd{height:30.175781pt;}
.h10{height:30.833333pt;}
.h9{height:33.328125pt;}
.h7{height:33.351562pt;}
.ha{height:37.031250pt;}
.hb{height:37.057292pt;}
.hf{height:39.364401pt;}
.he{height:45.440000pt;}
.h4{height:49.459969pt;}
.h8{height:61.013333pt;}
.h2{height:80.080000pt;}
.h3{height:83.982107pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.xb{left:91.113200pt;}
.x8{left:98.269600pt;}
.x2{left:113.385867pt;}
.x7{left:279.794267pt;}
.x6{left:341.606400pt;}
.x3{left:404.856267pt;}
.xc{left:412.755867pt;}
.x9{left:419.981200pt;}
.xa{left:435.090400pt;}
.x4{left:483.905867pt;}
.x5{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; }
  